react-native-wagmi-charts 2.1.0 → 2.3.0

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 (890) hide show
  1. package/README.md +26 -4
  2. package/lib/commonjs/charts/candle/Crosshair.js +3 -3
  3. package/lib/commonjs/charts/candle/Crosshair.js.map +1 -1
  4. package/lib/commonjs/charts/candle/CrosshairTooltip.js +4 -4
  5. package/lib/commonjs/charts/candle/CrosshairTooltip.js.map +1 -1
  6. package/lib/commonjs/charts/candle/useCandleData.js +1 -1
  7. package/lib/commonjs/charts/candle/useCandleData.js.map +1 -1
  8. package/lib/commonjs/charts/candle/useDatetime.js +2 -2
  9. package/lib/commonjs/charts/candle/useDatetime.js.map +1 -1
  10. package/lib/commonjs/charts/candle/usePrice.js +2 -2
  11. package/lib/commonjs/charts/candle/usePrice.js.map +1 -1
  12. package/lib/commonjs/charts/line/Chart.js +15 -4
  13. package/lib/commonjs/charts/line/Chart.js.map +1 -1
  14. package/lib/commonjs/charts/line/ChartPath.js +6 -11
  15. package/lib/commonjs/charts/line/ChartPath.js.map +1 -1
  16. package/lib/commonjs/charts/line/Context.js +6 -3
  17. package/lib/commonjs/charts/line/Context.js.map +1 -1
  18. package/lib/commonjs/charts/line/Cursor.js +58 -9
  19. package/lib/commonjs/charts/line/Cursor.js.map +1 -1
  20. package/lib/commonjs/charts/line/CursorCrosshair.js +1 -1
  21. package/lib/commonjs/charts/line/CursorCrosshair.js.map +1 -1
  22. package/lib/commonjs/charts/line/CursorLine.js +5 -4
  23. package/lib/commonjs/charts/line/CursorLine.js.map +1 -1
  24. package/lib/commonjs/charts/line/Dot.js +8 -13
  25. package/lib/commonjs/charts/line/Dot.js.map +1 -1
  26. package/lib/commonjs/charts/line/Gradient.js +2 -2
  27. package/lib/commonjs/charts/line/Gradient.js.map +1 -1
  28. package/lib/commonjs/charts/line/Highlight.js +2 -2
  29. package/lib/commonjs/charts/line/Highlight.js.map +1 -1
  30. package/lib/commonjs/charts/line/HorizontalLine.js +4 -9
  31. package/lib/commonjs/charts/line/HorizontalLine.js.map +1 -1
  32. package/lib/commonjs/charts/line/HoverTrap/index.web.js +1 -4
  33. package/lib/commonjs/charts/line/HoverTrap/index.web.js.map +1 -1
  34. package/lib/commonjs/charts/line/LineChartPathContext.js +19 -0
  35. package/lib/commonjs/charts/line/LineChartPathContext.js.map +1 -0
  36. package/lib/commonjs/charts/line/Path.js +2 -2
  37. package/lib/commonjs/charts/line/Path.js.map +1 -1
  38. package/lib/commonjs/charts/line/PriceText.js +4 -2
  39. package/lib/commonjs/charts/line/PriceText.js.map +1 -1
  40. package/lib/commonjs/charts/line/Tooltip.js +57 -16
  41. package/lib/commonjs/charts/line/Tooltip.js.map +1 -1
  42. package/lib/commonjs/charts/line/useCurrentY.js +1 -1
  43. package/lib/commonjs/charts/line/useCurrentY.js.map +1 -1
  44. package/lib/commonjs/charts/line/useDatetime.js +3 -3
  45. package/lib/commonjs/charts/line/useDatetime.js.map +1 -1
  46. package/lib/commonjs/charts/line/usePrice.js +6 -5
  47. package/lib/commonjs/charts/line/usePrice.js.map +1 -1
  48. package/lib/commonjs/charts/line/utils/getArea.js.map +1 -1
  49. package/lib/commonjs/charts/line/utils/getPath.js +7 -4
  50. package/lib/commonjs/charts/line/utils/getPath.js.map +1 -1
  51. package/lib/commonjs/components/AnimatedText.js +1 -1
  52. package/lib/commonjs/components/AnimatedText.js.map +1 -1
  53. package/lib/module/charts/candle/Crosshair.js +3 -3
  54. package/lib/module/charts/candle/Crosshair.js.map +1 -1
  55. package/lib/module/charts/candle/CrosshairTooltip.js +4 -4
  56. package/lib/module/charts/candle/CrosshairTooltip.js.map +1 -1
  57. package/lib/module/charts/candle/useCandleData.js +1 -1
  58. package/lib/module/charts/candle/useCandleData.js.map +1 -1
  59. package/lib/module/charts/candle/useDatetime.js +2 -2
  60. package/lib/module/charts/candle/useDatetime.js.map +1 -1
  61. package/lib/module/charts/candle/usePrice.js +2 -2
  62. package/lib/module/charts/candle/usePrice.js.map +1 -1
  63. package/lib/module/charts/line/Chart.js +14 -4
  64. package/lib/module/charts/line/Chart.js.map +1 -1
  65. package/lib/module/charts/line/ChartPath.js +3 -7
  66. package/lib/module/charts/line/ChartPath.js.map +1 -1
  67. package/lib/module/charts/line/Context.js +6 -3
  68. package/lib/module/charts/line/Context.js.map +1 -1
  69. package/lib/module/charts/line/Cursor.js +58 -9
  70. package/lib/module/charts/line/Cursor.js.map +1 -1
  71. package/lib/module/charts/line/CursorCrosshair.js +1 -1
  72. package/lib/module/charts/line/CursorCrosshair.js.map +1 -1
  73. package/lib/module/charts/line/CursorLine.js +5 -4
  74. package/lib/module/charts/line/CursorLine.js.map +1 -1
  75. package/lib/module/charts/line/Dot.js +8 -13
  76. package/lib/module/charts/line/Dot.js.map +1 -1
  77. package/lib/module/charts/line/Gradient.js +1 -1
  78. package/lib/module/charts/line/Gradient.js.map +1 -1
  79. package/lib/module/charts/line/Highlight.js +1 -1
  80. package/lib/module/charts/line/Highlight.js.map +1 -1
  81. package/lib/module/charts/line/HorizontalLine.js +5 -7
  82. package/lib/module/charts/line/HorizontalLine.js.map +1 -1
  83. package/lib/module/charts/line/HoverTrap/index.web.js +1 -3
  84. package/lib/module/charts/line/HoverTrap/index.web.js.map +1 -1
  85. package/lib/module/charts/line/LineChartPathContext.js +7 -0
  86. package/lib/module/charts/line/LineChartPathContext.js.map +1 -0
  87. package/lib/module/charts/line/Path.js +1 -1
  88. package/lib/module/charts/line/Path.js.map +1 -1
  89. package/lib/module/charts/line/PriceText.js +4 -2
  90. package/lib/module/charts/line/PriceText.js.map +1 -1
  91. package/lib/module/charts/line/Tooltip.js +58 -17
  92. package/lib/module/charts/line/Tooltip.js.map +1 -1
  93. package/lib/module/charts/line/useCurrentY.js +1 -1
  94. package/lib/module/charts/line/useCurrentY.js.map +1 -1
  95. package/lib/module/charts/line/useDatetime.js +3 -3
  96. package/lib/module/charts/line/useDatetime.js.map +1 -1
  97. package/lib/module/charts/line/usePrice.js +6 -5
  98. package/lib/module/charts/line/usePrice.js.map +1 -1
  99. package/lib/module/charts/line/utils/getArea.js.map +1 -1
  100. package/lib/module/charts/line/utils/getPath.js +7 -4
  101. package/lib/module/charts/line/utils/getPath.js.map +1 -1
  102. package/lib/module/components/AnimatedText.js +1 -1
  103. package/lib/module/components/AnimatedText.js.map +1 -1
  104. package/lib/typescript/src/charts/line/Chart.d.ts +3 -0
  105. package/lib/typescript/src/charts/line/ChartPath.d.ts +0 -5
  106. package/lib/typescript/src/charts/line/Context.d.ts +2 -1
  107. package/lib/typescript/src/charts/line/Cursor.d.ts +2 -1
  108. package/lib/typescript/src/charts/line/CursorLine.d.ts +3 -2
  109. package/lib/typescript/src/charts/line/LineChartPathContext.d.ts +6 -0
  110. package/lib/typescript/src/charts/line/PriceText.d.ts +6 -1
  111. package/lib/typescript/src/charts/line/Tooltip.d.ts +10 -3
  112. package/lib/typescript/src/charts/line/types.d.ts +1 -0
  113. package/lib/typescript/src/charts/line/useLineChart.d.ts +1 -0
  114. package/lib/typescript/src/charts/line/usePrice.d.ts +2 -1
  115. package/lib/typescript/src/charts/line/utils/getPath.d.ts +2 -1
  116. package/package.json +15 -5
  117. package/src/charts/candle/Crosshair.tsx +16 -9
  118. package/src/charts/candle/CrosshairTooltip.tsx +26 -17
  119. package/src/charts/candle/useCandleData.ts +1 -1
  120. package/src/charts/candle/useDatetime.ts +2 -2
  121. package/src/charts/candle/usePrice.ts +2 -2
  122. package/src/charts/line/Chart.tsx +26 -3
  123. package/src/charts/line/ChartPath.tsx +15 -7
  124. package/src/charts/line/Context.tsx +7 -1
  125. package/src/charts/line/Cursor.tsx +75 -12
  126. package/src/charts/line/CursorCrosshair.tsx +16 -13
  127. package/src/charts/line/CursorLine.tsx +13 -9
  128. package/src/charts/line/Dot.tsx +18 -22
  129. package/src/charts/line/Gradient.tsx +1 -1
  130. package/src/charts/line/Highlight.tsx +1 -1
  131. package/src/charts/line/HorizontalLine.tsx +22 -16
  132. package/src/charts/line/HoverTrap/index.web.tsx +1 -7
  133. package/src/charts/line/LineChartPathContext.ts +7 -0
  134. package/src/charts/line/Path.tsx +1 -1
  135. package/src/charts/line/PriceText.tsx +7 -1
  136. package/src/charts/line/Tooltip.tsx +81 -25
  137. package/src/charts/line/types.ts +1 -0
  138. package/src/charts/line/useCurrentY.ts +1 -1
  139. package/src/charts/line/useDatetime.ts +3 -3
  140. package/src/charts/line/usePrice.ts +10 -5
  141. package/src/charts/line/utils/getArea.ts +1 -1
  142. package/src/charts/line/utils/getPath.ts +5 -3
  143. package/src/components/AnimatedText.tsx +2 -1
  144. package/.DS_Store +0 -0
  145. package/.editorconfig +0 -15
  146. package/.gitattributes +0 -3
  147. package/.gitignore +0 -60
  148. package/.husky/_/.gitignore +0 -1
  149. package/.husky/_/husky.sh +0 -29
  150. package/.husky/pre-commit +0 -4
  151. package/.prettierrc.js +0 -5
  152. package/.yarnrc +0 -3
  153. package/babel.config.js +0 -3
  154. package/example/.DS_Store +0 -0
  155. package/example/.expo/README.md +0 -17
  156. package/example/.expo/packager-info.json +0 -10
  157. package/example/.expo/settings.json +0 -10
  158. package/example/.expo/web/cache/development/babel-loader/0048eab7a1937596c83f7a0a8669a057.json +0 -1
  159. package/example/.expo/web/cache/development/babel-loader/00e78539c92f01b2990b35cc56404077.json +0 -1
  160. package/example/.expo/web/cache/development/babel-loader/00fb31a59f8059a371925c6563cc997b.json +0 -1
  161. package/example/.expo/web/cache/development/babel-loader/01548be34380766518c44d302f0da833.json +0 -1
  162. package/example/.expo/web/cache/development/babel-loader/01dc8e11259412b46f72a16b6f6f989a.json +0 -1
  163. package/example/.expo/web/cache/development/babel-loader/022bc27c62f111b60de1d9cf31798db5.json +0 -1
  164. package/example/.expo/web/cache/development/babel-loader/02341c3581c9b4661b5deec14d244183.json +0 -1
  165. package/example/.expo/web/cache/development/babel-loader/02864927117d03b881e7a8edfefbce1f.json +0 -1
  166. package/example/.expo/web/cache/development/babel-loader/029e21747cfcaf8be0db65a531a13e45.json +0 -1
  167. package/example/.expo/web/cache/development/babel-loader/02cacb7980022332144135d930ecea11.json +0 -1
  168. package/example/.expo/web/cache/development/babel-loader/030b07a0a05e98460988fcc5b21543fd.json +0 -1
  169. package/example/.expo/web/cache/development/babel-loader/03baac388b3f9a631dca74f8f5355871.json +0 -1
  170. package/example/.expo/web/cache/development/babel-loader/03bc10b4a5ee3eedb5e5f050d616c7ca.json +0 -1
  171. package/example/.expo/web/cache/development/babel-loader/03e0f78352a5cc290e9a694dfa0457b2.json +0 -1
  172. package/example/.expo/web/cache/development/babel-loader/03f273e96dda522f2f1ffb0c11d9cb41.json +0 -1
  173. package/example/.expo/web/cache/development/babel-loader/040ef89e9083432c9c572aecfb055253.json +0 -1
  174. package/example/.expo/web/cache/development/babel-loader/053109a5af2f50846dbff99c9ddaa08b.json +0 -1
  175. package/example/.expo/web/cache/development/babel-loader/05c8ee51599e49b8df4c2aea1c61f9bd.json +0 -1
  176. package/example/.expo/web/cache/development/babel-loader/061e5f7ad7d0922480d8aa5ec61bb646.json +0 -1
  177. package/example/.expo/web/cache/development/babel-loader/062a149ffbda2b47d4a754da17f0ed89.json +0 -1
  178. package/example/.expo/web/cache/development/babel-loader/06c9aabc7c8dc32a774403b9acd1d9e3.json +0 -1
  179. package/example/.expo/web/cache/development/babel-loader/06de2f6698410c68adcc5a227728a923.json +0 -1
  180. package/example/.expo/web/cache/development/babel-loader/078514ef0b378ba9f78589e2d9ed00f0.json +0 -1
  181. package/example/.expo/web/cache/development/babel-loader/078d39387ece388cb409a9de98417dd7.json +0 -1
  182. package/example/.expo/web/cache/development/babel-loader/07b3a89a9e74b685cf404ebf38b09cf3.json +0 -1
  183. package/example/.expo/web/cache/development/babel-loader/080f366125f90a9e8eadd83a478fd0a4.json +0 -1
  184. package/example/.expo/web/cache/development/babel-loader/0870d39da57bb2851188686e42cd8929.json +0 -1
  185. package/example/.expo/web/cache/development/babel-loader/089ef8767f5d45067bcc9b748c2e2ca6.json +0 -1
  186. package/example/.expo/web/cache/development/babel-loader/08ae8c107c10803a4fd1dcd9bb77631b.json +0 -1
  187. package/example/.expo/web/cache/development/babel-loader/099f90b9def7e410f3bba04d6226387e.json +0 -1
  188. package/example/.expo/web/cache/development/babel-loader/0a242186b7618fda93384aeb3173eaaf.json +0 -1
  189. package/example/.expo/web/cache/development/babel-loader/0a579bb4b1dc23ec08a88f1bdee88608.json +0 -1
  190. package/example/.expo/web/cache/development/babel-loader/0b71299ddceefa8034f07d7bd25f7132.json +0 -1
  191. package/example/.expo/web/cache/development/babel-loader/0ba484ac7ba0d1abe8d566757740b901.json +0 -1
  192. package/example/.expo/web/cache/development/babel-loader/0ba90d135dbde2f2ed800d6988b78450.json +0 -1
  193. package/example/.expo/web/cache/development/babel-loader/0bb2866e03fb170ecb2af745142093ba.json +0 -1
  194. package/example/.expo/web/cache/development/babel-loader/0bb36a2fb4073700b144f62a027bd1de.json +0 -1
  195. package/example/.expo/web/cache/development/babel-loader/0bdbd4da7c535a6cfa3d301a2e03cdb3.json +0 -1
  196. package/example/.expo/web/cache/development/babel-loader/0be51050d78340dc2f89663ad0af3632.json +0 -1
  197. package/example/.expo/web/cache/development/babel-loader/0c07be62e43d474eb25c09f670fb08b5.json +0 -1
  198. package/example/.expo/web/cache/development/babel-loader/0c837f034f4f17e8b4762c3d2df80d5c.json +0 -1
  199. package/example/.expo/web/cache/development/babel-loader/0ca19fcabd7879d8a09389c265186c73.json +0 -1
  200. package/example/.expo/web/cache/development/babel-loader/0cdf4f458fd0cf908dfede501bdba0fc.json +0 -1
  201. package/example/.expo/web/cache/development/babel-loader/0d31f492a7a9c529dbcbd75b848d6d0e.json +0 -1
  202. package/example/.expo/web/cache/development/babel-loader/0d9788739cbfbd79ea593eeaa1887870.json +0 -1
  203. package/example/.expo/web/cache/development/babel-loader/0da5caa9849b893e893d2f84251d2b0c.json +0 -1
  204. package/example/.expo/web/cache/development/babel-loader/0dba3b74d1f9e83e7e1be547f59f9b0d.json +0 -1
  205. package/example/.expo/web/cache/development/babel-loader/0dda8bfcef9ddb34113838e01d884c94.json +0 -1
  206. package/example/.expo/web/cache/development/babel-loader/0f7beaa387100bbf52b0795fff708e9b.json +0 -1
  207. package/example/.expo/web/cache/development/babel-loader/0fa2c2dc537c942ad8aa7e16f3e3ee7f.json +0 -1
  208. package/example/.expo/web/cache/development/babel-loader/0fbfb2dea0d4ca9896ab83137f7a443c.json +0 -1
  209. package/example/.expo/web/cache/development/babel-loader/0fed877538eec4c0fe6fc59a7fba1884.json +0 -1
  210. package/example/.expo/web/cache/development/babel-loader/10c42328cedbca0b7c02e292cbf7e819.json +0 -1
  211. package/example/.expo/web/cache/development/babel-loader/119aa1b9951b02dd534f8968d8d3bdcc.json +0 -1
  212. package/example/.expo/web/cache/development/babel-loader/11e5e2a288b722ed1a72951da903668f.json +0 -1
  213. package/example/.expo/web/cache/development/babel-loader/122d66f7c19d923eda33d5be469f98df.json +0 -1
  214. package/example/.expo/web/cache/development/babel-loader/124b86bda7fafdb400a04e42fb06d241.json +0 -1
  215. package/example/.expo/web/cache/development/babel-loader/12ddb38f86b223c6168a22c3c441d23c.json +0 -1
  216. package/example/.expo/web/cache/development/babel-loader/12f67411dabf1aba4c19bc21578a1eb6.json +0 -1
  217. package/example/.expo/web/cache/development/babel-loader/12f8b90d6b32fd8d434f74ec0a1cc5de.json +0 -1
  218. package/example/.expo/web/cache/development/babel-loader/1373cfa1a25ef0d52cb4356053bd50a6.json +0 -1
  219. package/example/.expo/web/cache/development/babel-loader/13f991ac86a7338392f35706b6f3ff13.json +0 -1
  220. package/example/.expo/web/cache/development/babel-loader/14896ac3a706173aa66f99f5ac81de25.json +0 -1
  221. package/example/.expo/web/cache/development/babel-loader/155b2897eaa205c153dc174759391596.json +0 -1
  222. package/example/.expo/web/cache/development/babel-loader/156441416de4a576dc90c34dbbb005f4.json +0 -1
  223. package/example/.expo/web/cache/development/babel-loader/159bcfbc06914dc0fa53d932ecdeb3a8.json +0 -1
  224. package/example/.expo/web/cache/development/babel-loader/15adfc2176211fd1b1f1e26ffac54860.json +0 -1
  225. package/example/.expo/web/cache/development/babel-loader/16431afdd306659127e684ef2c528a5e.json +0 -1
  226. package/example/.expo/web/cache/development/babel-loader/16bf97aa1df29d051e75cdcfe30258ca.json +0 -1
  227. package/example/.expo/web/cache/development/babel-loader/16d0b8dbc4e2615d53d7a99d3c399b1c.json +0 -1
  228. package/example/.expo/web/cache/development/babel-loader/16d1bc10d8e4f05640c709260fe4cff7.json +0 -1
  229. package/example/.expo/web/cache/development/babel-loader/173757cc1e741e39f50c821a347ca6a7.json +0 -1
  230. package/example/.expo/web/cache/development/babel-loader/17539008e1af521bbd4be8772219d502.json +0 -1
  231. package/example/.expo/web/cache/development/babel-loader/176b3020eb65c46ea40baf76391fdeca.json +0 -1
  232. package/example/.expo/web/cache/development/babel-loader/178a06574c91fc5f7d66bb5c1087d694.json +0 -1
  233. package/example/.expo/web/cache/development/babel-loader/17c2c08b53b428a4549da5c8dfe32283.json +0 -1
  234. package/example/.expo/web/cache/development/babel-loader/17f33cd1288f2d81431bd2cc3594a889.json +0 -1
  235. package/example/.expo/web/cache/development/babel-loader/183decf56ac00edb29d05a83cb230ed1.json +0 -1
  236. package/example/.expo/web/cache/development/babel-loader/18b98ff69a443c8d8c34b1e908c8c8c5.json +0 -1
  237. package/example/.expo/web/cache/development/babel-loader/19b862353f8639c724c77fef48f745b9.json +0 -1
  238. package/example/.expo/web/cache/development/babel-loader/1ae06e69db0965f0680818d1a4bae914.json +0 -1
  239. package/example/.expo/web/cache/development/babel-loader/1ae598529609953300b8831809806773.json +0 -1
  240. package/example/.expo/web/cache/development/babel-loader/1b60e83cd9326cd1bedb362ca3695db7.json +0 -1
  241. package/example/.expo/web/cache/development/babel-loader/1bf72c5e82adfae4cd9fb7d062f43c7b.json +0 -1
  242. package/example/.expo/web/cache/development/babel-loader/1d75e19efb03e53ecf3ac88a9bc660f6.json +0 -1
  243. package/example/.expo/web/cache/development/babel-loader/1da1472f2e94b667c4f3d73d437b78d2.json +0 -1
  244. package/example/.expo/web/cache/development/babel-loader/1db83c8bbf361b4e9c9d637ffd3fda9f.json +0 -1
  245. package/example/.expo/web/cache/development/babel-loader/1e954e44cae79871d604d778ed2b019b.json +0 -1
  246. package/example/.expo/web/cache/development/babel-loader/1f3db19af6a4daad8ac653aef9a17b3e.json +0 -1
  247. package/example/.expo/web/cache/development/babel-loader/1fa8d4f7956d15e5d2301b5bc0ea5cda.json +0 -1
  248. package/example/.expo/web/cache/development/babel-loader/20143c2ba144a977d78c7b106120350d.json +0 -1
  249. package/example/.expo/web/cache/development/babel-loader/201eb696584a8e8ed6ccc7f1c94bea83.json +0 -1
  250. package/example/.expo/web/cache/development/babel-loader/208778a4ee646ee0555ed1e67b562757.json +0 -1
  251. package/example/.expo/web/cache/development/babel-loader/20b5cfe5b4fae8cc46f24e1ad10f084b.json +0 -1
  252. package/example/.expo/web/cache/development/babel-loader/20e5a97e718e32b1e4793147d6f69e45.json +0 -1
  253. package/example/.expo/web/cache/development/babel-loader/219c2137c40f30853f1c0da86e6195ae.json +0 -1
  254. package/example/.expo/web/cache/development/babel-loader/2205972b2a20db62efa79ce469cfe964.json +0 -1
  255. package/example/.expo/web/cache/development/babel-loader/2213676b835b1649f016c0bff6b0d893.json +0 -1
  256. package/example/.expo/web/cache/development/babel-loader/224ade2bbe8e0b2388eb1c55bff3f264.json +0 -1
  257. package/example/.expo/web/cache/development/babel-loader/22e45563d6234e853ec8e4a4267750d8.json +0 -1
  258. package/example/.expo/web/cache/development/babel-loader/22eb55b287473e3a78908381441cfcb4.json +0 -1
  259. package/example/.expo/web/cache/development/babel-loader/235079d51d6d83ca54da405649b91110.json +0 -1
  260. package/example/.expo/web/cache/development/babel-loader/23be422a323e77a515117c42beac5044.json +0 -1
  261. package/example/.expo/web/cache/development/babel-loader/240cb3678995c4254ed6e5c7582952ba.json +0 -1
  262. package/example/.expo/web/cache/development/babel-loader/2530791779144ffab597cad5be52c226.json +0 -1
  263. package/example/.expo/web/cache/development/babel-loader/2572f610636111e63226d070b6df704a.json +0 -1
  264. package/example/.expo/web/cache/development/babel-loader/2596af2ade89538878b6d544100f3399.json +0 -1
  265. package/example/.expo/web/cache/development/babel-loader/25ba14deb6adaac77b56e2c781b4f065.json +0 -1
  266. package/example/.expo/web/cache/development/babel-loader/2662f01bd2d995efd4c68fb1dde0751c.json +0 -1
  267. package/example/.expo/web/cache/development/babel-loader/26cb1b1abe574d9b890ef696f2871346.json +0 -1
  268. package/example/.expo/web/cache/development/babel-loader/26d2d37f205cec86abab8af6ff0ebc64.json +0 -1
  269. package/example/.expo/web/cache/development/babel-loader/26e511c3ed7ffeb19f2a5d51e2cac69b.json +0 -1
  270. package/example/.expo/web/cache/development/babel-loader/26e6a4ea55e0d322127634128523cad1.json +0 -1
  271. package/example/.expo/web/cache/development/babel-loader/283e292d5ceb581a50e9755ac42601a2.json +0 -1
  272. package/example/.expo/web/cache/development/babel-loader/288357d67d14eb8a67ea7431f3c8416d.json +0 -1
  273. package/example/.expo/web/cache/development/babel-loader/28d1872152a5070e160a78864dac71c9.json +0 -1
  274. package/example/.expo/web/cache/development/babel-loader/28de677a319035c81b48e51b8c8801ab.json +0 -1
  275. package/example/.expo/web/cache/development/babel-loader/29518ab58c8aacdb2e5e164fc13d872b.json +0 -1
  276. package/example/.expo/web/cache/development/babel-loader/29d79f626f6ad6bfe79bbbf010acedf3.json +0 -1
  277. package/example/.expo/web/cache/development/babel-loader/2a3adcb3c1ad03050e8262f913537bb8.json +0 -1
  278. package/example/.expo/web/cache/development/babel-loader/2aa749a94f4df8b760e8acfdb25028ff.json +0 -1
  279. package/example/.expo/web/cache/development/babel-loader/2aaeb9279315ba2ad10a4c0f551e8645.json +0 -1
  280. package/example/.expo/web/cache/development/babel-loader/2acf873c8a41c7ea75a5cc3ae31878f7.json +0 -1
  281. package/example/.expo/web/cache/development/babel-loader/2b64d55ee11f0015681db4ce68a395d2.json +0 -1
  282. package/example/.expo/web/cache/development/babel-loader/2b68997a650089f484e2aa3b04e19c17.json +0 -1
  283. package/example/.expo/web/cache/development/babel-loader/2b701f7ecf1146a2266cfc4b1f85883b.json +0 -1
  284. package/example/.expo/web/cache/development/babel-loader/2c02bff6f2785c6f9c97e54794c5cb1e.json +0 -1
  285. package/example/.expo/web/cache/development/babel-loader/2cccd0ecb5914d7b91a0e2a0fbd995c9.json +0 -1
  286. package/example/.expo/web/cache/development/babel-loader/2dbbd507ae02c5249d7088f625312a95.json +0 -1
  287. package/example/.expo/web/cache/development/babel-loader/2dce9894a2affe7bfe287cd3e27b4efd.json +0 -1
  288. package/example/.expo/web/cache/development/babel-loader/2e27f8a130af009b492bc9f13a3bb578.json +0 -1
  289. package/example/.expo/web/cache/development/babel-loader/2f24be2c7134f588272fcf9f397008bf.json +0 -1
  290. package/example/.expo/web/cache/development/babel-loader/2f57f3c72b3b460c5d299bcf081b429b.json +0 -1
  291. package/example/.expo/web/cache/development/babel-loader/2f63db06dec4ae0f934cbe269ca78b7c.json +0 -1
  292. package/example/.expo/web/cache/development/babel-loader/3030b35c886f71dc0c5445ba8f6f987a.json +0 -1
  293. package/example/.expo/web/cache/development/babel-loader/3053d7b372b5a38a9ffddbf16715f2ce.json +0 -1
  294. package/example/.expo/web/cache/development/babel-loader/3067d2c72bfaf66f5f19c7909af1133e.json +0 -1
  295. package/example/.expo/web/cache/development/babel-loader/3146ea18d415deb6177ac03e1355688e.json +0 -1
  296. package/example/.expo/web/cache/development/babel-loader/319feb766afa0b6ef1fd0f61a79d8306.json +0 -1
  297. package/example/.expo/web/cache/development/babel-loader/341a6c60339e92183d4dc4beb411f72d.json +0 -1
  298. package/example/.expo/web/cache/development/babel-loader/34603acbdde5dfab35a94ddba2a32d46.json +0 -1
  299. package/example/.expo/web/cache/development/babel-loader/349cd67f61ed6f6ef9bafc83ab8d8fe6.json +0 -1
  300. package/example/.expo/web/cache/development/babel-loader/349f0c8c11b69e43a478d773b131d4d2.json +0 -1
  301. package/example/.expo/web/cache/development/babel-loader/35011e104b58754e49c4d3d702a2f61f.json +0 -1
  302. package/example/.expo/web/cache/development/babel-loader/3575ff3ca012124bf251e6cfeca7b7d7.json +0 -1
  303. package/example/.expo/web/cache/development/babel-loader/359f8f7aff4ad2f996000b550df5b917.json +0 -1
  304. package/example/.expo/web/cache/development/babel-loader/35c0fe0f3af5e5bb30c862ab2f0352fe.json +0 -1
  305. package/example/.expo/web/cache/development/babel-loader/35e42e8dca6b3242a869b68dd19c9320.json +0 -1
  306. package/example/.expo/web/cache/development/babel-loader/3683ce1bd7ea848ec955de2738873cfb.json +0 -1
  307. package/example/.expo/web/cache/development/babel-loader/36865faf642c5676bc5f905a17d39810.json +0 -1
  308. package/example/.expo/web/cache/development/babel-loader/368688165f40c4cfc59238bacf69d131.json +0 -1
  309. package/example/.expo/web/cache/development/babel-loader/3690ca8f7494abb6bbf399a72dd529d0.json +0 -1
  310. package/example/.expo/web/cache/development/babel-loader/36e75d47020ead36881558873b7ed051.json +0 -1
  311. package/example/.expo/web/cache/development/babel-loader/376ebb0e2cf53138b2add663f358ad8e.json +0 -1
  312. package/example/.expo/web/cache/development/babel-loader/381426842d8a1ddb31808178e52a5679.json +0 -1
  313. package/example/.expo/web/cache/development/babel-loader/38146d6afeec03b463523c4710274e9a.json +0 -1
  314. package/example/.expo/web/cache/development/babel-loader/39185d78dfe042f97cbae91dc8de3fd1.json +0 -1
  315. package/example/.expo/web/cache/development/babel-loader/394f45d48a9648d70c4b5b64076be031.json +0 -1
  316. package/example/.expo/web/cache/development/babel-loader/3972208eae9b5b632b17b21baa8bf208.json +0 -1
  317. package/example/.expo/web/cache/development/babel-loader/39f743b81b60417ab847556a7179e22a.json +0 -1
  318. package/example/.expo/web/cache/development/babel-loader/3a049e796da05d6ab052670916a53c33.json +0 -1
  319. package/example/.expo/web/cache/development/babel-loader/3a36810cc4f07e4758f321a000de6959.json +0 -1
  320. package/example/.expo/web/cache/development/babel-loader/3a98fa6154cd5cd009147a5327c55155.json +0 -1
  321. package/example/.expo/web/cache/development/babel-loader/3b7135501e404451314cdcc9fe0600b8.json +0 -1
  322. package/example/.expo/web/cache/development/babel-loader/3ba2512296e39bb9a10f1558a665e9ec.json +0 -1
  323. package/example/.expo/web/cache/development/babel-loader/3c20b6d457837e0ac87f3e648e6eca00.json +0 -1
  324. package/example/.expo/web/cache/development/babel-loader/3c5f38af9e2ec3a91de4f1b4fec17b0a.json +0 -1
  325. package/example/.expo/web/cache/development/babel-loader/3d6248624c376f339e299d33a5441fc5.json +0 -1
  326. package/example/.expo/web/cache/development/babel-loader/3e1698f99f9fc08d49f7b34982fa5ff9.json +0 -1
  327. package/example/.expo/web/cache/development/babel-loader/3e175af3a1473dcb8ab69a8eadb3b64b.json +0 -1
  328. package/example/.expo/web/cache/development/babel-loader/3e294ec36b218fbf02cfaec95a0cd10c.json +0 -1
  329. package/example/.expo/web/cache/development/babel-loader/3e2d35c9bbfe5423a7d98376bcd56e6b.json +0 -1
  330. package/example/.expo/web/cache/development/babel-loader/3e403b91e02d584934276eacc544c816.json +0 -1
  331. package/example/.expo/web/cache/development/babel-loader/3e7a2e7fe4f726704b568371689534ae.json +0 -1
  332. package/example/.expo/web/cache/development/babel-loader/3f86d59727c3e03e54652149a8f8d3b6.json +0 -1
  333. package/example/.expo/web/cache/development/babel-loader/4023fb22b941ed6ef095d0dcc7cf4add.json +0 -1
  334. package/example/.expo/web/cache/development/babel-loader/40402ff33d7840c2ef429fb4b123038d.json +0 -1
  335. package/example/.expo/web/cache/development/babel-loader/40797a455c2817f0f1c32be3272d45b7.json +0 -1
  336. package/example/.expo/web/cache/development/babel-loader/4088615ef9d57b3f7fe4190660ba6ddc.json +0 -1
  337. package/example/.expo/web/cache/development/babel-loader/40b253188172501badb387adbb4975a7.json +0 -1
  338. package/example/.expo/web/cache/development/babel-loader/40c4fde14ef2e0ea53a7432cd848ff2b.json +0 -1
  339. package/example/.expo/web/cache/development/babel-loader/41cb1c00dc7af067825210998d145a55.json +0 -1
  340. package/example/.expo/web/cache/development/babel-loader/42369b0fb17c85ff071461984d05a57c.json +0 -1
  341. package/example/.expo/web/cache/development/babel-loader/42c2f18b8307bc0d3ea5d84373a5d67f.json +0 -1
  342. package/example/.expo/web/cache/development/babel-loader/434f2b53fb7aea8fa46feed34373ebf1.json +0 -1
  343. package/example/.expo/web/cache/development/babel-loader/437dd685561b93a81742ac2ecbeb7d41.json +0 -1
  344. package/example/.expo/web/cache/development/babel-loader/4435d6138199309e3af3ad15f2f33548.json +0 -1
  345. package/example/.expo/web/cache/development/babel-loader/44dc1996d592f2e6f37bad3a90765f47.json +0 -1
  346. package/example/.expo/web/cache/development/babel-loader/458008074e08e5345adedd3d000e8470.json +0 -1
  347. package/example/.expo/web/cache/development/babel-loader/45873f55ae22e035954bc06cc50b2173.json +0 -1
  348. package/example/.expo/web/cache/development/babel-loader/4645ddff7b2c0d3eb6856ae4db108dfe.json +0 -1
  349. package/example/.expo/web/cache/development/babel-loader/46679e2a6fceee1389fc81e63b21348f.json +0 -1
  350. package/example/.expo/web/cache/development/babel-loader/46ede8b645ca9607cad48c73ac585da8.json +0 -1
  351. package/example/.expo/web/cache/development/babel-loader/47848e59a8af06715aaa2c06bbdddf86.json +0 -1
  352. package/example/.expo/web/cache/development/babel-loader/4819dcb040e5d4a96a7b84bbb0b1ec20.json +0 -1
  353. package/example/.expo/web/cache/development/babel-loader/4861470a02020675a1ee3db81cf82013.json +0 -1
  354. package/example/.expo/web/cache/development/babel-loader/4864be71b0d3193e0c759b91a9548cce.json +0 -1
  355. package/example/.expo/web/cache/development/babel-loader/486a97ffd715ec487414761e753727b5.json +0 -1
  356. package/example/.expo/web/cache/development/babel-loader/487488e8e5ae8ef9217e3c56a43ad05a.json +0 -1
  357. package/example/.expo/web/cache/development/babel-loader/49f4c364b909987eb06dde9e5e191155.json +0 -1
  358. package/example/.expo/web/cache/development/babel-loader/4b13fec968ca831c12164f8849618499.json +0 -1
  359. package/example/.expo/web/cache/development/babel-loader/4b2dc2a918984d9c2064864531f0a25e.json +0 -1
  360. package/example/.expo/web/cache/development/babel-loader/4b81b318c8d202092e5f11c893ba60ca.json +0 -1
  361. package/example/.expo/web/cache/development/babel-loader/4b929b061248038485fe18a4000f0dc7.json +0 -1
  362. package/example/.expo/web/cache/development/babel-loader/4bb899e66458fe70451b960feb748cca.json +0 -1
  363. package/example/.expo/web/cache/development/babel-loader/4bf2841cd4d191e4fcd069fc2defa95d.json +0 -1
  364. package/example/.expo/web/cache/development/babel-loader/4bfdf05b16115a8f6be82091518c35be.json +0 -1
  365. package/example/.expo/web/cache/development/babel-loader/4c14d7bff7de294fd991c68522f97ee4.json +0 -1
  366. package/example/.expo/web/cache/development/babel-loader/4c3b315099cd265649454fd2a0c799a2.json +0 -1
  367. package/example/.expo/web/cache/development/babel-loader/4c723644cc0a1300f119db91b3a4e1d8.json +0 -1
  368. package/example/.expo/web/cache/development/babel-loader/4c912e44b450dfff1f0d609c6fcf770c.json +0 -1
  369. package/example/.expo/web/cache/development/babel-loader/4c91a10b38720099ce4af9a3b12902e3.json +0 -1
  370. package/example/.expo/web/cache/development/babel-loader/4d0a771d1b608f16b9ddadee2a97ce66.json +0 -1
  371. package/example/.expo/web/cache/development/babel-loader/4d466fa65871bcbc64956934ceb7b82f.json +0 -1
  372. package/example/.expo/web/cache/development/babel-loader/4def34cd255ca058831e577a22a37fe8.json +0 -1
  373. package/example/.expo/web/cache/development/babel-loader/4e225e240a0c5e5724f9d92ab2c2a5c7.json +0 -1
  374. package/example/.expo/web/cache/development/babel-loader/4e34feea50a4a09a97c575ab605527bb.json +0 -1
  375. package/example/.expo/web/cache/development/babel-loader/4e741f92fbbd92b96334530f6ad10846.json +0 -1
  376. package/example/.expo/web/cache/development/babel-loader/4e7e3d084acb39114c24da2f4db0f14e.json +0 -1
  377. package/example/.expo/web/cache/development/babel-loader/4edc3be79a77498f1a49e373457124de.json +0 -1
  378. package/example/.expo/web/cache/development/babel-loader/4f17a38ef723d2f2f88ab36229447848.json +0 -1
  379. package/example/.expo/web/cache/development/babel-loader/5126e93c01ee93124a5e74d11303b9c8.json +0 -1
  380. package/example/.expo/web/cache/development/babel-loader/519238552f7ca486b938192b9cbcceae.json +0 -1
  381. package/example/.expo/web/cache/development/babel-loader/51e20d90ac5c3b788724e38bc5e13ee7.json +0 -1
  382. package/example/.expo/web/cache/development/babel-loader/51ffa5d7f07c4e3b52983176341b22b3.json +0 -1
  383. package/example/.expo/web/cache/development/babel-loader/5201a3d9e11e2395d17ce85a968b6df9.json +0 -1
  384. package/example/.expo/web/cache/development/babel-loader/520bb792f23fb5a5b75ba6b1671f10ec.json +0 -1
  385. package/example/.expo/web/cache/development/babel-loader/523038c6dc8ac0e76ef7a23d3eed51ec.json +0 -1
  386. package/example/.expo/web/cache/development/babel-loader/532fa6c08d38d3c6de9df3cbc1e6a903.json +0 -1
  387. package/example/.expo/web/cache/development/babel-loader/5352894e73c9b0713f12df8da1c6b65c.json +0 -1
  388. package/example/.expo/web/cache/development/babel-loader/53bf8f177165c6b0e75a631aa4519d41.json +0 -1
  389. package/example/.expo/web/cache/development/babel-loader/53ea8a26aeb6e2759a7f1f5f4f56b6fb.json +0 -1
  390. package/example/.expo/web/cache/development/babel-loader/53eb0e5ade26fcf21aa38d9b826d4cda.json +0 -1
  391. package/example/.expo/web/cache/development/babel-loader/542e618262a94895f81236112129bd3e.json +0 -1
  392. package/example/.expo/web/cache/development/babel-loader/543d869d3c2430af923c1d46108f9dae.json +0 -1
  393. package/example/.expo/web/cache/development/babel-loader/546891698aff03b72ed2f6ceb6e7fa89.json +0 -1
  394. package/example/.expo/web/cache/development/babel-loader/5471a749a6e8af27964d87af251c688a.json +0 -1
  395. package/example/.expo/web/cache/development/babel-loader/547a11a6bdd8bda252dfd4614f815fbb.json +0 -1
  396. package/example/.expo/web/cache/development/babel-loader/5483ab9ca7310d6774314885fee2a973.json +0 -1
  397. package/example/.expo/web/cache/development/babel-loader/549d7a1c3d15fdb39d9bffcf267e3f56.json +0 -1
  398. package/example/.expo/web/cache/development/babel-loader/559811ff6c4183bb0704807cf5b76bab.json +0 -1
  399. package/example/.expo/web/cache/development/babel-loader/55add2461e97c93eb8aac04bb6999d6f.json +0 -1
  400. package/example/.expo/web/cache/development/babel-loader/55b3b5973e6de9b423b3ec627176a7f9.json +0 -1
  401. package/example/.expo/web/cache/development/babel-loader/566edd7dfdc185ef467beb97fcd9e08c.json +0 -1
  402. package/example/.expo/web/cache/development/babel-loader/567acdadac00f4c65b037849683131b6.json +0 -1
  403. package/example/.expo/web/cache/development/babel-loader/57892340c5b232df0a75f1339c9e68ce.json +0 -1
  404. package/example/.expo/web/cache/development/babel-loader/57cd82470f76c034961fe1236302abfe.json +0 -1
  405. package/example/.expo/web/cache/development/babel-loader/586d05cc2c149bd7435298a982b57d60.json +0 -1
  406. package/example/.expo/web/cache/development/babel-loader/591c326572f80891b2f6d7132b21a0d9.json +0 -1
  407. package/example/.expo/web/cache/development/babel-loader/5954d33f838e7e341ebe043096ac7fe5.json +0 -1
  408. package/example/.expo/web/cache/development/babel-loader/5a07d6d40bd575c25f45538b187acd8a.json +0 -1
  409. package/example/.expo/web/cache/development/babel-loader/5a27a1760bd4f6407b1fea26715a87bc.json +0 -1
  410. package/example/.expo/web/cache/development/babel-loader/5a3c1683e7539c1e4776da78585fd8e6.json +0 -1
  411. package/example/.expo/web/cache/development/babel-loader/5b1b8b74a9c8d3d83bc0cb2749d3caa5.json +0 -1
  412. package/example/.expo/web/cache/development/babel-loader/5b2be6beae3ed7b57f46641414303cf3.json +0 -1
  413. package/example/.expo/web/cache/development/babel-loader/5b36330631e46bbf63f870970b2122f7.json +0 -1
  414. package/example/.expo/web/cache/development/babel-loader/5b9bc4b234aa59e34135748fd93507b6.json +0 -1
  415. package/example/.expo/web/cache/development/babel-loader/5c0087a9595888025264a9904d1b8eef.json +0 -1
  416. package/example/.expo/web/cache/development/babel-loader/5d16233202c82021ddec174b9bb58863.json +0 -1
  417. package/example/.expo/web/cache/development/babel-loader/5d569557de3b7d5fa8afc576ac512a04.json +0 -1
  418. package/example/.expo/web/cache/development/babel-loader/5d646ca9aa7f759e829259ce504269e2.json +0 -1
  419. package/example/.expo/web/cache/development/babel-loader/5e0932b9d9679774ae121857f94d9922.json +0 -1
  420. package/example/.expo/web/cache/development/babel-loader/5e4f424ae34ce824d1a402729f6a057e.json +0 -1
  421. package/example/.expo/web/cache/development/babel-loader/5e51328fa08bebd0d74b50fb0e6c8097.json +0 -1
  422. package/example/.expo/web/cache/development/babel-loader/5eef44eed8ccb290fe3456e2fe6bf8ed.json +0 -1
  423. package/example/.expo/web/cache/development/babel-loader/5f8621a10c1e567488ff251972a23c6d.json +0 -1
  424. package/example/.expo/web/cache/development/babel-loader/5fd990c9fafaaa91d54e872f7ce7051d.json +0 -1
  425. package/example/.expo/web/cache/development/babel-loader/6024b3f768564aaeb1361263b0202a14.json +0 -1
  426. package/example/.expo/web/cache/development/babel-loader/60303fed71faeaa68ab30e8692335712.json +0 -1
  427. package/example/.expo/web/cache/development/babel-loader/6132085808aa3dcaf4042b13715c74cd.json +0 -1
  428. package/example/.expo/web/cache/development/babel-loader/616140663303400e490ae1f8789bf33f.json +0 -1
  429. package/example/.expo/web/cache/development/babel-loader/61cfc5a0e7335e0b9a219b1cbe277614.json +0 -1
  430. package/example/.expo/web/cache/development/babel-loader/620f55f17382101002e5e9426ce3e366.json +0 -1
  431. package/example/.expo/web/cache/development/babel-loader/62676c7e580c2e05b3597d53b1cec852.json +0 -1
  432. package/example/.expo/web/cache/development/babel-loader/62f012bfa58863dc3ea69f00f9b90a77.json +0 -1
  433. package/example/.expo/web/cache/development/babel-loader/63167719609db00ff2d6a4eb74823f20.json +0 -1
  434. package/example/.expo/web/cache/development/babel-loader/6320f4e69400d39312489472d7f26d50.json +0 -1
  435. package/example/.expo/web/cache/development/babel-loader/63a9473d63154c31603b1ec1c728c8ab.json +0 -1
  436. package/example/.expo/web/cache/development/babel-loader/63bae7aa325e3c82ba555ac19c0912fa.json +0 -1
  437. package/example/.expo/web/cache/development/babel-loader/63c7331c32b247560f7318cb076a7c40.json +0 -1
  438. package/example/.expo/web/cache/development/babel-loader/645eaa3c12cea785d12fed54225c1bad.json +0 -1
  439. package/example/.expo/web/cache/development/babel-loader/64ed04fe3e08408b9268fec4dd1df52a.json +0 -1
  440. package/example/.expo/web/cache/development/babel-loader/64f7c8f31e295eee69738bfe05c5bff5.json +0 -1
  441. package/example/.expo/web/cache/development/babel-loader/6526a4a40bd385a0266a45ad7f92898c.json +0 -1
  442. package/example/.expo/web/cache/development/babel-loader/652ab844f358ceb6b4625544fa5d2f99.json +0 -1
  443. package/example/.expo/web/cache/development/babel-loader/662cbc71202b18650b3fa438c128b6fd.json +0 -1
  444. package/example/.expo/web/cache/development/babel-loader/6633c8b78925e32b5c2ea2fb14d284c9.json +0 -1
  445. package/example/.expo/web/cache/development/babel-loader/66ff90fd72218dd01d86a97baa645867.json +0 -1
  446. package/example/.expo/web/cache/development/babel-loader/6775a5f5c0d419a5bcd1bc6b853bf2b6.json +0 -1
  447. package/example/.expo/web/cache/development/babel-loader/679e5028f6e8af7b6b756a4a21a23a37.json +0 -1
  448. package/example/.expo/web/cache/development/babel-loader/67c83f864d1331ff4472cd80a74b426b.json +0 -1
  449. package/example/.expo/web/cache/development/babel-loader/68189da0029a30976a2484255a17ce79.json +0 -1
  450. package/example/.expo/web/cache/development/babel-loader/68c4370b36da2b4d2f9e997b0b317baa.json +0 -1
  451. package/example/.expo/web/cache/development/babel-loader/696a6f2f23efafc28fc3c6d5b5ffaeac.json +0 -1
  452. package/example/.expo/web/cache/development/babel-loader/6991b1cd9f19326a94f92ef5b1b842a8.json +0 -1
  453. package/example/.expo/web/cache/development/babel-loader/6a68c0f3ae60b8004305422c65b03939.json +0 -1
  454. package/example/.expo/web/cache/development/babel-loader/6af277fa3a99d89d3b8476cc530dea86.json +0 -1
  455. package/example/.expo/web/cache/development/babel-loader/6b97a59c5465397dba921f389acaafdd.json +0 -1
  456. package/example/.expo/web/cache/development/babel-loader/6c27188040ae357512ee2f1ab094c885.json +0 -1
  457. package/example/.expo/web/cache/development/babel-loader/6c2f82c0db7403ccd4f19071f91173e4.json +0 -1
  458. package/example/.expo/web/cache/development/babel-loader/6c8a2848fe0f787148c2fb6de4264155.json +0 -1
  459. package/example/.expo/web/cache/development/babel-loader/6d10befa9b8f5fe2e6b3b97898fbf356.json +0 -1
  460. package/example/.expo/web/cache/development/babel-loader/6d187f42d86d8e0b9234c93f769710f3.json +0 -1
  461. package/example/.expo/web/cache/development/babel-loader/6d42eddc1aad6d2a82c7091e9ccce61b.json +0 -1
  462. package/example/.expo/web/cache/development/babel-loader/6d6f8b41da6a4ba792c39f671105e620.json +0 -1
  463. package/example/.expo/web/cache/development/babel-loader/6db157842077271e6cfe46d85f569c54.json +0 -1
  464. package/example/.expo/web/cache/development/babel-loader/6df029ffc4cb41be03ffeafb769bd625.json +0 -1
  465. package/example/.expo/web/cache/development/babel-loader/6e1b109f621c0d54775303f058483115.json +0 -1
  466. package/example/.expo/web/cache/development/babel-loader/6f12c17d739331ecffc1403342ba41da.json +0 -1
  467. package/example/.expo/web/cache/development/babel-loader/6f1e7f9957d00a46ac253b64011db52e.json +0 -1
  468. package/example/.expo/web/cache/development/babel-loader/6f81cab4add782ed35fd68ba00bb1d53.json +0 -1
  469. package/example/.expo/web/cache/development/babel-loader/6fd1661af13dedb5e44522d491a1caf6.json +0 -1
  470. package/example/.expo/web/cache/development/babel-loader/70011f5e5361437bcf72ec2b53fad9f0.json +0 -1
  471. package/example/.expo/web/cache/development/babel-loader/718db76d78154a4ae20c1822ca1b59ab.json +0 -1
  472. package/example/.expo/web/cache/development/babel-loader/71c89114f87eec2560a35accc6fb21d7.json +0 -1
  473. package/example/.expo/web/cache/development/babel-loader/71d0f6054d983d91726a1e45d65058af.json +0 -1
  474. package/example/.expo/web/cache/development/babel-loader/71f17bedd745f584f7abc4f4d51c7ad4.json +0 -1
  475. package/example/.expo/web/cache/development/babel-loader/72b944856e68e4a8a0ed8e4c2413070a.json +0 -1
  476. package/example/.expo/web/cache/development/babel-loader/740b2f1ab937b3d8fae7d547e9118390.json +0 -1
  477. package/example/.expo/web/cache/development/babel-loader/748a994e95eb1d1311d08dae70ff213a.json +0 -1
  478. package/example/.expo/web/cache/development/babel-loader/74b3b0d02f286a48fe045bb68c2a4650.json +0 -1
  479. package/example/.expo/web/cache/development/babel-loader/74d8aca04393d958004db6c2ef850b15.json +0 -1
  480. package/example/.expo/web/cache/development/babel-loader/74edf8cf133b616b8cc485e452e6d907.json +0 -1
  481. package/example/.expo/web/cache/development/babel-loader/750b4ff6e08ebbe4351e612b44e54b38.json +0 -1
  482. package/example/.expo/web/cache/development/babel-loader/75e5a5a17124546e2082576bf7d8a6d8.json +0 -1
  483. package/example/.expo/web/cache/development/babel-loader/75fd06c8f0f32fdf100a4b7359ad5f22.json +0 -1
  484. package/example/.expo/web/cache/development/babel-loader/760fa2ad4684296a4d8910efee774532.json +0 -1
  485. package/example/.expo/web/cache/development/babel-loader/765c63eb89770f11615c740460d8a605.json +0 -1
  486. package/example/.expo/web/cache/development/babel-loader/7695443a011b53044155a45950f64551.json +0 -1
  487. package/example/.expo/web/cache/development/babel-loader/76e3dcd07e85aecb3b5fe577d0486e26.json +0 -1
  488. package/example/.expo/web/cache/development/babel-loader/77348d41c4a630ac871ec1662d753572.json +0 -1
  489. package/example/.expo/web/cache/development/babel-loader/77a4283c1f4aa52a3ec7489dfcb4fd3c.json +0 -1
  490. package/example/.expo/web/cache/development/babel-loader/77c1d4c9c2134086a760c84c8dbb0767.json +0 -1
  491. package/example/.expo/web/cache/development/babel-loader/7856391ec0a27839d3fa6acbeb9aadda.json +0 -1
  492. package/example/.expo/web/cache/development/babel-loader/78d3d5bbf14c6f41859897e37d770fcf.json +0 -1
  493. package/example/.expo/web/cache/development/babel-loader/7937bbe97984684549fccfdfc1a73280.json +0 -1
  494. package/example/.expo/web/cache/development/babel-loader/79bb96062935d1e253162731ca79dbb6.json +0 -1
  495. package/example/.expo/web/cache/development/babel-loader/79c9840acdf1d5058d1dd9a3ee4c26a1.json +0 -1
  496. package/example/.expo/web/cache/development/babel-loader/79d14c794bf695a8710614f2650caadc.json +0 -1
  497. package/example/.expo/web/cache/development/babel-loader/79d484d4cd279cefd19f3ae34fbabc47.json +0 -1
  498. package/example/.expo/web/cache/development/babel-loader/7ac59aadbbeb87bbaa689455f49462e7.json +0 -1
  499. package/example/.expo/web/cache/development/babel-loader/7addb7eb6bdec7308191a341bbe4f418.json +0 -1
  500. package/example/.expo/web/cache/development/babel-loader/7bb5cc0a83aa7f2ec1bc4921f36d6701.json +0 -1
  501. package/example/.expo/web/cache/development/babel-loader/7c6b46cf1a8d27fbf10098fc7b3147d4.json +0 -1
  502. package/example/.expo/web/cache/development/babel-loader/7d920132c8d7c20e90bd5bfd33c0be91.json +0 -1
  503. package/example/.expo/web/cache/development/babel-loader/7dce022fc3dde6e47317238296fa51c3.json +0 -1
  504. package/example/.expo/web/cache/development/babel-loader/7e073695c8dd0edfff43941d69ed768f.json +0 -1
  505. package/example/.expo/web/cache/development/babel-loader/7ea547e52608eb3d07287f91483f92d0.json +0 -1
  506. package/example/.expo/web/cache/development/babel-loader/7edc461562b8366cb17cbd9a035662b5.json +0 -1
  507. package/example/.expo/web/cache/development/babel-loader/7ee8dc05c46a7508762c883a95e7b7f1.json +0 -1
  508. package/example/.expo/web/cache/development/babel-loader/7ef54a1c471f1e3e0f47cd0e29e7a015.json +0 -1
  509. package/example/.expo/web/cache/development/babel-loader/7ef704bca1ae363b883e828a3792675a.json +0 -1
  510. package/example/.expo/web/cache/development/babel-loader/7f523ccd852d399db517ddf7b3116aca.json +0 -1
  511. package/example/.expo/web/cache/development/babel-loader/7fc7e86041eed94f4e8d6d5dafa84ad9.json +0 -1
  512. package/example/.expo/web/cache/development/babel-loader/809f3bbbf8df916db606ac7c6aad7679.json +0 -1
  513. package/example/.expo/web/cache/development/babel-loader/80b2a7b63d2968f55ad413f37a77625e.json +0 -1
  514. package/example/.expo/web/cache/development/babel-loader/80bf3fd8e842cdb42492a17c8e1bed27.json +0 -1
  515. package/example/.expo/web/cache/development/babel-loader/80c8813cbd81ff6bbad4196d310f709c.json +0 -1
  516. package/example/.expo/web/cache/development/babel-loader/80e857d5e29a2374c9308de8cdbcf421.json +0 -1
  517. package/example/.expo/web/cache/development/babel-loader/81010ad113a890d5fd8280953e708d5e.json +0 -1
  518. package/example/.expo/web/cache/development/babel-loader/817c660469ce59fcb822c4858ad94b5d.json +0 -1
  519. package/example/.expo/web/cache/development/babel-loader/818e78aae9f71eaaa831b03d937efe68.json +0 -1
  520. package/example/.expo/web/cache/development/babel-loader/819d6861eddf73de1d685137ffd3b3d5.json +0 -1
  521. package/example/.expo/web/cache/development/babel-loader/81da8afb512f1fe3dc5283eed7693dc3.json +0 -1
  522. package/example/.expo/web/cache/development/babel-loader/83675b83ee348c8306591395e5bfd9e8.json +0 -1
  523. package/example/.expo/web/cache/development/babel-loader/83ce5beb699584197b95c23e16070359.json +0 -1
  524. package/example/.expo/web/cache/development/babel-loader/848d32a1afa411eb58fbde9a4e8be7a7.json +0 -1
  525. package/example/.expo/web/cache/development/babel-loader/84947f8673db23ad699799dd21bbdd50.json +0 -1
  526. package/example/.expo/web/cache/development/babel-loader/84cbca54aad0ba7ad9155efbe50994e6.json +0 -1
  527. package/example/.expo/web/cache/development/babel-loader/8687b87c118edd0ea36f77148c0a0ae6.json +0 -1
  528. package/example/.expo/web/cache/development/babel-loader/86aa7c8020aadae1b6047e779a070006.json +0 -1
  529. package/example/.expo/web/cache/development/babel-loader/86e1e81a50d45527c06815f7b22d3cfb.json +0 -1
  530. package/example/.expo/web/cache/development/babel-loader/873f17ead5c8a3a89f8c307d3fc3d749.json +0 -1
  531. package/example/.expo/web/cache/development/babel-loader/8768cca418ed67067f18960d229888f1.json +0 -1
  532. package/example/.expo/web/cache/development/babel-loader/889da18092544dc720e42ab160a8ca77.json +0 -1
  533. package/example/.expo/web/cache/development/babel-loader/88fd90442a3cd6528e4248e448007e21.json +0 -1
  534. package/example/.expo/web/cache/development/babel-loader/8947ed6ed81ae1ed2f0d1a5f7a21d4bd.json +0 -1
  535. package/example/.expo/web/cache/development/babel-loader/8a1fbcc937fc9672938d71108f51bfd3.json +0 -1
  536. package/example/.expo/web/cache/development/babel-loader/8a809e18963b1a79d7db704eb9e814b3.json +0 -1
  537. package/example/.expo/web/cache/development/babel-loader/8b0fa6466bfbb43efbc8a796bb0a058f.json +0 -1
  538. package/example/.expo/web/cache/development/babel-loader/8b4cf44a2020fd3061929214e66d69ce.json +0 -1
  539. package/example/.expo/web/cache/development/babel-loader/8bcdd0d74f6bf06c96dc636553f1ada8.json +0 -1
  540. package/example/.expo/web/cache/development/babel-loader/8bf958e697bf3ce69193447f5797f8ad.json +0 -1
  541. package/example/.expo/web/cache/development/babel-loader/8bfd7063b443cb17646e674300dd862b.json +0 -1
  542. package/example/.expo/web/cache/development/babel-loader/8c61c708fafabf1296dd0daf5e7910eb.json +0 -1
  543. package/example/.expo/web/cache/development/babel-loader/8d06501d3b127619583bc480630ad389.json +0 -1
  544. package/example/.expo/web/cache/development/babel-loader/8d60a937161579013d137028e30e0922.json +0 -1
  545. package/example/.expo/web/cache/development/babel-loader/8d9e770602734e0d230feafb37171ca8.json +0 -1
  546. package/example/.expo/web/cache/development/babel-loader/8dbfb280c88ee5948b0a3cc84074bd43.json +0 -1
  547. package/example/.expo/web/cache/development/babel-loader/8df99953a7fe26875c55c9bc1e71ca29.json +0 -1
  548. package/example/.expo/web/cache/development/babel-loader/8e29eb23e29046c8b921236d322c844d.json +0 -1
  549. package/example/.expo/web/cache/development/babel-loader/8e7ea386f4f497f8c5e0a4a9b80b093a.json +0 -1
  550. package/example/.expo/web/cache/development/babel-loader/8edadce2f5d679a4a225dc8a0ed0599e.json +0 -1
  551. package/example/.expo/web/cache/development/babel-loader/8eddce3de502ba26239bdaa0931abf8a.json +0 -1
  552. package/example/.expo/web/cache/development/babel-loader/8efad0218d4db05da11e8e21002ac55e.json +0 -1
  553. package/example/.expo/web/cache/development/babel-loader/8f6e1de5d12755c13e6c50a07e2d0778.json +0 -1
  554. package/example/.expo/web/cache/development/babel-loader/8faa2e1b05e23388f0f3f9b70ed4132f.json +0 -1
  555. package/example/.expo/web/cache/development/babel-loader/9076afdc7c80bd4772da54abf2e574c8.json +0 -1
  556. package/example/.expo/web/cache/development/babel-loader/90b795975488ffe15936e61c096fa274.json +0 -1
  557. package/example/.expo/web/cache/development/babel-loader/91ed31500f942f97aec1be73e89a7af8.json +0 -1
  558. package/example/.expo/web/cache/development/babel-loader/9252abf85af8c03f427a2e2117a1ad62.json +0 -1
  559. package/example/.expo/web/cache/development/babel-loader/92b72e3964caccd73a132a988edcfae7.json +0 -1
  560. package/example/.expo/web/cache/development/babel-loader/935c5281811e7023b78c26038f5c44a3.json +0 -1
  561. package/example/.expo/web/cache/development/babel-loader/93945109a64716fc3d15a12d81598ef8.json +0 -1
  562. package/example/.expo/web/cache/development/babel-loader/93ee4950a9326c046f9fa65c13dac411.json +0 -1
  563. package/example/.expo/web/cache/development/babel-loader/93fe9632bb5db4ded992478e2af27d5f.json +0 -1
  564. package/example/.expo/web/cache/development/babel-loader/942ff966d1b2f375164a20370f75739c.json +0 -1
  565. package/example/.expo/web/cache/development/babel-loader/94ec82e971c8bd617ccb1f371516f99e.json +0 -1
  566. package/example/.expo/web/cache/development/babel-loader/952e79673cf0149b0385a4867bf28431.json +0 -1
  567. package/example/.expo/web/cache/development/babel-loader/952e86a021d3f8c00af76e77a3a2b421.json +0 -1
  568. package/example/.expo/web/cache/development/babel-loader/954ad5b7f72730fad3a93e8333b0da09.json +0 -1
  569. package/example/.expo/web/cache/development/babel-loader/957a301738f627a164ba1d2ab1bd927b.json +0 -1
  570. package/example/.expo/web/cache/development/babel-loader/957bea32dcc83e0fc7f2fd8795a8f818.json +0 -1
  571. package/example/.expo/web/cache/development/babel-loader/95894f21da81a853a458c13777d475ab.json +0 -1
  572. package/example/.expo/web/cache/development/babel-loader/96026b04efb214a46b3cb671312b9b6e.json +0 -1
  573. package/example/.expo/web/cache/development/babel-loader/960a64fc351e2a3b4224ffa3e526620b.json +0 -1
  574. package/example/.expo/web/cache/development/babel-loader/964cb097c867a1ded7eb7446f5548c22.json +0 -1
  575. package/example/.expo/web/cache/development/babel-loader/96cc9216a7d44bd92538b1a20e558b4a.json +0 -1
  576. package/example/.expo/web/cache/development/babel-loader/9768f896dd4e5f489c2d032e95b359a8.json +0 -1
  577. package/example/.expo/web/cache/development/babel-loader/9897d6fc1bbe153c542e6c7b35d22d2c.json +0 -1
  578. package/example/.expo/web/cache/development/babel-loader/98e4f7e158718137c26f2fe60b84369d.json +0 -1
  579. package/example/.expo/web/cache/development/babel-loader/9968019b9a7a89353b231c231c18a66f.json +0 -1
  580. package/example/.expo/web/cache/development/babel-loader/9a79db1b3eebf8a5a21a547ae71b6eee.json +0 -1
  581. package/example/.expo/web/cache/development/babel-loader/9ae989e87da92329c1f285a30c2be6f5.json +0 -1
  582. package/example/.expo/web/cache/development/babel-loader/9b3faa43b9b4d167e300792bd71300eb.json +0 -1
  583. package/example/.expo/web/cache/development/babel-loader/9ba4ab6ad62c186c10cc4440ed5f54a7.json +0 -1
  584. package/example/.expo/web/cache/development/babel-loader/9c3e01d3c2e1b6b20754bce294a85963.json +0 -1
  585. package/example/.expo/web/cache/development/babel-loader/9c9dd82e74356025c246d4ef7138a9a9.json +0 -1
  586. package/example/.expo/web/cache/development/babel-loader/9cb7fabe07406a89bdd8ec845495d384.json +0 -1
  587. package/example/.expo/web/cache/development/babel-loader/9ce0ea8540198d071a57d36dae227cbc.json +0 -1
  588. package/example/.expo/web/cache/development/babel-loader/9ce1f17dbfd3a985336dbf39e4903aa3.json +0 -1
  589. package/example/.expo/web/cache/development/babel-loader/9d2bab4aa3187dee265f1d9c8ce6f0f6.json +0 -1
  590. package/example/.expo/web/cache/development/babel-loader/9de726a6e25216c1ce763780ccfd2b77.json +0 -1
  591. package/example/.expo/web/cache/development/babel-loader/9e653ee142610f0516609ca3fb386739.json +0 -1
  592. package/example/.expo/web/cache/development/babel-loader/9e75ea79fea0209053c68ef4989b4a3a.json +0 -1
  593. package/example/.expo/web/cache/development/babel-loader/9f2f6a11de269026061831c947435758.json +0 -1
  594. package/example/.expo/web/cache/development/babel-loader/9f3fd9ca3231e3002df99db9d9616aa0.json +0 -1
  595. package/example/.expo/web/cache/development/babel-loader/9f84af378326a4f43f51f4afca0a4738.json +0 -1
  596. package/example/.expo/web/cache/development/babel-loader/9f904b29589b10b747085de3c6cfd4be.json +0 -1
  597. package/example/.expo/web/cache/development/babel-loader/a012778b5e674c9eb2944f5e6f50089d.json +0 -1
  598. package/example/.expo/web/cache/development/babel-loader/a076afeae19d4e15321e5d81cf41364a.json +0 -1
  599. package/example/.expo/web/cache/development/babel-loader/a174e09c0cfac080977d6f4995806b79.json +0 -1
  600. package/example/.expo/web/cache/development/babel-loader/a1a9e264a5d28df52eea40ebbe178511.json +0 -1
  601. package/example/.expo/web/cache/development/babel-loader/a261d7c057c570a5d74c5c84cc08e7f9.json +0 -1
  602. package/example/.expo/web/cache/development/babel-loader/a32a4d0daa4eb62756e1bb71d418598b.json +0 -1
  603. package/example/.expo/web/cache/development/babel-loader/a3611e076e067e7397bd47a9ebe95cf1.json +0 -1
  604. package/example/.expo/web/cache/development/babel-loader/a375a3eadad6ab2ce64ed38759b31415.json +0 -1
  605. package/example/.expo/web/cache/development/babel-loader/a375f7f9388cd549b5342455f032cb24.json +0 -1
  606. package/example/.expo/web/cache/development/babel-loader/a3b99e0ec7f17e098c6b02a04282d805.json +0 -1
  607. package/example/.expo/web/cache/development/babel-loader/a3bde08c6c572203f93bcfa1170d4790.json +0 -1
  608. package/example/.expo/web/cache/development/babel-loader/a3bf51a1af912c42396b784cf9851941.json +0 -1
  609. package/example/.expo/web/cache/development/babel-loader/a48b6217b860aab3e81b366a7306ee03.json +0 -1
  610. package/example/.expo/web/cache/development/babel-loader/a4d591b829ddddd57e666af1737b9d34.json +0 -1
  611. package/example/.expo/web/cache/development/babel-loader/a5439975918b87c11694b33af83dab36.json +0 -1
  612. package/example/.expo/web/cache/development/babel-loader/a5813eb247e0c87dcc99934f4b49ae48.json +0 -1
  613. package/example/.expo/web/cache/development/babel-loader/a584b9a0fe744b07e9054b7aa6e79f77.json +0 -1
  614. package/example/.expo/web/cache/development/babel-loader/a5aef7be4e09d6c659add5a82eb53b1e.json +0 -1
  615. package/example/.expo/web/cache/development/babel-loader/a630d58e39a9a6af1ce5a8e06315ce60.json +0 -1
  616. package/example/.expo/web/cache/development/babel-loader/a657ac811bb44819902726e55617b187.json +0 -1
  617. package/example/.expo/web/cache/development/babel-loader/a689718c369fcd0f651d9089f15f507e.json +0 -1
  618. package/example/.expo/web/cache/development/babel-loader/a6ba6a443c1adacdf7d7744a2af54267.json +0 -1
  619. package/example/.expo/web/cache/development/babel-loader/a78dc48e202b1f3be61ef3bc64699d14.json +0 -1
  620. package/example/.expo/web/cache/development/babel-loader/a79a096843947a83012402bb34b93567.json +0 -1
  621. package/example/.expo/web/cache/development/babel-loader/a85c03e40f8477a0a5885f01166a8aa7.json +0 -1
  622. package/example/.expo/web/cache/development/babel-loader/a92b432753e23bcc2919242ff345817f.json +0 -1
  623. package/example/.expo/web/cache/development/babel-loader/aa060898cdab84d74c3084628c331eeb.json +0 -1
  624. package/example/.expo/web/cache/development/babel-loader/aa0e6e0aa152ebcb49584ecc82533c72.json +0 -1
  625. package/example/.expo/web/cache/development/babel-loader/aa2c33a01bdef3dd64263863d5e1e71f.json +0 -1
  626. package/example/.expo/web/cache/development/babel-loader/aa62c823f7515beb060c751cde5365f2.json +0 -1
  627. package/example/.expo/web/cache/development/babel-loader/aad65600986e893d97dd5efbbc82bc19.json +0 -1
  628. package/example/.expo/web/cache/development/babel-loader/aad865b4c9160b648a082ba72163d00c.json +0 -1
  629. package/example/.expo/web/cache/development/babel-loader/ab8d4e4e90a2ad47b37f4e4d73fb69cf.json +0 -1
  630. package/example/.expo/web/cache/development/babel-loader/abfc16406c69f7727d3e40be1f492f11.json +0 -1
  631. package/example/.expo/web/cache/development/babel-loader/ac5ac27f40cd535964ff8a0f4a7ee169.json +0 -1
  632. package/example/.expo/web/cache/development/babel-loader/ac5c7f32acb8bbc71777904317929782.json +0 -1
  633. package/example/.expo/web/cache/development/babel-loader/acb7d1ebf630de004fdbf4297073c72b.json +0 -1
  634. package/example/.expo/web/cache/development/babel-loader/acc343298b9d93f37fea5d0160a6e4ba.json +0 -1
  635. package/example/.expo/web/cache/development/babel-loader/accfde63bc7861836c7d96f0edf99e15.json +0 -1
  636. package/example/.expo/web/cache/development/babel-loader/adb3227b48b17f020618b5e6ae28e5a1.json +0 -1
  637. package/example/.expo/web/cache/development/babel-loader/ae62b71356d25980c16ffb81fe2d38be.json +0 -1
  638. package/example/.expo/web/cache/development/babel-loader/aebf66a0b170878a4c0f484faab92c87.json +0 -1
  639. package/example/.expo/web/cache/development/babel-loader/aeda03d4168ed94c7b1e5436bf2e55d2.json +0 -1
  640. package/example/.expo/web/cache/development/babel-loader/af3dd17c6ef8154cf4971c88c6eb677e.json +0 -1
  641. package/example/.expo/web/cache/development/babel-loader/affcd570f78182f4e48f1e0339274e7d.json +0 -1
  642. package/example/.expo/web/cache/development/babel-loader/b07b004dd4b5be9c751c59934a92f7b1.json +0 -1
  643. package/example/.expo/web/cache/development/babel-loader/b07cfabfb81a762e3e63a2af6bada32a.json +0 -1
  644. package/example/.expo/web/cache/development/babel-loader/b0a4e8cf7a76d3009a62200ed32812d9.json +0 -1
  645. package/example/.expo/web/cache/development/babel-loader/b1661b3c840f0f1de996ba1d52a39764.json +0 -1
  646. package/example/.expo/web/cache/development/babel-loader/b18b69c1c5e4f8cf7c4ded4ea78be1b5.json +0 -1
  647. package/example/.expo/web/cache/development/babel-loader/b265f89f5ab4c2ac5fe0a4efeb01770f.json +0 -1
  648. package/example/.expo/web/cache/development/babel-loader/b32b03cd1b812594924db2f0dadb2f56.json +0 -1
  649. package/example/.expo/web/cache/development/babel-loader/b36ad3720ed8bc69cd40bacd30394013.json +0 -1
  650. package/example/.expo/web/cache/development/babel-loader/b39994cdb5251061c12396c51a2a4df5.json +0 -1
  651. package/example/.expo/web/cache/development/babel-loader/b3bd282bfd66e7c6728dc9e033e2e5b7.json +0 -1
  652. package/example/.expo/web/cache/development/babel-loader/b4914db154b01908445f8961813335bb.json +0 -1
  653. package/example/.expo/web/cache/development/babel-loader/b5d4cbb6bcdc394e0d5535f5bbf695e3.json +0 -1
  654. package/example/.expo/web/cache/development/babel-loader/b5e102a7b193d671228f7ddc03e9762f.json +0 -1
  655. package/example/.expo/web/cache/development/babel-loader/b64b0b9559bbba155f24caa6cf08f433.json +0 -1
  656. package/example/.expo/web/cache/development/babel-loader/b64d7ed6cc2651e474b668ca64580004.json +0 -1
  657. package/example/.expo/web/cache/development/babel-loader/b6e50485f89d6d18b20ec92af1d7d77a.json +0 -1
  658. package/example/.expo/web/cache/development/babel-loader/b7cd5dd20bda33ddccdb5231ae48ab94.json +0 -1
  659. package/example/.expo/web/cache/development/babel-loader/b8dfa5de3c421f70e9db524804d13b84.json +0 -1
  660. package/example/.expo/web/cache/development/babel-loader/b919a51bbe877fb67940240410ab8e17.json +0 -1
  661. package/example/.expo/web/cache/development/babel-loader/b946671feb92e88b439dd8ef2a6c5986.json +0 -1
  662. package/example/.expo/web/cache/development/babel-loader/b94c620fffaf0aee6db1c4d1956ad196.json +0 -1
  663. package/example/.expo/web/cache/development/babel-loader/b9f7f88c506aab3dbc0a17a697f9d1cb.json +0 -1
  664. package/example/.expo/web/cache/development/babel-loader/ba8d26034676cafb0e6da5d28881d723.json +0 -1
  665. package/example/.expo/web/cache/development/babel-loader/bb3f7c789c7832591535d92e860b66ed.json +0 -1
  666. package/example/.expo/web/cache/development/babel-loader/bb8a76115e7279a8f704a1eba275902b.json +0 -1
  667. package/example/.expo/web/cache/development/babel-loader/bbfb771df3000d27f236c2f6538e6d31.json +0 -1
  668. package/example/.expo/web/cache/development/babel-loader/bc341b30ec186150a32a98e338033719.json +0 -1
  669. package/example/.expo/web/cache/development/babel-loader/bc3aae58b847f110df0eb389edd4b86b.json +0 -1
  670. package/example/.expo/web/cache/development/babel-loader/bca25eae1165828580cc055637bfac27.json +0 -1
  671. package/example/.expo/web/cache/development/babel-loader/bcd08666cb6eeb4d7141e38e753e5e5c.json +0 -1
  672. package/example/.expo/web/cache/development/babel-loader/bcf66f748963f3ac26d26df58fe29f77.json +0 -1
  673. package/example/.expo/web/cache/development/babel-loader/bd0b7e29ca8c871961c647db1d07050e.json +0 -1
  674. package/example/.expo/web/cache/development/babel-loader/be9a424fb2eb94b49c7c3b6ce0c07d19.json +0 -1
  675. package/example/.expo/web/cache/development/babel-loader/bea462878f1e660514793ed06a1be72e.json +0 -1
  676. package/example/.expo/web/cache/development/babel-loader/beef69cc65e73363978524809c84094f.json +0 -1
  677. package/example/.expo/web/cache/development/babel-loader/bf018174df7cdbed5ae77cf03c266fee.json +0 -1
  678. package/example/.expo/web/cache/development/babel-loader/bf53ba81ac3956a07f41a09fa6c4fa7e.json +0 -1
  679. package/example/.expo/web/cache/development/babel-loader/c13c2416aaeb1b85aa8681b0f41fa17e.json +0 -1
  680. package/example/.expo/web/cache/development/babel-loader/c15cb7604e78e9a4f0cc5e4b79a227c2.json +0 -1
  681. package/example/.expo/web/cache/development/babel-loader/c20807f969171763f83e5286ffb7183c.json +0 -1
  682. package/example/.expo/web/cache/development/babel-loader/c2b339b8db3daa5a91ca22f4fe923857.json +0 -1
  683. package/example/.expo/web/cache/development/babel-loader/c2f4ad9f921da12100f998440b20370a.json +0 -1
  684. package/example/.expo/web/cache/development/babel-loader/c303af92e5dd411ca77f22bca1971ccb.json +0 -1
  685. package/example/.expo/web/cache/development/babel-loader/c309e4999a3ca5404709ed911ec9fdda.json +0 -1
  686. package/example/.expo/web/cache/development/babel-loader/c37b2427c54ed0b731d9413ea475f338.json +0 -1
  687. package/example/.expo/web/cache/development/babel-loader/c390729cb76084d27a499d8b5e574ad0.json +0 -1
  688. package/example/.expo/web/cache/development/babel-loader/c3ad64ca938631bdcd3142591dcd02d7.json +0 -1
  689. package/example/.expo/web/cache/development/babel-loader/c43017273abd7760afa188cb903bfa5d.json +0 -1
  690. package/example/.expo/web/cache/development/babel-loader/c466e35c5dbd7ca225f190ac4fe983aa.json +0 -1
  691. package/example/.expo/web/cache/development/babel-loader/c4d9f3709efea05dfe51b5b3ae5d4ad1.json +0 -1
  692. package/example/.expo/web/cache/development/babel-loader/c4e1eebafffb0724425df5b45f08c358.json +0 -1
  693. package/example/.expo/web/cache/development/babel-loader/c5134c3fb7b800b1c9b34655b8e97e4f.json +0 -1
  694. package/example/.expo/web/cache/development/babel-loader/c558bd553a6d00a518a39a9a60004a64.json +0 -1
  695. package/example/.expo/web/cache/development/babel-loader/c5964edc803e4bb08165c72d27ca0e53.json +0 -1
  696. package/example/.expo/web/cache/development/babel-loader/c5d4c8ee363ae3a19cd02a3f9817b3b1.json +0 -1
  697. package/example/.expo/web/cache/development/babel-loader/c5dfb4580aa26cba8a25198c3894b453.json +0 -1
  698. package/example/.expo/web/cache/development/babel-loader/c62552ef04c76cdb7a94ba2f041360ac.json +0 -1
  699. package/example/.expo/web/cache/development/babel-loader/c69144c50f8f0d981b66c62204aaae74.json +0 -1
  700. package/example/.expo/web/cache/development/babel-loader/c733b561ef63b80564242d9b6f4954ec.json +0 -1
  701. package/example/.expo/web/cache/development/babel-loader/c78a01224ddb57513f9dc1603e721184.json +0 -1
  702. package/example/.expo/web/cache/development/babel-loader/c800cb1a4eccf4cc18e1408cf178b86d.json +0 -1
  703. package/example/.expo/web/cache/development/babel-loader/c8c61768113386918420fa8baaa34704.json +0 -1
  704. package/example/.expo/web/cache/development/babel-loader/c94104801dfb90a18288b87decb3c7b3.json +0 -1
  705. package/example/.expo/web/cache/development/babel-loader/c965c4dd6cfbe1acc5984c0f27e69884.json +0 -1
  706. package/example/.expo/web/cache/development/babel-loader/c98f4ddefa349e6a50f455783f82f960.json +0 -1
  707. package/example/.expo/web/cache/development/babel-loader/ca0c207f9e3ba434db8f3775513736e6.json +0 -1
  708. package/example/.expo/web/cache/development/babel-loader/ca4498d52ea6fed7e01c9ed5c26fcf95.json +0 -1
  709. package/example/.expo/web/cache/development/babel-loader/ca73168f6c95cb078c01776ef4bd512d.json +0 -1
  710. package/example/.expo/web/cache/development/babel-loader/cb195f5c63902492b91ca4c2f455b400.json +0 -1
  711. package/example/.expo/web/cache/development/babel-loader/cba71c3eea31dc8ca85b9ced8f7b1720.json +0 -1
  712. package/example/.expo/web/cache/development/babel-loader/cc2ae312a6441a2fedd76ee22ac87d51.json +0 -1
  713. package/example/.expo/web/cache/development/babel-loader/cc37b4c4f23da7c9d04d8693a5bbaaab.json +0 -1
  714. package/example/.expo/web/cache/development/babel-loader/cced66a0b48653e5bfa98910a88f9fba.json +0 -1
  715. package/example/.expo/web/cache/development/babel-loader/cd081f2f623635b6965d7656912be1f6.json +0 -1
  716. package/example/.expo/web/cache/development/babel-loader/cd0e23910d814598adda82d05396be53.json +0 -1
  717. package/example/.expo/web/cache/development/babel-loader/cd55e478acd924f5c082f02840ed8bbb.json +0 -1
  718. package/example/.expo/web/cache/development/babel-loader/cd6e9b147db4f5e3265bf18542f6201b.json +0 -1
  719. package/example/.expo/web/cache/development/babel-loader/cd8b6c6cd6a24fa61739c4d22dda95f8.json +0 -1
  720. package/example/.expo/web/cache/development/babel-loader/cdf6fa5dcab6f3a13fa07e89fe985423.json +0 -1
  721. package/example/.expo/web/cache/development/babel-loader/ce580f3605e11ce41ca71abf9fb32fc7.json +0 -1
  722. package/example/.expo/web/cache/development/babel-loader/cec065a6035ae98d73359c588d92c8c8.json +0 -1
  723. package/example/.expo/web/cache/development/babel-loader/ceccb76ea280ae97ededa88718ed0c3b.json +0 -1
  724. package/example/.expo/web/cache/development/babel-loader/cfc467109de81a77ce3d683966f4b354.json +0 -1
  725. package/example/.expo/web/cache/development/babel-loader/d046df5680cd4056bdf827f416d3c8b2.json +0 -1
  726. package/example/.expo/web/cache/development/babel-loader/d0c3cb818782b9a81bfc30385f72b89b.json +0 -1
  727. package/example/.expo/web/cache/development/babel-loader/d0fcdc8e889d972bbb4337e548164f40.json +0 -1
  728. package/example/.expo/web/cache/development/babel-loader/d15a3ca0ba45f6a6cbb1b63b7810e35e.json +0 -1
  729. package/example/.expo/web/cache/development/babel-loader/d168cd3939b990979e911bb032f8577b.json +0 -1
  730. package/example/.expo/web/cache/development/babel-loader/d1836b27a3272be99da18e96bc42dab6.json +0 -1
  731. package/example/.expo/web/cache/development/babel-loader/d282ac03fe3d6ac05de4538ce1e9c00e.json +0 -1
  732. package/example/.expo/web/cache/development/babel-loader/d2eb6efe4ffa76b3cab0af535e1e52fe.json +0 -1
  733. package/example/.expo/web/cache/development/babel-loader/d2fc7ecda4f6641f8d52e406be776196.json +0 -1
  734. package/example/.expo/web/cache/development/babel-loader/d358f00c23a45360cbb79dabdb721cd1.json +0 -1
  735. package/example/.expo/web/cache/development/babel-loader/d3d5e2781dd751c30bcaeef2108a4bbd.json +0 -1
  736. package/example/.expo/web/cache/development/babel-loader/d45d41c244dad2c3ea03ba49a46a0423.json +0 -1
  737. package/example/.expo/web/cache/development/babel-loader/d4f6275737ee0b15864d1784084ec4e9.json +0 -1
  738. package/example/.expo/web/cache/development/babel-loader/d5420905583aa27006ceaa13da6b662a.json +0 -1
  739. package/example/.expo/web/cache/development/babel-loader/d5552d7ee552fec6e21e0b398feb3ddb.json +0 -1
  740. package/example/.expo/web/cache/development/babel-loader/d5cec4c149045421487b8541b94a68b3.json +0 -1
  741. package/example/.expo/web/cache/development/babel-loader/d5e957af6e309a776341859d38205ccc.json +0 -1
  742. package/example/.expo/web/cache/development/babel-loader/d6374eec0b6eb2d7538d7ec9d51fe7dd.json +0 -1
  743. package/example/.expo/web/cache/development/babel-loader/d6c8e8d8e2fa01556286c656b2fd470b.json +0 -1
  744. package/example/.expo/web/cache/development/babel-loader/d72ee3cf688a67b27f18b05bef74d879.json +0 -1
  745. package/example/.expo/web/cache/development/babel-loader/d7573bf1b493a896066b6f45d9c7aa77.json +0 -1
  746. package/example/.expo/web/cache/development/babel-loader/d797775538f909e9de0d644bcf0389e4.json +0 -1
  747. package/example/.expo/web/cache/development/babel-loader/d7a4ea460412fb0fca3860f1e0126113.json +0 -1
  748. package/example/.expo/web/cache/development/babel-loader/d7cfda25d1654f23b9938352b3e5f0fd.json +0 -1
  749. package/example/.expo/web/cache/development/babel-loader/d7f22047db03832a0314db9bb7c9e4e8.json +0 -1
  750. package/example/.expo/web/cache/development/babel-loader/d835d39f7f1e78947f024fd3e7baac91.json +0 -1
  751. package/example/.expo/web/cache/development/babel-loader/d92da9ccd71edac1d6d7f1b72554205f.json +0 -1
  752. package/example/.expo/web/cache/development/babel-loader/d96d3b81896e9bd36159e740a504fa01.json +0 -1
  753. package/example/.expo/web/cache/development/babel-loader/d9b91562265c9867aac3075b134f6718.json +0 -1
  754. package/example/.expo/web/cache/development/babel-loader/dae925659703faa3496df0985e30eb46.json +0 -1
  755. package/example/.expo/web/cache/development/babel-loader/db2362a80925087fd6dfea2ecf5d1527.json +0 -1
  756. package/example/.expo/web/cache/development/babel-loader/db44721b3956bd3b7617e773f566987b.json +0 -1
  757. package/example/.expo/web/cache/development/babel-loader/dbe08ee59a725c77de92c2ccf9c1f722.json +0 -1
  758. package/example/.expo/web/cache/development/babel-loader/dcc70c8d830be9dfd880c5298c0e5869.json +0 -1
  759. package/example/.expo/web/cache/development/babel-loader/dcd99ce86a9a99d6c582dd618bb0da9a.json +0 -1
  760. package/example/.expo/web/cache/development/babel-loader/dd2e7e9f0700b6295764b0357f97fbd1.json +0 -1
  761. package/example/.expo/web/cache/development/babel-loader/ddba687cec3fe45cc19f7c824b08d2f4.json +0 -1
  762. package/example/.expo/web/cache/development/babel-loader/dee3d7eeaa9d088adee455787ecfdbba.json +0 -1
  763. package/example/.expo/web/cache/development/babel-loader/dee6d26381b0eee37db16f38d32dca5f.json +0 -1
  764. package/example/.expo/web/cache/development/babel-loader/df177e28e870b3f9ed04286275590e05.json +0 -1
  765. package/example/.expo/web/cache/development/babel-loader/df2a97c39760a6b128a2bccf500f09b0.json +0 -1
  766. package/example/.expo/web/cache/development/babel-loader/df8cca84735630b31c89ab8c4525d586.json +0 -1
  767. package/example/.expo/web/cache/development/babel-loader/dffc3d3b5387634869406f7b262b0334.json +0 -1
  768. package/example/.expo/web/cache/development/babel-loader/e00a687de4af483a065036c6b80fa9f9.json +0 -1
  769. package/example/.expo/web/cache/development/babel-loader/e057ccea7890265eb568f4ea843b9c10.json +0 -1
  770. package/example/.expo/web/cache/development/babel-loader/e0bc2b67f28f7d20625141635fb72278.json +0 -1
  771. package/example/.expo/web/cache/development/babel-loader/e0c343c3fc39409be8007009745f0f06.json +0 -1
  772. package/example/.expo/web/cache/development/babel-loader/e0cb85d97765140dc5b5d5208c9ba0fa.json +0 -1
  773. package/example/.expo/web/cache/development/babel-loader/e12513c015e82fb05ce94ecc8be7102a.json +0 -1
  774. package/example/.expo/web/cache/development/babel-loader/e13d64c5b0cbfdf147e8b47baa112969.json +0 -1
  775. package/example/.expo/web/cache/development/babel-loader/e15a3fbd8440519153d5282a30f1f37b.json +0 -1
  776. package/example/.expo/web/cache/development/babel-loader/e1630fcfbaff568bf2f669a3e388c026.json +0 -1
  777. package/example/.expo/web/cache/development/babel-loader/e18e89bfc53249e5ebeb448812643401.json +0 -1
  778. package/example/.expo/web/cache/development/babel-loader/e1962858e3fc18c71d271c6eaa3a943d.json +0 -1
  779. package/example/.expo/web/cache/development/babel-loader/e1a0963978b2cb66dec1b5d8a5a2c753.json +0 -1
  780. package/example/.expo/web/cache/development/babel-loader/e21dcee29960dda3812a8e73f9b0fcbc.json +0 -1
  781. package/example/.expo/web/cache/development/babel-loader/e2673fb3c85a185e6ab75eca05a80f64.json +0 -1
  782. package/example/.expo/web/cache/development/babel-loader/e267b8128c475d71c47f9914b3578229.json +0 -1
  783. package/example/.expo/web/cache/development/babel-loader/e2faafd77df6c4f281c0c99a9e458e54.json +0 -1
  784. package/example/.expo/web/cache/development/babel-loader/e30c76c9a2d4f8d448441c1cb652eb01.json +0 -1
  785. package/example/.expo/web/cache/development/babel-loader/e3b541bfa3824b550bb4753328ea57b4.json +0 -1
  786. package/example/.expo/web/cache/development/babel-loader/e3e41ecd377f12917599e490df17750a.json +0 -1
  787. package/example/.expo/web/cache/development/babel-loader/e3e477529ed5548f8e901ee83d7395ef.json +0 -1
  788. package/example/.expo/web/cache/development/babel-loader/e40e88a5ee7080ae8c27b8b8b14fbe3b.json +0 -1
  789. package/example/.expo/web/cache/development/babel-loader/e4815f1b8edf5002fdece1b55fbc36bb.json +0 -1
  790. package/example/.expo/web/cache/development/babel-loader/e5305c23d1c285b3c16d5bbf31831aea.json +0 -1
  791. package/example/.expo/web/cache/development/babel-loader/e54991dfa34b4e617bf4ceac778d28ec.json +0 -1
  792. package/example/.expo/web/cache/development/babel-loader/e656bc77be79a05f8054e227f7f79d12.json +0 -1
  793. package/example/.expo/web/cache/development/babel-loader/e6dda54eeb97664ecf647c4e0d49e089.json +0 -1
  794. package/example/.expo/web/cache/development/babel-loader/e6f55b8bb2f55bff9c7239707407e38b.json +0 -1
  795. package/example/.expo/web/cache/development/babel-loader/e71b020cacbbe302bb14d7910742ec2d.json +0 -1
  796. package/example/.expo/web/cache/development/babel-loader/e7472dd2c104082f95c6920e14b1ebf1.json +0 -1
  797. package/example/.expo/web/cache/development/babel-loader/e7b42d4997a3a0970f307de97b93e04a.json +0 -1
  798. package/example/.expo/web/cache/development/babel-loader/e8ecfe4f495e40da9c691725a170eb28.json +0 -1
  799. package/example/.expo/web/cache/development/babel-loader/e915493077bb73d313288ad45d1c2409.json +0 -1
  800. package/example/.expo/web/cache/development/babel-loader/e958dca390e4e96d3ffd3fd3e668de5a.json +0 -1
  801. package/example/.expo/web/cache/development/babel-loader/e9ee1fc9a9a662fdf210526a05895585.json +0 -1
  802. package/example/.expo/web/cache/development/babel-loader/e9f34adb6cf176473ebe8a287ff9cea0.json +0 -1
  803. package/example/.expo/web/cache/development/babel-loader/ea69e12059df73da64e057bade5f4ba1.json +0 -1
  804. package/example/.expo/web/cache/development/babel-loader/eadf3cd31f335914fa5f8ada3a1adbbf.json +0 -1
  805. package/example/.expo/web/cache/development/babel-loader/eae09ceb3f4483977f405539fff299a4.json +0 -1
  806. package/example/.expo/web/cache/development/babel-loader/eaffd3d95bf68dd8a7419e53498b4640.json +0 -1
  807. package/example/.expo/web/cache/development/babel-loader/ebbb70e9a4382be368d07b5d046c1462.json +0 -1
  808. package/example/.expo/web/cache/development/babel-loader/ebe11e572ee539ae5369153fcc1b6f74.json +0 -1
  809. package/example/.expo/web/cache/development/babel-loader/ec21f5360e4897cb685f84b6fbf18181.json +0 -1
  810. package/example/.expo/web/cache/development/babel-loader/ec22a1721004d1dffd715720d5c2bda5.json +0 -1
  811. package/example/.expo/web/cache/development/babel-loader/ec63eb9ceeb4c06850ea87251e7799bf.json +0 -1
  812. package/example/.expo/web/cache/development/babel-loader/ece398d7adaeb2d15814944cdc4f38f5.json +0 -1
  813. package/example/.expo/web/cache/development/babel-loader/ee15d7496b6f14edc02d2cd58a7353f9.json +0 -1
  814. package/example/.expo/web/cache/development/babel-loader/ee8e3abcff9f49ec89705c0e083bc14e.json +0 -1
  815. package/example/.expo/web/cache/development/babel-loader/ef79cc0b13fea249ac3b074f0a0de8eb.json +0 -1
  816. package/example/.expo/web/cache/development/babel-loader/efadf533037054fccfefb405d34aab26.json +0 -1
  817. package/example/.expo/web/cache/development/babel-loader/efdf5fb16bfb6755d38d6afaec705dcc.json +0 -1
  818. package/example/.expo/web/cache/development/babel-loader/f114b6650124f4aa114c8641a8fb2e95.json +0 -1
  819. package/example/.expo/web/cache/development/babel-loader/f1659a943838ef6080b4c230d68487d6.json +0 -1
  820. package/example/.expo/web/cache/development/babel-loader/f205f5a93654153e1b41acf6d6152d7f.json +0 -1
  821. package/example/.expo/web/cache/development/babel-loader/f265e7091af5aee6391a1dc72195fc0b.json +0 -1
  822. package/example/.expo/web/cache/development/babel-loader/f266b6619650205d99c01705391967fb.json +0 -1
  823. package/example/.expo/web/cache/development/babel-loader/f26a2ea3fe78d43644601e71fefe7a1e.json +0 -1
  824. package/example/.expo/web/cache/development/babel-loader/f2df4e0da01cdba6223f5bbe6b36ff68.json +0 -1
  825. package/example/.expo/web/cache/development/babel-loader/f3060f14259d3179812abd59791780a5.json +0 -1
  826. package/example/.expo/web/cache/development/babel-loader/f384324970a1d59b46669955648ac6de.json +0 -1
  827. package/example/.expo/web/cache/development/babel-loader/f3ae3ddc97a343c3835b961d6e18934b.json +0 -1
  828. package/example/.expo/web/cache/development/babel-loader/f3b600b1c28c90f40371d1f2d941da2f.json +0 -1
  829. package/example/.expo/web/cache/development/babel-loader/f3beb518b54ed38f03ac6db8f54e60ff.json +0 -1
  830. package/example/.expo/web/cache/development/babel-loader/f3c616fbd126299d1e806d6ecc1ec318.json +0 -1
  831. package/example/.expo/web/cache/development/babel-loader/f42e9bcb2c70b941d26c869beae57ebd.json +0 -1
  832. package/example/.expo/web/cache/development/babel-loader/f443534deab89b5e0a500eca24b470b0.json +0 -1
  833. package/example/.expo/web/cache/development/babel-loader/f4a9921d6e837efff4d9a9df358e594f.json +0 -1
  834. package/example/.expo/web/cache/development/babel-loader/f4c95c91f375005a143433586f729253.json +0 -1
  835. package/example/.expo/web/cache/development/babel-loader/f4f125417024aaa0f10afb51bedbf3f6.json +0 -1
  836. package/example/.expo/web/cache/development/babel-loader/f557735276807fa1f2857d869fcf3f24.json +0 -1
  837. package/example/.expo/web/cache/development/babel-loader/f697d6e3e8832c91f0e644a9cbbaf125.json +0 -1
  838. package/example/.expo/web/cache/development/babel-loader/f7551af34198eaeae403b7c9f14ed77f.json +0 -1
  839. package/example/.expo/web/cache/development/babel-loader/f7747a8774208f97feee323659c8fd9c.json +0 -1
  840. package/example/.expo/web/cache/development/babel-loader/f78eccb875790b4d905e542a961bf15d.json +0 -1
  841. package/example/.expo/web/cache/development/babel-loader/f79a20eb5fe07a41699a4082250176ee.json +0 -1
  842. package/example/.expo/web/cache/development/babel-loader/f7b6a546f5059f1510208c9c5587c755.json +0 -1
  843. package/example/.expo/web/cache/development/babel-loader/f8161007e70676aff950dd230d92b913.json +0 -1
  844. package/example/.expo/web/cache/development/babel-loader/f89bed9b99073eb34bdcfe509a9eef7b.json +0 -1
  845. package/example/.expo/web/cache/development/babel-loader/f8da7cfcc868c4561939eb69b187852b.json +0 -1
  846. package/example/.expo/web/cache/development/babel-loader/f981fff461509e432e764337b548614f.json +0 -1
  847. package/example/.expo/web/cache/development/babel-loader/f9a453849a2adca3c8d16c288ee63674.json +0 -1
  848. package/example/.expo/web/cache/development/babel-loader/f9c8751528f50853c93bccaef3665cb2.json +0 -1
  849. package/example/.expo/web/cache/development/babel-loader/fa1cac776862e25b801ccd74fe04dedb.json +0 -1
  850. package/example/.expo/web/cache/development/babel-loader/fa7135f62c5758217dd521fe11e4f3be.json +0 -1
  851. package/example/.expo/web/cache/development/babel-loader/fa87a67383617d9e7ac4d10603dc82ff.json +0 -1
  852. package/example/.expo/web/cache/development/babel-loader/fb1afe2167ecb0e405e51371bc59a75e.json +0 -1
  853. package/example/.expo/web/cache/development/babel-loader/fc02f1af2a9db4facfa4f4fc290432fe.json +0 -1
  854. package/example/.expo/web/cache/development/babel-loader/fc62eb1057700a3ed46569b3ca6ae7b8.json +0 -1
  855. package/example/.expo/web/cache/development/babel-loader/fc941b53721fd7910cde57ec192fe407.json +0 -1
  856. package/example/.expo/web/cache/development/babel-loader/fcce772003585ea1a1ac51d619ba94c6.json +0 -1
  857. package/example/.expo/web/cache/development/babel-loader/fd143c0566e976f3b69413de3ca79ebf.json +0 -1
  858. package/example/.expo/web/cache/development/babel-loader/fd655c3e164d6c50e7affcee01046566.json +0 -1
  859. package/example/.expo/web/cache/development/babel-loader/fdada169c1988ef70eea3e2b77f7b727.json +0 -1
  860. package/example/.expo/web/cache/development/babel-loader/fe0a5f0e6f28f358efb1ed12c10b3240.json +0 -1
  861. package/example/.expo/web/cache/development/babel-loader/fe26f1ecddd584420e8646ef68e8eec7.json +0 -1
  862. package/example/.expo/web/cache/development/babel-loader/fef7a9f8cae2e08dcc89bd0403704cb9.json +0 -1
  863. package/example/.expo/web/cache/development/babel-loader/ff9a6e20e331b715609602c9bca399e9.json +0 -1
  864. package/example/README.md +0 -32
  865. package/example/app.json +0 -22
  866. package/example/babel.config.js +0 -23
  867. package/example/index.js +0 -8
  868. package/example/metro.config.js +0 -40
  869. package/example/package.json +0 -37
  870. package/example/src/App.tsx +0 -60
  871. package/example/src/CandlestickChart.tsx +0 -155
  872. package/example/src/LineChart.tsx +0 -217
  873. package/example/src/data/candlestick-data.json +0 -142
  874. package/example/src/data/candlestick-data2.json +0 -142
  875. package/example/src/data/line-data.json +0 -82
  876. package/example/src/data/line-data2.json +0 -82
  877. package/example/src/line-data-gh.json +0 -18
  878. package/example/tsconfig.json +0 -6
  879. package/example/webpack.config.js +0 -25
  880. package/example/yarn-error.log +0 -0
  881. package/example/yarn.lock +0 -6831
  882. package/lib/.DS_Store +0 -0
  883. package/lib/typescript/example/src/App.d.ts +0 -3
  884. package/lib/typescript/example/src/CandlestickChart.d.ts +0 -2
  885. package/lib/typescript/example/src/LineChart.d.ts +0 -2
  886. package/scripts/bootstrap.js +0 -24
  887. package/src/.DS_Store +0 -0
  888. package/tsconfig.build.json +0 -5
  889. package/tsconfig.json +0 -27
  890. package/yarn.lock +0 -8676
@@ -1 +0,0 @@
1
- {"ast":null,"code":"'use strict';\n\nfunction ownKeys(object, enumerableOnly) {\n var keys = Object.keys(object);\n\n if (Object.getOwnPropertySymbols) {\n var symbols = Object.getOwnPropertySymbols(object);\n if (enumerableOnly) symbols = symbols.filter(function (sym) {\n return Object.getOwnPropertyDescriptor(object, sym).enumerable;\n });\n keys.push.apply(keys, symbols);\n }\n\n return keys;\n}\n\nfunction _objectSpread(target) {\n for (var i = 1; i < arguments.length; i++) {\n var source = arguments[i] != null ? arguments[i] : {};\n\n if (i % 2) {\n ownKeys(Object(source), true).forEach(function (key) {\n _defineProperty(target, key, source[key]);\n });\n } else if (Object.getOwnPropertyDescriptors) {\n Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));\n } else {\n ownKeys(Object(source)).forEach(function (key) {\n Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));\n });\n }\n }\n\n return target;\n}\n\nfunction _defineProperty(obj, key, value) {\n if (key in obj) {\n Object.defineProperty(obj, key, {\n value: value,\n enumerable: true,\n configurable: true,\n writable: true\n });\n } else {\n obj[key] = value;\n }\n\n return obj;\n}\n\nimport { AnimatedEvent, attachNativeEvent } from \"./AnimatedEvent\";\nimport AnimatedAddition from \"./nodes/AnimatedAddition\";\nimport AnimatedDiffClamp from \"./nodes/AnimatedDiffClamp\";\nimport AnimatedDivision from \"./nodes/AnimatedDivision\";\nimport AnimatedInterpolation from \"./nodes/AnimatedInterpolation\";\nimport AnimatedModulo from \"./nodes/AnimatedModulo\";\nimport AnimatedMultiplication from \"./nodes/AnimatedMultiplication\";\nimport AnimatedNode from \"./nodes/AnimatedNode\";\nimport AnimatedProps from \"./nodes/AnimatedProps\";\nimport AnimatedSubtraction from \"./nodes/AnimatedSubtraction\";\nimport AnimatedTracking from \"./nodes/AnimatedTracking\";\nimport AnimatedValue from \"./nodes/AnimatedValue\";\nimport AnimatedValueXY from \"./nodes/AnimatedValueXY\";\nimport DecayAnimation from \"./animations/DecayAnimation\";\nimport SpringAnimation from \"./animations/SpringAnimation\";\nimport TimingAnimation from \"./animations/TimingAnimation\";\nimport createAnimatedComponent from \"./createAnimatedComponent\";\n\nvar add = function add(a, b) {\n return new AnimatedAddition(a, b);\n};\n\nvar subtract = function subtract(a, b) {\n return new AnimatedSubtraction(a, b);\n};\n\nvar divide = function divide(a, b) {\n return new AnimatedDivision(a, b);\n};\n\nvar multiply = function multiply(a, b) {\n return new AnimatedMultiplication(a, b);\n};\n\nvar modulo = function modulo(a, modulus) {\n return new AnimatedModulo(a, modulus);\n};\n\nvar diffClamp = function diffClamp(a, min, max) {\n return new AnimatedDiffClamp(a, min, max);\n};\n\nvar _combineCallbacks = function _combineCallbacks(callback, config) {\n if (callback && config.onComplete) {\n return function () {\n config.onComplete && config.onComplete.apply(config, arguments);\n callback && callback.apply(void 0, arguments);\n };\n } else {\n return callback || config.onComplete;\n }\n};\n\nvar maybeVectorAnim = function maybeVectorAnim(value, config, anim) {\n if (value instanceof AnimatedValueXY) {\n var configX = _objectSpread({}, config);\n\n var configY = _objectSpread({}, config);\n\n for (var key in config) {\n var _config$key = config[key],\n x = _config$key.x,\n y = _config$key.y;\n\n if (x !== undefined && y !== undefined) {\n configX[key] = x;\n configY[key] = y;\n }\n }\n\n var aX = anim(value.x, configX);\n var aY = anim(value.y, configY);\n return parallel([aX, aY], {\n stopTogether: false\n });\n }\n\n return null;\n};\n\nvar spring = function spring(value, config) {\n var _start = function start(animatedValue, configuration, callback) {\n callback = _combineCallbacks(callback, configuration);\n var singleValue = animatedValue;\n var singleConfig = configuration;\n singleValue.stopTracking();\n\n if (configuration.toValue instanceof AnimatedNode) {\n singleValue.track(new AnimatedTracking(singleValue, configuration.toValue, SpringAnimation, singleConfig, callback));\n } else {\n singleValue.animate(new SpringAnimation(singleConfig), callback);\n }\n };\n\n return maybeVectorAnim(value, config, spring) || {\n start: function start(callback) {\n _start(value, config, callback);\n },\n stop: function stop() {\n value.stopAnimation();\n },\n reset: function reset() {\n value.resetAnimation();\n },\n _startNativeLoop: function _startNativeLoop(iterations) {\n var singleConfig = _objectSpread({}, config, {\n iterations: iterations\n });\n\n _start(value, singleConfig);\n },\n _isUsingNativeDriver: function _isUsingNativeDriver() {\n return config.useNativeDriver || false;\n }\n };\n};\n\nvar timing = function timing(value, config) {\n var _start2 = function start(animatedValue, configuration, callback) {\n callback = _combineCallbacks(callback, configuration);\n var singleValue = animatedValue;\n var singleConfig = configuration;\n singleValue.stopTracking();\n\n if (configuration.toValue instanceof AnimatedNode) {\n singleValue.track(new AnimatedTracking(singleValue, configuration.toValue, TimingAnimation, singleConfig, callback));\n } else {\n singleValue.animate(new TimingAnimation(singleConfig), callback);\n }\n };\n\n return maybeVectorAnim(value, config, timing) || {\n start: function start(callback) {\n _start2(value, config, callback);\n },\n stop: function stop() {\n value.stopAnimation();\n },\n reset: function reset() {\n value.resetAnimation();\n },\n _startNativeLoop: function _startNativeLoop(iterations) {\n var singleConfig = _objectSpread({}, config, {\n iterations: iterations\n });\n\n _start2(value, singleConfig);\n },\n _isUsingNativeDriver: function _isUsingNativeDriver() {\n return config.useNativeDriver || false;\n }\n };\n};\n\nvar decay = function decay(value, config) {\n var _start3 = function start(animatedValue, configuration, callback) {\n callback = _combineCallbacks(callback, configuration);\n var singleValue = animatedValue;\n var singleConfig = configuration;\n singleValue.stopTracking();\n singleValue.animate(new DecayAnimation(singleConfig), callback);\n };\n\n return maybeVectorAnim(value, config, decay) || {\n start: function start(callback) {\n _start3(value, config, callback);\n },\n stop: function stop() {\n value.stopAnimation();\n },\n reset: function reset() {\n value.resetAnimation();\n },\n _startNativeLoop: function _startNativeLoop(iterations) {\n var singleConfig = _objectSpread({}, config, {\n iterations: iterations\n });\n\n _start3(value, singleConfig);\n },\n _isUsingNativeDriver: function _isUsingNativeDriver() {\n return config.useNativeDriver || false;\n }\n };\n};\n\nvar sequence = function sequence(animations) {\n var current = 0;\n return {\n start: function start(callback) {\n var onComplete = function onComplete(result) {\n if (!result.finished) {\n callback && callback(result);\n return;\n }\n\n current++;\n\n if (current === animations.length) {\n callback && callback(result);\n return;\n }\n\n animations[current].start(onComplete);\n };\n\n if (animations.length === 0) {\n callback && callback({\n finished: true\n });\n } else {\n animations[current].start(onComplete);\n }\n },\n stop: function stop() {\n if (current < animations.length) {\n animations[current].stop();\n }\n },\n reset: function reset() {\n animations.forEach(function (animation, idx) {\n if (idx <= current) {\n animation.reset();\n }\n });\n current = 0;\n },\n _startNativeLoop: function _startNativeLoop() {\n throw new Error('Loops run using the native driver cannot contain Animated.sequence animations');\n },\n _isUsingNativeDriver: function _isUsingNativeDriver() {\n return false;\n }\n };\n};\n\nvar parallel = function parallel(animations, config) {\n var doneCount = 0;\n var hasEnded = {};\n var stopTogether = !(config && config.stopTogether === false);\n var result = {\n start: function start(callback) {\n if (doneCount === animations.length) {\n callback && callback({\n finished: true\n });\n return;\n }\n\n animations.forEach(function (animation, idx) {\n var cb = function cb(endResult) {\n hasEnded[idx] = true;\n doneCount++;\n\n if (doneCount === animations.length) {\n doneCount = 0;\n callback && callback(endResult);\n return;\n }\n\n if (!endResult.finished && stopTogether) {\n result.stop();\n }\n };\n\n if (!animation) {\n cb({\n finished: true\n });\n } else {\n animation.start(cb);\n }\n });\n },\n stop: function stop() {\n animations.forEach(function (animation, idx) {\n !hasEnded[idx] && animation.stop();\n hasEnded[idx] = true;\n });\n },\n reset: function reset() {\n animations.forEach(function (animation, idx) {\n animation.reset();\n hasEnded[idx] = false;\n doneCount = 0;\n });\n },\n _startNativeLoop: function _startNativeLoop() {\n throw new Error('Loops run using the native driver cannot contain Animated.parallel animations');\n },\n _isUsingNativeDriver: function _isUsingNativeDriver() {\n return false;\n }\n };\n return result;\n};\n\nvar delay = function delay(time) {\n return timing(new AnimatedValue(0), {\n toValue: 0,\n delay: time,\n duration: 0\n });\n};\n\nvar stagger = function stagger(time, animations) {\n return parallel(animations.map(function (animation, i) {\n return sequence([delay(time * i), animation]);\n }));\n};\n\nvar loop = function loop(animation, _temp) {\n var _ref = _temp === void 0 ? {} : _temp,\n _ref$iterations = _ref.iterations,\n iterations = _ref$iterations === void 0 ? -1 : _ref$iterations,\n _ref$resetBeforeItera = _ref.resetBeforeIteration,\n resetBeforeIteration = _ref$resetBeforeItera === void 0 ? true : _ref$resetBeforeItera;\n\n var isFinished = false;\n var iterationsSoFar = 0;\n return {\n start: function start(callback) {\n var restart = function restart(result) {\n if (result === void 0) {\n result = {\n finished: true\n };\n }\n\n if (isFinished || iterationsSoFar === iterations || result.finished === false) {\n callback && callback(result);\n } else {\n iterationsSoFar++;\n resetBeforeIteration && animation.reset();\n animation.start(restart);\n }\n };\n\n if (!animation || iterations === 0) {\n callback && callback({\n finished: true\n });\n } else {\n if (animation._isUsingNativeDriver()) {\n animation._startNativeLoop(iterations);\n } else {\n restart();\n }\n }\n },\n stop: function stop() {\n isFinished = true;\n animation.stop();\n },\n reset: function reset() {\n iterationsSoFar = 0;\n isFinished = false;\n animation.reset();\n },\n _startNativeLoop: function _startNativeLoop() {\n throw new Error('Loops run using the native driver cannot contain Animated.loop animations');\n },\n _isUsingNativeDriver: function _isUsingNativeDriver() {\n return animation._isUsingNativeDriver();\n }\n };\n};\n\nfunction forkEvent(event, listener) {\n if (!event) {\n return listener;\n } else if (event instanceof AnimatedEvent) {\n event.__addListener(listener);\n\n return event;\n } else {\n return function () {\n typeof event === 'function' && event.apply(void 0, arguments);\n listener.apply(void 0, arguments);\n };\n }\n}\n\nfunction unforkEvent(event, listener) {\n if (event && event instanceof AnimatedEvent) {\n event.__removeListener(listener);\n }\n}\n\nvar event = function event(argMapping, config) {\n var animatedEvent = new AnimatedEvent(argMapping, config);\n\n if (animatedEvent.__isNative) {\n return animatedEvent;\n } else {\n return animatedEvent.__getHandler();\n }\n};\n\nvar AnimatedImplementation = {\n Value: AnimatedValue,\n ValueXY: AnimatedValueXY,\n Interpolation: AnimatedInterpolation,\n Node: AnimatedNode,\n decay: decay,\n timing: timing,\n spring: spring,\n add: add,\n subtract: subtract,\n divide: divide,\n multiply: multiply,\n modulo: modulo,\n diffClamp: diffClamp,\n delay: delay,\n sequence: sequence,\n parallel: parallel,\n stagger: stagger,\n loop: loop,\n event: event,\n createAnimatedComponent: createAnimatedComponent,\n attachNativeEvent: attachNativeEvent,\n forkEvent: forkEvent,\n unforkEvent: unforkEvent,\n Event: AnimatedEvent,\n __PropsOnlyForTests: AnimatedProps\n};\nexport default AnimatedImplementation;","map":{"version":3,"sources":["/Users/jake/git/react-native-candlestick-chart/example/node_modules/react-native-web/dist/vendor/react-native/Animated/AnimatedImplementation.js"],"names":["ownKeys","object","enumerableOnly","keys","Object","getOwnPropertySymbols","symbols","filter","sym","getOwnPropertyDescriptor","enumerable","push","apply","_objectSpread","target","i","arguments","length","source","forEach","key","_defineProperty","getOwnPropertyDescriptors","defineProperties","defineProperty","obj","value","configurable","writable","AnimatedEvent","attachNativeEvent","AnimatedAddition","AnimatedDiffClamp","AnimatedDivision","AnimatedInterpolation","AnimatedModulo","AnimatedMultiplication","AnimatedNode","AnimatedProps","AnimatedSubtraction","AnimatedTracking","AnimatedValue","AnimatedValueXY","DecayAnimation","SpringAnimation","TimingAnimation","createAnimatedComponent","add","a","b","subtract","divide","multiply","modulo","modulus","diffClamp","min","max","_combineCallbacks","callback","config","onComplete","maybeVectorAnim","anim","configX","configY","_config$key","x","y","undefined","aX","aY","parallel","stopTogether","spring","_start","start","animatedValue","configuration","singleValue","singleConfig","stopTracking","toValue","track","animate","stop","stopAnimation","reset","resetAnimation","_startNativeLoop","iterations","_isUsingNativeDriver","useNativeDriver","timing","_start2","decay","_start3","sequence","animations","current","result","finished","animation","idx","Error","doneCount","hasEnded","cb","endResult","delay","time","duration","stagger","map","loop","_temp","_ref","_ref$iterations","_ref$resetBeforeItera","resetBeforeIteration","isFinished","iterationsSoFar","restart","forkEvent","event","listener","__addListener","unforkEvent","__removeListener","argMapping","animatedEvent","__isNative","__getHandler","AnimatedImplementation","Value","ValueXY","Interpolation","Node","Event","__PropsOnlyForTests"],"mappings":"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","sourcesContent":["/**\n * Copyright (c) 2015-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * \n * @format\n * @preventMunge\n */\n'use strict';\n\nfunction ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }\n\nfunction _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }\n\nfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\nimport { AnimatedEvent, attachNativeEvent } from './AnimatedEvent';\nimport AnimatedAddition from './nodes/AnimatedAddition';\nimport AnimatedDiffClamp from './nodes/AnimatedDiffClamp';\nimport AnimatedDivision from './nodes/AnimatedDivision';\nimport AnimatedInterpolation from './nodes/AnimatedInterpolation';\nimport AnimatedModulo from './nodes/AnimatedModulo';\nimport AnimatedMultiplication from './nodes/AnimatedMultiplication';\nimport AnimatedNode from './nodes/AnimatedNode';\nimport AnimatedProps from './nodes/AnimatedProps';\nimport AnimatedSubtraction from './nodes/AnimatedSubtraction';\nimport AnimatedTracking from './nodes/AnimatedTracking';\nimport AnimatedValue from './nodes/AnimatedValue';\nimport AnimatedValueXY from './nodes/AnimatedValueXY';\nimport DecayAnimation from './animations/DecayAnimation';\nimport SpringAnimation from './animations/SpringAnimation';\nimport TimingAnimation from './animations/TimingAnimation';\nimport createAnimatedComponent from './createAnimatedComponent';\n\nvar add = function add(a, b) {\n return new AnimatedAddition(a, b);\n};\n\nvar subtract = function subtract(a, b) {\n return new AnimatedSubtraction(a, b);\n};\n\nvar divide = function divide(a, b) {\n return new AnimatedDivision(a, b);\n};\n\nvar multiply = function multiply(a, b) {\n return new AnimatedMultiplication(a, b);\n};\n\nvar modulo = function modulo(a, modulus) {\n return new AnimatedModulo(a, modulus);\n};\n\nvar diffClamp = function diffClamp(a, min, max) {\n return new AnimatedDiffClamp(a, min, max);\n};\n\nvar _combineCallbacks = function _combineCallbacks(callback, config) {\n if (callback && config.onComplete) {\n return function () {\n config.onComplete && config.onComplete.apply(config, arguments);\n callback && callback.apply(void 0, arguments);\n };\n } else {\n return callback || config.onComplete;\n }\n};\n\nvar maybeVectorAnim = function maybeVectorAnim(value, config, anim) {\n if (value instanceof AnimatedValueXY) {\n var configX = _objectSpread({}, config);\n\n var configY = _objectSpread({}, config);\n\n for (var key in config) {\n var _config$key = config[key],\n x = _config$key.x,\n y = _config$key.y;\n\n if (x !== undefined && y !== undefined) {\n configX[key] = x;\n configY[key] = y;\n }\n }\n\n var aX = anim(value.x, configX);\n var aY = anim(value.y, configY); // We use `stopTogether: false` here because otherwise tracking will break\n // because the second animation will get stopped before it can update.\n\n return parallel([aX, aY], {\n stopTogether: false\n });\n }\n\n return null;\n};\n\nvar spring = function spring(value, config) {\n var _start = function start(animatedValue, configuration, callback) {\n callback = _combineCallbacks(callback, configuration);\n var singleValue = animatedValue;\n var singleConfig = configuration;\n singleValue.stopTracking();\n\n if (configuration.toValue instanceof AnimatedNode) {\n singleValue.track(new AnimatedTracking(singleValue, configuration.toValue, SpringAnimation, singleConfig, callback));\n } else {\n singleValue.animate(new SpringAnimation(singleConfig), callback);\n }\n };\n\n return maybeVectorAnim(value, config, spring) || {\n start: function start(callback) {\n _start(value, config, callback);\n },\n stop: function stop() {\n value.stopAnimation();\n },\n reset: function reset() {\n value.resetAnimation();\n },\n _startNativeLoop: function _startNativeLoop(iterations) {\n var singleConfig = _objectSpread({}, config, {\n iterations: iterations\n });\n\n _start(value, singleConfig);\n },\n _isUsingNativeDriver: function _isUsingNativeDriver() {\n return config.useNativeDriver || false;\n }\n };\n};\n\nvar timing = function timing(value, config) {\n var _start2 = function start(animatedValue, configuration, callback) {\n callback = _combineCallbacks(callback, configuration);\n var singleValue = animatedValue;\n var singleConfig = configuration;\n singleValue.stopTracking();\n\n if (configuration.toValue instanceof AnimatedNode) {\n singleValue.track(new AnimatedTracking(singleValue, configuration.toValue, TimingAnimation, singleConfig, callback));\n } else {\n singleValue.animate(new TimingAnimation(singleConfig), callback);\n }\n };\n\n return maybeVectorAnim(value, config, timing) || {\n start: function start(callback) {\n _start2(value, config, callback);\n },\n stop: function stop() {\n value.stopAnimation();\n },\n reset: function reset() {\n value.resetAnimation();\n },\n _startNativeLoop: function _startNativeLoop(iterations) {\n var singleConfig = _objectSpread({}, config, {\n iterations: iterations\n });\n\n _start2(value, singleConfig);\n },\n _isUsingNativeDriver: function _isUsingNativeDriver() {\n return config.useNativeDriver || false;\n }\n };\n};\n\nvar decay = function decay(value, config) {\n var _start3 = function start(animatedValue, configuration, callback) {\n callback = _combineCallbacks(callback, configuration);\n var singleValue = animatedValue;\n var singleConfig = configuration;\n singleValue.stopTracking();\n singleValue.animate(new DecayAnimation(singleConfig), callback);\n };\n\n return maybeVectorAnim(value, config, decay) || {\n start: function start(callback) {\n _start3(value, config, callback);\n },\n stop: function stop() {\n value.stopAnimation();\n },\n reset: function reset() {\n value.resetAnimation();\n },\n _startNativeLoop: function _startNativeLoop(iterations) {\n var singleConfig = _objectSpread({}, config, {\n iterations: iterations\n });\n\n _start3(value, singleConfig);\n },\n _isUsingNativeDriver: function _isUsingNativeDriver() {\n return config.useNativeDriver || false;\n }\n };\n};\n\nvar sequence = function sequence(animations) {\n var current = 0;\n return {\n start: function start(callback) {\n var onComplete = function onComplete(result) {\n if (!result.finished) {\n callback && callback(result);\n return;\n }\n\n current++;\n\n if (current === animations.length) {\n callback && callback(result);\n return;\n }\n\n animations[current].start(onComplete);\n };\n\n if (animations.length === 0) {\n callback && callback({\n finished: true\n });\n } else {\n animations[current].start(onComplete);\n }\n },\n stop: function stop() {\n if (current < animations.length) {\n animations[current].stop();\n }\n },\n reset: function reset() {\n animations.forEach(function (animation, idx) {\n if (idx <= current) {\n animation.reset();\n }\n });\n current = 0;\n },\n _startNativeLoop: function _startNativeLoop() {\n throw new Error('Loops run using the native driver cannot contain Animated.sequence animations');\n },\n _isUsingNativeDriver: function _isUsingNativeDriver() {\n return false;\n }\n };\n};\n\nvar parallel = function parallel(animations, config) {\n var doneCount = 0; // Make sure we only call stop() at most once for each animation\n\n var hasEnded = {};\n var stopTogether = !(config && config.stopTogether === false);\n var result = {\n start: function start(callback) {\n if (doneCount === animations.length) {\n callback && callback({\n finished: true\n });\n return;\n }\n\n animations.forEach(function (animation, idx) {\n var cb = function cb(endResult) {\n hasEnded[idx] = true;\n doneCount++;\n\n if (doneCount === animations.length) {\n doneCount = 0;\n callback && callback(endResult);\n return;\n }\n\n if (!endResult.finished && stopTogether) {\n result.stop();\n }\n };\n\n if (!animation) {\n cb({\n finished: true\n });\n } else {\n animation.start(cb);\n }\n });\n },\n stop: function stop() {\n animations.forEach(function (animation, idx) {\n !hasEnded[idx] && animation.stop();\n hasEnded[idx] = true;\n });\n },\n reset: function reset() {\n animations.forEach(function (animation, idx) {\n animation.reset();\n hasEnded[idx] = false;\n doneCount = 0;\n });\n },\n _startNativeLoop: function _startNativeLoop() {\n throw new Error('Loops run using the native driver cannot contain Animated.parallel animations');\n },\n _isUsingNativeDriver: function _isUsingNativeDriver() {\n return false;\n }\n };\n return result;\n};\n\nvar delay = function delay(time) {\n // Would be nice to make a specialized implementation\n return timing(new AnimatedValue(0), {\n toValue: 0,\n delay: time,\n duration: 0\n });\n};\n\nvar stagger = function stagger(time, animations) {\n return parallel(animations.map(function (animation, i) {\n return sequence([delay(time * i), animation]);\n }));\n};\n\nvar loop = function loop(animation, _temp) {\n var _ref = _temp === void 0 ? {} : _temp,\n _ref$iterations = _ref.iterations,\n iterations = _ref$iterations === void 0 ? -1 : _ref$iterations,\n _ref$resetBeforeItera = _ref.resetBeforeIteration,\n resetBeforeIteration = _ref$resetBeforeItera === void 0 ? true : _ref$resetBeforeItera;\n\n var isFinished = false;\n var iterationsSoFar = 0;\n return {\n start: function start(callback) {\n var restart = function restart(result) {\n if (result === void 0) {\n result = {\n finished: true\n };\n }\n\n if (isFinished || iterationsSoFar === iterations || result.finished === false) {\n callback && callback(result);\n } else {\n iterationsSoFar++;\n resetBeforeIteration && animation.reset();\n animation.start(restart);\n }\n };\n\n if (!animation || iterations === 0) {\n callback && callback({\n finished: true\n });\n } else {\n if (animation._isUsingNativeDriver()) {\n animation._startNativeLoop(iterations);\n } else {\n restart(); // Start looping recursively on the js thread\n }\n }\n },\n stop: function stop() {\n isFinished = true;\n animation.stop();\n },\n reset: function reset() {\n iterationsSoFar = 0;\n isFinished = false;\n animation.reset();\n },\n _startNativeLoop: function _startNativeLoop() {\n throw new Error('Loops run using the native driver cannot contain Animated.loop animations');\n },\n _isUsingNativeDriver: function _isUsingNativeDriver() {\n return animation._isUsingNativeDriver();\n }\n };\n};\n\nfunction forkEvent(event, listener) {\n if (!event) {\n return listener;\n } else if (event instanceof AnimatedEvent) {\n event.__addListener(listener);\n\n return event;\n } else {\n return function () {\n typeof event === 'function' && event.apply(void 0, arguments);\n listener.apply(void 0, arguments);\n };\n }\n}\n\nfunction unforkEvent(event, listener) {\n if (event && event instanceof AnimatedEvent) {\n event.__removeListener(listener);\n }\n}\n\nvar event = function event(argMapping, config) {\n var animatedEvent = new AnimatedEvent(argMapping, config);\n\n if (animatedEvent.__isNative) {\n return animatedEvent;\n } else {\n return animatedEvent.__getHandler();\n }\n};\n/**\n * The `Animated` library is designed to make animations fluid, powerful, and\n * easy to build and maintain. `Animated` focuses on declarative relationships\n * between inputs and outputs, with configurable transforms in between, and\n * simple `start`/`stop` methods to control time-based animation execution.\n * If additional transforms are added, be sure to include them in\n * AnimatedMock.js as well.\n *\n * See http://facebook.github.io/react-native/docs/animated.html\n */\n\n\nvar AnimatedImplementation = {\n /**\n * Standard value class for driving animations. Typically initialized with\n * `new Animated.Value(0);`\n *\n * See http://facebook.github.io/react-native/docs/animated.html#value\n */\n Value: AnimatedValue,\n\n /**\n * 2D value class for driving 2D animations, such as pan gestures.\n *\n * See https://facebook.github.io/react-native/docs/animatedvaluexy.html\n */\n ValueXY: AnimatedValueXY,\n\n /**\n * Exported to use the Interpolation type in flow.\n *\n * See http://facebook.github.io/react-native/docs/animated.html#interpolation\n */\n Interpolation: AnimatedInterpolation,\n\n /**\n * Exported for ease of type checking. All animated values derive from this\n * class.\n *\n * See http://facebook.github.io/react-native/docs/animated.html#node\n */\n Node: AnimatedNode,\n\n /**\n * Animates a value from an initial velocity to zero based on a decay\n * coefficient.\n *\n * See http://facebook.github.io/react-native/docs/animated.html#decay\n */\n decay: decay,\n\n /**\n * Animates a value along a timed easing curve. The Easing module has tons of\n * predefined curves, or you can use your own function.\n *\n * See http://facebook.github.io/react-native/docs/animated.html#timing\n */\n timing: timing,\n\n /**\n * Animates a value according to an analytical spring model based on\n * damped harmonic oscillation.\n *\n * See http://facebook.github.io/react-native/docs/animated.html#spring\n */\n spring: spring,\n\n /**\n * Creates a new Animated value composed from two Animated values added\n * together.\n *\n * See http://facebook.github.io/react-native/docs/animated.html#add\n */\n add: add,\n\n /**\n * Creates a new Animated value composed by subtracting the second Animated\n * value from the first Animated value.\n *\n * See http://facebook.github.io/react-native/docs/animated.html#subtract\n */\n subtract: subtract,\n\n /**\n * Creates a new Animated value composed by dividing the first Animated value\n * by the second Animated value.\n *\n * See http://facebook.github.io/react-native/docs/animated.html#divide\n */\n divide: divide,\n\n /**\n * Creates a new Animated value composed from two Animated values multiplied\n * together.\n *\n * See http://facebook.github.io/react-native/docs/animated.html#multiply\n */\n multiply: multiply,\n\n /**\n * Creates a new Animated value that is the (non-negative) modulo of the\n * provided Animated value.\n *\n * See http://facebook.github.io/react-native/docs/animated.html#modulo\n */\n modulo: modulo,\n\n /**\n * Create a new Animated value that is limited between 2 values. It uses the\n * difference between the last value so even if the value is far from the\n * bounds it will start changing when the value starts getting closer again.\n *\n * See http://facebook.github.io/react-native/docs/animated.html#diffclamp\n */\n diffClamp: diffClamp,\n\n /**\n * Starts an animation after the given delay.\n *\n * See http://facebook.github.io/react-native/docs/animated.html#delay\n */\n delay: delay,\n\n /**\n * Starts an array of animations in order, waiting for each to complete\n * before starting the next. If the current running animation is stopped, no\n * following animations will be started.\n *\n * See http://facebook.github.io/react-native/docs/animated.html#sequence\n */\n sequence: sequence,\n\n /**\n * Starts an array of animations all at the same time. By default, if one\n * of the animations is stopped, they will all be stopped. You can override\n * this with the `stopTogether` flag.\n *\n * See http://facebook.github.io/react-native/docs/animated.html#parallel\n */\n parallel: parallel,\n\n /**\n * Array of animations may run in parallel (overlap), but are started in\n * sequence with successive delays. Nice for doing trailing effects.\n *\n * See http://facebook.github.io/react-native/docs/animated.html#stagger\n */\n stagger: stagger,\n\n /**\n * Loops a given animation continuously, so that each time it reaches the\n * end, it resets and begins again from the start.\n *\n * See http://facebook.github.io/react-native/docs/animated.html#loop\n */\n loop: loop,\n\n /**\n * Takes an array of mappings and extracts values from each arg accordingly,\n * then calls `setValue` on the mapped outputs.\n *\n * See http://facebook.github.io/react-native/docs/animated.html#event\n */\n event: event,\n\n /**\n * Make any React component Animatable. Used to create `Animated.View`, etc.\n *\n * See http://facebook.github.io/react-native/docs/animated.html#createanimatedcomponent\n */\n createAnimatedComponent: createAnimatedComponent,\n\n /**\n * Imperative API to attach an animated value to an event on a view. Prefer\n * using `Animated.event` with `useNativeDrive: true` if possible.\n *\n * See http://facebook.github.io/react-native/docs/animated.html#attachnativeevent\n */\n attachNativeEvent: attachNativeEvent,\n\n /**\n * Advanced imperative API for snooping on animated events that are passed in\n * through props. Use values directly where possible.\n *\n * See http://facebook.github.io/react-native/docs/animated.html#forkevent\n */\n forkEvent: forkEvent,\n unforkEvent: unforkEvent,\n\n /**\n * Expose Event class, so it can be used as a type for type checkers.\n */\n Event: AnimatedEvent,\n __PropsOnlyForTests: AnimatedProps\n};\nexport default AnimatedImplementation;"]},"metadata":{},"sourceType":"module"}
@@ -1 +0,0 @@
1
- {"ast":null,"code":"import { unmountComponentAtNode } from 'react-dom';\nexport default unmountComponentAtNode;","map":{"version":3,"sources":["/Users/jake/git/react-native-candlestick-chart/example/node_modules/react-native-web/dist/exports/unmountComponentAtNode/index.js"],"names":["unmountComponentAtNode"],"mappings":"AAQA,SAASA,sBAAT,QAAuC,WAAvC;AACA,eAAeA,sBAAf","sourcesContent":["/**\n * Copyright (c) Nicolas Gallagher.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * \n */\nimport { unmountComponentAtNode } from 'react-dom';\nexport default unmountComponentAtNode;"]},"metadata":{},"sourceType":"module"}
@@ -1 +0,0 @@
1
- {"ast":null,"code":"var getBoundingClientRect = function getBoundingClientRect(node) {\n if (node != null) {\n var isElement = node.nodeType === 1;\n\n if (isElement && typeof node.getBoundingClientRect === 'function') {\n return node.getBoundingClientRect();\n }\n }\n};\n\nexport default getBoundingClientRect;","map":{"version":3,"sources":["/Users/jake/git/react-native-candlestick-chart/example/node_modules/react-native-web/dist/modules/getBoundingClientRect/index.js"],"names":["getBoundingClientRect","node","isElement","nodeType"],"mappings":"AAQA,IAAIA,qBAAqB,GAAG,SAASA,qBAAT,CAA+BC,IAA/B,EAAqC;AAC/D,MAAIA,IAAI,IAAI,IAAZ,EAAkB;AAChB,QAAIC,SAAS,GAAGD,IAAI,CAACE,QAAL,KAAkB,CAAlC;;AAGA,QAAID,SAAS,IAAI,OAAOD,IAAI,CAACD,qBAAZ,KAAsC,UAAvD,EAAmE;AACjE,aAAOC,IAAI,CAACD,qBAAL,EAAP;AACD;AACF;AACF,CATD;;AAWA,eAAeA,qBAAf","sourcesContent":["/**\n * Copyright (c) Nicolas Gallagher.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * \n */\nvar getBoundingClientRect = function getBoundingClientRect(node) {\n if (node != null) {\n var isElement = node.nodeType === 1;\n /* Node.ELEMENT_NODE */\n\n if (isElement && typeof node.getBoundingClientRect === 'function') {\n return node.getBoundingClientRect();\n }\n }\n};\n\nexport default getBoundingClientRect;"]},"metadata":{},"sourceType":"module"}
@@ -1 +0,0 @@
1
- {"ast":null,"code":"'use strict';\n\nimport _bezier from \"./bezier\";\n\nvar _ease;\n\nvar Easing = function () {\n function Easing() {}\n\n Easing.step0 = function step0(n) {\n return n > 0 ? 1 : 0;\n };\n\n Easing.step1 = function step1(n) {\n return n >= 1 ? 1 : 0;\n };\n\n Easing.linear = function linear(t) {\n return t;\n };\n\n Easing.ease = function ease(t) {\n if (!_ease) {\n _ease = Easing.bezier(0.42, 0, 1, 1);\n }\n\n return _ease(t);\n };\n\n Easing.quad = function quad(t) {\n return t * t;\n };\n\n Easing.cubic = function cubic(t) {\n return t * t * t;\n };\n\n Easing.poly = function poly(n) {\n return function (t) {\n return Math.pow(t, n);\n };\n };\n\n Easing.sin = function sin(t) {\n return 1 - Math.cos(t * Math.PI / 2);\n };\n\n Easing.circle = function circle(t) {\n return 1 - Math.sqrt(1 - t * t);\n };\n\n Easing.exp = function exp(t) {\n return Math.pow(2, 10 * (t - 1));\n };\n\n Easing.elastic = function elastic(bounciness) {\n if (bounciness === void 0) {\n bounciness = 1;\n }\n\n var p = bounciness * Math.PI;\n return function (t) {\n return 1 - Math.pow(Math.cos(t * Math.PI / 2), 3) * Math.cos(t * p);\n };\n };\n\n Easing.back = function back(s) {\n if (s === void 0) {\n s = 1.70158;\n }\n\n return function (t) {\n return t * t * ((s + 1) * t - s);\n };\n };\n\n Easing.bounce = function bounce(t) {\n if (t < 1 / 2.75) {\n return 7.5625 * t * t;\n }\n\n if (t < 2 / 2.75) {\n var _t = t - 1.5 / 2.75;\n\n return 7.5625 * _t * _t + 0.75;\n }\n\n if (t < 2.5 / 2.75) {\n var _t2 = t - 2.25 / 2.75;\n\n return 7.5625 * _t2 * _t2 + 0.9375;\n }\n\n var t2 = t - 2.625 / 2.75;\n return 7.5625 * t2 * t2 + 0.984375;\n };\n\n Easing.bezier = function bezier(x1, y1, x2, y2) {\n return _bezier(x1, y1, x2, y2);\n };\n\n Easing.in = function _in(easing) {\n return easing;\n };\n\n Easing.out = function out(easing) {\n return function (t) {\n return 1 - easing(1 - t);\n };\n };\n\n Easing.inOut = function inOut(easing) {\n return function (t) {\n if (t < 0.5) {\n return easing(t * 2) / 2;\n }\n\n return 1 - easing((1 - t) * 2) / 2;\n };\n };\n\n return Easing;\n}();\n\nexport default Easing;","map":{"version":3,"sources":["/Users/jake/git/react-native-candlestick-chart/example/node_modules/react-native-web/dist/vendor/react-native/Animated/Easing.js"],"names":["_bezier","_ease","Easing","step0","n","step1","linear","t","ease","bezier","quad","cubic","poly","Math","pow","sin","cos","PI","circle","sqrt","exp","elastic","bounciness","p","back","s","bounce","_t","_t2","t2","x1","y1","x2","y2","in","_in","easing","out","inOut"],"mappings":"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","sourcesContent":["/**\n * Copyright (c) Facebook, Inc. and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * @format\n * \n */\n'use strict';\n\nimport _bezier from './bezier';\n\nvar _ease;\n/**\n * The `Easing` module implements common easing functions. This module is used\n * by [Animate.timing()](docs/animate.html#timing) to convey physically\n * believable motion in animations.\n *\n * You can find a visualization of some common easing functions at\n * http://easings.net/\n *\n * ### Predefined animations\n *\n * The `Easing` module provides several predefined animations through the\n * following methods:\n *\n * - [`back`](docs/easing.html#back) provides a simple animation where the\n * object goes slightly back before moving forward\n * - [`bounce`](docs/easing.html#bounce) provides a bouncing animation\n * - [`ease`](docs/easing.html#ease) provides a simple inertial animation\n * - [`elastic`](docs/easing.html#elastic) provides a simple spring interaction\n *\n * ### Standard functions\n *\n * Three standard easing functions are provided:\n *\n * - [`linear`](docs/easing.html#linear)\n * - [`quad`](docs/easing.html#quad)\n * - [`cubic`](docs/easing.html#cubic)\n *\n * The [`poly`](docs/easing.html#poly) function can be used to implement\n * quartic, quintic, and other higher power functions.\n *\n * ### Additional functions\n *\n * Additional mathematical functions are provided by the following methods:\n *\n * - [`bezier`](docs/easing.html#bezier) provides a cubic bezier curve\n * - [`circle`](docs/easing.html#circle) provides a circular function\n * - [`sin`](docs/easing.html#sin) provides a sinusoidal function\n * - [`exp`](docs/easing.html#exp) provides an exponential function\n *\n * The following helpers are used to modify other easing functions.\n *\n * - [`in`](docs/easing.html#in) runs an easing function forwards\n * - [`inOut`](docs/easing.html#inout) makes any easing function symmetrical\n * - [`out`](docs/easing.html#out) runs an easing function backwards\n */\n\n\nvar Easing =\n/*#__PURE__*/\nfunction () {\n function Easing() {}\n\n /**\n * A stepping function, returns 1 for any positive value of `n`.\n */\n Easing.step0 = function step0(n) {\n return n > 0 ? 1 : 0;\n }\n /**\n * A stepping function, returns 1 if `n` is greater than or equal to 1.\n */\n ;\n\n Easing.step1 = function step1(n) {\n return n >= 1 ? 1 : 0;\n }\n /**\n * A linear function, `f(t) = t`. Position correlates to elapsed time one to\n * one.\n *\n * http://cubic-bezier.com/#0,0,1,1\n */\n ;\n\n Easing.linear = function linear(t) {\n return t;\n }\n /**\n * A simple inertial interaction, similar to an object slowly accelerating to\n * speed.\n *\n * http://cubic-bezier.com/#.42,0,1,1\n */\n ;\n\n Easing.ease = function ease(t) {\n if (!_ease) {\n _ease = Easing.bezier(0.42, 0, 1, 1);\n }\n\n return _ease(t);\n }\n /**\n * A quadratic function, `f(t) = t * t`. Position equals the square of elapsed\n * time.\n *\n * http://easings.net/#easeInQuad\n */\n ;\n\n Easing.quad = function quad(t) {\n return t * t;\n }\n /**\n * A cubic function, `f(t) = t * t * t`. Position equals the cube of elapsed\n * time.\n *\n * http://easings.net/#easeInCubic\n */\n ;\n\n Easing.cubic = function cubic(t) {\n return t * t * t;\n }\n /**\n * A power function. Position is equal to the Nth power of elapsed time.\n *\n * n = 4: http://easings.net/#easeInQuart\n * n = 5: http://easings.net/#easeInQuint\n */\n ;\n\n Easing.poly = function poly(n) {\n return function (t) {\n return Math.pow(t, n);\n };\n }\n /**\n * A sinusoidal function.\n *\n * http://easings.net/#easeInSine\n */\n ;\n\n Easing.sin = function sin(t) {\n return 1 - Math.cos(t * Math.PI / 2);\n }\n /**\n * A circular function.\n *\n * http://easings.net/#easeInCirc\n */\n ;\n\n Easing.circle = function circle(t) {\n return 1 - Math.sqrt(1 - t * t);\n }\n /**\n * An exponential function.\n *\n * http://easings.net/#easeInExpo\n */\n ;\n\n Easing.exp = function exp(t) {\n return Math.pow(2, 10 * (t - 1));\n }\n /**\n * A simple elastic interaction, similar to a spring oscillating back and\n * forth.\n *\n * Default bounciness is 1, which overshoots a little bit once. 0 bounciness\n * doesn't overshoot at all, and bounciness of N > 1 will overshoot about N\n * times.\n *\n * http://easings.net/#easeInElastic\n */\n ;\n\n Easing.elastic = function elastic(bounciness) {\n if (bounciness === void 0) {\n bounciness = 1;\n }\n\n var p = bounciness * Math.PI;\n return function (t) {\n return 1 - Math.pow(Math.cos(t * Math.PI / 2), 3) * Math.cos(t * p);\n };\n }\n /**\n * Use with `Animated.parallel()` to create a simple effect where the object\n * animates back slightly as the animation starts.\n *\n * Wolfram Plot:\n *\n * - http://tiny.cc/back_default (s = 1.70158, default)\n */\n ;\n\n Easing.back = function back(s) {\n if (s === void 0) {\n s = 1.70158;\n }\n\n return function (t) {\n return t * t * ((s + 1) * t - s);\n };\n }\n /**\n * Provides a simple bouncing effect.\n *\n * http://easings.net/#easeInBounce\n */\n ;\n\n Easing.bounce = function bounce(t) {\n if (t < 1 / 2.75) {\n return 7.5625 * t * t;\n }\n\n if (t < 2 / 2.75) {\n var _t = t - 1.5 / 2.75;\n\n return 7.5625 * _t * _t + 0.75;\n }\n\n if (t < 2.5 / 2.75) {\n var _t2 = t - 2.25 / 2.75;\n\n return 7.5625 * _t2 * _t2 + 0.9375;\n }\n\n var t2 = t - 2.625 / 2.75;\n return 7.5625 * t2 * t2 + 0.984375;\n }\n /**\n * Provides a cubic bezier curve, equivalent to CSS Transitions'\n * `transition-timing-function`.\n *\n * A useful tool to visualize cubic bezier curves can be found at\n * http://cubic-bezier.com/\n */\n ;\n\n Easing.bezier = function bezier(x1, y1, x2, y2) {\n return _bezier(x1, y1, x2, y2);\n }\n /**\n * Runs an easing function forwards.\n */\n ;\n\n Easing.in = function _in(easing) {\n return easing;\n }\n /**\n * Runs an easing function backwards.\n */\n ;\n\n Easing.out = function out(easing) {\n return function (t) {\n return 1 - easing(1 - t);\n };\n }\n /**\n * Makes any easing function symmetrical. The easing function will run\n * forwards for half of the duration, then backwards for the rest of the\n * duration.\n */\n ;\n\n Easing.inOut = function inOut(easing) {\n return function (t) {\n if (t < 0.5) {\n return easing(t * 2) / 2;\n }\n\n return 1 - easing((1 - t) * 2) / 2;\n };\n };\n\n return Easing;\n}();\n\nexport default Easing;"]},"metadata":{},"sourceType":"module"}
@@ -1 +0,0 @@
1
- {"ast":null,"code":"import isUnitlessNumber from \"../../../modules/unitlessNumbers\";\n\nfunction dangerousStyleValue(name, value, isCustomProperty) {\n var isEmpty = value == null || typeof value === 'boolean' || value === '';\n\n if (isEmpty) {\n return '';\n }\n\n if (!isCustomProperty && typeof value === 'number' && value !== 0 && !(isUnitlessNumber.hasOwnProperty(name) && isUnitlessNumber[name])) {\n return value + 'px';\n }\n\n return ('' + value).trim();\n}\n\nexport default dangerousStyleValue;","map":{"version":3,"sources":["/Users/jake/git/react-native-candlestick-chart/example/node_modules/react-native-web/dist/vendor/react-dom/dangerousStyleValue/index.js"],"names":["isUnitlessNumber","dangerousStyleValue","name","value","isCustomProperty","isEmpty","hasOwnProperty","trim"],"mappings":"AAWA,OAAOA,gBAAP;;AAWA,SAASC,mBAAT,CAA6BC,IAA7B,EAAmCC,KAAnC,EAA0CC,gBAA1C,EAA4D;AAU1D,MAAIC,OAAO,GAAGF,KAAK,IAAI,IAAT,IAAiB,OAAOA,KAAP,KAAiB,SAAlC,IAA+CA,KAAK,KAAK,EAAvE;;AAEA,MAAIE,OAAJ,EAAa;AACX,WAAO,EAAP;AACD;;AAED,MAAI,CAACD,gBAAD,IAAqB,OAAOD,KAAP,KAAiB,QAAtC,IAAkDA,KAAK,KAAK,CAA5D,IAAiE,EAAEH,gBAAgB,CAACM,cAAjB,CAAgCJ,IAAhC,KAAyCF,gBAAgB,CAACE,IAAD,CAA3D,CAArE,EAAyI;AACvI,WAAOC,KAAK,GAAG,IAAf;AACD;;AAED,SAAO,CAAC,KAAKA,KAAN,EAAaI,IAAb,EAAP;AACD;;AAED,eAAeN,mBAAf","sourcesContent":["/* eslint-disable */\n\n/**\n * Copyright (c) Facebook, Inc. and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * From React 16.0.0\n * \n */\nimport isUnitlessNumber from '../../../modules/unitlessNumbers';\n/**\n * Convert a value into the proper css writable value. The style name `name`\n * should be logical (no hyphens), as specified\n * in `CSSProperty.isUnitlessNumber`.\n *\n * @param {string} name CSS property name such as `topMargin`.\n * @param {*} value CSS property value such as `10px`.\n * @return {string} Normalized style value with dimensions applied.\n */\n\nfunction dangerousStyleValue(name, value, isCustomProperty) {\n // Note that we've removed escapeTextForBrowser() calls here since the\n // whole string will be escaped when the attribute is injected into\n // the markup. If you provide unsafe user data here they can inject\n // arbitrary CSS which may be problematic (I couldn't repro this):\n // https://www.owasp.org/index.php/XSS_Filter_Evasion_Cheat_Sheet\n // http://www.thespanner.co.uk/2007/11/26/ultimate-xss-css-injection/\n // This is not an XSS hole but instead a potential CSS injection issue\n // which has lead to a greater discussion about how we're going to\n // trust URLs moving forward. See #2115901\n var isEmpty = value == null || typeof value === 'boolean' || value === '';\n\n if (isEmpty) {\n return '';\n }\n\n if (!isCustomProperty && typeof value === 'number' && value !== 0 && !(isUnitlessNumber.hasOwnProperty(name) && isUnitlessNumber[name])) {\n return value + 'px'; // Presumes implicit 'px' suffix for unitless numbers\n }\n\n return ('' + value).trim();\n}\n\nexport default dangerousStyleValue;"]},"metadata":{},"sourceType":"module"}
@@ -1 +0,0 @@
1
- {"ast":null,"code":"function emptyFunction() {}\n\nvar BackHandler = {\n exitApp: emptyFunction,\n addEventListener: function addEventListener() {\n return {\n remove: emptyFunction\n };\n },\n removeEventListener: emptyFunction\n};\nexport default BackHandler;","map":{"version":3,"sources":["/Users/jake/git/react-native-candlestick-chart/example/node_modules/react-native-web/dist/exports/BackHandler/index.js"],"names":["emptyFunction","BackHandler","exitApp","addEventListener","remove","removeEventListener"],"mappings":"AASA,SAASA,aAAT,GAAyB,CAAE;;AAE3B,IAAIC,WAAW,GAAG;AAChBC,EAAAA,OAAO,EAAEF,aADO;AAEhBG,EAAAA,gBAAgB,EAAE,SAASA,gBAAT,GAA4B;AAC5C,WAAO;AACLC,MAAAA,MAAM,EAAEJ;AADH,KAAP;AAGD,GANe;AAOhBK,EAAAA,mBAAmB,EAAEL;AAPL,CAAlB;AASA,eAAeC,WAAf","sourcesContent":["/**\n * Copyright (c) Nicolas Gallagher.\n * Copyright (c) Facebook, Inc. and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * \n */\nfunction emptyFunction() {}\n\nvar BackHandler = {\n exitApp: emptyFunction,\n addEventListener: function addEventListener() {\n return {\n remove: emptyFunction\n };\n },\n removeEventListener: emptyFunction\n};\nexport default BackHandler;"]},"metadata":{},"sourceType":"module"}
@@ -1 +0,0 @@
1
- {"ast":null,"code":"import _defineProperty from \"@babel/runtime/helpers/defineProperty\";\nimport _classCallCheck from \"@babel/runtime/helpers/classCallCheck\";\nimport _createClass from \"@babel/runtime/helpers/createClass\";\nimport invariant from 'invariant';\nimport NativeEventEmitter from \"react-native-web/dist/exports/NativeEventEmitter\";\nimport Platform from \"react-native-web/dist/exports/Platform\";\nvar nativeEmitterSubscriptionKey = '@@nativeEmitterSubscription@@';\nexport var EventEmitter = function () {\n function EventEmitter(nativeModule) {\n _classCallCheck(this, EventEmitter);\n\n this._listenerCount = 0;\n this._nativeModule = nativeModule;\n this._eventEmitter = new NativeEventEmitter(nativeModule);\n }\n\n _createClass(EventEmitter, [{\n key: \"addListener\",\n value: function addListener(eventName, listener) {\n var _this = this,\n _subscription;\n\n if (!this._listenerCount && Platform.OS !== 'ios' && this._nativeModule.startObserving) {\n this._nativeModule.startObserving();\n }\n\n this._listenerCount++;\n\n var nativeEmitterSubscription = this._eventEmitter.addListener(eventName, listener);\n\n var subscription = (_subscription = {}, _defineProperty(_subscription, nativeEmitterSubscriptionKey, nativeEmitterSubscription), _defineProperty(_subscription, \"remove\", function remove() {\n _this.removeSubscription(subscription);\n }), _subscription);\n return subscription;\n }\n }, {\n key: \"removeAllListeners\",\n value: function removeAllListeners(eventName) {\n var removedListenerCount = this._eventEmitter.listeners(eventName).length;\n\n this._eventEmitter.removeAllListeners(eventName);\n\n this._listenerCount -= removedListenerCount;\n invariant(this._listenerCount >= 0, \"EventEmitter must have a non-negative number of listeners\");\n\n if (!this._listenerCount && Platform.OS !== 'ios' && this._nativeModule.stopObserving) {\n this._nativeModule.stopObserving();\n }\n }\n }, {\n key: \"removeSubscription\",\n value: function removeSubscription(subscription) {\n var nativeEmitterSubscription = subscription[nativeEmitterSubscriptionKey];\n\n if (!nativeEmitterSubscription) {\n return;\n }\n\n this._eventEmitter.removeSubscription(nativeEmitterSubscription);\n\n this._listenerCount--;\n delete subscription[nativeEmitterSubscriptionKey];\n\n subscription.remove = function () {};\n\n if (!this._listenerCount && Platform.OS !== 'ios' && this._nativeModule.stopObserving) {\n this._nativeModule.stopObserving();\n }\n }\n }, {\n key: \"emit\",\n value: function emit(eventName) {\n var _this$_eventEmitter;\n\n for (var _len = arguments.length, params = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {\n params[_key - 1] = arguments[_key];\n }\n\n (_this$_eventEmitter = this._eventEmitter).emit.apply(_this$_eventEmitter, [eventName].concat(params));\n }\n }]);\n\n return EventEmitter;\n}();","map":{"version":3,"sources":["../src/EventEmitter.ts"],"names":[],"mappings":";;;AAAA,OAAO,SAAP,MAAsB,WAAtB;;;AAGA,IAAM,4BAA4B,GAAG,+BAArC;AAiBA,WAAa,YAAb;AAKE,wBAAY,YAAZ,EAAsC;AAAA;;AAJtC,SAAA,cAAA,GAAiB,CAAjB;AAKE,SAAK,aAAL,GAAqB,YAArB;AACA,SAAK,aAAL,GAAqB,IAAI,kBAAJ,CAAuB,YAAvB,CAArB;AACD;;AARH;AAAA;AAAA,WAUE,qBAAe,SAAf,EAAkC,QAAlC,EAA8D;AAAA;AAAA;;AAC5D,UAAI,CAAC,KAAK,cAAN,IAAwB,QAAQ,CAAC,EAAT,KAAgB,KAAxC,IAAiD,KAAK,aAAL,CAAmB,cAAxE,EAAwF;AACtF,aAAK,aAAL,CAAmB,cAAnB;AACD;;AAED,WAAK,cAAL;;AACA,UAAM,yBAAyB,GAAG,KAAK,aAAL,CAAmB,WAAnB,CAA+B,SAA/B,EAA0C,QAA1C,CAAlC;;AACA,UAAM,YAAY,uDACf,4BADe,EACgB,yBADhB,4CAER,kBAAK;AACX,QAAA,KAAI,CAAC,kBAAL,CAAwB,YAAxB;AACD,OAJe,iBAAlB;AAMA,aAAO,YAAP;AACD;AAxBH;AAAA;AAAA,WA0BE,4BAAmB,SAAnB,EAAoC;AAClC,UAAM,oBAAoB,GAAG,KAAK,aAAL,CAAmB,SAAnB,CAA6B,SAA7B,EAAwC,MAArE;;AACA,WAAK,aAAL,CAAmB,kBAAnB,CAAsC,SAAtC;;AACA,WAAK,cAAL,IAAuB,oBAAvB;AACA,MAAA,SAAS,CACP,KAAK,cAAL,IAAuB,CADhB,8DAAT;;AAKA,UAAI,CAAC,KAAK,cAAN,IAAwB,QAAQ,CAAC,EAAT,KAAgB,KAAxC,IAAiD,KAAK,aAAL,CAAmB,aAAxE,EAAuF;AACrF,aAAK,aAAL,CAAmB,aAAnB;AACD;AACF;AAtCH;AAAA;AAAA,WAwCE,4BAAmB,YAAnB,EAA6C;AAC3C,UAAM,yBAAyB,GAAG,YAAY,CAAC,4BAAD,CAA9C;;AACA,UAAI,CAAC,yBAAL,EAAgC;AAC9B;AACD;;AAED,WAAK,aAAL,CAAmB,kBAAnB,CAAsC,yBAAtC;;AACA,WAAK,cAAL;AAIA,aAAO,YAAY,CAAC,4BAAD,CAAnB;;AAGA,MAAA,YAAY,CAAC,MAAb,GAAsB,YAAK,CAAG,CAA9B;;AAEA,UAAI,CAAC,KAAK,cAAN,IAAwB,QAAQ,CAAC,EAAT,KAAgB,KAAxC,IAAiD,KAAK,aAAL,CAAmB,aAAxE,EAAuF;AACrF,aAAK,aAAL,CAAmB,aAAnB;AACD;AACF;AA3DH;AAAA;AAAA,WA6DE,cAAK,SAAL,EAAwC;AAAA;;AAAA,wCAAb,MAAa;AAAb,QAAA,MAAa;AAAA;;AACtC,kCAAK,aAAL,EAAmB,IAAnB,6BAAwB,SAAxB,SAAsC,MAAtC;AACD;AA/DH;;AAAA;AAAA","sourcesContent":["import invariant from 'invariant';\nimport { NativeEventEmitter, Platform } from 'react-native';\n\nconst nativeEmitterSubscriptionKey = '@@nativeEmitterSubscription@@';\n\ntype NativeModule = {\n startObserving?: () => void;\n stopObserving?: () => void;\n addListener: (eventName: string) => void;\n removeListeners: (count: number) => void;\n};\n\n// @needsAudit\nexport type Subscription = {\n /**\n * A method to unsubscribe the listener.\n */\n remove: () => void;\n};\n\nexport class EventEmitter {\n _listenerCount = 0;\n _nativeModule: NativeModule;\n _eventEmitter: NativeEventEmitter;\n\n constructor(nativeModule: NativeModule) {\n this._nativeModule = nativeModule;\n this._eventEmitter = new NativeEventEmitter(nativeModule as any);\n }\n\n addListener<T>(eventName: string, listener: (event: T) => void): Subscription {\n if (!this._listenerCount && Platform.OS !== 'ios' && this._nativeModule.startObserving) {\n this._nativeModule.startObserving();\n }\n\n this._listenerCount++;\n const nativeEmitterSubscription = this._eventEmitter.addListener(eventName, listener);\n const subscription = {\n [nativeEmitterSubscriptionKey]: nativeEmitterSubscription,\n remove: () => {\n this.removeSubscription(subscription);\n },\n };\n return subscription;\n }\n\n removeAllListeners(eventName: string): void {\n const removedListenerCount = this._eventEmitter.listeners(eventName).length;\n this._eventEmitter.removeAllListeners(eventName);\n this._listenerCount -= removedListenerCount;\n invariant(\n this._listenerCount >= 0,\n `EventEmitter must have a non-negative number of listeners`\n );\n\n if (!this._listenerCount && Platform.OS !== 'ios' && this._nativeModule.stopObserving) {\n this._nativeModule.stopObserving();\n }\n }\n\n removeSubscription(subscription: Subscription): void {\n const nativeEmitterSubscription = subscription[nativeEmitterSubscriptionKey];\n if (!nativeEmitterSubscription) {\n return;\n }\n\n this._eventEmitter.removeSubscription(nativeEmitterSubscription!);\n this._listenerCount--;\n\n // Ensure that the emitter's internal state remains correct even if `removeSubscription` is\n // called again with the same subscription\n delete subscription[nativeEmitterSubscriptionKey];\n\n // Release closed-over references to the emitter\n subscription.remove = () => {};\n\n if (!this._listenerCount && Platform.OS !== 'ios' && this._nativeModule.stopObserving) {\n this._nativeModule.stopObserving();\n }\n }\n\n emit(eventName: string, ...params: any[]): void {\n this._eventEmitter.emit(eventName, ...params);\n }\n}\n"],"sourceRoot":""},"metadata":{},"sourceType":"module"}
@@ -1 +0,0 @@
1
- {"ast":null,"code":"'use strict';\n\nimport AnimatedValue from \"./nodes/AnimatedValue\";\nimport NativeAnimatedHelper from \"./NativeAnimatedHelper\";\nimport findNodeHandle from \"../../../exports/findNodeHandle\";\nimport invariant from 'fbjs/lib/invariant';\nvar shouldUseNativeDriver = NativeAnimatedHelper.shouldUseNativeDriver;\n\nfunction attachNativeEvent(viewRef, eventName, argMapping) {\n var eventMappings = [];\n\n var traverse = function traverse(value, path) {\n if (value instanceof AnimatedValue) {\n value.__makeNative();\n\n eventMappings.push({\n nativeEventPath: path,\n animatedValueTag: value.__getNativeTag()\n });\n } else if (typeof value === 'object') {\n for (var _key in value) {\n traverse(value[_key], path.concat(_key));\n }\n }\n };\n\n invariant(argMapping[0] && argMapping[0].nativeEvent, 'Native driven events only support animated values contained inside `nativeEvent`.');\n traverse(argMapping[0].nativeEvent, []);\n var viewTag = findNodeHandle(viewRef);\n eventMappings.forEach(function (mapping) {\n NativeAnimatedHelper.API.addAnimatedEventToView(viewTag, eventName, mapping);\n });\n return {\n detach: function detach() {\n eventMappings.forEach(function (mapping) {\n NativeAnimatedHelper.API.removeAnimatedEventFromView(viewTag, eventName, mapping.animatedValueTag);\n });\n }\n };\n}\n\nvar AnimatedEvent = function () {\n function AnimatedEvent(argMapping, config) {\n if (config === void 0) {\n config = {};\n }\n\n this._listeners = [];\n this._argMapping = argMapping;\n\n if (config.listener) {\n this.__addListener(config.listener);\n }\n\n this._callListeners = this._callListeners.bind(this);\n this._attachedEvent = null;\n this.__isNative = shouldUseNativeDriver(config);\n\n if (process.env.NODE_ENV !== 'production') {\n this._validateMapping();\n }\n }\n\n var _proto = AnimatedEvent.prototype;\n\n _proto.__addListener = function __addListener(callback) {\n this._listeners.push(callback);\n };\n\n _proto.__removeListener = function __removeListener(callback) {\n this._listeners = this._listeners.filter(function (listener) {\n return listener !== callback;\n });\n };\n\n _proto.__attach = function __attach(viewRef, eventName) {\n invariant(this.__isNative, 'Only native driven events need to be attached.');\n this._attachedEvent = attachNativeEvent(viewRef, eventName, this._argMapping);\n };\n\n _proto.__detach = function __detach(viewTag, eventName) {\n invariant(this.__isNative, 'Only native driven events need to be detached.');\n this._attachedEvent && this._attachedEvent.detach();\n };\n\n _proto.__getHandler = function __getHandler() {\n var _this = this;\n\n if (this.__isNative) {\n return this._callListeners;\n }\n\n return function () {\n for (var _len = arguments.length, args = new Array(_len), _key2 = 0; _key2 < _len; _key2++) {\n args[_key2] = arguments[_key2];\n }\n\n var traverse = function traverse(recMapping, recEvt, key) {\n if (typeof recEvt === 'number' && recMapping instanceof AnimatedValue) {\n recMapping.setValue(recEvt);\n } else if (typeof recMapping === 'object') {\n for (var mappingKey in recMapping) {\n traverse(recMapping[mappingKey], recEvt[mappingKey], mappingKey);\n }\n }\n };\n\n if (!_this.__isNative) {\n _this._argMapping.forEach(function (mapping, idx) {\n traverse(mapping, args[idx], 'arg' + idx);\n });\n }\n\n _this._callListeners.apply(_this, args);\n };\n };\n\n _proto._callListeners = function _callListeners() {\n for (var _len2 = arguments.length, args = new Array(_len2), _key3 = 0; _key3 < _len2; _key3++) {\n args[_key3] = arguments[_key3];\n }\n\n this._listeners.forEach(function (listener) {\n return listener.apply(void 0, args);\n });\n };\n\n _proto._validateMapping = function _validateMapping() {\n var traverse = function traverse(recMapping, recEvt, key) {\n if (typeof recEvt === 'number') {\n invariant(recMapping instanceof AnimatedValue, 'Bad mapping of type ' + typeof recMapping + ' for key ' + key + ', event value must map to AnimatedValue');\n return;\n }\n\n invariant(typeof recMapping === 'object', 'Bad mapping of type ' + typeof recMapping + ' for key ' + key);\n invariant(typeof recEvt === 'object', 'Bad event of type ' + typeof recEvt + ' for key ' + key);\n\n for (var mappingKey in recMapping) {\n traverse(recMapping[mappingKey], recEvt[mappingKey], mappingKey);\n }\n };\n };\n\n return AnimatedEvent;\n}();\n\nexport { AnimatedEvent, attachNativeEvent };\nexport default {\n AnimatedEvent: AnimatedEvent,\n attachNativeEvent: attachNativeEvent\n};","map":{"version":3,"sources":["/Users/jake/git/react-native-candlestick-chart/example/node_modules/react-native-web/dist/vendor/react-native/Animated/AnimatedEvent.js"],"names":["AnimatedValue","NativeAnimatedHelper","findNodeHandle","invariant","shouldUseNativeDriver","attachNativeEvent","viewRef","eventName","argMapping","eventMappings","traverse","value","path","__makeNative","push","nativeEventPath","animatedValueTag","__getNativeTag","_key","concat","nativeEvent","viewTag","forEach","mapping","API","addAnimatedEventToView","detach","removeAnimatedEventFromView","AnimatedEvent","config","_listeners","_argMapping","listener","__addListener","_callListeners","bind","_attachedEvent","__isNative","process","env","NODE_ENV","_validateMapping","_proto","prototype","callback","__removeListener","filter","__attach","__detach","__getHandler","_this","_len","arguments","length","args","Array","_key2","recMapping","recEvt","key","setValue","mappingKey","idx","apply","_len2","_key3"],"mappings":"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","sourcesContent":["/**\n * Copyright (c) 2015-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * \n * @format\n */\n'use strict';\n\nimport AnimatedValue from './nodes/AnimatedValue';\nimport NativeAnimatedHelper from './NativeAnimatedHelper';\nimport findNodeHandle from '../../../exports/findNodeHandle';\nimport invariant from 'fbjs/lib/invariant';\nvar shouldUseNativeDriver = NativeAnimatedHelper.shouldUseNativeDriver;\n\nfunction attachNativeEvent(viewRef, eventName, argMapping) {\n // Find animated values in `argMapping` and create an array representing their\n // key path inside the `nativeEvent` object. Ex.: ['contentOffset', 'x'].\n var eventMappings = [];\n\n var traverse = function traverse(value, path) {\n if (value instanceof AnimatedValue) {\n value.__makeNative();\n\n eventMappings.push({\n nativeEventPath: path,\n animatedValueTag: value.__getNativeTag()\n });\n } else if (typeof value === 'object') {\n for (var _key in value) {\n traverse(value[_key], path.concat(_key));\n }\n }\n };\n\n invariant(argMapping[0] && argMapping[0].nativeEvent, 'Native driven events only support animated values contained inside `nativeEvent`.'); // Assume that the event containing `nativeEvent` is always the first argument.\n\n traverse(argMapping[0].nativeEvent, []);\n var viewTag = findNodeHandle(viewRef);\n eventMappings.forEach(function (mapping) {\n NativeAnimatedHelper.API.addAnimatedEventToView(viewTag, eventName, mapping);\n });\n return {\n detach: function detach() {\n eventMappings.forEach(function (mapping) {\n NativeAnimatedHelper.API.removeAnimatedEventFromView(viewTag, eventName, mapping.animatedValueTag);\n });\n }\n };\n}\n\nvar AnimatedEvent =\n/*#__PURE__*/\nfunction () {\n function AnimatedEvent(argMapping, config) {\n if (config === void 0) {\n config = {};\n }\n\n this._listeners = [];\n this._argMapping = argMapping;\n\n if (config.listener) {\n this.__addListener(config.listener);\n }\n\n this._callListeners = this._callListeners.bind(this);\n this._attachedEvent = null;\n this.__isNative = shouldUseNativeDriver(config);\n\n if (process.env.NODE_ENV !== 'production') {\n this._validateMapping();\n }\n }\n\n var _proto = AnimatedEvent.prototype;\n\n _proto.__addListener = function __addListener(callback) {\n this._listeners.push(callback);\n };\n\n _proto.__removeListener = function __removeListener(callback) {\n this._listeners = this._listeners.filter(function (listener) {\n return listener !== callback;\n });\n };\n\n _proto.__attach = function __attach(viewRef, eventName) {\n invariant(this.__isNative, 'Only native driven events need to be attached.');\n this._attachedEvent = attachNativeEvent(viewRef, eventName, this._argMapping);\n };\n\n _proto.__detach = function __detach(viewTag, eventName) {\n invariant(this.__isNative, 'Only native driven events need to be detached.');\n this._attachedEvent && this._attachedEvent.detach();\n };\n\n _proto.__getHandler = function __getHandler() {\n var _this = this;\n\n if (this.__isNative) {\n return this._callListeners;\n }\n\n return function () {\n for (var _len = arguments.length, args = new Array(_len), _key2 = 0; _key2 < _len; _key2++) {\n args[_key2] = arguments[_key2];\n }\n\n var traverse = function traverse(recMapping, recEvt, key) {\n if (typeof recEvt === 'number' && recMapping instanceof AnimatedValue) {\n recMapping.setValue(recEvt);\n } else if (typeof recMapping === 'object') {\n for (var mappingKey in recMapping) {\n /* $FlowFixMe(>=0.53.0 site=react_native_fb,react_native_oss) This\n * comment suppresses an error when upgrading Flow's support for\n * React. To see the error delete this comment and run Flow. */\n traverse(recMapping[mappingKey], recEvt[mappingKey], mappingKey);\n }\n }\n };\n\n if (!_this.__isNative) {\n _this._argMapping.forEach(function (mapping, idx) {\n traverse(mapping, args[idx], 'arg' + idx);\n });\n }\n\n _this._callListeners.apply(_this, args);\n };\n };\n\n _proto._callListeners = function _callListeners() {\n for (var _len2 = arguments.length, args = new Array(_len2), _key3 = 0; _key3 < _len2; _key3++) {\n args[_key3] = arguments[_key3];\n }\n\n this._listeners.forEach(function (listener) {\n return listener.apply(void 0, args);\n });\n };\n\n _proto._validateMapping = function _validateMapping() {\n var traverse = function traverse(recMapping, recEvt, key) {\n if (typeof recEvt === 'number') {\n invariant(recMapping instanceof AnimatedValue, 'Bad mapping of type ' + typeof recMapping + ' for key ' + key + ', event value must map to AnimatedValue');\n return;\n }\n\n invariant(typeof recMapping === 'object', 'Bad mapping of type ' + typeof recMapping + ' for key ' + key);\n invariant(typeof recEvt === 'object', 'Bad event of type ' + typeof recEvt + ' for key ' + key);\n\n for (var mappingKey in recMapping) {\n traverse(recMapping[mappingKey], recEvt[mappingKey], mappingKey);\n }\n };\n };\n\n return AnimatedEvent;\n}();\n\nexport { AnimatedEvent, attachNativeEvent };\nexport default {\n AnimatedEvent: AnimatedEvent,\n attachNativeEvent: attachNativeEvent\n};"]},"metadata":{},"sourceType":"module"}
@@ -1 +0,0 @@
1
- {"ast":null,"code":"\"use strict\";\n\nvar aStackPool = [];\nvar bStackPool = [];\n/**\n * Checks if two values are equal. Values may be primitives, arrays, or objects.\n * Returns true if both arguments have the same keys and values.\n *\n * @see http://underscorejs.org\n * @copyright 2009-2013 Jeremy Ashkenas, DocumentCloud Inc.\n * @license MIT\n */\n\nfunction areEqual(a, b) {\n var aStack = aStackPool.length ? aStackPool.pop() : [];\n var bStack = bStackPool.length ? bStackPool.pop() : [];\n var result = eq(a, b, aStack, bStack);\n aStack.length = 0;\n bStack.length = 0;\n aStackPool.push(aStack);\n bStackPool.push(bStack);\n return result;\n}\n\nfunction eq(a, b, aStack, bStack) {\n if (a === b) {\n return a !== 0 || 1 / a == 1 / b;\n }\n\n if (a == null || b == null) {\n return false;\n }\n\n if (typeof a != 'object' || typeof b != 'object') {\n return false;\n }\n\n var objToStr = Object.prototype.toString;\n var className = objToStr.call(a);\n\n if (className != objToStr.call(b)) {\n return false;\n }\n\n switch (className) {\n case '[object String]':\n return a == String(b);\n\n case '[object Number]':\n return isNaN(a) || isNaN(b) ? false : a == Number(b);\n\n case '[object Date]':\n case '[object Boolean]':\n return +a == +b;\n\n case '[object RegExp]':\n return a.source == b.source && a.global == b.global && a.multiline == b.multiline && a.ignoreCase == b.ignoreCase;\n }\n\n var length = aStack.length;\n\n while (length--) {\n if (aStack[length] == a) {\n return bStack[length] == b;\n }\n }\n\n aStack.push(a);\n bStack.push(b);\n var size = 0;\n\n if (className === '[object Array]') {\n size = a.length;\n\n if (size !== b.length) {\n return false;\n }\n\n while (size--) {\n if (!eq(a[size], b[size], aStack, bStack)) {\n return false;\n }\n }\n } else {\n if (a.constructor !== b.constructor) {\n return false;\n }\n\n if (a.hasOwnProperty('valueOf') && b.hasOwnProperty('valueOf')) {\n return a.valueOf() == b.valueOf();\n }\n\n var keys = Object.keys(a);\n\n if (keys.length != Object.keys(b).length) {\n return false;\n }\n\n for (var i = 0; i < keys.length; i++) {\n if (!eq(a[keys[i]], b[keys[i]], aStack, bStack)) {\n return false;\n }\n }\n }\n\n aStack.pop();\n bStack.pop();\n return true;\n}\n\nmodule.exports = areEqual;","map":{"version":3,"sources":["/Users/jake/git/react-native-candlestick-chart/example/node_modules/react-native-gesture-handler/node_modules/fbjs/lib/areEqual.js"],"names":["aStackPool","bStackPool","areEqual","a","b","aStack","length","pop","bStack","result","eq","push","objToStr","Object","prototype","toString","className","call","String","isNaN","Number","source","global","multiline","ignoreCase","size","constructor","hasOwnProperty","valueOf","keys","i","module","exports"],"mappings":"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","sourcesContent":["\"use strict\";\n\n/**\n * Copyright (c) 2013-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * \n */\nvar aStackPool = [];\nvar bStackPool = [];\n/**\n * Checks if two values are equal. Values may be primitives, arrays, or objects.\n * Returns true if both arguments have the same keys and values.\n *\n * @see http://underscorejs.org\n * @copyright 2009-2013 Jeremy Ashkenas, DocumentCloud Inc.\n * @license MIT\n */\n\nfunction areEqual(a, b) {\n var aStack = aStackPool.length ? aStackPool.pop() : [];\n var bStack = bStackPool.length ? bStackPool.pop() : [];\n var result = eq(a, b, aStack, bStack);\n aStack.length = 0;\n bStack.length = 0;\n aStackPool.push(aStack);\n bStackPool.push(bStack);\n return result;\n}\n\nfunction eq(a, b, aStack, bStack) {\n if (a === b) {\n // Identical objects are equal. `0 === -0`, but they aren't identical.\n return a !== 0 || 1 / a == 1 / b;\n }\n\n if (a == null || b == null) {\n // a or b can be `null` or `undefined`\n return false;\n }\n\n if (typeof a != 'object' || typeof b != 'object') {\n return false;\n }\n\n var objToStr = Object.prototype.toString;\n var className = objToStr.call(a);\n\n if (className != objToStr.call(b)) {\n return false;\n }\n\n switch (className) {\n case '[object String]':\n return a == String(b);\n\n case '[object Number]':\n return isNaN(a) || isNaN(b) ? false : a == Number(b);\n\n case '[object Date]':\n case '[object Boolean]':\n return +a == +b;\n\n case '[object RegExp]':\n return a.source == b.source && a.global == b.global && a.multiline == b.multiline && a.ignoreCase == b.ignoreCase;\n } // Assume equality for cyclic structures.\n\n\n var length = aStack.length;\n\n while (length--) {\n if (aStack[length] == a) {\n return bStack[length] == b;\n }\n }\n\n aStack.push(a);\n bStack.push(b);\n var size = 0; // Recursively compare objects and arrays.\n\n if (className === '[object Array]') {\n size = a.length;\n\n if (size !== b.length) {\n return false;\n } // Deep compare the contents, ignoring non-numeric properties.\n\n\n while (size--) {\n if (!eq(a[size], b[size], aStack, bStack)) {\n return false;\n }\n }\n } else {\n if (a.constructor !== b.constructor) {\n return false;\n }\n\n if (a.hasOwnProperty('valueOf') && b.hasOwnProperty('valueOf')) {\n return a.valueOf() == b.valueOf();\n }\n\n var keys = Object.keys(a);\n\n if (keys.length != Object.keys(b).length) {\n return false;\n }\n\n for (var i = 0; i < keys.length; i++) {\n if (!eq(a[keys[i]], b[keys[i]], aStack, bStack)) {\n return false;\n }\n }\n }\n\n aStack.pop();\n bStack.pop();\n return true;\n}\n\nmodule.exports = areEqual;"]},"metadata":{},"sourceType":"script"}
@@ -1 +0,0 @@
1
- {"ast":null,"code":"import { Platform } from '@unimodules/core';\nvar LOCAL_STORAGE_KEY = 'EXPO_ERROR_RECOVERY_STORAGE';\n\nfunction _consumeRecoveryProps() {\n if (!Platform.isDOMAvailable) return null;\n\n try {\n var props = localStorage.getItem(LOCAL_STORAGE_KEY);\n localStorage.removeItem(LOCAL_STORAGE_KEY);\n return props;\n } catch (e) {}\n\n return null;\n}\n\nexport default {\n get name() {\n return 'ExpoErrorRecovery';\n },\n\n saveRecoveryProps: function saveRecoveryProps(props) {\n if (!Platform.isDOMAvailable) return;\n\n try {\n localStorage.setItem(LOCAL_STORAGE_KEY, props);\n } catch (e) {}\n },\n recoveredProps: _consumeRecoveryProps()\n};","map":{"version":3,"sources":["../src/ExpoErrorRecovery.web.ts"],"names":[],"mappings":"AAAA,SAAS,QAAT,QAAyB,kBAAzB;AACA,IAAM,iBAAiB,GAAG,6BAA1B;;AAEA,SAAS,qBAAT,GAA8B;AAC5B,MAAI,CAAC,QAAQ,CAAC,cAAd,EAA8B,OAAO,IAAP;;AAC9B,MAAI;AACF,QAAM,KAAK,GAAG,YAAY,CAAC,OAAb,CAAqB,iBAArB,CAAd;AACA,IAAA,YAAY,CAAC,UAAb,CAAwB,iBAAxB;AACA,WAAO,KAAP;AACD,GAJD,CAIE,OAAO,CAAP,EAAU,CAEX;;AACD,SAAO,IAAP;AACD;;AAED,eAAe;AACb,MAAI,IAAJ,GAAQ;AACN,WAAO,mBAAP;AACD,GAHY;;AAKb,EAAA,iBALa,6BAKK,KALL,EAKkB;AAC7B,QAAI,CAAC,QAAQ,CAAC,cAAd,EAA8B;;AAC9B,QAAI;AACF,MAAA,YAAY,CAAC,OAAb,CAAqB,iBAArB,EAAwC,KAAxC;AACD,KAFD,CAEE,OAAO,CAAP,EAAU,CAEX;AACF,GAZY;AAcb,EAAA,cAAc,EAAE,qBAAqB;AAdxB,CAAf","sourcesContent":["import { Platform } from '@unimodules/core';\nconst LOCAL_STORAGE_KEY = 'EXPO_ERROR_RECOVERY_STORAGE';\n\nfunction _consumeRecoveryProps(): string | null {\n if (!Platform.isDOMAvailable) return null;\n try {\n const props = localStorage.getItem(LOCAL_STORAGE_KEY);\n localStorage.removeItem(LOCAL_STORAGE_KEY);\n return props;\n } catch (e) {\n // Catches localStorage SecurityError https://github.com/expo/expo/issues/8355\n }\n return null;\n}\n\nexport default {\n get name(): string {\n return 'ExpoErrorRecovery';\n },\n\n saveRecoveryProps(props: string): void {\n if (!Platform.isDOMAvailable) return;\n try {\n localStorage.setItem(LOCAL_STORAGE_KEY, props);\n } catch (e) {\n // Catches localStorage SecurityError https://github.com/expo/expo/issues/8355\n }\n },\n\n recoveredProps: _consumeRecoveryProps(),\n};\n"],"sourceRoot":""},"metadata":{},"sourceType":"module"}
@@ -1 +0,0 @@
1
- {"ast":null,"code":"'use strict';\n\nfunction ownKeys(object, enumerableOnly) {\n var keys = Object.keys(object);\n\n if (Object.getOwnPropertySymbols) {\n var symbols = Object.getOwnPropertySymbols(object);\n if (enumerableOnly) symbols = symbols.filter(function (sym) {\n return Object.getOwnPropertyDescriptor(object, sym).enumerable;\n });\n keys.push.apply(keys, symbols);\n }\n\n return keys;\n}\n\nfunction _objectSpread(target) {\n for (var i = 1; i < arguments.length; i++) {\n var source = arguments[i] != null ? arguments[i] : {};\n\n if (i % 2) {\n ownKeys(Object(source), true).forEach(function (key) {\n _defineProperty(target, key, source[key]);\n });\n } else if (Object.getOwnPropertyDescriptors) {\n Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));\n } else {\n ownKeys(Object(source)).forEach(function (key) {\n Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));\n });\n }\n }\n\n return target;\n}\n\nfunction _defineProperty(obj, key, value) {\n if (key in obj) {\n Object.defineProperty(obj, key, {\n value: value,\n enumerable: true,\n configurable: true,\n writable: true\n });\n } else {\n obj[key] = value;\n }\n\n return obj;\n}\n\nfunction _inheritsLoose(subClass, superClass) {\n subClass.prototype = Object.create(superClass.prototype);\n subClass.prototype.constructor = subClass;\n subClass.__proto__ = superClass;\n}\n\nimport { AnimatedEvent } from \"../AnimatedEvent\";\nimport AnimatedNode from \"./AnimatedNode\";\nimport AnimatedStyle from \"./AnimatedStyle\";\nimport NativeAnimatedHelper from \"../NativeAnimatedHelper\";\nimport findNodeHandle from \"../../../../exports/findNodeHandle\";\nimport invariant from 'fbjs/lib/invariant';\n\nvar AnimatedProps = function (_AnimatedNode) {\n _inheritsLoose(AnimatedProps, _AnimatedNode);\n\n function AnimatedProps(props, callback) {\n var _this;\n\n _this = _AnimatedNode.call(this) || this;\n\n if (props.style) {\n props = _objectSpread({}, props, {\n style: new AnimatedStyle(props.style)\n });\n }\n\n _this._props = props;\n _this._callback = callback;\n\n _this.__attach();\n\n return _this;\n }\n\n var _proto = AnimatedProps.prototype;\n\n _proto.__getValue = function __getValue() {\n var props = {};\n\n for (var key in this._props) {\n var value = this._props[key];\n\n if (value instanceof AnimatedNode) {\n if (!value.__isNative || value instanceof AnimatedStyle) {\n props[key] = value.__getValue();\n }\n } else if (value instanceof AnimatedEvent) {\n props[key] = value.__getHandler();\n } else {\n props[key] = value;\n }\n }\n\n return props;\n };\n\n _proto.__getAnimatedValue = function __getAnimatedValue() {\n var props = {};\n\n for (var key in this._props) {\n var value = this._props[key];\n\n if (value instanceof AnimatedNode) {\n props[key] = value.__getAnimatedValue();\n }\n }\n\n return props;\n };\n\n _proto.__attach = function __attach() {\n for (var key in this._props) {\n var value = this._props[key];\n\n if (value instanceof AnimatedNode) {\n value.__addChild(this);\n }\n }\n };\n\n _proto.__detach = function __detach() {\n if (this.__isNative && this._animatedView) {\n this.__disconnectAnimatedView();\n }\n\n for (var key in this._props) {\n var value = this._props[key];\n\n if (value instanceof AnimatedNode) {\n value.__removeChild(this);\n }\n }\n\n _AnimatedNode.prototype.__detach.call(this);\n };\n\n _proto.update = function update() {\n this._callback();\n };\n\n _proto.__makeNative = function __makeNative() {\n if (!this.__isNative) {\n this.__isNative = true;\n\n for (var key in this._props) {\n var value = this._props[key];\n\n if (value instanceof AnimatedNode) {\n value.__makeNative();\n }\n }\n\n if (this._animatedView) {\n this.__connectAnimatedView();\n }\n }\n };\n\n _proto.setNativeView = function setNativeView(animatedView) {\n if (this._animatedView === animatedView) {\n return;\n }\n\n this._animatedView = animatedView;\n\n if (this.__isNative) {\n this.__connectAnimatedView();\n }\n };\n\n _proto.__connectAnimatedView = function __connectAnimatedView() {\n invariant(this.__isNative, 'Expected node to be marked as \"native\"');\n var nativeViewTag = findNodeHandle(this._animatedView);\n invariant(nativeViewTag != null, 'Unable to locate attached view in the native tree');\n NativeAnimatedHelper.API.connectAnimatedNodeToView(this.__getNativeTag(), nativeViewTag);\n };\n\n _proto.__disconnectAnimatedView = function __disconnectAnimatedView() {\n invariant(this.__isNative, 'Expected node to be marked as \"native\"');\n var nativeViewTag = findNodeHandle(this._animatedView);\n invariant(nativeViewTag != null, 'Unable to locate attached view in the native tree');\n NativeAnimatedHelper.API.disconnectAnimatedNodeFromView(this.__getNativeTag(), nativeViewTag);\n };\n\n _proto.__getNativeConfig = function __getNativeConfig() {\n var propsConfig = {};\n\n for (var propKey in this._props) {\n var value = this._props[propKey];\n\n if (value instanceof AnimatedNode) {\n value.__makeNative();\n\n propsConfig[propKey] = value.__getNativeTag();\n }\n }\n\n return {\n type: 'props',\n props: propsConfig\n };\n };\n\n return AnimatedProps;\n}(AnimatedNode);\n\nexport default AnimatedProps;","map":{"version":3,"sources":["/Users/jake/git/react-native-candlestick-chart/example/node_modules/react-native-web/dist/vendor/react-native/Animated/nodes/AnimatedProps.js"],"names":["ownKeys","object","enumerableOnly","keys","Object","getOwnPropertySymbols","symbols","filter","sym","getOwnPropertyDescriptor","enumerable","push","apply","_objectSpread","target","i","arguments","length","source","forEach","key","_defineProperty","getOwnPropertyDescriptors","defineProperties","defineProperty","obj","value","configurable","writable","_inheritsLoose","subClass","superClass","prototype","create","constructor","__proto__","AnimatedEvent","AnimatedNode","AnimatedStyle","NativeAnimatedHelper","findNodeHandle","invariant","AnimatedProps","_AnimatedNode","props","callback","_this","call","style","_props","_callback","__attach","_proto","__getValue","__isNative","__getHandler","__getAnimatedValue","__addChild","__detach","_animatedView","__disconnectAnimatedView","__removeChild","update","__makeNative","__connectAnimatedView","setNativeView","animatedView","nativeViewTag","API","connectAnimatedNodeToView","__getNativeTag","disconnectAnimatedNodeFromView","__getNativeConfig","propsConfig","propKey","type"],"mappings":"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","sourcesContent":["/**\n * Copyright (c) 2015-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * \n * @format\n */\n'use strict';\n\nfunction ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }\n\nfunction _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }\n\nfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\nfunction _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; subClass.__proto__ = superClass; }\n\nimport { AnimatedEvent } from '../AnimatedEvent';\nimport AnimatedNode from './AnimatedNode';\nimport AnimatedStyle from './AnimatedStyle';\nimport NativeAnimatedHelper from '../NativeAnimatedHelper';\nimport findNodeHandle from '../../../../exports/findNodeHandle';\nimport invariant from 'fbjs/lib/invariant';\n\nvar AnimatedProps =\n/*#__PURE__*/\nfunction (_AnimatedNode) {\n _inheritsLoose(AnimatedProps, _AnimatedNode);\n\n function AnimatedProps(props, callback) {\n var _this;\n\n _this = _AnimatedNode.call(this) || this;\n\n if (props.style) {\n props = _objectSpread({}, props, {\n style: new AnimatedStyle(props.style)\n });\n }\n\n _this._props = props;\n _this._callback = callback;\n\n _this.__attach();\n\n return _this;\n }\n\n var _proto = AnimatedProps.prototype;\n\n _proto.__getValue = function __getValue() {\n var props = {};\n\n for (var key in this._props) {\n var value = this._props[key];\n\n if (value instanceof AnimatedNode) {\n if (!value.__isNative || value instanceof AnimatedStyle) {\n // We cannot use value of natively driven nodes this way as the value we have access from\n // JS may not be up to date.\n props[key] = value.__getValue();\n }\n } else if (value instanceof AnimatedEvent) {\n props[key] = value.__getHandler();\n } else {\n props[key] = value;\n }\n }\n\n return props;\n };\n\n _proto.__getAnimatedValue = function __getAnimatedValue() {\n var props = {};\n\n for (var key in this._props) {\n var value = this._props[key];\n\n if (value instanceof AnimatedNode) {\n props[key] = value.__getAnimatedValue();\n }\n }\n\n return props;\n };\n\n _proto.__attach = function __attach() {\n for (var key in this._props) {\n var value = this._props[key];\n\n if (value instanceof AnimatedNode) {\n value.__addChild(this);\n }\n }\n };\n\n _proto.__detach = function __detach() {\n if (this.__isNative && this._animatedView) {\n this.__disconnectAnimatedView();\n }\n\n for (var key in this._props) {\n var value = this._props[key];\n\n if (value instanceof AnimatedNode) {\n value.__removeChild(this);\n }\n }\n\n _AnimatedNode.prototype.__detach.call(this);\n };\n\n _proto.update = function update() {\n this._callback();\n };\n\n _proto.__makeNative = function __makeNative() {\n if (!this.__isNative) {\n this.__isNative = true;\n\n for (var key in this._props) {\n var value = this._props[key];\n\n if (value instanceof AnimatedNode) {\n value.__makeNative();\n }\n }\n\n if (this._animatedView) {\n this.__connectAnimatedView();\n }\n }\n };\n\n _proto.setNativeView = function setNativeView(animatedView) {\n if (this._animatedView === animatedView) {\n return;\n }\n\n this._animatedView = animatedView;\n\n if (this.__isNative) {\n this.__connectAnimatedView();\n }\n };\n\n _proto.__connectAnimatedView = function __connectAnimatedView() {\n invariant(this.__isNative, 'Expected node to be marked as \"native\"');\n var nativeViewTag = findNodeHandle(this._animatedView);\n invariant(nativeViewTag != null, 'Unable to locate attached view in the native tree');\n NativeAnimatedHelper.API.connectAnimatedNodeToView(this.__getNativeTag(), nativeViewTag);\n };\n\n _proto.__disconnectAnimatedView = function __disconnectAnimatedView() {\n invariant(this.__isNative, 'Expected node to be marked as \"native\"');\n var nativeViewTag = findNodeHandle(this._animatedView);\n invariant(nativeViewTag != null, 'Unable to locate attached view in the native tree');\n NativeAnimatedHelper.API.disconnectAnimatedNodeFromView(this.__getNativeTag(), nativeViewTag);\n };\n\n _proto.__getNativeConfig = function __getNativeConfig() {\n var propsConfig = {};\n\n for (var propKey in this._props) {\n var value = this._props[propKey];\n\n if (value instanceof AnimatedNode) {\n value.__makeNative();\n\n propsConfig[propKey] = value.__getNativeTag();\n }\n }\n\n return {\n type: 'props',\n props: propsConfig\n };\n };\n\n return AnimatedProps;\n}(AnimatedNode);\n\nexport default AnimatedProps;"]},"metadata":{},"sourceType":"module"}
@@ -1 +0,0 @@
1
- {"ast":null,"code":"import TouchableNativeFeedback from \"react-native-web/dist/exports/TouchableNativeFeedback\";\nexport default TouchableNativeFeedback;","map":{"version":3,"sources":["TouchableNativeFeedback.tsx"],"names":[],"mappings":";AAEA,eAAA,uBAAA","sourcesContent":["import { TouchableNativeFeedback } from 'react-native';\n\nexport default TouchableNativeFeedback;\n"]},"metadata":{},"sourceType":"module"}
@@ -1 +0,0 @@
1
- {"ast":null,"code":"var CSS_UNIT_RE = /^[+-]?\\d*(?:\\.\\d+)?(?:[Ee][+-]?\\d+)?(%|\\w*)/;\n\nvar getUnit = function getUnit(str) {\n return str.match(CSS_UNIT_RE)[1];\n};\n\nvar isNumeric = function isNumeric(n) {\n return !isNaN(parseFloat(n)) && isFinite(n);\n};\n\nvar multiplyStyleLengthValue = function multiplyStyleLengthValue(value, multiple) {\n if (typeof value === 'string') {\n var number = parseFloat(value) * multiple;\n var unit = getUnit(value);\n return \"\" + number + unit;\n } else if (isNumeric(value)) {\n return value * multiple;\n }\n};\n\nexport default multiplyStyleLengthValue;","map":{"version":3,"sources":["/Users/jake/git/react-native-candlestick-chart/example/node_modules/react-native-web/dist/modules/multiplyStyleLengthValue/index.js"],"names":["CSS_UNIT_RE","getUnit","str","match","isNumeric","n","isNaN","parseFloat","isFinite","multiplyStyleLengthValue","value","multiple","number","unit"],"mappings":"AAQA,IAAIA,WAAW,GAAG,6CAAlB;;AAEA,IAAIC,OAAO,GAAG,SAASA,OAAT,CAAiBC,GAAjB,EAAsB;AAClC,SAAOA,GAAG,CAACC,KAAJ,CAAUH,WAAV,EAAuB,CAAvB,CAAP;AACD,CAFD;;AAIA,IAAII,SAAS,GAAG,SAASA,SAAT,CAAmBC,CAAnB,EAAsB;AACpC,SAAO,CAACC,KAAK,CAACC,UAAU,CAACF,CAAD,CAAX,CAAN,IAAyBG,QAAQ,CAACH,CAAD,CAAxC;AACD,CAFD;;AAIA,IAAII,wBAAwB,GAAG,SAASA,wBAAT,CAAkCC,KAAlC,EAAyCC,QAAzC,EAAmD;AAChF,MAAI,OAAOD,KAAP,KAAiB,QAArB,EAA+B;AAC7B,QAAIE,MAAM,GAAGL,UAAU,CAACG,KAAD,CAAV,GAAoBC,QAAjC;AACA,QAAIE,IAAI,GAAGZ,OAAO,CAACS,KAAD,CAAlB;AACA,WAAO,KAAKE,MAAL,GAAcC,IAArB;AACD,GAJD,MAIO,IAAIT,SAAS,CAACM,KAAD,CAAb,EAAsB;AAC3B,WAAOA,KAAK,GAAGC,QAAf;AACD;AACF,CARD;;AAUA,eAAeF,wBAAf","sourcesContent":["/**\n * Copyright (c) Nicolas Gallagher.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * \n */\nvar CSS_UNIT_RE = /^[+-]?\\d*(?:\\.\\d+)?(?:[Ee][+-]?\\d+)?(%|\\w*)/;\n\nvar getUnit = function getUnit(str) {\n return str.match(CSS_UNIT_RE)[1];\n};\n\nvar isNumeric = function isNumeric(n) {\n return !isNaN(parseFloat(n)) && isFinite(n);\n};\n\nvar multiplyStyleLengthValue = function multiplyStyleLengthValue(value, multiple) {\n if (typeof value === 'string') {\n var number = parseFloat(value) * multiple;\n var unit = getUnit(value);\n return \"\" + number + unit;\n } else if (isNumeric(value)) {\n return value * multiple;\n }\n};\n\nexport default multiplyStyleLengthValue;"]},"metadata":{},"sourceType":"module"}
@@ -1 +0,0 @@
1
- {"ast":null,"code":"import { useSharedValue } from \"react-native-reanimated\";\nexport var useVector = function useVector() {\n var x1 = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 0;\n var y1 = arguments.length > 1 ? arguments[1] : undefined;\n var x = useSharedValue(x1);\n var y = useSharedValue(y1 != null ? y1 : x1);\n return {\n x: x,\n y: y\n };\n};\n\nvar create = function () {\n var _f = function _f(x, y) {\n var _ref;\n\n return {\n x: x != null ? x : 0,\n y: (_ref = y != null ? y : x) != null ? _ref : 0\n };\n };\n\n _f._closure = {};\n _f.asString = \"function create(x,y){var _ref;return{x:x!=null?x:0,y:(_ref=y!=null?y:x)!=null?_ref:0};}\";\n _f.__workletHash = 10087565403559;\n _f.__location = \"/Users/jake/git/react-native-candlestick-chart/node_modules/react-native-redash/lib/module/Vectors.js (1:301)\";\n\n global.__reanimatedWorkletInit(_f);\n\n return _f;\n}();\n\nexport var vec = {\n create: create\n};","map":{"version":3,"sources":["Vectors.ts"],"names":["useVector","x1","y1","x","useSharedValue","y","create","vec"],"mappings":"AAAA,SAAA,cAAA,QAAA,yBAAA;AAkBA,OAAO,IAAMA,SAAS,GAATA,SAAAA,SAAAA,GAG8B;AAFzCC,MAAAA,EAEyC,GAAA,SAAA,CAAA,MAAA,GAAA,CAAA,IAAA,SAAA,CAAA,CAAA,CAAA,KAAA,SAAA,GAAA,SAAA,CAAA,CAAA,CAAA,GAFpC,CAALA;AACAC,MAAAA,EACyC,GAAA,SAAA,CAAA,MAAA,GAAA,CAAA,GAAA,SAAA,CAAA,CAAA,CAAA,GAAA,SADzCA;AAEA,MAAMC,CAAC,GAAGC,cAAc,CAAxB,EAAwB,CAAxB;AACA,MAAMC,CAAC,GAAGD,cAAc,CAACF,EAAD,IAAA,IAACA,GAAD,EAACA,GAAzB,EAAwB,CAAxB;AACA,SAAO;AAAEC,IAAAA,CAAC,EAAH,CAAA;AAAKE,IAAAA,CAAC,EAAb;AAAO,GAAP;AANK,CAAA;;AAoBP,IAAMC,MAAAA;AAAAA,uBAAiB,CAAjBA,EAAiB,CAAjBA,EAAyE;AAAA,QAAA,IAAA;;AAE7E,WAAO;AACLH,MAAAA,CAAC,EAAEA,CAAF,IAAA,IAAEA,GAAF,CAAEA,GADE,CAAA;AAELE,MAAAA,CAAC,EAAA,CAAA,IAAA,GAAEA,CAAF,IAAA,IAAEA,GAAF,CAAEA,GAAF,CAAA,KAAA,IAAA,GAAA,IAAA,GAFH;AAAO,KAAP;AAFF,GAAMC;;AAAAA;AAAAA;AAAAA;AAAAA;;AAAAA;;AAAAA;AAAAA,GAAN;;AAQA,OAAO,IAAMC,GAAG,GAAG;AACjBD,EAAAA,MAAM,EADD;AAAY,CAAZ","sourcesContent":["import Animated, { useSharedValue } from \"react-native-reanimated\";\n\n/**\n * @summary Type representing a vector\n * @example\n export interface Vector<T = number> {\n x: T;\n y: T;\n }\n */\nexport interface Vector<T = number> {\n x: T;\n y: T;\n}\n\n/**\n * @summary Returns a vector of shared values\n */\nexport const useVector = (\n x1 = 0,\n y1?: number\n): Vector<Animated.SharedValue<number>> => {\n const x = useSharedValue(x1);\n const y = useSharedValue(y1 ?? x1);\n return { x, y };\n};\n\ntype Create = {\n (): Vector<0>;\n <T extends Animated.Adaptable<number>>(x: T, y?: T): Vector<T>;\n};\n\n/**\n *\n * @param x\n * @param y\n * @worklet\n */\nconst create: Create = <T extends Animated.Adaptable<number>>(x?: T, y?: T) => {\n \"worklet\";\n return {\n x: x ?? 0,\n y: y ?? x ?? 0,\n };\n};\n\nexport const vec = {\n create,\n};\n"]},"metadata":{},"sourceType":"module"}
@@ -1 +0,0 @@
1
- {"ast":null,"code":"import UIManager from \"../../exports/UIManager\";\nvar TextInputState = {\n _currentlyFocusedNode: null,\n currentlyFocusedField: function currentlyFocusedField() {\n if (document.activeElement !== this._currentlyFocusedNode) {\n this._currentlyFocusedNode = null;\n }\n\n return this._currentlyFocusedNode;\n },\n focusTextInput: function focusTextInput(textFieldNode) {\n if (textFieldNode !== null) {\n this._currentlyFocusedNode = textFieldNode;\n\n if (document.activeElement !== textFieldNode) {\n UIManager.focus(textFieldNode);\n }\n }\n },\n blurTextInput: function blurTextInput(textFieldNode) {\n if (textFieldNode !== null) {\n this._currentlyFocusedNode = null;\n\n if (document.activeElement === textFieldNode) {\n UIManager.blur(textFieldNode);\n }\n }\n }\n};\nexport default TextInputState;","map":{"version":3,"sources":["/Users/jake/git/react-native-candlestick-chart/example/node_modules/react-native-web/dist/modules/TextInputState/index.js"],"names":["UIManager","TextInputState","_currentlyFocusedNode","currentlyFocusedField","document","activeElement","focusTextInput","textFieldNode","focus","blurTextInput","blur"],"mappings":"AASA,OAAOA,SAAP;AAOA,IAAIC,cAAc,GAAG;AAInBC,EAAAA,qBAAqB,EAAE,IAJJ;AAUnBC,EAAAA,qBAAqB,EAAE,SAASA,qBAAT,GAAiC;AACtD,QAAIC,QAAQ,CAACC,aAAT,KAA2B,KAAKH,qBAApC,EAA2D;AACzD,WAAKA,qBAAL,GAA6B,IAA7B;AACD;;AAED,WAAO,KAAKA,qBAAZ;AACD,GAhBkB;AAuBnBI,EAAAA,cAAc,EAAE,SAASA,cAAT,CAAwBC,aAAxB,EAAuC;AACrD,QAAIA,aAAa,KAAK,IAAtB,EAA4B;AAC1B,WAAKL,qBAAL,GAA6BK,aAA7B;;AAEA,UAAIH,QAAQ,CAACC,aAAT,KAA2BE,aAA/B,EAA8C;AAC5CP,QAAAA,SAAS,CAACQ,KAAV,CAAgBD,aAAhB;AACD;AACF;AACF,GA/BkB;AAsCnBE,EAAAA,aAAa,EAAE,SAASA,aAAT,CAAuBF,aAAvB,EAAsC;AACnD,QAAIA,aAAa,KAAK,IAAtB,EAA4B;AAC1B,WAAKL,qBAAL,GAA6B,IAA7B;;AAEA,UAAIE,QAAQ,CAACC,aAAT,KAA2BE,aAA/B,EAA8C;AAC5CP,QAAAA,SAAS,CAACU,IAAV,CAAeH,aAAf;AACD;AACF;AACF;AA9CkB,CAArB;AAgDA,eAAeN,cAAf","sourcesContent":["/**\n * Copyright (c) Nicolas Gallagher.\n * Copyright (c) Facebook, Inc. and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * \n */\nimport UIManager from '../../exports/UIManager';\n/**\n * This class is responsible for coordinating the \"focused\"\n * state for TextInputs. All calls relating to the keyboard\n * should be funneled through here\n */\n\nvar TextInputState = {\n /**\n * Internal state\n */\n _currentlyFocusedNode: null,\n\n /**\n * Returns the ID of the currently focused text field, if one exists\n * If no text field is focused it returns null\n */\n currentlyFocusedField: function currentlyFocusedField() {\n if (document.activeElement !== this._currentlyFocusedNode) {\n this._currentlyFocusedNode = null;\n }\n\n return this._currentlyFocusedNode;\n },\n\n /**\n * @param {Object} TextInputID id of the text field to focus\n * Focuses the specified text field\n * noop if the text field was already focused\n */\n focusTextInput: function focusTextInput(textFieldNode) {\n if (textFieldNode !== null) {\n this._currentlyFocusedNode = textFieldNode;\n\n if (document.activeElement !== textFieldNode) {\n UIManager.focus(textFieldNode);\n }\n }\n },\n\n /**\n * @param {Object} textFieldNode id of the text field to focus\n * Unfocuses the specified text field\n * noop if it wasn't focused\n */\n blurTextInput: function blurTextInput(textFieldNode) {\n if (textFieldNode !== null) {\n this._currentlyFocusedNode = null;\n\n if (document.activeElement === textFieldNode) {\n UIManager.blur(textFieldNode);\n }\n }\n }\n};\nexport default TextInputState;"]},"metadata":{},"sourceType":"module"}
@@ -1 +0,0 @@
1
- {"ast":null,"code":"import _defineProperty from \"@babel/runtime/helpers/defineProperty\";\n\nfunction ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) { symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }\n\nfunction _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }\n\nvar gestures = {};\nexport function getHandler(tag) {\n if (tag in gestures) return gestures[tag];\n throw new Error(\"No handler for tag \".concat(tag));\n}\nexport function createGestureHandler(handlerTag, handler) {\n if (handlerTag in gestures) {\n throw new Error(\"Handler with tag \".concat(handlerTag, \" already exists\"));\n }\n\n gestures[handlerTag] = handler;\n gestures[handlerTag].handlerTag = handlerTag;\n}\nexport function dropGestureHandler(handlerTag) {\n getHandler(handlerTag).destroy();\n delete gestures[handlerTag];\n}\nexport function getNodes() {\n return _objectSpread({}, gestures);\n}","map":{"version":3,"sources":["NodeManager.ts"],"names":["gestures","tag","handlerTag","getHandler"],"mappings":";;;;;;AAGA,IAAMA,QAAgE,GAAtE,EAAA;AAEA,OAAO,SAAA,UAAA,CAAA,GAAA,EAAiC;AACtC,MAAIC,GAAG,IAAP,QAAA,EAAqB,OAAOD,QAAQ,CAAf,GAAe,CAAf;AAErB,QAAM,IAAA,KAAA,CAAA,sBAAA,MAAA,CAAN,GAAM,CAAA,CAAN;AACD;AAED,OAAO,SAAA,oBAAA,CAAA,UAAA,EAAA,OAAA,EAGL;AACA,MAAIE,UAAU,IAAd,QAAA,EAA4B;AAC1B,UAAM,IAAA,KAAA,CAAA,oBAAA,MAAA,CAAA,UAAA,EAAN,iBAAM,CAAA,CAAN;AACD;;AACDF,EAAAA,QAAQ,CAARA,UAAQ,CAARA,GAJA,OAIAA;AAEAA,EAAAA,QAAQ,CAARA,UAAQ,CAARA,CAAAA,UAAAA,GAAAA,UAAAA;AACD;AAED,OAAO,SAAA,kBAAA,CAAA,UAAA,EAAgD;AACrDG,EAAAA,UAAU,CAAVA,UAAU,CAAVA,CADqD,OACrDA;AAEA,SAAOH,QAAQ,CAAf,UAAe,CAAf;AACD;AAED,OAAO,SAAA,QAAA,GAAoB;AACzB,2BAAYA,QAAZ;AACD","sourcesContent":["import { ValueOf } from '../typeUtils';\nimport { Gestures } from '../RNGestureHandlerModule.web';\n\nconst gestures: Record<number, InstanceType<ValueOf<typeof Gestures>>> = {};\n\nexport function getHandler(tag: number) {\n if (tag in gestures) return gestures[tag];\n\n throw new Error(`No handler for tag ${tag}`);\n}\n\nexport function createGestureHandler(\n handlerTag: number,\n handler: InstanceType<ValueOf<typeof Gestures>>\n) {\n if (handlerTag in gestures) {\n throw new Error(`Handler with tag ${handlerTag} already exists`);\n }\n gestures[handlerTag] = handler;\n // @ts-ignore no types for web handlers yet\n gestures[handlerTag].handlerTag = handlerTag;\n}\n\nexport function dropGestureHandler(handlerTag: number) {\n getHandler(handlerTag).destroy();\n // eslint-disable-next-line @typescript-eslint/no-dynamic-delete\n delete gestures[handlerTag];\n}\n\nexport function getNodes() {\n return { ...gestures };\n}\n"]},"metadata":{},"sourceType":"module"}
@@ -1 +0,0 @@
1
- {"ast":null,"code":"function flattenArray(array) {\n function flattenDown(array, result) {\n for (var i = 0; i < array.length; i++) {\n var value = array[i];\n\n if (Array.isArray(value)) {\n flattenDown(value, result);\n } else if (value != null && value !== false) {\n result.push(value);\n }\n }\n\n return result;\n }\n\n return flattenDown(array, []);\n}\n\nexport default flattenArray;","map":{"version":3,"sources":["/Users/jake/git/react-native-candlestick-chart/example/node_modules/react-native-web/dist/modules/flattenArray/index.js"],"names":["flattenArray","array","flattenDown","result","i","length","value","Array","isArray","push"],"mappings":"AAQA,SAASA,YAAT,CAAsBC,KAAtB,EAA6B;AAC3B,WAASC,WAAT,CAAqBD,KAArB,EAA4BE,MAA5B,EAAoC;AAClC,SAAK,IAAIC,CAAC,GAAG,CAAb,EAAgBA,CAAC,GAAGH,KAAK,CAACI,MAA1B,EAAkCD,CAAC,EAAnC,EAAuC;AACrC,UAAIE,KAAK,GAAGL,KAAK,CAACG,CAAD,CAAjB;;AAEA,UAAIG,KAAK,CAACC,OAAN,CAAcF,KAAd,CAAJ,EAA0B;AACxBJ,QAAAA,WAAW,CAACI,KAAD,EAAQH,MAAR,CAAX;AACD,OAFD,MAEO,IAAIG,KAAK,IAAI,IAAT,IAAiBA,KAAK,KAAK,KAA/B,EAAsC;AAC3CH,QAAAA,MAAM,CAACM,IAAP,CAAYH,KAAZ;AACD;AACF;;AAED,WAAOH,MAAP;AACD;;AAED,SAAOD,WAAW,CAACD,KAAD,EAAQ,EAAR,CAAlB;AACD;;AAED,eAAeD,YAAf","sourcesContent":["/**\n * Copyright (c) Nicolas Gallagher.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * \n */\nfunction flattenArray(array) {\n function flattenDown(array, result) {\n for (var i = 0; i < array.length; i++) {\n var value = array[i];\n\n if (Array.isArray(value)) {\n flattenDown(value, result);\n } else if (value != null && value !== false) {\n result.push(value);\n }\n }\n\n return result;\n }\n\n return flattenDown(array, []);\n}\n\nexport default flattenArray;"]},"metadata":{},"sourceType":"module"}
@@ -1 +0,0 @@
1
- {"ast":null,"code":"'use strict';\n\nfunction _inheritsLoose(subClass, superClass) {\n subClass.prototype = Object.create(superClass.prototype);\n subClass.prototype.constructor = subClass;\n subClass.__proto__ = superClass;\n}\n\nimport AnimatedInterpolation from \"./AnimatedInterpolation\";\nimport AnimatedNode from \"./AnimatedNode\";\nimport AnimatedValue from \"./AnimatedValue\";\nimport AnimatedWithChildren from \"./AnimatedWithChildren\";\n\nvar AnimatedDivision = function (_AnimatedWithChildren) {\n _inheritsLoose(AnimatedDivision, _AnimatedWithChildren);\n\n function AnimatedDivision(a, b) {\n var _this;\n\n _this = _AnimatedWithChildren.call(this) || this;\n _this._a = typeof a === 'number' ? new AnimatedValue(a) : a;\n _this._b = typeof b === 'number' ? new AnimatedValue(b) : b;\n return _this;\n }\n\n var _proto = AnimatedDivision.prototype;\n\n _proto.__makeNative = function __makeNative() {\n this._a.__makeNative();\n\n this._b.__makeNative();\n\n _AnimatedWithChildren.prototype.__makeNative.call(this);\n };\n\n _proto.__getValue = function __getValue() {\n var a = this._a.__getValue();\n\n var b = this._b.__getValue();\n\n if (b === 0) {\n console.error('Detected division by zero in AnimatedDivision');\n }\n\n return a / b;\n };\n\n _proto.interpolate = function interpolate(config) {\n return new AnimatedInterpolation(this, config);\n };\n\n _proto.__attach = function __attach() {\n this._a.__addChild(this);\n\n this._b.__addChild(this);\n };\n\n _proto.__detach = function __detach() {\n this._a.__removeChild(this);\n\n this._b.__removeChild(this);\n\n _AnimatedWithChildren.prototype.__detach.call(this);\n };\n\n _proto.__getNativeConfig = function __getNativeConfig() {\n return {\n type: 'division',\n input: [this._a.__getNativeTag(), this._b.__getNativeTag()]\n };\n };\n\n return AnimatedDivision;\n}(AnimatedWithChildren);\n\nexport default AnimatedDivision;","map":{"version":3,"sources":["/Users/jake/git/react-native-candlestick-chart/example/node_modules/react-native-web/dist/vendor/react-native/Animated/nodes/AnimatedDivision.js"],"names":["_inheritsLoose","subClass","superClass","prototype","Object","create","constructor","__proto__","AnimatedInterpolation","AnimatedNode","AnimatedValue","AnimatedWithChildren","AnimatedDivision","_AnimatedWithChildren","a","b","_this","call","_a","_b","_proto","__makeNative","__getValue","console","error","interpolate","config","__attach","__addChild","__detach","__removeChild","__getNativeConfig","type","input","__getNativeTag"],"mappings":"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","sourcesContent":["/**\n * Copyright (c) 2015-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * \n * @format\n */\n'use strict';\n\nfunction _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; subClass.__proto__ = superClass; }\n\nimport AnimatedInterpolation from './AnimatedInterpolation';\nimport AnimatedNode from './AnimatedNode';\nimport AnimatedValue from './AnimatedValue';\nimport AnimatedWithChildren from './AnimatedWithChildren';\n\nvar AnimatedDivision =\n/*#__PURE__*/\nfunction (_AnimatedWithChildren) {\n _inheritsLoose(AnimatedDivision, _AnimatedWithChildren);\n\n function AnimatedDivision(a, b) {\n var _this;\n\n _this = _AnimatedWithChildren.call(this) || this;\n _this._a = typeof a === 'number' ? new AnimatedValue(a) : a;\n _this._b = typeof b === 'number' ? new AnimatedValue(b) : b;\n return _this;\n }\n\n var _proto = AnimatedDivision.prototype;\n\n _proto.__makeNative = function __makeNative() {\n this._a.__makeNative();\n\n this._b.__makeNative();\n\n _AnimatedWithChildren.prototype.__makeNative.call(this);\n };\n\n _proto.__getValue = function __getValue() {\n var a = this._a.__getValue();\n\n var b = this._b.__getValue();\n\n if (b === 0) {\n console.error('Detected division by zero in AnimatedDivision');\n }\n\n return a / b;\n };\n\n _proto.interpolate = function interpolate(config) {\n return new AnimatedInterpolation(this, config);\n };\n\n _proto.__attach = function __attach() {\n this._a.__addChild(this);\n\n this._b.__addChild(this);\n };\n\n _proto.__detach = function __detach() {\n this._a.__removeChild(this);\n\n this._b.__removeChild(this);\n\n _AnimatedWithChildren.prototype.__detach.call(this);\n };\n\n _proto.__getNativeConfig = function __getNativeConfig() {\n return {\n type: 'division',\n input: [this._a.__getNativeTag(), this._b.__getNativeTag()]\n };\n };\n\n return AnimatedDivision;\n}(AnimatedWithChildren);\n\nexport default AnimatedDivision;"]},"metadata":{},"sourceType":"module"}
@@ -1 +0,0 @@
1
- {"ast":null,"code":"import _defineProperty from \"@babel/runtime/helpers/defineProperty\";\nimport _classCallCheck from \"@babel/runtime/helpers/classCallCheck\";\nimport _createClass from \"@babel/runtime/helpers/createClass\";\nimport invariant from 'invariant';\nimport NativeEventEmitter from \"react-native-web/dist/exports/NativeEventEmitter\";\nimport Platform from \"react-native-web/dist/exports/Platform\";\nvar nativeEmitterSubscriptionKey = '@@nativeEmitterSubscription@@';\nexport var EventEmitter = function () {\n function EventEmitter(nativeModule) {\n _classCallCheck(this, EventEmitter);\n\n this._listenerCount = 0;\n this._nativeModule = nativeModule;\n this._eventEmitter = new NativeEventEmitter(nativeModule);\n }\n\n _createClass(EventEmitter, [{\n key: \"addListener\",\n value: function addListener(eventName, listener) {\n var _this = this,\n _subscription;\n\n if (!this._listenerCount && Platform.OS !== 'ios' && this._nativeModule.startObserving) {\n this._nativeModule.startObserving();\n }\n\n this._listenerCount++;\n\n var nativeEmitterSubscription = this._eventEmitter.addListener(eventName, listener);\n\n var subscription = (_subscription = {}, _defineProperty(_subscription, nativeEmitterSubscriptionKey, nativeEmitterSubscription), _defineProperty(_subscription, \"remove\", function remove() {\n _this.removeSubscription(subscription);\n }), _subscription);\n return subscription;\n }\n }, {\n key: \"removeAllListeners\",\n value: function removeAllListeners(eventName) {\n var removedListenerCount = this._eventEmitter.listeners(eventName).length;\n\n this._eventEmitter.removeAllListeners(eventName);\n\n this._listenerCount -= removedListenerCount;\n invariant(this._listenerCount >= 0, \"EventEmitter must have a non-negative number of listeners\");\n\n if (!this._listenerCount && Platform.OS !== 'ios' && this._nativeModule.stopObserving) {\n this._nativeModule.stopObserving();\n }\n }\n }, {\n key: \"removeSubscription\",\n value: function removeSubscription(subscription) {\n var nativeEmitterSubscription = subscription[nativeEmitterSubscriptionKey];\n\n if (!nativeEmitterSubscription) {\n return;\n }\n\n this._eventEmitter.removeSubscription(nativeEmitterSubscription);\n\n this._listenerCount--;\n delete subscription[nativeEmitterSubscriptionKey];\n\n subscription.remove = function () {};\n\n if (!this._listenerCount && Platform.OS !== 'ios' && this._nativeModule.stopObserving) {\n this._nativeModule.stopObserving();\n }\n }\n }, {\n key: \"emit\",\n value: function emit(eventName) {\n var _this$_eventEmitter;\n\n for (var _len = arguments.length, params = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {\n params[_key - 1] = arguments[_key];\n }\n\n (_this$_eventEmitter = this._eventEmitter).emit.apply(_this$_eventEmitter, [eventName].concat(params));\n }\n }]);\n\n return EventEmitter;\n}();","map":{"version":3,"sources":["../src/EventEmitter.ts"],"names":[],"mappings":";;;AAAA,OAAO,SAAP,MAAsB,WAAtB;;;AAGA,IAAM,4BAA4B,GAAG,+BAArC;AAiBA,WAAa,YAAb;AAKE,wBAAY,YAAZ,EAAsC;AAAA;;AAJtC,SAAA,cAAA,GAAiB,CAAjB;AAKE,SAAK,aAAL,GAAqB,YAArB;AACA,SAAK,aAAL,GAAqB,IAAI,kBAAJ,CAAuB,YAAvB,CAArB;AACD;;AARH;AAAA;AAAA,WAUE,qBAAe,SAAf,EAAkC,QAAlC,EAA8D;AAAA;AAAA;;AAC5D,UAAI,CAAC,KAAK,cAAN,IAAwB,QAAQ,CAAC,EAAT,KAAgB,KAAxC,IAAiD,KAAK,aAAL,CAAmB,cAAxE,EAAwF;AACtF,aAAK,aAAL,CAAmB,cAAnB;AACD;;AAED,WAAK,cAAL;;AACA,UAAM,yBAAyB,GAAG,KAAK,aAAL,CAAmB,WAAnB,CAA+B,SAA/B,EAA0C,QAA1C,CAAlC;;AACA,UAAM,YAAY,uDACf,4BADe,EACgB,yBADhB,4CAER,kBAAK;AACX,QAAA,KAAI,CAAC,kBAAL,CAAwB,YAAxB;AACD,OAJe,iBAAlB;AAMA,aAAO,YAAP;AACD;AAxBH;AAAA;AAAA,WA0BE,4BAAmB,SAAnB,EAAoC;AAClC,UAAM,oBAAoB,GAAG,KAAK,aAAL,CAAmB,SAAnB,CAA6B,SAA7B,EAAwC,MAArE;;AACA,WAAK,aAAL,CAAmB,kBAAnB,CAAsC,SAAtC;;AACA,WAAK,cAAL,IAAuB,oBAAvB;AACA,MAAA,SAAS,CACP,KAAK,cAAL,IAAuB,CADhB,8DAAT;;AAKA,UAAI,CAAC,KAAK,cAAN,IAAwB,QAAQ,CAAC,EAAT,KAAgB,KAAxC,IAAiD,KAAK,aAAL,CAAmB,aAAxE,EAAuF;AACrF,aAAK,aAAL,CAAmB,aAAnB;AACD;AACF;AAtCH;AAAA;AAAA,WAwCE,4BAAmB,YAAnB,EAA6C;AAC3C,UAAM,yBAAyB,GAAG,YAAY,CAAC,4BAAD,CAA9C;;AACA,UAAI,CAAC,yBAAL,EAAgC;AAC9B;AACD;;AAED,WAAK,aAAL,CAAmB,kBAAnB,CAAsC,yBAAtC;;AACA,WAAK,cAAL;AAIA,aAAO,YAAY,CAAC,4BAAD,CAAnB;;AAGA,MAAA,YAAY,CAAC,MAAb,GAAsB,YAAK,CAAG,CAA9B;;AAEA,UAAI,CAAC,KAAK,cAAN,IAAwB,QAAQ,CAAC,EAAT,KAAgB,KAAxC,IAAiD,KAAK,aAAL,CAAmB,aAAxE,EAAuF;AACrF,aAAK,aAAL,CAAmB,aAAnB;AACD;AACF;AA3DH;AAAA;AAAA,WA6DE,cAAK,SAAL,EAAwC;AAAA;;AAAA,wCAAb,MAAa;AAAb,QAAA,MAAa;AAAA;;AACtC,kCAAK,aAAL,EAAmB,IAAnB,6BAAwB,SAAxB,SAAsC,MAAtC;AACD;AA/DH;;AAAA;AAAA","sourcesContent":["import invariant from 'invariant';\nimport { NativeEventEmitter, Platform } from 'react-native';\n\nconst nativeEmitterSubscriptionKey = '@@nativeEmitterSubscription@@';\n\ntype NativeModule = {\n startObserving?: () => void;\n stopObserving?: () => void;\n addListener: (eventName: string) => void;\n removeListeners: (count: number) => void;\n};\n\n// @needsAudit\nexport type Subscription = {\n /**\n * A method to unsubscribe the listener.\n */\n remove: () => void;\n};\n\nexport class EventEmitter {\n _listenerCount = 0;\n _nativeModule: NativeModule;\n _eventEmitter: NativeEventEmitter;\n\n constructor(nativeModule: NativeModule) {\n this._nativeModule = nativeModule;\n this._eventEmitter = new NativeEventEmitter(nativeModule as any);\n }\n\n addListener<T>(eventName: string, listener: (event: T) => void): Subscription {\n if (!this._listenerCount && Platform.OS !== 'ios' && this._nativeModule.startObserving) {\n this._nativeModule.startObserving();\n }\n\n this._listenerCount++;\n const nativeEmitterSubscription = this._eventEmitter.addListener(eventName, listener);\n const subscription = {\n [nativeEmitterSubscriptionKey]: nativeEmitterSubscription,\n remove: () => {\n this.removeSubscription(subscription);\n },\n };\n return subscription;\n }\n\n removeAllListeners(eventName: string): void {\n const removedListenerCount = this._eventEmitter.listeners(eventName).length;\n this._eventEmitter.removeAllListeners(eventName);\n this._listenerCount -= removedListenerCount;\n invariant(\n this._listenerCount >= 0,\n `EventEmitter must have a non-negative number of listeners`\n );\n\n if (!this._listenerCount && Platform.OS !== 'ios' && this._nativeModule.stopObserving) {\n this._nativeModule.stopObserving();\n }\n }\n\n removeSubscription(subscription: Subscription): void {\n const nativeEmitterSubscription = subscription[nativeEmitterSubscriptionKey];\n if (!nativeEmitterSubscription) {\n return;\n }\n\n this._eventEmitter.removeSubscription(nativeEmitterSubscription!);\n this._listenerCount--;\n\n // Ensure that the emitter's internal state remains correct even if `removeSubscription` is\n // called again with the same subscription\n delete subscription[nativeEmitterSubscriptionKey];\n\n // Release closed-over references to the emitter\n subscription.remove = () => {};\n\n if (!this._listenerCount && Platform.OS !== 'ios' && this._nativeModule.stopObserving) {\n this._nativeModule.stopObserving();\n }\n }\n\n emit(eventName: string, ...params: any[]): void {\n this._eventEmitter.emit(eventName, ...params);\n }\n}\n"],"sourceRoot":""},"metadata":{},"sourceType":"module"}
@@ -1 +0,0 @@
1
- {"ast":null,"code":"import { setRecoveryPropsToSave } from \"./ErroRecoveryStore\";\nimport ExpoErrorRecovery from \"./ExpoErrorRecovery\";\nimport \"./ErrorRecovery.fx\";\nexport var recoveredProps = _getRecoveredProps();\nexport function setRecoveryProps(props) {\n setRecoveryPropsToSave(props);\n}\n\nfunction _getRecoveredProps() {\n if (ExpoErrorRecovery.recoveredProps) {\n return JSON.parse(ExpoErrorRecovery.recoveredProps);\n }\n\n return null;\n}","map":{"version":3,"sources":["../src/ErrorRecovery.ts"],"names":[],"mappings":"AAAA,SAAS,sBAAT;AACA,OAAO,iBAAP;AACA;AAEA,OAAO,IAAM,cAAc,GAAG,kBAAkB,EAAzC;AAIP,OAAM,SAAU,gBAAV,CAA2B,KAA3B,EAAoD;AACxD,EAAA,sBAAsB,CAAC,KAAD,CAAtB;AACD;;AAED,SAAS,kBAAT,GAA2B;AACzB,MAAI,iBAAiB,CAAC,cAAtB,EAAsC;AACpC,WAAO,IAAI,CAAC,KAAL,CAAW,iBAAiB,CAAC,cAA7B,CAAP;AACD;;AACD,SAAO,IAAP;AACD","sourcesContent":["import { setRecoveryPropsToSave } from './ErroRecoveryStore';\nimport ExpoErrorRecovery from './ExpoErrorRecovery';\nimport './ErrorRecovery.fx';\n\nexport const recoveredProps = _getRecoveredProps();\n\nexport type ErrorRecoveryProps = Record<string, any>;\n\nexport function setRecoveryProps(props: ErrorRecoveryProps): void {\n setRecoveryPropsToSave(props);\n}\n\nfunction _getRecoveredProps(): ErrorRecoveryProps | null {\n if (ExpoErrorRecovery.recoveredProps) {\n return JSON.parse(ExpoErrorRecovery.recoveredProps);\n }\n return null;\n}\n"],"sourceRoot":""},"metadata":{},"sourceType":"module"}
@@ -1 +0,0 @@
1
- {"ast":null,"code":"import unitlessNumbers from \"../../modules/unitlessNumbers\";\nimport normalizeColor from \"../../modules/normalizeColor\";\nvar colorProps = {\n backgroundColor: true,\n borderColor: true,\n borderTopColor: true,\n borderRightColor: true,\n borderBottomColor: true,\n borderLeftColor: true,\n color: true,\n shadowColor: true,\n textDecorationColor: true,\n textShadowColor: true\n};\nexport default function normalizeValueWithProperty(value, property) {\n var returnValue = value;\n\n if ((property == null || !unitlessNumbers[property]) && typeof value === 'number') {\n returnValue = value + \"px\";\n } else if (property != null && colorProps[property]) {\n returnValue = normalizeColor(value);\n }\n\n return returnValue;\n}","map":{"version":3,"sources":["/Users/jake/git/react-native-candlestick-chart/example/node_modules/react-native-web/dist/exports/StyleSheet/normalizeValueWithProperty.js"],"names":["unitlessNumbers","normalizeColor","colorProps","backgroundColor","borderColor","borderTopColor","borderRightColor","borderBottomColor","borderLeftColor","color","shadowColor","textDecorationColor","textShadowColor","normalizeValueWithProperty","value","property","returnValue"],"mappings":"AAQA,OAAOA,eAAP;AACA,OAAOC,cAAP;AACA,IAAIC,UAAU,GAAG;AACfC,EAAAA,eAAe,EAAE,IADF;AAEfC,EAAAA,WAAW,EAAE,IAFE;AAGfC,EAAAA,cAAc,EAAE,IAHD;AAIfC,EAAAA,gBAAgB,EAAE,IAJH;AAKfC,EAAAA,iBAAiB,EAAE,IALJ;AAMfC,EAAAA,eAAe,EAAE,IANF;AAOfC,EAAAA,KAAK,EAAE,IAPQ;AAQfC,EAAAA,WAAW,EAAE,IARE;AASfC,EAAAA,mBAAmB,EAAE,IATN;AAUfC,EAAAA,eAAe,EAAE;AAVF,CAAjB;AAYA,eAAe,SAASC,0BAAT,CAAoCC,KAApC,EAA2CC,QAA3C,EAAqD;AAClE,MAAIC,WAAW,GAAGF,KAAlB;;AAEA,MAAI,CAACC,QAAQ,IAAI,IAAZ,IAAoB,CAACf,eAAe,CAACe,QAAD,CAArC,KAAoD,OAAOD,KAAP,KAAiB,QAAzE,EAAmF;AACjFE,IAAAA,WAAW,GAAGF,KAAK,GAAG,IAAtB;AACD,GAFD,MAEO,IAAIC,QAAQ,IAAI,IAAZ,IAAoBb,UAAU,CAACa,QAAD,CAAlC,EAA8C;AACnDC,IAAAA,WAAW,GAAGf,cAAc,CAACa,KAAD,CAA5B;AACD;;AAED,SAAOE,WAAP;AACD","sourcesContent":["/**\n * Copyright (c) Nicolas Gallagher.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * \n */\nimport unitlessNumbers from '../../modules/unitlessNumbers';\nimport normalizeColor from '../../modules/normalizeColor';\nvar colorProps = {\n backgroundColor: true,\n borderColor: true,\n borderTopColor: true,\n borderRightColor: true,\n borderBottomColor: true,\n borderLeftColor: true,\n color: true,\n shadowColor: true,\n textDecorationColor: true,\n textShadowColor: true\n};\nexport default function normalizeValueWithProperty(value, property) {\n var returnValue = value;\n\n if ((property == null || !unitlessNumbers[property]) && typeof value === 'number') {\n returnValue = value + \"px\";\n } else if (property != null && colorProps[property]) {\n returnValue = normalizeColor(value);\n }\n\n return returnValue;\n}"]},"metadata":{},"sourceType":"module"}
@@ -1 +0,0 @@
1
- {"ast":null,"code":"var recoveredPropsToSave = null;\nexport function getRecoveryPropsToSave() {\n return recoveredPropsToSave;\n}\nexport function setRecoveryPropsToSave(props) {\n recoveredPropsToSave = JSON.stringify(props);\n}","map":{"version":3,"sources":["../src/ErroRecoveryStore.ts"],"names":[],"mappings":"AAAA,IAAI,oBAAoB,GAAkB,IAA1C;AAEA,OAAM,SAAU,sBAAV,GAAgC;AACpC,SAAO,oBAAP;AACD;AAED,OAAM,SAAU,sBAAV,CAAiC,KAAjC,EAA8D;AAClE,EAAA,oBAAoB,GAAG,IAAI,CAAC,SAAL,CAAe,KAAf,CAAvB;AACD","sourcesContent":["let recoveredPropsToSave: string | null = null;\n\nexport function getRecoveryPropsToSave(): string | null {\n return recoveredPropsToSave;\n}\n\nexport function setRecoveryPropsToSave(props: { [key: string]: any }): void {\n recoveredPropsToSave = JSON.stringify(props);\n}\n"],"sourceRoot":""},"metadata":{},"sourceType":"module"}
@@ -1 +0,0 @@
1
- {"ast":null,"code":"import AccessibilityUtil from \"../../modules/AccessibilityUtil\";\nimport createDOMProps from \"../../modules/createDOMProps\";\nimport React from 'react';\n\nvar createElement = function createElement(component, props) {\n var accessibilityComponent;\n\n if (component && component.constructor === String) {\n accessibilityComponent = AccessibilityUtil.propsToAccessibilityComponent(props);\n }\n\n var Component = accessibilityComponent || component;\n var domProps = createDOMProps(Component, props);\n\n for (var _len = arguments.length, children = new Array(_len > 2 ? _len - 2 : 0), _key = 2; _key < _len; _key++) {\n children[_key - 2] = arguments[_key];\n }\n\n return React.createElement.apply(React, [Component, domProps].concat(children));\n};\n\nexport default createElement;","map":{"version":3,"sources":["/Users/jake/git/react-native-candlestick-chart/example/node_modules/react-native-web/dist/exports/createElement/index.js"],"names":["AccessibilityUtil","createDOMProps","React","createElement","component","props","accessibilityComponent","constructor","String","propsToAccessibilityComponent","Component","domProps","_len","arguments","length","children","Array","_key","apply","concat"],"mappings":"AAQA,OAAOA,iBAAP;AACA,OAAOC,cAAP;AACA,OAAOC,KAAP,MAAkB,OAAlB;;AAEA,IAAIC,aAAa,GAAG,SAASA,aAAT,CAAuBC,SAAvB,EAAkCC,KAAlC,EAAyC;AAE3D,MAAIC,sBAAJ;;AAEA,MAAIF,SAAS,IAAIA,SAAS,CAACG,WAAV,KAA0BC,MAA3C,EAAmD;AACjDF,IAAAA,sBAAsB,GAAGN,iBAAiB,CAACS,6BAAlB,CAAgDJ,KAAhD,CAAzB;AACD;;AAED,MAAIK,SAAS,GAAGJ,sBAAsB,IAAIF,SAA1C;AACA,MAAIO,QAAQ,GAAGV,cAAc,CAACS,SAAD,EAAYL,KAAZ,CAA7B;;AAEA,OAAK,IAAIO,IAAI,GAAGC,SAAS,CAACC,MAArB,EAA6BC,QAAQ,GAAG,IAAIC,KAAJ,CAAUJ,IAAI,GAAG,CAAP,GAAWA,IAAI,GAAG,CAAlB,GAAsB,CAAhC,CAAxC,EAA4EK,IAAI,GAAG,CAAxF,EAA2FA,IAAI,GAAGL,IAAlG,EAAwGK,IAAI,EAA5G,EAAgH;AAC9GF,IAAAA,QAAQ,CAACE,IAAI,GAAG,CAAR,CAAR,GAAqBJ,SAAS,CAACI,IAAD,CAA9B;AACD;;AAED,SAAOf,KAAK,CAACC,aAAN,CAAoBe,KAApB,CAA0BhB,KAA1B,EAAiC,CAACQ,SAAD,EAAYC,QAAZ,EAAsBQ,MAAtB,CAA6BJ,QAA7B,CAAjC,CAAP;AACD,CAhBD;;AAkBA,eAAeZ,aAAf","sourcesContent":["/**\n * Copyright (c) Nicolas Gallagher.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * \n */\nimport AccessibilityUtil from '../../modules/AccessibilityUtil';\nimport createDOMProps from '../../modules/createDOMProps';\nimport React from 'react';\n\nvar createElement = function createElement(component, props) {\n // Use equivalent platform elements where possible.\n var accessibilityComponent;\n\n if (component && component.constructor === String) {\n accessibilityComponent = AccessibilityUtil.propsToAccessibilityComponent(props);\n }\n\n var Component = accessibilityComponent || component;\n var domProps = createDOMProps(Component, props);\n\n for (var _len = arguments.length, children = new Array(_len > 2 ? _len - 2 : 0), _key = 2; _key < _len; _key++) {\n children[_key - 2] = arguments[_key];\n }\n\n return React.createElement.apply(React, [Component, domProps].concat(children));\n};\n\nexport default createElement;"]},"metadata":{},"sourceType":"module"}
@@ -1 +0,0 @@
1
- {"ast":null,"code":"var slice = Array.prototype.slice;\nexport default function createOrderedCSSStyleSheet(sheet) {\n var groups = {};\n var selectors = {};\n\n if (sheet != null) {\n var group;\n slice.call(sheet.cssRules).forEach(function (cssRule, i) {\n var cssText = cssRule.cssText;\n\n if (cssText.indexOf('stylesheet-group') > -1) {\n group = decodeGroupRule(cssRule);\n groups[group] = {\n start: i,\n rules: [cssText]\n };\n } else {\n var selectorText = getSelectorText(cssText);\n\n if (selectorText != null) {\n selectors[selectorText] = true;\n groups[group].rules.push(cssText);\n }\n }\n });\n }\n\n function sheetInsert(sheet, group, text) {\n var orderedGroups = getOrderedGroups(groups);\n var groupIndex = orderedGroups.indexOf(group);\n var nextGroupIndex = groupIndex + 1;\n var nextGroup = orderedGroups[nextGroupIndex];\n var position = nextGroup != null && groups[nextGroup].start != null ? groups[nextGroup].start : sheet.cssRules.length;\n var isInserted = insertRuleAt(sheet, text, position);\n\n if (isInserted) {\n if (groups[group].start == null) {\n groups[group].start = position;\n }\n\n for (var i = nextGroupIndex; i < orderedGroups.length; i += 1) {\n var groupNumber = orderedGroups[i];\n var previousStart = groups[groupNumber].start;\n groups[groupNumber].start = previousStart + 1;\n }\n }\n\n return isInserted;\n }\n\n var OrderedCSSStyleSheet = {\n getTextContent: function getTextContent() {\n return getOrderedGroups(groups).map(function (group) {\n var rules = groups[group].rules;\n return rules.join('\\n');\n }).join('\\n');\n },\n insert: function insert(cssText, groupValue) {\n var group = Number(groupValue);\n\n if (groups[group] == null) {\n var markerRule = encodeGroupRule(group);\n groups[group] = {\n start: null,\n rules: [markerRule]\n };\n\n if (sheet != null) {\n sheetInsert(sheet, group, markerRule);\n }\n }\n\n var selectorText = getSelectorText(cssText);\n\n if (selectorText != null && selectors[selectorText] == null) {\n selectors[selectorText] = true;\n groups[group].rules.push(cssText);\n\n if (sheet != null) {\n var isInserted = sheetInsert(sheet, group, cssText);\n\n if (!isInserted) {\n groups[group].rules.pop();\n }\n }\n }\n }\n };\n return OrderedCSSStyleSheet;\n}\n\nfunction encodeGroupRule(group) {\n return \"[stylesheet-group=\\\"\" + group + \"\\\"]{}\";\n}\n\nfunction decodeGroupRule(cssRule) {\n return Number(cssRule.selectorText.split(/[\"']/)[1]);\n}\n\nfunction getOrderedGroups(obj) {\n return Object.keys(obj).map(Number).sort(function (a, b) {\n return a > b ? 1 : -1;\n });\n}\n\nvar pattern = /\\s*([,])\\s*/g;\n\nfunction getSelectorText(cssText) {\n var selector = cssText.split('{')[0].trim();\n return selector !== '' ? selector.replace(pattern, '$1') : null;\n}\n\nfunction insertRuleAt(root, cssText, position) {\n try {\n root.insertRule(cssText, position);\n return true;\n } catch (e) {\n return false;\n }\n}","map":{"version":3,"sources":["/Users/jake/git/react-native-candlestick-chart/example/node_modules/react-native-web/dist/exports/StyleSheet/createOrderedCSSStyleSheet.js"],"names":["slice","Array","prototype","createOrderedCSSStyleSheet","sheet","groups","selectors","group","call","cssRules","forEach","cssRule","i","cssText","indexOf","decodeGroupRule","start","rules","selectorText","getSelectorText","push","sheetInsert","text","orderedGroups","getOrderedGroups","groupIndex","nextGroupIndex","nextGroup","position","length","isInserted","insertRuleAt","groupNumber","previousStart","OrderedCSSStyleSheet","getTextContent","map","join","insert","groupValue","Number","markerRule","encodeGroupRule","pop","split","obj","Object","keys","sort","a","b","pattern","selector","trim","replace","root","insertRule","e"],"mappings":"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","sourcesContent":["/**\n * Copyright (c) Nicolas Gallagher.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * \n */\nvar slice = Array.prototype.slice;\n/**\n * Order-based insertion of CSS.\n *\n * Each rule is associated with a numerically defined group.\n * Groups are ordered within the style sheet according to their number, with the\n * lowest first.\n *\n * Groups are implemented using marker rules. The selector of the first rule of\n * each group is used only to encode the group number for hydration. An\n * alternative implementation could rely on CSSMediaRule, allowing groups to be\n * treated as a sub-sheet, but the Edge implementation of CSSMediaRule is\n * broken.\n * https://developer.mozilla.org/en-US/docs/Web/API/CSSMediaRule\n * https://gist.github.com/necolas/aa0c37846ad6bd3b05b727b959e82674\n */\n\nexport default function createOrderedCSSStyleSheet(sheet) {\n var groups = {};\n var selectors = {};\n /**\n * Hydrate approximate record from any existing rules in the sheet.\n */\n\n if (sheet != null) {\n var group;\n slice.call(sheet.cssRules).forEach(function (cssRule, i) {\n var cssText = cssRule.cssText; // Create record of existing selectors and rules\n\n if (cssText.indexOf('stylesheet-group') > -1) {\n group = decodeGroupRule(cssRule);\n groups[group] = {\n start: i,\n rules: [cssText]\n };\n } else {\n var selectorText = getSelectorText(cssText);\n\n if (selectorText != null) {\n selectors[selectorText] = true;\n groups[group].rules.push(cssText);\n }\n }\n });\n }\n\n function sheetInsert(sheet, group, text) {\n var orderedGroups = getOrderedGroups(groups);\n var groupIndex = orderedGroups.indexOf(group);\n var nextGroupIndex = groupIndex + 1;\n var nextGroup = orderedGroups[nextGroupIndex]; // Insert rule before the next group, or at the end of the stylesheet\n\n var position = nextGroup != null && groups[nextGroup].start != null ? groups[nextGroup].start : sheet.cssRules.length;\n var isInserted = insertRuleAt(sheet, text, position);\n\n if (isInserted) {\n // Set the starting index of the new group\n if (groups[group].start == null) {\n groups[group].start = position;\n } // Increment the starting index of all subsequent groups\n\n\n for (var i = nextGroupIndex; i < orderedGroups.length; i += 1) {\n var groupNumber = orderedGroups[i];\n var previousStart = groups[groupNumber].start;\n groups[groupNumber].start = previousStart + 1;\n }\n }\n\n return isInserted;\n }\n\n var OrderedCSSStyleSheet = {\n /**\n * The textContent of the style sheet.\n */\n getTextContent: function getTextContent() {\n return getOrderedGroups(groups).map(function (group) {\n var rules = groups[group].rules;\n return rules.join('\\n');\n }).join('\\n');\n },\n\n /**\n * Insert a rule into the style sheet\n */\n insert: function insert(cssText, groupValue) {\n var group = Number(groupValue); // Create a new group.\n\n if (groups[group] == null) {\n var markerRule = encodeGroupRule(group); // Create the internal record.\n\n groups[group] = {\n start: null,\n rules: [markerRule]\n }; // Update CSSOM.\n\n if (sheet != null) {\n sheetInsert(sheet, group, markerRule);\n }\n } // selectorText is more reliable than cssText for insertion checks. The\n // browser excludes vendor-prefixed properties and rewrites certain values\n // making cssText more likely to be different from what was inserted.\n\n\n var selectorText = getSelectorText(cssText);\n\n if (selectorText != null && selectors[selectorText] == null) {\n // Update the internal records.\n selectors[selectorText] = true;\n groups[group].rules.push(cssText); // Update CSSOM.\n\n if (sheet != null) {\n var isInserted = sheetInsert(sheet, group, cssText);\n\n if (!isInserted) {\n // Revert internal record change if a rule was rejected (e.g.,\n // unrecognized pseudo-selector)\n groups[group].rules.pop();\n }\n }\n }\n }\n };\n return OrderedCSSStyleSheet;\n}\n/**\n * Helper functions\n */\n\nfunction encodeGroupRule(group) {\n return \"[stylesheet-group=\\\"\" + group + \"\\\"]{}\";\n}\n\nfunction decodeGroupRule(cssRule) {\n return Number(cssRule.selectorText.split(/[\"']/)[1]);\n}\n\nfunction getOrderedGroups(obj) {\n return Object.keys(obj).map(Number).sort(function (a, b) {\n return a > b ? 1 : -1;\n });\n}\n\nvar pattern = /\\s*([,])\\s*/g;\n\nfunction getSelectorText(cssText) {\n var selector = cssText.split('{')[0].trim();\n return selector !== '' ? selector.replace(pattern, '$1') : null;\n}\n\nfunction insertRuleAt(root, cssText, position) {\n try {\n // $FlowFixMe: Flow is missing CSSOM types needed to type 'root'.\n root.insertRule(cssText, position);\n return true;\n } catch (e) {\n // JSDOM doesn't support `CSSSMediaRule#insertRule`.\n // Also ignore errors that occur from attempting to insert vendor-prefixed selectors.\n return false;\n }\n}"]},"metadata":{},"sourceType":"module"}
@@ -1 +0,0 @@
1
- {"ast":null,"code":"export * from '@unimodules/react-native-adapter';","map":{"version":3,"sources":["../src/AdapterProxy.ts"],"names":[],"mappings":"AAAA,cAAc,kCAAd","sourcesContent":["export * from '@unimodules/react-native-adapter';\n"],"sourceRoot":""},"metadata":{},"sourceType":"module"}
@@ -1 +0,0 @@
1
- {"ast":null,"code":"'use strict';\n\nfunction _extends() {\n _extends = Object.assign || function (target) {\n for (var i = 1; i < arguments.length; i++) {\n var source = arguments[i];\n\n for (var key in source) {\n if (Object.prototype.hasOwnProperty.call(source, key)) {\n target[key] = source[key];\n }\n }\n }\n\n return target;\n };\n\n return _extends.apply(this, arguments);\n}\n\nfunction ownKeys(object, enumerableOnly) {\n var keys = Object.keys(object);\n\n if (Object.getOwnPropertySymbols) {\n var symbols = Object.getOwnPropertySymbols(object);\n if (enumerableOnly) symbols = symbols.filter(function (sym) {\n return Object.getOwnPropertyDescriptor(object, sym).enumerable;\n });\n keys.push.apply(keys, symbols);\n }\n\n return keys;\n}\n\nfunction _objectSpread(target) {\n for (var i = 1; i < arguments.length; i++) {\n var source = arguments[i] != null ? arguments[i] : {};\n\n if (i % 2) {\n ownKeys(Object(source), true).forEach(function (key) {\n _defineProperty(target, key, source[key]);\n });\n } else if (Object.getOwnPropertyDescriptors) {\n Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));\n } else {\n ownKeys(Object(source)).forEach(function (key) {\n Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));\n });\n }\n }\n\n return target;\n}\n\nfunction _defineProperty(obj, key, value) {\n if (key in obj) {\n Object.defineProperty(obj, key, {\n value: value,\n enumerable: true,\n configurable: true,\n writable: true\n });\n } else {\n obj[key] = value;\n }\n\n return obj;\n}\n\nfunction _objectWithoutPropertiesLoose(source, excluded) {\n if (source == null) return {};\n var target = {};\n var sourceKeys = Object.keys(source);\n var key, i;\n\n for (i = 0; i < sourceKeys.length; i++) {\n key = sourceKeys[i];\n if (excluded.indexOf(key) >= 0) continue;\n target[key] = source[key];\n }\n\n return target;\n}\n\nimport * as React from 'react';\nimport { useCallback, useMemo, useState, useRef } from 'react';\nimport useMergeRefs from \"../../modules/useMergeRefs\";\nimport usePressEvents from \"../../hooks/usePressEvents\";\nimport StyleSheet from \"../StyleSheet\";\nimport View from \"../View\";\n\nfunction createExtraStyles(activeOpacity, underlayColor) {\n return {\n child: {\n opacity: activeOpacity !== null && activeOpacity !== void 0 ? activeOpacity : 0.85\n },\n underlay: {\n backgroundColor: underlayColor === undefined ? 'black' : underlayColor\n }\n };\n}\n\nfunction hasPressHandler(props) {\n return props.onPress != null || props.onPressIn != null || props.onPressOut != null || props.onLongPress != null;\n}\n\nfunction TouchableHighlight(props, forwardedRef) {\n var accessible = props.accessible,\n activeOpacity = props.activeOpacity,\n children = props.children,\n delayPressIn = props.delayPressIn,\n delayPressOut = props.delayPressOut,\n delayLongPress = props.delayLongPress,\n disabled = props.disabled,\n focusable = props.focusable,\n onHideUnderlay = props.onHideUnderlay,\n onLongPress = props.onLongPress,\n onPress = props.onPress,\n onPressIn = props.onPressIn,\n onPressOut = props.onPressOut,\n onShowUnderlay = props.onShowUnderlay,\n rejectResponderTermination = props.rejectResponderTermination,\n style = props.style,\n testOnly_pressed = props.testOnly_pressed,\n underlayColor = props.underlayColor,\n rest = _objectWithoutPropertiesLoose(props, [\"accessible\", \"activeOpacity\", \"children\", \"delayPressIn\", \"delayPressOut\", \"delayLongPress\", \"disabled\", \"focusable\", \"onHideUnderlay\", \"onLongPress\", \"onPress\", \"onPressIn\", \"onPressOut\", \"onShowUnderlay\", \"rejectResponderTermination\", \"style\", \"testOnly_pressed\", \"underlayColor\"]);\n\n var hostRef = useRef(null);\n var setRef = useMergeRefs(forwardedRef, hostRef);\n\n var _useState = useState(testOnly_pressed === true ? createExtraStyles(activeOpacity, underlayColor) : null),\n extraStyles = _useState[0],\n setExtraStyles = _useState[1];\n\n var showUnderlay = useCallback(function () {\n if (!hasPressHandler(props)) {\n return;\n }\n\n setExtraStyles(createExtraStyles(activeOpacity, underlayColor));\n\n if (onShowUnderlay != null) {\n onShowUnderlay();\n }\n }, [activeOpacity, onShowUnderlay, props, underlayColor]);\n var hideUnderlay = useCallback(function () {\n if (testOnly_pressed === true) {\n return;\n }\n\n if (hasPressHandler(props)) {\n setExtraStyles(null);\n\n if (onHideUnderlay != null) {\n onHideUnderlay();\n }\n }\n }, [onHideUnderlay, props, testOnly_pressed]);\n var pressConfig = useMemo(function () {\n return {\n cancelable: !rejectResponderTermination,\n disabled: disabled,\n delayLongPress: delayLongPress,\n delayPressStart: delayPressIn,\n delayPressEnd: delayPressOut,\n onLongPress: onLongPress,\n onPress: onPress,\n onPressStart: function onPressStart(event) {\n showUnderlay();\n\n if (onPressIn != null) {\n onPressIn(event);\n }\n },\n onPressEnd: function onPressEnd(event) {\n hideUnderlay();\n\n if (onPressOut != null) {\n onPressOut(event);\n }\n }\n };\n }, [delayLongPress, delayPressIn, delayPressOut, disabled, onLongPress, onPress, onPressIn, onPressOut, rejectResponderTermination, showUnderlay, hideUnderlay]);\n var pressEventHandlers = usePressEvents(hostRef, pressConfig);\n var child = React.Children.only(children);\n return React.createElement(View, _extends({}, rest, pressEventHandlers, {\n accessibilityState: _objectSpread({\n disabled: disabled\n }, props.accessibilityState),\n accessible: accessible !== false,\n focusable: focusable !== false && onPress !== undefined,\n ref: setRef,\n style: [styles.root, style, !disabled && styles.actionable, extraStyles && extraStyles.underlay]\n }), React.cloneElement(child, {\n style: StyleSheet.compose(child.props.style, extraStyles && extraStyles.child)\n }));\n}\n\nvar styles = StyleSheet.create({\n root: {\n userSelect: 'none'\n },\n actionable: {\n cursor: 'pointer',\n touchAction: 'manipulation'\n }\n});\nvar MemoedTouchableHighlight = React.memo(React.forwardRef(TouchableHighlight));\nMemoedTouchableHighlight.displayName = 'TouchableHighlight';\nexport default MemoedTouchableHighlight;","map":{"version":3,"sources":["/Users/jake/git/react-native-candlestick-chart/example/node_modules/react-native-web/dist/exports/TouchableHighlight/index.js"],"names":["_extends","Object","assign","target","i","arguments","length","source","key","prototype","hasOwnProperty","call","apply","ownKeys","object","enumerableOnly","keys","getOwnPropertySymbols","symbols","filter","sym","getOwnPropertyDescriptor","enumerable","push","_objectSpread","forEach","_defineProperty","getOwnPropertyDescriptors","defineProperties","defineProperty","obj","value","configurable","writable","_objectWithoutPropertiesLoose","excluded","sourceKeys","indexOf","React","useCallback","useMemo","useState","useRef","useMergeRefs","usePressEvents","StyleSheet","View","createExtraStyles","activeOpacity","underlayColor","child","opacity","underlay","backgroundColor","undefined","hasPressHandler","props","onPress","onPressIn","onPressOut","onLongPress","TouchableHighlight","forwardedRef","accessible","children","delayPressIn","delayPressOut","delayLongPress","disabled","focusable","onHideUnderlay","onShowUnderlay","rejectResponderTermination","style","testOnly_pressed","rest","hostRef","setRef","_useState","extraStyles","setExtraStyles","showUnderlay","hideUnderlay","pressConfig","cancelable","delayPressStart","delayPressEnd","onPressStart","event","onPressEnd","pressEventHandlers","Children","only","createElement","accessibilityState","ref","styles","root","actionable","cloneElement","compose","create","userSelect","cursor","touchAction","MemoedTouchableHighlight","memo","forwardRef","displayName"],"mappings":"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","sourcesContent":["/**\n * Copyright (c) Facebook, Inc. and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * \n * @format\n */\n'use strict';\n\nfunction _extends() { _extends = Object.assign || 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); }\n\nfunction ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }\n\nfunction _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }\n\nfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport * as React from 'react';\nimport { useCallback, useMemo, useState, useRef } from 'react';\nimport useMergeRefs from '../../modules/useMergeRefs';\nimport usePressEvents from '../../hooks/usePressEvents';\nimport StyleSheet from '../StyleSheet';\nimport View from '../View';\n\nfunction createExtraStyles(activeOpacity, underlayColor) {\n return {\n child: {\n opacity: activeOpacity !== null && activeOpacity !== void 0 ? activeOpacity : 0.85\n },\n underlay: {\n backgroundColor: underlayColor === undefined ? 'black' : underlayColor\n }\n };\n}\n\nfunction hasPressHandler(props) {\n return props.onPress != null || props.onPressIn != null || props.onPressOut != null || props.onLongPress != null;\n}\n/**\n * A wrapper for making views respond properly to touches.\n * On press down, the opacity of the wrapped view is decreased, which allows\n * the underlay color to show through, darkening or tinting the view.\n *\n * The underlay comes from wrapping the child in a new View, which can affect\n * layout, and sometimes cause unwanted visual artifacts if not used correctly,\n * for example if the backgroundColor of the wrapped view isn't explicitly set\n * to an opaque color.\n *\n * TouchableHighlight must have one child (not zero or more than one).\n * If you wish to have several child components, wrap them in a View.\n */\n\n\nfunction TouchableHighlight(props, forwardedRef) {\n var accessible = props.accessible,\n activeOpacity = props.activeOpacity,\n children = props.children,\n delayPressIn = props.delayPressIn,\n delayPressOut = props.delayPressOut,\n delayLongPress = props.delayLongPress,\n disabled = props.disabled,\n focusable = props.focusable,\n onHideUnderlay = props.onHideUnderlay,\n onLongPress = props.onLongPress,\n onPress = props.onPress,\n onPressIn = props.onPressIn,\n onPressOut = props.onPressOut,\n onShowUnderlay = props.onShowUnderlay,\n rejectResponderTermination = props.rejectResponderTermination,\n style = props.style,\n testOnly_pressed = props.testOnly_pressed,\n underlayColor = props.underlayColor,\n rest = _objectWithoutPropertiesLoose(props, [\"accessible\", \"activeOpacity\", \"children\", \"delayPressIn\", \"delayPressOut\", \"delayLongPress\", \"disabled\", \"focusable\", \"onHideUnderlay\", \"onLongPress\", \"onPress\", \"onPressIn\", \"onPressOut\", \"onShowUnderlay\", \"rejectResponderTermination\", \"style\", \"testOnly_pressed\", \"underlayColor\"]);\n\n var hostRef = useRef(null);\n var setRef = useMergeRefs(forwardedRef, hostRef);\n\n var _useState = useState(testOnly_pressed === true ? createExtraStyles(activeOpacity, underlayColor) : null),\n extraStyles = _useState[0],\n setExtraStyles = _useState[1];\n\n var showUnderlay = useCallback(function () {\n if (!hasPressHandler(props)) {\n return;\n }\n\n setExtraStyles(createExtraStyles(activeOpacity, underlayColor));\n\n if (onShowUnderlay != null) {\n onShowUnderlay();\n }\n }, [activeOpacity, onShowUnderlay, props, underlayColor]);\n var hideUnderlay = useCallback(function () {\n if (testOnly_pressed === true) {\n return;\n }\n\n if (hasPressHandler(props)) {\n setExtraStyles(null);\n\n if (onHideUnderlay != null) {\n onHideUnderlay();\n }\n }\n }, [onHideUnderlay, props, testOnly_pressed]);\n var pressConfig = useMemo(function () {\n return {\n cancelable: !rejectResponderTermination,\n disabled: disabled,\n delayLongPress: delayLongPress,\n delayPressStart: delayPressIn,\n delayPressEnd: delayPressOut,\n onLongPress: onLongPress,\n onPress: onPress,\n onPressStart: function onPressStart(event) {\n showUnderlay();\n\n if (onPressIn != null) {\n onPressIn(event);\n }\n },\n onPressEnd: function onPressEnd(event) {\n hideUnderlay();\n\n if (onPressOut != null) {\n onPressOut(event);\n }\n }\n };\n }, [delayLongPress, delayPressIn, delayPressOut, disabled, onLongPress, onPress, onPressIn, onPressOut, rejectResponderTermination, showUnderlay, hideUnderlay]);\n var pressEventHandlers = usePressEvents(hostRef, pressConfig);\n var child = React.Children.only(children);\n return React.createElement(View, _extends({}, rest, pressEventHandlers, {\n accessibilityState: _objectSpread({\n disabled: disabled\n }, props.accessibilityState),\n accessible: accessible !== false,\n focusable: focusable !== false && onPress !== undefined,\n ref: setRef,\n style: [styles.root, style, !disabled && styles.actionable, extraStyles && extraStyles.underlay]\n }), React.cloneElement(child, {\n style: StyleSheet.compose(child.props.style, extraStyles && extraStyles.child)\n }));\n}\n\nvar styles = StyleSheet.create({\n root: {\n userSelect: 'none'\n },\n actionable: {\n cursor: 'pointer',\n touchAction: 'manipulation'\n }\n});\nvar MemoedTouchableHighlight = React.memo(React.forwardRef(TouchableHighlight));\nMemoedTouchableHighlight.displayName = 'TouchableHighlight';\nexport default MemoedTouchableHighlight;"]},"metadata":{},"sourceType":"module"}