@stokr/components-library 0.6.7 → 0.6.8

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 (560) hide show
  1. package/.vscode/settings.json +3 -0
  2. package/CHANGELOG.md +7 -0
  3. package/Dockerfile +20 -0
  4. package/build/asset-manifest.json +45 -0
  5. package/build/favicon.ico +0 -0
  6. package/build/index.html +1 -0
  7. package/build/logo192.png +0 -0
  8. package/build/logo512.png +0 -0
  9. package/build/manifest.json +25 -0
  10. package/build/robots.txt +3 -0
  11. package/build/static/css/main.e30a9d15.css +15 -0
  12. package/build/static/css/main.e30a9d15.css.map +1 -0
  13. package/build/static/js/main.3e5959c7.js +3 -0
  14. package/build/static/js/main.3e5959c7.js.LICENSE.txt +164 -0
  15. package/build/static/js/main.3e5959c7.js.map +1 -0
  16. package/build/static/media/Ionicons.4e528d6445ca1974c313.woff +0 -0
  17. package/build/static/media/Ionicons.643c37f102b41f7f90c3.woff2 +0 -0
  18. package/build/static/media/Ionicons.98b7d3182f652f021bc3.ttf +0 -0
  19. package/build/static/media/OpenSans-Bold.9bea22b57dc165ed4382.ttf +0 -0
  20. package/build/static/media/OpenSans-Bold.a750292d6a0b5a760679.woff +0 -0
  21. package/build/static/media/OpenSans-Bold.cbfc24090ef8bacab132.woff2 +0 -0
  22. package/build/static/media/OpenSans-ExtraBold.21e493d43617de76dbc7.woff2 +0 -0
  23. package/build/static/media/OpenSans-ExtraBold.81f3ef07b7952e249da1.woff +0 -0
  24. package/build/static/media/OpenSans-ExtraBold.bcb6531cf820152b7538.ttf +0 -0
  25. package/build/static/media/OpenSans-Light.179ef2df02cb0b68c9fd.woff2 +0 -0
  26. package/build/static/media/OpenSans-Light.55053cc0a8e6482eca64.ttf +0 -0
  27. package/build/static/media/OpenSans-Light.c6a4bc1bd034d6303053.woff +0 -0
  28. package/build/static/media/OpenSans-Regular.3caa0d4f9b7d58668066.woff2 +0 -0
  29. package/build/static/media/OpenSans-Regular.9ec738fbb66068dc1ca7.woff +0 -0
  30. package/build/static/media/OpenSans-Regular.d97d7385fe8771611848.ttf +0 -0
  31. package/build/static/media/OpenSans-SemiBold.311956ded96d3fd2813d.woff2 +0 -0
  32. package/build/static/media/OpenSans-SemiBold.39f5961b2d3eb4aa5bf5.woff +0 -0
  33. package/build/static/media/OpenSans-SemiBold.d2b1865643b98c0e8b54.ttf +0 -0
  34. package/build/static/media/address-refreshing.5fbb0cc56c384480118a.gif +0 -0
  35. package/build/static/media/arrow-down-black.fe92da3ac6ed16b45bf57713df82cea2.svg +21 -0
  36. package/build/static/media/avatar-placeholder.488a33b3f080a43e0d43.png +0 -0
  37. package/build/static/media/icomoon.2640959b1f9381cde047.eot +0 -0
  38. package/build/static/media/icomoon.35bce49b15feeae93572c36a08feecd9.svg +47 -0
  39. package/build/static/media/icomoon.4c3c428d0ce82f840710.woff +0 -0
  40. package/build/static/media/icomoon.a1d7666a48f976227722.ttf +0 -0
  41. package/build/static/media/lemonway.33e88c3a49e7ac73e3a9.png +0 -0
  42. package/build/static/media/sicos-logo.7fa3ac9d583b52c3987da529da67cb15.svg +1 -0
  43. package/build/static/media/slick.2630a3e3eab21c607e21.svg +14 -0
  44. package/build/static/media/slick.295183786cd8a1389865.woff +0 -0
  45. package/build/static/media/slick.a4e97f5a2a64f0ab1323.eot +0 -0
  46. package/build/static/media/slick.c94f7671dcc99dce43e2.ttf +0 -0
  47. package/build/static/media/whales.7a1e9453670d08b8b76a.png +0 -0
  48. package/buildpushndeploy.sh +9 -0
  49. package/devops/Dockerfile +20 -0
  50. package/devops/Jenkinsfile +56 -0
  51. package/devops/ansible/docker-stack-deploy.yml +32 -0
  52. package/devops/ansible/hosts.ini +7 -0
  53. package/devops/docker-compose.yml +25 -0
  54. package/dist/api/StokrWeb3.js +184 -0
  55. package/dist/api/fetchData.js +76 -0
  56. package/dist/api/fetchDataPublic.js +65 -0
  57. package/dist/components/AccountBalance/AccountBalance.js +53 -0
  58. package/dist/components/AccountBalance/AccountBalance.stories.js +88 -0
  59. package/dist/components/AccountBalance/AccountBalance.styles.js +40 -0
  60. package/dist/components/AdminDashboard/Table/Table.js +170 -0
  61. package/dist/components/AdminDashboard/Table/Table.styles.js +79 -0
  62. package/dist/components/AgreementItem/AgreementItem.js +51 -0
  63. package/dist/components/AgreementItem/AgreementItem.stories.js +109 -0
  64. package/dist/components/AgreementItem/AgreementItem.styles.js +35 -0
  65. package/dist/components/AnalyticGraphs/Analytic.js +781 -0
  66. package/dist/components/AnalyticGraphs/Analytic.styles.js +37 -0
  67. package/dist/components/BackButton/BackButton.js +32 -0
  68. package/dist/components/BackButton/BackButton.stories.js +35 -0
  69. package/dist/components/BackButton/BackButton.styles.js +76 -0
  70. package/dist/components/Background/Background.js +45 -0
  71. package/dist/components/Background/Background.stories.js +78 -0
  72. package/dist/components/Background/Background.styles.js +76 -0
  73. package/dist/components/BarChart/BarChart.js +304 -0
  74. package/dist/components/BarChart/BarChart.stories.js +47 -0
  75. package/dist/components/BarChart/BarChart.styles.js +33 -0
  76. package/dist/components/BarChartLegend/BarChartLegend.js +106 -0
  77. package/dist/components/BarChartLegend/BarChartLegend.styles.js +26 -0
  78. package/dist/components/BasicTable/BasicTable.js +32 -0
  79. package/dist/components/BasicTable/BasicTable.stories.js +63 -0
  80. package/dist/components/BasicTable/BasicTable.styles.js +52 -0
  81. package/dist/components/Button/Button.stories.js +79 -0
  82. package/dist/components/Button/Button.styles.js +83 -0
  83. package/dist/components/ButtonContainer/ButtonContainer.styles.js +18 -0
  84. package/dist/components/CapitalRaisedSummary/CapitalRaisedSummery.stories.js +45 -0
  85. package/dist/components/CapitalRaisedSummary/CaptialRaisedSummary.js +34 -0
  86. package/dist/components/CapitalRaisedSummary/CaptialRaisedSummary.styles.js +34 -0
  87. package/dist/components/ChartBox/ChartBox.js +44 -0
  88. package/dist/components/ChartBox/ChartBox.stories.js +20 -0
  89. package/dist/components/ChartBox/ChartBox.styles.js +33 -0
  90. package/dist/components/ChartBox/ChartBoxDistribution.js +30 -0
  91. package/dist/components/ChartBox/ChartBoxDistribution.stories.js +21 -0
  92. package/dist/components/ChartLegend/ChartLegend.js +62 -0
  93. package/dist/components/ChartLegend/ChartLegend.stories.js +87 -0
  94. package/dist/components/ChartLegend/ChartLegend.styles.js +64 -0
  95. package/dist/components/Checkbox/Checkbox.js +116 -0
  96. package/dist/components/Checkbox/Checkbox.stories.js +92 -0
  97. package/dist/components/Checkbox/Checkbox.styles.js +45 -0
  98. package/dist/components/Checklist/UserChecklist.js +284 -0
  99. package/dist/components/Checklist/UserChecklist.stories.js +143 -0
  100. package/dist/components/ComponentScroll/ComponentScroll.js +100 -0
  101. package/dist/components/ComponentScroll/ComponentScroll.stories.js +102 -0
  102. package/dist/components/ComponentScroll/ComponentScroll.styles.js +66 -0
  103. package/dist/components/ComponentWrapper/ComponentWrapper.styles.js +68 -0
  104. package/dist/components/CryptoAddress/ComponentWrap.js +37 -0
  105. package/dist/components/CryptoAddress/CryptoAddress.js +145 -0
  106. package/dist/components/CryptoAddress/CryptoAddress.stories.js +173 -0
  107. package/dist/components/CryptoAddress/CryptoAddress.styles.js +186 -0
  108. package/dist/components/CryptoAddress/RadioWrap.js +49 -0
  109. package/dist/components/CryptoAddressDetails/CryptoAddressDetails.js +54 -0
  110. package/dist/components/CryptoAddressDetails/CryptoAddressDetails.stories.js +74 -0
  111. package/dist/components/CryptoAddressDetails/CryptoAddressDetails.styles.js +67 -0
  112. package/dist/components/CryptoAddressWrapper/CryptoAddressWrapper.js +40 -0
  113. package/dist/components/CryptoAddressWrapper/CryptoAddressWrapper.styles.js +59 -0
  114. package/dist/components/DonutChart/DonutChart.js +182 -0
  115. package/dist/components/DonutChart/DonutChart.stories.js +40 -0
  116. package/dist/components/DonutChart/DonutChart.styles.js +50 -0
  117. package/dist/components/DoubleButton/DoubleButton.styles.js +22 -0
  118. package/dist/components/ErrorMessage/ErrorMessage.styles.js +15 -0
  119. package/dist/components/FAQ/FAQ.js +75 -0
  120. package/dist/components/FAQ/FAQ.stories.js +74 -0
  121. package/dist/components/FAQ/FAQ.styles.js +48 -0
  122. package/dist/components/Footer/Footer.js +66 -0
  123. package/dist/components/Footer/Footer.stories.js +54 -0
  124. package/dist/components/Footer/Footer.styles.js +74 -0
  125. package/dist/components/Footer/FooterLayout.js +125 -0
  126. package/dist/components/Footer/FooterLayout.stories.js +31 -0
  127. package/dist/components/Footer/FooterMenu.js +117 -0
  128. package/dist/components/Footer/FooterMenu.stories.js +121 -0
  129. package/dist/components/Footer/FooterMenu.styles.js +80 -0
  130. package/dist/components/Footer/index.js +27 -0
  131. package/dist/components/Footer/lemonway.png +0 -0
  132. package/dist/components/Footer/sicos-logo.svg +1 -0
  133. package/dist/components/ForgotPasswordModal/ForgotPasswordModal.js +127 -0
  134. package/dist/components/ForgotPasswordModal/ForgotPasswordModal.stories.js +42 -0
  135. package/dist/components/Form/Form.js +68 -0
  136. package/dist/components/Form/Form.stories.js +35 -0
  137. package/dist/components/Form/Form.styles.js +59 -0
  138. package/dist/components/FullscreenCard/FullscreenCard.styles.js +32 -0
  139. package/dist/components/Grid/Grid.styles.js +68 -0
  140. package/dist/components/Header/Header.js +457 -0
  141. package/dist/components/Header/Header.stories.js +190 -0
  142. package/dist/components/Header/Header.styles.js +182 -0
  143. package/dist/components/Icon/Icon.style.js +71 -0
  144. package/dist/components/InfoIcon/InfoIcon.js +50 -0
  145. package/dist/components/InfoIcon/InfoIcon.stories.js +52 -0
  146. package/dist/components/InfoIcon/InfoIcon.styles.js +31 -0
  147. package/dist/components/InfoPanel/InfoPanel.js +146 -0
  148. package/dist/components/Input/DatePickerInput.js +85 -0
  149. package/dist/components/Input/DatePickerInput.stories.js +91 -0
  150. package/dist/components/Input/DatePickerInput.styles.js +29 -0
  151. package/dist/components/Input/Input.js +108 -0
  152. package/dist/components/Input/Input.stories.js +148 -0
  153. package/dist/components/Input/Input.styles.js +53 -0
  154. package/dist/components/Input/InputPassword.js +151 -0
  155. package/dist/components/Input/InputPassword.stories.js +85 -0
  156. package/dist/components/Input/InputPassword.styles.js +80 -0
  157. package/dist/components/Input/RangeInput.js +60 -0
  158. package/dist/components/Input/RangeInput.stories.js +59 -0
  159. package/dist/components/Input/RangeInput.styles.js +53 -0
  160. package/dist/components/Input/Select.js +148 -0
  161. package/dist/components/Input/Select.stories.js +142 -0
  162. package/dist/components/Input/Select.styles.js +65 -0
  163. package/dist/components/InvestCalculator/InvestCalculator.js +367 -0
  164. package/dist/components/InvestCalculator/InvestCalculator.stories.js +137 -0
  165. package/dist/components/InvestCalculator/InvestCalculator.styles.js +66 -0
  166. package/dist/components/InvestmentStat/InvestmentStat.js +40 -0
  167. package/dist/components/InvestmentStat/InvestmentStat.stories.js +56 -0
  168. package/dist/components/InvestmentStat/InvestmentStat.styles.js +43 -0
  169. package/dist/components/KYCFlow/BasicInfo.js +489 -0
  170. package/dist/components/KYCFlow/Confirmation.js +51 -0
  171. package/dist/components/KYCFlow/DocumentFileUpload.js +276 -0
  172. package/dist/components/KYCFlow/DocumentScan.js +74 -0
  173. package/dist/components/KYCFlow/DocumentScanUpload.js +258 -0
  174. package/dist/components/KYCFlow/DocumentSelect.js +148 -0
  175. package/dist/components/KYCFlow/DocumentSuccess.js +64 -0
  176. package/dist/components/KYCFlow/DocumentUpload.js +54 -0
  177. package/dist/components/KYCFlow/DocumentVerificationType.js +161 -0
  178. package/dist/components/KYCFlow/FaceScan.js +55 -0
  179. package/dist/components/KYCFlow/FaceScanRecognition.js +60 -0
  180. package/dist/components/KYCFlow/FaceScanSuccess.js +59 -0
  181. package/dist/components/KYCFlow/Terms.js +142 -0
  182. package/dist/components/KYCFlow/_styles.js +160 -0
  183. package/dist/components/KYCFlow/index.js +97 -0
  184. package/dist/components/KYCSelectBox/KYCSelectBox.styles.js +41 -0
  185. package/dist/components/LatestUpdate/LatestUpdate.js +51 -0
  186. package/dist/components/LatestUpdate/LatestUpdate.stories.js +62 -0
  187. package/dist/components/LatestUpdate/LatestUpdate.styles.js +71 -0
  188. package/dist/components/Layout/Layout-func-no-work.js +78 -0
  189. package/dist/components/Layout/Layout.js +103 -0
  190. package/dist/components/Layout/Layout.stories.js +67 -0
  191. package/dist/components/LearnMoreCarousel/LearnMoreCarousel.js +47 -0
  192. package/dist/components/LearnMoreCarousel/LearnMoreCarousel.stories.js +70 -0
  193. package/dist/components/LearnMoreCarousel/LearnMoreCarousel.styles.js +43 -0
  194. package/dist/components/LearnMorePage/LearnMore.js +255 -0
  195. package/dist/components/LearnMorePage/LearnMore.shared.styles.js +40 -0
  196. package/dist/components/LearnMorePage/LearnMore.stories.js +51 -0
  197. package/dist/components/LearnMorePage/LearnMore.styles.js +120 -0
  198. package/dist/components/LearnMorePage/LearnMoreExampleObject.js +87 -0
  199. package/dist/components/LearnMorePage/LearnMoreItem.js +75 -0
  200. package/dist/components/LearnMorePage/LearnMoreItem.stories.js +65 -0
  201. package/dist/components/LearnMorePage/LearnMoreItem.styles.js +87 -0
  202. package/dist/components/LearnMoreSection/LearnMore.js +199 -0
  203. package/dist/components/LearnMoreSection/LearnMore.stories.js +33 -0
  204. package/dist/components/LearnMoreSection/LearnMore.styles.js +73 -0
  205. package/dist/components/LearnMoreSection/LearnMoreItem.js +52 -0
  206. package/dist/components/LearnMoreSection/LearnMoreItem.stories.js +62 -0
  207. package/dist/components/LearnMoreSection/LearnMoreItem.styles.js +50 -0
  208. package/dist/components/LoginModal/LoginModal.js +163 -0
  209. package/dist/components/MainMenu/DynamicMainMenu.js +50 -0
  210. package/dist/components/MainMenu/MainMenu.js +262 -0
  211. package/dist/components/MainMenu/MainMenu.styles.js +124 -0
  212. package/dist/components/MatomoConnect/Matomo.js +485 -0
  213. package/dist/components/MatomoConnect/Matomo_fuckup.js +383 -0
  214. package/dist/components/MenuNav/MenuNav.styles.js +42 -0
  215. package/dist/components/Modal/Modal.js +135 -0
  216. package/dist/components/Modal/Modal.stories.js +82 -0
  217. package/dist/components/Modal/Modal.styles.js +140 -0
  218. package/dist/components/MultiProgressBar/MultiProgressBar.js +48 -0
  219. package/dist/components/MultiProgressBar/MultiProgressBar.stories.js +72 -0
  220. package/dist/components/MultiProgressBar/MultiProgressBar.styles.js +41 -0
  221. package/dist/components/Newsletter/Newsletter.js +139 -0
  222. package/dist/components/Newsletter/Newsletter.stories.js +19 -0
  223. package/dist/components/Newsletter/Newsletter.styles.js +83 -0
  224. package/dist/components/NotificationContext/NotificationContext.js +173 -0
  225. package/dist/components/NotificationContext/NotificationContext.stories.js +33 -0
  226. package/dist/components/NotificationCounter/NotificationCounter.styles.js +22 -0
  227. package/dist/components/Number/Number.js +35 -0
  228. package/dist/components/Number/Number.stories.js +41 -0
  229. package/dist/components/Number/Number.styles.js +20 -0
  230. package/dist/components/PageTransition/PageTransition.js +57 -0
  231. package/dist/components/Process/Process.stories.js +47 -0
  232. package/dist/components/Process/Process.styles.js +33 -0
  233. package/dist/components/ProfileBadge/ProfileBadge.js +53 -0
  234. package/dist/components/ProfileBadge/ProfileBadge.stories.js +48 -0
  235. package/dist/components/ProfileBadge/ProfileBadge.styles.js +32 -0
  236. package/dist/components/ProfileBox/ProfileBox.js +39 -0
  237. package/dist/components/ProfileBox/ProfileBox.stories.js +38 -0
  238. package/dist/components/ProfileBox/ProfileBox.styles.js +49 -0
  239. package/dist/components/ProfileHeader/ProfileHeader-CLb4.js +477 -0
  240. package/dist/components/ProfileHeader/ProfileHeader.js +330 -0
  241. package/dist/components/ProfileHeader/ProfileHeader.styles.js +87 -0
  242. package/dist/components/ProfileStat/ProfileStat.js +42 -0
  243. package/dist/components/ProfileStat/ProfileStat.stories.js +71 -0
  244. package/dist/components/ProfileStat/ProfileStat.styles.js +42 -0
  245. package/dist/components/ProofOfAddress/ProofOfAddress.styles.js +69 -0
  246. package/dist/components/ROI/ROI.js +312 -0
  247. package/dist/components/ROI/ROI.styles.js +63 -0
  248. package/dist/components/ROI/ROIChart.js +469 -0
  249. package/dist/components/ROI/ROIChart.styles.js +33 -0
  250. package/dist/components/ROI/ROIModal.js +91 -0
  251. package/dist/components/ROI/ROIScenarioBox.js +55 -0
  252. package/dist/components/ROI/ROIScenarioBox.styles.js +52 -0
  253. package/dist/components/Radio/Radio.js +68 -0
  254. package/dist/components/Radio/Radio.stories.js +76 -0
  255. package/dist/components/Radio/Radio.styles.js +31 -0
  256. package/dist/components/RefreshButton/RefreshButton.js +21 -0
  257. package/dist/components/RefreshButton/RefreshButton.stories.js +42 -0
  258. package/dist/components/RefreshButton/RefreshButton.styles.js +39 -0
  259. package/dist/components/RegisterAlgorand/AlgoAddressName.js +138 -0
  260. package/dist/components/RegisterAlgorand/AlgoAdressSelect.js +444 -0
  261. package/dist/components/RegisterAlgorand/AlgoConnectWallet.js +47 -0
  262. package/dist/components/RegisterAlgorand/AlgoSuccess.js +38 -0
  263. package/dist/components/RegisterAlgorand/Algorand.stories.js +78 -0
  264. package/dist/components/RegisterAlgorand/ChooseWallet.js +97 -0
  265. package/dist/components/RegisterAlgorand/SelectProject.js +90 -0
  266. package/dist/components/RegisterAlgorand/_styles.js +28 -0
  267. package/dist/components/RegisterAlgorand/flow.js +409 -0
  268. package/dist/components/RegisterAlgorand/flowWithMemo.js +410 -0
  269. package/dist/components/RegisterAlgorand/index.js +48 -0
  270. package/dist/components/RegisterConfirmModal/RegisterConfirmModal.js +40 -0
  271. package/dist/components/RegisterConfirmModal/RegisterConfirmModal.stories.js +33 -0
  272. package/dist/components/RegisterConfirmModal/RegisterConfirmModal.styles.js +16 -0
  273. package/dist/components/RegisterEthereum/EthAddressLedger.js +226 -0
  274. package/dist/components/RegisterEthereum/EthAddressMetamask.js +205 -0
  275. package/dist/components/RegisterEthereum/EthAddressName.js +135 -0
  276. package/dist/components/RegisterEthereum/EthConnectLedger.js +194 -0
  277. package/dist/components/RegisterEthereum/EthConnectMetamask.js +35 -0
  278. package/dist/components/RegisterEthereum/EthFinish.js +41 -0
  279. package/dist/components/RegisterEthereum/EthIntro.js +95 -0
  280. package/dist/components/RegisterEthereum/_styles.js +28 -0
  281. package/dist/components/RegisterEthereum/index.js +68 -0
  282. package/dist/components/RegisterLiquidSteps/RegisterLiquidSteps.js +106 -0
  283. package/dist/components/RegisterLiquidSteps/RegisterLiquidSteps.stories.js +66 -0
  284. package/dist/components/RegisterLiquidSteps/RegisterLiquidSteps.styles.js +48 -0
  285. package/dist/components/RegisterLiquidSteps/complete.js +37 -0
  286. package/dist/components/RegisterLiquidSteps/flow.js +197 -0
  287. package/dist/components/RegisterLiquidSteps/index.js +52 -0
  288. package/dist/components/RegisterLiquidSteps/register-liquid.js +240 -0
  289. package/dist/components/RegisterModal/RegisterModal.js +180 -0
  290. package/dist/components/RegisterModal/RegisterModal.stories.js +46 -0
  291. package/dist/components/RequestDataBox/RequestDataBox.js +31 -0
  292. package/dist/components/RequestDataBox/RequestDataBox.stories.js +40 -0
  293. package/dist/components/RequestDataBox/RequestDataBox.styles.js +31 -0
  294. package/dist/components/RiskQuestionnaire/RiskQuestionnaireContext.js +185 -0
  295. package/dist/components/RiskQuestionnaire/_styles.js +15 -0
  296. package/dist/components/SEO/SEO.js +71 -0
  297. package/dist/components/SEO/SEO.stories.js +64 -0
  298. package/dist/components/SectionTitle/SectionTitle.styles.js +15 -0
  299. package/dist/components/SideLine/SideLine.js +15 -0
  300. package/dist/components/SideLine/SideLine.stories.js +31 -0
  301. package/dist/components/SideLine/SideLine.styles.js +26 -0
  302. package/dist/components/SigningSubflow/SignSubAddressMetamask.js +137 -0
  303. package/dist/components/SigningSubflow/SignSubConnectLedger.js +150 -0
  304. package/dist/components/SigningSubflow/SignSubConnectMetamask.js +137 -0
  305. package/dist/components/SigningSubflow/SignSubIntro.js +54 -0
  306. package/dist/components/SigningSubflow/SignSubSendLedger.js +150 -0
  307. package/dist/components/SigningSubflow/SignSubSendMetamask.js +62 -0
  308. package/dist/components/SigningSubflow/SignSubTransactionLedger.js +161 -0
  309. package/dist/components/SigningSubflow/SignSubTransactionMetamask.js +166 -0
  310. package/dist/components/SigningSubflow/_styles.js +45 -0
  311. package/dist/components/SigningSubflow/index.js +74 -0
  312. package/dist/components/Slider/Slider.js +50 -0
  313. package/dist/components/Slider/Slider.stories.js +72 -0
  314. package/dist/components/Slider/Slider.styles.js +23 -0
  315. package/dist/components/SpanButton/SpanButton.styles.js +15 -0
  316. package/dist/components/StatusBadge/StatusBadge.styles.js +20 -0
  317. package/dist/components/StepController/StepController.js +111 -0
  318. package/dist/components/StepController/StepController.stories.js +63 -0
  319. package/dist/components/StepController/StepController.styles.js +26 -0
  320. package/dist/components/StepController/StepControllerContext.js +104 -0
  321. package/dist/components/StepController/StepControllerProgress.js +40 -0
  322. package/dist/components/StepController/StepControllerProgress.stories.js +52 -0
  323. package/dist/components/StepsProgress/StepsProgress.js +128 -0
  324. package/dist/components/StepsProgress/StepsProgress.stories.js +50 -0
  325. package/dist/components/StepsProgress/StepsProgress.styles.js +36 -0
  326. package/dist/components/StokrLoader/StokrLoader.js +32 -0
  327. package/dist/components/StokrLoader/media.js +27 -0
  328. package/dist/components/SvgIcons/AdminBadgeSvg.js +26 -0
  329. package/dist/components/SvgIcons/CameraSvg.js +36 -0
  330. package/dist/components/SvgIcons/CapsLockSvg.js +31 -0
  331. package/dist/components/SvgIcons/DocumentBackSvg.js +35 -0
  332. package/dist/components/SvgIcons/DocumentSmallSvg.js +61 -0
  333. package/dist/components/SvgIcons/DocumentSvg.js +38 -0
  334. package/dist/components/SvgIcons/Early.js +24 -0
  335. package/dist/components/SvgIcons/EthSvg.js +40 -0
  336. package/dist/components/SvgIcons/EurSvg.js +26 -0
  337. package/dist/components/SvgIcons/FaceScanIconSvg.js +31 -0
  338. package/dist/components/SvgIcons/FourSvg.js +21 -0
  339. package/dist/components/SvgIcons/Glassess.js +29 -0
  340. package/dist/components/SvgIcons/LogoSvg.js +24 -0
  341. package/dist/components/SvgIcons/OneSvg.js +23 -0
  342. package/dist/components/SvgIcons/PassportSvg.js +56 -0
  343. package/dist/components/SvgIcons/RefreshSvg.js +27 -0
  344. package/dist/components/SvgIcons/SocialFacebook.js +25 -0
  345. package/dist/components/SvgIcons/SocialInstagram.js +26 -0
  346. package/dist/components/SvgIcons/SocialLinkedIn.js +25 -0
  347. package/dist/components/SvgIcons/SocialMedium.js +25 -0
  348. package/dist/components/SvgIcons/SocialReddit.js +25 -0
  349. package/dist/components/SvgIcons/SocialTelegram.js +25 -0
  350. package/dist/components/SvgIcons/SocialTwitter.js +25 -0
  351. package/dist/components/SvgIcons/SocialYoutube.js +25 -0
  352. package/dist/components/SvgIcons/ThreeSvg.js +20 -0
  353. package/dist/components/SvgIcons/TwoSidedDocumentSvg.js +82 -0
  354. package/dist/components/SvgIcons/TwoSvg.js +23 -0
  355. package/dist/components/SvgIcons/UpdateDefaultSvg.js +29 -0
  356. package/dist/components/SvgIcons/UpdateHardSvg.js +25 -0
  357. package/dist/components/SvgIcons/UpdateSoftSvg.js +27 -0
  358. package/dist/components/SvgIcons/UploadSvg.js +34 -0
  359. package/dist/components/SvgIcons/VerifiedBadge.js +23 -0
  360. package/dist/components/SvgIcons/index.js +223 -0
  361. package/dist/components/Switch/Switch.js +70 -0
  362. package/dist/components/Switch/Switch.stories.js +86 -0
  363. package/dist/components/Switch/Switch.styles.js +47 -0
  364. package/dist/components/Tabs/Tabs.js +70 -0
  365. package/dist/components/Tabs/Tabs.stories.js +29 -0
  366. package/dist/components/Tabs/Tabs.styles.js +18 -0
  367. package/dist/components/TabsNav/TabNav.js +31 -0
  368. package/dist/components/TabsNav/TabNav.stories.js +44 -0
  369. package/dist/components/TabsNav/TabsNav.js +43 -0
  370. package/dist/components/TabsNav/TabsNav.stories.js +26 -0
  371. package/dist/components/TabsNav/TabsNav.styles.js +43 -0
  372. package/dist/components/TeamOverview/TeamOverview.js +125 -0
  373. package/dist/components/TeamOverview/TeamOverview.stories.js +80 -0
  374. package/dist/components/TeamOverview/TeamOverview.styles.js +81 -0
  375. package/dist/components/Text/Headline.js +29 -0
  376. package/dist/components/Text/Headline.stories.js +51 -0
  377. package/dist/components/Text/StyledText.js +19 -0
  378. package/dist/components/Text/Text.stories.js +71 -0
  379. package/dist/components/Text/Text.styles.js +40 -0
  380. package/dist/components/TextLink/TextLink.styles.js +30 -0
  381. package/dist/components/ToDoList/ToDoList.js +184 -0
  382. package/dist/components/ToDoList/ToDoList.stories.js +137 -0
  383. package/dist/components/ToDoList/ToDoList.styles.js +83 -0
  384. package/dist/components/ToDoList/ToDoListTask.js +118 -0
  385. package/dist/components/ToDoList/ToDoListTask.stories.js +72 -0
  386. package/dist/components/ToDoList/ToDoListTask.styles.js +74 -0
  387. package/dist/components/TransactionDetails/TransactionDetails.js +46 -0
  388. package/dist/components/TransactionDetails/TransactionDetails.stories.js +59 -0
  389. package/dist/components/TransactionDetails/TransactionDetails.styles.js +31 -0
  390. package/dist/components/TransactionInfo/TransactionInfo.js +58 -0
  391. package/dist/components/TransactionInfo/TransactionInfo.stories.js +64 -0
  392. package/dist/components/TransactionInfo/TransactionInfo.styles.js +54 -0
  393. package/dist/components/TwoFactorModal/TwoFactorModal.js +122 -0
  394. package/dist/components/breakdown/Breakdown.js +56 -0
  395. package/dist/components/breakdown/index.js +27 -0
  396. package/dist/components/context/Auth.js +207 -0
  397. package/dist/components/context/AuthContext.js +335 -0
  398. package/dist/components/icons/Arrow.js +70 -0
  399. package/dist/components/icons/Arrow.stories.js +49 -0
  400. package/dist/components/icons/ArrowSimple.js +59 -0
  401. package/dist/components/icons/ArrowSimple.stories.js +55 -0
  402. package/dist/components/icons/Check.js +43 -0
  403. package/dist/components/icons/Check.stories.js +25 -0
  404. package/dist/components/icons/Facebook.js +26 -0
  405. package/dist/components/icons/Facebook.stories.js +24 -0
  406. package/dist/components/icons/Info.js +55 -0
  407. package/dist/components/icons/Info.stories.js +19 -0
  408. package/dist/components/icons/Instagram.js +26 -0
  409. package/dist/components/icons/Instagram.stories.js +24 -0
  410. package/dist/components/icons/LinkIcon.js +34 -0
  411. package/dist/components/icons/LinkIcon.stories.js +24 -0
  412. package/dist/components/icons/LinkedIn.js +43 -0
  413. package/dist/components/icons/LinkedIn.stories.js +19 -0
  414. package/dist/components/icons/Medium.js +42 -0
  415. package/dist/components/icons/Medium.stories.js +19 -0
  416. package/dist/components/icons/Reddit.js +32 -0
  417. package/dist/components/icons/Reddit.stories.js +24 -0
  418. package/dist/components/icons/Share.js +62 -0
  419. package/dist/components/icons/Share.stories.js +19 -0
  420. package/dist/components/icons/Telegram.js +42 -0
  421. package/dist/components/icons/Telegram.stories.js +19 -0
  422. package/dist/components/icons/Twitter.js +26 -0
  423. package/dist/components/icons/Twitter.stories.js +24 -0
  424. package/dist/components/icons/X.js +26 -0
  425. package/dist/components/icons/X.stories.js +19 -0
  426. package/dist/components/icons/Youtube.js +26 -0
  427. package/dist/components/icons/Youtube.stories.js +24 -0
  428. package/dist/components/icons/index.js +170 -0
  429. package/dist/components/renderToBody/index.js +27 -0
  430. package/dist/components/renderToBody/renderToBody.js +68 -0
  431. package/dist/components/taxId/TaxId.stories.js +54 -0
  432. package/dist/components/taxId/complete.js +32 -0
  433. package/dist/components/taxId/flow.js +65 -0
  434. package/dist/components/taxId/index.js +27 -0
  435. package/dist/components/taxId/register-taxid.js +195 -0
  436. package/dist/components/video/Video.js +174 -0
  437. package/dist/components/video/Video.stories.js +56 -0
  438. package/dist/components/video/index.js +27 -0
  439. package/dist/constants/globalVariables.js +10 -0
  440. package/dist/constants/style.js +52 -0
  441. package/dist/index.js +1 -0
  442. package/dist/model/axios.js +18 -0
  443. package/dist/model/axiosPublic.js +18 -0
  444. package/dist/static/fonts/Ionicons/Ionicons.ttf +0 -0
  445. package/dist/static/fonts/Ionicons/Ionicons.woff +0 -0
  446. package/dist/static/fonts/Ionicons/Ionicons.woff2 +0 -0
  447. package/dist/static/fonts/Ionicons/ionicons.min.css +13 -0
  448. package/dist/static/fonts/OpenSans/OpenSans-Bold.ttf +0 -0
  449. package/dist/static/fonts/OpenSans/OpenSans-Bold.woff +0 -0
  450. package/dist/static/fonts/OpenSans/OpenSans-Bold.woff2 +0 -0
  451. package/dist/static/fonts/OpenSans/OpenSans-ExtraBold.ttf +0 -0
  452. package/dist/static/fonts/OpenSans/OpenSans-ExtraBold.woff +0 -0
  453. package/dist/static/fonts/OpenSans/OpenSans-ExtraBold.woff2 +0 -0
  454. package/dist/static/fonts/OpenSans/OpenSans-Light.ttf +0 -0
  455. package/dist/static/fonts/OpenSans/OpenSans-Light.woff +0 -0
  456. package/dist/static/fonts/OpenSans/OpenSans-Light.woff2 +0 -0
  457. package/dist/static/fonts/OpenSans/OpenSans-Regular.ttf +0 -0
  458. package/dist/static/fonts/OpenSans/OpenSans-Regular.woff +0 -0
  459. package/dist/static/fonts/OpenSans/OpenSans-Regular.woff2 +0 -0
  460. package/dist/static/fonts/OpenSans/OpenSans-SemiBold.ttf +0 -0
  461. package/dist/static/fonts/OpenSans/OpenSans-SemiBold.woff +0 -0
  462. package/dist/static/fonts/OpenSans/OpenSans-SemiBold.woff2 +0 -0
  463. package/dist/static/fonts/icomoon/icomoon.eot +0 -0
  464. package/dist/static/fonts/icomoon/icomoon.svg +47 -0
  465. package/dist/static/fonts/icomoon/icomoon.ttf +0 -0
  466. package/dist/static/fonts/icomoon/icomoon.woff +0 -0
  467. package/dist/static/fonts/icomoon/selection.json +1 -0
  468. package/dist/static/fonts/icomoon/style.css +137 -0
  469. package/dist/static/images/1.svg +4 -0
  470. package/dist/static/images/2.svg +4 -0
  471. package/dist/static/images/3.svg +3 -0
  472. package/dist/static/images/4.svg +3 -0
  473. package/dist/static/images/Glassess.svg +5 -0
  474. package/dist/static/images/VerifiedBadge.svg +1 -0
  475. package/dist/static/images/address-refreshing.gif +0 -0
  476. package/dist/static/images/admin-badge.svg +3 -0
  477. package/dist/static/images/amazon-logo.png +0 -0
  478. package/dist/static/images/arrow-down-black.svg +21 -0
  479. package/dist/static/images/avatar-cog.png +0 -0
  480. package/dist/static/images/avatar-placeholder.png +0 -0
  481. package/dist/static/images/avatar.png +0 -0
  482. package/dist/static/images/background.png +0 -0
  483. package/dist/static/images/camera.svg +1 -0
  484. package/dist/static/images/caps-lock.svg +6 -0
  485. package/dist/static/images/covers/blockchain.png +0 -0
  486. package/dist/static/images/covers/country.jpg +0 -0
  487. package/dist/static/images/covers/ethereum.jpg +0 -0
  488. package/dist/static/images/covers/index.png +0 -0
  489. package/dist/static/images/covers/liquid.png +0 -0
  490. package/dist/static/images/covers/money.png +0 -0
  491. package/dist/static/images/covers/overview.jpg +0 -0
  492. package/dist/static/images/covers/risk-questionnaire.jpg +0 -0
  493. package/dist/static/images/covers/rocket.png +0 -0
  494. package/dist/static/images/covers/verify-identity.jpg +0 -0
  495. package/dist/static/images/covers/virtual-iban.jpg +0 -0
  496. package/dist/static/images/document-back.svg +1 -0
  497. package/dist/static/images/document-small.svg +1 -0
  498. package/dist/static/images/document.svg +1 -0
  499. package/dist/static/images/early-adopter.png +0 -0
  500. package/dist/static/images/early-adopter.svg +1 -0
  501. package/dist/static/images/eth.svg +10 -0
  502. package/dist/static/images/eur.svg +3 -0
  503. package/dist/static/images/face-scan-icon.svg +1 -0
  504. package/dist/static/images/favicon.png +0 -0
  505. package/dist/static/images/favicon.svg +57 -0
  506. package/dist/static/images/google-logo.png +0 -0
  507. package/dist/static/images/graduation.png +0 -0
  508. package/dist/static/images/hdd.png +0 -0
  509. package/dist/static/images/lemonway.png +0 -0
  510. package/dist/static/images/logo.svg +1 -0
  511. package/dist/static/images/member-item-picture.png +0 -0
  512. package/dist/static/images/one.jpg +0 -0
  513. package/dist/static/images/passport.svg +1 -0
  514. package/dist/static/images/process-waiting.gif +0 -0
  515. package/dist/static/images/profile-picture-placeholder.png +0 -0
  516. package/dist/static/images/profile-picture-placeholder.svg +1 -0
  517. package/dist/static/images/profile-picture.png +0 -0
  518. package/dist/static/images/refresh.svg +9 -0
  519. package/dist/static/images/shark.jpg +0 -0
  520. package/dist/static/images/sicos.png +0 -0
  521. package/dist/static/images/slider/1.jpg +0 -0
  522. package/dist/static/images/slider/2.jpg +0 -0
  523. package/dist/static/images/slider/3.jpg +0 -0
  524. package/dist/static/images/social/facebook.svg +3 -0
  525. package/dist/static/images/social/linkedin.svg +3 -0
  526. package/dist/static/images/social/medium.svg +3 -0
  527. package/dist/static/images/social/reddit.svg +3 -0
  528. package/dist/static/images/social/telegram.svg +3 -0
  529. package/dist/static/images/social/twitter.svg +3 -0
  530. package/dist/static/images/social/youtube.svg +3 -0
  531. package/dist/static/images/three.jpg +0 -0
  532. package/dist/static/images/two-sided-document.svg +26 -0
  533. package/dist/static/images/two.jpg +0 -0
  534. package/dist/static/images/upload.svg +1 -0
  535. package/dist/static/images/user-profile.png +0 -0
  536. package/dist/static/images/whales.png +0 -0
  537. package/dist/static/videos/Capybara-with-mandarin orange-on-head.mp4 +0 -0
  538. package/dist/styles/colors.js +55 -0
  539. package/dist/styles/fonts.js +34 -0
  540. package/dist/styles/global.js +19 -0
  541. package/dist/styles/grid.js +16 -0
  542. package/dist/styles/reactTippy.js +12 -0
  543. package/dist/styles/rwd.js +52 -0
  544. package/dist/styles/semanticUi.js +12 -0
  545. package/dist/styles/spacing.js +12 -0
  546. package/dist/styles/theme.js +43 -0
  547. package/dist/utils/allowed-countries-list.js +1375 -0
  548. package/dist/utils/breakpoint.js +19 -0
  549. package/dist/utils/countries-list.js +1008 -0
  550. package/dist/utils/customHooks.js +54 -0
  551. package/dist/utils/delete-redirect-cookie-and-navigate.js +20 -0
  552. package/dist/utils/fix-decimals.js +11 -0
  553. package/dist/utils/get-cookie-domain.js +16 -0
  554. package/dist/utils/get-short-address.js +10 -0
  555. package/dist/utils/lock-body.js +20 -0
  556. package/dist/utils/redirect-url.js +10 -0
  557. package/dist/utils/set-redirect-cookie.js +20 -0
  558. package/docker-compose.yml +25 -0
  559. package/package.json +77 -84
  560. package/storybook-static/favicon.ico +0 -0
@@ -0,0 +1,42 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = exports.Medium = void 0;
7
+ var _react = _interopRequireDefault(require("react"));
8
+ var _styledComponents = _interopRequireDefault(require("styled-components"));
9
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
10
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
11
+ var Icon = _styledComponents.default.svg.withConfig({
12
+ displayName: "Medium__Icon",
13
+ componentId: "sc-5yl5iq-0"
14
+ })([""]);
15
+ var Medium = function Medium(props) {
16
+ return /*#__PURE__*/_react.default.createElement(Icon, _extends({
17
+ width: "12",
18
+ height: "9",
19
+ viewBox: "0 0 12 9",
20
+ xmlns: "http://www.w3.org/2000/svg"
21
+ }, props), /*#__PURE__*/_react.default.createElement("g", {
22
+ id: "Symbols",
23
+ fill: "none",
24
+ fillRule: "evenodd"
25
+ }, /*#__PURE__*/_react.default.createElement("g", {
26
+ id: "Footer",
27
+ transform: "translate(-834 -287)",
28
+ fill: "currentColor"
29
+ }, /*#__PURE__*/_react.default.createElement("g", {
30
+ id: "Group",
31
+ transform: "translate(704 275)"
32
+ }, /*#__PURE__*/_react.default.createElement("g", {
33
+ id: "Group-2",
34
+ transform: "translate(130 12)"
35
+ }, /*#__PURE__*/_react.default.createElement("path", {
36
+ d: "M1.33026175,1.71792233 C1.34428419,1.58754232 1.29146635,1.45893018 1.18863515,1.37142089 L0.141626603,0.178112348 L0.141626603,0 L3.3938969,0 L5.90765224,5.21299044 L8.11758814,1.96272387e-16 L11.2179487,0 L11.2179487,0.178112348 L10.3223825,0.99000412 C10.2452591,1.04569185 10.2069311,1.13717884 10.2228232,1.2277819 L10.2228232,7.19344065 C10.2069311,7.28360174 10.2452591,7.37508873 10.3223825,7.43077646 L11.1969151,8.24266823 L11.1969151,8.42078058 L6.79760951,8.42078058 L6.79760951,8.24266823 L7.70392628,7.41088798 C7.79273504,7.32691442 7.79273504,7.30216432 7.79273504,7.17355217 L7.79273504,2.35170175 L5.27383814,8.40133407 L4.93356036,8.40133407 L2.00053419,2.35170175 L2.00053419,6.40629898 C1.97622863,6.57645594 2.03605769,6.74838076 2.16272703,6.87124735 L3.34107906,8.22277976 L3.34107906,8.40133407 L0,8.40133407 L0,8.22277976 L1.17835203,6.87124735 C1.30455395,6.7479388 1.3606437,6.57513004 1.33026175,6.40629898 L1.33026175,1.71792233 Z",
37
+ id: "Shape"
38
+ }))))));
39
+ };
40
+ exports.Medium = Medium;
41
+ var _default = Medium;
42
+ exports.default = _default;
@@ -0,0 +1,19 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.medium = exports.default = void 0;
7
+ var _react = _interopRequireDefault(require("react"));
8
+ var _Medium = require("./Medium");
9
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
10
+ //import { withKnobs, select, boolean, array } from '@storybook/addon-knobs'
11
+ var _default = {
12
+ title: 'Components Library/Icons/Medium',
13
+ component: _Medium.Medium
14
+ };
15
+ exports.default = _default;
16
+ var medium = function medium() {
17
+ return /*#__PURE__*/_react.default.createElement(_Medium.Medium, null);
18
+ };
19
+ exports.medium = medium;
@@ -0,0 +1,32 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = exports.Reddit = void 0;
7
+ var _react = _interopRequireDefault(require("react"));
8
+ var _styledComponents = _interopRequireDefault(require("styled-components"));
9
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
10
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
11
+ var Icon = _styledComponents.default.svg.withConfig({
12
+ displayName: "Reddit__Icon",
13
+ componentId: "sc-1z0cfyo-0"
14
+ })([""]);
15
+ var Reddit = function Reddit(props) {
16
+ return /*#__PURE__*/_react.default.createElement(Icon, _extends({
17
+ width: "15",
18
+ height: "13",
19
+ viewBox: "0 0 15 13"
20
+ }, props), /*#__PURE__*/_react.default.createElement("defs", null, /*#__PURE__*/_react.default.createElement("path", {
21
+ id: "zg3oa",
22
+ d: "M1076.597 4482.766l-.726 3.33c1.574.076 3.015.464 4.311 1.323.471-.335.977-.521 1.569-.363.666.179 1.079.605 1.21 1.247.134.644-.081 1.205-.635 1.597-.207.146-.267.282-.262.528.023 1.304-.622 2.293-1.647 3.059-1.65 1.23-3.557 1.62-5.59 1.489-1.5-.098-2.91-.505-4.13-1.398-1.134-.83-1.845-1.883-1.772-3.33.005-.09-.086-.213-.17-.276-.795-.596-.987-1.521-.458-2.268.532-.752 1.473-.91 2.342-.407.088.051.262.052.349 0a8.025 8.025 0 0 1 3.907-1.169c.24-.008.335-.098.383-.337.23-1.124.489-2.242.732-3.364.065-.299.226-.39.538-.32.762.169 1.532.309 2.295.474.176.038.28.018.404-.126.405-.473.94-.576 1.467-.314.493.245.738.77.615 1.317-.101.45-.575.837-1.073.877-.547.044-1.04-.302-1.246-.853-.04-.108-.133-.253-.228-.274-.711-.16-1.43-.293-2.185-.442m-2.597 7.23c-.005-.54-.472-1.003-1.006-.996-.539.007-1 .477-.994 1.013.006.545.462.991 1.01.987.548-.004.994-.457.99-1.003m3.994 1.003a1.005 1.005 0 0 0 1.006-.99 1.025 1.025 0 0 0-.997-1.01c-.536-.004-1 .46-1.003 1-.002.546.446.997.994 1m-2.502 1.995c.145 0 .293.012.436-.002.695-.064 1.381-.164 1.935-.569.091-.066.17-.256.124-.33-.102-.162-.264-.082-.425-.001-.267.134-.543.278-.838.343-1.176.257-2.32.25-3.37-.382-.074-.044-.234.016-.354.028.014.095-.012.224.05.278.14.12.312.22.49.297.613.263 1.273.348 1.952.338"
23
+ })), /*#__PURE__*/_react.default.createElement("g", null, /*#__PURE__*/_react.default.createElement("g", {
24
+ transform: "translate(-1068 -4482)"
25
+ }, /*#__PURE__*/_react.default.createElement("use", {
26
+ fill: "#fff",
27
+ xlinkHref: "#zg3oa"
28
+ }))));
29
+ };
30
+ exports.Reddit = Reddit;
31
+ var _default = Reddit;
32
+ exports.default = _default;
@@ -0,0 +1,24 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.reddit = exports.default = void 0;
7
+ var _react = _interopRequireDefault(require("react"));
8
+ var _Reddit = require("./Reddit");
9
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
10
+ //import { withKnobs, select, boolean, array } from '@storybook/addon-knobs'
11
+ var _default = {
12
+ title: 'Components Library/Icons/Reddit',
13
+ component: _Reddit.Reddit,
14
+ parameters: {
15
+ backgrounds: {
16
+ default: 'grey'
17
+ }
18
+ }
19
+ }; //making default background grey in story as the element is white
20
+ exports.default = _default;
21
+ var reddit = function reddit() {
22
+ return /*#__PURE__*/_react.default.createElement(_Reddit.Reddit, null);
23
+ };
24
+ exports.reddit = reddit;
@@ -0,0 +1,62 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = exports.Share = void 0;
7
+ var _react = _interopRequireDefault(require("react"));
8
+ var _styledComponents = _interopRequireDefault(require("styled-components"));
9
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
10
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
11
+ var Icon = _styledComponents.default.svg.withConfig({
12
+ displayName: "Share__Icon",
13
+ componentId: "sc-1xihap8-0"
14
+ })([""]);
15
+ var Share = function Share(props) {
16
+ return /*#__PURE__*/_react.default.createElement(Icon, _extends({
17
+ width: "18",
18
+ height: "18",
19
+ viewBox: "0 0 18 18",
20
+ xmlns: "http://www.w3.org/2000/svg"
21
+ }, props), /*#__PURE__*/_react.default.createElement("g", {
22
+ id: "STO-Pages",
23
+ fill: "none",
24
+ fillRule: "evenodd",
25
+ strokeLinecap: "round"
26
+ }, /*#__PURE__*/_react.default.createElement("g", {
27
+ id: "2.-Desktop-Pitch-Tab",
28
+ transform: "translate(-271 -5126)",
29
+ strokeWidth: "1.5",
30
+ stroke: "currentColor"
31
+ }, /*#__PURE__*/_react.default.createElement("g", {
32
+ id: "Wrap-Up",
33
+ transform: "translate(0 5040)"
34
+ }, /*#__PURE__*/_react.default.createElement("g", {
35
+ id: "Share",
36
+ transform: "translate(183 75)"
37
+ }, /*#__PURE__*/_react.default.createElement("g", {
38
+ id: "Share-Icon",
39
+ transform: "translate(75)"
40
+ }, /*#__PURE__*/_react.default.createElement("g", {
41
+ id: "Group-11",
42
+ transform: "translate(13 11)"
43
+ }, /*#__PURE__*/_react.default.createElement("path", {
44
+ d: "M14.083,11.5833 C12.61,11.5833 11.417,10.3893 11.417,8.9163 C11.417,7.4433 12.61,6.2503 14.083,6.2503 C15.556,6.2503 16.75,7.4433 16.75,8.9163 C16.75,10.3893 15.556,11.5833 14.083,11.5833 Z",
45
+ id: "Stroke-1"
46
+ }), /*#__PURE__*/_react.default.createElement("path", {
47
+ d: "M3.417,6.0833 C1.944,6.0833 0.75,4.8893 0.75,3.4163 C0.75,1.9433 1.944,0.7503 3.417,0.7503 C4.89,0.7503 6.083,1.9433 6.083,3.4163 C6.083,4.8893 4.89,6.0833 3.417,6.0833 Z",
48
+ id: "Stroke-3"
49
+ }), /*#__PURE__*/_react.default.createElement("path", {
50
+ d: "M3.417,17.0833 C1.944,17.0833 0.75,15.8893 0.75,14.4163 C0.75,12.9433 1.944,11.7503 3.417,11.7503 C4.89,11.7503 6.083,12.9433 6.083,14.4163 C6.083,15.8893 4.89,17.0833 3.417,17.0833 Z",
51
+ id: "Stroke-5"
52
+ }), /*#__PURE__*/_react.default.createElement("path", {
53
+ d: "M5.8545,4.636 L11.7685,7.593",
54
+ id: "Stroke-7"
55
+ }), /*#__PURE__*/_react.default.createElement("path", {
56
+ d: "M8.917,11.9163 L11.737,10.5743",
57
+ id: "Stroke-9"
58
+ }))))))));
59
+ };
60
+ exports.Share = Share;
61
+ var _default = Share;
62
+ exports.default = _default;
@@ -0,0 +1,19 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.share = exports.default = void 0;
7
+ var _react = _interopRequireDefault(require("react"));
8
+ var _Share = require("./Share");
9
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
10
+ //import { withKnobs, select, boolean, array } from '@storybook/addon-knobs'
11
+ var _default = {
12
+ title: 'Components Library/Icons/Share',
13
+ component: _Share.Share
14
+ };
15
+ exports.default = _default;
16
+ var share = function share() {
17
+ return /*#__PURE__*/_react.default.createElement(_Share.Share, null);
18
+ };
19
+ exports.share = share;
@@ -0,0 +1,42 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = exports.Telegram = void 0;
7
+ var _react = _interopRequireDefault(require("react"));
8
+ var _styledComponents = _interopRequireDefault(require("styled-components"));
9
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
10
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
11
+ var Icon = _styledComponents.default.svg.withConfig({
12
+ displayName: "Telegram__Icon",
13
+ componentId: "sc-pwmcwk-0"
14
+ })([""]);
15
+ var Telegram = function Telegram(props) {
16
+ return /*#__PURE__*/_react.default.createElement(Icon, _extends({
17
+ width: "12",
18
+ height: "9",
19
+ viewBox: "0 0 12 9",
20
+ xmlns: "http://www.w3.org/2000/svg"
21
+ }, props), /*#__PURE__*/_react.default.createElement("g", {
22
+ id: "Symbols",
23
+ fill: "none",
24
+ fillRule: "evenodd"
25
+ }, /*#__PURE__*/_react.default.createElement("g", {
26
+ id: "Footer",
27
+ transform: "translate(-794 -286)",
28
+ fill: "currentColor"
29
+ }, /*#__PURE__*/_react.default.createElement("g", {
30
+ id: "Group",
31
+ transform: "translate(704 275)"
32
+ }, /*#__PURE__*/_react.default.createElement("g", {
33
+ id: "Group-3",
34
+ transform: "translate(90 11)"
35
+ }, /*#__PURE__*/_react.default.createElement("path", {
36
+ d: "M8.5929391,9.49400205 C8.74344315,9.60344218 8.93741577,9.63080221 9.11035521,9.56360213 C9.28329465,9.49592205 9.41042851,9.34424188 9.44875563,9.16040167 C9.85492961,7.20007941 10.840217,2.23831371 11.2099335,0.455111664 C11.2379777,0.32071151 11.1912373,0.181031349 11.0884085,0.0912712461 C10.9855796,0.00151114295 10.8430214,-0.0244088868 10.7158876,0.0240711689 C8.75606306,0.769032025 2.72047661,3.0946347 0.253518868,4.03207577 C0.0969385639,4.09159584 -0.00495548443,4.24615602 0.000185958374,4.41559621 C0.00579480507,4.58551641 0.117036931,4.73287658 0.277356466,4.78231664 C1.38370148,5.12215703 2.83592537,5.59495757 2.83592537,5.59495757 C2.83592537,5.59495757 3.51459582,7.69975999 3.86842056,8.77016122 C3.91282393,8.90456137 4.01518539,9.01016149 4.15026511,9.04664154 C4.28487743,9.08264158 4.42883783,9.04472153 4.52932967,8.94728142 C5.0976928,8.39624079 5.97641212,7.54423981 5.97641212,7.54423981 C5.97641212,7.54423981 7.64597882,8.80136125 8.5929391,9.49400205 Z M3.44682225,5.32903726 L4.23159339,7.98728032 L4.40593504,6.30391838 C4.40593504,6.30391838 7.43798408,3.49543516 9.16644367,1.89463332 C9.2169233,1.84759326 9.22393435,1.76887317 9.181868,1.71367311 C9.14026906,1.65847305 9.06361482,1.64551303 9.00612414,1.68295307 C7.00283106,2.99671458 3.44682225,5.32903726 3.44682225,5.32903726 Z",
37
+ id: "telegram-1"
38
+ }))))));
39
+ };
40
+ exports.Telegram = Telegram;
41
+ var _default = Telegram;
42
+ exports.default = _default;
@@ -0,0 +1,19 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.telegram = exports.default = void 0;
7
+ var _react = _interopRequireDefault(require("react"));
8
+ var _Telegram = require("./Telegram");
9
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
10
+ //import { withKnobs, select, boolean, array } from '@storybook/addon-knobs'
11
+ var _default = {
12
+ title: 'Components Library/Icons/Telegram',
13
+ component: _Telegram.Telegram
14
+ };
15
+ exports.default = _default;
16
+ var telegram = function telegram() {
17
+ return /*#__PURE__*/_react.default.createElement(_Telegram.Telegram, null);
18
+ };
19
+ exports.telegram = telegram;
@@ -0,0 +1,26 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = exports.Twitter = void 0;
7
+ var _react = _interopRequireDefault(require("react"));
8
+ var _styledComponents = _interopRequireDefault(require("styled-components"));
9
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
10
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
11
+ var Icon = _styledComponents.default.svg.withConfig({
12
+ displayName: "Twitter__Icon",
13
+ componentId: "sc-1y6gv5w-0"
14
+ })(["fill:#fff;width:12px;"]);
15
+ var Twitter = function Twitter(props) {
16
+ return /*#__PURE__*/_react.default.createElement(Icon, _extends({
17
+ width: "24",
18
+ height: "24",
19
+ viewBox: "0 0 24 24"
20
+ }, props), /*#__PURE__*/_react.default.createElement("path", {
21
+ d: "M24 4.557c-.883.392-1.832.656-2.828.775 1.017-.609 1.798-1.574 2.165-2.724-.951.564-2.005.974-3.127 1.195-.897-.957-2.178-1.555-3.594-1.555-3.179 0-5.515 2.966-4.797 6.045-4.091-.205-7.719-2.165-10.148-5.144-1.29 2.213-.669 5.108 1.523 6.574-.806-.026-1.566-.247-2.229-.616-.054 2.281 1.581 4.415 3.949 4.89-.693.188-1.452.232-2.224.084.626 1.956 2.444 3.379 4.6 3.419-2.07 1.623-4.678 2.348-7.29 2.04 2.179 1.397 4.768 2.212 7.548 2.212 9.142 0 14.307-7.721 13.995-14.646.962-.695 1.797-1.562 2.457-2.549z"
22
+ }));
23
+ };
24
+ exports.Twitter = Twitter;
25
+ var _default = Twitter;
26
+ exports.default = _default;
@@ -0,0 +1,24 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.twitter = exports.default = void 0;
7
+ var _react = _interopRequireDefault(require("react"));
8
+ var _Twitter = require("./Twitter");
9
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
10
+ //import { withKnobs, select, boolean, array } from '@storybook/addon-knobs'
11
+ var _default = {
12
+ title: 'Components Library/Icons/Twitter',
13
+ component: _Twitter.Twitter,
14
+ parameters: {
15
+ backgrounds: {
16
+ default: 'grey'
17
+ }
18
+ }
19
+ }; //making default background grey in story as the element is white
20
+ exports.default = _default;
21
+ var twitter = function twitter() {
22
+ return /*#__PURE__*/_react.default.createElement(_Twitter.Twitter, null);
23
+ };
24
+ exports.twitter = twitter;
@@ -0,0 +1,26 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = exports.X = void 0;
7
+ var _react = _interopRequireDefault(require("react"));
8
+ var _styledComponents = _interopRequireDefault(require("styled-components"));
9
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
10
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
11
+ var Icon = _styledComponents.default.svg.withConfig({
12
+ displayName: "X__Icon",
13
+ componentId: "sc-1hfs1ao-0"
14
+ })(["fill:#000;width:12px;"]);
15
+ var X = function X(props) {
16
+ return /*#__PURE__*/_react.default.createElement(Icon, _extends({
17
+ width: "24",
18
+ height: "24",
19
+ viewBox: "0 0 24 24"
20
+ }, props), /*#__PURE__*/_react.default.createElement("path", {
21
+ d: "M24 20.188l-8.315-8.209 8.2-8.282-3.697-3.697-8.212 8.318-8.31-8.203-3.666 3.666 8.321 8.24-8.206 8.313 3.666 3.666 8.237-8.318 8.285 8.203z"
22
+ }));
23
+ };
24
+ exports.X = X;
25
+ var _default = X;
26
+ exports.default = _default;
@@ -0,0 +1,19 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.x = exports.default = void 0;
7
+ var _react = _interopRequireDefault(require("react"));
8
+ var _X = require("./X");
9
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
10
+ //import { withKnobs, select, boolean, array } from '@storybook/addon-knobs'
11
+ var _default = {
12
+ title: 'Components Library/Icons/X',
13
+ component: _X.X
14
+ };
15
+ exports.default = _default;
16
+ var x = function x() {
17
+ return /*#__PURE__*/_react.default.createElement(_X.X, null);
18
+ };
19
+ exports.x = x;
@@ -0,0 +1,26 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = exports.Youtube = void 0;
7
+ var _react = _interopRequireDefault(require("react"));
8
+ var _styledComponents = _interopRequireDefault(require("styled-components"));
9
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
10
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
11
+ var Icon = _styledComponents.default.svg.withConfig({
12
+ displayName: "Youtube__Icon",
13
+ componentId: "sc-4kerhc-0"
14
+ })(["fill:#fff;width:12px;"]);
15
+ var Youtube = function Youtube(props) {
16
+ return /*#__PURE__*/_react.default.createElement(Icon, _extends({
17
+ width: "24",
18
+ height: "24",
19
+ viewBox: "0 0 24 24"
20
+ }, props), /*#__PURE__*/_react.default.createElement("path", {
21
+ d: "M19.615 3.184c-3.604-.246-11.631-.245-15.23 0-3.897.266-4.356 2.62-4.385 8.816.029 6.185.484 8.549 4.385 8.816 3.6.245 11.626.246 15.23 0 3.897-.266 4.356-2.62 4.385-8.816-.029-6.185-.484-8.549-4.385-8.816zm-10.615 12.816v-8l8 3.993-8 4.007z"
22
+ }));
23
+ };
24
+ exports.Youtube = Youtube;
25
+ var _default = Youtube;
26
+ exports.default = _default;
@@ -0,0 +1,24 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.youtube = exports.default = void 0;
7
+ var _react = _interopRequireDefault(require("react"));
8
+ var _Youtube = require("./Youtube");
9
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
10
+ //import { withKnobs, select, boolean, array } from '@storybook/addon-knobs'
11
+ var _default = {
12
+ title: 'Components Library/Icons/Youtube',
13
+ component: _Youtube.Youtube,
14
+ parameters: {
15
+ backgrounds: {
16
+ default: 'grey'
17
+ }
18
+ }
19
+ }; //making default background grey in story as the element is white
20
+ exports.default = _default;
21
+ var youtube = function youtube() {
22
+ return /*#__PURE__*/_react.default.createElement(_Youtube.Youtube, null);
23
+ };
24
+ exports.youtube = youtube;
@@ -0,0 +1,170 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ var _Arrow = require("./Arrow");
7
+ Object.keys(_Arrow).forEach(function (key) {
8
+ if (key === "default" || key === "__esModule") return;
9
+ if (key in exports && exports[key] === _Arrow[key]) return;
10
+ Object.defineProperty(exports, key, {
11
+ enumerable: true,
12
+ get: function get() {
13
+ return _Arrow[key];
14
+ }
15
+ });
16
+ });
17
+ var _ArrowSimple = require("./ArrowSimple");
18
+ Object.keys(_ArrowSimple).forEach(function (key) {
19
+ if (key === "default" || key === "__esModule") return;
20
+ if (key in exports && exports[key] === _ArrowSimple[key]) return;
21
+ Object.defineProperty(exports, key, {
22
+ enumerable: true,
23
+ get: function get() {
24
+ return _ArrowSimple[key];
25
+ }
26
+ });
27
+ });
28
+ var _Check = require("./Check");
29
+ Object.keys(_Check).forEach(function (key) {
30
+ if (key === "default" || key === "__esModule") return;
31
+ if (key in exports && exports[key] === _Check[key]) return;
32
+ Object.defineProperty(exports, key, {
33
+ enumerable: true,
34
+ get: function get() {
35
+ return _Check[key];
36
+ }
37
+ });
38
+ });
39
+ var _Facebook = require("./Facebook");
40
+ Object.keys(_Facebook).forEach(function (key) {
41
+ if (key === "default" || key === "__esModule") return;
42
+ if (key in exports && exports[key] === _Facebook[key]) return;
43
+ Object.defineProperty(exports, key, {
44
+ enumerable: true,
45
+ get: function get() {
46
+ return _Facebook[key];
47
+ }
48
+ });
49
+ });
50
+ var _Info = require("./Info");
51
+ Object.keys(_Info).forEach(function (key) {
52
+ if (key === "default" || key === "__esModule") return;
53
+ if (key in exports && exports[key] === _Info[key]) return;
54
+ Object.defineProperty(exports, key, {
55
+ enumerable: true,
56
+ get: function get() {
57
+ return _Info[key];
58
+ }
59
+ });
60
+ });
61
+ var _Instagram = require("./Instagram");
62
+ Object.keys(_Instagram).forEach(function (key) {
63
+ if (key === "default" || key === "__esModule") return;
64
+ if (key in exports && exports[key] === _Instagram[key]) return;
65
+ Object.defineProperty(exports, key, {
66
+ enumerable: true,
67
+ get: function get() {
68
+ return _Instagram[key];
69
+ }
70
+ });
71
+ });
72
+ var _LinkIcon = require("./LinkIcon");
73
+ Object.keys(_LinkIcon).forEach(function (key) {
74
+ if (key === "default" || key === "__esModule") return;
75
+ if (key in exports && exports[key] === _LinkIcon[key]) return;
76
+ Object.defineProperty(exports, key, {
77
+ enumerable: true,
78
+ get: function get() {
79
+ return _LinkIcon[key];
80
+ }
81
+ });
82
+ });
83
+ var _LinkedIn = require("./LinkedIn");
84
+ Object.keys(_LinkedIn).forEach(function (key) {
85
+ if (key === "default" || key === "__esModule") return;
86
+ if (key in exports && exports[key] === _LinkedIn[key]) return;
87
+ Object.defineProperty(exports, key, {
88
+ enumerable: true,
89
+ get: function get() {
90
+ return _LinkedIn[key];
91
+ }
92
+ });
93
+ });
94
+ var _Medium = require("./Medium");
95
+ Object.keys(_Medium).forEach(function (key) {
96
+ if (key === "default" || key === "__esModule") return;
97
+ if (key in exports && exports[key] === _Medium[key]) return;
98
+ Object.defineProperty(exports, key, {
99
+ enumerable: true,
100
+ get: function get() {
101
+ return _Medium[key];
102
+ }
103
+ });
104
+ });
105
+ var _Reddit = require("./Reddit");
106
+ Object.keys(_Reddit).forEach(function (key) {
107
+ if (key === "default" || key === "__esModule") return;
108
+ if (key in exports && exports[key] === _Reddit[key]) return;
109
+ Object.defineProperty(exports, key, {
110
+ enumerable: true,
111
+ get: function get() {
112
+ return _Reddit[key];
113
+ }
114
+ });
115
+ });
116
+ var _Share = require("./Share");
117
+ Object.keys(_Share).forEach(function (key) {
118
+ if (key === "default" || key === "__esModule") return;
119
+ if (key in exports && exports[key] === _Share[key]) return;
120
+ Object.defineProperty(exports, key, {
121
+ enumerable: true,
122
+ get: function get() {
123
+ return _Share[key];
124
+ }
125
+ });
126
+ });
127
+ var _Telegram = require("./Telegram");
128
+ Object.keys(_Telegram).forEach(function (key) {
129
+ if (key === "default" || key === "__esModule") return;
130
+ if (key in exports && exports[key] === _Telegram[key]) return;
131
+ Object.defineProperty(exports, key, {
132
+ enumerable: true,
133
+ get: function get() {
134
+ return _Telegram[key];
135
+ }
136
+ });
137
+ });
138
+ var _Twitter = require("./Twitter");
139
+ Object.keys(_Twitter).forEach(function (key) {
140
+ if (key === "default" || key === "__esModule") return;
141
+ if (key in exports && exports[key] === _Twitter[key]) return;
142
+ Object.defineProperty(exports, key, {
143
+ enumerable: true,
144
+ get: function get() {
145
+ return _Twitter[key];
146
+ }
147
+ });
148
+ });
149
+ var _Youtube = require("./Youtube");
150
+ Object.keys(_Youtube).forEach(function (key) {
151
+ if (key === "default" || key === "__esModule") return;
152
+ if (key in exports && exports[key] === _Youtube[key]) return;
153
+ Object.defineProperty(exports, key, {
154
+ enumerable: true,
155
+ get: function get() {
156
+ return _Youtube[key];
157
+ }
158
+ });
159
+ });
160
+ var _X = require("./X");
161
+ Object.keys(_X).forEach(function (key) {
162
+ if (key === "default" || key === "__esModule") return;
163
+ if (key in exports && exports[key] === _X[key]) return;
164
+ Object.defineProperty(exports, key, {
165
+ enumerable: true,
166
+ get: function get() {
167
+ return _X[key];
168
+ }
169
+ });
170
+ });
@@ -0,0 +1,27 @@
1
+ "use strict";
2
+
3
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+ var _exportNames = {};
8
+ Object.defineProperty(exports, "default", {
9
+ enumerable: true,
10
+ get: function get() {
11
+ return _renderToBody.default;
12
+ }
13
+ });
14
+ var _renderToBody = _interopRequireWildcard(require("./renderToBody"));
15
+ Object.keys(_renderToBody).forEach(function (key) {
16
+ if (key === "default" || key === "__esModule") return;
17
+ if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
18
+ if (key in exports && exports[key] === _renderToBody[key]) return;
19
+ Object.defineProperty(exports, key, {
20
+ enumerable: true,
21
+ get: function get() {
22
+ return _renderToBody[key];
23
+ }
24
+ });
25
+ });
26
+ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
27
+ function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }