@tap-payments/os-micro-frontend-shared 0.0.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 (1645) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +12 -0
  3. package/build/assets/svg/noInternet.svg +10 -0
  4. package/build/assets/svg/tapLogo.svg +14 -0
  5. package/build/assets/svg/tapLogo2.svg +19 -0
  6. package/build/assets/svg/tapOs.svg +31 -0
  7. package/build/components/AccordionAdapter/AccordionAdapter.d.ts +13 -0
  8. package/build/components/AccordionAdapter/AccordionAdapter.js +23 -0
  9. package/build/components/AccordionAdapter/index.d.ts +2 -0
  10. package/build/components/AccordionAdapter/index.js +2 -0
  11. package/build/components/AccordionAdapter/style.d.ts +22 -0
  12. package/build/components/AccordionAdapter/style.js +38 -0
  13. package/build/components/ActionMenu/ActionMenu.d.ts +5 -0
  14. package/build/components/ActionMenu/ActionMenu.js +101 -0
  15. package/build/components/ActionMenu/ActionMenuDropDown.d.ts +16 -0
  16. package/build/components/ActionMenu/ActionMenuDropDown.js +23 -0
  17. package/build/components/ActionMenu/ActionMenuItem.d.ts +16 -0
  18. package/build/components/ActionMenu/ActionMenuItem.js +20 -0
  19. package/build/components/ActionMenu/index.d.ts +5 -0
  20. package/build/components/ActionMenu/index.js +4 -0
  21. package/build/components/ActionMenu/style.d.ts +80 -0
  22. package/build/components/ActionMenu/style.js +183 -0
  23. package/build/components/ActionMenu/type.d.ts +15 -0
  24. package/build/components/ActionMenu/type.js +1 -0
  25. package/build/components/ActivityAreaChart/ActivityAreaChart.d.ts +3 -0
  26. package/build/components/ActivityAreaChart/ActivityAreaChart.js +43 -0
  27. package/build/components/ActivityAreaChart/components/ChartTooltip.d.ts +3 -0
  28. package/build/components/ActivityAreaChart/components/ChartTooltip.js +22 -0
  29. package/build/components/ActivityAreaChart/components/LoadingChart.d.ts +2 -0
  30. package/build/components/ActivityAreaChart/components/LoadingChart.js +18 -0
  31. package/build/components/ActivityAreaChart/components/index.d.ts +2 -0
  32. package/build/components/ActivityAreaChart/components/index.js +2 -0
  33. package/build/components/ActivityAreaChart/index.d.ts +4 -0
  34. package/build/components/ActivityAreaChart/index.js +4 -0
  35. package/build/components/ActivityAreaChart/styles.d.ts +17 -0
  36. package/build/components/ActivityAreaChart/styles.js +52 -0
  37. package/build/components/ActivityAreaChart/types.d.ts +33 -0
  38. package/build/components/ActivityAreaChart/types.js +1 -0
  39. package/build/components/ActivityAreaChart/utils.d.ts +3 -0
  40. package/build/components/ActivityAreaChart/utils.js +30 -0
  41. package/build/components/AppWindow/AppWindow.d.ts +3 -0
  42. package/build/components/AppWindow/AppWindow.js +22 -0
  43. package/build/components/AppWindow/context/Provider.d.ts +2 -0
  44. package/build/components/AppWindow/context/Provider.js +70 -0
  45. package/build/components/AppWindow/context/context.d.ts +3 -0
  46. package/build/components/AppWindow/context/context.js +30 -0
  47. package/build/components/AppWindow/context/index.d.ts +2 -0
  48. package/build/components/AppWindow/context/index.js +2 -0
  49. package/build/components/AppWindow/context/type.d.ts +47 -0
  50. package/build/components/AppWindow/context/type.js +1 -0
  51. package/build/components/AppWindow/headers/AccountHeader/AccountHeader.d.ts +5 -0
  52. package/build/components/AppWindow/headers/AccountHeader/AccountHeader.js +31 -0
  53. package/build/components/AppWindow/headers/AccountHeader/components/AccountHeaderTitle/AccountHeaderTitle.d.ts +5 -0
  54. package/build/components/AppWindow/headers/AccountHeader/components/AccountHeaderTitle/AccountHeaderTitle.js +10 -0
  55. package/build/components/AppWindow/headers/AccountHeader/components/AccountHeaderTitle/index.d.ts +3 -0
  56. package/build/components/AppWindow/headers/AccountHeader/components/AccountHeaderTitle/index.js +2 -0
  57. package/build/components/AppWindow/headers/AccountHeader/components/AccountHeaderTitle/type.d.ts +14 -0
  58. package/build/components/AppWindow/headers/AccountHeader/components/AccountHeaderTitle/type.js +1 -0
  59. package/build/components/AppWindow/headers/AccountHeader/index.d.ts +4 -0
  60. package/build/components/AppWindow/headers/AccountHeader/index.js +3 -0
  61. package/build/components/AppWindow/headers/AccountHeader/type.d.ts +12 -0
  62. package/build/components/AppWindow/headers/AccountHeader/type.js +1 -0
  63. package/build/components/AppWindow/index.d.ts +5 -0
  64. package/build/components/AppWindow/index.js +4 -0
  65. package/build/components/AppWindow/type.d.ts +5 -0
  66. package/build/components/AppWindow/type.js +1 -0
  67. package/build/components/AppWindow/window/AppWindow.d.ts +5 -0
  68. package/build/components/AppWindow/window/AppWindow.js +82 -0
  69. package/build/components/AppWindow/window/constant.d.ts +6 -0
  70. package/build/components/AppWindow/window/constant.js +6 -0
  71. package/build/components/AppWindow/window/index.d.ts +3 -0
  72. package/build/components/AppWindow/window/index.js +2 -0
  73. package/build/components/AppWindow/window/style.d.ts +18 -0
  74. package/build/components/AppWindow/window/style.js +77 -0
  75. package/build/components/AppWindow/window/type.d.ts +9 -0
  76. package/build/components/AppWindow/window/type.js +1 -0
  77. package/build/components/BackgroundAnimation/BackgroundAnimation.d.ts +10 -0
  78. package/build/components/BackgroundAnimation/BackgroundAnimation.js +24 -0
  79. package/build/components/BackgroundAnimation/Blob/Blob.d.ts +11 -0
  80. package/build/components/BackgroundAnimation/Blob/Blob.js +32 -0
  81. package/build/components/BackgroundAnimation/Blob/index.d.ts +3 -0
  82. package/build/components/BackgroundAnimation/Blob/index.js +2 -0
  83. package/build/components/BackgroundAnimation/Blob/type.d.ts +1 -0
  84. package/build/components/BackgroundAnimation/Blob/type.js +1 -0
  85. package/build/components/BackgroundAnimation/index.d.ts +3 -0
  86. package/build/components/BackgroundAnimation/index.js +3 -0
  87. package/build/components/Button/Button.d.ts +13 -0
  88. package/build/components/Button/Button.js +19 -0
  89. package/build/components/Button/PlusButton/PlusButton.d.ts +10 -0
  90. package/build/components/Button/PlusButton/PlusButton.js +21 -0
  91. package/build/components/Button/PlusButton/index.d.ts +2 -0
  92. package/build/components/Button/PlusButton/index.js +2 -0
  93. package/build/components/Button/index.d.ts +3 -0
  94. package/build/components/Button/index.js +3 -0
  95. package/build/components/Button/style.d.ts +5 -0
  96. package/build/components/Button/style.js +23 -0
  97. package/build/components/Calender/Calender.d.ts +14 -0
  98. package/build/components/Calender/Calender.js +54 -0
  99. package/build/components/Calender/index.d.ts +2 -0
  100. package/build/components/Calender/index.js +2 -0
  101. package/build/components/Calender/style.d.ts +32 -0
  102. package/build/components/Calender/style.js +273 -0
  103. package/build/components/CardEmptyState/CardEmptyState.d.ts +2 -0
  104. package/build/components/CardEmptyState/CardEmptyState.js +20 -0
  105. package/build/components/CardEmptyState/index.d.ts +3 -0
  106. package/build/components/CardEmptyState/index.js +2 -0
  107. package/build/components/CardEmptyState/style.d.ts +7 -0
  108. package/build/components/CardEmptyState/style.js +35 -0
  109. package/build/components/CardEmptyState/type.d.ts +5 -0
  110. package/build/components/CardEmptyState/type.js +1 -0
  111. package/build/components/CardHeadline/CardHeadline.d.ts +8 -0
  112. package/build/components/CardHeadline/CardHeadline.js +15 -0
  113. package/build/components/CardHeadline/index.d.ts +2 -0
  114. package/build/components/CardHeadline/index.js +2 -0
  115. package/build/components/Checkbox/Checkbox.d.ts +5 -0
  116. package/build/components/Checkbox/Checkbox.js +14 -0
  117. package/build/components/Checkbox/index.d.ts +2 -0
  118. package/build/components/Checkbox/index.js +2 -0
  119. package/build/components/CircularProgressWithLabel/CircularProgressWithLabel.d.ts +7 -0
  120. package/build/components/CircularProgressWithLabel/CircularProgressWithLabel.js +7 -0
  121. package/build/components/CircularProgressWithLabel/index.d.ts +2 -0
  122. package/build/components/CircularProgressWithLabel/index.js +2 -0
  123. package/build/components/CircularProgressWithLabel/style.d.ts +11 -0
  124. package/build/components/CircularProgressWithLabel/style.js +31 -0
  125. package/build/components/Collapse/Collapse.d.ts +4 -0
  126. package/build/components/Collapse/Collapse.js +17 -0
  127. package/build/components/Collapse/index.d.ts +3 -0
  128. package/build/components/Collapse/index.js +2 -0
  129. package/build/components/ConfirmDialog/ConfirmDialog.d.ts +1 -0
  130. package/build/components/ConfirmDialog/ConfirmDialog.js +8 -0
  131. package/build/components/ConfirmDialog/context/Provider.d.ts +4 -0
  132. package/build/components/ConfirmDialog/context/Provider.js +18 -0
  133. package/build/components/ConfirmDialog/context/context.d.ts +3 -0
  134. package/build/components/ConfirmDialog/context/context.js +14 -0
  135. package/build/components/ConfirmDialog/context/index.d.ts +2 -0
  136. package/build/components/ConfirmDialog/context/index.js +2 -0
  137. package/build/components/ConfirmDialog/hooks/index.d.ts +1 -0
  138. package/build/components/ConfirmDialog/hooks/index.js +1 -0
  139. package/build/components/ConfirmDialog/hooks/useDialog.d.ts +20 -0
  140. package/build/components/ConfirmDialog/hooks/useDialog.js +22 -0
  141. package/build/components/ConfirmDialog/index.d.ts +3 -0
  142. package/build/components/ConfirmDialog/index.js +2 -0
  143. package/build/components/ConfirmDialog/styles.d.ts +8 -0
  144. package/build/components/ConfirmDialog/styles.js +42 -0
  145. package/build/components/ConfirmDialog/type.d.ts +19 -0
  146. package/build/components/ConfirmDialog/type.js +1 -0
  147. package/build/components/ControlPanelContainer/ControlPanelContainer.d.ts +2 -0
  148. package/build/components/ControlPanelContainer/ControlPanelContainer.js +5 -0
  149. package/build/components/ControlPanelContainer/index.d.ts +2 -0
  150. package/build/components/ControlPanelContainer/index.js +2 -0
  151. package/build/components/ControlPanelContainer/style.d.ts +4 -0
  152. package/build/components/ControlPanelContainer/style.js +9 -0
  153. package/build/components/CopyImage/CopyImage.d.ts +7 -0
  154. package/build/components/CopyImage/CopyImage.js +11 -0
  155. package/build/components/CopyImage/index.d.ts +2 -0
  156. package/build/components/CopyImage/index.js +2 -0
  157. package/build/components/CountBadge/CountBadge.d.ts +6 -0
  158. package/build/components/CountBadge/CountBadge.js +51 -0
  159. package/build/components/CountBadge/CountBadgeAnimated.d.ts +4 -0
  160. package/build/components/CountBadge/CountBadgeAnimated.js +15 -0
  161. package/build/components/CountBadge/index.d.ts +5 -0
  162. package/build/components/CountBadge/index.js +5 -0
  163. package/build/components/CountBadge/style.d.ts +284 -0
  164. package/build/components/CountBadge/style.js +29 -0
  165. package/build/components/CountBadge/type.d.ts +21 -0
  166. package/build/components/CountBadge/type.js +16 -0
  167. package/build/components/CountryFlag/CountryFlag.d.ts +8 -0
  168. package/build/components/CountryFlag/CountryFlag.js +20 -0
  169. package/build/components/CountryFlag/index.d.ts +2 -0
  170. package/build/components/CountryFlag/index.js +2 -0
  171. package/build/components/CurrencyIcon/CurrencyIcon.d.ts +5 -0
  172. package/build/components/CurrencyIcon/CurrencyIcon.js +14 -0
  173. package/build/components/CurrencyIcon/index.d.ts +2 -0
  174. package/build/components/CurrencyIcon/index.js +2 -0
  175. package/build/components/CurrencyIcon/style.d.ts +4 -0
  176. package/build/components/CurrencyIcon/style.js +13 -0
  177. package/build/components/CustomBackdrop/CustomBackdrop.d.ts +5 -0
  178. package/build/components/CustomBackdrop/CustomBackdrop.js +7 -0
  179. package/build/components/CustomBackdrop/index.d.ts +2 -0
  180. package/build/components/CustomBackdrop/index.js +2 -0
  181. package/build/components/CustomBackdrop/style.d.ts +4 -0
  182. package/build/components/CustomBackdrop/style.js +9 -0
  183. package/build/components/DateButton/DateButton.d.ts +5 -0
  184. package/build/components/DateButton/DateButton.js +9 -0
  185. package/build/components/DateButton/index.d.ts +2 -0
  186. package/build/components/DateButton/index.js +2 -0
  187. package/build/components/DeviceIcon/DeviceIcon.d.ts +10 -0
  188. package/build/components/DeviceIcon/DeviceIcon.js +29 -0
  189. package/build/components/DeviceIcon/constants.d.ts +5 -0
  190. package/build/components/DeviceIcon/constants.js +6 -0
  191. package/build/components/DeviceIcon/index.d.ts +2 -0
  192. package/build/components/DeviceIcon/index.js +2 -0
  193. package/build/components/DeviceIcon/style.d.ts +4 -0
  194. package/build/components/DeviceIcon/style.js +15 -0
  195. package/build/components/DeviceIcon/utils.d.ts +1 -0
  196. package/build/components/DeviceIcon/utils.js +4 -0
  197. package/build/components/Dialog/Dialog.d.ts +14 -0
  198. package/build/components/Dialog/Dialog.js +9 -0
  199. package/build/components/Dialog/components/DialogToolbar.d.ts +9 -0
  200. package/build/components/Dialog/components/DialogToolbar.js +31 -0
  201. package/build/components/Dialog/components/index.d.ts +2 -0
  202. package/build/components/Dialog/components/index.js +2 -0
  203. package/build/components/Dialog/constant.d.ts +1 -0
  204. package/build/components/Dialog/constant.js +1 -0
  205. package/build/components/Dialog/index.d.ts +2 -0
  206. package/build/components/Dialog/index.js +2 -0
  207. package/build/components/Dialog/style.d.ts +272 -0
  208. package/build/components/Dialog/style.js +49 -0
  209. package/build/components/DockButton/DockButton.d.ts +5 -0
  210. package/build/components/DockButton/DockButton.js +27 -0
  211. package/build/components/DockButton/index.d.ts +3 -0
  212. package/build/components/DockButton/index.js +2 -0
  213. package/build/components/DockButton/style.d.ts +21 -0
  214. package/build/components/DockButton/style.js +25 -0
  215. package/build/components/DockButton/type.d.ts +19 -0
  216. package/build/components/DockButton/type.js +1 -0
  217. package/build/components/Dropdown/Dropdown.d.ts +3 -0
  218. package/build/components/Dropdown/Dropdown.js +43 -0
  219. package/build/components/Dropdown/index.d.ts +3 -0
  220. package/build/components/Dropdown/index.js +2 -0
  221. package/build/components/Dropdown/styles.d.ts +18 -0
  222. package/build/components/Dropdown/styles.js +143 -0
  223. package/build/components/Dropdown/type.d.ts +20 -0
  224. package/build/components/Dropdown/type.js +1 -0
  225. package/build/components/Dropdown2/Dropdown2.d.ts +11 -0
  226. package/build/components/Dropdown2/Dropdown2.js +29 -0
  227. package/build/components/Dropdown2/index.d.ts +2 -0
  228. package/build/components/Dropdown2/index.js +2 -0
  229. package/build/components/Dropdown2/style.d.ts +15 -0
  230. package/build/components/Dropdown2/style.js +22 -0
  231. package/build/components/DropdownButton/ChevronIcon.d.ts +2 -0
  232. package/build/components/DropdownButton/ChevronIcon.js +16 -0
  233. package/build/components/DropdownButton/DropdownButton.d.ts +5 -0
  234. package/build/components/DropdownButton/DropdownButton.js +50 -0
  235. package/build/components/DropdownButton/constants.d.ts +13 -0
  236. package/build/components/DropdownButton/constants.js +5 -0
  237. package/build/components/DropdownButton/index.d.ts +4 -0
  238. package/build/components/DropdownButton/index.js +3 -0
  239. package/build/components/DropdownButton/style.d.ts +31 -0
  240. package/build/components/DropdownButton/style.js +70 -0
  241. package/build/components/DropdownButton/type.d.ts +14 -0
  242. package/build/components/DropdownButton/type.js +1 -0
  243. package/build/components/Error/Error.d.ts +8 -0
  244. package/build/components/Error/Error.js +20 -0
  245. package/build/components/Error/index.d.ts +2 -0
  246. package/build/components/Error/index.js +2 -0
  247. package/build/components/Error/style.d.ts +4 -0
  248. package/build/components/Error/style.js +13 -0
  249. package/build/components/ErrorBoundary/AppError.d.ts +1 -0
  250. package/build/components/ErrorBoundary/AppError.js +16 -0
  251. package/build/components/ErrorBoundary/ErrorBoundary.d.ts +15 -0
  252. package/build/components/ErrorBoundary/ErrorBoundary.js +25 -0
  253. package/build/components/ErrorBoundary/index.d.ts +2 -0
  254. package/build/components/ErrorBoundary/index.js +2 -0
  255. package/build/components/ErrorBoundary/style.d.ts +10 -0
  256. package/build/components/ErrorBoundary/style.js +19 -0
  257. package/build/components/ExpandableSideBar/ExpandableSideBar.d.ts +5 -0
  258. package/build/components/ExpandableSideBar/ExpandableSideBar.js +33 -0
  259. package/build/components/ExpandableSideBar/constant.d.ts +1 -0
  260. package/build/components/ExpandableSideBar/constant.js +1 -0
  261. package/build/components/ExpandableSideBar/index.d.ts +3 -0
  262. package/build/components/ExpandableSideBar/index.js +2 -0
  263. package/build/components/ExpandableSideBar/style.d.ts +19 -0
  264. package/build/components/ExpandableSideBar/style.js +47 -0
  265. package/build/components/ExpandableSideBar/type.d.ts +16 -0
  266. package/build/components/ExpandableSideBar/type.js +1 -0
  267. package/build/components/ExportButton/ExportButton.d.ts +5 -0
  268. package/build/components/ExportButton/ExportButton.js +13 -0
  269. package/build/components/ExportButton/index.d.ts +2 -0
  270. package/build/components/ExportButton/index.js +2 -0
  271. package/build/components/FileUpload/FileUpload.d.ts +17 -0
  272. package/build/components/FileUpload/FileUpload.js +40 -0
  273. package/build/components/FileUpload/index.d.ts +2 -0
  274. package/build/components/FileUpload/index.js +2 -0
  275. package/build/components/FileUpload/style.d.ts +38 -0
  276. package/build/components/FileUpload/style.js +106 -0
  277. package/build/components/FileUploader/FileUploader.d.ts +3 -0
  278. package/build/components/FileUploader/FileUploader.js +13 -0
  279. package/build/components/FileUploader/index.d.ts +3 -0
  280. package/build/components/FileUploader/index.js +2 -0
  281. package/build/components/FileUploader/style.d.ts +22 -0
  282. package/build/components/FileUploader/style.js +55 -0
  283. package/build/components/FileUploader/type.d.ts +13 -0
  284. package/build/components/FileUploader/type.js +1 -0
  285. package/build/components/FilteredIds/FilteredIds.d.ts +5 -0
  286. package/build/components/FilteredIds/FilteredIds.js +16 -0
  287. package/build/components/FilteredIds/index.d.ts +3 -0
  288. package/build/components/FilteredIds/index.js +2 -0
  289. package/build/components/FilteredIds/style.d.ts +11 -0
  290. package/build/components/FilteredIds/style.js +34 -0
  291. package/build/components/FilteredIds/type.d.ts +6 -0
  292. package/build/components/FilteredIds/type.js +1 -0
  293. package/build/components/FlippingCard/FlippingCard.d.ts +8 -0
  294. package/build/components/FlippingCard/FlippingCard.js +7 -0
  295. package/build/components/FlippingCard/index.d.ts +2 -0
  296. package/build/components/FlippingCard/index.js +2 -0
  297. package/build/components/FlippingCard/style.d.ts +263 -0
  298. package/build/components/FlippingCard/style.js +26 -0
  299. package/build/components/HeatMap/HeatMap.d.ts +2 -0
  300. package/build/components/HeatMap/HeatMap.js +20 -0
  301. package/build/components/HeatMap/constant.d.ts +1 -0
  302. package/build/components/HeatMap/constant.js +1 -0
  303. package/build/components/HeatMap/index.d.ts +3 -0
  304. package/build/components/HeatMap/index.js +2 -0
  305. package/build/components/HeatMap/style.d.ts +21 -0
  306. package/build/components/HeatMap/style.js +34 -0
  307. package/build/components/HeatMap/type.d.ts +23 -0
  308. package/build/components/HeatMap/type.js +1 -0
  309. package/build/components/HeatMap/utils.d.ts +1 -0
  310. package/build/components/HeatMap/utils.js +9 -0
  311. package/build/components/IOSSwitch/IOSSwitch.d.ts +5 -0
  312. package/build/components/IOSSwitch/IOSSwitch.js +7 -0
  313. package/build/components/IOSSwitch/index.d.ts +2 -0
  314. package/build/components/IOSSwitch/index.js +2 -0
  315. package/build/components/IOSSwitch/styles.d.ts +1 -0
  316. package/build/components/IOSSwitch/styles.js +49 -0
  317. package/build/components/Icon/Icon.d.ts +4 -0
  318. package/build/components/Icon/Icon.js +12 -0
  319. package/build/components/Icon/index.d.ts +3 -0
  320. package/build/components/Icon/index.js +2 -0
  321. package/build/components/Icon/type.d.ts +8 -0
  322. package/build/components/Icon/type.js +1 -0
  323. package/build/components/IconGallery/IconGallery.d.ts +3 -0
  324. package/build/components/IconGallery/IconGallery.js +13 -0
  325. package/build/components/IconGallery/index.d.ts +3 -0
  326. package/build/components/IconGallery/index.js +2 -0
  327. package/build/components/IconGallery/styles.d.ts +9 -0
  328. package/build/components/IconGallery/styles.js +21 -0
  329. package/build/components/IconGallery/type.d.ts +8 -0
  330. package/build/components/IconGallery/type.js +1 -0
  331. package/build/components/IconWithBadge/IconWithBadge.d.ts +2 -0
  332. package/build/components/IconWithBadge/IconWithBadge.js +17 -0
  333. package/build/components/IconWithBadge/index.d.ts +3 -0
  334. package/build/components/IconWithBadge/index.js +2 -0
  335. package/build/components/IconWithBadge/style.d.ts +7 -0
  336. package/build/components/IconWithBadge/style.js +11 -0
  337. package/build/components/IconWithBadge/type.d.ts +16 -0
  338. package/build/components/IconWithBadge/type.js +1 -0
  339. package/build/components/IconWithHoverOverlays/IconWithHoverOverlays.d.ts +12 -0
  340. package/build/components/IconWithHoverOverlays/IconWithHoverOverlays.js +19 -0
  341. package/build/components/IconWithHoverOverlays/index.d.ts +2 -0
  342. package/build/components/IconWithHoverOverlays/index.js +2 -0
  343. package/build/components/IconWithHoverOverlays/style.d.ts +12 -0
  344. package/build/components/IconWithHoverOverlays/style.js +45 -0
  345. package/build/components/IconWithLabel/IconWithLabel.d.ts +9 -0
  346. package/build/components/IconWithLabel/IconWithLabel.js +7 -0
  347. package/build/components/IconWithLabel/index.d.ts +2 -0
  348. package/build/components/IconWithLabel/index.js +2 -0
  349. package/build/components/IconWithLabel/style.d.ts +7 -0
  350. package/build/components/IconWithLabel/style.js +21 -0
  351. package/build/components/IconsDropdown/IconsDropdown.d.ts +13 -0
  352. package/build/components/IconsDropdown/IconsDropdown.js +31 -0
  353. package/build/components/IconsDropdown/index.d.ts +2 -0
  354. package/build/components/IconsDropdown/index.js +2 -0
  355. package/build/components/IconsDropdown/style.d.ts +21 -0
  356. package/build/components/IconsDropdown/style.js +47 -0
  357. package/build/components/ImageWrapper/ImageWrapper.d.ts +266 -0
  358. package/build/components/ImageWrapper/ImageWrapper.js +16 -0
  359. package/build/components/ImageWrapper/index.d.ts +2 -0
  360. package/build/components/ImageWrapper/index.js +2 -0
  361. package/build/components/Input/Input.d.ts +8 -0
  362. package/build/components/Input/Input.js +22 -0
  363. package/build/components/Input/index.d.ts +2 -0
  364. package/build/components/Input/index.js +2 -0
  365. package/build/components/Input/style.d.ts +3 -0
  366. package/build/components/Input/style.js +18 -0
  367. package/build/components/InputBase/AmountInputBase/AmountInputBase.d.ts +19 -0
  368. package/build/components/InputBase/AmountInputBase/AmountInputBase.js +30 -0
  369. package/build/components/InputBase/AmountInputBase/CurrencyList/CurrencyList.d.ts +15 -0
  370. package/build/components/InputBase/AmountInputBase/CurrencyList/CurrencyList.js +50 -0
  371. package/build/components/InputBase/AmountInputBase/CurrencyList/index.d.ts +2 -0
  372. package/build/components/InputBase/AmountInputBase/CurrencyList/index.js +2 -0
  373. package/build/components/InputBase/AmountInputBase/CurrencyList/style.d.ts +8 -0
  374. package/build/components/InputBase/AmountInputBase/CurrencyList/style.js +39 -0
  375. package/build/components/InputBase/AmountInputBase/InputNumber/InputNumber.d.ts +8 -0
  376. package/build/components/InputBase/AmountInputBase/InputNumber/InputNumber.js +24 -0
  377. package/build/components/InputBase/AmountInputBase/InputNumber/index.d.ts +3 -0
  378. package/build/components/InputBase/AmountInputBase/InputNumber/index.js +2 -0
  379. package/build/components/InputBase/AmountInputBase/InputNumber/style.d.ts +8 -0
  380. package/build/components/InputBase/AmountInputBase/InputNumber/style.js +24 -0
  381. package/build/components/InputBase/AmountInputBase/index.d.ts +4 -0
  382. package/build/components/InputBase/AmountInputBase/index.js +3 -0
  383. package/build/components/InputBase/AmountInputBase/style.d.ts +14 -0
  384. package/build/components/InputBase/AmountInputBase/style.js +26 -0
  385. package/build/components/InputBase/InputBase/InputBase.d.ts +9 -0
  386. package/build/components/InputBase/InputBase/InputBase.js +28 -0
  387. package/build/components/InputBase/InputBase/index.d.ts +3 -0
  388. package/build/components/InputBase/InputBase/index.js +2 -0
  389. package/build/components/InputBase/InputBase/style.d.ts +10 -0
  390. package/build/components/InputBase/InputBase/style.js +68 -0
  391. package/build/components/InputBase/PhoneInputBase/CountriesList/CountriesList.d.ts +16 -0
  392. package/build/components/InputBase/PhoneInputBase/CountriesList/CountriesList.js +64 -0
  393. package/build/components/InputBase/PhoneInputBase/CountriesList/index.d.ts +2 -0
  394. package/build/components/InputBase/PhoneInputBase/CountriesList/index.js +2 -0
  395. package/build/components/InputBase/PhoneInputBase/CountriesList/style.d.ts +12 -0
  396. package/build/components/InputBase/PhoneInputBase/CountriesList/style.js +46 -0
  397. package/build/components/InputBase/PhoneInputBase/PhoneInputBase.d.ts +18 -0
  398. package/build/components/InputBase/PhoneInputBase/PhoneInputBase.js +27 -0
  399. package/build/components/InputBase/PhoneInputBase/index.d.ts +3 -0
  400. package/build/components/InputBase/PhoneInputBase/index.js +3 -0
  401. package/build/components/InputBase/PhoneInputBase/style.d.ts +14 -0
  402. package/build/components/InputBase/PhoneInputBase/style.js +23 -0
  403. package/build/components/InputBase/SelectBase/SelectBase.d.ts +17 -0
  404. package/build/components/InputBase/SelectBase/SelectBase.js +42 -0
  405. package/build/components/InputBase/SelectBase/SelectBaseMultiple.d.ts +17 -0
  406. package/build/components/InputBase/SelectBase/SelectBaseMultiple.js +61 -0
  407. package/build/components/InputBase/SelectBase/index.d.ts +3 -0
  408. package/build/components/InputBase/SelectBase/index.js +3 -0
  409. package/build/components/InputBase/SelectBase/style.d.ts +10 -0
  410. package/build/components/InputBase/SelectBase/style.js +108 -0
  411. package/build/components/InputBase/index.d.ts +4 -0
  412. package/build/components/InputBase/index.js +4 -0
  413. package/build/components/InputNumber/InputNumber.d.ts +8 -0
  414. package/build/components/InputNumber/InputNumber.js +38 -0
  415. package/build/components/InputNumber/index.d.ts +2 -0
  416. package/build/components/InputNumber/index.js +2 -0
  417. package/build/components/InputNumber/style.d.ts +4 -0
  418. package/build/components/InputNumber/style.js +20 -0
  419. package/build/components/Inputs/FileInput/FileInput.d.ts +2 -0
  420. package/build/components/Inputs/FileInput/FileInput.js +13 -0
  421. package/build/components/Inputs/FileInput/index.d.ts +2 -0
  422. package/build/components/Inputs/FileInput/index.js +2 -0
  423. package/build/components/Inputs/FileInput/style.d.ts +11 -0
  424. package/build/components/Inputs/FileInput/style.js +41 -0
  425. package/build/components/Inputs/FileInput/type.d.ts +3 -0
  426. package/build/components/Inputs/FileInput/type.js +1 -0
  427. package/build/components/Inputs/Input/Input.d.ts +2 -0
  428. package/build/components/Inputs/Input/Input.js +23 -0
  429. package/build/components/Inputs/Input/index.d.ts +3 -0
  430. package/build/components/Inputs/Input/index.js +2 -0
  431. package/build/components/Inputs/Input/style.d.ts +12 -0
  432. package/build/components/Inputs/Input/style.js +81 -0
  433. package/build/components/Inputs/Input/type.d.ts +10 -0
  434. package/build/components/Inputs/Input/type.js +1 -0
  435. package/build/components/Inputs/PhoneInput/CountriesCode/CountriesCode.d.ts +12 -0
  436. package/build/components/Inputs/PhoneInput/CountriesCode/CountriesCode.js +59 -0
  437. package/build/components/Inputs/PhoneInput/CountriesCode/index.d.ts +3 -0
  438. package/build/components/Inputs/PhoneInput/CountriesCode/index.js +3 -0
  439. package/build/components/Inputs/PhoneInput/CountriesCode/style.d.ts +14 -0
  440. package/build/components/Inputs/PhoneInput/CountriesCode/style.js +45 -0
  441. package/build/components/Inputs/PhoneInput/index.d.ts +2 -0
  442. package/build/components/Inputs/PhoneInput/index.js +2 -0
  443. package/build/components/Inputs/PhoneInput/style.d.ts +11 -0
  444. package/build/components/Inputs/PhoneInput/style.js +25 -0
  445. package/build/components/Inputs/SearchInput/SearchInput.d.ts +2 -0
  446. package/build/components/Inputs/SearchInput/SearchInput.js +24 -0
  447. package/build/components/Inputs/SearchInput/index.d.ts +2 -0
  448. package/build/components/Inputs/SearchInput/index.js +2 -0
  449. package/build/components/Inputs/SearchInput/styles.d.ts +3 -0
  450. package/build/components/Inputs/SearchInput/styles.js +17 -0
  451. package/build/components/Inputs/Select/Select.d.ts +2 -0
  452. package/build/components/Inputs/Select/Select.js +66 -0
  453. package/build/components/Inputs/Select/index.d.ts +2 -0
  454. package/build/components/Inputs/Select/index.js +2 -0
  455. package/build/components/Inputs/Select/style.d.ts +1 -0
  456. package/build/components/Inputs/Select/style.js +23 -0
  457. package/build/components/Inputs/Select/type.d.ts +9 -0
  458. package/build/components/Inputs/Select/type.js +1 -0
  459. package/build/components/Inputs/index.d.ts +3 -0
  460. package/build/components/Inputs/index.js +3 -0
  461. package/build/components/JSONViewer/JSONViewer.d.ts +2 -0
  462. package/build/components/JSONViewer/JSONViewer.js +300 -0
  463. package/build/components/JSONViewer/components/FooterButton/FooterButton.d.ts +5 -0
  464. package/build/components/JSONViewer/components/FooterButton/FooterButton.js +44 -0
  465. package/build/components/JSONViewer/components/FooterButton/index.d.ts +2 -0
  466. package/build/components/JSONViewer/components/FooterButton/index.js +2 -0
  467. package/build/components/JSONViewer/components/JSONTitleBar/JSONTitleBar.d.ts +5 -0
  468. package/build/components/JSONViewer/components/JSONTitleBar/JSONTitleBar.js +10 -0
  469. package/build/components/JSONViewer/components/JSONTitleBar/index.d.ts +3 -0
  470. package/build/components/JSONViewer/components/JSONTitleBar/index.js +3 -0
  471. package/build/components/JSONViewer/components/JSONTitleBar/type.d.ts +14 -0
  472. package/build/components/JSONViewer/components/JSONTitleBar/type.js +1 -0
  473. package/build/components/JSONViewer/components/index.d.ts +2 -0
  474. package/build/components/JSONViewer/components/index.js +2 -0
  475. package/build/components/JSONViewer/index.d.ts +4 -0
  476. package/build/components/JSONViewer/index.js +4 -0
  477. package/build/components/JSONViewer/style.d.ts +631 -0
  478. package/build/components/JSONViewer/style.js +176 -0
  479. package/build/components/JSONViewer/type.d.ts +14 -0
  480. package/build/components/JSONViewer/type.js +1 -0
  481. package/build/components/LabeledIconDropdown/LabeledIconDropdown.d.ts +21 -0
  482. package/build/components/LabeledIconDropdown/LabeledIconDropdown.js +51 -0
  483. package/build/components/LabeledIconDropdown/index.d.ts +2 -0
  484. package/build/components/LabeledIconDropdown/index.js +2 -0
  485. package/build/components/LabeledIconDropdown/style.d.ts +39 -0
  486. package/build/components/LabeledIconDropdown/style.js +104 -0
  487. package/build/components/Loader/Loader.d.ts +5 -0
  488. package/build/components/Loader/Loader.js +7 -0
  489. package/build/components/Loader/index.d.ts +2 -0
  490. package/build/components/Loader/index.js +2 -0
  491. package/build/components/Loader/style.d.ts +1 -0
  492. package/build/components/Loader/style.js +15 -0
  493. package/build/components/Loaders/TapLoader.d.ts +13 -0
  494. package/build/components/Loaders/TapLoader.js +29 -0
  495. package/build/components/Loaders/index.d.ts +2 -0
  496. package/build/components/Loaders/index.js +2 -0
  497. package/build/components/MUIThemeProvider/MUIThemeProvider.d.ts +9 -0
  498. package/build/components/MUIThemeProvider/MUIThemeProvider.js +9 -0
  499. package/build/components/MUIThemeProvider/index.d.ts +2 -0
  500. package/build/components/MUIThemeProvider/index.js +2 -0
  501. package/build/components/MainContainer/MainContainer.d.ts +10 -0
  502. package/build/components/MainContainer/MainContainer.js +8 -0
  503. package/build/components/MainContainer/index.d.ts +2 -0
  504. package/build/components/MainContainer/index.js +2 -0
  505. package/build/components/Menu/Menu.d.ts +8 -0
  506. package/build/components/Menu/Menu.js +8 -0
  507. package/build/components/Menu/index.d.ts +2 -0
  508. package/build/components/Menu/index.js +2 -0
  509. package/build/components/Menu/style.d.ts +4 -0
  510. package/build/components/Menu/style.js +14 -0
  511. package/build/components/MenuItem/MenuItem.d.ts +10 -0
  512. package/build/components/MenuItem/MenuItem.js +19 -0
  513. package/build/components/MenuItem/index.d.ts +2 -0
  514. package/build/components/MenuItem/index.js +2 -0
  515. package/build/components/MenuItem/style.d.ts +7 -0
  516. package/build/components/MenuItem/style.js +26 -0
  517. package/build/components/MultiSelectDropdownButton/MultiSelectDropdownButton.d.ts +5 -0
  518. package/build/components/MultiSelectDropdownButton/MultiSelectDropdownButton.js +32 -0
  519. package/build/components/MultiSelectDropdownButton/index.d.ts +3 -0
  520. package/build/components/MultiSelectDropdownButton/index.js +3 -0
  521. package/build/components/MultiSelectDropdownButton/style.d.ts +6 -0
  522. package/build/components/MultiSelectDropdownButton/style.js +8 -0
  523. package/build/components/MultiSelectDropdownButton/type.d.ts +12 -0
  524. package/build/components/MultiSelectDropdownButton/type.js +1 -0
  525. package/build/components/MultiSelectWithSearch/ChildMenuItem.d.ts +9 -0
  526. package/build/components/MultiSelectWithSearch/ChildMenuItem.js +45 -0
  527. package/build/components/MultiSelectWithSearch/MultiSelectWithSearch.d.ts +3 -0
  528. package/build/components/MultiSelectWithSearch/MultiSelectWithSearch.js +52 -0
  529. package/build/components/MultiSelectWithSearch/ParentMenuItem.d.ts +12 -0
  530. package/build/components/MultiSelectWithSearch/ParentMenuItem.js +27 -0
  531. package/build/components/MultiSelectWithSearch/index.d.ts +5 -0
  532. package/build/components/MultiSelectWithSearch/index.js +4 -0
  533. package/build/components/MultiSelectWithSearch/style.d.ts +36 -0
  534. package/build/components/MultiSelectWithSearch/style.js +88 -0
  535. package/build/components/MultiSelectWithSearch/type.d.ts +19 -0
  536. package/build/components/MultiSelectWithSearch/type.js +1 -0
  537. package/build/components/MultiSelectWithSearch/utils.d.ts +2 -0
  538. package/build/components/MultiSelectWithSearch/utils.js +12 -0
  539. package/build/components/NestedDropdown/Dropdown.d.ts +5 -0
  540. package/build/components/NestedDropdown/Dropdown.js +57 -0
  541. package/build/components/NestedDropdown/MenuItem.d.ts +16 -0
  542. package/build/components/NestedDropdown/MenuItem.js +50 -0
  543. package/build/components/NestedDropdown/NestedDropdown.d.ts +16 -0
  544. package/build/components/NestedDropdown/NestedDropdown.js +38 -0
  545. package/build/components/NestedDropdown/index.d.ts +3 -0
  546. package/build/components/NestedDropdown/index.js +3 -0
  547. package/build/components/NestedDropdown/styles.d.ts +36 -0
  548. package/build/components/NestedDropdown/styles.js +100 -0
  549. package/build/components/NestedDropdown/types.d.ts +18 -0
  550. package/build/components/NestedDropdown/types.js +1 -0
  551. package/build/components/NoInternet/NoInternet.d.ts +5 -0
  552. package/build/components/NoInternet/NoInternet.js +7 -0
  553. package/build/components/NoInternet/index.d.ts +2 -0
  554. package/build/components/NoInternet/index.js +2 -0
  555. package/build/components/NoInternet/style.d.ts +10 -0
  556. package/build/components/NoInternet/style.js +32 -0
  557. package/build/components/Notifications/Notifications.d.ts +1 -0
  558. package/build/components/Notifications/Notifications.js +12 -0
  559. package/build/components/Notifications/index.d.ts +2 -0
  560. package/build/components/Notifications/index.js +2 -0
  561. package/build/components/Notifications/style.d.ts +4 -0
  562. package/build/components/Notifications/style.js +15 -0
  563. package/build/components/ProgressBar/ProgressBar.d.ts +5 -0
  564. package/build/components/ProgressBar/ProgressBar.js +6 -0
  565. package/build/components/ProgressBar/index.d.ts +2 -0
  566. package/build/components/ProgressBar/index.js +2 -0
  567. package/build/components/ProgressBar/style.d.ts +17 -0
  568. package/build/components/ProgressBar/style.js +19 -0
  569. package/build/components/ProgressRing/LoadingSkeleton.d.ts +1 -0
  570. package/build/components/ProgressRing/LoadingSkeleton.js +6 -0
  571. package/build/components/ProgressRing/ProgressRing.d.ts +9 -0
  572. package/build/components/ProgressRing/ProgressRing.js +17 -0
  573. package/build/components/ProgressRing/index.d.ts +2 -0
  574. package/build/components/ProgressRing/index.js +2 -0
  575. package/build/components/ProgressRing/style.d.ts +19 -0
  576. package/build/components/ProgressRing/style.js +37 -0
  577. package/build/components/RFH/Forms/DefaultForm.d.ts +10 -0
  578. package/build/components/RFH/Forms/DefaultForm.js +7 -0
  579. package/build/components/RFH/Forms/index.d.ts +2 -0
  580. package/build/components/RFH/Forms/index.js +1 -0
  581. package/build/components/RFH/Inputs/AmountInput/AmountInput.d.ts +10 -0
  582. package/build/components/RFH/Inputs/AmountInput/AmountInput.js +35 -0
  583. package/build/components/RFH/Inputs/AmountInput/index.d.ts +3 -0
  584. package/build/components/RFH/Inputs/AmountInput/index.js +2 -0
  585. package/build/components/RFH/Inputs/AmountInput/utils.d.ts +1 -0
  586. package/build/components/RFH/Inputs/AmountInput/utils.js +3 -0
  587. package/build/components/RFH/Inputs/Input/Input.d.ts +12 -0
  588. package/build/components/RFH/Inputs/Input/Input.js +27 -0
  589. package/build/components/RFH/Inputs/Input/index.d.ts +3 -0
  590. package/build/components/RFH/Inputs/Input/index.js +2 -0
  591. package/build/components/RFH/Inputs/MultiSelect/MultiSelect.d.ts +6 -0
  592. package/build/components/RFH/Inputs/MultiSelect/MultiSelect.js +43 -0
  593. package/build/components/RFH/Inputs/MultiSelect/index.d.ts +1 -0
  594. package/build/components/RFH/Inputs/MultiSelect/index.js +1 -0
  595. package/build/components/RFH/Inputs/MultiSelect/style.d.ts +1 -0
  596. package/build/components/RFH/Inputs/MultiSelect/style.js +9 -0
  597. package/build/components/RFH/Inputs/PhoneInput/PhoneInput.d.ts +10 -0
  598. package/build/components/RFH/Inputs/PhoneInput/PhoneInput.js +30 -0
  599. package/build/components/RFH/Inputs/PhoneInput/index.d.ts +2 -0
  600. package/build/components/RFH/Inputs/PhoneInput/index.js +2 -0
  601. package/build/components/RFH/Inputs/Select/Select.d.ts +8 -0
  602. package/build/components/RFH/Inputs/Select/Select.js +25 -0
  603. package/build/components/RFH/Inputs/Select/index.d.ts +4 -0
  604. package/build/components/RFH/Inputs/Select/index.js +2 -0
  605. package/build/components/RFH/Inputs/Select/type.d.ts +6 -0
  606. package/build/components/RFH/Inputs/Select/type.js +1 -0
  607. package/build/components/RFH/Inputs/SelectWithAccordion/SelectWithAccordion.d.ts +3 -0
  608. package/build/components/RFH/Inputs/SelectWithAccordion/SelectWithAccordion.js +62 -0
  609. package/build/components/RFH/Inputs/SelectWithAccordion/index.d.ts +4 -0
  610. package/build/components/RFH/Inputs/SelectWithAccordion/index.js +2 -0
  611. package/build/components/RFH/Inputs/SelectWithAccordion/style.d.ts +34 -0
  612. package/build/components/RFH/Inputs/SelectWithAccordion/style.js +70 -0
  613. package/build/components/RFH/Inputs/SelectWithAccordion/type.d.ts +7 -0
  614. package/build/components/RFH/Inputs/SelectWithAccordion/type.js +1 -0
  615. package/build/components/RFH/Inputs/Switch/Switch.d.ts +11 -0
  616. package/build/components/RFH/Inputs/Switch/Switch.js +22 -0
  617. package/build/components/RFH/Inputs/Switch/index.d.ts +2 -0
  618. package/build/components/RFH/Inputs/Switch/index.js +2 -0
  619. package/build/components/RFH/Inputs/index.d.ts +7 -0
  620. package/build/components/RFH/Inputs/index.js +7 -0
  621. package/build/components/RFH/hooks/index.d.ts +1 -0
  622. package/build/components/RFH/hooks/index.js +1 -0
  623. package/build/components/RFH/hooks/useRFHForm.d.ts +2 -0
  624. package/build/components/RFH/hooks/useRFHForm.js +2 -0
  625. package/build/components/RFH/index.d.ts +2 -0
  626. package/build/components/RFH/index.js +2 -0
  627. package/build/components/ResizableHeightInput/ResizableHeightInput.d.ts +11 -0
  628. package/build/components/ResizableHeightInput/ResizableHeightInput.js +24 -0
  629. package/build/components/ResizableHeightInput/index.d.ts +2 -0
  630. package/build/components/ResizableHeightInput/index.js +2 -0
  631. package/build/components/ResizableHeightInput/style.d.ts +7 -0
  632. package/build/components/ResizableHeightInput/style.js +12 -0
  633. package/build/components/Routes/PrivateRoute.d.ts +8 -0
  634. package/build/components/Routes/PrivateRoute.js +10 -0
  635. package/build/components/Routes/PublicRoute.d.ts +7 -0
  636. package/build/components/Routes/PublicRoute.js +6 -0
  637. package/build/components/Routes/index.d.ts +3 -0
  638. package/build/components/Routes/index.js +3 -0
  639. package/build/components/Sandbox/Sandbox.d.ts +11 -0
  640. package/build/components/Sandbox/Sandbox.js +10 -0
  641. package/build/components/Sandbox/index.d.ts +2 -0
  642. package/build/components/Sandbox/index.js +2 -0
  643. package/build/components/Sandbox/style.d.ts +22 -0
  644. package/build/components/Sandbox/style.js +58 -0
  645. package/build/components/SearchButton/SearchButton.d.ts +8 -0
  646. package/build/components/SearchButton/SearchButton.js +55 -0
  647. package/build/components/SearchButton/index.d.ts +2 -0
  648. package/build/components/SearchButton/index.js +2 -0
  649. package/build/components/SearchButton/styles.d.ts +571 -0
  650. package/build/components/SearchButton/styles.js +44 -0
  651. package/build/components/SelectDropdown/SelectDropdown.d.ts +16 -0
  652. package/build/components/SelectDropdown/SelectDropdown.js +17 -0
  653. package/build/components/SelectDropdown/index.d.ts +2 -0
  654. package/build/components/SelectDropdown/index.js +2 -0
  655. package/build/components/SelectDropdown/style.d.ts +17 -0
  656. package/build/components/SelectDropdown/style.js +18 -0
  657. package/build/components/SelectWithSearch/SelectWithSearch.d.ts +3 -0
  658. package/build/components/SelectWithSearch/SelectWithSearch.js +60 -0
  659. package/build/components/SelectWithSearch/index.d.ts +3 -0
  660. package/build/components/SelectWithSearch/index.js +2 -0
  661. package/build/components/SelectWithSearch/style.d.ts +32 -0
  662. package/build/components/SelectWithSearch/style.js +70 -0
  663. package/build/components/SelectWithSearch/type.d.ts +18 -0
  664. package/build/components/SelectWithSearch/type.js +1 -0
  665. package/build/components/SimpleDialog/SimpleDialog.d.ts +2 -0
  666. package/build/components/SimpleDialog/SimpleDialog.js +9 -0
  667. package/build/components/SimpleDialog/index.d.ts +3 -0
  668. package/build/components/SimpleDialog/index.js +2 -0
  669. package/build/components/SimpleDialog/style.d.ts +2 -0
  670. package/build/components/SimpleDialog/style.js +13 -0
  671. package/build/components/SimpleDialog/type.d.ts +8 -0
  672. package/build/components/SimpleDialog/type.js +1 -0
  673. package/build/components/Skeleton/Skeleton.d.ts +5 -0
  674. package/build/components/Skeleton/Skeleton.js +19 -0
  675. package/build/components/Skeleton/index.d.ts +2 -0
  676. package/build/components/Skeleton/index.js +2 -0
  677. package/build/components/SplashScreen/SplashScreen.d.ts +4 -0
  678. package/build/components/SplashScreen/SplashScreen.js +17 -0
  679. package/build/components/SplashScreen/index.d.ts +2 -0
  680. package/build/components/SplashScreen/index.js +2 -0
  681. package/build/components/StatusButton/ChevronIcon.d.ts +2 -0
  682. package/build/components/StatusButton/ChevronIcon.js +16 -0
  683. package/build/components/StatusButton/StatusButton.d.ts +5 -0
  684. package/build/components/StatusButton/StatusButton.js +55 -0
  685. package/build/components/StatusButton/constant.d.ts +24 -0
  686. package/build/components/StatusButton/constant.js +25 -0
  687. package/build/components/StatusButton/index.d.ts +4 -0
  688. package/build/components/StatusButton/index.js +3 -0
  689. package/build/components/StatusButton/style.d.ts +35 -0
  690. package/build/components/StatusButton/style.js +74 -0
  691. package/build/components/StatusButton/type.d.ts +22 -0
  692. package/build/components/StatusButton/type.js +1 -0
  693. package/build/components/StatusIcons/AgreementIcon/AgreementIcon.d.ts +3 -0
  694. package/build/components/StatusIcons/AgreementIcon/AgreementIcon.js +34 -0
  695. package/build/components/StatusIcons/AgreementIcon/constant.d.ts +54 -0
  696. package/build/components/StatusIcons/AgreementIcon/constant.js +32 -0
  697. package/build/components/StatusIcons/AgreementIcon/index.d.ts +3 -0
  698. package/build/components/StatusIcons/AgreementIcon/index.js +3 -0
  699. package/build/components/StatusIcons/AgreementIcon/style.d.ts +7 -0
  700. package/build/components/StatusIcons/AgreementIcon/style.js +37 -0
  701. package/build/components/StatusIcons/AgreementIcon/type.d.ts +9 -0
  702. package/build/components/StatusIcons/AgreementIcon/type.js +1 -0
  703. package/build/components/StatusIcons/AuthIcons/AuthIcons.d.ts +3 -0
  704. package/build/components/StatusIcons/AuthIcons/AuthIcons.js +45 -0
  705. package/build/components/StatusIcons/AuthIcons/constants.d.ts +23 -0
  706. package/build/components/StatusIcons/AuthIcons/constants.js +30 -0
  707. package/build/components/StatusIcons/AuthIcons/index.d.ts +3 -0
  708. package/build/components/StatusIcons/AuthIcons/index.js +3 -0
  709. package/build/components/StatusIcons/AuthIcons/style.d.ts +536 -0
  710. package/build/components/StatusIcons/AuthIcons/style.js +61 -0
  711. package/build/components/StatusIcons/AuthIcons/type.d.ts +30 -0
  712. package/build/components/StatusIcons/AuthIcons/type.js +14 -0
  713. package/build/components/StatusIcons/AuthIcons/utils.d.ts +1 -0
  714. package/build/components/StatusIcons/AuthIcons/utils.js +8 -0
  715. package/build/components/StatusIcons/AuthorizationAutoIcons/CaptureAutoIcon.d.ts +3 -0
  716. package/build/components/StatusIcons/AuthorizationAutoIcons/CaptureAutoIcon.js +62 -0
  717. package/build/components/StatusIcons/AuthorizationAutoIcons/VoidAutoIcon.d.ts +3 -0
  718. package/build/components/StatusIcons/AuthorizationAutoIcons/VoidAutoIcon.js +65 -0
  719. package/build/components/StatusIcons/AuthorizationAutoIcons/constant.d.ts +8 -0
  720. package/build/components/StatusIcons/AuthorizationAutoIcons/constant.js +5 -0
  721. package/build/components/StatusIcons/AuthorizationAutoIcons/index.d.ts +4 -0
  722. package/build/components/StatusIcons/AuthorizationAutoIcons/index.js +4 -0
  723. package/build/components/StatusIcons/AuthorizationAutoIcons/style.d.ts +280 -0
  724. package/build/components/StatusIcons/AuthorizationAutoIcons/style.js +58 -0
  725. package/build/components/StatusIcons/AuthorizationAutoIcons/type.d.ts +14 -0
  726. package/build/components/StatusIcons/AuthorizationAutoIcons/type.js +1 -0
  727. package/build/components/StatusIcons/AuthorizationAutoIcons/utils.d.ts +1 -0
  728. package/build/components/StatusIcons/AuthorizationAutoIcons/utils.js +9 -0
  729. package/build/components/StatusIcons/AuthorizedIcon/AuthorizedIcon.d.ts +9 -0
  730. package/build/components/StatusIcons/AuthorizedIcon/AuthorizedIcon.js +15 -0
  731. package/build/components/StatusIcons/AuthorizedIcon/index.d.ts +1 -0
  732. package/build/components/StatusIcons/AuthorizedIcon/index.js +1 -0
  733. package/build/components/StatusIcons/ChargeStatusIcon/ChargeStatusIcon.d.ts +20 -0
  734. package/build/components/StatusIcons/ChargeStatusIcon/ChargeStatusIcon.js +54 -0
  735. package/build/components/StatusIcons/ChargeStatusIcon/index.d.ts +1 -0
  736. package/build/components/StatusIcons/ChargeStatusIcon/index.js +1 -0
  737. package/build/components/StatusIcons/ChargeStatusIcon/style.d.ts +1631 -0
  738. package/build/components/StatusIcons/ChargeStatusIcon/style.js +113 -0
  739. package/build/components/StatusIcons/CustomerInitiated/CustomerInitiatedIcon.d.ts +1 -0
  740. package/build/components/StatusIcons/CustomerInitiated/CustomerInitiatedIcon.js +11 -0
  741. package/build/components/StatusIcons/CustomerInitiated/index.d.ts +1 -0
  742. package/build/components/StatusIcons/CustomerInitiated/index.js +1 -0
  743. package/build/components/StatusIcons/DestinationIcon/DestinationIcon.d.ts +5 -0
  744. package/build/components/StatusIcons/DestinationIcon/DestinationIcon.js +14 -0
  745. package/build/components/StatusIcons/DestinationIcon/constant.d.ts +18 -0
  746. package/build/components/StatusIcons/DestinationIcon/constant.js +7 -0
  747. package/build/components/StatusIcons/DestinationIcon/index.d.ts +1 -0
  748. package/build/components/StatusIcons/DestinationIcon/index.js +1 -0
  749. package/build/components/StatusIcons/DestinationIcon/style.d.ts +4 -0
  750. package/build/components/StatusIcons/DestinationIcon/style.js +20 -0
  751. package/build/components/StatusIcons/DeviceIcon/DeviceIcon.d.ts +8 -0
  752. package/build/components/StatusIcons/DeviceIcon/DeviceIcon.js +7 -0
  753. package/build/components/StatusIcons/DeviceIcon/index.d.ts +1 -0
  754. package/build/components/StatusIcons/DeviceIcon/index.js +1 -0
  755. package/build/components/StatusIcons/DisputeIcon/DisputeIcon.d.ts +7 -0
  756. package/build/components/StatusIcons/DisputeIcon/DisputeIcon.js +9 -0
  757. package/build/components/StatusIcons/DisputeIcon/index.d.ts +1 -0
  758. package/build/components/StatusIcons/DisputeIcon/index.js +1 -0
  759. package/build/components/StatusIcons/GeographyIcon/GeographyIcon.d.ts +5 -0
  760. package/build/components/StatusIcons/GeographyIcon/GeographyIcon.js +19 -0
  761. package/build/components/StatusIcons/GeographyIcon/index.d.ts +1 -0
  762. package/build/components/StatusIcons/GeographyIcon/index.js +1 -0
  763. package/build/components/StatusIcons/GeographyIcon/style.d.ts +7 -0
  764. package/build/components/StatusIcons/GeographyIcon/style.js +23 -0
  765. package/build/components/StatusIcons/IssuerIcon/IssuerIcon.d.ts +2 -0
  766. package/build/components/StatusIcons/IssuerIcon/IssuerIcon.js +9 -0
  767. package/build/components/StatusIcons/IssuerIcon/index.d.ts +3 -0
  768. package/build/components/StatusIcons/IssuerIcon/index.js +3 -0
  769. package/build/components/StatusIcons/IssuerIcon/style.d.ts +5 -0
  770. package/build/components/StatusIcons/IssuerIcon/style.js +11 -0
  771. package/build/components/StatusIcons/IssuerIcon/type.d.ts +6 -0
  772. package/build/components/StatusIcons/IssuerIcon/type.js +1 -0
  773. package/build/components/StatusIcons/PayoutIcon/PayoutIcon.d.ts +10 -0
  774. package/build/components/StatusIcons/PayoutIcon/PayoutIcon.js +12 -0
  775. package/build/components/StatusIcons/PayoutIcon/index.d.ts +1 -0
  776. package/build/components/StatusIcons/PayoutIcon/index.js +1 -0
  777. package/build/components/StatusIcons/RefundIcon/RefundIcon.d.ts +11 -0
  778. package/build/components/StatusIcons/RefundIcon/RefundIcon.js +51 -0
  779. package/build/components/StatusIcons/RefundIcon/index.d.ts +2 -0
  780. package/build/components/StatusIcons/RefundIcon/index.js +2 -0
  781. package/build/components/StatusIcons/SourceIcons/SourceIcons.d.ts +2 -0
  782. package/build/components/StatusIcons/SourceIcons/SourceIcons.js +38 -0
  783. package/build/components/StatusIcons/SourceIcons/components/SourceIcon.d.ts +5 -0
  784. package/build/components/StatusIcons/SourceIcons/components/SourceIcon.js +13 -0
  785. package/build/components/StatusIcons/SourceIcons/components/index.d.ts +1 -0
  786. package/build/components/StatusIcons/SourceIcons/components/index.js +1 -0
  787. package/build/components/StatusIcons/SourceIcons/index.d.ts +2 -0
  788. package/build/components/StatusIcons/SourceIcons/index.js +2 -0
  789. package/build/components/StatusIcons/SourceIcons/style.d.ts +271 -0
  790. package/build/components/StatusIcons/SourceIcons/style.js +57 -0
  791. package/build/components/StatusIcons/SourceIcons/type.d.ts +9 -0
  792. package/build/components/StatusIcons/SourceIcons/type.js +1 -0
  793. package/build/components/StatusIcons/SourceIcons/utils.d.ts +1 -0
  794. package/build/components/StatusIcons/SourceIcons/utils.js +8 -0
  795. package/build/components/StatusIcons/index.d.ts +14 -0
  796. package/build/components/StatusIcons/index.js +14 -0
  797. package/build/components/StatusLabel/StatusLabel.d.ts +8 -0
  798. package/build/components/StatusLabel/StatusLabel.js +10 -0
  799. package/build/components/StatusLabel/index.d.ts +2 -0
  800. package/build/components/StatusLabel/index.js +2 -0
  801. package/build/components/StatusLabel/style.d.ts +9 -0
  802. package/build/components/StatusLabel/style.js +20 -0
  803. package/build/components/TableCells/CustomCells/ActionCell/ActionCell.d.ts +5 -0
  804. package/build/components/TableCells/CustomCells/ActionCell/ActionCell.js +98 -0
  805. package/build/components/TableCells/CustomCells/ActionCell/components/ActionIconsVariants.d.ts +13 -0
  806. package/build/components/TableCells/CustomCells/ActionCell/components/ActionIconsVariants.js +21 -0
  807. package/build/components/TableCells/CustomCells/ActionCell/components/index.d.ts +2 -0
  808. package/build/components/TableCells/CustomCells/ActionCell/components/index.js +2 -0
  809. package/build/components/TableCells/CustomCells/ActionCell/constant.d.ts +28 -0
  810. package/build/components/TableCells/CustomCells/ActionCell/constant.js +24 -0
  811. package/build/components/TableCells/CustomCells/ActionCell/hooks/useActionCell.d.ts +32 -0
  812. package/build/components/TableCells/CustomCells/ActionCell/hooks/useActionCell.js +45 -0
  813. package/build/components/TableCells/CustomCells/ActionCell/index.d.ts +4 -0
  814. package/build/components/TableCells/CustomCells/ActionCell/index.js +4 -0
  815. package/build/components/TableCells/CustomCells/ActionCell/style.d.ts +284 -0
  816. package/build/components/TableCells/CustomCells/ActionCell/style.js +27 -0
  817. package/build/components/TableCells/CustomCells/ActionCell/type.d.ts +3 -0
  818. package/build/components/TableCells/CustomCells/ActionCell/type.js +1 -0
  819. package/build/components/TableCells/CustomCells/AgreementCell/AgreementCell.d.ts +3 -0
  820. package/build/components/TableCells/CustomCells/AgreementCell/AgreementCell.js +52 -0
  821. package/build/components/TableCells/CustomCells/AgreementCell/constant.d.ts +54 -0
  822. package/build/components/TableCells/CustomCells/AgreementCell/constant.js +32 -0
  823. package/build/components/TableCells/CustomCells/AgreementCell/index.d.ts +4 -0
  824. package/build/components/TableCells/CustomCells/AgreementCell/index.js +4 -0
  825. package/build/components/TableCells/CustomCells/AgreementCell/style.d.ts +7 -0
  826. package/build/components/TableCells/CustomCells/AgreementCell/style.js +37 -0
  827. package/build/components/TableCells/CustomCells/AgreementCell/type.d.ts +9 -0
  828. package/build/components/TableCells/CustomCells/AgreementCell/type.js +1 -0
  829. package/build/components/TableCells/CustomCells/AmountCell/AmountCell.d.ts +3 -0
  830. package/build/components/TableCells/CustomCells/AmountCell/AmountCell.js +26 -0
  831. package/build/components/TableCells/CustomCells/AmountCell/AmountConversionTooltipLabel.d.ts +11 -0
  832. package/build/components/TableCells/CustomCells/AmountCell/AmountConversionTooltipLabel.js +15 -0
  833. package/build/components/TableCells/CustomCells/AmountCell/index.d.ts +2 -0
  834. package/build/components/TableCells/CustomCells/AmountCell/index.js +2 -0
  835. package/build/components/TableCells/CustomCells/AmountCell/style.d.ts +10 -0
  836. package/build/components/TableCells/CustomCells/AmountCell/style.js +43 -0
  837. package/build/components/TableCells/CustomCells/ApplicationStatusCell/ApplicationStatusCell.d.ts +2 -0
  838. package/build/components/TableCells/CustomCells/ApplicationStatusCell/ApplicationStatusCell.js +22 -0
  839. package/build/components/TableCells/CustomCells/ApplicationStatusCell/constants.d.ts +6 -0
  840. package/build/components/TableCells/CustomCells/ApplicationStatusCell/constants.js +7 -0
  841. package/build/components/TableCells/CustomCells/ApplicationStatusCell/index.d.ts +2 -0
  842. package/build/components/TableCells/CustomCells/ApplicationStatusCell/index.js +2 -0
  843. package/build/components/TableCells/CustomCells/ApplicationStatusCell/style.d.ts +5 -0
  844. package/build/components/TableCells/CustomCells/ApplicationStatusCell/style.js +29 -0
  845. package/build/components/TableCells/CustomCells/ApplicationStatusCell/type.d.ts +5 -0
  846. package/build/components/TableCells/CustomCells/ApplicationStatusCell/type.js +1 -0
  847. package/build/components/TableCells/CustomCells/AppsCell/AppsCell.d.ts +2 -0
  848. package/build/components/TableCells/CustomCells/AppsCell/AppsCell.js +25 -0
  849. package/build/components/TableCells/CustomCells/AppsCell/index.d.ts +2 -0
  850. package/build/components/TableCells/CustomCells/AppsCell/index.js +2 -0
  851. package/build/components/TableCells/CustomCells/AppsCell/type.d.ts +7 -0
  852. package/build/components/TableCells/CustomCells/AppsCell/type.js +1 -0
  853. package/build/components/TableCells/CustomCells/AuthCell/AuthCell.d.ts +3 -0
  854. package/build/components/TableCells/CustomCells/AuthCell/AuthCell.js +30 -0
  855. package/build/components/TableCells/CustomCells/AuthCell/index.d.ts +3 -0
  856. package/build/components/TableCells/CustomCells/AuthCell/index.js +3 -0
  857. package/build/components/TableCells/CustomCells/AuthCell/style.d.ts +3 -0
  858. package/build/components/TableCells/CustomCells/AuthCell/style.js +15 -0
  859. package/build/components/TableCells/CustomCells/AuthCell/type.d.ts +6 -0
  860. package/build/components/TableCells/CustomCells/AuthCell/type.js +1 -0
  861. package/build/components/TableCells/CustomCells/AuthenticationCell/AuthenticationCell.d.ts +3 -0
  862. package/build/components/TableCells/CustomCells/AuthenticationCell/AuthenticationCell.js +66 -0
  863. package/build/components/TableCells/CustomCells/AuthenticationCell/constant.d.ts +49 -0
  864. package/build/components/TableCells/CustomCells/AuthenticationCell/constant.js +50 -0
  865. package/build/components/TableCells/CustomCells/AuthenticationCell/index.d.ts +3 -0
  866. package/build/components/TableCells/CustomCells/AuthenticationCell/index.js +3 -0
  867. package/build/components/TableCells/CustomCells/AuthenticationCell/style.d.ts +555 -0
  868. package/build/components/TableCells/CustomCells/AuthenticationCell/style.js +65 -0
  869. package/build/components/TableCells/CustomCells/AuthenticationCell/type.d.ts +8 -0
  870. package/build/components/TableCells/CustomCells/AuthenticationCell/type.js +1 -0
  871. package/build/components/TableCells/CustomCells/AuthenticationStatusCell/AuthenticationStatusCell.d.ts +3 -0
  872. package/build/components/TableCells/CustomCells/AuthenticationStatusCell/AuthenticationStatusCell.js +31 -0
  873. package/build/components/TableCells/CustomCells/AuthenticationStatusCell/constant.d.ts +29 -0
  874. package/build/components/TableCells/CustomCells/AuthenticationStatusCell/constant.js +18 -0
  875. package/build/components/TableCells/CustomCells/AuthenticationStatusCell/index.d.ts +3 -0
  876. package/build/components/TableCells/CustomCells/AuthenticationStatusCell/index.js +2 -0
  877. package/build/components/TableCells/CustomCells/AuthenticationStatusCell/style.d.ts +1314 -0
  878. package/build/components/TableCells/CustomCells/AuthenticationStatusCell/style.js +57 -0
  879. package/build/components/TableCells/CustomCells/AuthenticationStatusCell/type.d.ts +15 -0
  880. package/build/components/TableCells/CustomCells/AuthenticationStatusCell/type.js +1 -0
  881. package/build/components/TableCells/CustomCells/AuthenticationTypeCell/AuthenticationTypeCell.d.ts +3 -0
  882. package/build/components/TableCells/CustomCells/AuthenticationTypeCell/AuthenticationTypeCell.js +24 -0
  883. package/build/components/TableCells/CustomCells/AuthenticationTypeCell/constant.d.ts +8 -0
  884. package/build/components/TableCells/CustomCells/AuthenticationTypeCell/constant.js +9 -0
  885. package/build/components/TableCells/CustomCells/AuthenticationTypeCell/index.d.ts +3 -0
  886. package/build/components/TableCells/CustomCells/AuthenticationTypeCell/index.js +2 -0
  887. package/build/components/TableCells/CustomCells/AuthenticationTypeCell/style.d.ts +1314 -0
  888. package/build/components/TableCells/CustomCells/AuthenticationTypeCell/style.js +57 -0
  889. package/build/components/TableCells/CustomCells/AuthenticationTypeCell/type.d.ts +6 -0
  890. package/build/components/TableCells/CustomCells/AuthenticationTypeCell/type.js +1 -0
  891. package/build/components/TableCells/CustomCells/AvatarCell/AvatarCell.d.ts +2 -0
  892. package/build/components/TableCells/CustomCells/AvatarCell/AvatarCell.js +36 -0
  893. package/build/components/TableCells/CustomCells/AvatarCell/index.d.ts +2 -0
  894. package/build/components/TableCells/CustomCells/AvatarCell/index.js +2 -0
  895. package/build/components/TableCells/CustomCells/AvatarCell/type.d.ts +8 -0
  896. package/build/components/TableCells/CustomCells/AvatarCell/type.js +1 -0
  897. package/build/components/TableCells/CustomCells/BalanceCell/BalanceCell.d.ts +3 -0
  898. package/build/components/TableCells/CustomCells/BalanceCell/BalanceCell.js +70 -0
  899. package/build/components/TableCells/CustomCells/BalanceCell/index.d.ts +3 -0
  900. package/build/components/TableCells/CustomCells/BalanceCell/index.js +3 -0
  901. package/build/components/TableCells/CustomCells/BalanceCell/style.d.ts +270 -0
  902. package/build/components/TableCells/CustomCells/BalanceCell/style.js +39 -0
  903. package/build/components/TableCells/CustomCells/BalanceCell/type.d.ts +8 -0
  904. package/build/components/TableCells/CustomCells/BalanceCell/type.js +1 -0
  905. package/build/components/TableCells/CustomCells/BalanceCell/utils.d.ts +1 -0
  906. package/build/components/TableCells/CustomCells/BalanceCell/utils.js +9 -0
  907. package/build/components/TableCells/CustomCells/BankCell/BankCell.d.ts +3 -0
  908. package/build/components/TableCells/CustomCells/BankCell/BankCell.js +30 -0
  909. package/build/components/TableCells/CustomCells/BankCell/index.d.ts +3 -0
  910. package/build/components/TableCells/CustomCells/BankCell/index.js +3 -0
  911. package/build/components/TableCells/CustomCells/BankCell/style.d.ts +6 -0
  912. package/build/components/TableCells/CustomCells/BankCell/style.js +37 -0
  913. package/build/components/TableCells/CustomCells/BankCell/type.d.ts +6 -0
  914. package/build/components/TableCells/CustomCells/BankCell/type.js +1 -0
  915. package/build/components/TableCells/CustomCells/BankReferenceCell/BankReferenceCell.d.ts +5 -0
  916. package/build/components/TableCells/CustomCells/BankReferenceCell/BankReferenceCell.js +11 -0
  917. package/build/components/TableCells/CustomCells/BankReferenceCell/index.d.ts +2 -0
  918. package/build/components/TableCells/CustomCells/BankReferenceCell/index.js +2 -0
  919. package/build/components/TableCells/CustomCells/BankReferenceCell/style.d.ts +4 -0
  920. package/build/components/TableCells/CustomCells/BankReferenceCell/style.js +14 -0
  921. package/build/components/TableCells/CustomCells/BrandCell/BrandCell.d.ts +3 -0
  922. package/build/components/TableCells/CustomCells/BrandCell/BrandCell.js +27 -0
  923. package/build/components/TableCells/CustomCells/BrandCell/index.d.ts +3 -0
  924. package/build/components/TableCells/CustomCells/BrandCell/index.js +3 -0
  925. package/build/components/TableCells/CustomCells/BrandCell/style.d.ts +4 -0
  926. package/build/components/TableCells/CustomCells/BrandCell/style.js +20 -0
  927. package/build/components/TableCells/CustomCells/BrandCell/type.d.ts +5 -0
  928. package/build/components/TableCells/CustomCells/BrandCell/type.js +1 -0
  929. package/build/components/TableCells/CustomCells/BrandsCell/BrandsCell.d.ts +2 -0
  930. package/build/components/TableCells/CustomCells/BrandsCell/BrandsCell.js +28 -0
  931. package/build/components/TableCells/CustomCells/BrandsCell/constants.d.ts +6 -0
  932. package/build/components/TableCells/CustomCells/BrandsCell/constants.js +7 -0
  933. package/build/components/TableCells/CustomCells/BrandsCell/index.d.ts +2 -0
  934. package/build/components/TableCells/CustomCells/BrandsCell/index.js +2 -0
  935. package/build/components/TableCells/CustomCells/BrandsCell/style.d.ts +5 -0
  936. package/build/components/TableCells/CustomCells/BrandsCell/style.js +27 -0
  937. package/build/components/TableCells/CustomCells/BrandsCell/type.d.ts +9 -0
  938. package/build/components/TableCells/CustomCells/BrandsCell/type.js +1 -0
  939. package/build/components/TableCells/CustomCells/BusinessStatusCell/BusinessStatusCell.d.ts +2 -0
  940. package/build/components/TableCells/CustomCells/BusinessStatusCell/BusinessStatusCell.js +39 -0
  941. package/build/components/TableCells/CustomCells/BusinessStatusCell/index.d.ts +2 -0
  942. package/build/components/TableCells/CustomCells/BusinessStatusCell/index.js +2 -0
  943. package/build/components/TableCells/CustomCells/BusinessStatusCell/type.d.ts +4 -0
  944. package/build/components/TableCells/CustomCells/BusinessStatusCell/type.js +1 -0
  945. package/build/components/TableCells/CustomCells/ChannelsCell/ChannelsCell.d.ts +3 -0
  946. package/build/components/TableCells/CustomCells/ChannelsCell/ChannelsCell.js +55 -0
  947. package/build/components/TableCells/CustomCells/ChannelsCell/constant.d.ts +5 -0
  948. package/build/components/TableCells/CustomCells/ChannelsCell/constant.js +6 -0
  949. package/build/components/TableCells/CustomCells/ChannelsCell/index.d.ts +3 -0
  950. package/build/components/TableCells/CustomCells/ChannelsCell/index.js +3 -0
  951. package/build/components/TableCells/CustomCells/ChannelsCell/style.d.ts +269 -0
  952. package/build/components/TableCells/CustomCells/ChannelsCell/style.js +36 -0
  953. package/build/components/TableCells/CustomCells/ChannelsCell/type.d.ts +7 -0
  954. package/build/components/TableCells/CustomCells/ChannelsCell/type.js +1 -0
  955. package/build/components/TableCells/CustomCells/CheckoutStatusCell/CheckoutStatusCell.d.ts +3 -0
  956. package/build/components/TableCells/CustomCells/CheckoutStatusCell/CheckoutStatusCell.js +32 -0
  957. package/build/components/TableCells/CustomCells/CheckoutStatusCell/constant.d.ts +4 -0
  958. package/build/components/TableCells/CustomCells/CheckoutStatusCell/constant.js +5 -0
  959. package/build/components/TableCells/CustomCells/CheckoutStatusCell/index.d.ts +3 -0
  960. package/build/components/TableCells/CustomCells/CheckoutStatusCell/index.js +3 -0
  961. package/build/components/TableCells/CustomCells/CheckoutStatusCell/style.d.ts +266 -0
  962. package/build/components/TableCells/CustomCells/CheckoutStatusCell/style.js +20 -0
  963. package/build/components/TableCells/CustomCells/CheckoutStatusCell/type.d.ts +6 -0
  964. package/build/components/TableCells/CustomCells/CheckoutStatusCell/type.js +1 -0
  965. package/build/components/TableCells/CustomCells/CurrencyCell/CurrencyCell.d.ts +5 -0
  966. package/build/components/TableCells/CustomCells/CurrencyCell/CurrencyCell.js +8 -0
  967. package/build/components/TableCells/CustomCells/CurrencyCell/index.d.ts +2 -0
  968. package/build/components/TableCells/CustomCells/CurrencyCell/index.js +2 -0
  969. package/build/components/TableCells/CustomCells/CurrencyCell/style.d.ts +9 -0
  970. package/build/components/TableCells/CustomCells/CurrencyCell/style.js +22 -0
  971. package/build/components/TableCells/CustomCells/CustomerCell/CustomerCell.d.ts +3 -0
  972. package/build/components/TableCells/CustomCells/CustomerCell/CustomerCell.js +46 -0
  973. package/build/components/TableCells/CustomCells/CustomerCell/index.d.ts +3 -0
  974. package/build/components/TableCells/CustomCells/CustomerCell/index.js +3 -0
  975. package/build/components/TableCells/CustomCells/CustomerCell/style.d.ts +5 -0
  976. package/build/components/TableCells/CustomCells/CustomerCell/style.js +28 -0
  977. package/build/components/TableCells/CustomCells/CustomerCell/type.d.ts +4 -0
  978. package/build/components/TableCells/CustomCells/CustomerCell/type.js +1 -0
  979. package/build/components/TableCells/CustomCells/DateCell/DateCell.d.ts +3 -0
  980. package/build/components/TableCells/CustomCells/DateCell/DateCell.js +28 -0
  981. package/build/components/TableCells/CustomCells/DateCell/index.d.ts +2 -0
  982. package/build/components/TableCells/CustomCells/DateCell/index.js +2 -0
  983. package/build/components/TableCells/CustomCells/DateCell/style.d.ts +4 -0
  984. package/build/components/TableCells/CustomCells/DateCell/style.js +7 -0
  985. package/build/components/TableCells/CustomCells/DestinationCell/DestinationCell.d.ts +3 -0
  986. package/build/components/TableCells/CustomCells/DestinationCell/DestinationCell.js +38 -0
  987. package/build/components/TableCells/CustomCells/DestinationCell/index.d.ts +2 -0
  988. package/build/components/TableCells/CustomCells/DestinationCell/index.js +2 -0
  989. package/build/components/TableCells/CustomCells/DestinationCell/styled.d.ts +13 -0
  990. package/build/components/TableCells/CustomCells/DestinationCell/styled.js +62 -0
  991. package/build/components/TableCells/CustomCells/DestinationCell/utils.d.ts +27 -0
  992. package/build/components/TableCells/CustomCells/DestinationCell/utils.js +12 -0
  993. package/build/components/TableCells/CustomCells/DestinationStatusCell/DestinationStatusCell.d.ts +3 -0
  994. package/build/components/TableCells/CustomCells/DestinationStatusCell/DestinationStatusCell.js +25 -0
  995. package/build/components/TableCells/CustomCells/DestinationStatusCell/constant.d.ts +16 -0
  996. package/build/components/TableCells/CustomCells/DestinationStatusCell/constant.js +7 -0
  997. package/build/components/TableCells/CustomCells/DestinationStatusCell/index.d.ts +3 -0
  998. package/build/components/TableCells/CustomCells/DestinationStatusCell/index.js +2 -0
  999. package/build/components/TableCells/CustomCells/DestinationStatusCell/style.d.ts +1314 -0
  1000. package/build/components/TableCells/CustomCells/DestinationStatusCell/style.js +57 -0
  1001. package/build/components/TableCells/CustomCells/DestinationStatusCell/type.d.ts +9 -0
  1002. package/build/components/TableCells/CustomCells/DestinationStatusCell/type.js +1 -0
  1003. package/build/components/TableCells/CustomCells/DeviceCell/DeviceCell.d.ts +3 -0
  1004. package/build/components/TableCells/CustomCells/DeviceCell/DeviceCell.js +21 -0
  1005. package/build/components/TableCells/CustomCells/DeviceCell/index.d.ts +2 -0
  1006. package/build/components/TableCells/CustomCells/DeviceCell/index.js +2 -0
  1007. package/build/components/TableCells/CustomCells/DeviceCell/style.d.ts +2 -0
  1008. package/build/components/TableCells/CustomCells/DeviceCell/style.js +7 -0
  1009. package/build/components/TableCells/CustomCells/DueDateCell/DueDateCell.d.ts +3 -0
  1010. package/build/components/TableCells/CustomCells/DueDateCell/DueDateCell.js +186 -0
  1011. package/build/components/TableCells/CustomCells/DueDateCell/index.d.ts +3 -0
  1012. package/build/components/TableCells/CustomCells/DueDateCell/index.js +3 -0
  1013. package/build/components/TableCells/CustomCells/DueDateCell/style.d.ts +268 -0
  1014. package/build/components/TableCells/CustomCells/DueDateCell/style.js +36 -0
  1015. package/build/components/TableCells/CustomCells/DueDateCell/type.d.ts +7 -0
  1016. package/build/components/TableCells/CustomCells/DueDateCell/type.js +1 -0
  1017. package/build/components/TableCells/CustomCells/DueDateCell/utils.d.ts +1 -0
  1018. package/build/components/TableCells/CustomCells/DueDateCell/utils.js +11 -0
  1019. package/build/components/TableCells/CustomCells/EntityCell/EntityCell.d.ts +2 -0
  1020. package/build/components/TableCells/CustomCells/EntityCell/EntityCell.js +32 -0
  1021. package/build/components/TableCells/CustomCells/EntityCell/constants.d.ts +6 -0
  1022. package/build/components/TableCells/CustomCells/EntityCell/constants.js +7 -0
  1023. package/build/components/TableCells/CustomCells/EntityCell/index.d.ts +2 -0
  1024. package/build/components/TableCells/CustomCells/EntityCell/index.js +2 -0
  1025. package/build/components/TableCells/CustomCells/EntityCell/style.d.ts +5 -0
  1026. package/build/components/TableCells/CustomCells/EntityCell/style.js +27 -0
  1027. package/build/components/TableCells/CustomCells/EntityCell/type.d.ts +6 -0
  1028. package/build/components/TableCells/CustomCells/EntityCell/type.js +1 -0
  1029. package/build/components/TableCells/CustomCells/IDButton/IDButton.d.ts +7 -0
  1030. package/build/components/TableCells/CustomCells/IDButton/IDButton.js +44 -0
  1031. package/build/components/TableCells/CustomCells/IDButton/index.d.ts +2 -0
  1032. package/build/components/TableCells/CustomCells/IDButton/index.js +2 -0
  1033. package/build/components/TableCells/CustomCells/IDButton/style.d.ts +527 -0
  1034. package/build/components/TableCells/CustomCells/IDButton/style.js +15 -0
  1035. package/build/components/TableCells/CustomCells/IndividualsCell/IndividualsCell.d.ts +2 -0
  1036. package/build/components/TableCells/CustomCells/IndividualsCell/IndividualsCell.js +29 -0
  1037. package/build/components/TableCells/CustomCells/IndividualsCell/constants.d.ts +6 -0
  1038. package/build/components/TableCells/CustomCells/IndividualsCell/constants.js +7 -0
  1039. package/build/components/TableCells/CustomCells/IndividualsCell/index.d.ts +2 -0
  1040. package/build/components/TableCells/CustomCells/IndividualsCell/index.js +2 -0
  1041. package/build/components/TableCells/CustomCells/IndividualsCell/style.d.ts +5 -0
  1042. package/build/components/TableCells/CustomCells/IndividualsCell/style.js +31 -0
  1043. package/build/components/TableCells/CustomCells/IndividualsCell/type.d.ts +6 -0
  1044. package/build/components/TableCells/CustomCells/IndividualsCell/type.js +1 -0
  1045. package/build/components/TableCells/CustomCells/IntentsStatusCell/IntentsStatusCell.d.ts +2 -0
  1046. package/build/components/TableCells/CustomCells/IntentsStatusCell/IntentsStatusCell.js +33 -0
  1047. package/build/components/TableCells/CustomCells/IntentsStatusCell/constant.d.ts +6 -0
  1048. package/build/components/TableCells/CustomCells/IntentsStatusCell/constant.js +7 -0
  1049. package/build/components/TableCells/CustomCells/IntentsStatusCell/index.d.ts +3 -0
  1050. package/build/components/TableCells/CustomCells/IntentsStatusCell/index.js +2 -0
  1051. package/build/components/TableCells/CustomCells/IntentsStatusCell/style.d.ts +266 -0
  1052. package/build/components/TableCells/CustomCells/IntentsStatusCell/style.js +20 -0
  1053. package/build/components/TableCells/CustomCells/IntentsStatusCell/type.d.ts +9 -0
  1054. package/build/components/TableCells/CustomCells/IntentsStatusCell/type.js +1 -0
  1055. package/build/components/TableCells/CustomCells/InvoiceStatusCell/InvoiceStatusCell.d.ts +2 -0
  1056. package/build/components/TableCells/CustomCells/InvoiceStatusCell/InvoiceStatusCell.js +89 -0
  1057. package/build/components/TableCells/CustomCells/InvoiceStatusCell/constant.d.ts +16 -0
  1058. package/build/components/TableCells/CustomCells/InvoiceStatusCell/constant.js +17 -0
  1059. package/build/components/TableCells/CustomCells/InvoiceStatusCell/index.d.ts +2 -0
  1060. package/build/components/TableCells/CustomCells/InvoiceStatusCell/index.js +2 -0
  1061. package/build/components/TableCells/CustomCells/InvoiceStatusCell/style.d.ts +267 -0
  1062. package/build/components/TableCells/CustomCells/InvoiceStatusCell/style.js +32 -0
  1063. package/build/components/TableCells/CustomCells/InvoiceStatusCell/type.d.ts +15 -0
  1064. package/build/components/TableCells/CustomCells/InvoiceStatusCell/type.js +1 -0
  1065. package/build/components/TableCells/CustomCells/InvoiceStatusCell/utils.d.ts +5 -0
  1066. package/build/components/TableCells/CustomCells/InvoiceStatusCell/utils.js +40 -0
  1067. package/build/components/TableCells/CustomCells/MarketPlaceCell/MarketPlaceCell.d.ts +2 -0
  1068. package/build/components/TableCells/CustomCells/MarketPlaceCell/MarketPlaceCell.js +28 -0
  1069. package/build/components/TableCells/CustomCells/MarketPlaceCell/index.d.ts +2 -0
  1070. package/build/components/TableCells/CustomCells/MarketPlaceCell/index.js +2 -0
  1071. package/build/components/TableCells/CustomCells/MarketPlaceCell/type.d.ts +4 -0
  1072. package/build/components/TableCells/CustomCells/MarketPlaceCell/type.js +1 -0
  1073. package/build/components/TableCells/CustomCells/MetadataCell/MetadataCell.d.ts +5 -0
  1074. package/build/components/TableCells/CustomCells/MetadataCell/MetadataCell.js +18 -0
  1075. package/build/components/TableCells/CustomCells/MetadataCell/index.d.ts +2 -0
  1076. package/build/components/TableCells/CustomCells/MetadataCell/index.js +2 -0
  1077. package/build/components/TableCells/CustomCells/OrderCell/OrderCell.d.ts +3 -0
  1078. package/build/components/TableCells/CustomCells/OrderCell/OrderCell.js +27 -0
  1079. package/build/components/TableCells/CustomCells/OrderCell/constant.d.ts +1 -0
  1080. package/build/components/TableCells/CustomCells/OrderCell/constant.js +1 -0
  1081. package/build/components/TableCells/CustomCells/OrderCell/index.d.ts +2 -0
  1082. package/build/components/TableCells/CustomCells/OrderCell/index.js +2 -0
  1083. package/build/components/TableCells/CustomCells/PayoutDateCell/PayoutDateCell.d.ts +2 -0
  1084. package/build/components/TableCells/CustomCells/PayoutDateCell/PayoutDateCell.js +35 -0
  1085. package/build/components/TableCells/CustomCells/PayoutDateCell/index.d.ts +2 -0
  1086. package/build/components/TableCells/CustomCells/PayoutDateCell/index.js +2 -0
  1087. package/build/components/TableCells/CustomCells/PayoutReportCell/PayoutReportCell.d.ts +9 -0
  1088. package/build/components/TableCells/CustomCells/PayoutReportCell/PayoutReportCell.js +22 -0
  1089. package/build/components/TableCells/CustomCells/PayoutReportCell/index.d.ts +2 -0
  1090. package/build/components/TableCells/CustomCells/PayoutReportCell/index.js +2 -0
  1091. package/build/components/TableCells/CustomCells/PayoutReportCell/style.d.ts +5 -0
  1092. package/build/components/TableCells/CustomCells/PayoutReportCell/style.js +17 -0
  1093. package/build/components/TableCells/CustomCells/PayoutStatusCell/PayoutStatusCell.d.ts +3 -0
  1094. package/build/components/TableCells/CustomCells/PayoutStatusCell/PayoutStatusCell.js +26 -0
  1095. package/build/components/TableCells/CustomCells/PayoutStatusCell/constant.d.ts +11 -0
  1096. package/build/components/TableCells/CustomCells/PayoutStatusCell/constant.js +12 -0
  1097. package/build/components/TableCells/CustomCells/PayoutStatusCell/index.d.ts +3 -0
  1098. package/build/components/TableCells/CustomCells/PayoutStatusCell/index.js +2 -0
  1099. package/build/components/TableCells/CustomCells/PayoutStatusCell/style.d.ts +1314 -0
  1100. package/build/components/TableCells/CustomCells/PayoutStatusCell/style.js +57 -0
  1101. package/build/components/TableCells/CustomCells/PayoutStatusCell/type.d.ts +7 -0
  1102. package/build/components/TableCells/CustomCells/PayoutStatusCell/type.js +1 -0
  1103. package/build/components/TableCells/CustomCells/ProductsCell/ProductsCell.d.ts +3 -0
  1104. package/build/components/TableCells/CustomCells/ProductsCell/ProductsCell.js +63 -0
  1105. package/build/components/TableCells/CustomCells/ProductsCell/index.d.ts +3 -0
  1106. package/build/components/TableCells/CustomCells/ProductsCell/index.js +3 -0
  1107. package/build/components/TableCells/CustomCells/ProductsCell/style.d.ts +275 -0
  1108. package/build/components/TableCells/CustomCells/ProductsCell/style.js +58 -0
  1109. package/build/components/TableCells/CustomCells/ProductsCell/type.d.ts +4 -0
  1110. package/build/components/TableCells/CustomCells/ProductsCell/type.js +1 -0
  1111. package/build/components/TableCells/CustomCells/ReceiptCell/ReceiptCell.d.ts +5 -0
  1112. package/build/components/TableCells/CustomCells/ReceiptCell/ReceiptCell.js +13 -0
  1113. package/build/components/TableCells/CustomCells/ReceiptCell/index.d.ts +2 -0
  1114. package/build/components/TableCells/CustomCells/ReceiptCell/index.js +2 -0
  1115. package/build/components/TableCells/CustomCells/ReferenceCell/ReferenceCell.d.ts +3 -0
  1116. package/build/components/TableCells/CustomCells/ReferenceCell/ReferenceCell.js +41 -0
  1117. package/build/components/TableCells/CustomCells/ReferenceCell/constant.d.ts +6 -0
  1118. package/build/components/TableCells/CustomCells/ReferenceCell/constant.js +7 -0
  1119. package/build/components/TableCells/CustomCells/ReferenceCell/index.d.ts +3 -0
  1120. package/build/components/TableCells/CustomCells/ReferenceCell/index.js +3 -0
  1121. package/build/components/TableCells/CustomCells/ReferenceCell/style.d.ts +288 -0
  1122. package/build/components/TableCells/CustomCells/ReferenceCell/style.js +55 -0
  1123. package/build/components/TableCells/CustomCells/ReferenceCell/type.d.ts +10 -0
  1124. package/build/components/TableCells/CustomCells/ReferenceCell/type.js +1 -0
  1125. package/build/components/TableCells/CustomCells/RefundChargeCell/RefundChargeCell.d.ts +3 -0
  1126. package/build/components/TableCells/CustomCells/RefundChargeCell/RefundChargeCell.js +96 -0
  1127. package/build/components/TableCells/CustomCells/RefundChargeCell/constant.d.ts +14 -0
  1128. package/build/components/TableCells/CustomCells/RefundChargeCell/constant.js +14 -0
  1129. package/build/components/TableCells/CustomCells/RefundChargeCell/index.d.ts +2 -0
  1130. package/build/components/TableCells/CustomCells/RefundChargeCell/index.js +2 -0
  1131. package/build/components/TableCells/CustomCells/RefundChargeCell/style.d.ts +531 -0
  1132. package/build/components/TableCells/CustomCells/RefundChargeCell/style.js +39 -0
  1133. package/build/components/TableCells/CustomCells/RefundChargeCell/type.d.ts +12 -0
  1134. package/build/components/TableCells/CustomCells/RefundChargeCell/type.js +1 -0
  1135. package/build/components/TableCells/CustomCells/RefundChargeCell/utils.d.ts +1 -0
  1136. package/build/components/TableCells/CustomCells/RefundChargeCell/utils.js +9 -0
  1137. package/build/components/TableCells/CustomCells/RefundStatusCell/RefundStatusCell.d.ts +3 -0
  1138. package/build/components/TableCells/CustomCells/RefundStatusCell/RefundStatusCell.js +32 -0
  1139. package/build/components/TableCells/CustomCells/RefundStatusCell/components/RefundIcon.d.ts +2 -0
  1140. package/build/components/TableCells/CustomCells/RefundStatusCell/components/RefundIcon.js +18 -0
  1141. package/build/components/TableCells/CustomCells/RefundStatusCell/components/RefundStatus.d.ts +2 -0
  1142. package/build/components/TableCells/CustomCells/RefundStatusCell/components/RefundStatus.js +54 -0
  1143. package/build/components/TableCells/CustomCells/RefundStatusCell/components/RefundStatusIcon.d.ts +2 -0
  1144. package/build/components/TableCells/CustomCells/RefundStatusCell/components/RefundStatusIcon.js +10 -0
  1145. package/build/components/TableCells/CustomCells/RefundStatusCell/components/index.d.ts +3 -0
  1146. package/build/components/TableCells/CustomCells/RefundStatusCell/components/index.js +3 -0
  1147. package/build/components/TableCells/CustomCells/RefundStatusCell/constant.d.ts +7 -0
  1148. package/build/components/TableCells/CustomCells/RefundStatusCell/constant.js +20 -0
  1149. package/build/components/TableCells/CustomCells/RefundStatusCell/hooks/useRefundStyles.d.ts +50 -0
  1150. package/build/components/TableCells/CustomCells/RefundStatusCell/hooks/useRefundStyles.js +54 -0
  1151. package/build/components/TableCells/CustomCells/RefundStatusCell/index.d.ts +3 -0
  1152. package/build/components/TableCells/CustomCells/RefundStatusCell/index.js +2 -0
  1153. package/build/components/TableCells/CustomCells/RefundStatusCell/style.d.ts +279 -0
  1154. package/build/components/TableCells/CustomCells/RefundStatusCell/style.js +71 -0
  1155. package/build/components/TableCells/CustomCells/RefundStatusCell/type.d.ts +17 -0
  1156. package/build/components/TableCells/CustomCells/RefundStatusCell/type.js +1 -0
  1157. package/build/components/TableCells/CustomCells/SourceCell/SourceCell.d.ts +3 -0
  1158. package/build/components/TableCells/CustomCells/SourceCell/SourceCell.js +78 -0
  1159. package/build/components/TableCells/CustomCells/SourceCell/index.d.ts +2 -0
  1160. package/build/components/TableCells/CustomCells/SourceCell/index.js +2 -0
  1161. package/build/components/TableCells/CustomCells/SourceCell/style.d.ts +269 -0
  1162. package/build/components/TableCells/CustomCells/SourceCell/style.js +42 -0
  1163. package/build/components/TableCells/CustomCells/SourceCell/utils.d.ts +1 -0
  1164. package/build/components/TableCells/CustomCells/SourceCell/utils.js +8 -0
  1165. package/build/components/TableCells/CustomCells/SourceMergedCell/CollapsedViewIcon.d.ts +11 -0
  1166. package/build/components/TableCells/CustomCells/SourceMergedCell/CollapsedViewIcon.js +51 -0
  1167. package/build/components/TableCells/CustomCells/SourceMergedCell/SourceMergedCell.d.ts +3 -0
  1168. package/build/components/TableCells/CustomCells/SourceMergedCell/SourceMergedCell.js +89 -0
  1169. package/build/components/TableCells/CustomCells/SourceMergedCell/index.d.ts +3 -0
  1170. package/build/components/TableCells/CustomCells/SourceMergedCell/index.js +3 -0
  1171. package/build/components/TableCells/CustomCells/SourceMergedCell/style.d.ts +1619 -0
  1172. package/build/components/TableCells/CustomCells/SourceMergedCell/style.js +76 -0
  1173. package/build/components/TableCells/CustomCells/SourceMergedCell/type.d.ts +18 -0
  1174. package/build/components/TableCells/CustomCells/SourceMergedCell/type.js +1 -0
  1175. package/build/components/TableCells/CustomCells/SourceMergedCell/utils.d.ts +12 -0
  1176. package/build/components/TableCells/CustomCells/SourceMergedCell/utils.js +12 -0
  1177. package/build/components/TableCells/CustomCells/StatusCell/StatusCell.d.ts +6 -0
  1178. package/build/components/TableCells/CustomCells/StatusCell/StatusCell.js +43 -0
  1179. package/build/components/TableCells/CustomCells/StatusCell/constant.d.ts +47 -0
  1180. package/build/components/TableCells/CustomCells/StatusCell/constant.js +93 -0
  1181. package/build/components/TableCells/CustomCells/StatusCell/index.d.ts +3 -0
  1182. package/build/components/TableCells/CustomCells/StatusCell/index.js +3 -0
  1183. package/build/components/TableCells/CustomCells/StatusCell/style.d.ts +1608 -0
  1184. package/build/components/TableCells/CustomCells/StatusCell/style.js +66 -0
  1185. package/build/components/TableCells/CustomCells/StatusCell/type.d.ts +12 -0
  1186. package/build/components/TableCells/CustomCells/StatusCell/type.js +1 -0
  1187. package/build/components/TableCells/CustomCells/StatusCell/utils.d.ts +2 -0
  1188. package/build/components/TableCells/CustomCells/StatusCell/utils.js +8 -0
  1189. package/build/components/TableCells/CustomCells/TextTableCell/TextTableCell.d.ts +2 -0
  1190. package/build/components/TableCells/CustomCells/TextTableCell/TextTableCell.js +6 -0
  1191. package/build/components/TableCells/CustomCells/TextTableCell/index.d.ts +3 -0
  1192. package/build/components/TableCells/CustomCells/TextTableCell/index.js +3 -0
  1193. package/build/components/TableCells/CustomCells/TextTableCell/type.d.ts +6 -0
  1194. package/build/components/TableCells/CustomCells/TextTableCell/type.js +1 -0
  1195. package/build/components/TableCells/CustomCells/TextWithBadgeCell/TextWithBadgeCell.d.ts +3 -0
  1196. package/build/components/TableCells/CustomCells/TextWithBadgeCell/TextWithBadgeCell.js +29 -0
  1197. package/build/components/TableCells/CustomCells/TextWithBadgeCell/index.d.ts +3 -0
  1198. package/build/components/TableCells/CustomCells/TextWithBadgeCell/index.js +3 -0
  1199. package/build/components/TableCells/CustomCells/TextWithBadgeCell/type.d.ts +6 -0
  1200. package/build/components/TableCells/CustomCells/TextWithBadgeCell/type.js +1 -0
  1201. package/build/components/TableCells/CustomCells/TokenStatusCell/TokenStatusCell.d.ts +3 -0
  1202. package/build/components/TableCells/CustomCells/TokenStatusCell/TokenStatusCell.js +33 -0
  1203. package/build/components/TableCells/CustomCells/TokenStatusCell/constant.d.ts +8 -0
  1204. package/build/components/TableCells/CustomCells/TokenStatusCell/constant.js +9 -0
  1205. package/build/components/TableCells/CustomCells/TokenStatusCell/index.d.ts +3 -0
  1206. package/build/components/TableCells/CustomCells/TokenStatusCell/index.js +2 -0
  1207. package/build/components/TableCells/CustomCells/TokenStatusCell/style.d.ts +1314 -0
  1208. package/build/components/TableCells/CustomCells/TokenStatusCell/style.js +57 -0
  1209. package/build/components/TableCells/CustomCells/TokenStatusCell/type.d.ts +17 -0
  1210. package/build/components/TableCells/CustomCells/TokenStatusCell/type.js +1 -0
  1211. package/build/components/TableCells/CustomCells/WalletCell/WalletCell.d.ts +3 -0
  1212. package/build/components/TableCells/CustomCells/WalletCell/WalletCell.js +30 -0
  1213. package/build/components/TableCells/CustomCells/WalletCell/index.d.ts +3 -0
  1214. package/build/components/TableCells/CustomCells/WalletCell/index.js +3 -0
  1215. package/build/components/TableCells/CustomCells/WalletCell/style.d.ts +5 -0
  1216. package/build/components/TableCells/CustomCells/WalletCell/style.js +26 -0
  1217. package/build/components/TableCells/CustomCells/WalletCell/type.d.ts +6 -0
  1218. package/build/components/TableCells/CustomCells/WalletCell/type.js +1 -0
  1219. package/build/components/TableCells/CustomCells/index.d.ts +40 -0
  1220. package/build/components/TableCells/CustomCells/index.js +40 -0
  1221. package/build/components/TableCells/CustomCells/style.d.ts +290 -0
  1222. package/build/components/TableCells/CustomCells/style.js +144 -0
  1223. package/build/components/TableCells/CustomCells/type.d.ts +133 -0
  1224. package/build/components/TableCells/CustomCells/type.js +15 -0
  1225. package/build/components/TableCells/TableCell.d.ts +4 -0
  1226. package/build/components/TableCells/TableCell.js +19 -0
  1227. package/build/components/TableCells/index.d.ts +4 -0
  1228. package/build/components/TableCells/index.js +4 -0
  1229. package/build/components/TableCells/style.d.ts +2 -0
  1230. package/build/components/TableCells/style.js +18 -0
  1231. package/build/components/TableCells/type.d.ts +5 -0
  1232. package/build/components/TableCells/type.js +1 -0
  1233. package/build/components/TapLogo/TapLogo.d.ts +8 -0
  1234. package/build/components/TapLogo/TapLogo.js +7 -0
  1235. package/build/components/TapLogo/index.d.ts +2 -0
  1236. package/build/components/TapLogo/index.js +2 -0
  1237. package/build/components/Text/Text.d.ts +5 -0
  1238. package/build/components/Text/Text.js +9 -0
  1239. package/build/components/Text/index.d.ts +2 -0
  1240. package/build/components/Text/index.js +2 -0
  1241. package/build/components/ToggleButtons/ToggleButtons.d.ts +3 -0
  1242. package/build/components/ToggleButtons/ToggleButtons.js +6 -0
  1243. package/build/components/ToggleButtons/index.d.ts +3 -0
  1244. package/build/components/ToggleButtons/index.js +3 -0
  1245. package/build/components/ToggleButtons/style.d.ts +8 -0
  1246. package/build/components/ToggleButtons/style.js +25 -0
  1247. package/build/components/ToggleButtons/type.d.ts +17 -0
  1248. package/build/components/ToggleButtons/type.js +1 -0
  1249. package/build/components/Toolbar/Toolbar.d.ts +5 -0
  1250. package/build/components/Toolbar/Toolbar.js +20 -0
  1251. package/build/components/Toolbar/index.d.ts +3 -0
  1252. package/build/components/Toolbar/index.js +3 -0
  1253. package/build/components/Toolbar/style.d.ts +26 -0
  1254. package/build/components/Toolbar/style.js +93 -0
  1255. package/build/components/Toolbar/type.d.ts +10 -0
  1256. package/build/components/Toolbar/type.js +1 -0
  1257. package/build/components/ToolbarIcon/CloseIcon/CloseIcon.d.ts +2 -0
  1258. package/build/components/ToolbarIcon/CloseIcon/CloseIcon.js +6 -0
  1259. package/build/components/ToolbarIcon/CloseIcon/index.d.ts +1 -0
  1260. package/build/components/ToolbarIcon/CloseIcon/index.js +1 -0
  1261. package/build/components/ToolbarIcon/CloseIcon/style.d.ts +4 -0
  1262. package/build/components/ToolbarIcon/CloseIcon/style.js +7 -0
  1263. package/build/components/ToolbarIcon/ExpandButton/ExpandButton.d.ts +9 -0
  1264. package/build/components/ToolbarIcon/ExpandButton/ExpandButton.js +21 -0
  1265. package/build/components/ToolbarIcon/ExpandButton/index.d.ts +1 -0
  1266. package/build/components/ToolbarIcon/ExpandButton/index.js +1 -0
  1267. package/build/components/ToolbarIcon/ExpandButton/style.d.ts +14 -0
  1268. package/build/components/ToolbarIcon/ExpandButton/style.js +31 -0
  1269. package/build/components/ToolbarIcon/MaximizeIcon/MaximizeIcon.d.ts +6 -0
  1270. package/build/components/ToolbarIcon/MaximizeIcon/MaximizeIcon.js +18 -0
  1271. package/build/components/ToolbarIcon/MaximizeIcon/index.d.ts +1 -0
  1272. package/build/components/ToolbarIcon/MaximizeIcon/index.js +1 -0
  1273. package/build/components/ToolbarIcon/MaximizeIcon/style.d.ts +4 -0
  1274. package/build/components/ToolbarIcon/MaximizeIcon/style.js +7 -0
  1275. package/build/components/ToolbarIcon/MinimizeIcon/MinimizeIcon.d.ts +2 -0
  1276. package/build/components/ToolbarIcon/MinimizeIcon/MinimizeIcon.js +6 -0
  1277. package/build/components/ToolbarIcon/MinimizeIcon/index.d.ts +1 -0
  1278. package/build/components/ToolbarIcon/MinimizeIcon/index.js +1 -0
  1279. package/build/components/ToolbarIcon/MinimizeIcon/style.d.ts +4 -0
  1280. package/build/components/ToolbarIcon/MinimizeIcon/style.js +7 -0
  1281. package/build/components/ToolbarIcon/index.d.ts +4 -0
  1282. package/build/components/ToolbarIcon/index.js +4 -0
  1283. package/build/components/ToolbarIcon/style.d.ts +4 -0
  1284. package/build/components/ToolbarIcon/style.js +20 -0
  1285. package/build/components/Tooltip/Tooltip.d.ts +10 -0
  1286. package/build/components/Tooltip/Tooltip.js +18 -0
  1287. package/build/components/Tooltip/index.d.ts +2 -0
  1288. package/build/components/Tooltip/index.js +2 -0
  1289. package/build/components/Tooltip/styles.d.ts +2 -0
  1290. package/build/components/Tooltip/styles.js +34 -0
  1291. package/build/components/VirtualTable/VirtualTable.d.ts +5 -0
  1292. package/build/components/VirtualTable/VirtualTable.js +91 -0
  1293. package/build/components/VirtualTable/VirtualTableWithCard.d.ts +13 -0
  1294. package/build/components/VirtualTable/VirtualTableWithCard.js +84 -0
  1295. package/build/components/VirtualTable/components/ColumnFilter/ColumnFilter.d.ts +5 -0
  1296. package/build/components/VirtualTable/components/ColumnFilter/ColumnFilter.js +53 -0
  1297. package/build/components/VirtualTable/components/ColumnFilter/Inputs/Inputs.d.ts +7 -0
  1298. package/build/components/VirtualTable/components/ColumnFilter/Inputs/Inputs.js +64 -0
  1299. package/build/components/VirtualTable/components/ColumnFilter/Inputs/index.d.ts +2 -0
  1300. package/build/components/VirtualTable/components/ColumnFilter/Inputs/index.js +2 -0
  1301. package/build/components/VirtualTable/components/ColumnFilter/Inputs/style.d.ts +19 -0
  1302. package/build/components/VirtualTable/components/ColumnFilter/Inputs/style.js +47 -0
  1303. package/build/components/VirtualTable/components/ColumnFilter/List/List.d.ts +10 -0
  1304. package/build/components/VirtualTable/components/ColumnFilter/List/List.js +61 -0
  1305. package/build/components/VirtualTable/components/ColumnFilter/List/index.d.ts +2 -0
  1306. package/build/components/VirtualTable/components/ColumnFilter/List/index.js +2 -0
  1307. package/build/components/VirtualTable/components/ColumnFilter/index.d.ts +4 -0
  1308. package/build/components/VirtualTable/components/ColumnFilter/index.js +4 -0
  1309. package/build/components/VirtualTable/components/ColumnFilter/style.d.ts +13 -0
  1310. package/build/components/VirtualTable/components/ColumnFilter/style.js +50 -0
  1311. package/build/components/VirtualTable/components/EmptyList/EmptyList.d.ts +12 -0
  1312. package/build/components/VirtualTable/components/EmptyList/EmptyList.js +23 -0
  1313. package/build/components/VirtualTable/components/EmptyList/index.d.ts +2 -0
  1314. package/build/components/VirtualTable/components/EmptyList/index.js +2 -0
  1315. package/build/components/VirtualTable/components/EmptyList/styles.d.ts +9 -0
  1316. package/build/components/VirtualTable/components/EmptyList/styles.js +39 -0
  1317. package/build/components/VirtualTable/components/ErrorList/ErrorList.d.ts +10 -0
  1318. package/build/components/VirtualTable/components/ErrorList/ErrorList.js +23 -0
  1319. package/build/components/VirtualTable/components/ErrorList/index.d.ts +2 -0
  1320. package/build/components/VirtualTable/components/ErrorList/index.js +2 -0
  1321. package/build/components/VirtualTable/components/ErrorList/styles.d.ts +20 -0
  1322. package/build/components/VirtualTable/components/ErrorList/styles.js +72 -0
  1323. package/build/components/VirtualTable/components/RowErrorState.d.ts +1 -0
  1324. package/build/components/VirtualTable/components/RowErrorState.js +21 -0
  1325. package/build/components/VirtualTable/components/TableFooter/TableFooter.d.ts +5 -0
  1326. package/build/components/VirtualTable/components/TableFooter/TableFooter.js +22 -0
  1327. package/build/components/VirtualTable/components/TableFooter/index.d.ts +2 -0
  1328. package/build/components/VirtualTable/components/TableFooter/index.js +2 -0
  1329. package/build/components/VirtualTable/components/TableFooter/style.d.ts +33 -0
  1330. package/build/components/VirtualTable/components/TableFooter/style.js +53 -0
  1331. package/build/components/VirtualTable/components/TableHeader.d.ts +26 -0
  1332. package/build/components/VirtualTable/components/TableHeader.js +86 -0
  1333. package/build/components/VirtualTable/components/TableLastItem.d.ts +8 -0
  1334. package/build/components/VirtualTable/components/TableLastItem.js +39 -0
  1335. package/build/components/VirtualTable/components/TableLoading.d.ts +12 -0
  1336. package/build/components/VirtualTable/components/TableLoading.js +19 -0
  1337. package/build/components/VirtualTable/components/TableLoadingWithCard.d.ts +11 -0
  1338. package/build/components/VirtualTable/components/TableLoadingWithCard.js +19 -0
  1339. package/build/components/VirtualTable/components/TableNoData.d.ts +18 -0
  1340. package/build/components/VirtualTable/components/TableNoData.js +32 -0
  1341. package/build/components/VirtualTable/components/TableNoDataWithCard.d.ts +20 -0
  1342. package/build/components/VirtualTable/components/TableNoDataWithCard.js +29 -0
  1343. package/build/components/VirtualTable/components/TableRow.d.ts +16 -0
  1344. package/build/components/VirtualTable/components/TableRow.js +20 -0
  1345. package/build/components/VirtualTable/components/TableRowLoading.d.ts +11 -0
  1346. package/build/components/VirtualTable/components/TableRowLoading.js +20 -0
  1347. package/build/components/VirtualTable/components/TableRowLoadingWithCard.d.ts +10 -0
  1348. package/build/components/VirtualTable/components/TableRowLoadingWithCard.js +14 -0
  1349. package/build/components/VirtualTable/components/TableRowWithCard.d.ts +16 -0
  1350. package/build/components/VirtualTable/components/TableRowWithCard.js +9 -0
  1351. package/build/components/VirtualTable/components/index.d.ts +16 -0
  1352. package/build/components/VirtualTable/components/index.js +16 -0
  1353. package/build/components/VirtualTable/components/virtualScroll/ListItemWrapper.d.ts +10 -0
  1354. package/build/components/VirtualTable/components/virtualScroll/ListItemWrapper.js +76 -0
  1355. package/build/components/VirtualTable/components/virtualScroll/ListItemWrapperWithCard.d.ts +7 -0
  1356. package/build/components/VirtualTable/components/virtualScroll/ListItemWrapperWithCard.js +26 -0
  1357. package/build/components/VirtualTable/components/virtualScroll/VirtualScrollInner.d.ts +6 -0
  1358. package/build/components/VirtualTable/components/virtualScroll/VirtualScrollInner.js +20 -0
  1359. package/build/components/VirtualTable/components/virtualScroll/VirtualScrollList.d.ts +7 -0
  1360. package/build/components/VirtualTable/components/virtualScroll/VirtualScrollList.js +61 -0
  1361. package/build/components/VirtualTable/components/virtualScroll/VirtualScrollOuter.d.ts +8 -0
  1362. package/build/components/VirtualTable/components/virtualScroll/VirtualScrollOuter.js +21 -0
  1363. package/build/components/VirtualTable/components/virtualScroll/index.d.ts +5 -0
  1364. package/build/components/VirtualTable/components/virtualScroll/index.js +5 -0
  1365. package/build/components/VirtualTable/context/Provider.d.ts +8 -0
  1366. package/build/components/VirtualTable/context/Provider.js +3 -0
  1367. package/build/components/VirtualTable/context/context.d.ts +7 -0
  1368. package/build/components/VirtualTable/context/context.js +2 -0
  1369. package/build/components/VirtualTable/context/index.d.ts +2 -0
  1370. package/build/components/VirtualTable/context/index.js +2 -0
  1371. package/build/components/VirtualTable/hooks/useScrollBackShadow.d.ts +9 -0
  1372. package/build/components/VirtualTable/hooks/useScrollBackShadow.js +26 -0
  1373. package/build/components/VirtualTable/index.d.ts +4 -0
  1374. package/build/components/VirtualTable/index.js +4 -0
  1375. package/build/components/VirtualTable/style.d.ts +321 -0
  1376. package/build/components/VirtualTable/style.js +125 -0
  1377. package/build/components/Widget/List.d.ts +8 -0
  1378. package/build/components/Widget/List.js +23 -0
  1379. package/build/components/Widget/ListItem.d.ts +11 -0
  1380. package/build/components/Widget/ListItem.js +19 -0
  1381. package/build/components/Widget/Widget.d.ts +8 -0
  1382. package/build/components/Widget/Widget.js +19 -0
  1383. package/build/components/Widget/WidgetHeader.d.ts +9 -0
  1384. package/build/components/Widget/WidgetHeader.js +19 -0
  1385. package/build/components/Widget/index.d.ts +6 -0
  1386. package/build/components/Widget/index.js +6 -0
  1387. package/build/components/Widget/style.d.ts +30 -0
  1388. package/build/components/Widget/style.js +71 -0
  1389. package/build/components/Widget/useScrollWithShadow.d.ts +5 -0
  1390. package/build/components/Widget/useScrollWithShadow.js +13 -0
  1391. package/build/components/Window/Window.d.ts +24 -0
  1392. package/build/components/Window/Window.js +55 -0
  1393. package/build/components/Window/index.d.ts +2 -0
  1394. package/build/components/Window/index.js +2 -0
  1395. package/build/components/Window/style.d.ts +533 -0
  1396. package/build/components/Window/style.js +47 -0
  1397. package/build/components/WindowAppIcon/WindowAppIcon.d.ts +6 -0
  1398. package/build/components/WindowAppIcon/WindowAppIcon.js +17 -0
  1399. package/build/components/WindowAppIcon/index.d.ts +2 -0
  1400. package/build/components/WindowAppIcon/index.js +2 -0
  1401. package/build/components/WindowAppIcon/style.d.ts +8 -0
  1402. package/build/components/WindowAppIcon/style.js +25 -0
  1403. package/build/components/WindowSideBar/WindowSideBar.d.ts +18 -0
  1404. package/build/components/WindowSideBar/WindowSideBar.js +11 -0
  1405. package/build/components/WindowSideBar/constant.d.ts +1 -0
  1406. package/build/components/WindowSideBar/constant.js +1 -0
  1407. package/build/components/WindowSideBar/index.d.ts +2 -0
  1408. package/build/components/WindowSideBar/index.js +2 -0
  1409. package/build/components/WindowSideBar/style.d.ts +14 -0
  1410. package/build/components/WindowSideBar/style.js +33 -0
  1411. package/build/components/index.d.ts +81 -0
  1412. package/build/components/index.js +81 -0
  1413. package/build/constants/api.d.ts +54 -0
  1414. package/build/constants/api.js +54 -0
  1415. package/build/constants/appWindow.d.ts +1 -0
  1416. package/build/constants/appWindow.js +1 -0
  1417. package/build/constants/apps.d.ts +684 -0
  1418. package/build/constants/apps.js +345 -0
  1419. package/build/constants/assets.d.ts +455 -0
  1420. package/build/constants/assets.js +459 -0
  1421. package/build/constants/charge.d.ts +1 -0
  1422. package/build/constants/charge.js +1 -0
  1423. package/build/constants/currency.d.ts +9 -0
  1424. package/build/constants/currency.js +21 -0
  1425. package/build/constants/index.d.ts +13 -0
  1426. package/build/constants/index.js +13 -0
  1427. package/build/constants/server.d.ts +4 -0
  1428. package/build/constants/server.js +4 -0
  1429. package/build/constants/servicesTags.d.ts +2 -0
  1430. package/build/constants/servicesTags.js +53 -0
  1431. package/build/constants/style.d.ts +3 -0
  1432. package/build/constants/style.js +3 -0
  1433. package/build/constants/table/cell/authenticationsTableCellWidth.d.ts +46 -0
  1434. package/build/constants/table/cell/authenticationsTableCellWidth.js +46 -0
  1435. package/build/constants/table/cell/authorizationTableCellWidth.d.ts +130 -0
  1436. package/build/constants/table/cell/authorizationTableCellWidth.js +130 -0
  1437. package/build/constants/table/cell/chargeTableCellWidth.d.ts +130 -0
  1438. package/build/constants/table/cell/chargeTableCellWidth.js +130 -0
  1439. package/build/constants/table/cell/destinationsTableCellWidth.d.ts +86 -0
  1440. package/build/constants/table/cell/destinationsTableCellWidth.js +86 -0
  1441. package/build/constants/table/cell/index.d.ts +19 -0
  1442. package/build/constants/table/cell/index.js +19 -0
  1443. package/build/constants/table/cell/intentsTableCellWidth.d.ts +26 -0
  1444. package/build/constants/table/cell/intentsTableCellWidth.js +26 -0
  1445. package/build/constants/table/cell/invoicesTableCellWidth.d.ts +70 -0
  1446. package/build/constants/table/cell/invoicesTableCellWidth.js +70 -0
  1447. package/build/constants/table/cell/leadsTableCellWidth.d.ts +30 -0
  1448. package/build/constants/table/cell/leadsTableCellWidth.js +30 -0
  1449. package/build/constants/table/cell/merchantsTableCellWidth.d.ts +42 -0
  1450. package/build/constants/table/cell/merchantsTableCellWidth.js +42 -0
  1451. package/build/constants/table/cell/ordersTableCellWidth.d.ts +46 -0
  1452. package/build/constants/table/cell/ordersTableCellWidth.js +46 -0
  1453. package/build/constants/table/cell/payoutsTableCellWidth.d.ts +46 -0
  1454. package/build/constants/table/cell/payoutsTableCellWidth.js +46 -0
  1455. package/build/constants/table/cell/protectAuthorizationsTableCellWidth.d.ts +58 -0
  1456. package/build/constants/table/cell/protectAuthorizationsTableCellWidth.js +58 -0
  1457. package/build/constants/table/cell/protectChargesTableCellWidth.d.ts +54 -0
  1458. package/build/constants/table/cell/protectChargesTableCellWidth.js +54 -0
  1459. package/build/constants/table/cell/refundTableCellWidth.d.ts +114 -0
  1460. package/build/constants/table/cell/refundTableCellWidth.js +114 -0
  1461. package/build/constants/table/cell/tokensTableCellWidth.d.ts +38 -0
  1462. package/build/constants/table/cell/tokensTableCellWidth.js +38 -0
  1463. package/build/constants/table/cell/topupsTableCellWidth.d.ts +46 -0
  1464. package/build/constants/table/cell/topupsTableCellWidth.js +46 -0
  1465. package/build/constants/table/cell/walletDetailsTableCellWidth.d.ts +26 -0
  1466. package/build/constants/table/cell/walletDetailsTableCellWidth.js +26 -0
  1467. package/build/constants/table/cell/walletStatementTableCellWidth.d.ts +50 -0
  1468. package/build/constants/table/cell/walletStatementTableCellWidth.js +50 -0
  1469. package/build/constants/table/cell/walletTableCellWidth.d.ts +26 -0
  1470. package/build/constants/table/cell/walletTableCellWidth.js +26 -0
  1471. package/build/constants/table.d.ts +5 -0
  1472. package/build/constants/table.js +5 -0
  1473. package/build/constants/timezones.d.ts +4 -0
  1474. package/build/constants/timezones.js +45 -0
  1475. package/build/constants/toggleOptions.d.ts +8 -0
  1476. package/build/constants/toggleOptions.js +8 -0
  1477. package/build/hooks/index.d.ts +12 -0
  1478. package/build/hooks/index.js +12 -0
  1479. package/build/hooks/useActionMenu.d.ts +20 -0
  1480. package/build/hooks/useActionMenu.js +45 -0
  1481. package/build/hooks/useBadgesCount.d.ts +3 -0
  1482. package/build/hooks/useBadgesCount.js +15 -0
  1483. package/build/hooks/useCheckInternetConnection.d.ts +1 -0
  1484. package/build/hooks/useCheckInternetConnection.js +17 -0
  1485. package/build/hooks/useCheckUserLoggedIn.d.ts +1 -0
  1486. package/build/hooks/useCheckUserLoggedIn.js +11 -0
  1487. package/build/hooks/useDelayToSetValue.d.ts +4 -0
  1488. package/build/hooks/useDelayToSetValue.js +19 -0
  1489. package/build/hooks/useDelayedUpdate.d.ts +1 -0
  1490. package/build/hooks/useDelayedUpdate.js +12 -0
  1491. package/build/hooks/useIsParameterSelected.d.ts +5 -0
  1492. package/build/hooks/useIsParameterSelected.js +13 -0
  1493. package/build/hooks/useMouseState.d.ts +8 -0
  1494. package/build/hooks/useMouseState.js +25 -0
  1495. package/build/hooks/useQueryCancel.d.ts +3 -0
  1496. package/build/hooks/useQueryCancel.js +15 -0
  1497. package/build/hooks/useStickyHeaderShadow.d.ts +4 -0
  1498. package/build/hooks/useStickyHeaderShadow.js +14 -0
  1499. package/build/hooks/useThemeMode.d.ts +4 -0
  1500. package/build/hooks/useThemeMode.js +8 -0
  1501. package/build/hooks/useWindowDimensions.d.ts +4 -0
  1502. package/build/hooks/useWindowDimensions.js +21 -0
  1503. package/build/index.d.ts +6 -0
  1504. package/build/index.js +6 -0
  1505. package/build/theme/components.d.ts +2 -0
  1506. package/build/theme/components.js +22 -0
  1507. package/build/theme/index.d.ts +5 -0
  1508. package/build/theme/index.js +5 -0
  1509. package/build/theme/palette.d.ts +3 -0
  1510. package/build/theme/palette.js +105 -0
  1511. package/build/theme/shadows.d.ts +2 -0
  1512. package/build/theme/shadows.js +27 -0
  1513. package/build/theme/theme.d.ts +10 -0
  1514. package/build/theme/theme.js +15 -0
  1515. package/build/theme/typography.d.ts +3 -0
  1516. package/build/theme/typography.js +33 -0
  1517. package/build/types/analytics.d.ts +30 -0
  1518. package/build/types/analytics.js +6 -0
  1519. package/build/types/api.d.ts +21 -0
  1520. package/build/types/api.js +1 -0
  1521. package/build/types/appConfig.d.ts +31 -0
  1522. package/build/types/appConfig.js +1 -0
  1523. package/build/types/apps.d.ts +60 -0
  1524. package/build/types/apps.js +1 -0
  1525. package/build/types/authentication.d.ts +1 -0
  1526. package/build/types/authentication.js +1 -0
  1527. package/build/types/brand.d.ts +103 -0
  1528. package/build/types/brand.js +13 -0
  1529. package/build/types/cell.d.ts +77 -0
  1530. package/build/types/cell.js +1 -0
  1531. package/build/types/charge.d.ts +396 -0
  1532. package/build/types/charge.js +1 -0
  1533. package/build/types/column.d.ts +40 -0
  1534. package/build/types/column.js +1 -0
  1535. package/build/types/currency.d.ts +47 -0
  1536. package/build/types/currency.js +13 -0
  1537. package/build/types/destination.d.ts +1 -0
  1538. package/build/types/destination.js +1 -0
  1539. package/build/types/entity.d.ts +115 -0
  1540. package/build/types/entity.js +1 -0
  1541. package/build/types/error.d.ts +8 -0
  1542. package/build/types/error.js +1 -0
  1543. package/build/types/file.d.ts +9 -0
  1544. package/build/types/file.js +1 -0
  1545. package/build/types/index.d.ts +24 -0
  1546. package/build/types/index.js +24 -0
  1547. package/build/types/invoice.d.ts +94 -0
  1548. package/build/types/invoice.js +19 -0
  1549. package/build/types/merchant.d.ts +10 -0
  1550. package/build/types/merchant.js +1 -0
  1551. package/build/types/redux.d.ts +9 -0
  1552. package/build/types/redux.js +1 -0
  1553. package/build/types/refund.d.ts +5 -0
  1554. package/build/types/refund.js +1 -0
  1555. package/build/types/segment.d.ts +6 -0
  1556. package/build/types/segment.js +1 -0
  1557. package/build/types/sort.d.ts +1 -0
  1558. package/build/types/sort.js +1 -0
  1559. package/build/types/source.d.ts +1 -0
  1560. package/build/types/source.js +1 -0
  1561. package/build/types/table.d.ts +135 -0
  1562. package/build/types/table.js +1 -0
  1563. package/build/types/theme.d.ts +12 -0
  1564. package/build/types/theme.js +10 -0
  1565. package/build/types/user.d.ts +158 -0
  1566. package/build/types/user.js +1 -0
  1567. package/build/utils/api.d.ts +12 -0
  1568. package/build/utils/api.js +92 -0
  1569. package/build/utils/app.d.ts +3 -0
  1570. package/build/utils/app.js +7 -0
  1571. package/build/utils/array.d.ts +10 -0
  1572. package/build/utils/array.js +16 -0
  1573. package/build/utils/billing.d.ts +38 -0
  1574. package/build/utils/billing.js +31 -0
  1575. package/build/utils/browser.d.ts +2 -0
  1576. package/build/utils/browser.js +7 -0
  1577. package/build/utils/card.d.ts +8 -0
  1578. package/build/utils/card.js +15 -0
  1579. package/build/utils/chargeError.d.ts +12 -0
  1580. package/build/utils/chargeError.js +10 -0
  1581. package/build/utils/color.d.ts +2 -0
  1582. package/build/utils/color.js +38 -0
  1583. package/build/utils/columns.d.ts +9 -0
  1584. package/build/utils/columns.js +67 -0
  1585. package/build/utils/conversion.d.ts +6 -0
  1586. package/build/utils/conversion.js +27 -0
  1587. package/build/utils/country.d.ts +1 -0
  1588. package/build/utils/country.js +11 -0
  1589. package/build/utils/currency.d.ts +31 -0
  1590. package/build/utils/currency.js +100 -0
  1591. package/build/utils/date.d.ts +34 -0
  1592. package/build/utils/date.js +180 -0
  1593. package/build/utils/download.d.ts +3 -0
  1594. package/build/utils/download.js +24 -0
  1595. package/build/utils/entity.d.ts +2 -0
  1596. package/build/utils/entity.js +13 -0
  1597. package/build/utils/error.d.ts +20 -0
  1598. package/build/utils/error.js +69 -0
  1599. package/build/utils/extractIdsFromRowData.d.ts +5 -0
  1600. package/build/utils/extractIdsFromRowData.js +26 -0
  1601. package/build/utils/file.d.ts +6 -0
  1602. package/build/utils/file.js +16 -0
  1603. package/build/utils/freshdesk.d.ts +6 -0
  1604. package/build/utils/freshdesk.js +47 -0
  1605. package/build/utils/geography.d.ts +11 -0
  1606. package/build/utils/geography.js +10 -0
  1607. package/build/utils/index.d.ts +40 -0
  1608. package/build/utils/index.js +40 -0
  1609. package/build/utils/language.d.ts +34 -0
  1610. package/build/utils/language.js +14 -0
  1611. package/build/utils/localStorage.d.ts +29 -0
  1612. package/build/utils/localStorage.js +162 -0
  1613. package/build/utils/merchant.d.ts +3 -0
  1614. package/build/utils/merchant.js +21 -0
  1615. package/build/utils/navigation.d.ts +15 -0
  1616. package/build/utils/navigation.js +11 -0
  1617. package/build/utils/number.d.ts +4 -0
  1618. package/build/utils/number.js +24 -0
  1619. package/build/utils/object.d.ts +6 -0
  1620. package/build/utils/object.js +14 -0
  1621. package/build/utils/payout.d.ts +65 -0
  1622. package/build/utils/payout.js +172 -0
  1623. package/build/utils/phone.d.ts +8 -0
  1624. package/build/utils/phone.js +8 -0
  1625. package/build/utils/reactQuery.d.ts +3 -0
  1626. package/build/utils/reactQuery.js +18 -0
  1627. package/build/utils/reports.d.ts +1 -0
  1628. package/build/utils/reports.js +3 -0
  1629. package/build/utils/segment.d.ts +2 -0
  1630. package/build/utils/segment.js +9 -0
  1631. package/build/utils/source.d.ts +4 -0
  1632. package/build/utils/source.js +4 -0
  1633. package/build/utils/string.d.ts +8 -0
  1634. package/build/utils/string.js +53 -0
  1635. package/build/utils/table.d.ts +8 -0
  1636. package/build/utils/table.js +73 -0
  1637. package/build/utils/toggleOptions.d.ts +1 -0
  1638. package/build/utils/toggleOptions.js +10 -0
  1639. package/build/utils/url.d.ts +1 -0
  1640. package/build/utils/url.js +8 -0
  1641. package/build/utils/user.d.ts +4 -0
  1642. package/build/utils/user.js +7 -0
  1643. package/build/utils/validation.d.ts +1 -0
  1644. package/build/utils/validation.js +3 -0
  1645. package/package.json +90 -0
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Tap Payments
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,12 @@
1
+ # os-micro-frontend-shared
2
+
3
+ ## Publishing Workflow
4
+
5
+ 1. Update version in package.json
6
+ 2. Commit changes
7
+ 3. Create and push a tag:
8
+
9
+ ```bash
10
+ npm version patch # or minor, major
11
+ git push origin main --tags
12
+ ```
@@ -0,0 +1,10 @@
1
+ <svg width="15" height="14" viewBox="0 0 15 14" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_4838_500791)">
3
+ <path d="M12.6359 1.34444L12.6359 1.34444L1.84425 12.1361L1.84324 12.1371L1.84323 12.1371C1.80796 12.171 1.7798 12.2115 1.76041 12.2564C1.74101 12.3013 1.73076 12.3496 1.73026 12.3985C1.72977 12.4474 1.73903 12.4959 1.75751 12.5411C1.77599 12.5864 1.80332 12.6275 1.8379 12.6621C1.87247 12.6967 1.9136 12.724 1.95886 12.7425C2.00413 12.761 2.05263 12.7702 2.10153 12.7697C2.15042 12.7693 2.19872 12.759 2.2436 12.7396C2.28849 12.7202 2.32905 12.692 2.36291 12.6568L2.3639 12.6558L2.36391 12.6558L6.87107 8.1486L6.88649 8.13318L6.90794 8.12925C7.83177 7.95978 8.82148 8.22837 9.53582 8.94271C9.60683 9.01372 9.70218 9.05038 9.79508 9.05038C9.88808 9.05038 9.98396 9.01366 10.0549 8.94271L10.0553 8.94229C10.1993 8.80078 10.1999 8.5686 10.0549 8.42362C9.42924 7.79795 8.63373 7.44893 7.81425 7.36712L7.66723 7.35244L7.7717 7.24797L9.21295 5.80672L9.24408 5.77559L9.28562 5.79017C10.0624 6.06276 10.7767 6.50589 11.3758 7.10498C11.4471 7.17626 11.5402 7.21322 11.6357 7.21322C11.7275 7.21322 11.8209 7.17675 11.8957 7.10478C12.0374 6.95995 12.0372 6.72746 11.8952 6.58281C11.3154 6.00304 10.6422 5.55399 9.91133 5.24449L9.81569 5.20398L9.88914 5.13053L11.1806 3.83911L11.217 3.80262L11.2627 3.82668C11.9646 4.19662 12.6233 4.67474 13.2136 5.26497C13.2845 5.33592 13.3804 5.37265 13.4734 5.37265C13.569 5.37265 13.6615 5.33616 13.7326 5.26497C13.8776 5.11999 13.877 4.88724 13.7331 4.74574L13.7325 4.74522C13.1559 4.16612 12.5156 3.69094 11.8371 3.30814L11.7568 3.26285L11.822 3.19767L13.1556 1.8641L13.1562 1.86344C13.2093 1.81181 13.2454 1.74537 13.2601 1.67282C13.2747 1.60028 13.2671 1.525 13.2383 1.45685C13.2094 1.3887 13.1606 1.33084 13.0984 1.29086C13.0361 1.25088 12.9632 1.23062 12.8892 1.23275L12.6359 1.34444ZM12.6359 1.34444L12.6366 1.34377M12.6359 1.34444L12.6366 1.34377M12.6366 1.34377C12.7032 1.27535 12.7938 1.23554 12.8892 1.23275L12.6366 1.34377ZM1.15567 4.74574L1.1561 4.74532C2.82333 3.07809 4.99232 2.21114 7.18124 2.14706C8.13805 2.11905 9.09854 2.24422 10.0224 2.52326L9.42386 3.12232C6.7366 2.45348 3.77167 3.16849 1.67518 5.26497L1.67477 5.2654C1.53326 5.40934 1.30108 5.40996 1.1561 5.26497C1.01112 5.11999 1.01173 4.88724 1.15567 4.74574ZM2.99668 6.58304C4.18518 5.39454 5.76276 4.74246 7.44465 4.74246C7.56138 4.74246 7.67793 4.74531 7.7943 4.7519L7.05489 5.49131C5.71805 5.58262 4.47253 6.1454 3.51594 7.10481C3.37084 7.24718 3.13819 7.2465 2.99668 7.10498C2.85193 6.96023 2.85193 6.72779 2.99668 6.58304ZM6.72445 10.308C6.93012 10.1023 7.20906 9.98677 7.49991 9.98677C7.79077 9.98677 8.06971 10.1023 8.27537 10.308C8.48104 10.5136 8.59658 10.7926 8.59658 11.0834C8.59658 11.3743 8.48104 11.6532 8.27537 11.8589C8.06971 12.0646 7.79077 12.1801 7.49991 12.1801C7.20906 12.1801 6.93012 12.0646 6.72445 11.8589C6.51879 11.6532 6.40325 11.3743 6.40325 11.0834C6.40325 10.7926 6.51879 10.5136 6.72445 10.308Z" fill="#20232B" stroke="#20232B" stroke-width="0.14"/>
4
+ </g>
5
+ <defs>
6
+ <clipPath id="clip0_4838_500791">
7
+ <rect width="14" height="14" fill="white" transform="translate(0.5)"/>
8
+ </clipPath>
9
+ </defs>
10
+ </svg>
@@ -0,0 +1,14 @@
1
+ <svg width="161" height="68" viewBox="0 0 161 68" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_459_2)">
3
+ <path d="M75.7471 4.6864H70.7246V14.7313H70.7129V19.0151H70.7246V38.7024C70.7246 40.6215 70.7911 42.138 70.9239 43.2559C71.0568 44.3737 71.3813 45.4759 71.8933 46.5703C73.0307 48.8255 74.9615 50.2795 77.6857 50.9401C80.41 51.6006 83.4547 51.5811 86.8278 50.8893V46.5039C84.0371 46.9494 81.8092 47.0081 80.1481 46.6719C78.487 46.3358 77.2636 45.4564 76.4819 44.0259C76.1262 43.4005 75.9073 42.7048 75.8292 41.9348C75.751 41.1648 75.7236 40.0548 75.7471 38.6047V19.019H86.8278V14.7353C86.8278 14.7353 79.5004 14.8504 75.7471 14.8504C74.8732 14.8504 74.8456 14.8504 74.4439 14.8504C74.0918 14.8504 73.4898 14.8981 73.4898 14.755C73.4898 14.0872 75.7471 14.5642 75.7471 13.7055C75.7471 12.8469 75.7471 4.6864 75.7471 4.6864Z" fill="#1F222A"/>
4
+ <path d="M121.015 24.2875C120.859 23.0485 120.57 21.9267 120.143 20.9222C119.182 18.6006 117.556 16.8222 115.254 15.5832C112.956 14.3442 110.142 13.7266 106.815 13.7266C102.84 13.7266 99.6002 14.6139 97.0909 16.3883C94.5816 18.1628 92.901 20.6799 92.0528 23.9396L96.9424 25.378C97.5912 23.0133 98.756 21.2662 100.441 20.1366C102.125 19.011 104.216 18.4442 106.718 18.4442C109.082 18.4442 110.974 18.8195 112.393 19.566C113.812 20.3125 114.824 21.4538 115.438 22.982C115.981 24.3344 116.262 26.019 116.294 28.0436C115.832 28.1061 115.363 28.1648 114.886 28.2234C111.115 28.7159 108.133 29.1224 105.948 29.4468C103.759 29.7712 101.73 30.1659 99.8543 30.635C96.9737 31.3932 94.7263 32.6322 93.1081 34.352C91.49 36.0717 90.6809 38.3465 90.6809 41.1802C90.6809 43.1462 91.1499 44.9402 92.088 46.5701C93.026 48.2 94.4253 49.4937 96.2897 50.4552C98.154 51.4128 100.401 51.8935 103.036 51.8935C105.424 51.8935 107.593 51.5378 109.547 50.8226C111.502 50.1073 113.19 49.0442 114.621 47.6254C115.43 46.8241 116.141 45.9174 116.763 44.909L117.562 43.4566C118.664 43.7108 116.763 45.0942 116.763 48.1315C116.763 51.1688 116.763 50.889 116.763 50.889H121.25V28.4579C121.25 26.9179 121.171 25.5265 121.015 24.2914V24.2875ZM116.161 35.3526C116.094 36.3571 115.961 37.2951 115.758 38.1667C115.422 39.9959 114.73 41.6219 113.683 43.0368C112.635 44.4556 111.248 45.5578 109.532 46.3512C107.812 47.1446 105.85 47.5394 103.638 47.5394C101.809 47.5394 100.3 47.2384 99.1194 46.6365C97.9352 46.0346 97.0714 45.2529 96.5242 44.2914C95.977 43.3338 95.7034 42.2941 95.7034 41.1763C95.7034 39.3901 96.2818 37.9908 97.4427 36.9746C98.6035 35.9584 100.089 35.1962 101.895 34.6803C103.614 34.2113 105.561 33.8204 107.738 33.5077C109.915 33.1951 112.62 32.8511 115.856 32.4681L116.254 32.4173C116.247 33.5117 116.215 34.4966 116.157 35.3487L116.161 35.3526Z" fill="#1F222A"/>
5
+ <path d="M158.684 23.0171C157.402 20.1287 155.558 17.8578 153.162 16.2045C150.762 14.5512 147.944 13.7265 144.707 13.7265C141.471 13.7265 138.575 14.5434 136.218 16.1693C132.751 18.6186 132.737 20.5745 132.117 20.5745C131.497 20.5745 132.759 19.0479 132.759 17.8553C132.751 17.2352 132.751 14.731 132.751 14.731H128.233V67.2227H133.287V49.1489C133.287 46.716 132.092 46.0005 132.689 45.8097C133.287 45.6189 134.014 47.8555 136.183 49.3998C138.516 51.0609 141.299 51.8934 144.535 51.8934C147.772 51.8934 150.699 51.0687 153.122 49.4154C155.546 47.7621 157.398 45.4873 158.68 42.5872C159.962 39.687 160.607 36.4156 160.607 32.7767C160.607 29.1379 159.966 25.9094 158.68 23.0171H158.684ZM153.982 40.2108C153.134 42.3996 151.868 44.1154 150.183 45.3661C148.499 46.6169 146.439 47.2422 144.008 47.2422C141.577 47.2422 139.482 46.6286 137.797 45.4013C136.113 44.174 134.85 42.4699 134.014 40.2968C133.177 38.1197 132.759 35.6143 132.759 32.7806C132.759 29.9469 133.173 27.3908 133.998 25.2489C134.823 23.107 136.073 21.4263 137.746 20.2108C139.419 18.9952 141.475 18.3855 143.906 18.3855C146.337 18.3855 148.503 19.003 150.199 20.242C151.895 21.481 153.162 23.1891 153.998 25.3661C154.834 27.5432 155.253 30.0134 155.253 32.7806C155.253 35.5479 154.827 38.0259 153.982 40.2147V40.2108Z" fill="#1F222A"/>
6
+ <path d="M27.7194 4.68656C40.6489 4.68656 51.1707 15.2083 51.1707 28.1378C51.1707 41.0672 40.6489 51.589 27.7194 51.589C14.79 51.589 4.26816 41.0672 4.26816 28.1378C4.26816 15.2083 14.79 4.68656 27.7194 4.68656ZM27.7194 0.778015C12.609 0.778015 0.359619 13.0274 0.359619 28.1378C0.359619 43.2482 12.609 55.4976 27.7194 55.4976C42.8298 55.4976 55.0792 43.2482 55.0792 28.1378C55.0792 13.0274 42.8298 0.778015 27.7194 0.778015Z" fill="#1F222A"/>
7
+ <path d="M27.719 12.5033C36.3412 12.5033 43.3531 19.5152 43.3531 28.1375C43.3531 36.7597 36.3412 43.7717 27.719 43.7717C19.0967 43.7717 12.0848 36.7597 12.0848 28.1375C12.0848 19.5152 19.0967 12.5033 27.719 12.5033ZM27.719 8.59479C16.9275 8.59479 8.17627 17.346 8.17627 28.1375C8.17627 38.929 16.9275 47.6802 27.719 47.6802C38.5104 47.6802 47.2617 38.929 47.2617 28.1375C47.2617 17.346 38.5104 8.59479 27.719 8.59479Z" fill="#1F222A"/>
8
+ </g>
9
+ <defs>
10
+ <clipPath id="clip0_459_2">
11
+ <rect width="160.25" height="66.4452" fill="white" transform="translate(0.359619 0.777405)"/>
12
+ </clipPath>
13
+ </defs>
14
+ </svg>
@@ -0,0 +1,19 @@
1
+ <svg width="136" height="57" viewBox="0 0 136 57" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_5275_627767)">
3
+ <g clip-path="url(#clip1_5275_627767)">
4
+ <path d="M63.8867 3.85205H59.6875V12.2503H59.6777V15.8318H59.6875V32.2917C59.6875 33.8962 59.7431 35.1641 59.8542 36.0987C59.9653 37.0332 60.2365 37.9548 60.6646 38.8697C61.6155 40.7553 63.2298 41.9709 65.5075 42.5231C67.7851 43.0754 70.3307 43.0591 73.1509 42.4807V38.8142C70.8176 39.1867 68.955 39.2357 67.5662 38.9547C66.1774 38.6737 65.1546 37.9384 64.501 36.7424C64.2036 36.2196 64.0206 35.6379 63.9553 34.9941C63.8899 34.3504 63.867 33.4223 63.8867 32.21V15.8351H73.1509V12.2536H63.8867V3.85205Z" fill="white"/>
5
+ <path d="M101.734 20.24C101.604 19.2041 101.362 18.2662 101.006 17.4264C100.202 15.4853 98.8424 13.9985 96.9177 12.9626C94.9962 11.9267 92.6434 11.4104 89.8625 11.4104C86.5392 11.4104 83.8302 12.1522 81.7322 13.6358C79.6343 15.1193 78.2292 17.2238 77.52 19.9492L81.6081 21.1517C82.1505 19.1747 83.1243 17.714 84.5327 16.7696C85.9412 15.8285 87.6894 15.3546 89.7808 15.3546C91.7578 15.3546 93.3394 15.6683 94.5257 16.2925C95.7119 16.9166 96.5582 17.8708 97.0713 19.1485C97.5255 20.2792 97.7608 21.6876 97.7869 23.3803C97.4013 23.4326 97.0092 23.4816 96.6105 23.5307C93.4571 23.9424 90.9638 24.2822 89.1371 24.5535C87.3071 24.8247 85.6111 25.1547 84.0426 25.5469C81.6342 26.1808 79.7552 27.2167 78.4023 28.6546C77.0495 30.0924 76.373 31.9942 76.373 34.3634C76.373 36.0071 76.7652 37.507 77.5495 38.8697C78.3337 40.2324 79.5036 41.314 81.0623 42.1179C82.6211 42.9185 84.5001 43.3204 86.7026 43.3204C88.6992 43.3204 90.5128 43.0231 92.1467 42.425C93.7806 41.827 95.1923 40.9382 96.3883 39.752C97.0647 39.0821 97.6595 38.324 98.179 37.4809V42.4806H101.93V23.7267C101.93 22.4392 101.865 21.2759 101.734 20.2433V20.24ZM97.6758 29.4911C97.6203 30.3309 97.5091 31.1152 97.3392 31.8439C97.0582 33.3733 96.4798 34.7327 95.604 35.9156C94.7283 37.1018 93.5682 38.0233 92.1336 38.6867C90.6958 39.3501 89.0554 39.6801 87.2058 39.6801C85.6765 39.6801 84.4151 39.4285 83.4282 38.9252C82.4381 38.422 81.7159 37.7684 81.2584 36.9646C80.8009 36.164 80.5722 35.2947 80.5722 34.3601C80.5722 32.8667 81.0558 31.6969 82.0263 30.8472C82.9969 29.9976 84.2386 29.3604 85.7484 28.9291C87.1862 28.5369 88.8135 28.2101 90.6337 27.9487C92.4539 27.6873 94.7152 27.3997 97.4209 27.0795L97.7542 27.037C97.7477 27.952 97.7216 28.7755 97.6725 29.4878L97.6758 29.4911Z" fill="white"/>
6
+ <path d="M133.225 19.178C132.153 16.763 130.611 14.8645 128.608 13.4822C126.601 12.0999 124.245 11.4104 121.539 11.4104C118.834 11.4104 116.412 12.0934 114.442 13.4528C113.314 14.2305 112.354 15.188 111.543 16.3056V12.2502H107.766V56.1367H111.991V38.9416C112.693 39.8173 113.501 40.5853 114.412 41.2356C116.363 42.6244 118.69 43.3204 121.396 43.3204C124.101 43.3204 126.549 42.6309 128.575 41.2486C130.601 39.8664 132.15 37.9645 133.222 35.5398C134.294 33.1151 134.833 30.38 134.833 27.3376C134.833 24.2953 134.297 21.5961 133.222 19.178H133.225ZM129.294 33.553C128.585 35.3829 127.526 36.8175 126.118 37.8632C124.709 38.9089 122.987 39.4317 120.954 39.4317C118.922 39.4317 117.17 38.9187 115.762 37.8926C114.354 36.8665 113.298 35.4418 112.599 33.6249C111.899 31.8047 111.55 29.7101 111.55 27.3409C111.55 24.9718 111.896 22.8346 112.586 21.0439C113.275 19.2531 114.321 17.848 115.719 16.8317C117.118 15.8154 118.837 15.3056 120.869 15.3056C122.902 15.3056 124.712 15.8219 126.131 16.8578C127.549 17.8937 128.608 19.3217 129.307 21.1419C130.006 22.9621 130.356 25.0273 130.356 27.3409C130.356 29.6545 130 31.7263 129.294 33.5563V33.553Z" fill="white"/>
7
+ <path d="M23.732 3.85202C34.5419 3.85202 43.3388 12.6489 43.3388 23.4588C43.3388 34.2687 34.5419 43.0656 23.732 43.0656C12.9221 43.0656 4.12522 34.2687 4.12522 23.4588C4.12522 12.6489 12.9221 3.85202 23.732 3.85202ZM23.732 0.584229C11.0987 0.584229 0.857422 10.8255 0.857422 23.4588C0.857422 36.0921 11.0987 46.3334 23.732 46.3334C36.3653 46.3334 46.6066 36.0921 46.6066 23.4588C46.6066 10.8255 36.3653 0.584229 23.732 0.584229Z" fill="white"/>
8
+ <path d="M23.7316 10.3877C30.9403 10.3877 36.8027 16.2501 36.8027 23.4588C36.8027 30.6676 30.9403 36.53 23.7316 36.53C16.5228 36.53 10.6604 30.6676 10.6604 23.4588C10.6604 16.2501 16.5228 10.3877 23.7316 10.3877ZM23.7316 7.11987C14.7092 7.11987 7.39258 14.4365 7.39258 23.4588C7.39258 32.4812 14.7092 39.7978 23.7316 39.7978C32.7539 39.7978 40.0705 32.4812 40.0705 23.4588C40.0705 14.4365 32.7539 7.11987 23.7316 7.11987Z" fill="white"/>
9
+ </g>
10
+ </g>
11
+ <defs>
12
+ <clipPath id="clip0_5275_627767">
13
+ <rect width="134.287" height="55.6798" fill="white" transform="translate(0.857422 0.584229)"/>
14
+ </clipPath>
15
+ <clipPath id="clip1_5275_627767">
16
+ <rect width="133.98" height="55.5525" fill="white" transform="translate(0.857422 0.584229)"/>
17
+ </clipPath>
18
+ </defs>
19
+ </svg>
@@ -0,0 +1,31 @@
1
+ <svg width="289" height="210" viewBox="0 0 289 210" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g filter="url(#filter0_di_46_16849)">
3
+ <rect x="123" y="40" width="121.36" height="121.36" rx="32" fill="url(#paint0_linear_46_16849)"/>
4
+ </g>
5
+ <path d="M165.45 124.938C161.073 124.938 157.342 123.958 154.257 121.999C151.172 120.019 148.837 117.267 147.253 113.744C145.669 110.222 144.877 106.136 144.877 101.488C144.877 96.8397 145.669 92.7541 147.253 89.2314C148.837 85.7087 151.172 82.9677 154.257 81.0083C157.342 79.0281 161.073 78.038 165.45 78.038C169.849 78.038 173.59 79.0281 176.675 81.0083C179.76 82.9677 182.095 85.7087 183.679 89.2314C185.263 92.7541 186.055 96.8397 186.055 101.488C186.055 106.136 185.263 110.222 183.679 113.744C182.095 117.267 179.76 120.019 176.675 121.999C173.59 123.958 169.849 124.938 165.45 124.938ZM165.45 121.03C168.994 121.03 171.985 120.217 174.424 118.591C176.863 116.944 178.687 114.662 179.896 111.743C181.125 108.804 181.74 105.386 181.74 101.488C181.74 97.5901 181.125 94.182 179.896 91.2638C178.687 88.3247 176.863 86.0422 174.424 84.4164C171.985 82.7905 168.994 81.9671 165.45 81.9463C161.949 81.9463 158.978 82.7697 156.539 84.4164C154.101 86.0422 152.266 88.3143 151.036 91.2325C149.828 94.1507 149.213 97.5692 149.192 101.488C149.15 105.365 149.744 108.773 150.974 111.712C152.204 114.651 154.038 116.934 156.477 118.56C158.937 120.185 161.928 121.009 165.45 121.03Z" fill="white"/>
6
+ <path d="M205.269 124.938C202.163 124.938 199.359 124.417 196.858 123.375C194.356 122.332 192.293 120.863 190.667 118.966C189.062 117.048 187.999 114.787 187.478 112.181L191.605 111.493C192.105 113.453 193.002 115.151 194.294 116.59C195.586 118.028 197.181 119.133 199.078 119.904C200.995 120.654 203.101 121.03 205.394 121.03C207.728 121.03 209.802 120.665 211.616 119.935C213.429 119.185 214.847 118.132 215.868 116.777C216.889 115.402 217.4 113.807 217.4 111.994C217.4 110.43 217.035 109.138 216.306 108.116C215.576 107.095 214.701 106.313 213.679 105.771C212.658 105.209 211.47 104.719 210.115 104.302L198.765 100.925C196.722 100.321 195.003 99.5494 193.606 98.6114C192.209 97.6734 191.126 96.5061 190.354 95.1096C189.604 93.713 189.229 92.0975 189.229 90.2632C189.229 87.8453 189.875 85.7087 191.167 83.8536C192.46 81.9984 194.263 80.5706 196.576 79.57C198.89 78.5487 201.506 78.038 204.424 78.038C207.384 78.0588 210.052 78.6112 212.429 79.6951C214.805 80.7582 216.754 82.2798 218.275 84.26C219.797 86.2194 220.787 88.5331 221.246 91.2012L217.056 91.9516C216.743 89.9714 216.003 88.2309 214.836 86.7301C213.69 85.2085 212.21 84.0412 210.396 83.2282C208.583 82.3945 206.582 81.9671 204.393 81.9463C202.309 81.9463 200.433 82.3007 198.765 83.0094C197.118 83.7181 195.826 84.6978 194.888 85.9484C193.971 87.1783 193.512 88.5644 193.512 90.1069C193.512 91.5869 193.919 92.8167 194.732 93.7964C195.545 94.7761 196.524 95.5369 197.671 96.0788C198.838 96.5999 200.214 97.0898 201.798 97.5484L210.74 100.175C212.533 100.696 214.18 101.332 215.68 102.082C217.181 102.812 218.526 103.979 219.714 105.584C220.902 107.189 221.496 109.284 221.496 111.868C221.496 114.557 220.798 116.882 219.401 118.841C218.025 120.8 216.108 122.312 213.648 123.375C211.209 124.417 208.416 124.938 205.269 124.938Z" fill="white"/>
7
+ <path d="M18.7164 123.645C14.7917 124.452 11.2433 124.465 8.07124 123.685C4.89919 122.906 2.65457 121.172 1.33737 118.484C0.719086 117.194 0.329301 115.89 0.168011 114.573C0.0336023 113.255 -0.0201611 111.468 0.00672029 109.21V108.202V68H5.28898V108.04V109.331C5.2621 111.078 5.28898 112.409 5.36962 113.323C5.47715 114.237 5.74597 115.083 6.17608 115.863C7.09005 117.61 8.55511 118.699 10.5712 119.129C12.5874 119.559 15.3024 119.492 18.7164 118.927V123.645ZM0.00656226 80.0968H18.7164V84.7339H0.00656226V80.0968Z" fill="#20232B"/>
8
+ <path d="M39.7251 124.855C36.5262 124.855 33.7977 124.277 31.5396 123.121C29.2815 121.965 27.588 120.419 26.459 118.484C25.3299 116.522 24.7654 114.358 24.7654 111.992C24.7654 108.524 25.7735 105.769 27.7896 103.726C29.8326 101.683 32.588 100.231 36.0557 99.371C38.3676 98.8333 40.8273 98.3763 43.4348 98C46.0692 97.6237 49.6176 97.1398 54.0799 96.5484C55.424 96.414 56.7009 96.2527 57.9106 96.0645L56.0154 97.2339C56.0692 94.1694 55.7063 91.6694 54.9267 89.7339C54.174 87.7715 52.8971 86.3199 51.0961 85.379C49.3219 84.4113 46.9428 83.9274 43.959 83.9274C40.76 83.9274 38.1122 84.6532 36.0154 86.1048C33.9455 87.5296 32.5074 89.7204 31.7009 92.6774L26.4186 91.1855C27.4401 87.2339 29.4563 84.1962 32.467 82.0726C35.4778 79.9489 39.3488 78.8871 44.0799 78.8871C48.0853 78.8871 51.459 79.6532 54.2009 81.1855C56.9697 82.7177 58.9052 84.8817 60.0074 87.6774C60.4643 88.8333 60.7869 90.164 60.9751 91.6694C61.1633 93.1747 61.2574 94.8011 61.2574 96.5484V123.645H56.4993V112.435L58.0316 112.96C57.0907 115.513 55.7466 117.677 53.9993 119.452C52.252 121.226 50.1686 122.57 47.7493 123.484C45.3299 124.398 42.6552 124.855 39.7251 124.855ZM40.1686 120.137C42.9643 120.137 45.4375 119.64 47.588 118.645C49.7654 117.624 51.5127 116.199 52.8299 114.371C54.174 112.543 55.0477 110.419 55.4509 108C55.6928 106.925 55.8407 105.796 55.8945 104.613C55.9482 103.403 55.9751 101.965 55.9751 100.298V99.5726L58.1122 100.782L55.5316 101.105C51.5799 101.535 48.2197 101.938 45.4509 102.315C42.6821 102.691 40.209 103.161 38.0315 103.726C35.7466 104.371 33.8514 105.339 32.3461 106.629C30.8676 107.919 30.1283 109.707 30.1283 111.992C30.1283 113.39 30.4643 114.707 31.1364 115.944C31.8084 117.18 32.8971 118.188 34.4025 118.968C35.9079 119.747 37.8299 120.137 40.1686 120.137Z" fill="#20232B"/>
9
+ <path d="M91.0746 124.855C87.2306 124.855 83.9107 123.86 81.115 121.871C78.3462 119.855 76.2359 117.113 74.7843 113.645C73.3596 110.151 72.6472 106.199 72.6472 101.79C72.6472 97.3548 73.3596 93.4167 74.7843 89.9758C76.2359 86.5081 78.373 83.793 81.1956 81.8306C84.0451 79.8683 87.4591 78.8871 91.4376 78.8871C95.2816 78.8871 98.6284 79.8817 101.478 81.871C104.327 83.8602 106.505 86.6021 108.01 90.0968C109.542 93.5645 110.309 97.4624 110.309 101.79C110.309 106.199 109.542 110.151 108.01 113.645C106.505 117.14 104.3 119.882 101.397 121.871C98.494 123.86 95.0531 124.855 91.0746 124.855ZM71.7601 80.0968H76.5182V113.242H77.0424V143H71.7601V80.0968ZM90.6311 119.855C93.6687 119.855 96.2359 119.075 98.3327 117.516C100.456 115.957 102.042 113.82 103.091 111.105C104.166 108.39 104.704 105.285 104.704 101.79C104.704 98.3226 104.179 95.2446 103.131 92.5565C102.083 89.8414 100.497 87.7177 98.373 86.1855C96.2494 84.6263 93.6419 83.8468 90.5505 83.8468C87.5128 83.8468 84.9322 84.6129 82.8085 86.1452C80.7117 87.6505 79.1392 89.7473 78.0908 92.4355C77.0424 95.1237 76.5182 98.2419 76.5182 101.79C76.5182 105.339 77.0424 108.47 78.0908 111.185C79.166 113.901 80.7521 116.024 82.8488 117.556C84.9725 119.089 87.5666 119.855 90.6311 119.855Z" fill="#20232B"/>
10
+ <defs>
11
+ <filter id="filter0_di_46_16849" x="79" y="0" width="209.359" height="209.36" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
12
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
13
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
14
+ <feOffset dy="4"/>
15
+ <feGaussianBlur stdDeviation="22"/>
16
+ <feComposite in2="hardAlpha" operator="out"/>
17
+ <feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/>
18
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_46_16849"/>
19
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_46_16849" result="shape"/>
20
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
21
+ <feOffset dy="-4"/>
22
+ <feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
23
+ <feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/>
24
+ <feBlend mode="normal" in2="shape" result="effect2_innerShadow_46_16849"/>
25
+ </filter>
26
+ <linearGradient id="paint0_linear_46_16849" x1="123" y1="100.68" x2="244.36" y2="100.68" gradientUnits="userSpaceOnUse">
27
+ <stop stop-color="#42464F"/>
28
+ <stop offset="1" stop-color="#272B34"/>
29
+ </linearGradient>
30
+ </defs>
31
+ </svg>
@@ -0,0 +1,13 @@
1
+ import React from 'react';
2
+ import { type AccordionProps, type SxProps } from '@mui/material';
3
+ interface AccordionAdapterProps extends AccordionProps {
4
+ Header: React.ReactNode;
5
+ summarySx?: SxProps;
6
+ Footer?: React.ReactNode;
7
+ }
8
+ declare function AccordionAdapter({ Header, Footer, summarySx, ...props }: AccordionAdapterProps): import("react/jsx-runtime").JSX.Element;
9
+ declare namespace AccordionAdapter {
10
+ var displayName: string;
11
+ }
12
+ declare const _default: React.MemoExoticComponent<typeof AccordionAdapter>;
13
+ export default _default;
@@ -0,0 +1,23 @@
1
+ var __rest = (this && this.__rest) || function (s, e) {
2
+ var t = {};
3
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
4
+ t[p] = s[p];
5
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
6
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
7
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
8
+ t[p[i]] = s[p[i]];
9
+ }
10
+ return t;
11
+ };
12
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
13
+ import React from 'react';
14
+ import { AccordionDetails } from '@mui/material';
15
+ import Icon from '../Icon';
16
+ import { downArrowIcon } from '../../constants/index.js';
17
+ import { AccordionActionsStyled, AccordionStyled, AccordionSummaryStyled } from './style';
18
+ function AccordionAdapter(_a) {
19
+ var { Header, Footer, summarySx } = _a, props = __rest(_a, ["Header", "Footer", "summarySx"]);
20
+ return (_jsxs(AccordionStyled, Object.assign({ component: "section", "data-testid": "AccordionAdapter" }, props, { children: [_jsx(AccordionSummaryStyled, Object.assign({ expandIcon: _jsx(Icon, { src: downArrowIcon }), "aria-controls": "panel3-content", id: "panel3-header", sx: summarySx }, { children: Header })), _jsx(AccordionDetails, Object.assign({ sx: { padding: 0 } }, { children: props.children })), Footer && _jsx(AccordionActionsStyled, { children: Footer })] })));
21
+ }
22
+ AccordionAdapter.displayName = 'AccordionAdapter';
23
+ export default React.memo(AccordionAdapter);
@@ -0,0 +1,2 @@
1
+ import AccordionAdapter from './AccordionAdapter';
2
+ export default AccordionAdapter;
@@ -0,0 +1,2 @@
1
+ import AccordionAdapter from './AccordionAdapter';
2
+ export default AccordionAdapter;
@@ -0,0 +1,22 @@
1
+ /// <reference types="react" />
2
+ export declare const AccordionStyled: import("@emotion/styled").StyledComponent<{
3
+ children: NonNullable<import("react").ReactNode>;
4
+ classes?: Partial<import("@mui/material").AccordionClasses> | undefined;
5
+ defaultExpanded?: boolean | undefined;
6
+ disabled?: boolean | undefined;
7
+ disableGutters?: boolean | undefined;
8
+ expanded?: boolean | undefined;
9
+ onChange?: ((event: import("react").SyntheticEvent<Element, Event>, expanded: boolean) => void) | undefined;
10
+ sx?: import("@mui/material/styles").SxProps<import("@mui/material/styles").Theme> | undefined;
11
+ TransitionComponent?: import("react").JSXElementConstructor<import("@mui/material/transitions").TransitionProps & {
12
+ children?: import("react").ReactElement<any, any> | undefined;
13
+ }> | undefined;
14
+ TransitionProps?: import("@mui/material/transitions").TransitionProps | undefined;
15
+ } & import("@mui/material/Accordion/Accordion").AccordionSlotsAndSlotProps & Omit<import("@mui/material").PaperOwnProps, "classes" | "onChange"> & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
16
+ ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
17
+ }, keyof import("@mui/material/OverridableComponent").CommonProps | "children" | "sx" | "onChange" | "expanded" | "disabled" | "square" | "elevation" | "variant" | "defaultExpanded" | "disableGutters" | "TransitionComponent" | "TransitionProps" | keyof import("@mui/material/Accordion/Accordion").AccordionSlotsAndSlotProps> & import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme>, {}, {}>;
18
+ export declare const AccordionSummaryStyled: import("@emotion/styled").StyledComponent<import("@mui/material/AccordionSummary/AccordionSummary").AccordionSummaryOwnProps & Omit<import("@mui/material").ButtonBaseOwnProps, "classes"> & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
19
+ ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
20
+ }, "className" | "style" | "classes" | "children" | "sx" | "tabIndex" | "disabled" | "action" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef" | "expandIcon"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme>, {}, {}>;
21
+ export declare const AccordionSummaryHeaderSection: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, {}>;
22
+ export declare const AccordionActionsStyled: import("@emotion/styled").StyledComponent<import("@mui/material/AccordionActions/AccordionActions").AccordionActionsProps & import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme>, {}, {}>;
@@ -0,0 +1,38 @@
1
+ import Accordion from '@mui/material/Accordion/Accordion';
2
+ import AccordionActions from '@mui/material/AccordionActions/AccordionActions';
3
+ import AccordionSummary from '@mui/material/AccordionSummary/AccordionSummary';
4
+ import { styled } from '@mui/material/styles';
5
+ export const AccordionStyled = styled(Accordion)(({ theme }) => ({
6
+ overflow: 'hidden',
7
+ border: '1px solid transparent',
8
+ background: '#ffffff',
9
+ borderRadius: '0px 0px 3px 3px',
10
+ margin: 0,
11
+ '&:before': {
12
+ content: 'unset',
13
+ },
14
+ '&.Mui-expanded': {
15
+ margin: 0,
16
+ border: `1px solid ${theme.palette.divider}`,
17
+ },
18
+ }));
19
+ export const AccordionSummaryStyled = styled(AccordionSummary)(() => ({
20
+ background: '#FBFBFB',
21
+ '&.Mui-expanded': {
22
+ minHeight: 'unset',
23
+ },
24
+ '& .MuiAccordionSummary-content': {
25
+ display: 'flex',
26
+ flexDirection: 'column',
27
+ },
28
+ '.MuiAccordionSummary-content.Mui-expanded': {
29
+ margin: '12px 0',
30
+ },
31
+ }));
32
+ export const AccordionSummaryHeaderSection = styled('section')(() => ({
33
+ display: 'flex',
34
+ flexDirection: 'column',
35
+ }));
36
+ export const AccordionActionsStyled = styled(AccordionActions)(({ theme }) => ({
37
+ borderTop: `1px solid ${theme.palette.divider}`,
38
+ }));
@@ -0,0 +1,5 @@
1
+ /// <reference types="react" />
2
+ import type { ActionMenuProps } from './type';
3
+ export type Timers = 'days' | 'hours' | 'minutes';
4
+ declare function ActionMenu({ anchorEl, initialAmount, options, onConfirm, handleClose, currency, isCheckMarkHighlighted }: ActionMenuProps): import("react").ReactPortal;
5
+ export default ActionMenu;
@@ -0,0 +1,101 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import { useState, useEffect, useRef } from 'react';
3
+ import { useTranslation } from 'react-i18next';
4
+ import { createPortal } from 'react-dom';
5
+ import { blueCheckIcon, greyCheckIcon, greyCrossIcon, redCloseIcon, warningInfoIcon } from '../../constants/index.js';
6
+ import { currencyConfig, formatCurrencyWithInput, intlCurrency } from '../../utils/index.js';
7
+ import { CurrencyCodes } from '../../types/index.js';
8
+ import ActionMenuDropDown from './ActionMenuDropDown';
9
+ import ActionMenuItem from './ActionMenuItem';
10
+ import { StyledPopover, Container, FirstContainer, StyledRowOfFirstContainer, StyledSecondRowOfFirstContainer, StyledWarning, StyledWarningInfoIcon, SecondContainer, IconContainer, StyledIcons, } from './style';
11
+ function ActionMenu({ anchorEl, initialAmount, options, onConfirm, handleClose, currency, isCheckMarkHighlighted }) {
12
+ var _a;
13
+ const { t } = useTranslation();
14
+ const [amount, setAmount] = useState(initialAmount === null || initialAmount === void 0 ? void 0 : initialAmount.toString());
15
+ const [menuAnchor, setMenuAnchor] = useState();
16
+ const [warningMessage, setWarningMessage] = useState('');
17
+ const actionMenuRef = useRef(null);
18
+ const [showDropDown, setShowDropDown] = useState(false);
19
+ const [selectedCurrency, setSelectedCurrency] = useState(currency);
20
+ const isRefundInProcess = false;
21
+ const [focusInput, setFocusInput] = useState(false);
22
+ const [crossIcon, setCrossIcon] = useState(greyCrossIcon);
23
+ const [tickIcon, setTickIcon] = useState(greyCheckIcon);
24
+ const inputFocusRef = useRef();
25
+ const closeDropdown = () => {
26
+ setMenuAnchor(undefined);
27
+ setShowDropDown(false);
28
+ };
29
+ useEffect(() => {
30
+ var _a;
31
+ (_a = inputFocusRef.current) === null || _a === void 0 ? void 0 : _a.focus();
32
+ }, [focusInput]);
33
+ const closeDropDownWhenOptionSelected = () => {
34
+ closeDropdown();
35
+ setFocusInput((prev) => !prev);
36
+ };
37
+ const open = Boolean(anchorEl);
38
+ const toggleDropDown = (event) => {
39
+ setShowDropDown((prev) => !prev);
40
+ setMenuAnchor(event.currentTarget);
41
+ };
42
+ const selectedAmount = (_a = options === null || options === void 0 ? void 0 : options.find((option) => option.currency === selectedCurrency)) === null || _a === void 0 ? void 0 : _a.value;
43
+ const formattedCharge = intlCurrency(selectedAmount || 0, selectedCurrency);
44
+ const maxErrorMessage = `${t('maxAllowed')} ${formattedCharge}`;
45
+ const minErrorMessage = `${t('minAllowed')} ${formatCurrencyWithInput(0.1, selectedCurrency || CurrencyCodes.KWD)}`;
46
+ const onAmountChange = (value) => {
47
+ if (Number.isNaN(Number(value))) {
48
+ setAmount('0');
49
+ }
50
+ if (parseFloat(value || '0') > initialAmount) {
51
+ setWarningMessage(maxErrorMessage);
52
+ }
53
+ else if (parseFloat(value || '0') < 0.1 && value !== undefined) {
54
+ setWarningMessage(minErrorMessage);
55
+ }
56
+ else {
57
+ setWarningMessage('');
58
+ }
59
+ setAmount(value);
60
+ };
61
+ const handleSelectOption = (optionCharge, optionCurrency) => {
62
+ const chargeString = formatCurrencyWithInput(optionCharge || 0, optionCurrency || CurrencyCodes.KWD);
63
+ setAmount(chargeString);
64
+ setSelectedCurrency(optionCurrency || selectedCurrency);
65
+ };
66
+ const closeAllActions = (e) => {
67
+ setMenuAnchor(undefined);
68
+ setShowDropDown(false);
69
+ handleClose(e);
70
+ };
71
+ const handleHoveringCheckIcons = () => {
72
+ setTickIcon(blueCheckIcon);
73
+ };
74
+ const handleUnHoveringCheckIcons = () => {
75
+ setTickIcon(greyCheckIcon);
76
+ };
77
+ const handleCloseMenu = (e) => {
78
+ closeAllActions(e);
79
+ };
80
+ const handleCloseAllExceptOptionMenu = () => {
81
+ closeAllActions();
82
+ };
83
+ const handleHoveringCrossIcons = () => {
84
+ setCrossIcon(redCloseIcon);
85
+ };
86
+ const handleUnHoveringCrossIcons = () => {
87
+ setCrossIcon(greyCrossIcon);
88
+ };
89
+ const handleAction = () => {
90
+ onConfirm === null || onConfirm === void 0 ? void 0 : onConfirm(Number(amount), selectedCurrency);
91
+ handleCloseMenu();
92
+ };
93
+ const isCheckButtonDisabled = !!warningMessage || !amount;
94
+ return createPortal(_jsx(StyledPopover, Object.assign({ id: "styled-popover", open: open, anchorEl: anchorEl, style: { backgroundColor: 'transparent', zIndex: 3000 }, "aria-labelledby": "modal-modal-title", "aria-describedby": "modal-modal-description", anchorOrigin: {
95
+ vertical: 'top',
96
+ horizontal: -234,
97
+ }, ref: actionMenuRef, onClose: (e) => {
98
+ handleCloseMenu(e);
99
+ } }, { children: _jsxs(Container, Object.assign({ showWarning: !!warningMessage }, { children: [_jsxs(FirstContainer, { children: [_jsxs(StyledRowOfFirstContainer, Object.assign({ showWarning: !!warningMessage, showDropDown: showDropDown }, { children: [_jsx(ActionMenuItem, { showWarning: !!warningMessage, selectedCurrency: selectedCurrency, onAmountChange: onAmountChange, amount: amount, currencyConfig: currencyConfig, toggleDropDown: toggleDropDown, showDropDown: !showDropDown, showDropdownIcon: ((options === null || options === void 0 ? void 0 : options.length) || 0) > 1 }), _jsx(ActionMenuDropDown, { showDropDown: showDropDown, menuAnchor: menuAnchor, selectedCurrency: selectedCurrency, closeDropdown: closeDropDownWhenOptionSelected, options: options !== null && options !== void 0 ? options : [], handleSelectOption: handleSelectOption })] })), !!warningMessage && (_jsxs(StyledSecondRowOfFirstContainer, { children: [_jsx(StyledWarningInfoIcon, { src: warningInfoIcon, alt: "info" }), _jsx(StyledWarning, { children: warningMessage })] }))] }), _jsxs(SecondContainer, { children: [_jsx(IconContainer, Object.assign({ onMouseLeave: handleUnHoveringCrossIcons, onMouseEnter: handleHoveringCrossIcons, warning: true, role: "button", onClick: handleCloseAllExceptOptionMenu }, { children: _jsx(StyledIcons, { isRefundInProcess: isRefundInProcess, src: crossIcon, alt: "Cross icon" }) })), _jsx(IconContainer, Object.assign({ onMouseLeave: handleUnHoveringCheckIcons, onMouseEnter: handleHoveringCheckIcons, isRefundInProcess: isRefundInProcess, disabled: isCheckButtonDisabled, role: "button", onClick: handleAction, isHighlighted: isCheckMarkHighlighted }, { children: _jsx(StyledIcons, { src: tickIcon, alt: "Check icon" }) }))] })] })) })), document.body);
100
+ }
101
+ export default ActionMenu;
@@ -0,0 +1,16 @@
1
+ import { CurrencyCodes } from '../../types/index.js';
2
+ interface IOptions {
3
+ name: string;
4
+ value?: number;
5
+ currency?: string;
6
+ }
7
+ interface ActionMenuDropDownProps {
8
+ menuAnchor: (EventTarget & Element) | undefined;
9
+ showDropDown: boolean;
10
+ selectedCurrency: CurrencyCodes;
11
+ options: IOptions[];
12
+ closeDropdown: () => void;
13
+ handleSelectOption?: (optionCharge?: number, optionCurrency?: CurrencyCodes) => void;
14
+ }
15
+ declare function ActionMenuDropDown({ menuAnchor, showDropDown, selectedCurrency, options, closeDropdown, handleSelectOption }: ActionMenuDropDownProps): import("react/jsx-runtime").JSX.Element | null;
16
+ export default ActionMenuDropDown;
@@ -0,0 +1,23 @@
1
+ import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
2
+ import { useTranslation } from 'react-i18next';
3
+ import { getCurrencyCodeFlag, intlCurrency } from '../../utils/index.js';
4
+ import { EnglishAmount, StyledCurrency, StyledIconRowContainer, StyledDropDownContainer, StyledDropdown, StyledFlag, StyledMenuItem, StyledTextAmount, DropDownChargeGapColumn, } from './style';
5
+ const Menu = ({ selectedCurrency, option, closeDropdown, handleSelectOption }) => {
6
+ var _a, _b, _c;
7
+ const { t } = useTranslation();
8
+ return (_jsxs(StyledMenuItem, Object.assign({ onClick: () => {
9
+ if (handleSelectOption) {
10
+ handleSelectOption(option.value, option === null || option === void 0 ? void 0 : option.currency);
11
+ }
12
+ closeDropdown();
13
+ } }, { children: [_jsx(EnglishAmount, Object.assign({ showBottomPadding: true, showWarning: false }, { children: t(option.name) })), _jsxs(DropDownChargeGapColumn, { children: [_jsxs(StyledIconRowContainer, Object.assign({ marginRightAuto: true }, { children: [_jsx(StyledFlag, { src: getCurrencyCodeFlag((_a = option === null || option === void 0 ? void 0 : option.currency) !== null && _a !== void 0 ? _a : selectedCurrency), alt: `${option === null || option === void 0 ? void 0 : option.currency} flag` }), _jsx(StyledCurrency, { children: (_b = option === null || option === void 0 ? void 0 : option.currency) !== null && _b !== void 0 ? _b : selectedCurrency })] })), _jsx(StyledTextAmount, Object.assign({ showWarning: false }, { children: intlCurrency(option.value || 0, (_c = option === null || option === void 0 ? void 0 : option.currency) !== null && _c !== void 0 ? _c : selectedCurrency) }))] })] })));
14
+ };
15
+ function ActionMenuDropDown({ menuAnchor, showDropDown, selectedCurrency, options, closeDropdown, handleSelectOption }) {
16
+ if (options.length <= 1)
17
+ return null;
18
+ return (_jsx(StyledDropdown, Object.assign({ open: showDropDown, anchorEl: menuAnchor, anchorOrigin: {
19
+ vertical: 18,
20
+ horizontal: -76,
21
+ }, style: { backgroundColor: 'transparent', zIndex: 4000, padding: 0, margin: 0 }, onClose: closeDropdown }, { children: _jsx(StyledDropDownContainer, { children: options.map((option) => (_jsx(_Fragment, { children: Menu({ selectedCurrency, option, closeDropdown, handleSelectOption }) }))) }) })));
22
+ }
23
+ export default ActionMenuDropDown;
@@ -0,0 +1,16 @@
1
+ import { SyntheticEvent } from 'react';
2
+ import { CurrencyCodes } from '../../types/index.js';
3
+ interface ActionMenuItemProps {
4
+ showWarning?: boolean;
5
+ selectedCurrency: CurrencyCodes;
6
+ onAmountChange: (value?: string) => void;
7
+ amount: string | undefined;
8
+ currencyConfig: Record<string, number>;
9
+ toggleDropDown: (event: SyntheticEvent) => void;
10
+ showDropDown: boolean;
11
+ showDropdownIcon: boolean;
12
+ disabled?: boolean;
13
+ isLoading?: boolean;
14
+ }
15
+ declare function ActionMenuItem({ showWarning, selectedCurrency, onAmountChange, amount, currencyConfig, toggleDropDown, showDropDown, showDropdownIcon, disabled, isLoading, }: ActionMenuItemProps): import("react/jsx-runtime").JSX.Element;
16
+ export default ActionMenuItem;
@@ -0,0 +1,20 @@
1
+ import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
2
+ import { useRef } from 'react';
3
+ import { useTranslation } from 'react-i18next';
4
+ import { blueDropdownArrowIcon, greyDropdownIcon } from '../../constants/index.js';
5
+ import { getCurrencyCodeFlag } from '../../utils/index.js';
6
+ import { EnglishAmount, Charge, StyledIconRowContainer, StyledFlag, StyledCurrency, StyledDropDownIcon, StyledAmount, StyledMissingDiv, } from './style';
7
+ import Skeleton from '../Skeleton';
8
+ import CurrencyIcon from '../CurrencyIcon';
9
+ function ActionMenuItem({ showWarning, selectedCurrency, onAmountChange, amount, currencyConfig, toggleDropDown, showDropDown, showDropdownIcon, disabled, isLoading, }) {
10
+ var _a, _b;
11
+ const { t } = useTranslation();
12
+ const iconRef = useRef(null);
13
+ const onClickMissingDiv = () => {
14
+ if (iconRef.current) {
15
+ iconRef.current.click();
16
+ }
17
+ };
18
+ return (_jsxs(_Fragment, { children: [_jsxs(Charge, { children: [_jsx(EnglishAmount, Object.assign({ showBottomPadding: true, showWarning: showWarning }, { children: t('amount') })), _jsxs(StyledIconRowContainer, Object.assign({ limited: true, paddingTop: true, onClick: onClickMissingDiv }, { children: [_jsx(StyledFlag, { src: getCurrencyCodeFlag(selectedCurrency), alt: `${selectedCurrency} flag` }), _jsx(StyledCurrency, { children: _jsx(CurrencyIcon, { currency: selectedCurrency }) }), !showWarning && showDropdownIcon && (_jsx(StyledDropDownIcon, { src: !showDropDown ? blueDropdownArrowIcon : greyDropdownIcon, alt: "drop-down icon", currencyPadding: true }))] }))] }), _jsx(StyledMissingDiv, { ref: iconRef, onClick: toggleDropDown }), isLoading ? (_jsx(Skeleton, { variant: "text", width: "100%", height: "100%" })) : (_jsx(StyledAmount, { disabled: disabled, placeholder: currencyConfig[selectedCurrency] ? '0.000' : '0.00', onValueChange: onAmountChange, value: amount, decimalsLimit: (_a = currencyConfig[selectedCurrency]) !== null && _a !== void 0 ? _a : 2, showWarning: showWarning || false, decimalScale: (_b = currencyConfig[selectedCurrency]) !== null && _b !== void 0 ? _b : 2, autoFocus: true }))] }));
19
+ }
20
+ export default ActionMenuItem;
@@ -0,0 +1,5 @@
1
+ import ActionMenu from './ActionMenu';
2
+ export { default as ActionMenuItem } from './ActionMenuItem';
3
+ export { default as ActionMenuDropDown } from './ActionMenuDropDown';
4
+ export type { ActionMenuProps } from './type';
5
+ export default ActionMenu;
@@ -0,0 +1,4 @@
1
+ import ActionMenu from './ActionMenu';
2
+ export { default as ActionMenuItem } from './ActionMenuItem';
3
+ export { default as ActionMenuDropDown } from './ActionMenuDropDown';
4
+ export default ActionMenu;
@@ -0,0 +1,80 @@
1
+ /// <reference types="react" />
2
+ export declare const Container: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme> & {
3
+ showWarning: boolean;
4
+ }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
5
+ export declare const FirstContainer: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
6
+ export declare const SecondContainer: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
7
+ export declare const StyledRowOfFirstContainer: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme> & {
8
+ showWarning: boolean;
9
+ showDropDown: boolean;
10
+ }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
11
+ export declare const StyledSecondRowOfFirstContainer: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
12
+ export declare const StyledWarning: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, {}>;
13
+ export declare const StyledWarningInfoIcon: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>, {}>;
14
+ export declare const Charge: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
15
+ export declare const DropDownChargeGapColumn: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
16
+ export declare const StyledAmount: import("@emotion/styled").StyledComponent<Pick<Omit<import("react").DetailedHTMLProps<import("react").InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref"> & {
17
+ ref?: ((instance: HTMLInputElement | null) => void) | import("react").RefObject<HTMLInputElement> | null | undefined;
18
+ }, "width" | "height" | "hidden" | "type" | "style" | "color" | "content" | "translate" | "children" | "ref" | "form" | "slot" | "title" | "pattern" | "key" | "defaultChecked" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "exportparts" | "part" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "list" | "value" | "src" | "alt" | "size" | "multiple" | "accept" | "autoComplete" | "capture" | "checked" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "max" | "min" | "minLength" | "name" | "readOnly" | "required"> & {
19
+ allowDecimals?: boolean | undefined;
20
+ allowNegativeValue?: boolean | undefined;
21
+ id?: string | undefined;
22
+ maxLength?: number | undefined;
23
+ className?: string | undefined;
24
+ customInput?: import("react").ElementType | undefined;
25
+ decimalsLimit?: number | undefined;
26
+ decimalScale?: number | undefined;
27
+ defaultValue?: string | number | undefined;
28
+ disabled?: boolean | undefined;
29
+ fixedDecimalLength?: number | undefined;
30
+ onValueChange?: ((value: string | undefined, name?: string | undefined, values?: import("react-currency-input-field").CurrencyInputOnChangeValues | undefined) => void) | undefined;
31
+ placeholder?: string | undefined;
32
+ prefix?: string | undefined;
33
+ suffix?: string | undefined;
34
+ step?: number | undefined;
35
+ decimalSeparator?: string | undefined;
36
+ groupSeparator?: string | undefined;
37
+ disableGroupSeparators?: boolean | undefined;
38
+ disableAbbreviations?: boolean | undefined;
39
+ intlConfig?: import("react-currency-input-field").IntlConfig | undefined;
40
+ transformRawValue?: ((rawValue: string) => string) | undefined;
41
+ formatValueOnBlur?: boolean | undefined;
42
+ } & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme> & {
43
+ showWarning: boolean;
44
+ }, {}, {}>;
45
+ export declare const StyledTextAmount: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme> & {
46
+ showWarning: boolean;
47
+ }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, {}>;
48
+ export declare const EnglishAmount: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme> & {
49
+ showWarning?: boolean | undefined;
50
+ showBottomPadding?: boolean | undefined;
51
+ autoMargin?: boolean | undefined;
52
+ }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, {}>;
53
+ export declare const FlexContainer: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
54
+ export declare const StyledIconRowContainer: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme> & import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & {
55
+ limited?: boolean | undefined;
56
+ paddingTop?: boolean | undefined;
57
+ marginRightAuto?: boolean | undefined;
58
+ }, {}, {}>;
59
+ export declare const StyledCurrency: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, {}>;
60
+ export declare const StyledMissingDiv: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
61
+ export declare const StyledFlag: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>, {}>;
62
+ export declare const StyledPopover: import("@emotion/styled").StyledComponent<import("@mui/material").PopoverProps & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
63
+ export declare const IconContainer: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme> & {
64
+ disabled?: boolean | undefined;
65
+ isRefundInProcess?: boolean | undefined;
66
+ warning?: boolean | undefined;
67
+ isHighlighted?: boolean | undefined;
68
+ }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
69
+ export declare const StyledIcons: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme> & {
70
+ isRefundInProcess?: boolean | undefined;
71
+ }, import("react").DetailedHTMLProps<import("react").ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>, {}>;
72
+ export declare const StyledDropdown: import("@emotion/styled").StyledComponent<import("@mui/material").PopoverProps & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
73
+ export declare const StyledDropDownContainer: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme> & {
74
+ showDaysMenu?: boolean | undefined;
75
+ }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
76
+ export declare const StyledMenuItem: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
77
+ export declare const StyledDropDownIcon: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme> & {
78
+ spaceFromBottom?: boolean | undefined;
79
+ currencyPadding?: boolean | undefined;
80
+ }, import("react").DetailedHTMLProps<import("react").ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>, {}>;