@wavemaker/app-rn-runtime 11.10.0-next.24983 → 11.10.0-next.25079

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 (1176) hide show
  1. package/actions/notification-action.js +73 -0
  2. package/actions/timer-action.js +57 -0
  3. package/components/advanced/carousel/carousel-content/carousel-content.props.js +11 -0
  4. package/components/advanced/carousel/carousel-template/carousel-template.props.js +11 -0
  5. package/components/advanced/carousel/carousel.component.js +346 -0
  6. package/components/advanced/carousel/carousel.component.js.map +1 -0
  7. package/components/advanced/carousel/carousel.props.js +21 -0
  8. package/components/advanced/carousel/carousel.styles.js +176 -0
  9. package/components/advanced/carousel/carousel.styles.js.map +1 -0
  10. package/components/advanced/login/login.component.js +39 -0
  11. package/components/advanced/login/login.props.js +12 -0
  12. package/components/advanced/network-info-toaster/network-info-toaster.component.js +114 -0
  13. package/components/advanced/network-info-toaster/network-info-toaster.props.js +11 -0
  14. package/components/advanced/webview/webview.component.js +155 -0
  15. package/components/advanced/webview/webview.component.js.map +1 -0
  16. package/components/advanced/webview/webview.props.js +16 -0
  17. package/components/basic/anchor/anchor.component.js +99 -0
  18. package/components/basic/anchor/anchor.props.js +32 -0
  19. package/components/basic/animatedview.component.js +222 -0
  20. package/components/basic/audio/audio.component.js +251 -0
  21. package/components/basic/audio/audio.props.js +15 -0
  22. package/components/basic/button/button.component.js +113 -0
  23. package/components/basic/button/button.props.js +27 -0
  24. package/components/basic/buttongroup/buttongroup.props.js +14 -0
  25. package/components/basic/custom/custom.props.js +16 -0
  26. package/components/basic/icon/icon.component.js +266 -0
  27. package/components/basic/icon/icon.props.js +27 -0
  28. package/components/basic/label/label.component.js +156 -0
  29. package/components/basic/label/label.props.js +24 -0
  30. package/components/basic/label/label.styles.js +133 -0
  31. package/components/basic/label/label.styles.js.map +1 -0
  32. package/components/basic/lottie/lottie.component.js +138 -0
  33. package/components/basic/lottie/lottie.props.js +14 -0
  34. package/components/basic/message/message.component.js +78 -0
  35. package/components/basic/message/message.props.js +21 -0
  36. package/components/basic/modal/modal.props.js +12 -0
  37. package/components/basic/picture/picture.component.js +197 -0
  38. package/components/basic/picture/picture.props.js +23 -0
  39. package/components/basic/progress-bar/progress-bar.component.js +59 -0
  40. package/components/basic/progress-bar/progress-bar.component.js.map +1 -0
  41. package/components/basic/progress-bar/progress-bar.props.js +16 -0
  42. package/components/basic/progress-bar/progress-bar.styles.js +37 -0
  43. package/components/basic/progress-bar/progress-bar.styles.js.map +1 -0
  44. package/components/basic/progress-circle/progress-circle.component.js +77 -0
  45. package/components/basic/progress-circle/progress-circle.props.js +19 -0
  46. package/components/basic/search/local-data-provider.js +113 -0
  47. package/components/basic/search/search.component.js +429 -0
  48. package/components/basic/search/search.component.js.map +1 -0
  49. package/components/basic/search/search.props.js +36 -0
  50. package/components/basic/skeleton/skeleton.component.js +151 -0
  51. package/components/basic/skeleton/skeleton.props.js +11 -0
  52. package/components/basic/spinner/spinner.component.js +90 -0
  53. package/components/basic/spinner/spinner.props.js +17 -0
  54. package/components/basic/tooltip/tooltip.props.js +18 -0
  55. package/components/basic/video/video.component.js +144 -0
  56. package/components/basic/video/video.component.js.map +1 -0
  57. package/components/basic/video/video.props.js +32 -0
  58. package/components/basic/video/video.props.js.map +1 -0
  59. package/components/chart/area-chart/area-chart.component.js +148 -0
  60. package/components/chart/area-chart/area-chart.props.js +12 -0
  61. package/components/chart/bar-chart/bar-chart.component.js +120 -0
  62. package/components/chart/bar-chart/bar-chart.props.js +13 -0
  63. package/components/chart/basechart.component.js +693 -0
  64. package/components/chart/basechart.props.js +61 -0
  65. package/components/chart/bubble-chart/bubble-chart.component.js +104 -0
  66. package/components/chart/bubble-chart/bubble-chart.props.js +11 -0
  67. package/components/chart/donut-chart/donut-chart.props.js +11 -0
  68. package/components/chart/line-chart/line-chart.component.js +110 -0
  69. package/components/chart/line-chart/line-chart.props.js +14 -0
  70. package/components/chart/pie-chart/pie-chart.component.js +228 -0
  71. package/components/chart/pie-chart/pie-chart.props.js +14 -0
  72. package/components/chart/stack-chart/stack-chart.component.js +348 -0
  73. package/components/chart/stack-chart/stack-chart.props.js +17 -0
  74. package/components/container/accordion/accordion.component.js +190 -0
  75. package/components/container/accordion/accordion.props.js +14 -0
  76. package/components/container/accordion/accordionpane/accordionpane.component.js +85 -0
  77. package/components/container/accordion/accordionpane/accordionpane.props.js +17 -0
  78. package/components/container/container.component.js +80 -0
  79. package/components/container/container.props.js +14 -0
  80. package/components/container/layoutgrid/gridcolumn/gridcolumn.props.js +13 -0
  81. package/components/container/layoutgrid/gridrow/gridrow.props.js +11 -0
  82. package/components/container/layoutgrid/layoutgrid.props.js +11 -0
  83. package/components/container/linearlayout/linearlayout.props.js +15 -0
  84. package/components/container/linearlayout/linearlayoutitem/linearlayoutitem.props.js +13 -0
  85. package/components/container/panel/panel-content/panel-content.props.js +11 -0
  86. package/components/container/panel/panel-footer/panel-footer.props.js +11 -0
  87. package/components/container/panel/panel.component.js +155 -0
  88. package/components/container/panel/panel.component.js.map +1 -0
  89. package/components/container/panel/panel.props.js +24 -0
  90. package/components/container/partial-host.component.js +42 -0
  91. package/components/container/tabs/tabheader/tabheader.component.js +212 -0
  92. package/components/container/tabs/tabheader/tabheader.props.js +14 -0
  93. package/components/container/tabs/tabpane/tabpane.component.js +81 -0
  94. package/components/container/tabs/tabpane/tabpane.props.js +16 -0
  95. package/components/container/tabs/tabs.component.js +282 -0
  96. package/components/container/tabs/tabs.component.js.map +1 -0
  97. package/components/container/tabs/tabs.props.js +14 -0
  98. package/components/container/tabs/tabs.styles.js.map +1 -0
  99. package/components/container/tile/tile.component.js +49 -0
  100. package/components/container/tile/tile.props.js +13 -0
  101. package/components/container/wizard/wizard.component.js +349 -0
  102. package/components/container/wizard/wizard.component.js.map +1 -0
  103. package/components/container/wizard/wizard.props.js +23 -0
  104. package/components/container/wizard/wizardstep/wizardstep.component.js +91 -0
  105. package/components/container/wizard/wizardstep/wizardstep.component.js.map +1 -0
  106. package/components/container/wizard/wizardstep/wizardstep.props.js +22 -0
  107. package/components/data/card/card-content/card-content.component.js +45 -0
  108. package/components/data/card/card-content/card-content.props.js +12 -0
  109. package/components/data/card/card-footer/card-footer.props.js +11 -0
  110. package/components/data/card/card.component.js +90 -0
  111. package/components/data/card/card.props.js +27 -0
  112. package/components/data/form/form-action/form-action.component.js +35 -0
  113. package/components/data/form/form-action/form-action.props.js +18 -0
  114. package/components/data/form/form-body/form-body.props.js +11 -0
  115. package/components/data/form/form-field/form-field.component.js +246 -0
  116. package/components/data/form/form-field/form-field.props.js +34 -0
  117. package/components/data/form/form-footer/form-footer.props.js +11 -0
  118. package/components/data/form/form.component.js +425 -0
  119. package/components/data/form/form.props.js +31 -0
  120. package/components/data/list/list-action-template/list-action-template.props.js +12 -0
  121. package/components/data/list/list-template/list-template.props.js +12 -0
  122. package/components/data/list/list.component.js +485 -0
  123. package/components/data/list/list.props.js +48 -0
  124. package/components/data/liveform/liveform.component.js +98 -0
  125. package/components/device/barcodescanner/barcodescanner.component.js +50 -0
  126. package/components/device/barcodescanner/barcodescanner.props.js +18 -0
  127. package/components/device/camera/camera.component.js +68 -0
  128. package/components/device/camera/camera.props.js +23 -0
  129. package/components/dialogs/alertdialog/alertdialog.component.js +72 -0
  130. package/components/dialogs/alertdialog/alertdialog.props.js +24 -0
  131. package/components/dialogs/confirmdialog/confirmdialog.component.js +78 -0
  132. package/components/dialogs/confirmdialog/confirmdialog.props.js +24 -0
  133. package/components/dialogs/dialog/dialog.component.js +102 -0
  134. package/components/dialogs/dialog/dialog.component.js.map +1 -0
  135. package/components/dialogs/dialog/dialog.props.js +25 -0
  136. package/components/dialogs/dialogactions/dialogactions.component.js +21 -0
  137. package/components/dialogs/dialogactions/dialogactions.props.js +11 -0
  138. package/components/dialogs/dialogcontent/dialogcontent.props.js +11 -0
  139. package/components/input/basedataset/basedataset.component.js +230 -0
  140. package/components/input/basedataset/basedataset.props.js +31 -0
  141. package/components/input/baseinput/baseinput.component.js +193 -0
  142. package/components/input/baseinput/baseinput.props.js +31 -0
  143. package/components/input/baseinput/baseinput.props.js.map +1 -0
  144. package/components/input/basenumber/basenumber.component.js +346 -0
  145. package/components/input/basenumber/basenumber.props.js +27 -0
  146. package/components/input/calendar/calendar.component.js +164 -0
  147. package/components/input/calendar/calendar.props.js +14 -0
  148. package/components/input/calendar/calendar.styles.js.map +1 -0
  149. package/components/input/calendar/views/month-view.js +191 -0
  150. package/components/input/calendar/views/month-view.js.map +1 -0
  151. package/components/input/checkbox/checkbox.component.js +121 -0
  152. package/components/input/checkbox/checkbox.props.js +18 -0
  153. package/components/input/checkboxset/checkboxset.component.js +144 -0
  154. package/components/input/checkboxset/checkboxset.props.js +21 -0
  155. package/components/input/chips/chips.component.js +320 -0
  156. package/components/input/chips/chips.component.js.map +1 -0
  157. package/components/input/chips/chips.props.js +19 -0
  158. package/components/input/composite/composite.props.js +12 -0
  159. package/components/input/currency/currency.component.js +113 -0
  160. package/components/input/currency/currency.props.js +13 -0
  161. package/components/input/epoch/base-datetime.component.js +473 -0
  162. package/components/input/epoch/date-picker.component.js +136 -0
  163. package/components/input/epoch/date-picker.component.js.map +1 -0
  164. package/components/input/epoch/datetime/datetime.props.js +35 -0
  165. package/components/input/epoch/time/time.props.js +15 -0
  166. package/components/input/epoch/wheel-date-picker.component.js +198 -0
  167. package/components/input/epoch/wheel-time-picker.component.js +107 -0
  168. package/components/input/epoch/wheelpicker/wheelpicker.component.js +91 -0
  169. package/components/input/epoch/wheelpicker/wheelpicker.props.js +17 -0
  170. package/components/input/epoch/wheelpickermodal/date/date-picker-modal.component.js +79 -0
  171. package/components/input/epoch/wheelpickermodal/date/date-picker-modal.props.js +20 -0
  172. package/components/input/epoch/wheelpickermodal/time/time-picker-modal.component.js +77 -0
  173. package/components/input/epoch/wheelpickermodal/time/time-picker-modal.props.js +19 -0
  174. package/components/input/fileupload/fileupload.component.js +60 -0
  175. package/components/input/fileupload/fileupload.props.js +17 -0
  176. package/components/input/number/number.component.js +83 -0
  177. package/components/input/number/number.props.js +13 -0
  178. package/components/input/radioset/radioset.component.js +122 -0
  179. package/components/input/radioset/radioset.props.js +20 -0
  180. package/components/input/rating/rating.component.js +144 -0
  181. package/components/input/rating/rating.props.js +21 -0
  182. package/components/input/select/select.component.js +250 -0
  183. package/components/input/select/select.component.js.map +1 -0
  184. package/components/input/select/select.props.js +12 -0
  185. package/components/input/select/select.styles.js +153 -0
  186. package/components/input/select/select.styles.js.map +1 -0
  187. package/components/input/slider/slider.component.js +444 -0
  188. package/components/input/slider/slider.props.js +20 -0
  189. package/components/input/switch/switch.component.js +94 -0
  190. package/components/input/switch/switch.props.js +13 -0
  191. package/components/input/text/text.component.js +85 -0
  192. package/components/input/text/text.component.js.map +1 -0
  193. package/components/input/text/text.props.js +15 -0
  194. package/components/input/textarea/textarea.component.js +83 -0
  195. package/components/input/textarea/textarea.props.js +14 -0
  196. package/components/input/toggle/toggle.component.js +151 -0
  197. package/components/input/toggle/toggle.component.js.map +1 -0
  198. package/components/input/toggle/toggle.props.js +22 -0
  199. package/components/navigation/appnavbar/appnavbar.component.js +74 -0
  200. package/components/navigation/appnavbar/appnavbar.props.js +21 -0
  201. package/components/navigation/basenav/basenav.component.js +72 -0
  202. package/components/navigation/basenav/basenav.props.js +18 -0
  203. package/components/navigation/menu/menu.component.js +65 -0
  204. package/components/navigation/menu/menu.component.js.map +1 -0
  205. package/components/navigation/menu/menu.props.js +14 -0
  206. package/components/navigation/menu/menu.styles.js +70 -0
  207. package/components/navigation/menu/menu.styles.js.map +1 -0
  208. package/components/navigation/navbar/navbar.props.js +16 -0
  209. package/components/navigation/navitem/navitem.component.js +67 -0
  210. package/components/navigation/navitem/navitem.props.js +19 -0
  211. package/components/navigation/popover/popover.component.js +193 -0
  212. package/components/navigation/popover/popover.component.js.map +1 -0
  213. package/components/navigation/popover/popover.props.js +31 -0
  214. package/components/page/left-panel/left-panel.component.js +48 -0
  215. package/components/page/left-panel/left-panel.props.js +12 -0
  216. package/components/page/page-content/page-content.component.js +114 -0
  217. package/components/page/page-content/page-content.component.js.map +1 -0
  218. package/components/page/page-content/page-content.props.js +12 -0
  219. package/components/page/page.component.js +26 -0
  220. package/components/page/partial-container/partial-container.props.js +12 -0
  221. package/components/page/tabbar/tabbar.component.js +149 -0
  222. package/components/page/tabbar/tabbar.component.js.map +1 -0
  223. package/components/page/tabbar/tabbar.props.js +28 -0
  224. package/core/AppConfig.js.map +1 -0
  225. package/core/accessibility.js +160 -0
  226. package/core/accessibility.js.map +1 -0
  227. package/core/base.component.js +522 -0
  228. package/core/base.component.js.map +1 -0
  229. package/core/components/textinput.component.js +197 -0
  230. package/core/constant.service.js +22 -0
  231. package/core/event-notifier.js +68 -0
  232. package/core/fixed-view.component.js +67 -0
  233. package/core/imageSizeEstimator.js +51 -0
  234. package/core/key.extractor.js +21 -0
  235. package/core/logger.js +123 -0
  236. package/core/network.service.js +327 -0
  237. package/core/props.provider.js +88 -0
  238. package/core/scroll-view.component.js +52 -0
  239. package/core/storage.service.js +38 -0
  240. package/core/tappable.component.js +151 -0
  241. package/core/utils.js +543 -0
  242. package/core/utils.js.map +1 -0
  243. package/core/viewport.js +45 -0
  244. package/core/wm-component-tree.js +58 -0
  245. package/gestures/swipe.animation.js +217 -0
  246. package/npm-shrinkwrap.json +25648 -0
  247. package/package-lock.json +25648 -0
  248. package/package.json +272 -0
  249. package/runtime/App.js +533 -0
  250. package/runtime/App.js.map +1 -0
  251. package/runtime/base-fragment.component.js +411 -0
  252. package/runtime/base-fragment.component.js.map +1 -0
  253. package/runtime/base-page.component.js +209 -0
  254. package/runtime/base-page.component.js.map +1 -0
  255. package/runtime/base-partial.component.js +63 -0
  256. package/runtime/base-prefab.component.js +83 -0
  257. package/runtime/memo.component.js +35 -0
  258. package/runtime/navigator/stack.navigator.js +77 -0
  259. package/runtime/services/app-display-manager.service.js +50 -0
  260. package/runtime/services/app-i18n.service.js +82 -0
  261. package/runtime/services/app-modal.service.js +71 -0
  262. package/runtime/services/app-security.service.js +256 -0
  263. package/runtime/services/app-spinner.service.js +74 -0
  264. package/runtime/services/app-toast.service.js +56 -0
  265. package/runtime/services/device/camera-service.js +349 -0
  266. package/runtime/services/device/camera-service.js.map +1 -0
  267. package/runtime/services/device/permissions.js +50 -0
  268. package/runtime/services/device/permissions.js.map +1 -0
  269. package/runtime/services/device/scan-service.js +162 -0
  270. package/runtime/services/device/scan-service.js.map +1 -0
  271. package/runtime/services/webprocess.service.js +107 -0
  272. package/runtime/watcher.js +147 -0
  273. package/styles/background.component.js +311 -0
  274. package/styles/background.component.js.map +1 -0
  275. package/styles/style-props.js +93 -0
  276. package/styles/theme.js +454 -0
  277. package/styles/theme.js.map +1 -0
  278. package/styles/theme.variables.js +437 -0
  279. package/variables/base-variable.js +125 -0
  280. package/variables/device/device/network-info.operation.js +33 -0
  281. package/variables/live-variable.js +130 -0
  282. package/variables/model-variable.js +47 -0
  283. package/variables/service-variable.js +143 -0
  284. package/variables/utils/inflight-queue.js +114 -0
  285. app-rn-runtime/actions/notification-action.js +0 -73
  286. app-rn-runtime/actions/timer-action.js +0 -57
  287. app-rn-runtime/components/advanced/carousel/carousel-content/carousel-content.props.js +0 -11
  288. app-rn-runtime/components/advanced/carousel/carousel-template/carousel-template.props.js +0 -11
  289. app-rn-runtime/components/advanced/carousel/carousel.component.js +0 -345
  290. app-rn-runtime/components/advanced/carousel/carousel.component.js.map +0 -1
  291. app-rn-runtime/components/advanced/carousel/carousel.props.js +0 -21
  292. app-rn-runtime/components/advanced/carousel/carousel.styles.js +0 -178
  293. app-rn-runtime/components/advanced/carousel/carousel.styles.js.map +0 -1
  294. app-rn-runtime/components/advanced/login/login.component.js +0 -39
  295. app-rn-runtime/components/advanced/login/login.props.js +0 -12
  296. app-rn-runtime/components/advanced/network-info-toaster/network-info-toaster.component.js +0 -114
  297. app-rn-runtime/components/advanced/network-info-toaster/network-info-toaster.props.js +0 -11
  298. app-rn-runtime/components/advanced/webview/webview.component.js +0 -153
  299. app-rn-runtime/components/advanced/webview/webview.component.js.map +0 -1
  300. app-rn-runtime/components/advanced/webview/webview.props.js +0 -16
  301. app-rn-runtime/components/basic/anchor/anchor.component.js +0 -99
  302. app-rn-runtime/components/basic/anchor/anchor.props.js +0 -32
  303. app-rn-runtime/components/basic/animatedview.component.js +0 -222
  304. app-rn-runtime/components/basic/audio/audio.component.js +0 -251
  305. app-rn-runtime/components/basic/audio/audio.props.js +0 -15
  306. app-rn-runtime/components/basic/button/button.component.js +0 -113
  307. app-rn-runtime/components/basic/button/button.props.js +0 -27
  308. app-rn-runtime/components/basic/buttongroup/buttongroup.props.js +0 -14
  309. app-rn-runtime/components/basic/custom/custom.props.js +0 -16
  310. app-rn-runtime/components/basic/icon/icon.component.js +0 -266
  311. app-rn-runtime/components/basic/icon/icon.props.js +0 -27
  312. app-rn-runtime/components/basic/label/label.component.js +0 -156
  313. app-rn-runtime/components/basic/label/label.props.js +0 -24
  314. app-rn-runtime/components/basic/label/label.styles.js +0 -129
  315. app-rn-runtime/components/basic/label/label.styles.js.map +0 -1
  316. app-rn-runtime/components/basic/lottie/lottie.component.js +0 -138
  317. app-rn-runtime/components/basic/lottie/lottie.props.js +0 -14
  318. app-rn-runtime/components/basic/message/message.component.js +0 -78
  319. app-rn-runtime/components/basic/message/message.props.js +0 -21
  320. app-rn-runtime/components/basic/modal/modal.props.js +0 -12
  321. app-rn-runtime/components/basic/picture/picture.component.js +0 -197
  322. app-rn-runtime/components/basic/picture/picture.props.js +0 -23
  323. app-rn-runtime/components/basic/progress-bar/progress-bar.component.js +0 -59
  324. app-rn-runtime/components/basic/progress-bar/progress-bar.component.js.map +0 -1
  325. app-rn-runtime/components/basic/progress-bar/progress-bar.props.js +0 -16
  326. app-rn-runtime/components/basic/progress-bar/progress-bar.styles.js +0 -29
  327. app-rn-runtime/components/basic/progress-bar/progress-bar.styles.js.map +0 -1
  328. app-rn-runtime/components/basic/progress-circle/progress-circle.component.js +0 -77
  329. app-rn-runtime/components/basic/progress-circle/progress-circle.props.js +0 -19
  330. app-rn-runtime/components/basic/search/local-data-provider.js +0 -113
  331. app-rn-runtime/components/basic/search/search.component.js +0 -427
  332. app-rn-runtime/components/basic/search/search.component.js.map +0 -1
  333. app-rn-runtime/components/basic/search/search.props.js +0 -36
  334. app-rn-runtime/components/basic/skeleton/skeleton.component.js +0 -151
  335. app-rn-runtime/components/basic/skeleton/skeleton.props.js +0 -11
  336. app-rn-runtime/components/basic/spinner/spinner.component.js +0 -90
  337. app-rn-runtime/components/basic/spinner/spinner.props.js +0 -17
  338. app-rn-runtime/components/basic/tooltip/tooltip.props.js +0 -18
  339. app-rn-runtime/components/basic/video/video.component.js +0 -68
  340. app-rn-runtime/components/basic/video/video.component.js.map +0 -1
  341. app-rn-runtime/components/basic/video/video.props.js +0 -25
  342. app-rn-runtime/components/basic/video/video.props.js.map +0 -1
  343. app-rn-runtime/components/chart/area-chart/area-chart.component.js +0 -148
  344. app-rn-runtime/components/chart/area-chart/area-chart.props.js +0 -12
  345. app-rn-runtime/components/chart/bar-chart/bar-chart.component.js +0 -120
  346. app-rn-runtime/components/chart/bar-chart/bar-chart.props.js +0 -13
  347. app-rn-runtime/components/chart/basechart.component.js +0 -693
  348. app-rn-runtime/components/chart/basechart.props.js +0 -61
  349. app-rn-runtime/components/chart/bubble-chart/bubble-chart.component.js +0 -104
  350. app-rn-runtime/components/chart/bubble-chart/bubble-chart.props.js +0 -11
  351. app-rn-runtime/components/chart/donut-chart/donut-chart.props.js +0 -11
  352. app-rn-runtime/components/chart/line-chart/line-chart.component.js +0 -110
  353. app-rn-runtime/components/chart/line-chart/line-chart.props.js +0 -14
  354. app-rn-runtime/components/chart/pie-chart/pie-chart.component.js +0 -228
  355. app-rn-runtime/components/chart/pie-chart/pie-chart.props.js +0 -14
  356. app-rn-runtime/components/chart/stack-chart/stack-chart.component.js +0 -348
  357. app-rn-runtime/components/chart/stack-chart/stack-chart.props.js +0 -17
  358. app-rn-runtime/components/container/accordion/accordion.component.js +0 -190
  359. app-rn-runtime/components/container/accordion/accordion.props.js +0 -14
  360. app-rn-runtime/components/container/accordion/accordionpane/accordionpane.component.js +0 -85
  361. app-rn-runtime/components/container/accordion/accordionpane/accordionpane.props.js +0 -17
  362. app-rn-runtime/components/container/container.component.js +0 -80
  363. app-rn-runtime/components/container/container.props.js +0 -14
  364. app-rn-runtime/components/container/layoutgrid/gridcolumn/gridcolumn.props.js +0 -13
  365. app-rn-runtime/components/container/layoutgrid/gridrow/gridrow.props.js +0 -11
  366. app-rn-runtime/components/container/layoutgrid/layoutgrid.props.js +0 -11
  367. app-rn-runtime/components/container/linearlayout/linearlayout.props.js +0 -15
  368. app-rn-runtime/components/container/linearlayout/linearlayoutitem/linearlayoutitem.props.js +0 -13
  369. app-rn-runtime/components/container/panel/panel-content/panel-content.props.js +0 -11
  370. app-rn-runtime/components/container/panel/panel-footer/panel-footer.props.js +0 -11
  371. app-rn-runtime/components/container/panel/panel.component.js +0 -155
  372. app-rn-runtime/components/container/panel/panel.component.js.map +0 -1
  373. app-rn-runtime/components/container/panel/panel.props.js +0 -24
  374. app-rn-runtime/components/container/partial-host.component.js +0 -42
  375. app-rn-runtime/components/container/tabs/tabheader/tabheader.component.js +0 -212
  376. app-rn-runtime/components/container/tabs/tabheader/tabheader.props.js +0 -14
  377. app-rn-runtime/components/container/tabs/tabpane/tabpane.component.js +0 -81
  378. app-rn-runtime/components/container/tabs/tabpane/tabpane.props.js +0 -16
  379. app-rn-runtime/components/container/tabs/tabs.component.js +0 -282
  380. app-rn-runtime/components/container/tabs/tabs.component.js.map +0 -1
  381. app-rn-runtime/components/container/tabs/tabs.props.js +0 -14
  382. app-rn-runtime/components/container/tabs/tabs.styles.js.map +0 -1
  383. app-rn-runtime/components/container/tile/tile.component.js +0 -49
  384. app-rn-runtime/components/container/tile/tile.props.js +0 -13
  385. app-rn-runtime/components/container/wizard/wizard.component.js +0 -343
  386. app-rn-runtime/components/container/wizard/wizard.component.js.map +0 -1
  387. app-rn-runtime/components/container/wizard/wizard.props.js +0 -23
  388. app-rn-runtime/components/container/wizard/wizardstep/wizardstep.component.js +0 -84
  389. app-rn-runtime/components/container/wizard/wizardstep/wizardstep.component.js.map +0 -1
  390. app-rn-runtime/components/container/wizard/wizardstep/wizardstep.props.js +0 -22
  391. app-rn-runtime/components/data/card/card-content/card-content.component.js +0 -45
  392. app-rn-runtime/components/data/card/card-content/card-content.props.js +0 -12
  393. app-rn-runtime/components/data/card/card-footer/card-footer.props.js +0 -11
  394. app-rn-runtime/components/data/card/card.component.js +0 -90
  395. app-rn-runtime/components/data/card/card.props.js +0 -27
  396. app-rn-runtime/components/data/form/form-action/form-action.component.js +0 -35
  397. app-rn-runtime/components/data/form/form-action/form-action.props.js +0 -18
  398. app-rn-runtime/components/data/form/form-body/form-body.props.js +0 -11
  399. app-rn-runtime/components/data/form/form-field/form-field.component.js +0 -246
  400. app-rn-runtime/components/data/form/form-field/form-field.props.js +0 -34
  401. app-rn-runtime/components/data/form/form-footer/form-footer.props.js +0 -11
  402. app-rn-runtime/components/data/form/form.component.js +0 -425
  403. app-rn-runtime/components/data/form/form.props.js +0 -31
  404. app-rn-runtime/components/data/list/list-action-template/list-action-template.props.js +0 -12
  405. app-rn-runtime/components/data/list/list-template/list-template.props.js +0 -12
  406. app-rn-runtime/components/data/list/list.component.js +0 -485
  407. app-rn-runtime/components/data/list/list.props.js +0 -48
  408. app-rn-runtime/components/data/liveform/liveform.component.js +0 -98
  409. app-rn-runtime/components/device/barcodescanner/barcodescanner.component.js +0 -50
  410. app-rn-runtime/components/device/barcodescanner/barcodescanner.props.js +0 -18
  411. app-rn-runtime/components/device/camera/camera.component.js +0 -68
  412. app-rn-runtime/components/device/camera/camera.props.js +0 -23
  413. app-rn-runtime/components/dialogs/alertdialog/alertdialog.component.js +0 -72
  414. app-rn-runtime/components/dialogs/alertdialog/alertdialog.props.js +0 -24
  415. app-rn-runtime/components/dialogs/confirmdialog/confirmdialog.component.js +0 -78
  416. app-rn-runtime/components/dialogs/confirmdialog/confirmdialog.props.js +0 -24
  417. app-rn-runtime/components/dialogs/dialog/dialog.component.js +0 -102
  418. app-rn-runtime/components/dialogs/dialog/dialog.component.js.map +0 -1
  419. app-rn-runtime/components/dialogs/dialog/dialog.props.js +0 -25
  420. app-rn-runtime/components/dialogs/dialogactions/dialogactions.component.js +0 -21
  421. app-rn-runtime/components/dialogs/dialogactions/dialogactions.props.js +0 -11
  422. app-rn-runtime/components/dialogs/dialogcontent/dialogcontent.props.js +0 -11
  423. app-rn-runtime/components/input/basedataset/basedataset.component.js +0 -230
  424. app-rn-runtime/components/input/basedataset/basedataset.props.js +0 -31
  425. app-rn-runtime/components/input/baseinput/baseinput.component.js +0 -193
  426. app-rn-runtime/components/input/baseinput/baseinput.props.js +0 -30
  427. app-rn-runtime/components/input/baseinput/baseinput.props.js.map +0 -1
  428. app-rn-runtime/components/input/basenumber/basenumber.component.js +0 -346
  429. app-rn-runtime/components/input/basenumber/basenumber.props.js +0 -27
  430. app-rn-runtime/components/input/calendar/calendar.component.js +0 -164
  431. app-rn-runtime/components/input/calendar/calendar.props.js +0 -14
  432. app-rn-runtime/components/input/calendar/calendar.styles.js.map +0 -1
  433. app-rn-runtime/components/input/calendar/views/month-view.js +0 -191
  434. app-rn-runtime/components/input/calendar/views/month-view.js.map +0 -1
  435. app-rn-runtime/components/input/checkbox/checkbox.component.js +0 -121
  436. app-rn-runtime/components/input/checkbox/checkbox.props.js +0 -18
  437. app-rn-runtime/components/input/checkboxset/checkboxset.component.js +0 -144
  438. app-rn-runtime/components/input/checkboxset/checkboxset.props.js +0 -21
  439. app-rn-runtime/components/input/chips/chips.component.js +0 -324
  440. app-rn-runtime/components/input/chips/chips.component.js.map +0 -1
  441. app-rn-runtime/components/input/chips/chips.props.js +0 -19
  442. app-rn-runtime/components/input/composite/composite.props.js +0 -12
  443. app-rn-runtime/components/input/currency/currency.component.js +0 -113
  444. app-rn-runtime/components/input/currency/currency.props.js +0 -13
  445. app-rn-runtime/components/input/epoch/base-datetime.component.js +0 -473
  446. app-rn-runtime/components/input/epoch/date-picker.component.js +0 -136
  447. app-rn-runtime/components/input/epoch/date-picker.component.js.map +0 -1
  448. app-rn-runtime/components/input/epoch/datetime/datetime.props.js +0 -35
  449. app-rn-runtime/components/input/epoch/time/time.props.js +0 -15
  450. app-rn-runtime/components/input/epoch/wheel-date-picker.component.js +0 -198
  451. app-rn-runtime/components/input/epoch/wheel-time-picker.component.js +0 -107
  452. app-rn-runtime/components/input/epoch/wheelpicker/wheelpicker.component.js +0 -91
  453. app-rn-runtime/components/input/epoch/wheelpicker/wheelpicker.props.js +0 -17
  454. app-rn-runtime/components/input/epoch/wheelpickermodal/date/date-picker-modal.component.js +0 -79
  455. app-rn-runtime/components/input/epoch/wheelpickermodal/date/date-picker-modal.props.js +0 -20
  456. app-rn-runtime/components/input/epoch/wheelpickermodal/time/time-picker-modal.component.js +0 -77
  457. app-rn-runtime/components/input/epoch/wheelpickermodal/time/time-picker-modal.props.js +0 -19
  458. app-rn-runtime/components/input/fileupload/fileupload.component.js +0 -60
  459. app-rn-runtime/components/input/fileupload/fileupload.props.js +0 -17
  460. app-rn-runtime/components/input/number/number.component.js +0 -83
  461. app-rn-runtime/components/input/number/number.props.js +0 -13
  462. app-rn-runtime/components/input/radioset/radioset.component.js +0 -122
  463. app-rn-runtime/components/input/radioset/radioset.props.js +0 -20
  464. app-rn-runtime/components/input/rating/rating.component.js +0 -144
  465. app-rn-runtime/components/input/rating/rating.props.js +0 -21
  466. app-rn-runtime/components/input/select/select.component.js +0 -215
  467. app-rn-runtime/components/input/select/select.component.js.map +0 -1
  468. app-rn-runtime/components/input/select/select.props.js +0 -12
  469. app-rn-runtime/components/input/select/select.styles.js +0 -129
  470. app-rn-runtime/components/input/select/select.styles.js.map +0 -1
  471. app-rn-runtime/components/input/slider/slider.component.js +0 -444
  472. app-rn-runtime/components/input/slider/slider.props.js +0 -20
  473. app-rn-runtime/components/input/switch/switch.component.js +0 -94
  474. app-rn-runtime/components/input/switch/switch.props.js +0 -13
  475. app-rn-runtime/components/input/text/text.component.js +0 -85
  476. app-rn-runtime/components/input/text/text.component.js.map +0 -1
  477. app-rn-runtime/components/input/text/text.props.js +0 -15
  478. app-rn-runtime/components/input/textarea/textarea.component.js +0 -83
  479. app-rn-runtime/components/input/textarea/textarea.props.js +0 -14
  480. app-rn-runtime/components/input/toggle/toggle.component.js +0 -150
  481. app-rn-runtime/components/input/toggle/toggle.component.js.map +0 -1
  482. app-rn-runtime/components/input/toggle/toggle.props.js +0 -22
  483. app-rn-runtime/components/navigation/appnavbar/appnavbar.component.js +0 -74
  484. app-rn-runtime/components/navigation/appnavbar/appnavbar.props.js +0 -21
  485. app-rn-runtime/components/navigation/basenav/basenav.component.js +0 -72
  486. app-rn-runtime/components/navigation/basenav/basenav.props.js +0 -18
  487. app-rn-runtime/components/navigation/menu/menu.component.js +0 -63
  488. app-rn-runtime/components/navigation/menu/menu.component.js.map +0 -1
  489. app-rn-runtime/components/navigation/menu/menu.props.js +0 -14
  490. app-rn-runtime/components/navigation/menu/menu.styles.js +0 -74
  491. app-rn-runtime/components/navigation/menu/menu.styles.js.map +0 -1
  492. app-rn-runtime/components/navigation/navbar/navbar.props.js +0 -16
  493. app-rn-runtime/components/navigation/navitem/navitem.component.js +0 -67
  494. app-rn-runtime/components/navigation/navitem/navitem.props.js +0 -19
  495. app-rn-runtime/components/navigation/popover/popover.component.js +0 -193
  496. app-rn-runtime/components/navigation/popover/popover.component.js.map +0 -1
  497. app-rn-runtime/components/navigation/popover/popover.props.js +0 -31
  498. app-rn-runtime/components/page/left-panel/left-panel.component.js +0 -48
  499. app-rn-runtime/components/page/left-panel/left-panel.props.js +0 -12
  500. app-rn-runtime/components/page/page-content/page-content.component.js +0 -93
  501. app-rn-runtime/components/page/page-content/page-content.component.js.map +0 -1
  502. app-rn-runtime/components/page/page-content/page-content.props.js +0 -12
  503. app-rn-runtime/components/page/page.component.js +0 -26
  504. app-rn-runtime/components/page/partial-container/partial-container.props.js +0 -12
  505. app-rn-runtime/components/page/tabbar/tabbar.component.js +0 -149
  506. app-rn-runtime/components/page/tabbar/tabbar.component.js.map +0 -1
  507. app-rn-runtime/components/page/tabbar/tabbar.props.js +0 -28
  508. app-rn-runtime/core/AppConfig.js.map +0 -1
  509. app-rn-runtime/core/accessibility.js +0 -155
  510. app-rn-runtime/core/accessibility.js.map +0 -1
  511. app-rn-runtime/core/base.component.js +0 -485
  512. app-rn-runtime/core/base.component.js.map +0 -1
  513. app-rn-runtime/core/components/textinput.component.js +0 -197
  514. app-rn-runtime/core/constant.service.js +0 -22
  515. app-rn-runtime/core/event-notifier.js +0 -68
  516. app-rn-runtime/core/fixed-view.component.js +0 -67
  517. app-rn-runtime/core/imageSizeEstimator.js +0 -51
  518. app-rn-runtime/core/key.extractor.js +0 -21
  519. app-rn-runtime/core/logger.js +0 -123
  520. app-rn-runtime/core/network.service.js +0 -327
  521. app-rn-runtime/core/props.provider.js +0 -88
  522. app-rn-runtime/core/scroll-view.component.js +0 -52
  523. app-rn-runtime/core/storage.service.js +0 -38
  524. app-rn-runtime/core/tappable.component.js +0 -151
  525. app-rn-runtime/core/utils.js +0 -529
  526. app-rn-runtime/core/utils.js.map +0 -1
  527. app-rn-runtime/core/viewport.js +0 -45
  528. app-rn-runtime/core/wm-component-tree.js +0 -58
  529. app-rn-runtime/gestures/swipe.animation.js +0 -217
  530. app-rn-runtime/package.json +0 -277
  531. app-rn-runtime/runtime/App.js +0 -533
  532. app-rn-runtime/runtime/App.js.map +0 -1
  533. app-rn-runtime/runtime/base-fragment.component.js +0 -405
  534. app-rn-runtime/runtime/base-fragment.component.js.map +0 -1
  535. app-rn-runtime/runtime/base-page.component.js +0 -206
  536. app-rn-runtime/runtime/base-page.component.js.map +0 -1
  537. app-rn-runtime/runtime/base-partial.component.js +0 -63
  538. app-rn-runtime/runtime/base-prefab.component.js +0 -83
  539. app-rn-runtime/runtime/memo.component.js +0 -35
  540. app-rn-runtime/runtime/navigator/stack.navigator.js +0 -77
  541. app-rn-runtime/runtime/services/app-display-manager.service.js +0 -50
  542. app-rn-runtime/runtime/services/app-i18n.service.js +0 -82
  543. app-rn-runtime/runtime/services/app-modal.service.js +0 -71
  544. app-rn-runtime/runtime/services/app-security.service.js +0 -256
  545. app-rn-runtime/runtime/services/app-spinner.service.js +0 -74
  546. app-rn-runtime/runtime/services/app-toast.service.js +0 -56
  547. app-rn-runtime/runtime/services/device/camera-service.js +0 -349
  548. app-rn-runtime/runtime/services/device/camera-service.js.map +0 -1
  549. app-rn-runtime/runtime/services/device/permissions.js +0 -50
  550. app-rn-runtime/runtime/services/device/permissions.js.map +0 -1
  551. app-rn-runtime/runtime/services/device/scan-service.js +0 -136
  552. app-rn-runtime/runtime/services/device/scan-service.js.map +0 -1
  553. app-rn-runtime/runtime/services/webprocess.service.js +0 -107
  554. app-rn-runtime/runtime/watcher.js +0 -147
  555. app-rn-runtime/styles/background.component.js +0 -311
  556. app-rn-runtime/styles/background.component.js.map +0 -1
  557. app-rn-runtime/styles/style-props.js +0 -93
  558. app-rn-runtime/styles/theme.js +0 -414
  559. app-rn-runtime/styles/theme.js.map +0 -1
  560. app-rn-runtime/styles/theme.variables.js +0 -437
  561. app-rn-runtime/variables/base-variable.js +0 -125
  562. app-rn-runtime/variables/device/device/network-info.operation.js +0 -33
  563. app-rn-runtime/variables/live-variable.js +0 -130
  564. app-rn-runtime/variables/model-variable.js +0 -47
  565. app-rn-runtime/variables/service-variable.js +0 -143
  566. app-rn-runtime/variables/utils/inflight-queue.js +0 -114
  567. {app-rn-runtime → package}/actions/base-action.js +0 -0
  568. {app-rn-runtime → package}/actions/base-action.js.map +0 -0
  569. {app-rn-runtime → package}/actions/index.js +0 -0
  570. {app-rn-runtime → package}/actions/index.js.map +0 -0
  571. {app-rn-runtime → package}/actions/login-action.js +0 -0
  572. {app-rn-runtime → package}/actions/login-action.js.map +0 -0
  573. {app-rn-runtime → package}/actions/logout-action.js +0 -0
  574. {app-rn-runtime → package}/actions/logout-action.js.map +0 -0
  575. {app-rn-runtime → package}/actions/navigation-action.js +0 -0
  576. {app-rn-runtime → package}/actions/navigation-action.js.map +0 -0
  577. {app-rn-runtime → package}/actions/notification-action.js.map +0 -0
  578. {app-rn-runtime → package}/actions/timer-action.js.map +0 -0
  579. {app-rn-runtime → package}/components/advanced/carousel/carousel-content/carousel-content.component.js +0 -0
  580. {app-rn-runtime → package}/components/advanced/carousel/carousel-content/carousel-content.component.js.map +0 -0
  581. {app-rn-runtime → package}/components/advanced/carousel/carousel-content/carousel-content.props.js.map +0 -0
  582. {app-rn-runtime → package}/components/advanced/carousel/carousel-content/carousel-content.styles.js +0 -0
  583. {app-rn-runtime → package}/components/advanced/carousel/carousel-content/carousel-content.styles.js.map +0 -0
  584. {app-rn-runtime → package}/components/advanced/carousel/carousel-template/carousel-template.component.js +0 -0
  585. {app-rn-runtime → package}/components/advanced/carousel/carousel-template/carousel-template.component.js.map +0 -0
  586. {app-rn-runtime → package}/components/advanced/carousel/carousel-template/carousel-template.props.js.map +0 -0
  587. {app-rn-runtime → package}/components/advanced/carousel/carousel-template/carousel-template.styles.js +0 -0
  588. {app-rn-runtime → package}/components/advanced/carousel/carousel-template/carousel-template.styles.js.map +0 -0
  589. {app-rn-runtime → package}/components/advanced/carousel/carousel.props.js.map +0 -0
  590. {app-rn-runtime → package}/components/advanced/login/login.component.js.map +0 -0
  591. {app-rn-runtime → package}/components/advanced/login/login.props.js.map +0 -0
  592. {app-rn-runtime → package}/components/advanced/login/login.styles.js +0 -0
  593. {app-rn-runtime → package}/components/advanced/login/login.styles.js.map +0 -0
  594. {app-rn-runtime → package}/components/advanced/network-info-toaster/network-info-toaster.component.js.map +0 -0
  595. {app-rn-runtime → package}/components/advanced/network-info-toaster/network-info-toaster.props.js.map +0 -0
  596. {app-rn-runtime → package}/components/advanced/network-info-toaster/network-info-toaster.styles.js +0 -0
  597. {app-rn-runtime → package}/components/advanced/network-info-toaster/network-info-toaster.styles.js.map +0 -0
  598. {app-rn-runtime → package}/components/advanced/webview/webview.props.js.map +0 -0
  599. {app-rn-runtime → package}/components/advanced/webview/webview.styles.js +0 -0
  600. {app-rn-runtime → package}/components/advanced/webview/webview.styles.js.map +0 -0
  601. {app-rn-runtime → package}/components/basic/anchor/anchor.component.js.map +0 -0
  602. {app-rn-runtime → package}/components/basic/anchor/anchor.props.js.map +0 -0
  603. {app-rn-runtime → package}/components/basic/anchor/anchor.styles.js +0 -0
  604. {app-rn-runtime → package}/components/basic/anchor/anchor.styles.js.map +0 -0
  605. {app-rn-runtime → package}/components/basic/animatedview.component.js.map +0 -0
  606. {app-rn-runtime → package}/components/basic/audio/audio.component.js.map +0 -0
  607. {app-rn-runtime → package}/components/basic/audio/audio.props.js.map +0 -0
  608. {app-rn-runtime → package}/components/basic/audio/audio.styles.js +0 -0
  609. {app-rn-runtime → package}/components/basic/audio/audio.styles.js.map +0 -0
  610. {app-rn-runtime → package}/components/basic/button/button.component.js.map +0 -0
  611. {app-rn-runtime → package}/components/basic/button/button.props.js.map +0 -0
  612. {app-rn-runtime → package}/components/basic/button/button.styles.js +0 -0
  613. {app-rn-runtime → package}/components/basic/button/button.styles.js.map +0 -0
  614. {app-rn-runtime → package}/components/basic/buttongroup/buttongroup.component.js +0 -0
  615. {app-rn-runtime → package}/components/basic/buttongroup/buttongroup.component.js.map +0 -0
  616. {app-rn-runtime → package}/components/basic/buttongroup/buttongroup.props.js.map +0 -0
  617. {app-rn-runtime → package}/components/basic/buttongroup/buttongroup.styles.js +0 -0
  618. {app-rn-runtime → package}/components/basic/buttongroup/buttongroup.styles.js.map +0 -0
  619. {app-rn-runtime → package}/components/basic/custom/custom.component.js +0 -0
  620. {app-rn-runtime → package}/components/basic/custom/custom.component.js.map +0 -0
  621. {app-rn-runtime → package}/components/basic/custom/custom.props.js.map +0 -0
  622. {app-rn-runtime → package}/components/basic/custom/custom.styles.js +0 -0
  623. {app-rn-runtime → package}/components/basic/custom/custom.styles.js.map +0 -0
  624. {app-rn-runtime → package}/components/basic/icon/icon.component.js.map +0 -0
  625. {app-rn-runtime → package}/components/basic/icon/icon.props.js.map +0 -0
  626. {app-rn-runtime → package}/components/basic/icon/icon.styles.js +0 -0
  627. {app-rn-runtime → package}/components/basic/icon/icon.styles.js.map +0 -0
  628. {app-rn-runtime → package}/components/basic/icon/streamline-light-icon/streamline-light-icon.component.js +0 -0
  629. {app-rn-runtime → package}/components/basic/icon/streamline-light-icon/streamline-light-icon.component.js.map +0 -0
  630. {app-rn-runtime → package}/components/basic/icon/streamline-light-icon/streamline-light-icon.ttf +0 -0
  631. {app-rn-runtime → package}/components/basic/icon/streamline-regular-icon/streamline-regular-icon.component.js +0 -0
  632. {app-rn-runtime → package}/components/basic/icon/streamline-regular-icon/streamline-regular-icon.component.js.map +0 -0
  633. {app-rn-runtime → package}/components/basic/icon/streamline-regular-icon/streamline-regular-icon.ttf +0 -0
  634. {app-rn-runtime → package}/components/basic/icon/wavicon/wavicon.component.js +0 -0
  635. {app-rn-runtime → package}/components/basic/icon/wavicon/wavicon.component.js.map +0 -0
  636. {app-rn-runtime → package}/components/basic/icon/wavicon/wavicon.ttf +0 -0
  637. {app-rn-runtime → package}/components/basic/label/label.component.js.map +0 -0
  638. {app-rn-runtime → package}/components/basic/label/label.props.js.map +0 -0
  639. {app-rn-runtime → package}/components/basic/lottie/lottie.component.js.map +0 -0
  640. {app-rn-runtime → package}/components/basic/lottie/lottie.props.js.map +0 -0
  641. {app-rn-runtime → package}/components/basic/lottie/lottie.styles.js +0 -0
  642. {app-rn-runtime → package}/components/basic/lottie/lottie.styles.js.map +0 -0
  643. {app-rn-runtime → package}/components/basic/message/message.component.js.map +0 -0
  644. {app-rn-runtime → package}/components/basic/message/message.props.js.map +0 -0
  645. {app-rn-runtime → package}/components/basic/message/message.styles.js +0 -0
  646. {app-rn-runtime → package}/components/basic/message/message.styles.js.map +0 -0
  647. {app-rn-runtime → package}/components/basic/modal/modal.component.js +0 -0
  648. {app-rn-runtime → package}/components/basic/modal/modal.component.js.map +0 -0
  649. {app-rn-runtime → package}/components/basic/modal/modal.props.js.map +0 -0
  650. {app-rn-runtime → package}/components/basic/modal/modal.styles.js +0 -0
  651. {app-rn-runtime → package}/components/basic/modal/modal.styles.js.map +0 -0
  652. {app-rn-runtime → package}/components/basic/picture/picture.component.js.map +0 -0
  653. {app-rn-runtime → package}/components/basic/picture/picture.props.js.map +0 -0
  654. {app-rn-runtime → package}/components/basic/picture/picture.styles.js +0 -0
  655. {app-rn-runtime → package}/components/basic/picture/picture.styles.js.map +0 -0
  656. {app-rn-runtime → package}/components/basic/progress-bar/progress-bar.props.js.map +0 -0
  657. {app-rn-runtime → package}/components/basic/progress-circle/progress-circle.component.js.map +0 -0
  658. {app-rn-runtime → package}/components/basic/progress-circle/progress-circle.props.js.map +0 -0
  659. {app-rn-runtime → package}/components/basic/progress-circle/progress-circle.styles.js +0 -0
  660. {app-rn-runtime → package}/components/basic/progress-circle/progress-circle.styles.js.map +0 -0
  661. {app-rn-runtime → package}/components/basic/search/local-data-provider.js.map +0 -0
  662. {app-rn-runtime → package}/components/basic/search/search.props.js.map +0 -0
  663. {app-rn-runtime → package}/components/basic/search/search.styles.js +0 -0
  664. {app-rn-runtime → package}/components/basic/search/search.styles.js.map +0 -0
  665. {app-rn-runtime → package}/components/basic/skeleton/skeleton.component.js.map +0 -0
  666. {app-rn-runtime → package}/components/basic/skeleton/skeleton.props.js.map +0 -0
  667. {app-rn-runtime → package}/components/basic/skeleton/skeleton.styles.js +0 -0
  668. {app-rn-runtime → package}/components/basic/skeleton/skeleton.styles.js.map +0 -0
  669. {app-rn-runtime → package}/components/basic/spinner/spinner.component.js.map +0 -0
  670. {app-rn-runtime → package}/components/basic/spinner/spinner.props.js.map +0 -0
  671. {app-rn-runtime → package}/components/basic/spinner/spinner.styles.js +0 -0
  672. {app-rn-runtime → package}/components/basic/spinner/spinner.styles.js.map +0 -0
  673. {app-rn-runtime → package}/components/basic/tooltip/tooltip.component.js +0 -0
  674. {app-rn-runtime → package}/components/basic/tooltip/tooltip.component.js.map +0 -0
  675. {app-rn-runtime → package}/components/basic/tooltip/tooltip.props.js.map +0 -0
  676. {app-rn-runtime → package}/components/basic/tooltip/tooltip.styles.js +0 -0
  677. {app-rn-runtime → package}/components/basic/tooltip/tooltip.styles.js.map +0 -0
  678. {app-rn-runtime → package}/components/basic/video/video.styles.js +0 -0
  679. {app-rn-runtime → package}/components/basic/video/video.styles.js.map +0 -0
  680. {app-rn-runtime → package}/components/chart/area-chart/area-chart.component.js.map +0 -0
  681. {app-rn-runtime → package}/components/chart/area-chart/area-chart.props.js.map +0 -0
  682. {app-rn-runtime → package}/components/chart/area-chart/area-chart.styles.js +0 -0
  683. {app-rn-runtime → package}/components/chart/area-chart/area-chart.styles.js.map +0 -0
  684. {app-rn-runtime → package}/components/chart/bar-chart/bar-chart.component.js.map +0 -0
  685. {app-rn-runtime → package}/components/chart/bar-chart/bar-chart.props.js.map +0 -0
  686. {app-rn-runtime → package}/components/chart/bar-chart/bar-chart.styles.js +0 -0
  687. {app-rn-runtime → package}/components/chart/bar-chart/bar-chart.styles.js.map +0 -0
  688. {app-rn-runtime → package}/components/chart/basechart.component.js.map +0 -0
  689. {app-rn-runtime → package}/components/chart/basechart.props.js.map +0 -0
  690. {app-rn-runtime → package}/components/chart/basechart.styles.js +0 -0
  691. {app-rn-runtime → package}/components/chart/basechart.styles.js.map +0 -0
  692. {app-rn-runtime → package}/components/chart/bubble-chart/bubble-chart.component.js.map +0 -0
  693. {app-rn-runtime → package}/components/chart/bubble-chart/bubble-chart.props.js.map +0 -0
  694. {app-rn-runtime → package}/components/chart/bubble-chart/bubble-chart.styles.js +0 -0
  695. {app-rn-runtime → package}/components/chart/bubble-chart/bubble-chart.styles.js.map +0 -0
  696. {app-rn-runtime → package}/components/chart/column-chart/column-chart.component.js +0 -0
  697. {app-rn-runtime → package}/components/chart/column-chart/column-chart.component.js.map +0 -0
  698. {app-rn-runtime → package}/components/chart/column-chart/column-chart.props.js +0 -0
  699. {app-rn-runtime → package}/components/chart/column-chart/column-chart.props.js.map +0 -0
  700. {app-rn-runtime → package}/components/chart/column-chart/column-chart.styles.js +0 -0
  701. {app-rn-runtime → package}/components/chart/column-chart/column-chart.styles.js.map +0 -0
  702. {app-rn-runtime → package}/components/chart/donut-chart/donut-chart.component.js +0 -0
  703. {app-rn-runtime → package}/components/chart/donut-chart/donut-chart.component.js.map +0 -0
  704. {app-rn-runtime → package}/components/chart/donut-chart/donut-chart.props.js.map +0 -0
  705. {app-rn-runtime → package}/components/chart/donut-chart/donut-chart.styles.js +0 -0
  706. {app-rn-runtime → package}/components/chart/donut-chart/donut-chart.styles.js.map +0 -0
  707. {app-rn-runtime → package}/components/chart/legend/legend.component.js +0 -0
  708. {app-rn-runtime → package}/components/chart/legend/legend.component.js.map +0 -0
  709. {app-rn-runtime → package}/components/chart/line-chart/line-chart.component.js.map +0 -0
  710. {app-rn-runtime → package}/components/chart/line-chart/line-chart.props.js.map +0 -0
  711. {app-rn-runtime → package}/components/chart/line-chart/line-chart.styles.js +0 -0
  712. {app-rn-runtime → package}/components/chart/line-chart/line-chart.styles.js.map +0 -0
  713. {app-rn-runtime → package}/components/chart/pie-chart/pie-chart.component.js.map +0 -0
  714. {app-rn-runtime → package}/components/chart/pie-chart/pie-chart.props.js.map +0 -0
  715. {app-rn-runtime → package}/components/chart/pie-chart/pie-chart.styles.js +0 -0
  716. {app-rn-runtime → package}/components/chart/pie-chart/pie-chart.styles.js.map +0 -0
  717. {app-rn-runtime → package}/components/chart/stack-chart/stack-chart.component.js.map +0 -0
  718. {app-rn-runtime → package}/components/chart/stack-chart/stack-chart.props.js.map +0 -0
  719. {app-rn-runtime → package}/components/chart/stack-chart/stack-chart.styles.js +0 -0
  720. {app-rn-runtime → package}/components/chart/stack-chart/stack-chart.styles.js.map +0 -0
  721. {app-rn-runtime → package}/components/chart/staticdata.js +0 -0
  722. {app-rn-runtime → package}/components/chart/staticdata.js.map +0 -0
  723. {app-rn-runtime → package}/components/chart/theme/chart.theme.js +0 -0
  724. {app-rn-runtime → package}/components/chart/theme/chart.theme.js.map +0 -0
  725. {app-rn-runtime → package}/components/container/accordion/accordion.component.js.map +0 -0
  726. {app-rn-runtime → package}/components/container/accordion/accordion.props.js.map +0 -0
  727. {app-rn-runtime → package}/components/container/accordion/accordion.styles.js +0 -0
  728. {app-rn-runtime → package}/components/container/accordion/accordion.styles.js.map +0 -0
  729. {app-rn-runtime → package}/components/container/accordion/accordionpane/accordionpane.component.js.map +0 -0
  730. {app-rn-runtime → package}/components/container/accordion/accordionpane/accordionpane.props.js.map +0 -0
  731. {app-rn-runtime → package}/components/container/accordion/accordionpane/accordionpane.styles.js +0 -0
  732. {app-rn-runtime → package}/components/container/accordion/accordionpane/accordionpane.styles.js.map +0 -0
  733. {app-rn-runtime → package}/components/container/container.component.js.map +0 -0
  734. {app-rn-runtime → package}/components/container/container.props.js.map +0 -0
  735. {app-rn-runtime → package}/components/container/container.styles.js +0 -0
  736. {app-rn-runtime → package}/components/container/container.styles.js.map +0 -0
  737. {app-rn-runtime → package}/components/container/layoutgrid/gridcolumn/gridcolumn.component.js +0 -0
  738. {app-rn-runtime → package}/components/container/layoutgrid/gridcolumn/gridcolumn.component.js.map +0 -0
  739. {app-rn-runtime → package}/components/container/layoutgrid/gridcolumn/gridcolumn.props.js.map +0 -0
  740. {app-rn-runtime → package}/components/container/layoutgrid/gridcolumn/gridcolumn.styles.js +0 -0
  741. {app-rn-runtime → package}/components/container/layoutgrid/gridcolumn/gridcolumn.styles.js.map +0 -0
  742. {app-rn-runtime → package}/components/container/layoutgrid/gridrow/gridrow.component.js +0 -0
  743. {app-rn-runtime → package}/components/container/layoutgrid/gridrow/gridrow.component.js.map +0 -0
  744. {app-rn-runtime → package}/components/container/layoutgrid/gridrow/gridrow.props.js.map +0 -0
  745. {app-rn-runtime → package}/components/container/layoutgrid/gridrow/gridrow.styles.js +0 -0
  746. {app-rn-runtime → package}/components/container/layoutgrid/gridrow/gridrow.styles.js.map +0 -0
  747. {app-rn-runtime → package}/components/container/layoutgrid/layoutgrid.component.js +0 -0
  748. {app-rn-runtime → package}/components/container/layoutgrid/layoutgrid.component.js.map +0 -0
  749. {app-rn-runtime → package}/components/container/layoutgrid/layoutgrid.props.js.map +0 -0
  750. {app-rn-runtime → package}/components/container/layoutgrid/layoutgrid.styles.js +0 -0
  751. {app-rn-runtime → package}/components/container/layoutgrid/layoutgrid.styles.js.map +0 -0
  752. {app-rn-runtime → package}/components/container/linearlayout/linearlayout.component.js +0 -0
  753. {app-rn-runtime → package}/components/container/linearlayout/linearlayout.component.js.map +0 -0
  754. {app-rn-runtime → package}/components/container/linearlayout/linearlayout.props.js.map +0 -0
  755. {app-rn-runtime → package}/components/container/linearlayout/linearlayout.styles.js +0 -0
  756. {app-rn-runtime → package}/components/container/linearlayout/linearlayout.styles.js.map +0 -0
  757. {app-rn-runtime → package}/components/container/linearlayout/linearlayoutitem/linearlayoutitem.component.js +0 -0
  758. {app-rn-runtime → package}/components/container/linearlayout/linearlayoutitem/linearlayoutitem.component.js.map +0 -0
  759. {app-rn-runtime → package}/components/container/linearlayout/linearlayoutitem/linearlayoutitem.props.js.map +0 -0
  760. {app-rn-runtime → package}/components/container/linearlayout/linearlayoutitem/linearlayoutitem.styles.js +0 -0
  761. {app-rn-runtime → package}/components/container/linearlayout/linearlayoutitem/linearlayoutitem.styles.js.map +0 -0
  762. {app-rn-runtime → package}/components/container/panel/collapsible-pane.component.js +0 -0
  763. {app-rn-runtime → package}/components/container/panel/collapsible-pane.component.js.map +0 -0
  764. {app-rn-runtime → package}/components/container/panel/panel-content/panel-content.component.js +0 -0
  765. {app-rn-runtime → package}/components/container/panel/panel-content/panel-content.component.js.map +0 -0
  766. {app-rn-runtime → package}/components/container/panel/panel-content/panel-content.props.js.map +0 -0
  767. {app-rn-runtime → package}/components/container/panel/panel-content/panel-content.styles.js +0 -0
  768. {app-rn-runtime → package}/components/container/panel/panel-content/panel-content.styles.js.map +0 -0
  769. {app-rn-runtime → package}/components/container/panel/panel-footer/panel-footer.component.js +0 -0
  770. {app-rn-runtime → package}/components/container/panel/panel-footer/panel-footer.component.js.map +0 -0
  771. {app-rn-runtime → package}/components/container/panel/panel-footer/panel-footer.props.js.map +0 -0
  772. {app-rn-runtime → package}/components/container/panel/panel-footer/panel-footer.styles.js +0 -0
  773. {app-rn-runtime → package}/components/container/panel/panel-footer/panel-footer.styles.js.map +0 -0
  774. {app-rn-runtime → package}/components/container/panel/panel.props.js.map +0 -0
  775. {app-rn-runtime → package}/components/container/panel/panel.styles.js +0 -0
  776. {app-rn-runtime → package}/components/container/panel/panel.styles.js.map +0 -0
  777. {app-rn-runtime → package}/components/container/partial-host.component.js.map +0 -0
  778. {app-rn-runtime → package}/components/container/tabs/tabheader/tabheader.component.js.map +0 -0
  779. {app-rn-runtime → package}/components/container/tabs/tabheader/tabheader.props.js.map +0 -0
  780. {app-rn-runtime → package}/components/container/tabs/tabheader/tabheader.styles.js +0 -0
  781. {app-rn-runtime → package}/components/container/tabs/tabheader/tabheader.styles.js.map +0 -0
  782. {app-rn-runtime → package}/components/container/tabs/tabpane/tabpane.component.js.map +0 -0
  783. {app-rn-runtime → package}/components/container/tabs/tabpane/tabpane.props.js.map +0 -0
  784. {app-rn-runtime → package}/components/container/tabs/tabpane/tabpane.styles.js +0 -0
  785. {app-rn-runtime → package}/components/container/tabs/tabpane/tabpane.styles.js.map +0 -0
  786. {app-rn-runtime → package}/components/container/tabs/tabs.props.js.map +0 -0
  787. {app-rn-runtime → package}/components/container/tabs/tabs.styles.js +0 -0
  788. {app-rn-runtime → package}/components/container/tile/tile.component.js.map +0 -0
  789. {app-rn-runtime → package}/components/container/tile/tile.props.js.map +0 -0
  790. {app-rn-runtime → package}/components/container/tile/tile.styles.js +0 -0
  791. {app-rn-runtime → package}/components/container/tile/tile.styles.js.map +0 -0
  792. {app-rn-runtime → package}/components/container/wizard/wizard.props.js.map +0 -0
  793. {app-rn-runtime → package}/components/container/wizard/wizard.styles.js +0 -0
  794. {app-rn-runtime → package}/components/container/wizard/wizard.styles.js.map +0 -0
  795. {app-rn-runtime → package}/components/container/wizard/wizardstep/wizardstep.props.js.map +0 -0
  796. {app-rn-runtime → package}/components/container/wizard/wizardstep/wizardstep.styles.js +0 -0
  797. {app-rn-runtime → package}/components/container/wizard/wizardstep/wizardstep.styles.js.map +0 -0
  798. {app-rn-runtime → package}/components/data/card/card-content/card-content.component.js.map +0 -0
  799. {app-rn-runtime → package}/components/data/card/card-content/card-content.props.js.map +0 -0
  800. {app-rn-runtime → package}/components/data/card/card-content/card-content.styles.js +0 -0
  801. {app-rn-runtime → package}/components/data/card/card-content/card-content.styles.js.map +0 -0
  802. {app-rn-runtime → package}/components/data/card/card-footer/card-footer.component.js +0 -0
  803. {app-rn-runtime → package}/components/data/card/card-footer/card-footer.component.js.map +0 -0
  804. {app-rn-runtime → package}/components/data/card/card-footer/card-footer.props.js.map +0 -0
  805. {app-rn-runtime → package}/components/data/card/card-footer/card-footer.styles.js +0 -0
  806. {app-rn-runtime → package}/components/data/card/card-footer/card-footer.styles.js.map +0 -0
  807. {app-rn-runtime → package}/components/data/card/card.component.js.map +0 -0
  808. {app-rn-runtime → package}/components/data/card/card.props.js.map +0 -0
  809. {app-rn-runtime → package}/components/data/card/card.styles.js +0 -0
  810. {app-rn-runtime → package}/components/data/card/card.styles.js.map +0 -0
  811. {app-rn-runtime → package}/components/data/form/form-action/form-action.component.js.map +0 -0
  812. {app-rn-runtime → package}/components/data/form/form-action/form-action.props.js.map +0 -0
  813. {app-rn-runtime → package}/components/data/form/form-action/form-action.styles.js +0 -0
  814. {app-rn-runtime → package}/components/data/form/form-action/form-action.styles.js.map +0 -0
  815. {app-rn-runtime → package}/components/data/form/form-body/form-body.component.js +0 -0
  816. {app-rn-runtime → package}/components/data/form/form-body/form-body.component.js.map +0 -0
  817. {app-rn-runtime → package}/components/data/form/form-body/form-body.props.js.map +0 -0
  818. {app-rn-runtime → package}/components/data/form/form-body/form-body.styles.js +0 -0
  819. {app-rn-runtime → package}/components/data/form/form-body/form-body.styles.js.map +0 -0
  820. {app-rn-runtime → package}/components/data/form/form-field/form-field.component.js.map +0 -0
  821. {app-rn-runtime → package}/components/data/form/form-field/form-field.props.js.map +0 -0
  822. {app-rn-runtime → package}/components/data/form/form-field/form-field.styles.js +0 -0
  823. {app-rn-runtime → package}/components/data/form/form-field/form-field.styles.js.map +0 -0
  824. {app-rn-runtime → package}/components/data/form/form-footer/form-footer.component.js +0 -0
  825. {app-rn-runtime → package}/components/data/form/form-footer/form-footer.component.js.map +0 -0
  826. {app-rn-runtime → package}/components/data/form/form-footer/form-footer.props.js.map +0 -0
  827. {app-rn-runtime → package}/components/data/form/form-footer/form-footer.styles.js +0 -0
  828. {app-rn-runtime → package}/components/data/form/form-footer/form-footer.styles.js.map +0 -0
  829. {app-rn-runtime → package}/components/data/form/form.component.js.map +0 -0
  830. {app-rn-runtime → package}/components/data/form/form.props.js.map +0 -0
  831. {app-rn-runtime → package}/components/data/form/form.styles.js +0 -0
  832. {app-rn-runtime → package}/components/data/form/form.styles.js.map +0 -0
  833. {app-rn-runtime → package}/components/data/list/list-action-template/list-action-template.component.js +0 -0
  834. {app-rn-runtime → package}/components/data/list/list-action-template/list-action-template.component.js.map +0 -0
  835. {app-rn-runtime → package}/components/data/list/list-action-template/list-action-template.props.js.map +0 -0
  836. {app-rn-runtime → package}/components/data/list/list-action-template/list-action-template.styles.js +0 -0
  837. {app-rn-runtime → package}/components/data/list/list-action-template/list-action-template.styles.js.map +0 -0
  838. {app-rn-runtime → package}/components/data/list/list-template/list-template.component.js +0 -0
  839. {app-rn-runtime → package}/components/data/list/list-template/list-template.component.js.map +0 -0
  840. {app-rn-runtime → package}/components/data/list/list-template/list-template.props.js.map +0 -0
  841. {app-rn-runtime → package}/components/data/list/list-template/list-template.styles.js +0 -0
  842. {app-rn-runtime → package}/components/data/list/list-template/list-template.styles.js.map +0 -0
  843. {app-rn-runtime → package}/components/data/list/list.component.js.map +0 -0
  844. {app-rn-runtime → package}/components/data/list/list.props.js.map +0 -0
  845. {app-rn-runtime → package}/components/data/list/list.styles.js +0 -0
  846. {app-rn-runtime → package}/components/data/list/list.styles.js.map +0 -0
  847. {app-rn-runtime → package}/components/data/liveform/liveform.component.js.map +0 -0
  848. {app-rn-runtime → package}/components/device/barcodescanner/barcodescanner.component.js.map +0 -0
  849. {app-rn-runtime → package}/components/device/barcodescanner/barcodescanner.props.js.map +0 -0
  850. {app-rn-runtime → package}/components/device/barcodescanner/barcodescanner.styles.js +0 -0
  851. {app-rn-runtime → package}/components/device/barcodescanner/barcodescanner.styles.js.map +0 -0
  852. {app-rn-runtime → package}/components/device/camera/camera.component.js.map +0 -0
  853. {app-rn-runtime → package}/components/device/camera/camera.props.js.map +0 -0
  854. {app-rn-runtime → package}/components/device/camera/camera.styles.js +0 -0
  855. {app-rn-runtime → package}/components/device/camera/camera.styles.js.map +0 -0
  856. {app-rn-runtime → package}/components/dialogs/alertdialog/alertdialog.component.js.map +0 -0
  857. {app-rn-runtime → package}/components/dialogs/alertdialog/alertdialog.props.js.map +0 -0
  858. {app-rn-runtime → package}/components/dialogs/alertdialog/alertdialog.styles.js +0 -0
  859. {app-rn-runtime → package}/components/dialogs/alertdialog/alertdialog.styles.js.map +0 -0
  860. {app-rn-runtime → package}/components/dialogs/confirmdialog/confirmdialog.component.js.map +0 -0
  861. {app-rn-runtime → package}/components/dialogs/confirmdialog/confirmdialog.props.js.map +0 -0
  862. {app-rn-runtime → package}/components/dialogs/confirmdialog/confirmdialog.styles.js +0 -0
  863. {app-rn-runtime → package}/components/dialogs/confirmdialog/confirmdialog.styles.js.map +0 -0
  864. {app-rn-runtime → package}/components/dialogs/dialog/dialog.props.js.map +0 -0
  865. {app-rn-runtime → package}/components/dialogs/dialog/dialog.styles.js +0 -0
  866. {app-rn-runtime → package}/components/dialogs/dialog/dialog.styles.js.map +0 -0
  867. {app-rn-runtime → package}/components/dialogs/dialogactions/dialogactions.component.js.map +0 -0
  868. {app-rn-runtime → package}/components/dialogs/dialogactions/dialogactions.props.js.map +0 -0
  869. {app-rn-runtime → package}/components/dialogs/dialogactions/dialogactions.styles.js +0 -0
  870. {app-rn-runtime → package}/components/dialogs/dialogactions/dialogactions.styles.js.map +0 -0
  871. {app-rn-runtime → package}/components/dialogs/dialogcontent/dialogcontent.component.js +0 -0
  872. {app-rn-runtime → package}/components/dialogs/dialogcontent/dialogcontent.component.js.map +0 -0
  873. {app-rn-runtime → package}/components/dialogs/dialogcontent/dialogcontent.props.js.map +0 -0
  874. {app-rn-runtime → package}/components/dialogs/dialogcontent/dialogcontent.styles.js +0 -0
  875. {app-rn-runtime → package}/components/dialogs/dialogcontent/dialogcontent.styles.js.map +0 -0
  876. {app-rn-runtime → package}/components/input/basedataset/basedataset.component.js.map +0 -0
  877. {app-rn-runtime → package}/components/input/basedataset/basedataset.props.js.map +0 -0
  878. {app-rn-runtime → package}/components/input/basedataset/basedataset.styles.js +0 -0
  879. {app-rn-runtime → package}/components/input/basedataset/basedataset.styles.js.map +0 -0
  880. {app-rn-runtime → package}/components/input/baseinput/baseinput.component.js.map +0 -0
  881. {app-rn-runtime → package}/components/input/baseinput/baseinput.styles.js +0 -0
  882. {app-rn-runtime → package}/components/input/baseinput/baseinput.styles.js.map +0 -0
  883. {app-rn-runtime → package}/components/input/basenumber/basenumber.component.js.map +0 -0
  884. {app-rn-runtime → package}/components/input/basenumber/basenumber.props.js.map +0 -0
  885. {app-rn-runtime → package}/components/input/basenumber/basenumber.styles.js +0 -0
  886. {app-rn-runtime → package}/components/input/basenumber/basenumber.styles.js.map +0 -0
  887. {app-rn-runtime → package}/components/input/calendar/calendar.component.js.map +0 -0
  888. {app-rn-runtime → package}/components/input/calendar/calendar.props.js.map +0 -0
  889. {app-rn-runtime → package}/components/input/calendar/calendar.styles.js +0 -0
  890. {app-rn-runtime → package}/components/input/calendar/views/month-view.styles.js +0 -0
  891. {app-rn-runtime → package}/components/input/calendar/views/month-view.styles.js.map +0 -0
  892. {app-rn-runtime → package}/components/input/checkbox/checkbox.component.js.map +0 -0
  893. {app-rn-runtime → package}/components/input/checkbox/checkbox.props.js.map +0 -0
  894. {app-rn-runtime → package}/components/input/checkbox/checkbox.styles.js +0 -0
  895. {app-rn-runtime → package}/components/input/checkbox/checkbox.styles.js.map +0 -0
  896. {app-rn-runtime → package}/components/input/checkboxset/checkboxset.component.js.map +0 -0
  897. {app-rn-runtime → package}/components/input/checkboxset/checkboxset.props.js.map +0 -0
  898. {app-rn-runtime → package}/components/input/checkboxset/checkboxset.styles.js +0 -0
  899. {app-rn-runtime → package}/components/input/checkboxset/checkboxset.styles.js.map +0 -0
  900. {app-rn-runtime → package}/components/input/chips/chips.props.js.map +0 -0
  901. {app-rn-runtime → package}/components/input/chips/chips.styles.js +0 -0
  902. {app-rn-runtime → package}/components/input/chips/chips.styles.js.map +0 -0
  903. {app-rn-runtime → package}/components/input/composite/composite.component.js +0 -0
  904. {app-rn-runtime → package}/components/input/composite/composite.component.js.map +0 -0
  905. {app-rn-runtime → package}/components/input/composite/composite.props.js.map +0 -0
  906. {app-rn-runtime → package}/components/input/composite/composite.styles.js +0 -0
  907. {app-rn-runtime → package}/components/input/composite/composite.styles.js.map +0 -0
  908. {app-rn-runtime → package}/components/input/currency/currency.component.js.map +0 -0
  909. {app-rn-runtime → package}/components/input/currency/currency.props.js.map +0 -0
  910. {app-rn-runtime → package}/components/input/currency/currency.styles.js +0 -0
  911. {app-rn-runtime → package}/components/input/currency/currency.styles.js.map +0 -0
  912. {app-rn-runtime → package}/components/input/epoch/base-datetime.component.js.map +0 -0
  913. {app-rn-runtime → package}/components/input/epoch/date/date.component.js +0 -0
  914. {app-rn-runtime → package}/components/input/epoch/date/date.component.js.map +0 -0
  915. {app-rn-runtime → package}/components/input/epoch/date/date.props.js +0 -0
  916. {app-rn-runtime → package}/components/input/epoch/date/date.props.js.map +0 -0
  917. {app-rn-runtime → package}/components/input/epoch/date/date.styles.js +0 -0
  918. {app-rn-runtime → package}/components/input/epoch/date/date.styles.js.map +0 -0
  919. {app-rn-runtime → package}/components/input/epoch/datetime/datetime.component.js +0 -0
  920. {app-rn-runtime → package}/components/input/epoch/datetime/datetime.component.js.map +0 -0
  921. {app-rn-runtime → package}/components/input/epoch/datetime/datetime.props.js.map +0 -0
  922. {app-rn-runtime → package}/components/input/epoch/datetime/datetime.styles.js +0 -0
  923. {app-rn-runtime → package}/components/input/epoch/datetime/datetime.styles.js.map +0 -0
  924. {app-rn-runtime → package}/components/input/epoch/time/time.component.js +0 -0
  925. {app-rn-runtime → package}/components/input/epoch/time/time.component.js.map +0 -0
  926. {app-rn-runtime → package}/components/input/epoch/time/time.props.js.map +0 -0
  927. {app-rn-runtime → package}/components/input/epoch/time/time.styles.js +0 -0
  928. {app-rn-runtime → package}/components/input/epoch/time/time.styles.js.map +0 -0
  929. {app-rn-runtime → package}/components/input/epoch/wheel-date-picker.component.js.map +0 -0
  930. {app-rn-runtime → package}/components/input/epoch/wheel-time-picker.component.js.map +0 -0
  931. {app-rn-runtime → package}/components/input/epoch/wheelpicker/wheelpicker.component.js.map +0 -0
  932. {app-rn-runtime → package}/components/input/epoch/wheelpicker/wheelpicker.props.js.map +0 -0
  933. {app-rn-runtime → package}/components/input/epoch/wheelpicker/wheelpicker.styles.js +0 -0
  934. {app-rn-runtime → package}/components/input/epoch/wheelpicker/wheelpicker.styles.js.map +0 -0
  935. {app-rn-runtime → package}/components/input/epoch/wheelpickermodal/date/date-picker-modal.component.js.map +0 -0
  936. {app-rn-runtime → package}/components/input/epoch/wheelpickermodal/date/date-picker-modal.props.js.map +0 -0
  937. {app-rn-runtime → package}/components/input/epoch/wheelpickermodal/styles/datetime-picker-modal.styles.js +0 -0
  938. {app-rn-runtime → package}/components/input/epoch/wheelpickermodal/styles/datetime-picker-modal.styles.js.map +0 -0
  939. {app-rn-runtime → package}/components/input/epoch/wheelpickermodal/time/time-picker-modal.component.js.map +0 -0
  940. {app-rn-runtime → package}/components/input/epoch/wheelpickermodal/time/time-picker-modal.props.js.map +0 -0
  941. {app-rn-runtime → package}/components/input/fileupload/fileupload.component.js.map +0 -0
  942. {app-rn-runtime → package}/components/input/fileupload/fileupload.props.js.map +0 -0
  943. {app-rn-runtime → package}/components/input/fileupload/fileupload.styles.js +0 -0
  944. {app-rn-runtime → package}/components/input/fileupload/fileupload.styles.js.map +0 -0
  945. {app-rn-runtime → package}/components/input/number/number.component.js.map +0 -0
  946. {app-rn-runtime → package}/components/input/number/number.props.js.map +0 -0
  947. {app-rn-runtime → package}/components/input/number/number.styles.js +0 -0
  948. {app-rn-runtime → package}/components/input/number/number.styles.js.map +0 -0
  949. {app-rn-runtime → package}/components/input/radioset/radioset.component.js.map +0 -0
  950. {app-rn-runtime → package}/components/input/radioset/radioset.props.js.map +0 -0
  951. {app-rn-runtime → package}/components/input/radioset/radioset.styles.js +0 -0
  952. {app-rn-runtime → package}/components/input/radioset/radioset.styles.js.map +0 -0
  953. {app-rn-runtime → package}/components/input/rating/rating.component.js.map +0 -0
  954. {app-rn-runtime → package}/components/input/rating/rating.props.js.map +0 -0
  955. {app-rn-runtime → package}/components/input/rating/rating.styles.js +0 -0
  956. {app-rn-runtime → package}/components/input/rating/rating.styles.js.map +0 -0
  957. {app-rn-runtime → package}/components/input/select/select.props.js.map +0 -0
  958. {app-rn-runtime → package}/components/input/slider/slider.component.js.map +0 -0
  959. {app-rn-runtime → package}/components/input/slider/slider.props.js.map +0 -0
  960. {app-rn-runtime → package}/components/input/slider/slider.styles.js +0 -0
  961. {app-rn-runtime → package}/components/input/slider/slider.styles.js.map +0 -0
  962. {app-rn-runtime → package}/components/input/switch/switch.component.js.map +0 -0
  963. {app-rn-runtime → package}/components/input/switch/switch.props.js.map +0 -0
  964. {app-rn-runtime → package}/components/input/switch/switch.styles.js +0 -0
  965. {app-rn-runtime → package}/components/input/switch/switch.styles.js.map +0 -0
  966. {app-rn-runtime → package}/components/input/text/text.props.js.map +0 -0
  967. {app-rn-runtime → package}/components/input/text/text.styles.js +0 -0
  968. {app-rn-runtime → package}/components/input/text/text.styles.js.map +0 -0
  969. {app-rn-runtime → package}/components/input/textarea/textarea.component.js.map +0 -0
  970. {app-rn-runtime → package}/components/input/textarea/textarea.props.js.map +0 -0
  971. {app-rn-runtime → package}/components/input/textarea/textarea.styles.js +0 -0
  972. {app-rn-runtime → package}/components/input/textarea/textarea.styles.js.map +0 -0
  973. {app-rn-runtime → package}/components/input/toggle/toggle.props.js.map +0 -0
  974. {app-rn-runtime → package}/components/input/toggle/toggle.styles.js +0 -0
  975. {app-rn-runtime → package}/components/input/toggle/toggle.styles.js.map +0 -0
  976. {app-rn-runtime → package}/components/navigation/appnavbar/appnavbar.component.js.map +0 -0
  977. {app-rn-runtime → package}/components/navigation/appnavbar/appnavbar.props.js.map +0 -0
  978. {app-rn-runtime → package}/components/navigation/appnavbar/appnavbar.styles.js +0 -0
  979. {app-rn-runtime → package}/components/navigation/appnavbar/appnavbar.styles.js.map +0 -0
  980. {app-rn-runtime → package}/components/navigation/basenav/basenav.component.js.map +0 -0
  981. {app-rn-runtime → package}/components/navigation/basenav/basenav.props.js.map +0 -0
  982. {app-rn-runtime → package}/components/navigation/basenav/basenav.styles.js +0 -0
  983. {app-rn-runtime → package}/components/navigation/basenav/basenav.styles.js.map +0 -0
  984. {app-rn-runtime → package}/components/navigation/menu/menu.props.js.map +0 -0
  985. {app-rn-runtime → package}/components/navigation/navbar/navbar.component.js +0 -0
  986. {app-rn-runtime → package}/components/navigation/navbar/navbar.component.js.map +0 -0
  987. {app-rn-runtime → package}/components/navigation/navbar/navbar.props.js.map +0 -0
  988. {app-rn-runtime → package}/components/navigation/navbar/navbar.styles.js +0 -0
  989. {app-rn-runtime → package}/components/navigation/navbar/navbar.styles.js.map +0 -0
  990. {app-rn-runtime → package}/components/navigation/navitem/navitem.component.js.map +0 -0
  991. {app-rn-runtime → package}/components/navigation/navitem/navitem.props.js.map +0 -0
  992. {app-rn-runtime → package}/components/navigation/navitem/navitem.styles.js +0 -0
  993. {app-rn-runtime → package}/components/navigation/navitem/navitem.styles.js.map +0 -0
  994. {app-rn-runtime → package}/components/navigation/popover/popover.props.js.map +0 -0
  995. {app-rn-runtime → package}/components/navigation/popover/popover.styles.js +0 -0
  996. {app-rn-runtime → package}/components/navigation/popover/popover.styles.js.map +0 -0
  997. {app-rn-runtime → package}/components/page/content/content.component.js +0 -0
  998. {app-rn-runtime → package}/components/page/content/content.component.js.map +0 -0
  999. {app-rn-runtime → package}/components/page/content/content.props.js +0 -0
  1000. {app-rn-runtime → package}/components/page/content/content.props.js.map +0 -0
  1001. {app-rn-runtime → package}/components/page/content/content.styles.js +0 -0
  1002. {app-rn-runtime → package}/components/page/content/content.styles.js.map +0 -0
  1003. {app-rn-runtime → package}/components/page/left-panel/left-panel.component.js.map +0 -0
  1004. {app-rn-runtime → package}/components/page/left-panel/left-panel.props.js.map +0 -0
  1005. {app-rn-runtime → package}/components/page/left-panel/left-panel.styles.js +0 -0
  1006. {app-rn-runtime → package}/components/page/left-panel/left-panel.styles.js.map +0 -0
  1007. {app-rn-runtime → package}/components/page/page-content/page-content.props.js.map +0 -0
  1008. {app-rn-runtime → package}/components/page/page-content/page-content.styles.js +0 -0
  1009. {app-rn-runtime → package}/components/page/page-content/page-content.styles.js.map +0 -0
  1010. {app-rn-runtime → package}/components/page/page.component.js.map +0 -0
  1011. {app-rn-runtime → package}/components/page/page.props.js +0 -0
  1012. {app-rn-runtime → package}/components/page/page.props.js.map +0 -0
  1013. {app-rn-runtime → package}/components/page/page.styles.js +0 -0
  1014. {app-rn-runtime → package}/components/page/page.styles.js.map +0 -0
  1015. {app-rn-runtime → package}/components/page/partial/partial.component.js +0 -0
  1016. {app-rn-runtime → package}/components/page/partial/partial.component.js.map +0 -0
  1017. {app-rn-runtime → package}/components/page/partial/partial.props.js +0 -0
  1018. {app-rn-runtime → package}/components/page/partial/partial.props.js.map +0 -0
  1019. {app-rn-runtime → package}/components/page/partial/partial.styles.js +0 -0
  1020. {app-rn-runtime → package}/components/page/partial/partial.styles.js.map +0 -0
  1021. {app-rn-runtime → package}/components/page/partial-container/partial-container.component.js +0 -0
  1022. {app-rn-runtime → package}/components/page/partial-container/partial-container.component.js.map +0 -0
  1023. {app-rn-runtime → package}/components/page/partial-container/partial-container.props.js.map +0 -0
  1024. {app-rn-runtime → package}/components/page/partial-container/partial-container.styles.js +0 -0
  1025. {app-rn-runtime → package}/components/page/partial-container/partial-container.styles.js.map +0 -0
  1026. {app-rn-runtime → package}/components/page/tabbar/curve.js +0 -0
  1027. {app-rn-runtime → package}/components/page/tabbar/curve.js.map +0 -0
  1028. {app-rn-runtime → package}/components/page/tabbar/tabbar.props.js.map +0 -0
  1029. {app-rn-runtime → package}/components/page/tabbar/tabbar.styles.js +0 -0
  1030. {app-rn-runtime → package}/components/page/tabbar/tabbar.styles.js.map +0 -0
  1031. {app-rn-runtime → package}/components/prefab/prefab-container.component.js +0 -0
  1032. {app-rn-runtime → package}/components/prefab/prefab-container.component.js.map +0 -0
  1033. {app-rn-runtime → package}/components/prefab/prefab-container.props.js +0 -0
  1034. {app-rn-runtime → package}/components/prefab/prefab-container.props.js.map +0 -0
  1035. {app-rn-runtime → package}/components/prefab/prefab-container.styles.js +0 -0
  1036. {app-rn-runtime → package}/components/prefab/prefab-container.styles.js.map +0 -0
  1037. {app-rn-runtime → package}/core/AppConfig.js +0 -0
  1038. {app-rn-runtime → package}/core/asset.provider.js +0 -0
  1039. {app-rn-runtime → package}/core/asset.provider.js.map +0 -0
  1040. {app-rn-runtime → package}/core/components/floatinglabel.component.js +0 -0
  1041. {app-rn-runtime → package}/core/components/floatinglabel.component.js.map +0 -0
  1042. {app-rn-runtime → package}/core/components/textinput.component.js.map +0 -0
  1043. {app-rn-runtime → package}/core/constant.service.js.map +0 -0
  1044. {app-rn-runtime → package}/core/constants/currency-constants.js +0 -0
  1045. {app-rn-runtime → package}/core/constants/currency-constants.js.map +0 -0
  1046. {app-rn-runtime → package}/core/currency-constants.js +0 -0
  1047. {app-rn-runtime → package}/core/currency-constants.js.map +0 -0
  1048. {app-rn-runtime → package}/core/device/calendar-service.js +0 -0
  1049. {app-rn-runtime → package}/core/device/calendar-service.js.map +0 -0
  1050. {app-rn-runtime → package}/core/device/camera-service.js +0 -0
  1051. {app-rn-runtime → package}/core/device/camera-service.js.map +0 -0
  1052. {app-rn-runtime → package}/core/device/contacts-service.js +0 -0
  1053. {app-rn-runtime → package}/core/device/contacts-service.js.map +0 -0
  1054. {app-rn-runtime → package}/core/device/location-service.js +0 -0
  1055. {app-rn-runtime → package}/core/device/location-service.js.map +0 -0
  1056. {app-rn-runtime → package}/core/device/scan-service.js +0 -0
  1057. {app-rn-runtime → package}/core/device/scan-service.js.map +0 -0
  1058. {app-rn-runtime → package}/core/display.manager.js +0 -0
  1059. {app-rn-runtime → package}/core/display.manager.js.map +0 -0
  1060. {app-rn-runtime → package}/core/event-notifier.js.map +0 -0
  1061. {app-rn-runtime → package}/core/file-extension-types.js +0 -0
  1062. {app-rn-runtime → package}/core/file-extension-types.js.map +0 -0
  1063. {app-rn-runtime → package}/core/fixed-view.component.js.map +0 -0
  1064. {app-rn-runtime → package}/core/formatters.js +0 -0
  1065. {app-rn-runtime → package}/core/formatters.js.map +0 -0
  1066. {app-rn-runtime → package}/core/i18n.service.js +0 -0
  1067. {app-rn-runtime → package}/core/i18n.service.js.map +0 -0
  1068. {app-rn-runtime → package}/core/if.component.js +0 -0
  1069. {app-rn-runtime → package}/core/if.component.js.map +0 -0
  1070. {app-rn-runtime → package}/core/imageSizeEstimator.js.map +0 -0
  1071. {app-rn-runtime → package}/core/injector.js +0 -0
  1072. {app-rn-runtime → package}/core/injector.js.map +0 -0
  1073. {app-rn-runtime → package}/core/key.extractor.js.map +0 -0
  1074. {app-rn-runtime → package}/core/logger.js.map +0 -0
  1075. {app-rn-runtime → package}/core/modal.service.js +0 -0
  1076. {app-rn-runtime → package}/core/modal.service.js.map +0 -0
  1077. {app-rn-runtime → package}/core/navigation.service.js +0 -0
  1078. {app-rn-runtime → package}/core/navigation.service.js.map +0 -0
  1079. {app-rn-runtime → package}/core/network.service.js.map +0 -0
  1080. {app-rn-runtime → package}/core/partial.service.js +0 -0
  1081. {app-rn-runtime → package}/core/partial.service.js.map +0 -0
  1082. {app-rn-runtime → package}/core/props.provider.js.map +0 -0
  1083. {app-rn-runtime → package}/core/scroll-view.component.js.map +0 -0
  1084. {app-rn-runtime → package}/core/security.service.js +0 -0
  1085. {app-rn-runtime → package}/core/security.service.js.map +0 -0
  1086. {app-rn-runtime → package}/core/spinner.service.js +0 -0
  1087. {app-rn-runtime → package}/core/spinner.service.js.map +0 -0
  1088. {app-rn-runtime → package}/core/storage.service.js.map +0 -0
  1089. {app-rn-runtime → package}/core/tappable.component.js.map +0 -0
  1090. {app-rn-runtime → package}/core/testid.provider.js +0 -0
  1091. {app-rn-runtime → package}/core/testid.provider.js.map +0 -0
  1092. {app-rn-runtime → package}/core/toast.service.js +0 -0
  1093. {app-rn-runtime → package}/core/toast.service.js.map +0 -0
  1094. {app-rn-runtime → package}/core/ui-preferences.context.js +0 -0
  1095. {app-rn-runtime → package}/core/ui-preferences.context.js.map +0 -0
  1096. {app-rn-runtime → package}/core/viewport.js.map +0 -0
  1097. {app-rn-runtime → package}/core/wm-component-tree.js.map +0 -0
  1098. {app-rn-runtime → package}/gestures/swipe.animation.js.map +0 -0
  1099. {app-rn-runtime → package}/index.js +0 -0
  1100. {app-rn-runtime → package}/index.js.map +0 -0
  1101. {app-rn-runtime → package}/runtime/App.navigator.js +0 -0
  1102. {app-rn-runtime → package}/runtime/App.navigator.js.map +0 -0
  1103. {app-rn-runtime → package}/runtime/base-partial.component.js.map +0 -0
  1104. {app-rn-runtime → package}/runtime/base-prefab.component.js.map +0 -0
  1105. {app-rn-runtime → package}/runtime/lib-patch.js +0 -0
  1106. {app-rn-runtime → package}/runtime/lib-patch.js.map +0 -0
  1107. {app-rn-runtime → package}/runtime/memo.component.js.map +0 -0
  1108. {app-rn-runtime → package}/runtime/navigator/drawer.navigator.js +0 -0
  1109. {app-rn-runtime → package}/runtime/navigator/drawer.navigator.js.map +0 -0
  1110. {app-rn-runtime → package}/runtime/navigator/stack.navigator.js.map +0 -0
  1111. {app-rn-runtime → package}/runtime/platform.api.js +0 -0
  1112. {app-rn-runtime → package}/runtime/platform.api.js.map +0 -0
  1113. {app-rn-runtime → package}/runtime/services/app-display-manager.service.js.map +0 -0
  1114. {app-rn-runtime → package}/runtime/services/app-i18n.service.js.map +0 -0
  1115. {app-rn-runtime → package}/runtime/services/app-modal.service.js.map +0 -0
  1116. {app-rn-runtime → package}/runtime/services/app-security.service.js.map +0 -0
  1117. {app-rn-runtime → package}/runtime/services/app-spinner.service.js.map +0 -0
  1118. {app-rn-runtime → package}/runtime/services/app-toast.service.js.map +0 -0
  1119. {app-rn-runtime → package}/runtime/services/device/calendar-service.js +0 -0
  1120. {app-rn-runtime → package}/runtime/services/device/calendar-service.js.map +0 -0
  1121. {app-rn-runtime → package}/runtime/services/device/contacts-service.js +0 -0
  1122. {app-rn-runtime → package}/runtime/services/device/contacts-service.js.map +0 -0
  1123. {app-rn-runtime → package}/runtime/services/device/location-service.js +0 -0
  1124. {app-rn-runtime → package}/runtime/services/device/location-service.js.map +0 -0
  1125. {app-rn-runtime → package}/runtime/services/partial.service.js +0 -0
  1126. {app-rn-runtime → package}/runtime/services/partial.service.js.map +0 -0
  1127. {app-rn-runtime → package}/runtime/services/webprocess.service.js.map +0 -0
  1128. {app-rn-runtime → package}/runtime/watcher.js.map +0 -0
  1129. {app-rn-runtime → package}/styles/MediaQueryList.js +0 -0
  1130. {app-rn-runtime → package}/styles/MediaQueryList.js.map +0 -0
  1131. {app-rn-runtime → package}/styles/style-prop.validator.js +0 -0
  1132. {app-rn-runtime → package}/styles/style-prop.validator.js.map +0 -0
  1133. {app-rn-runtime → package}/styles/style-props.js.map +0 -0
  1134. {app-rn-runtime → package}/styles/theme.variables.js.map +0 -0
  1135. {app-rn-runtime → package}/variables/base-variable.js.map +0 -0
  1136. {app-rn-runtime → package}/variables/device/calendar/create-event.operation.js +0 -0
  1137. {app-rn-runtime → package}/variables/device/calendar/create-event.operation.js.map +0 -0
  1138. {app-rn-runtime → package}/variables/device/calendar/delete-event.operation.js +0 -0
  1139. {app-rn-runtime → package}/variables/device/calendar/delete-event.operation.js.map +0 -0
  1140. {app-rn-runtime → package}/variables/device/calendar/get-events.operation.js +0 -0
  1141. {app-rn-runtime → package}/variables/device/calendar/get-events.operation.js.map +0 -0
  1142. {app-rn-runtime → package}/variables/device/camera/capture-image.operation.js +0 -0
  1143. {app-rn-runtime → package}/variables/device/camera/capture-image.operation.js.map +0 -0
  1144. {app-rn-runtime → package}/variables/device/camera/capture-video.operation.js +0 -0
  1145. {app-rn-runtime → package}/variables/device/camera/capture-video.operation.js.map +0 -0
  1146. {app-rn-runtime → package}/variables/device/contacts/get-contacts.operation.js +0 -0
  1147. {app-rn-runtime → package}/variables/device/contacts/get-contacts.operation.js.map +0 -0
  1148. {app-rn-runtime → package}/variables/device/device/app-info.operation.js +0 -0
  1149. {app-rn-runtime → package}/variables/device/device/app-info.operation.js.map +0 -0
  1150. {app-rn-runtime → package}/variables/device/device/current-geo-position.operation.js +0 -0
  1151. {app-rn-runtime → package}/variables/device/device/current-geo-position.operation.js.map +0 -0
  1152. {app-rn-runtime → package}/variables/device/device/device-info.operation.js +0 -0
  1153. {app-rn-runtime → package}/variables/device/device/device-info.operation.js.map +0 -0
  1154. {app-rn-runtime → package}/variables/device/device/network-info.operation.js.map +0 -0
  1155. {app-rn-runtime → package}/variables/device/device/vibrate.operation.js +0 -0
  1156. {app-rn-runtime → package}/variables/device/device/vibrate.operation.js.map +0 -0
  1157. {app-rn-runtime → package}/variables/device/file/upload-file.operation.js +0 -0
  1158. {app-rn-runtime → package}/variables/device/file/upload-file.operation.js.map +0 -0
  1159. {app-rn-runtime → package}/variables/device/operation.provider.js +0 -0
  1160. {app-rn-runtime → package}/variables/device/operation.provider.js.map +0 -0
  1161. {app-rn-runtime → package}/variables/device/scan/scan.operation.js +0 -0
  1162. {app-rn-runtime → package}/variables/device/scan/scan.operation.js.map +0 -0
  1163. {app-rn-runtime → package}/variables/device-variable.js +0 -0
  1164. {app-rn-runtime → package}/variables/device-variable.js.map +0 -0
  1165. {app-rn-runtime → package}/variables/http.service.js +0 -0
  1166. {app-rn-runtime → package}/variables/http.service.js.map +0 -0
  1167. {app-rn-runtime → package}/variables/live-variable.js.map +0 -0
  1168. {app-rn-runtime → package}/variables/model-variable.js.map +0 -0
  1169. {app-rn-runtime → package}/variables/service-variable.js.map +0 -0
  1170. {app-rn-runtime → package}/variables/utils/dataset-util.js +0 -0
  1171. {app-rn-runtime → package}/variables/utils/dataset-util.js.map +0 -0
  1172. {app-rn-runtime → package}/variables/utils/inflight-queue.js.map +0 -0
  1173. {app-rn-runtime → package}/variables/utils/variable.constants.js +0 -0
  1174. {app-rn-runtime → package}/variables/utils/variable.constants.js.map +0 -0
  1175. {app-rn-runtime → package}/variables/utils/variable.utils.js +0 -0
  1176. {app-rn-runtime → package}/variables/utils/variable.utils.js.map +0 -0
@@ -1,349 +0,0 @@
1
- function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
2
- function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
3
- function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
4
- function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
5
- import React from "react";
6
- import { ImageBackground, Platform, TouchableOpacity, View } from "react-native";
7
- import { Ionicons } from "@expo/vector-icons";
8
- import { ResizeMode, Video } from "expo-av";
9
- import { Camera, CameraType } from "expo-camera";
10
- import * as FileSystem from "expo-file-system";
11
- import permissionManager from '@wavemaker/app-rn-runtime/runtime/services/device/permissions';
12
- import appDisplayManagerService from "@wavemaker/app-rn-runtime/runtime/services/app-display-manager.service";
13
- const styles = {
14
- preview: {
15
- top: 0,
16
- left: 0,
17
- right: 0,
18
- flexGrow: 1,
19
- backgroundColor: 'black'
20
- },
21
- actionBtn: {
22
- flex: 0,
23
- padding: 15,
24
- paddingHorizontal: 20,
25
- alignSelf: 'center',
26
- margin: 20
27
- },
28
- actionBar: {
29
- flex: 0,
30
- flexDirection: 'row',
31
- justifyContent: 'center',
32
- backgroundColor: 'rgba(0,0,0,0.6)',
33
- position: 'absolute',
34
- bottom: 0,
35
- left: 0,
36
- right: 0,
37
- padding: 20
38
- },
39
- leftWrapper: {
40
- flex: 1,
41
- justifyContent: 'center',
42
- alignItems: 'flex-start'
43
- },
44
- midWrapper: {
45
- flex: 1,
46
- justifyContent: 'center',
47
- alignItems: 'center'
48
- },
49
- rightWrapper: {
50
- flex: 1,
51
- justifyContent: 'center',
52
- alignItems: 'flex-end'
53
- },
54
- circle: {
55
- display: 'flex',
56
- justifyContent: 'center',
57
- alignItems: 'center'
58
- },
59
- outerCircle: {
60
- borderWidth: 3,
61
- height: 50,
62
- width: 50,
63
- borderRadius: 25,
64
- borderColor: 'white'
65
- },
66
- innerCircle: {
67
- borderRadius: 2,
68
- height: 20,
69
- width: 20,
70
- backgroundColor: 'red'
71
- }
72
- };
73
- export class CameraService {
74
- constructor(displayManager) {
75
- this.displayManager = displayManager;
76
- _defineProperty(this, "type", CameraType.back);
77
- }
78
- captureVideo(options) {
79
- return new Promise((resolve, reject) => {
80
- permissionManager.requestPermissions('video').then(() => {
81
- const destroy = this.displayManager.show({
82
- content: /*#__PURE__*/React.createElement(CameraView, {
83
- testID: "camera_view",
84
- type: this.type,
85
- captureType: 'video',
86
- onSuccess: o => {
87
- destroy.call(this.displayManager);
88
- /*o.content().catch(() => {}).then(base64 => {
89
- resolve({videoPath: o.uri, content: base64 || ''});
90
- });*/
91
- resolve({
92
- videoPath: o.uri,
93
- content: ''
94
- });
95
- },
96
- onCancel: () => {
97
- destroy.call(this.displayManager);
98
- }
99
- })
100
- });
101
- }, reject);
102
- });
103
- }
104
- captureImage(params) {
105
- return new Promise((resolve, reject) => {
106
- permissionManager.requestPermissions('image').then(() => {
107
- const destroy = this.displayManager.show({
108
- content: /*#__PURE__*/React.createElement(CameraView, {
109
- testID: "camera_view",
110
- type: this.type,
111
- captureType: 'image',
112
- onSuccess: o => {
113
- destroy.call(this.displayManager);
114
- o.content().catch(() => {}).then(base64 => {
115
- resolve({
116
- imagePath: o.uri,
117
- content: base64 || ''
118
- });
119
- });
120
- },
121
- onCancel: () => {
122
- destroy.call(this.displayManager);
123
- }
124
- })
125
- });
126
- }, reject);
127
- });
128
- }
129
- }
130
- class CameraViewProps {
131
- constructor() {
132
- _defineProperty(this, "testID", 'camera_view');
133
- _defineProperty(this, "type", 'back');
134
- _defineProperty(this, "captureType", 'image');
135
- _defineProperty(this, "onSuccess", () => {});
136
- _defineProperty(this, "onCancel", () => {});
137
- }
138
- }
139
- class CameraViewState {
140
- constructor() {
141
- _defineProperty(this, "recording", false);
142
- _defineProperty(this, "showActionBtns", false);
143
- _defineProperty(this, "cameraType", CameraType.back);
144
- _defineProperty(this, "isCaptured", false);
145
- _defineProperty(this, "closeView", false);
146
- _defineProperty(this, "cameraContent", {});
147
- }
148
- }
149
- export class CameraView extends React.Component {
150
- constructor(props) {
151
- super(props);
152
- _defineProperty(this, "camera", {});
153
- // start recording
154
- _defineProperty(this, "startRecord", async () => {
155
- this.camera.recordAsync().then(response => {
156
- response.content = async () => {
157
- return await FileSystem.readAsStringAsync(response.uri, {
158
- encoding: 'base64'
159
- });
160
- };
161
- this.setState({
162
- cameraContent: response,
163
- isCaptured: true
164
- });
165
- });
166
- if (this.state.showActionBtns) {
167
- this.setState({
168
- showActionBtns: false
169
- });
170
- }
171
- this.setState({
172
- recording: true
173
- });
174
- });
175
- // stop recording
176
- _defineProperty(this, "stopRecord", async () => {
177
- this.camera.stopRecording();
178
- this.setState({
179
- recording: false
180
- });
181
- this.setState({
182
- showActionBtns: true
183
- });
184
- });
185
- this.state = new CameraViewState();
186
- }
187
- toggleCapture() {
188
- if (this.props.captureType === 'image') {
189
- this.takePicture();
190
- } else {
191
- if (!this.state.recording) {
192
- this.startRecord();
193
- } else {
194
- this.stopRecord();
195
- this.setState({
196
- showActionBtns: true
197
- });
198
- }
199
- }
200
- }
201
- getTestProps(suffix) {
202
- const id = this.props.testID + (suffix ? '_' + suffix : '');
203
- if (Platform.OS === 'android' || Platform.OS === 'web') {
204
- return {
205
- accessibilityLabel: id,
206
- testID: id
207
- };
208
- }
209
- return {
210
- accessible: false,
211
- testID: id
212
- };
213
- }
214
- async takePicture() {
215
- const options = {
216
- quality: 0.5,
217
- base64: false,
218
- skipProcessing: true,
219
- onPictureSaved: response => {
220
- response.content = async () => {
221
- return await FileSystem.readAsStringAsync(response.uri, {
222
- encoding: 'base64'
223
- });
224
- };
225
- this.setState({
226
- cameraContent: response,
227
- isCaptured: true,
228
- showActionBtns: true
229
- });
230
- }
231
- };
232
- await this.camera.takePictureAsync(options);
233
- if (this.state.showActionBtns) {
234
- this.setState({
235
- showActionBtns: false
236
- });
237
- }
238
- this.setState({
239
- showActionBtns: true
240
- });
241
- }
242
- getActionsTemplate() {
243
- return /*#__PURE__*/React.createElement(View, {
244
- style: styles.actionBar
245
- }, /*#__PURE__*/React.createElement(View, {
246
- style: styles.leftWrapper
247
- }, /*#__PURE__*/React.createElement(TouchableOpacity, _extends({}, this.getTestProps('close'), {
248
- onPress: () => {
249
- this.setState({
250
- cameraContent: {
251
- uri: ''
252
- },
253
- isCaptured: false,
254
- closeView: true
255
- });
256
- this.props.onCancel();
257
- }
258
- }), /*#__PURE__*/React.createElement(Ionicons, {
259
- name: "close-circle",
260
- size: 32,
261
- color: "white"
262
- }))), /*#__PURE__*/React.createElement(View, {
263
- style: styles.midWrapper
264
- }, !this.state.isCaptured ? /*#__PURE__*/React.createElement(TouchableOpacity, _extends({
265
- style: [styles.circle, styles.outerCircle, this.props.captureType === 'video' && !this.state.recording ? {
266
- backgroundColor: "red"
267
- } : {}, this.props.captureType === 'image' ? {
268
- backgroundColor: "white"
269
- } : {}],
270
- onPress: this.toggleCapture.bind(this)
271
- }, this.getTestProps('capture')), /*#__PURE__*/React.createElement(View, {
272
- style: [styles.circle, this.props.captureType === 'image' ? {} : styles.innerCircle, this.props.captureType === 'image' ? {
273
- backgroundColor: "white"
274
- } : {}]
275
- })) : null), /*#__PURE__*/React.createElement(View, {
276
- style: styles.rightWrapper
277
- }, this.state.showActionBtns ? /*#__PURE__*/React.createElement(TouchableOpacity, _extends({
278
- onPress: () => {
279
- this.setState({
280
- isCaptured: false,
281
- closeView: true
282
- });
283
- this.props.onSuccess(this.state.cameraContent);
284
- this.setState({
285
- cameraContent: {
286
- uri: ''
287
- }
288
- });
289
- }
290
- }, this.getTestProps('ok')), /*#__PURE__*/React.createElement(Ionicons, {
291
- name: "checkmark-circle",
292
- size: 32,
293
- color: "white"
294
- })) : /*#__PURE__*/React.createElement(TouchableOpacity, _extends({}, this.getTestProps('toggle'), {
295
- onPress: () => {
296
- this.setState({
297
- cameraType: this.state.cameraType === 'back' ? 'front' : 'back'
298
- });
299
- }
300
- }), /*#__PURE__*/React.createElement(Ionicons, {
301
- name: "camera-reverse",
302
- size: 32,
303
- color: "white"
304
- }))));
305
- }
306
- getPreviewTemplate(actions) {
307
- return this.props.captureType === 'image' ? /*#__PURE__*/React.createElement(ImageBackground, {
308
- source: {
309
- uri: this.state.cameraContent.uri
310
- },
311
- resizeMode: ResizeMode.CONTAIN,
312
- style: {
313
- flex: 1
314
- }
315
- }) : /*#__PURE__*/React.createElement(Video, {
316
- style: {
317
- flex: 1
318
- },
319
- source: {
320
- uri: this.state.cameraContent.uri
321
- },
322
- shouldPlay: true,
323
- useNativeControls: true,
324
- isLooping: true,
325
- resizeMode: ResizeMode.CONTAIN
326
- });
327
- }
328
- render() {
329
- if (this.state.closeView) {
330
- return null;
331
- }
332
- const actions = this.getActionsTemplate();
333
- return /*#__PURE__*/React.createElement(View, {
334
- style: styles.preview
335
- }, this.state.isCaptured ? this.getPreviewTemplate(actions) : /*#__PURE__*/React.createElement(Camera, {
336
- type: CameraType[this.state.cameraType],
337
- ref: ref => {
338
- this.camera = ref;
339
- },
340
- style: {
341
- flex: 1
342
- },
343
- onCameraReady: () => {}
344
- }), actions);
345
- }
346
- }
347
- const cameraService = new CameraService(appDisplayManagerService);
348
- export default cameraService;
349
- //# sourceMappingURL=camera-service.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":["React","ImageBackground","Platform","TouchableOpacity","View","Ionicons","ResizeMode","Video","Camera","CameraType","FileSystem","permissionManager","appDisplayManagerService","styles","preview","top","left","right","flexGrow","backgroundColor","actionBtn","flex","padding","paddingHorizontal","alignSelf","margin","actionBar","flexDirection","justifyContent","position","bottom","leftWrapper","alignItems","midWrapper","rightWrapper","circle","display","outerCircle","borderWidth","height","width","borderRadius","borderColor","innerCircle","CameraService","constructor","displayManager","_defineProperty","back","captureVideo","options","Promise","resolve","reject","requestPermissions","then","destroy","show","content","createElement","CameraView","testID","type","captureType","onSuccess","o","call","videoPath","uri","onCancel","captureImage","params","catch","base64","imagePath","CameraViewProps","CameraViewState","Component","props","camera","recordAsync","response","readAsStringAsync","encoding","setState","cameraContent","isCaptured","state","showActionBtns","recording","stopRecording","toggleCapture","takePicture","startRecord","stopRecord","getTestProps","suffix","id","OS","accessibilityLabel","accessible","quality","skipProcessing","onPictureSaved","takePictureAsync","getActionsTemplate","style","_extends","onPress","closeView","name","size","color","bind","cameraType","getPreviewTemplate","actions","source","resizeMode","CONTAIN","shouldPlay","useNativeControls","isLooping","render","ref","onCameraReady","cameraService"],"sources":["camera-service.tsx"],"sourcesContent":["import React from \"react\";\nimport { ImageBackground, Platform, TouchableOpacity, View, ViewStyle } from \"react-native\";\nimport { Ionicons } from \"@expo/vector-icons\";\nimport { ResizeMode, Video } from \"expo-av\";\nimport { Camera, CameraType } from \"expo-camera\";\nimport * as FileSystem from \"expo-file-system\";\nimport * as Application from 'expo-application';\n\nimport { DisplayManager } from \"@wavemaker/app-rn-runtime/core/display.manager\";\nimport { CaptureVideoOutput } from \"@wavemaker/app-rn-runtime/variables/device/camera/capture-video.operation\";\nimport { CaptureImageOutput } from \"@wavemaker/app-rn-runtime/variables/device/camera/capture-image.operation\";\nimport permissionManager from '@wavemaker/app-rn-runtime/runtime/services/device/permissions';\nimport { CameraInput } from \"@wavemaker/app-rn-runtime/core/device/camera-service\";\nimport { Input } from \"@wavemaker/app-rn-runtime/variables/device/operation.provider\";\nimport appDisplayManagerService from \"@wavemaker/app-rn-runtime/runtime/services/app-display-manager.service\";\nconst styles = {\n preview: {\n top: 0,\n left: 0,\n right: 0,\n flexGrow: 1,\n backgroundColor: 'black'\n },\n actionBtn: {\n flex: 0,\n padding: 15,\n paddingHorizontal: 20,\n alignSelf: 'center',\n margin: 20,\n } as ViewStyle,\n actionBar: {\n flex: 0,\n flexDirection: 'row',\n justifyContent: 'center',\n backgroundColor: 'rgba(0,0,0,0.6)',\n position: 'absolute',\n bottom: 0,\n left: 0,\n right: 0,\n padding: 20\n } as ViewStyle,\n leftWrapper: {\n flex: 1,\n justifyContent: 'center',\n alignItems: 'flex-start',\n } as ViewStyle,\n midWrapper: {\n flex: 1,\n justifyContent: 'center',\n alignItems: 'center',\n } as ViewStyle,\n rightWrapper: {\n flex: 1,\n justifyContent: 'center',\n alignItems: 'flex-end',\n } as ViewStyle,\n circle: {\n display: 'flex',\n justifyContent: 'center',\n alignItems: 'center',\n } as ViewStyle,\n outerCircle: {\n borderWidth: 3,\n height: 50,\n width: 50,\n borderRadius: 25,\n borderColor: 'white'\n },\n innerCircle: {\n borderRadius:2,\n height: 20,\n width:20,\n backgroundColor: 'red'\n }\n};\n\nexport interface CameraVideoInput extends Input {}\n\nexport class CameraService {\n private type= CameraType.back;\n\n constructor(private displayManager: DisplayManager) {\n }\n\n public captureVideo(options?: CameraVideoInput): Promise<CaptureVideoOutput> {\n return new Promise((resolve, reject) => {\n permissionManager.requestPermissions('video').then(() => {\n const destroy = this.displayManager.show({\n content: (<CameraView testID={\"camera_view\"} type={this.type} captureType={'video'} onSuccess={(o) => {\n destroy.call(this.displayManager);\n /*o.content().catch(() => {}).then(base64 => {\n resolve({videoPath: o.uri, content: base64 || ''});\n });*/\n resolve({videoPath: o.uri, content: ''});\n }}\n onCancel={() => {\n destroy.call(this.displayManager);\n }}\n ></CameraView>)\n });\n }, reject);\n });\n }\n\n public captureImage(params: CameraInput): Promise<CaptureImageOutput> {\n return new Promise((resolve, reject) => {\n permissionManager.requestPermissions('image').then(() => {\n const destroy = this.displayManager.show({\n content: (<CameraView testID={\"camera_view\"} type={this.type} captureType={'image'} onSuccess={(o) => {\n destroy.call(this.displayManager);\n o.content().catch(() => {}).then(base64 => {\n resolve({imagePath: o.uri, content: base64 || ''});\n });\n }} onCancel={() => {destroy.call(this.displayManager);}}\n ></CameraView>)\n });\n }, reject);\n });\n }\n}\n\ninterface CameraOutput {\n uri: string;\n content: () => Promise<string>;\n}\n\nclass CameraViewProps {\n testID: string = 'camera_view';\n type: 'front' | 'back' = 'back' as CameraType;\n captureType: 'image' | 'video' = 'image';\n onSuccess: (o: CameraOutput) => any = () => {};\n onCancel: () => any = () => {};\n}\n\nclass CameraViewState {\n recording: boolean = false;\n showActionBtns: boolean = false;\n cameraType: CameraType = CameraType.back;\n isCaptured: boolean = false;\n closeView: boolean = false;\n cameraContent: CameraOutput = {} as CameraOutput;\n}\n\nexport class CameraView extends React.Component<CameraViewProps, CameraViewState> {\n private camera: Camera = {} as Camera;\n\n constructor(props: CameraViewProps) {\n super(props);\n this.state = new CameraViewState();\n }\n\n toggleCapture() {\n if (this.props.captureType === 'image') {\n this.takePicture();\n } else {\n if (!this.state.recording) {\n this.startRecord();\n } else {\n this.stopRecord();\n this.setState({showActionBtns: true} as CameraViewState);\n }\n }\n }\n\n getTestProps(suffix: string) {\n const id = this.props.testID + (suffix ? '_' + suffix : '');\n if (Platform.OS === 'android' || Platform.OS === 'web') {\n return {\n accessibilityLabel: id,\n testID: id\n };\n }\n return {\n accessible: false,\n testID: id\n };\n }\n\n async takePicture() {\n const options = {\n quality: 0.5,\n base64: false,\n skipProcessing: true,\n onPictureSaved: (response: any) => {\n response.content = async () => {\n return await FileSystem.readAsStringAsync(response.uri, { encoding: 'base64' });\n };\n this.setState({ \n cameraContent: response,\n isCaptured: true,\n showActionBtns: true } as CameraViewState);\n }\n }\n await this.camera.takePictureAsync(options);\n\n if (this.state.showActionBtns) {\n this.setState({showActionBtns: false} as CameraViewState);\n }\n this.setState({showActionBtns: true} as CameraViewState);\n }\n\n // start recording\n startRecord = async () => {\n this.camera.recordAsync().then((response: any) => {\n response.content = async () => {\n return await FileSystem.readAsStringAsync(response.uri, { encoding: 'base64' });\n };\n this.setState({ cameraContent: response, isCaptured: true } as CameraViewState);\n });\n if (this.state.showActionBtns) {\n this.setState({showActionBtns: false} as CameraViewState);\n }\n\n this.setState({recording: true} as CameraViewState);\n };\n\n // stop recording\n stopRecord = async () => {\n this.camera.stopRecording();\n this.setState({recording: false} as CameraViewState);\n this.setState({showActionBtns: true} as CameraViewState);\n };\n\n getActionsTemplate() {\n return <View style={styles.actionBar}>\n <View style={styles.leftWrapper}>\n <TouchableOpacity\n {...this.getTestProps('close')}\n onPress={() => {\n this.setState({ cameraContent: {uri: ''}, isCaptured: false, closeView: true } as CameraViewState);\n this.props.onCancel();\n }}>\n <Ionicons name='close-circle' size={32} color='white' />\n </TouchableOpacity>\n </View>\n <View style={styles.midWrapper}>\n {!this.state.isCaptured ? <TouchableOpacity style={[styles.circle, styles.outerCircle, this.props.captureType === 'video' && !this.state.recording ? { backgroundColor: \"red\" } : {},\n this.props.captureType === 'image' ? { backgroundColor: \"white\" } : {}]}\n onPress={this.toggleCapture.bind(this)}\n {...this.getTestProps('capture')}>\n <View style={[styles.circle as ViewStyle, this.props.captureType === 'image' ? {} : styles.innerCircle, this.props.captureType === 'image' ? { backgroundColor: \"white\" } : {}]}></View>\n </TouchableOpacity> : null}\n </View>\n <View style={styles.rightWrapper}>\n {this.state.showActionBtns ? (<TouchableOpacity\n onPress={() => {\n this.setState({ isCaptured: false, closeView: true } as CameraViewState);\n this.props.onSuccess(this.state.cameraContent);\n this.setState({ cameraContent: {uri: ''} } as CameraViewState);\n }}\n {...this.getTestProps('ok')}>\n <Ionicons name='checkmark-circle' size={32} color='white'/>\n </TouchableOpacity>) : (<TouchableOpacity\n {...this.getTestProps('toggle')}\n onPress={() => {\n this.setState({cameraType: this.state.cameraType === 'back' ? 'front' : 'back'} as CameraViewState);\n }}>\n <Ionicons name='camera-reverse' size={32} color='white' />\n </TouchableOpacity>)}\n </View>\n </View>\n }\n\n getPreviewTemplate(actions: any) {\n return this.props.captureType === 'image' ?\n <ImageBackground source={{uri : this.state.cameraContent.uri}} resizeMode={ResizeMode.CONTAIN} style={{flex: 1}} />\n : <Video\n style={{ flex: 1 }}\n source={{\n uri: this.state.cameraContent.uri,\n }}\n shouldPlay={true}\n useNativeControls\n isLooping\n resizeMode={ResizeMode.CONTAIN}\n ></Video>\n }\n\n render() {\n if (this.state.closeView) {\n return null;\n }\n const actions = this.getActionsTemplate();\n return (\n <View style={styles.preview}>\n {this.state.isCaptured ? (\n this.getPreviewTemplate(actions)\n ) : (\n <Camera type={CameraType[this.state.cameraType]} ref={(ref: Camera) => { this.camera = ref; }}\n style={{flex: 1}}\n onCameraReady={() => {}}>\n\n </Camera>)}\n {actions}\n </View>)\n }\n}\nconst cameraService = new CameraService(appDisplayManagerService);\nexport default cameraService;\n"],"mappings":"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","ignoreList":[]}
@@ -1,50 +0,0 @@
1
- import * as Location from 'expo-location';
2
- import * as Contacts from 'expo-contacts';
3
- import * as Calendar from 'expo-calendar';
4
- import * as Camera from 'expo-camera';
5
- import { Platform } from 'react-native';
6
- const rejectionMsgMap = new Map();
7
- rejectionMsgMap.set('camera', 'camera permission is required to capture image');
8
- rejectionMsgMap.set('video', 'camera and audio permissions are required to capture video');
9
- rejectionMsgMap.set('location', 'enable geolocation permission to access the location');
10
- rejectionMsgMap.set('contacts', 'enable contacts permission to access the contacts');
11
- rejectionMsgMap.set('calendar', 'enable calendar permission to access the calendar events');
12
- export default {
13
- requestPermissions: type => {
14
- let query;
15
- if (type === 'location') {
16
- // requestPermissionsAsync is deprecated and requestForegroundPermissionsAsync is available only in sdk 41+
17
- query = Location.requestForegroundPermissionsAsync();
18
- } else if (type === 'video') {
19
- query = Promise.all([Camera.requestCameraPermissionsAsync(), Camera.requestMicrophonePermissionsAsync()]);
20
- } else if (type === 'image' || type === 'camera') {
21
- query = Camera.requestCameraPermissionsAsync();
22
- } else if (type === 'contacts') {
23
- query = Contacts.requestPermissionsAsync();
24
- } else if (type === 'calendar') {
25
- if (Platform.OS === 'ios') {
26
- query = Promise.all([Calendar.requestCalendarPermissionsAsync(), Calendar.requestRemindersPermissionsAsync()]);
27
- } else {
28
- query = Calendar.requestCalendarPermissionsAsync();
29
- }
30
- }
31
- if (!query) {
32
- return Promise.reject('no supported permission type.');
33
- }
34
- return query.then(response => {
35
- if (Array.isArray(response)) {
36
- const isRejected = response.find(o => o.status !== 'granted');
37
- if (isRejected) {
38
- return Promise.reject(rejectionMsgMap.get(type));
39
- }
40
- } else if (response && response.status !== 'granted') {
41
- return Promise.reject(rejectionMsgMap.get(type));
42
- }
43
- return Promise.resolve();
44
- }, error => {
45
- console.log('permission is not enabled ', error);
46
- return Promise.reject();
47
- });
48
- }
49
- };
50
- //# sourceMappingURL=permissions.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":["Location","Contacts","Calendar","Camera","Platform","rejectionMsgMap","Map","set","requestPermissions","type","query","requestForegroundPermissionsAsync","Promise","all","requestCameraPermissionsAsync","requestMicrophonePermissionsAsync","requestPermissionsAsync","OS","requestCalendarPermissionsAsync","requestRemindersPermissionsAsync","reject","then","response","Array","isArray","isRejected","find","o","status","get","resolve","error","console","log"],"sources":["permissions.ts"],"sourcesContent":["import * as Location from 'expo-location';\nimport * as Contacts from 'expo-contacts';\nimport * as Calendar from 'expo-calendar';\nimport * as Camera from 'expo-camera';\nimport { Platform } from 'react-native';\n\nconst rejectionMsgMap = new Map<string, string>();\n\nrejectionMsgMap.set('camera', 'camera permission is required to capture image');\nrejectionMsgMap.set('video', 'camera and audio permissions are required to capture video');\nrejectionMsgMap.set('location', 'enable geolocation permission to access the location');\nrejectionMsgMap.set('contacts', 'enable contacts permission to access the contacts');\nrejectionMsgMap.set('calendar', 'enable calendar permission to access the calendar events');\n\ninterface objectMap {\n [key: string]: Array<string>\n}\n\nexport default {\n requestPermissions: (type: string) => {\n let query;\n if (type === 'location') {\n // requestPermissionsAsync is deprecated and requestForegroundPermissionsAsync is available only in sdk 41+\n query = Location.requestForegroundPermissionsAsync();\n } else if (type === 'video') {\n query = Promise.all([Camera.requestCameraPermissionsAsync(), Camera.requestMicrophonePermissionsAsync()]);\n } else if (type === 'image' || type === 'camera') {\n query = Camera.requestCameraPermissionsAsync();\n } else if (type === 'contacts') {\n query = Contacts.requestPermissionsAsync();\n } else if (type === 'calendar') {\n if (Platform.OS === 'ios') {\n query = Promise.all([Calendar.requestCalendarPermissionsAsync(), Calendar.requestRemindersPermissionsAsync()]);\n } else {\n query = Calendar.requestCalendarPermissionsAsync();\n }\n }\n if (!query) {\n return Promise.reject('no supported permission type.');\n }\n return query.then((response: any) => {\n if (Array.isArray(response)) {\n const isRejected = response.find(o => o.status !== 'granted');\n if (isRejected) {\n return Promise.reject(rejectionMsgMap.get(type));\n }\n } else if (response && response.status !== 'granted') {\n return Promise.reject(rejectionMsgMap.get(type));\n }\n return Promise.resolve();\n }, (error: any) => {\n console.log('permission is not enabled ', error);\n return Promise.reject();\n });\n }\n}\n"],"mappings":"AAAA,OAAO,KAAKA,QAAQ,MAAM,eAAe;AACzC,OAAO,KAAKC,QAAQ,MAAM,eAAe;AACzC,OAAO,KAAKC,QAAQ,MAAM,eAAe;AACzC,OAAO,KAAKC,MAAM,MAAM,aAAa;AACrC,SAASC,QAAQ,QAAQ,cAAc;AAEvC,MAAMC,eAAe,GAAG,IAAIC,GAAG,CAAiB,CAAC;AAEjDD,eAAe,CAACE,GAAG,CAAC,QAAQ,EAAE,gDAAgD,CAAC;AAC/EF,eAAe,CAACE,GAAG,CAAC,OAAO,EAAE,4DAA4D,CAAC;AAC1FF,eAAe,CAACE,GAAG,CAAC,UAAU,EAAE,sDAAsD,CAAC;AACvFF,eAAe,CAACE,GAAG,CAAC,UAAU,EAAE,mDAAmD,CAAC;AACpFF,eAAe,CAACE,GAAG,CAAC,UAAU,EAAE,0DAA0D,CAAC;AAM3F,eAAe;EACbC,kBAAkB,EAAGC,IAAY,IAAK;IACpC,IAAIC,KAAK;IACT,IAAID,IAAI,KAAK,UAAU,EAAE;MACvB;MACAC,KAAK,GAAGV,QAAQ,CAACW,iCAAiC,CAAC,CAAC;IACtD,CAAC,MAAM,IAAIF,IAAI,KAAK,OAAO,EAAE;MAC3BC,KAAK,GAAGE,OAAO,CAACC,GAAG,CAAC,CAACV,MAAM,CAACW,6BAA6B,CAAC,CAAC,EAAEX,MAAM,CAACY,iCAAiC,CAAC,CAAC,CAAC,CAAC;IAC3G,CAAC,MAAM,IAAIN,IAAI,KAAK,OAAO,IAAIA,IAAI,KAAK,QAAQ,EAAE;MAChDC,KAAK,GAAGP,MAAM,CAACW,6BAA6B,CAAC,CAAC;IAChD,CAAC,MAAM,IAAIL,IAAI,KAAK,UAAU,EAAE;MAC9BC,KAAK,GAAGT,QAAQ,CAACe,uBAAuB,CAAC,CAAC;IAC5C,CAAC,MAAM,IAAIP,IAAI,KAAK,UAAU,EAAE;MAC9B,IAAIL,QAAQ,CAACa,EAAE,KAAK,KAAK,EAAE;QACzBP,KAAK,GAAGE,OAAO,CAACC,GAAG,CAAC,CAACX,QAAQ,CAACgB,+BAA+B,CAAC,CAAC,EAAEhB,QAAQ,CAACiB,gCAAgC,CAAC,CAAC,CAAC,CAAC;MAChH,CAAC,MAAM;QACLT,KAAK,GAAGR,QAAQ,CAACgB,+BAA+B,CAAC,CAAC;MACpD;IACF;IACA,IAAI,CAACR,KAAK,EAAE;MACV,OAAOE,OAAO,CAACQ,MAAM,CAAC,+BAA+B,CAAC;IACxD;IACA,OAAOV,KAAK,CAACW,IAAI,CAAEC,QAAa,IAAK;MACnC,IAAIC,KAAK,CAACC,OAAO,CAACF,QAAQ,CAAC,EAAE;QAC3B,MAAMG,UAAU,GAAGH,QAAQ,CAACI,IAAI,CAACC,CAAC,IAAIA,CAAC,CAACC,MAAM,KAAK,SAAS,CAAC;QAC7D,IAAIH,UAAU,EAAE;UACd,OAAOb,OAAO,CAACQ,MAAM,CAACf,eAAe,CAACwB,GAAG,CAACpB,IAAI,CAAC,CAAC;QAClD;MACF,CAAC,MAAM,IAAIa,QAAQ,IAAIA,QAAQ,CAACM,MAAM,KAAK,SAAS,EAAE;QACpD,OAAOhB,OAAO,CAACQ,MAAM,CAACf,eAAe,CAACwB,GAAG,CAACpB,IAAI,CAAC,CAAC;MAClD;MACA,OAAOG,OAAO,CAACkB,OAAO,CAAC,CAAC;IAC1B,CAAC,EAAGC,KAAU,IAAK;MACjBC,OAAO,CAACC,GAAG,CAAC,4BAA4B,EAAEF,KAAK,CAAC;MAChD,OAAOnB,OAAO,CAACQ,MAAM,CAAC,CAAC;IACzB,CAAC,CAAC;EACJ;AACF,CAAC","ignoreList":[]}
@@ -1,136 +0,0 @@
1
- function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
2
- import { Camera } from 'expo-camera';
3
- import { Ionicons } from '@expo/vector-icons';
4
- import { BarCodeScanner } from 'expo-barcode-scanner';
5
- import { Platform, StyleSheet, TouchableOpacity, View } from 'react-native';
6
- import React from 'react';
7
- import permissionManager from '@wavemaker/app-rn-runtime/runtime/services/device/permissions';
8
- import appDisplayManagerService from '@wavemaker/app-rn-runtime/runtime/services/app-display-manager.service';
9
- const barcodeFormatOptions = {
10
- 'ALL': 'ALL',
11
- 'CODABAR': 'codabar',
12
- 'CODE_39': 'code39',
13
- 'CODE_93': 'code93',
14
- 'CODE_128': 'code128',
15
- 'DATA_MATRIX': 'datamatrix',
16
- 'EAN_8': 'ean8',
17
- 'EAN_13': 'ean13',
18
- 'ITF': 'itf14',
19
- 'PDF_417': 'pdf417',
20
- 'QR_CODE': 'qr',
21
- 'RSS14': 'rss14',
22
- 'RSS_EXPANDED': 'rssexpanded',
23
- 'UPC_E': 'upc_e',
24
- 'UPC_A': 'upc_a'
25
- };
26
- const opacity = 'rgba(0, 0, 0, 0.6)';
27
- const styles = StyleSheet.create({
28
- container: {
29
- flex: 1,
30
- flexDirection: 'column'
31
- },
32
- closeWrapper: {
33
- flex: 1,
34
- justifyContent: 'flex-end',
35
- alignItems: 'center',
36
- paddingBottom: 32
37
- },
38
- topWrapper: {
39
- flex: 2,
40
- backgroundColor: opacity
41
- },
42
- centerWrapper: {
43
- flex: 2,
44
- flexDirection: 'row'
45
- },
46
- leftWrapper: {
47
- flex: 2,
48
- backgroundColor: opacity
49
- },
50
- focused: {
51
- flex: 10
52
- },
53
- rightWrapper: {
54
- flex: 2,
55
- backgroundColor: opacity
56
- },
57
- bottomWrapper: {
58
- flex: 2,
59
- backgroundColor: opacity
60
- }
61
- });
62
- export class ScanService {
63
- constructor(displayManager) {
64
- this.displayManager = displayManager;
65
- }
66
- getTestProps(suffix) {
67
- const id = "scan" + (suffix ? '_' + suffix : '');
68
- if (Platform.OS === 'android' || Platform.OS === 'web') {
69
- return {
70
- accessibilityLabel: id,
71
- testID: id
72
- };
73
- }
74
- return {
75
- accessible: false,
76
- testID: id
77
- };
78
- }
79
- scanBarcode(params) {
80
- const format = (params === null || params === void 0 ? void 0 : params.barcodeFormat) || 'ALL';
81
- const barcodeFormat = Platform.OS === 'ios' ? undefined : barcodeFormatOptions[format];
82
- return new Promise((resolve, reject) => {
83
- permissionManager.requestPermissions('camera').then(() => {
84
- const destroy = this.displayManager.show({
85
- content: /*#__PURE__*/React.createElement(Camera, {
86
- barCodeScannerSettings: barcodeFormat ? {
87
- barCodeTypes: [BarCodeScanner.Constants.BarCodeType[barcodeFormat]]
88
- } : undefined,
89
- onBarCodeScanned: result => {
90
- destroy.call(this.displayManager);
91
- resolve(result);
92
- },
93
- style: StyleSheet.absoluteFillObject
94
- }, /*#__PURE__*/React.createElement(View, {
95
- style: styles.topWrapper
96
- }), /*#__PURE__*/React.createElement(View, {
97
- style: styles.centerWrapper
98
- }, /*#__PURE__*/React.createElement(View, {
99
- style: styles.leftWrapper
100
- }), /*#__PURE__*/React.createElement(View, {
101
- style: styles.focused
102
- }), /*#__PURE__*/React.createElement(View, {
103
- style: styles.rightWrapper
104
- })), /*#__PURE__*/React.createElement(View, {
105
- style: styles.bottomWrapper
106
- }, /*#__PURE__*/React.createElement(View, {
107
- style: styles.closeWrapper
108
- }, /*#__PURE__*/React.createElement(TouchableOpacity, _extends({}, this.getTestProps('close_button'), {
109
- onPress: () => {
110
- destroy.call(this.displayManager);
111
- }
112
- }), /*#__PURE__*/React.createElement(Ionicons, {
113
- name: "close-circle",
114
- size: 48,
115
- color: "white"
116
- })))))
117
- });
118
- }, reject);
119
- }).then(response => {
120
- let format;
121
- if (response.type) {
122
- const values = Object.values(BarCodeScanner.Constants.BarCodeType);
123
- const index = values.indexOf(response.type);
124
- format = index > -1 ? Object.keys(BarCodeScanner.Constants.BarCodeType)[index] : '';
125
- }
126
- return Promise.resolve({
127
- text: response.data,
128
- format: format || response.type,
129
- cancelled: false
130
- });
131
- });
132
- }
133
- }
134
- const scanService = new ScanService(appDisplayManagerService);
135
- export default scanService;
136
- //# sourceMappingURL=scan-service.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":["Camera","Ionicons","BarCodeScanner","Platform","StyleSheet","TouchableOpacity","View","React","permissionManager","appDisplayManagerService","barcodeFormatOptions","opacity","styles","create","container","flex","flexDirection","closeWrapper","justifyContent","alignItems","paddingBottom","topWrapper","backgroundColor","centerWrapper","leftWrapper","focused","rightWrapper","bottomWrapper","ScanService","constructor","displayManager","getTestProps","suffix","id","OS","accessibilityLabel","testID","accessible","scanBarcode","params","format","barcodeFormat","undefined","Promise","resolve","reject","requestPermissions","then","destroy","show","content","createElement","barCodeScannerSettings","barCodeTypes","Constants","BarCodeType","onBarCodeScanned","result","call","style","absoluteFillObject","_extends","onPress","name","size","color","response","type","values","Object","index","indexOf","keys","text","data","cancelled","scanService"],"sources":["scan-service.tsx"],"sourcesContent":["import { Camera } from 'expo-camera';\nimport { Ionicons } from '@expo/vector-icons';\nimport { BarCodeScanner } from 'expo-barcode-scanner';\nimport * as Application from 'expo-application';\nimport { Platform, StyleSheet, TouchableOpacity, View } from 'react-native';\nimport React from 'react';\nimport { ScanInput, ScanOutput } from '@wavemaker/app-rn-runtime/variables/device/scan/scan.operation';\nimport { DisplayManager } from '@wavemaker/app-rn-runtime/core/display.manager';\nimport permissionManager from '@wavemaker/app-rn-runtime/runtime/services/device/permissions';\nimport appDisplayManagerService from '@wavemaker/app-rn-runtime/runtime/services/app-display-manager.service';\n\ninterface objectMap {\n [key: string]: string\n}\n\nconst barcodeFormatOptions: objectMap = {\n 'ALL': 'ALL',\n 'CODABAR': 'codabar',\n 'CODE_39': 'code39',\n 'CODE_93': 'code93',\n 'CODE_128': 'code128',\n 'DATA_MATRIX': 'datamatrix',\n 'EAN_8': 'ean8',\n 'EAN_13': 'ean13',\n 'ITF': 'itf14',\n 'PDF_417': 'pdf417',\n 'QR_CODE': 'qr',\n 'RSS14': 'rss14',\n 'RSS_EXPANDED': 'rssexpanded',\n 'UPC_E': 'upc_e',\n 'UPC_A': 'upc_a'\n};\nconst opacity = 'rgba(0, 0, 0, 0.6)';\nconst styles = StyleSheet.create({\n container: {\n flex: 1,\n flexDirection: 'column'\n },\n closeWrapper: {\n flex: 1,\n justifyContent: 'flex-end',\n alignItems: 'center',\n paddingBottom: 32\n },\n topWrapper: {\n flex: 2,\n backgroundColor: opacity\n },\n centerWrapper: {\n flex: 2,\n flexDirection: 'row'\n },\n leftWrapper: {\n flex: 2,\n backgroundColor: opacity\n },\n focused: {\n flex: 10\n },\n rightWrapper: {\n flex: 2,\n backgroundColor: opacity\n },\n bottomWrapper: {\n flex: 2,\n backgroundColor: opacity\n },\n});\n\nexport class ScanService {\n\n constructor(private displayManager: DisplayManager) {}\n\n getTestProps(suffix: string) {\n const id = \"scan\" + (suffix ? '_' + suffix : '');\n if (Platform.OS === 'android' || Platform.OS === 'web') {\n return {\n accessibilityLabel: id,\n testID: id\n };\n }\n return {\n accessible: false,\n testID: id\n };\n }\n\n public scanBarcode(params: ScanInput): Promise<ScanOutput> {\n const format = params?.barcodeFormat || 'ALL';\n const barcodeFormat: string | undefined = Platform.OS === 'ios' ? undefined : barcodeFormatOptions[format];\n return new Promise((resolve, reject) => {\n permissionManager.requestPermissions('camera').then(() => {\n const destroy = this.displayManager.show({\n content: (<Camera\n barCodeScannerSettings={barcodeFormat ? {\n barCodeTypes: [BarCodeScanner.Constants.BarCodeType[barcodeFormat]],\n }: undefined}\n onBarCodeScanned={(result) => {\n destroy.call(this.displayManager);\n resolve(result);\n }}\n style={StyleSheet.absoluteFillObject}\n >\n <View style={styles.topWrapper}>\n </View>\n <View style={styles.centerWrapper}>\n <View style={styles.leftWrapper}/>\n <View style={styles.focused}/>\n <View style={styles.rightWrapper}/>\n </View>\n <View style={styles.bottomWrapper}>\n \n <View style={styles.closeWrapper}>\n <TouchableOpacity\n {... this.getTestProps('close_button')}\n onPress={() => {\n destroy.call(this.displayManager);\n }}>\n <Ionicons name='close-circle' size={48} color='white' />\n </TouchableOpacity>\n </View>\n </View>\n </Camera>)\n });\n }, reject)\n }).then((response: any) => {\n let format;\n if (response.type) {\n const values = Object.values(BarCodeScanner.Constants.BarCodeType);\n const index = values.indexOf(response.type);\n format = index > -1 ? Object.keys(BarCodeScanner.Constants.BarCodeType)[index] : '';\n }\n return Promise.resolve({\n text: response.data,\n format : format || response.type,\n cancelled : false\n });\n });\n }\n}\nconst scanService = new ScanService(appDisplayManagerService);\nexport default scanService;\n"],"mappings":"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","ignoreList":[]}