@wavemaker/app-rn-runtime 12.0.0-next.141219 → 12.0.0-next.141221

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 (1171) 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.props.js.map +1 -0
  9. package/components/advanced/carousel/carousel.styles.js +176 -0
  10. package/components/advanced/carousel/carousel.styles.js.map +1 -0
  11. package/components/advanced/login/login.component.js +39 -0
  12. package/components/advanced/login/login.props.js +12 -0
  13. package/components/advanced/network-info-toaster/network-info-toaster.component.js +114 -0
  14. package/components/advanced/network-info-toaster/network-info-toaster.props.js +11 -0
  15. package/components/advanced/webview/webview.component.js +155 -0
  16. package/components/advanced/webview/webview.component.js.map +1 -0
  17. package/components/advanced/webview/webview.props.js +16 -0
  18. package/components/basic/anchor/anchor.component.js +99 -0
  19. package/components/basic/anchor/anchor.props.js +32 -0
  20. package/components/basic/animatedview.component.js +222 -0
  21. package/components/basic/audio/audio.component.js +251 -0
  22. package/components/basic/audio/audio.props.js +15 -0
  23. package/components/basic/button/button.component.js +113 -0
  24. package/components/basic/button/button.props.js +27 -0
  25. package/components/basic/buttongroup/buttongroup.props.js +14 -0
  26. package/components/basic/custom/custom.props.js +16 -0
  27. package/components/basic/icon/icon.component.js +266 -0
  28. package/components/basic/icon/icon.props.js +27 -0
  29. package/components/basic/label/label.component.js +156 -0
  30. package/components/basic/label/label.props.js +24 -0
  31. package/components/basic/label/label.styles.js +133 -0
  32. package/components/basic/label/label.styles.js.map +1 -0
  33. package/components/basic/lottie/lottie.component.js +138 -0
  34. package/components/basic/lottie/lottie.props.js +14 -0
  35. package/components/basic/message/message.component.js +78 -0
  36. package/components/basic/message/message.props.js +21 -0
  37. package/components/basic/modal/modal.props.js +12 -0
  38. package/components/basic/picture/picture.component.js +197 -0
  39. package/components/basic/picture/picture.component.js.map +1 -0
  40. package/components/basic/picture/picture.props.js +23 -0
  41. package/components/basic/picture/picture.props.js.map +1 -0
  42. package/components/basic/progress-bar/progress-bar.component.js +59 -0
  43. package/components/basic/progress-bar/progress-bar.props.js +16 -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 +427 -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 +68 -0
  56. package/components/basic/video/video.props.js +25 -0
  57. package/components/chart/area-chart/area-chart.component.js +148 -0
  58. package/components/chart/area-chart/area-chart.props.js +12 -0
  59. package/components/chart/bar-chart/bar-chart.component.js +120 -0
  60. package/components/chart/bar-chart/bar-chart.props.js +13 -0
  61. package/components/chart/basechart.component.js +693 -0
  62. package/components/chart/basechart.props.js +61 -0
  63. package/components/chart/bubble-chart/bubble-chart.component.js +104 -0
  64. package/components/chart/bubble-chart/bubble-chart.props.js +11 -0
  65. package/components/chart/donut-chart/donut-chart.props.js +11 -0
  66. package/components/chart/line-chart/line-chart.component.js +110 -0
  67. package/components/chart/line-chart/line-chart.props.js +14 -0
  68. package/components/chart/pie-chart/pie-chart.component.js +228 -0
  69. package/components/chart/pie-chart/pie-chart.props.js +14 -0
  70. package/components/chart/stack-chart/stack-chart.component.js +348 -0
  71. package/components/chart/stack-chart/stack-chart.props.js +17 -0
  72. package/components/container/accordion/accordion.component.js +190 -0
  73. package/components/container/accordion/accordion.props.js +14 -0
  74. package/components/container/accordion/accordionpane/accordionpane.component.js +85 -0
  75. package/components/container/accordion/accordionpane/accordionpane.props.js +17 -0
  76. package/components/container/container.component.js +80 -0
  77. package/components/container/container.props.js +14 -0
  78. package/components/container/layoutgrid/gridcolumn/gridcolumn.props.js +13 -0
  79. package/components/container/layoutgrid/gridrow/gridrow.props.js +11 -0
  80. package/components/container/layoutgrid/layoutgrid.props.js +11 -0
  81. package/components/container/linearlayout/linearlayout.props.js +15 -0
  82. package/components/container/linearlayout/linearlayoutitem/linearlayoutitem.props.js +13 -0
  83. package/components/container/panel/panel-content/panel-content.props.js +11 -0
  84. package/components/container/panel/panel-footer/panel-footer.props.js +11 -0
  85. package/components/container/panel/panel.component.js +155 -0
  86. package/components/container/panel/panel.component.js.map +1 -0
  87. package/components/container/panel/panel.props.js +24 -0
  88. package/components/container/partial-host.component.js +42 -0
  89. package/components/container/tabs/tabheader/tabheader.component.js +212 -0
  90. package/components/container/tabs/tabheader/tabheader.component.js.map +1 -0
  91. package/components/container/tabs/tabheader/tabheader.props.js +14 -0
  92. package/components/container/tabs/tabheader/tabheader.props.js.map +1 -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.props.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/wizard.styles.js +316 -0
  105. package/components/container/wizard/wizard.styles.js.map +1 -0
  106. package/components/container/wizard/wizardstep/wizardstep.component.js +91 -0
  107. package/components/container/wizard/wizardstep/wizardstep.component.js.map +1 -0
  108. package/components/container/wizard/wizardstep/wizardstep.props.js +22 -0
  109. package/components/data/card/card-content/card-content.component.js +45 -0
  110. package/components/data/card/card-content/card-content.props.js +12 -0
  111. package/components/data/card/card-footer/card-footer.props.js +11 -0
  112. package/components/data/card/card.component.js +90 -0
  113. package/components/data/card/card.props.js +27 -0
  114. package/components/data/form/form-action/form-action.component.js +35 -0
  115. package/components/data/form/form-action/form-action.props.js +18 -0
  116. package/components/data/form/form-body/form-body.props.js +11 -0
  117. package/components/data/form/form-field/form-field.component.js +246 -0
  118. package/components/data/form/form-field/form-field.props.js +34 -0
  119. package/components/data/form/form-footer/form-footer.props.js +11 -0
  120. package/components/data/form/form.component.js +425 -0
  121. package/components/data/form/form.props.js +31 -0
  122. package/components/data/list/list-action-template/list-action-template.props.js +12 -0
  123. package/components/data/list/list-template/list-template.props.js +12 -0
  124. package/components/data/list/list.component.js +485 -0
  125. package/components/data/list/list.component.js.map +1 -0
  126. package/components/data/list/list.props.js +48 -0
  127. package/components/data/liveform/liveform.component.js +98 -0
  128. package/components/device/barcodescanner/barcodescanner.component.js +50 -0
  129. package/components/device/barcodescanner/barcodescanner.props.js +18 -0
  130. package/components/device/camera/camera.component.js +68 -0
  131. package/components/device/camera/camera.props.js +23 -0
  132. package/components/dialogs/alertdialog/alertdialog.component.js +72 -0
  133. package/components/dialogs/alertdialog/alertdialog.props.js +24 -0
  134. package/components/dialogs/confirmdialog/confirmdialog.component.js +78 -0
  135. package/components/dialogs/confirmdialog/confirmdialog.props.js +24 -0
  136. package/components/dialogs/dialog/dialog.component.js +102 -0
  137. package/components/dialogs/dialog/dialog.component.js.map +1 -0
  138. package/components/dialogs/dialog/dialog.props.js +25 -0
  139. package/components/dialogs/dialogactions/dialogactions.component.js +21 -0
  140. package/components/dialogs/dialogactions/dialogactions.props.js +11 -0
  141. package/components/dialogs/dialogcontent/dialogcontent.props.js +11 -0
  142. package/components/input/basedataset/basedataset.component.js +230 -0
  143. package/components/input/basedataset/basedataset.props.js +31 -0
  144. package/components/input/baseinput/baseinput.component.js +193 -0
  145. package/components/input/baseinput/baseinput.props.js +30 -0
  146. package/components/input/basenumber/basenumber.component.js +346 -0
  147. package/components/input/basenumber/basenumber.component.js.map +1 -0
  148. package/components/input/basenumber/basenumber.props.js +27 -0
  149. package/components/input/calendar/calendar.component.js +164 -0
  150. package/components/input/calendar/calendar.props.js +14 -0
  151. package/components/input/calendar/views/month-view.js +191 -0
  152. package/components/input/calendar/views/month-view.js.map +1 -0
  153. package/components/input/checkbox/checkbox.component.js +121 -0
  154. package/components/input/checkbox/checkbox.props.js +18 -0
  155. package/components/input/checkboxset/checkboxset.component.js +144 -0
  156. package/components/input/checkboxset/checkboxset.props.js +21 -0
  157. package/components/input/chips/chips.component.js +320 -0
  158. package/components/input/chips/chips.component.js.map +1 -0
  159. package/components/input/chips/chips.props.js +19 -0
  160. package/components/input/composite/composite.props.js +12 -0
  161. package/components/input/currency/currency.component.js +113 -0
  162. package/components/input/currency/currency.props.js +13 -0
  163. package/components/input/epoch/base-datetime.component.js +473 -0
  164. package/components/input/epoch/date-picker.component.js +136 -0
  165. package/components/input/epoch/date-picker.component.js.map +1 -0
  166. package/components/input/epoch/datetime/datetime.props.js +35 -0
  167. package/components/input/epoch/time/time.props.js +15 -0
  168. package/components/input/epoch/wheel-date-picker.component.js +198 -0
  169. package/components/input/epoch/wheel-time-picker.component.js +107 -0
  170. package/components/input/epoch/wheelpicker/wheelpicker.component.js +91 -0
  171. package/components/input/epoch/wheelpicker/wheelpicker.props.js +17 -0
  172. package/components/input/epoch/wheelpickermodal/date/date-picker-modal.component.js +79 -0
  173. package/components/input/epoch/wheelpickermodal/date/date-picker-modal.props.js +20 -0
  174. package/components/input/epoch/wheelpickermodal/time/time-picker-modal.component.js +77 -0
  175. package/components/input/epoch/wheelpickermodal/time/time-picker-modal.props.js +19 -0
  176. package/components/input/fileupload/fileupload.component.js +60 -0
  177. package/components/input/fileupload/fileupload.props.js +17 -0
  178. package/components/input/number/number.component.js +83 -0
  179. package/components/input/number/number.props.js +13 -0
  180. package/components/input/radioset/radioset.component.js +122 -0
  181. package/components/input/radioset/radioset.props.js +20 -0
  182. package/components/input/rating/rating.component.js +144 -0
  183. package/components/input/rating/rating.props.js +21 -0
  184. package/components/input/select/select.component.js +250 -0
  185. package/components/input/select/select.component.js.map +1 -0
  186. package/components/input/select/select.props.js +12 -0
  187. package/components/input/select/select.styles.js +153 -0
  188. package/components/input/select/select.styles.js.map +1 -0
  189. package/components/input/slider/slider.component.js +444 -0
  190. package/components/input/slider/slider.component.js.map +1 -0
  191. package/components/input/slider/slider.props.js +20 -0
  192. package/components/input/switch/switch.component.js +94 -0
  193. package/components/input/switch/switch.props.js +13 -0
  194. package/components/input/text/text.component.js +85 -0
  195. package/components/input/text/text.props.js +15 -0
  196. package/components/input/textarea/textarea.component.js +83 -0
  197. package/components/input/textarea/textarea.props.js +14 -0
  198. package/components/input/toggle/toggle.component.js +150 -0
  199. package/components/input/toggle/toggle.props.js +22 -0
  200. package/components/navigation/appnavbar/appnavbar.component.js +74 -0
  201. package/components/navigation/appnavbar/appnavbar.props.js +21 -0
  202. package/components/navigation/basenav/basenav.component.js +72 -0
  203. package/components/navigation/basenav/basenav.props.js +18 -0
  204. package/components/navigation/menu/menu.component.js +65 -0
  205. package/components/navigation/menu/menu.component.js.map +1 -0
  206. package/components/navigation/menu/menu.props.js +14 -0
  207. package/components/navigation/menu/menu.styles.js +70 -0
  208. package/components/navigation/menu/menu.styles.js.map +1 -0
  209. package/components/navigation/navbar/navbar.props.js +16 -0
  210. package/components/navigation/navitem/navitem.component.js +67 -0
  211. package/components/navigation/navitem/navitem.props.js +19 -0
  212. package/components/navigation/popover/popover.component.js +193 -0
  213. package/components/navigation/popover/popover.component.js.map +1 -0
  214. package/components/navigation/popover/popover.props.js +31 -0
  215. package/components/page/left-panel/left-panel.component.js +48 -0
  216. package/components/page/left-panel/left-panel.props.js +12 -0
  217. package/components/page/page-content/page-content.component.js +114 -0
  218. package/components/page/page-content/page-content.component.js.map +1 -0
  219. package/components/page/page-content/page-content.props.js +12 -0
  220. package/components/page/page.component.js +26 -0
  221. package/components/page/partial-container/partial-container.props.js +12 -0
  222. package/components/page/tabbar/tabbar.component.js +149 -0
  223. package/components/page/tabbar/tabbar.component.js.map +1 -0
  224. package/components/page/tabbar/tabbar.props.js +28 -0
  225. package/core/base.component.js +522 -0
  226. package/core/base.component.js.map +1 -0
  227. package/core/components/textinput.component.js +197 -0
  228. package/core/constant.service.js +22 -0
  229. package/core/event-notifier.js +68 -0
  230. package/core/fixed-view.component.js +67 -0
  231. package/core/imageSizeEstimator.js +51 -0
  232. package/core/key.extractor.js +21 -0
  233. package/core/logger.js +123 -0
  234. package/core/network.service.js +327 -0
  235. package/core/props.provider.js +88 -0
  236. package/core/scroll-view.component.js +52 -0
  237. package/core/storage.service.js +38 -0
  238. package/core/tappable.component.js +151 -0
  239. package/core/utils.js +543 -0
  240. package/core/utils.js.map +1 -0
  241. package/core/viewport.js +45 -0
  242. package/core/wm-component-tree.js +58 -0
  243. package/gestures/swipe.animation.js +217 -0
  244. package/npm-shrinkwrap.json +27331 -0
  245. package/package-lock.json +27331 -0
  246. package/package.json +273 -0
  247. package/runtime/App.js +533 -0
  248. package/runtime/App.js.map +1 -0
  249. package/runtime/base-fragment.component.js +405 -0
  250. package/runtime/base-fragment.component.js.map +1 -0
  251. package/runtime/base-page.component.js +209 -0
  252. package/runtime/base-page.component.js.map +1 -0
  253. package/runtime/base-partial.component.js +63 -0
  254. package/runtime/base-prefab.component.js +83 -0
  255. package/runtime/memo.component.js +35 -0
  256. package/runtime/navigator/stack.navigator.js +77 -0
  257. package/runtime/services/app-display-manager.service.js +50 -0
  258. package/runtime/services/app-i18n.service.js +82 -0
  259. package/runtime/services/app-i18n.service.js.map +1 -0
  260. package/runtime/services/app-modal.service.js +71 -0
  261. package/runtime/services/app-security.service.js +256 -0
  262. package/runtime/services/app-spinner.service.js +74 -0
  263. package/runtime/services/app-toast.service.js +56 -0
  264. package/runtime/services/device/camera-service.js +349 -0
  265. package/runtime/services/device/scan-service.js +136 -0
  266. package/runtime/services/webprocess.service.js +107 -0
  267. package/runtime/watcher.js +147 -0
  268. package/styles/background.component.js +311 -0
  269. package/styles/background.component.js.map +1 -0
  270. package/styles/style-props.js +93 -0
  271. package/styles/theme.js +414 -0
  272. package/styles/theme.variables.js +437 -0
  273. package/styles/theme.variables.js.map +1 -0
  274. package/variables/base-variable.js +125 -0
  275. package/variables/device/device/network-info.operation.js +33 -0
  276. package/variables/live-variable.js +130 -0
  277. package/variables/model-variable.js +47 -0
  278. package/variables/service-variable.js +143 -0
  279. package/variables/utils/inflight-queue.js +114 -0
  280. app-rn-runtime/actions/notification-action.js +0 -73
  281. app-rn-runtime/actions/timer-action.js +0 -57
  282. app-rn-runtime/components/advanced/carousel/carousel-content/carousel-content.props.js +0 -11
  283. app-rn-runtime/components/advanced/carousel/carousel-template/carousel-template.props.js +0 -11
  284. app-rn-runtime/components/advanced/carousel/carousel.component.js +0 -331
  285. app-rn-runtime/components/advanced/carousel/carousel.component.js.map +0 -1
  286. app-rn-runtime/components/advanced/carousel/carousel.props.js +0 -21
  287. app-rn-runtime/components/advanced/carousel/carousel.props.js.map +0 -1
  288. app-rn-runtime/components/advanced/carousel/carousel.styles.js +0 -180
  289. app-rn-runtime/components/advanced/carousel/carousel.styles.js.map +0 -1
  290. app-rn-runtime/components/advanced/login/login.component.js +0 -39
  291. app-rn-runtime/components/advanced/login/login.props.js +0 -12
  292. app-rn-runtime/components/advanced/network-info-toaster/network-info-toaster.component.js +0 -114
  293. app-rn-runtime/components/advanced/network-info-toaster/network-info-toaster.props.js +0 -11
  294. app-rn-runtime/components/advanced/webview/webview.component.js +0 -153
  295. app-rn-runtime/components/advanced/webview/webview.component.js.map +0 -1
  296. app-rn-runtime/components/advanced/webview/webview.props.js +0 -16
  297. app-rn-runtime/components/basic/anchor/anchor.component.js +0 -99
  298. app-rn-runtime/components/basic/anchor/anchor.props.js +0 -32
  299. app-rn-runtime/components/basic/animatedview.component.js +0 -222
  300. app-rn-runtime/components/basic/audio/audio.component.js +0 -251
  301. app-rn-runtime/components/basic/audio/audio.props.js +0 -15
  302. app-rn-runtime/components/basic/button/button.component.js +0 -113
  303. app-rn-runtime/components/basic/button/button.props.js +0 -27
  304. app-rn-runtime/components/basic/buttongroup/buttongroup.props.js +0 -14
  305. app-rn-runtime/components/basic/custom/custom.props.js +0 -16
  306. app-rn-runtime/components/basic/icon/icon.component.js +0 -266
  307. app-rn-runtime/components/basic/icon/icon.props.js +0 -27
  308. app-rn-runtime/components/basic/label/label.component.js +0 -156
  309. app-rn-runtime/components/basic/label/label.props.js +0 -24
  310. app-rn-runtime/components/basic/label/label.styles.js +0 -129
  311. app-rn-runtime/components/basic/label/label.styles.js.map +0 -1
  312. app-rn-runtime/components/basic/lottie/lottie.component.js +0 -138
  313. app-rn-runtime/components/basic/lottie/lottie.props.js +0 -14
  314. app-rn-runtime/components/basic/message/message.component.js +0 -78
  315. app-rn-runtime/components/basic/message/message.props.js +0 -21
  316. app-rn-runtime/components/basic/modal/modal.props.js +0 -12
  317. app-rn-runtime/components/basic/picture/picture.component.js +0 -191
  318. app-rn-runtime/components/basic/picture/picture.component.js.map +0 -1
  319. app-rn-runtime/components/basic/picture/picture.props.js +0 -22
  320. app-rn-runtime/components/basic/picture/picture.props.js.map +0 -1
  321. app-rn-runtime/components/basic/progress-bar/progress-bar.component.js +0 -59
  322. app-rn-runtime/components/basic/progress-bar/progress-bar.props.js +0 -16
  323. app-rn-runtime/components/basic/progress-circle/progress-circle.component.js +0 -77
  324. app-rn-runtime/components/basic/progress-circle/progress-circle.props.js +0 -19
  325. app-rn-runtime/components/basic/search/local-data-provider.js +0 -113
  326. app-rn-runtime/components/basic/search/search.component.js +0 -427
  327. app-rn-runtime/components/basic/search/search.component.js.map +0 -1
  328. app-rn-runtime/components/basic/search/search.props.js +0 -36
  329. app-rn-runtime/components/basic/skeleton/skeleton.component.js +0 -151
  330. app-rn-runtime/components/basic/skeleton/skeleton.props.js +0 -11
  331. app-rn-runtime/components/basic/spinner/spinner.component.js +0 -90
  332. app-rn-runtime/components/basic/spinner/spinner.props.js +0 -17
  333. app-rn-runtime/components/basic/tooltip/tooltip.props.js +0 -18
  334. app-rn-runtime/components/basic/video/video.component.js +0 -68
  335. app-rn-runtime/components/basic/video/video.props.js +0 -25
  336. app-rn-runtime/components/chart/area-chart/area-chart.component.js +0 -148
  337. app-rn-runtime/components/chart/area-chart/area-chart.props.js +0 -12
  338. app-rn-runtime/components/chart/bar-chart/bar-chart.component.js +0 -120
  339. app-rn-runtime/components/chart/bar-chart/bar-chart.props.js +0 -13
  340. app-rn-runtime/components/chart/basechart.component.js +0 -693
  341. app-rn-runtime/components/chart/basechart.props.js +0 -61
  342. app-rn-runtime/components/chart/bubble-chart/bubble-chart.component.js +0 -104
  343. app-rn-runtime/components/chart/bubble-chart/bubble-chart.props.js +0 -11
  344. app-rn-runtime/components/chart/donut-chart/donut-chart.props.js +0 -11
  345. app-rn-runtime/components/chart/line-chart/line-chart.component.js +0 -110
  346. app-rn-runtime/components/chart/line-chart/line-chart.props.js +0 -14
  347. app-rn-runtime/components/chart/pie-chart/pie-chart.component.js +0 -228
  348. app-rn-runtime/components/chart/pie-chart/pie-chart.props.js +0 -14
  349. app-rn-runtime/components/chart/stack-chart/stack-chart.component.js +0 -348
  350. app-rn-runtime/components/chart/stack-chart/stack-chart.props.js +0 -17
  351. app-rn-runtime/components/container/accordion/accordion.component.js +0 -190
  352. app-rn-runtime/components/container/accordion/accordion.props.js +0 -14
  353. app-rn-runtime/components/container/accordion/accordionpane/accordionpane.component.js +0 -85
  354. app-rn-runtime/components/container/accordion/accordionpane/accordionpane.props.js +0 -17
  355. app-rn-runtime/components/container/container.component.js +0 -80
  356. app-rn-runtime/components/container/container.props.js +0 -14
  357. app-rn-runtime/components/container/layoutgrid/gridcolumn/gridcolumn.props.js +0 -13
  358. app-rn-runtime/components/container/layoutgrid/gridrow/gridrow.props.js +0 -11
  359. app-rn-runtime/components/container/layoutgrid/layoutgrid.props.js +0 -11
  360. app-rn-runtime/components/container/linearlayout/linearlayout.props.js +0 -15
  361. app-rn-runtime/components/container/linearlayout/linearlayoutitem/linearlayoutitem.props.js +0 -13
  362. app-rn-runtime/components/container/panel/panel-content/panel-content.props.js +0 -11
  363. app-rn-runtime/components/container/panel/panel-footer/panel-footer.props.js +0 -11
  364. app-rn-runtime/components/container/panel/panel.component.js +0 -155
  365. app-rn-runtime/components/container/panel/panel.component.js.map +0 -1
  366. app-rn-runtime/components/container/panel/panel.props.js +0 -24
  367. app-rn-runtime/components/container/partial-host.component.js +0 -42
  368. app-rn-runtime/components/container/tabs/tabheader/tabheader.component.js +0 -198
  369. app-rn-runtime/components/container/tabs/tabheader/tabheader.component.js.map +0 -1
  370. app-rn-runtime/components/container/tabs/tabheader/tabheader.props.js +0 -13
  371. app-rn-runtime/components/container/tabs/tabheader/tabheader.props.js.map +0 -1
  372. app-rn-runtime/components/container/tabs/tabpane/tabpane.component.js +0 -81
  373. app-rn-runtime/components/container/tabs/tabpane/tabpane.props.js +0 -16
  374. app-rn-runtime/components/container/tabs/tabs.component.js +0 -281
  375. app-rn-runtime/components/container/tabs/tabs.component.js.map +0 -1
  376. app-rn-runtime/components/container/tabs/tabs.props.js +0 -13
  377. app-rn-runtime/components/container/tabs/tabs.props.js.map +0 -1
  378. app-rn-runtime/components/container/tile/tile.component.js +0 -49
  379. app-rn-runtime/components/container/tile/tile.props.js +0 -13
  380. app-rn-runtime/components/container/wizard/wizard.component.js +0 -343
  381. app-rn-runtime/components/container/wizard/wizard.component.js.map +0 -1
  382. app-rn-runtime/components/container/wizard/wizard.props.js +0 -23
  383. app-rn-runtime/components/container/wizard/wizard.styles.js +0 -313
  384. app-rn-runtime/components/container/wizard/wizard.styles.js.map +0 -1
  385. app-rn-runtime/components/container/wizard/wizardstep/wizardstep.component.js +0 -84
  386. app-rn-runtime/components/container/wizard/wizardstep/wizardstep.component.js.map +0 -1
  387. app-rn-runtime/components/container/wizard/wizardstep/wizardstep.props.js +0 -22
  388. app-rn-runtime/components/data/card/card-content/card-content.component.js +0 -45
  389. app-rn-runtime/components/data/card/card-content/card-content.props.js +0 -12
  390. app-rn-runtime/components/data/card/card-footer/card-footer.props.js +0 -11
  391. app-rn-runtime/components/data/card/card.component.js +0 -90
  392. app-rn-runtime/components/data/card/card.props.js +0 -27
  393. app-rn-runtime/components/data/form/form-action/form-action.component.js +0 -35
  394. app-rn-runtime/components/data/form/form-action/form-action.props.js +0 -18
  395. app-rn-runtime/components/data/form/form-body/form-body.props.js +0 -11
  396. app-rn-runtime/components/data/form/form-field/form-field.component.js +0 -246
  397. app-rn-runtime/components/data/form/form-field/form-field.props.js +0 -34
  398. app-rn-runtime/components/data/form/form-footer/form-footer.props.js +0 -11
  399. app-rn-runtime/components/data/form/form.component.js +0 -425
  400. app-rn-runtime/components/data/form/form.props.js +0 -31
  401. app-rn-runtime/components/data/list/list-action-template/list-action-template.props.js +0 -12
  402. app-rn-runtime/components/data/list/list-template/list-template.props.js +0 -12
  403. app-rn-runtime/components/data/list/list.component.js +0 -475
  404. app-rn-runtime/components/data/list/list.component.js.map +0 -1
  405. app-rn-runtime/components/data/list/list.props.js +0 -48
  406. app-rn-runtime/components/data/liveform/liveform.component.js +0 -98
  407. app-rn-runtime/components/device/barcodescanner/barcodescanner.component.js +0 -50
  408. app-rn-runtime/components/device/barcodescanner/barcodescanner.props.js +0 -18
  409. app-rn-runtime/components/device/camera/camera.component.js +0 -68
  410. app-rn-runtime/components/device/camera/camera.props.js +0 -23
  411. app-rn-runtime/components/dialogs/alertdialog/alertdialog.component.js +0 -72
  412. app-rn-runtime/components/dialogs/alertdialog/alertdialog.props.js +0 -24
  413. app-rn-runtime/components/dialogs/confirmdialog/confirmdialog.component.js +0 -78
  414. app-rn-runtime/components/dialogs/confirmdialog/confirmdialog.props.js +0 -24
  415. app-rn-runtime/components/dialogs/dialog/dialog.component.js +0 -102
  416. app-rn-runtime/components/dialogs/dialog/dialog.component.js.map +0 -1
  417. app-rn-runtime/components/dialogs/dialog/dialog.props.js +0 -25
  418. app-rn-runtime/components/dialogs/dialogactions/dialogactions.component.js +0 -21
  419. app-rn-runtime/components/dialogs/dialogactions/dialogactions.props.js +0 -11
  420. app-rn-runtime/components/dialogs/dialogcontent/dialogcontent.props.js +0 -11
  421. app-rn-runtime/components/input/basedataset/basedataset.component.js +0 -230
  422. app-rn-runtime/components/input/basedataset/basedataset.props.js +0 -31
  423. app-rn-runtime/components/input/baseinput/baseinput.component.js +0 -193
  424. app-rn-runtime/components/input/baseinput/baseinput.props.js +0 -30
  425. app-rn-runtime/components/input/basenumber/basenumber.component.js +0 -340
  426. app-rn-runtime/components/input/basenumber/basenumber.component.js.map +0 -1
  427. app-rn-runtime/components/input/basenumber/basenumber.props.js +0 -27
  428. app-rn-runtime/components/input/calendar/calendar.component.js +0 -164
  429. app-rn-runtime/components/input/calendar/calendar.props.js +0 -14
  430. app-rn-runtime/components/input/calendar/views/month-view.js +0 -191
  431. app-rn-runtime/components/input/calendar/views/month-view.js.map +0 -1
  432. app-rn-runtime/components/input/checkbox/checkbox.component.js +0 -121
  433. app-rn-runtime/components/input/checkbox/checkbox.props.js +0 -18
  434. app-rn-runtime/components/input/checkboxset/checkboxset.component.js +0 -144
  435. app-rn-runtime/components/input/checkboxset/checkboxset.props.js +0 -21
  436. app-rn-runtime/components/input/chips/chips.component.js +0 -296
  437. app-rn-runtime/components/input/chips/chips.component.js.map +0 -1
  438. app-rn-runtime/components/input/chips/chips.props.js +0 -19
  439. app-rn-runtime/components/input/composite/composite.props.js +0 -12
  440. app-rn-runtime/components/input/currency/currency.component.js +0 -113
  441. app-rn-runtime/components/input/currency/currency.props.js +0 -13
  442. app-rn-runtime/components/input/epoch/base-datetime.component.js +0 -473
  443. app-rn-runtime/components/input/epoch/date-picker.component.js +0 -136
  444. app-rn-runtime/components/input/epoch/date-picker.component.js.map +0 -1
  445. app-rn-runtime/components/input/epoch/datetime/datetime.props.js +0 -35
  446. app-rn-runtime/components/input/epoch/time/time.props.js +0 -15
  447. app-rn-runtime/components/input/epoch/wheel-date-picker.component.js +0 -198
  448. app-rn-runtime/components/input/epoch/wheel-time-picker.component.js +0 -107
  449. app-rn-runtime/components/input/epoch/wheelpicker/wheelpicker.component.js +0 -91
  450. app-rn-runtime/components/input/epoch/wheelpicker/wheelpicker.props.js +0 -17
  451. app-rn-runtime/components/input/epoch/wheelpickermodal/date/date-picker-modal.component.js +0 -79
  452. app-rn-runtime/components/input/epoch/wheelpickermodal/date/date-picker-modal.props.js +0 -20
  453. app-rn-runtime/components/input/epoch/wheelpickermodal/time/time-picker-modal.component.js +0 -77
  454. app-rn-runtime/components/input/epoch/wheelpickermodal/time/time-picker-modal.props.js +0 -19
  455. app-rn-runtime/components/input/fileupload/fileupload.component.js +0 -60
  456. app-rn-runtime/components/input/fileupload/fileupload.props.js +0 -17
  457. app-rn-runtime/components/input/number/number.component.js +0 -83
  458. app-rn-runtime/components/input/number/number.props.js +0 -13
  459. app-rn-runtime/components/input/radioset/radioset.component.js +0 -122
  460. app-rn-runtime/components/input/radioset/radioset.props.js +0 -20
  461. app-rn-runtime/components/input/rating/rating.component.js +0 -144
  462. app-rn-runtime/components/input/rating/rating.props.js +0 -21
  463. app-rn-runtime/components/input/select/select.component.js +0 -215
  464. app-rn-runtime/components/input/select/select.component.js.map +0 -1
  465. app-rn-runtime/components/input/select/select.props.js +0 -12
  466. app-rn-runtime/components/input/select/select.styles.js +0 -129
  467. app-rn-runtime/components/input/select/select.styles.js.map +0 -1
  468. app-rn-runtime/components/input/slider/slider.component.js +0 -444
  469. app-rn-runtime/components/input/slider/slider.component.js.map +0 -1
  470. app-rn-runtime/components/input/slider/slider.props.js +0 -20
  471. app-rn-runtime/components/input/switch/switch.component.js +0 -94
  472. app-rn-runtime/components/input/switch/switch.props.js +0 -13
  473. app-rn-runtime/components/input/text/text.component.js +0 -85
  474. app-rn-runtime/components/input/text/text.props.js +0 -15
  475. app-rn-runtime/components/input/textarea/textarea.component.js +0 -83
  476. app-rn-runtime/components/input/textarea/textarea.props.js +0 -14
  477. app-rn-runtime/components/input/toggle/toggle.component.js +0 -150
  478. app-rn-runtime/components/input/toggle/toggle.props.js +0 -22
  479. app-rn-runtime/components/navigation/appnavbar/appnavbar.component.js +0 -74
  480. app-rn-runtime/components/navigation/appnavbar/appnavbar.props.js +0 -21
  481. app-rn-runtime/components/navigation/basenav/basenav.component.js +0 -72
  482. app-rn-runtime/components/navigation/basenav/basenav.props.js +0 -18
  483. app-rn-runtime/components/navigation/menu/menu.component.js +0 -63
  484. app-rn-runtime/components/navigation/menu/menu.component.js.map +0 -1
  485. app-rn-runtime/components/navigation/menu/menu.props.js +0 -14
  486. app-rn-runtime/components/navigation/menu/menu.styles.js +0 -74
  487. app-rn-runtime/components/navigation/menu/menu.styles.js.map +0 -1
  488. app-rn-runtime/components/navigation/navbar/navbar.props.js +0 -16
  489. app-rn-runtime/components/navigation/navitem/navitem.component.js +0 -67
  490. app-rn-runtime/components/navigation/navitem/navitem.props.js +0 -19
  491. app-rn-runtime/components/navigation/popover/popover.component.js +0 -193
  492. app-rn-runtime/components/navigation/popover/popover.component.js.map +0 -1
  493. app-rn-runtime/components/navigation/popover/popover.props.js +0 -31
  494. app-rn-runtime/components/page/left-panel/left-panel.component.js +0 -48
  495. app-rn-runtime/components/page/left-panel/left-panel.props.js +0 -12
  496. app-rn-runtime/components/page/page-content/page-content.component.js +0 -93
  497. app-rn-runtime/components/page/page-content/page-content.component.js.map +0 -1
  498. app-rn-runtime/components/page/page-content/page-content.props.js +0 -12
  499. app-rn-runtime/components/page/page.component.js +0 -26
  500. app-rn-runtime/components/page/partial-container/partial-container.props.js +0 -12
  501. app-rn-runtime/components/page/tabbar/tabbar.component.js +0 -149
  502. app-rn-runtime/components/page/tabbar/tabbar.component.js.map +0 -1
  503. app-rn-runtime/components/page/tabbar/tabbar.props.js +0 -28
  504. app-rn-runtime/core/base.component.js +0 -485
  505. app-rn-runtime/core/base.component.js.map +0 -1
  506. app-rn-runtime/core/components/textinput.component.js +0 -197
  507. app-rn-runtime/core/constant.service.js +0 -22
  508. app-rn-runtime/core/event-notifier.js +0 -68
  509. app-rn-runtime/core/fixed-view.component.js +0 -67
  510. app-rn-runtime/core/imageSizeEstimator.js +0 -51
  511. app-rn-runtime/core/key.extractor.js +0 -21
  512. app-rn-runtime/core/logger.js +0 -123
  513. app-rn-runtime/core/network.service.js +0 -327
  514. app-rn-runtime/core/props.provider.js +0 -88
  515. app-rn-runtime/core/scroll-view.component.js +0 -52
  516. app-rn-runtime/core/storage.service.js +0 -38
  517. app-rn-runtime/core/tappable.component.js +0 -151
  518. app-rn-runtime/core/utils.js +0 -529
  519. app-rn-runtime/core/utils.js.map +0 -1
  520. app-rn-runtime/core/viewport.js +0 -45
  521. app-rn-runtime/core/wm-component-tree.js +0 -58
  522. app-rn-runtime/gestures/swipe.animation.js +0 -217
  523. app-rn-runtime/package.json +0 -277
  524. app-rn-runtime/runtime/App.js +0 -525
  525. app-rn-runtime/runtime/App.js.map +0 -1
  526. app-rn-runtime/runtime/base-fragment.component.js +0 -401
  527. app-rn-runtime/runtime/base-fragment.component.js.map +0 -1
  528. app-rn-runtime/runtime/base-page.component.js +0 -206
  529. app-rn-runtime/runtime/base-page.component.js.map +0 -1
  530. app-rn-runtime/runtime/base-partial.component.js +0 -63
  531. app-rn-runtime/runtime/base-prefab.component.js +0 -83
  532. app-rn-runtime/runtime/memo.component.js +0 -35
  533. app-rn-runtime/runtime/navigator/stack.navigator.js +0 -77
  534. app-rn-runtime/runtime/services/app-display-manager.service.js +0 -50
  535. app-rn-runtime/runtime/services/app-i18n.service.js +0 -81
  536. app-rn-runtime/runtime/services/app-i18n.service.js.map +0 -1
  537. app-rn-runtime/runtime/services/app-modal.service.js +0 -71
  538. app-rn-runtime/runtime/services/app-security.service.js +0 -256
  539. app-rn-runtime/runtime/services/app-spinner.service.js +0 -74
  540. app-rn-runtime/runtime/services/app-toast.service.js +0 -56
  541. app-rn-runtime/runtime/services/device/camera-service.js +0 -349
  542. app-rn-runtime/runtime/services/device/scan-service.js +0 -136
  543. app-rn-runtime/runtime/services/webprocess.service.js +0 -107
  544. app-rn-runtime/runtime/watcher.js +0 -147
  545. app-rn-runtime/styles/background.component.js +0 -311
  546. app-rn-runtime/styles/background.component.js.map +0 -1
  547. app-rn-runtime/styles/style-props.js +0 -93
  548. app-rn-runtime/styles/theme.js +0 -414
  549. app-rn-runtime/styles/theme.variables.js +0 -437
  550. app-rn-runtime/styles/theme.variables.js.map +0 -1
  551. app-rn-runtime/variables/base-variable.js +0 -125
  552. app-rn-runtime/variables/device/device/network-info.operation.js +0 -33
  553. app-rn-runtime/variables/live-variable.js +0 -130
  554. app-rn-runtime/variables/model-variable.js +0 -47
  555. app-rn-runtime/variables/service-variable.js +0 -143
  556. app-rn-runtime/variables/utils/inflight-queue.js +0 -114
  557. {app-rn-runtime → package}/actions/base-action.js +0 -0
  558. {app-rn-runtime → package}/actions/base-action.js.map +0 -0
  559. {app-rn-runtime → package}/actions/index.js +0 -0
  560. {app-rn-runtime → package}/actions/index.js.map +0 -0
  561. {app-rn-runtime → package}/actions/login-action.js +0 -0
  562. {app-rn-runtime → package}/actions/login-action.js.map +0 -0
  563. {app-rn-runtime → package}/actions/logout-action.js +0 -0
  564. {app-rn-runtime → package}/actions/logout-action.js.map +0 -0
  565. {app-rn-runtime → package}/actions/navigation-action.js +0 -0
  566. {app-rn-runtime → package}/actions/navigation-action.js.map +0 -0
  567. {app-rn-runtime → package}/actions/notification-action.js.map +0 -0
  568. {app-rn-runtime → package}/actions/timer-action.js.map +0 -0
  569. {app-rn-runtime → package}/components/advanced/carousel/carousel-content/carousel-content.component.js +0 -0
  570. {app-rn-runtime → package}/components/advanced/carousel/carousel-content/carousel-content.component.js.map +0 -0
  571. {app-rn-runtime → package}/components/advanced/carousel/carousel-content/carousel-content.props.js.map +0 -0
  572. {app-rn-runtime → package}/components/advanced/carousel/carousel-content/carousel-content.styles.js +0 -0
  573. {app-rn-runtime → package}/components/advanced/carousel/carousel-content/carousel-content.styles.js.map +0 -0
  574. {app-rn-runtime → package}/components/advanced/carousel/carousel-template/carousel-template.component.js +0 -0
  575. {app-rn-runtime → package}/components/advanced/carousel/carousel-template/carousel-template.component.js.map +0 -0
  576. {app-rn-runtime → package}/components/advanced/carousel/carousel-template/carousel-template.props.js.map +0 -0
  577. {app-rn-runtime → package}/components/advanced/carousel/carousel-template/carousel-template.styles.js +0 -0
  578. {app-rn-runtime → package}/components/advanced/carousel/carousel-template/carousel-template.styles.js.map +0 -0
  579. {app-rn-runtime → package}/components/advanced/login/login.component.js.map +0 -0
  580. {app-rn-runtime → package}/components/advanced/login/login.props.js.map +0 -0
  581. {app-rn-runtime → package}/components/advanced/login/login.styles.js +0 -0
  582. {app-rn-runtime → package}/components/advanced/login/login.styles.js.map +0 -0
  583. {app-rn-runtime → package}/components/advanced/network-info-toaster/network-info-toaster.component.js.map +0 -0
  584. {app-rn-runtime → package}/components/advanced/network-info-toaster/network-info-toaster.props.js.map +0 -0
  585. {app-rn-runtime → package}/components/advanced/network-info-toaster/network-info-toaster.styles.js +0 -0
  586. {app-rn-runtime → package}/components/advanced/network-info-toaster/network-info-toaster.styles.js.map +0 -0
  587. {app-rn-runtime → package}/components/advanced/webview/webview.props.js.map +0 -0
  588. {app-rn-runtime → package}/components/advanced/webview/webview.styles.js +0 -0
  589. {app-rn-runtime → package}/components/advanced/webview/webview.styles.js.map +0 -0
  590. {app-rn-runtime → package}/components/basic/anchor/anchor.component.js.map +0 -0
  591. {app-rn-runtime → package}/components/basic/anchor/anchor.props.js.map +0 -0
  592. {app-rn-runtime → package}/components/basic/anchor/anchor.styles.js +0 -0
  593. {app-rn-runtime → package}/components/basic/anchor/anchor.styles.js.map +0 -0
  594. {app-rn-runtime → package}/components/basic/animatedview.component.js.map +0 -0
  595. {app-rn-runtime → package}/components/basic/audio/audio.component.js.map +0 -0
  596. {app-rn-runtime → package}/components/basic/audio/audio.props.js.map +0 -0
  597. {app-rn-runtime → package}/components/basic/audio/audio.styles.js +0 -0
  598. {app-rn-runtime → package}/components/basic/audio/audio.styles.js.map +0 -0
  599. {app-rn-runtime → package}/components/basic/button/button.component.js.map +0 -0
  600. {app-rn-runtime → package}/components/basic/button/button.props.js.map +0 -0
  601. {app-rn-runtime → package}/components/basic/button/button.styles.js +0 -0
  602. {app-rn-runtime → package}/components/basic/button/button.styles.js.map +0 -0
  603. {app-rn-runtime → package}/components/basic/buttongroup/buttongroup.component.js +0 -0
  604. {app-rn-runtime → package}/components/basic/buttongroup/buttongroup.component.js.map +0 -0
  605. {app-rn-runtime → package}/components/basic/buttongroup/buttongroup.props.js.map +0 -0
  606. {app-rn-runtime → package}/components/basic/buttongroup/buttongroup.styles.js +0 -0
  607. {app-rn-runtime → package}/components/basic/buttongroup/buttongroup.styles.js.map +0 -0
  608. {app-rn-runtime → package}/components/basic/custom/custom.component.js +0 -0
  609. {app-rn-runtime → package}/components/basic/custom/custom.component.js.map +0 -0
  610. {app-rn-runtime → package}/components/basic/custom/custom.props.js.map +0 -0
  611. {app-rn-runtime → package}/components/basic/custom/custom.styles.js +0 -0
  612. {app-rn-runtime → package}/components/basic/custom/custom.styles.js.map +0 -0
  613. {app-rn-runtime → package}/components/basic/icon/icon.component.js.map +0 -0
  614. {app-rn-runtime → package}/components/basic/icon/icon.props.js.map +0 -0
  615. {app-rn-runtime → package}/components/basic/icon/icon.styles.js +0 -0
  616. {app-rn-runtime → package}/components/basic/icon/icon.styles.js.map +0 -0
  617. {app-rn-runtime → package}/components/basic/icon/streamline-light-icon/streamline-light-icon.component.js +0 -0
  618. {app-rn-runtime → package}/components/basic/icon/streamline-light-icon/streamline-light-icon.component.js.map +0 -0
  619. {app-rn-runtime → package}/components/basic/icon/streamline-light-icon/streamline-light-icon.ttf +0 -0
  620. {app-rn-runtime → package}/components/basic/icon/streamline-regular-icon/streamline-regular-icon.component.js +0 -0
  621. {app-rn-runtime → package}/components/basic/icon/streamline-regular-icon/streamline-regular-icon.component.js.map +0 -0
  622. {app-rn-runtime → package}/components/basic/icon/streamline-regular-icon/streamline-regular-icon.ttf +0 -0
  623. {app-rn-runtime → package}/components/basic/icon/wavicon/wavicon.component.js +0 -0
  624. {app-rn-runtime → package}/components/basic/icon/wavicon/wavicon.component.js.map +0 -0
  625. {app-rn-runtime → package}/components/basic/icon/wavicon/wavicon.ttf +0 -0
  626. {app-rn-runtime → package}/components/basic/label/label.component.js.map +0 -0
  627. {app-rn-runtime → package}/components/basic/label/label.props.js.map +0 -0
  628. {app-rn-runtime → package}/components/basic/lottie/lottie.component.js.map +0 -0
  629. {app-rn-runtime → package}/components/basic/lottie/lottie.props.js.map +0 -0
  630. {app-rn-runtime → package}/components/basic/lottie/lottie.styles.js +0 -0
  631. {app-rn-runtime → package}/components/basic/lottie/lottie.styles.js.map +0 -0
  632. {app-rn-runtime → package}/components/basic/message/message.component.js.map +0 -0
  633. {app-rn-runtime → package}/components/basic/message/message.props.js.map +0 -0
  634. {app-rn-runtime → package}/components/basic/message/message.styles.js +0 -0
  635. {app-rn-runtime → package}/components/basic/message/message.styles.js.map +0 -0
  636. {app-rn-runtime → package}/components/basic/modal/modal.component.js +0 -0
  637. {app-rn-runtime → package}/components/basic/modal/modal.component.js.map +0 -0
  638. {app-rn-runtime → package}/components/basic/modal/modal.props.js.map +0 -0
  639. {app-rn-runtime → package}/components/basic/modal/modal.styles.js +0 -0
  640. {app-rn-runtime → package}/components/basic/modal/modal.styles.js.map +0 -0
  641. {app-rn-runtime → package}/components/basic/picture/picture.styles.js +0 -0
  642. {app-rn-runtime → package}/components/basic/picture/picture.styles.js.map +0 -0
  643. {app-rn-runtime → package}/components/basic/progress-bar/progress-bar.component.js.map +0 -0
  644. {app-rn-runtime → package}/components/basic/progress-bar/progress-bar.props.js.map +0 -0
  645. {app-rn-runtime → package}/components/basic/progress-bar/progress-bar.styles.js +0 -0
  646. {app-rn-runtime → package}/components/basic/progress-bar/progress-bar.styles.js.map +0 -0
  647. {app-rn-runtime → package}/components/basic/progress-circle/progress-circle.component.js.map +0 -0
  648. {app-rn-runtime → package}/components/basic/progress-circle/progress-circle.props.js.map +0 -0
  649. {app-rn-runtime → package}/components/basic/progress-circle/progress-circle.styles.js +0 -0
  650. {app-rn-runtime → package}/components/basic/progress-circle/progress-circle.styles.js.map +0 -0
  651. {app-rn-runtime → package}/components/basic/search/local-data-provider.js.map +0 -0
  652. {app-rn-runtime → package}/components/basic/search/search.props.js.map +0 -0
  653. {app-rn-runtime → package}/components/basic/search/search.styles.js +0 -0
  654. {app-rn-runtime → package}/components/basic/search/search.styles.js.map +0 -0
  655. {app-rn-runtime → package}/components/basic/skeleton/skeleton.component.js.map +0 -0
  656. {app-rn-runtime → package}/components/basic/skeleton/skeleton.props.js.map +0 -0
  657. {app-rn-runtime → package}/components/basic/skeleton/skeleton.styles.js +0 -0
  658. {app-rn-runtime → package}/components/basic/skeleton/skeleton.styles.js.map +0 -0
  659. {app-rn-runtime → package}/components/basic/spinner/spinner.component.js.map +0 -0
  660. {app-rn-runtime → package}/components/basic/spinner/spinner.props.js.map +0 -0
  661. {app-rn-runtime → package}/components/basic/spinner/spinner.styles.js +0 -0
  662. {app-rn-runtime → package}/components/basic/spinner/spinner.styles.js.map +0 -0
  663. {app-rn-runtime → package}/components/basic/tooltip/tooltip.component.js +0 -0
  664. {app-rn-runtime → package}/components/basic/tooltip/tooltip.component.js.map +0 -0
  665. {app-rn-runtime → package}/components/basic/tooltip/tooltip.props.js.map +0 -0
  666. {app-rn-runtime → package}/components/basic/tooltip/tooltip.styles.js +0 -0
  667. {app-rn-runtime → package}/components/basic/tooltip/tooltip.styles.js.map +0 -0
  668. {app-rn-runtime → package}/components/basic/video/video.component.js.map +0 -0
  669. {app-rn-runtime → package}/components/basic/video/video.props.js.map +0 -0
  670. {app-rn-runtime → package}/components/basic/video/video.styles.js +0 -0
  671. {app-rn-runtime → package}/components/basic/video/video.styles.js.map +0 -0
  672. {app-rn-runtime → package}/components/chart/area-chart/area-chart.component.js.map +0 -0
  673. {app-rn-runtime → package}/components/chart/area-chart/area-chart.props.js.map +0 -0
  674. {app-rn-runtime → package}/components/chart/area-chart/area-chart.styles.js +0 -0
  675. {app-rn-runtime → package}/components/chart/area-chart/area-chart.styles.js.map +0 -0
  676. {app-rn-runtime → package}/components/chart/bar-chart/bar-chart.component.js.map +0 -0
  677. {app-rn-runtime → package}/components/chart/bar-chart/bar-chart.props.js.map +0 -0
  678. {app-rn-runtime → package}/components/chart/bar-chart/bar-chart.styles.js +0 -0
  679. {app-rn-runtime → package}/components/chart/bar-chart/bar-chart.styles.js.map +0 -0
  680. {app-rn-runtime → package}/components/chart/basechart.component.js.map +0 -0
  681. {app-rn-runtime → package}/components/chart/basechart.props.js.map +0 -0
  682. {app-rn-runtime → package}/components/chart/basechart.styles.js +0 -0
  683. {app-rn-runtime → package}/components/chart/basechart.styles.js.map +0 -0
  684. {app-rn-runtime → package}/components/chart/bubble-chart/bubble-chart.component.js.map +0 -0
  685. {app-rn-runtime → package}/components/chart/bubble-chart/bubble-chart.props.js.map +0 -0
  686. {app-rn-runtime → package}/components/chart/bubble-chart/bubble-chart.styles.js +0 -0
  687. {app-rn-runtime → package}/components/chart/bubble-chart/bubble-chart.styles.js.map +0 -0
  688. {app-rn-runtime → package}/components/chart/column-chart/column-chart.component.js +0 -0
  689. {app-rn-runtime → package}/components/chart/column-chart/column-chart.component.js.map +0 -0
  690. {app-rn-runtime → package}/components/chart/column-chart/column-chart.props.js +0 -0
  691. {app-rn-runtime → package}/components/chart/column-chart/column-chart.props.js.map +0 -0
  692. {app-rn-runtime → package}/components/chart/column-chart/column-chart.styles.js +0 -0
  693. {app-rn-runtime → package}/components/chart/column-chart/column-chart.styles.js.map +0 -0
  694. {app-rn-runtime → package}/components/chart/donut-chart/donut-chart.component.js +0 -0
  695. {app-rn-runtime → package}/components/chart/donut-chart/donut-chart.component.js.map +0 -0
  696. {app-rn-runtime → package}/components/chart/donut-chart/donut-chart.props.js.map +0 -0
  697. {app-rn-runtime → package}/components/chart/donut-chart/donut-chart.styles.js +0 -0
  698. {app-rn-runtime → package}/components/chart/donut-chart/donut-chart.styles.js.map +0 -0
  699. {app-rn-runtime → package}/components/chart/legend/legend.component.js +0 -0
  700. {app-rn-runtime → package}/components/chart/legend/legend.component.js.map +0 -0
  701. {app-rn-runtime → package}/components/chart/line-chart/line-chart.component.js.map +0 -0
  702. {app-rn-runtime → package}/components/chart/line-chart/line-chart.props.js.map +0 -0
  703. {app-rn-runtime → package}/components/chart/line-chart/line-chart.styles.js +0 -0
  704. {app-rn-runtime → package}/components/chart/line-chart/line-chart.styles.js.map +0 -0
  705. {app-rn-runtime → package}/components/chart/pie-chart/pie-chart.component.js.map +0 -0
  706. {app-rn-runtime → package}/components/chart/pie-chart/pie-chart.props.js.map +0 -0
  707. {app-rn-runtime → package}/components/chart/pie-chart/pie-chart.styles.js +0 -0
  708. {app-rn-runtime → package}/components/chart/pie-chart/pie-chart.styles.js.map +0 -0
  709. {app-rn-runtime → package}/components/chart/stack-chart/stack-chart.component.js.map +0 -0
  710. {app-rn-runtime → package}/components/chart/stack-chart/stack-chart.props.js.map +0 -0
  711. {app-rn-runtime → package}/components/chart/stack-chart/stack-chart.styles.js +0 -0
  712. {app-rn-runtime → package}/components/chart/stack-chart/stack-chart.styles.js.map +0 -0
  713. {app-rn-runtime → package}/components/chart/staticdata.js +0 -0
  714. {app-rn-runtime → package}/components/chart/staticdata.js.map +0 -0
  715. {app-rn-runtime → package}/components/chart/theme/chart.theme.js +0 -0
  716. {app-rn-runtime → package}/components/chart/theme/chart.theme.js.map +0 -0
  717. {app-rn-runtime → package}/components/container/accordion/accordion.component.js.map +0 -0
  718. {app-rn-runtime → package}/components/container/accordion/accordion.props.js.map +0 -0
  719. {app-rn-runtime → package}/components/container/accordion/accordion.styles.js +0 -0
  720. {app-rn-runtime → package}/components/container/accordion/accordion.styles.js.map +0 -0
  721. {app-rn-runtime → package}/components/container/accordion/accordionpane/accordionpane.component.js.map +0 -0
  722. {app-rn-runtime → package}/components/container/accordion/accordionpane/accordionpane.props.js.map +0 -0
  723. {app-rn-runtime → package}/components/container/accordion/accordionpane/accordionpane.styles.js +0 -0
  724. {app-rn-runtime → package}/components/container/accordion/accordionpane/accordionpane.styles.js.map +0 -0
  725. {app-rn-runtime → package}/components/container/container.component.js.map +0 -0
  726. {app-rn-runtime → package}/components/container/container.props.js.map +0 -0
  727. {app-rn-runtime → package}/components/container/container.styles.js +0 -0
  728. {app-rn-runtime → package}/components/container/container.styles.js.map +0 -0
  729. {app-rn-runtime → package}/components/container/layoutgrid/gridcolumn/gridcolumn.component.js +0 -0
  730. {app-rn-runtime → package}/components/container/layoutgrid/gridcolumn/gridcolumn.component.js.map +0 -0
  731. {app-rn-runtime → package}/components/container/layoutgrid/gridcolumn/gridcolumn.props.js.map +0 -0
  732. {app-rn-runtime → package}/components/container/layoutgrid/gridcolumn/gridcolumn.styles.js +0 -0
  733. {app-rn-runtime → package}/components/container/layoutgrid/gridcolumn/gridcolumn.styles.js.map +0 -0
  734. {app-rn-runtime → package}/components/container/layoutgrid/gridrow/gridrow.component.js +0 -0
  735. {app-rn-runtime → package}/components/container/layoutgrid/gridrow/gridrow.component.js.map +0 -0
  736. {app-rn-runtime → package}/components/container/layoutgrid/gridrow/gridrow.props.js.map +0 -0
  737. {app-rn-runtime → package}/components/container/layoutgrid/gridrow/gridrow.styles.js +0 -0
  738. {app-rn-runtime → package}/components/container/layoutgrid/gridrow/gridrow.styles.js.map +0 -0
  739. {app-rn-runtime → package}/components/container/layoutgrid/layoutgrid.component.js +0 -0
  740. {app-rn-runtime → package}/components/container/layoutgrid/layoutgrid.component.js.map +0 -0
  741. {app-rn-runtime → package}/components/container/layoutgrid/layoutgrid.props.js.map +0 -0
  742. {app-rn-runtime → package}/components/container/layoutgrid/layoutgrid.styles.js +0 -0
  743. {app-rn-runtime → package}/components/container/layoutgrid/layoutgrid.styles.js.map +0 -0
  744. {app-rn-runtime → package}/components/container/linearlayout/linearlayout.component.js +0 -0
  745. {app-rn-runtime → package}/components/container/linearlayout/linearlayout.component.js.map +0 -0
  746. {app-rn-runtime → package}/components/container/linearlayout/linearlayout.props.js.map +0 -0
  747. {app-rn-runtime → package}/components/container/linearlayout/linearlayout.styles.js +0 -0
  748. {app-rn-runtime → package}/components/container/linearlayout/linearlayout.styles.js.map +0 -0
  749. {app-rn-runtime → package}/components/container/linearlayout/linearlayoutitem/linearlayoutitem.component.js +0 -0
  750. {app-rn-runtime → package}/components/container/linearlayout/linearlayoutitem/linearlayoutitem.component.js.map +0 -0
  751. {app-rn-runtime → package}/components/container/linearlayout/linearlayoutitem/linearlayoutitem.props.js.map +0 -0
  752. {app-rn-runtime → package}/components/container/linearlayout/linearlayoutitem/linearlayoutitem.styles.js +0 -0
  753. {app-rn-runtime → package}/components/container/linearlayout/linearlayoutitem/linearlayoutitem.styles.js.map +0 -0
  754. {app-rn-runtime → package}/components/container/panel/collapsible-pane.component.js +0 -0
  755. {app-rn-runtime → package}/components/container/panel/collapsible-pane.component.js.map +0 -0
  756. {app-rn-runtime → package}/components/container/panel/panel-content/panel-content.component.js +0 -0
  757. {app-rn-runtime → package}/components/container/panel/panel-content/panel-content.component.js.map +0 -0
  758. {app-rn-runtime → package}/components/container/panel/panel-content/panel-content.props.js.map +0 -0
  759. {app-rn-runtime → package}/components/container/panel/panel-content/panel-content.styles.js +0 -0
  760. {app-rn-runtime → package}/components/container/panel/panel-content/panel-content.styles.js.map +0 -0
  761. {app-rn-runtime → package}/components/container/panel/panel-footer/panel-footer.component.js +0 -0
  762. {app-rn-runtime → package}/components/container/panel/panel-footer/panel-footer.component.js.map +0 -0
  763. {app-rn-runtime → package}/components/container/panel/panel-footer/panel-footer.props.js.map +0 -0
  764. {app-rn-runtime → package}/components/container/panel/panel-footer/panel-footer.styles.js +0 -0
  765. {app-rn-runtime → package}/components/container/panel/panel-footer/panel-footer.styles.js.map +0 -0
  766. {app-rn-runtime → package}/components/container/panel/panel.props.js.map +0 -0
  767. {app-rn-runtime → package}/components/container/panel/panel.styles.js +0 -0
  768. {app-rn-runtime → package}/components/container/panel/panel.styles.js.map +0 -0
  769. {app-rn-runtime → package}/components/container/partial-host.component.js.map +0 -0
  770. {app-rn-runtime → package}/components/container/tabs/tabheader/tabheader.styles.js +0 -0
  771. {app-rn-runtime → package}/components/container/tabs/tabheader/tabheader.styles.js.map +0 -0
  772. {app-rn-runtime → package}/components/container/tabs/tabpane/tabpane.component.js.map +0 -0
  773. {app-rn-runtime → package}/components/container/tabs/tabpane/tabpane.props.js.map +0 -0
  774. {app-rn-runtime → package}/components/container/tabs/tabpane/tabpane.styles.js +0 -0
  775. {app-rn-runtime → package}/components/container/tabs/tabpane/tabpane.styles.js.map +0 -0
  776. {app-rn-runtime → package}/components/container/tabs/tabs.styles.js +0 -0
  777. {app-rn-runtime → package}/components/container/tabs/tabs.styles.js.map +0 -0
  778. {app-rn-runtime → package}/components/container/tile/tile.component.js.map +0 -0
  779. {app-rn-runtime → package}/components/container/tile/tile.props.js.map +0 -0
  780. {app-rn-runtime → package}/components/container/tile/tile.styles.js +0 -0
  781. {app-rn-runtime → package}/components/container/tile/tile.styles.js.map +0 -0
  782. {app-rn-runtime → package}/components/container/wizard/wizard.props.js.map +0 -0
  783. {app-rn-runtime → package}/components/container/wizard/wizardstep/wizardstep.props.js.map +0 -0
  784. {app-rn-runtime → package}/components/container/wizard/wizardstep/wizardstep.styles.js +0 -0
  785. {app-rn-runtime → package}/components/container/wizard/wizardstep/wizardstep.styles.js.map +0 -0
  786. {app-rn-runtime → package}/components/data/card/card-content/card-content.component.js.map +0 -0
  787. {app-rn-runtime → package}/components/data/card/card-content/card-content.props.js.map +0 -0
  788. {app-rn-runtime → package}/components/data/card/card-content/card-content.styles.js +0 -0
  789. {app-rn-runtime → package}/components/data/card/card-content/card-content.styles.js.map +0 -0
  790. {app-rn-runtime → package}/components/data/card/card-footer/card-footer.component.js +0 -0
  791. {app-rn-runtime → package}/components/data/card/card-footer/card-footer.component.js.map +0 -0
  792. {app-rn-runtime → package}/components/data/card/card-footer/card-footer.props.js.map +0 -0
  793. {app-rn-runtime → package}/components/data/card/card-footer/card-footer.styles.js +0 -0
  794. {app-rn-runtime → package}/components/data/card/card-footer/card-footer.styles.js.map +0 -0
  795. {app-rn-runtime → package}/components/data/card/card.component.js.map +0 -0
  796. {app-rn-runtime → package}/components/data/card/card.props.js.map +0 -0
  797. {app-rn-runtime → package}/components/data/card/card.styles.js +0 -0
  798. {app-rn-runtime → package}/components/data/card/card.styles.js.map +0 -0
  799. {app-rn-runtime → package}/components/data/form/form-action/form-action.component.js.map +0 -0
  800. {app-rn-runtime → package}/components/data/form/form-action/form-action.props.js.map +0 -0
  801. {app-rn-runtime → package}/components/data/form/form-action/form-action.styles.js +0 -0
  802. {app-rn-runtime → package}/components/data/form/form-action/form-action.styles.js.map +0 -0
  803. {app-rn-runtime → package}/components/data/form/form-body/form-body.component.js +0 -0
  804. {app-rn-runtime → package}/components/data/form/form-body/form-body.component.js.map +0 -0
  805. {app-rn-runtime → package}/components/data/form/form-body/form-body.props.js.map +0 -0
  806. {app-rn-runtime → package}/components/data/form/form-body/form-body.styles.js +0 -0
  807. {app-rn-runtime → package}/components/data/form/form-body/form-body.styles.js.map +0 -0
  808. {app-rn-runtime → package}/components/data/form/form-field/form-field.component.js.map +0 -0
  809. {app-rn-runtime → package}/components/data/form/form-field/form-field.props.js.map +0 -0
  810. {app-rn-runtime → package}/components/data/form/form-field/form-field.styles.js +0 -0
  811. {app-rn-runtime → package}/components/data/form/form-field/form-field.styles.js.map +0 -0
  812. {app-rn-runtime → package}/components/data/form/form-footer/form-footer.component.js +0 -0
  813. {app-rn-runtime → package}/components/data/form/form-footer/form-footer.component.js.map +0 -0
  814. {app-rn-runtime → package}/components/data/form/form-footer/form-footer.props.js.map +0 -0
  815. {app-rn-runtime → package}/components/data/form/form-footer/form-footer.styles.js +0 -0
  816. {app-rn-runtime → package}/components/data/form/form-footer/form-footer.styles.js.map +0 -0
  817. {app-rn-runtime → package}/components/data/form/form.component.js.map +0 -0
  818. {app-rn-runtime → package}/components/data/form/form.props.js.map +0 -0
  819. {app-rn-runtime → package}/components/data/form/form.styles.js +0 -0
  820. {app-rn-runtime → package}/components/data/form/form.styles.js.map +0 -0
  821. {app-rn-runtime → package}/components/data/list/list-action-template/list-action-template.component.js +0 -0
  822. {app-rn-runtime → package}/components/data/list/list-action-template/list-action-template.component.js.map +0 -0
  823. {app-rn-runtime → package}/components/data/list/list-action-template/list-action-template.props.js.map +0 -0
  824. {app-rn-runtime → package}/components/data/list/list-action-template/list-action-template.styles.js +0 -0
  825. {app-rn-runtime → package}/components/data/list/list-action-template/list-action-template.styles.js.map +0 -0
  826. {app-rn-runtime → package}/components/data/list/list-template/list-template.component.js +0 -0
  827. {app-rn-runtime → package}/components/data/list/list-template/list-template.component.js.map +0 -0
  828. {app-rn-runtime → package}/components/data/list/list-template/list-template.props.js.map +0 -0
  829. {app-rn-runtime → package}/components/data/list/list-template/list-template.styles.js +0 -0
  830. {app-rn-runtime → package}/components/data/list/list-template/list-template.styles.js.map +0 -0
  831. {app-rn-runtime → package}/components/data/list/list.props.js.map +0 -0
  832. {app-rn-runtime → package}/components/data/list/list.styles.js +0 -0
  833. {app-rn-runtime → package}/components/data/list/list.styles.js.map +0 -0
  834. {app-rn-runtime → package}/components/data/liveform/liveform.component.js.map +0 -0
  835. {app-rn-runtime → package}/components/device/barcodescanner/barcodescanner.component.js.map +0 -0
  836. {app-rn-runtime → package}/components/device/barcodescanner/barcodescanner.props.js.map +0 -0
  837. {app-rn-runtime → package}/components/device/barcodescanner/barcodescanner.styles.js +0 -0
  838. {app-rn-runtime → package}/components/device/barcodescanner/barcodescanner.styles.js.map +0 -0
  839. {app-rn-runtime → package}/components/device/camera/camera.component.js.map +0 -0
  840. {app-rn-runtime → package}/components/device/camera/camera.props.js.map +0 -0
  841. {app-rn-runtime → package}/components/device/camera/camera.styles.js +0 -0
  842. {app-rn-runtime → package}/components/device/camera/camera.styles.js.map +0 -0
  843. {app-rn-runtime → package}/components/dialogs/alertdialog/alertdialog.component.js.map +0 -0
  844. {app-rn-runtime → package}/components/dialogs/alertdialog/alertdialog.props.js.map +0 -0
  845. {app-rn-runtime → package}/components/dialogs/alertdialog/alertdialog.styles.js +0 -0
  846. {app-rn-runtime → package}/components/dialogs/alertdialog/alertdialog.styles.js.map +0 -0
  847. {app-rn-runtime → package}/components/dialogs/confirmdialog/confirmdialog.component.js.map +0 -0
  848. {app-rn-runtime → package}/components/dialogs/confirmdialog/confirmdialog.props.js.map +0 -0
  849. {app-rn-runtime → package}/components/dialogs/confirmdialog/confirmdialog.styles.js +0 -0
  850. {app-rn-runtime → package}/components/dialogs/confirmdialog/confirmdialog.styles.js.map +0 -0
  851. {app-rn-runtime → package}/components/dialogs/dialog/dialog.props.js.map +0 -0
  852. {app-rn-runtime → package}/components/dialogs/dialog/dialog.styles.js +0 -0
  853. {app-rn-runtime → package}/components/dialogs/dialog/dialog.styles.js.map +0 -0
  854. {app-rn-runtime → package}/components/dialogs/dialogactions/dialogactions.component.js.map +0 -0
  855. {app-rn-runtime → package}/components/dialogs/dialogactions/dialogactions.props.js.map +0 -0
  856. {app-rn-runtime → package}/components/dialogs/dialogactions/dialogactions.styles.js +0 -0
  857. {app-rn-runtime → package}/components/dialogs/dialogactions/dialogactions.styles.js.map +0 -0
  858. {app-rn-runtime → package}/components/dialogs/dialogcontent/dialogcontent.component.js +0 -0
  859. {app-rn-runtime → package}/components/dialogs/dialogcontent/dialogcontent.component.js.map +0 -0
  860. {app-rn-runtime → package}/components/dialogs/dialogcontent/dialogcontent.props.js.map +0 -0
  861. {app-rn-runtime → package}/components/dialogs/dialogcontent/dialogcontent.styles.js +0 -0
  862. {app-rn-runtime → package}/components/dialogs/dialogcontent/dialogcontent.styles.js.map +0 -0
  863. {app-rn-runtime → package}/components/input/basedataset/basedataset.component.js.map +0 -0
  864. {app-rn-runtime → package}/components/input/basedataset/basedataset.props.js.map +0 -0
  865. {app-rn-runtime → package}/components/input/basedataset/basedataset.styles.js +0 -0
  866. {app-rn-runtime → package}/components/input/basedataset/basedataset.styles.js.map +0 -0
  867. {app-rn-runtime → package}/components/input/baseinput/baseinput.component.js.map +0 -0
  868. {app-rn-runtime → package}/components/input/baseinput/baseinput.props.js.map +0 -0
  869. {app-rn-runtime → package}/components/input/baseinput/baseinput.styles.js +0 -0
  870. {app-rn-runtime → package}/components/input/baseinput/baseinput.styles.js.map +0 -0
  871. {app-rn-runtime → package}/components/input/basenumber/basenumber.props.js.map +0 -0
  872. {app-rn-runtime → package}/components/input/basenumber/basenumber.styles.js +0 -0
  873. {app-rn-runtime → package}/components/input/basenumber/basenumber.styles.js.map +0 -0
  874. {app-rn-runtime → package}/components/input/calendar/calendar.component.js.map +0 -0
  875. {app-rn-runtime → package}/components/input/calendar/calendar.props.js.map +0 -0
  876. {app-rn-runtime → package}/components/input/calendar/calendar.styles.js +0 -0
  877. {app-rn-runtime → package}/components/input/calendar/calendar.styles.js.map +0 -0
  878. {app-rn-runtime → package}/components/input/calendar/views/month-view.styles.js +0 -0
  879. {app-rn-runtime → package}/components/input/calendar/views/month-view.styles.js.map +0 -0
  880. {app-rn-runtime → package}/components/input/checkbox/checkbox.component.js.map +0 -0
  881. {app-rn-runtime → package}/components/input/checkbox/checkbox.props.js.map +0 -0
  882. {app-rn-runtime → package}/components/input/checkbox/checkbox.styles.js +0 -0
  883. {app-rn-runtime → package}/components/input/checkbox/checkbox.styles.js.map +0 -0
  884. {app-rn-runtime → package}/components/input/checkboxset/checkboxset.component.js.map +0 -0
  885. {app-rn-runtime → package}/components/input/checkboxset/checkboxset.props.js.map +0 -0
  886. {app-rn-runtime → package}/components/input/checkboxset/checkboxset.styles.js +0 -0
  887. {app-rn-runtime → package}/components/input/checkboxset/checkboxset.styles.js.map +0 -0
  888. {app-rn-runtime → package}/components/input/chips/chips.props.js.map +0 -0
  889. {app-rn-runtime → package}/components/input/chips/chips.styles.js +0 -0
  890. {app-rn-runtime → package}/components/input/chips/chips.styles.js.map +0 -0
  891. {app-rn-runtime → package}/components/input/composite/composite.component.js +0 -0
  892. {app-rn-runtime → package}/components/input/composite/composite.component.js.map +0 -0
  893. {app-rn-runtime → package}/components/input/composite/composite.props.js.map +0 -0
  894. {app-rn-runtime → package}/components/input/composite/composite.styles.js +0 -0
  895. {app-rn-runtime → package}/components/input/composite/composite.styles.js.map +0 -0
  896. {app-rn-runtime → package}/components/input/currency/currency.component.js.map +0 -0
  897. {app-rn-runtime → package}/components/input/currency/currency.props.js.map +0 -0
  898. {app-rn-runtime → package}/components/input/currency/currency.styles.js +0 -0
  899. {app-rn-runtime → package}/components/input/currency/currency.styles.js.map +0 -0
  900. {app-rn-runtime → package}/components/input/epoch/base-datetime.component.js.map +0 -0
  901. {app-rn-runtime → package}/components/input/epoch/date/date.component.js +0 -0
  902. {app-rn-runtime → package}/components/input/epoch/date/date.component.js.map +0 -0
  903. {app-rn-runtime → package}/components/input/epoch/date/date.props.js +0 -0
  904. {app-rn-runtime → package}/components/input/epoch/date/date.props.js.map +0 -0
  905. {app-rn-runtime → package}/components/input/epoch/date/date.styles.js +0 -0
  906. {app-rn-runtime → package}/components/input/epoch/date/date.styles.js.map +0 -0
  907. {app-rn-runtime → package}/components/input/epoch/datetime/datetime.component.js +0 -0
  908. {app-rn-runtime → package}/components/input/epoch/datetime/datetime.component.js.map +0 -0
  909. {app-rn-runtime → package}/components/input/epoch/datetime/datetime.props.js.map +0 -0
  910. {app-rn-runtime → package}/components/input/epoch/datetime/datetime.styles.js +0 -0
  911. {app-rn-runtime → package}/components/input/epoch/datetime/datetime.styles.js.map +0 -0
  912. {app-rn-runtime → package}/components/input/epoch/time/time.component.js +0 -0
  913. {app-rn-runtime → package}/components/input/epoch/time/time.component.js.map +0 -0
  914. {app-rn-runtime → package}/components/input/epoch/time/time.props.js.map +0 -0
  915. {app-rn-runtime → package}/components/input/epoch/time/time.styles.js +0 -0
  916. {app-rn-runtime → package}/components/input/epoch/time/time.styles.js.map +0 -0
  917. {app-rn-runtime → package}/components/input/epoch/wheel-date-picker.component.js.map +0 -0
  918. {app-rn-runtime → package}/components/input/epoch/wheel-time-picker.component.js.map +0 -0
  919. {app-rn-runtime → package}/components/input/epoch/wheelpicker/wheelpicker.component.js.map +0 -0
  920. {app-rn-runtime → package}/components/input/epoch/wheelpicker/wheelpicker.props.js.map +0 -0
  921. {app-rn-runtime → package}/components/input/epoch/wheelpicker/wheelpicker.styles.js +0 -0
  922. {app-rn-runtime → package}/components/input/epoch/wheelpicker/wheelpicker.styles.js.map +0 -0
  923. {app-rn-runtime → package}/components/input/epoch/wheelpickermodal/date/date-picker-modal.component.js.map +0 -0
  924. {app-rn-runtime → package}/components/input/epoch/wheelpickermodal/date/date-picker-modal.props.js.map +0 -0
  925. {app-rn-runtime → package}/components/input/epoch/wheelpickermodal/styles/datetime-picker-modal.styles.js +0 -0
  926. {app-rn-runtime → package}/components/input/epoch/wheelpickermodal/styles/datetime-picker-modal.styles.js.map +0 -0
  927. {app-rn-runtime → package}/components/input/epoch/wheelpickermodal/time/time-picker-modal.component.js.map +0 -0
  928. {app-rn-runtime → package}/components/input/epoch/wheelpickermodal/time/time-picker-modal.props.js.map +0 -0
  929. {app-rn-runtime → package}/components/input/fileupload/fileupload.component.js.map +0 -0
  930. {app-rn-runtime → package}/components/input/fileupload/fileupload.props.js.map +0 -0
  931. {app-rn-runtime → package}/components/input/fileupload/fileupload.styles.js +0 -0
  932. {app-rn-runtime → package}/components/input/fileupload/fileupload.styles.js.map +0 -0
  933. {app-rn-runtime → package}/components/input/number/number.component.js.map +0 -0
  934. {app-rn-runtime → package}/components/input/number/number.props.js.map +0 -0
  935. {app-rn-runtime → package}/components/input/number/number.styles.js +0 -0
  936. {app-rn-runtime → package}/components/input/number/number.styles.js.map +0 -0
  937. {app-rn-runtime → package}/components/input/radioset/radioset.component.js.map +0 -0
  938. {app-rn-runtime → package}/components/input/radioset/radioset.props.js.map +0 -0
  939. {app-rn-runtime → package}/components/input/radioset/radioset.styles.js +0 -0
  940. {app-rn-runtime → package}/components/input/radioset/radioset.styles.js.map +0 -0
  941. {app-rn-runtime → package}/components/input/rating/rating.component.js.map +0 -0
  942. {app-rn-runtime → package}/components/input/rating/rating.props.js.map +0 -0
  943. {app-rn-runtime → package}/components/input/rating/rating.styles.js +0 -0
  944. {app-rn-runtime → package}/components/input/rating/rating.styles.js.map +0 -0
  945. {app-rn-runtime → package}/components/input/select/select.props.js.map +0 -0
  946. {app-rn-runtime → package}/components/input/slider/slider.props.js.map +0 -0
  947. {app-rn-runtime → package}/components/input/slider/slider.styles.js +0 -0
  948. {app-rn-runtime → package}/components/input/slider/slider.styles.js.map +0 -0
  949. {app-rn-runtime → package}/components/input/switch/switch.component.js.map +0 -0
  950. {app-rn-runtime → package}/components/input/switch/switch.props.js.map +0 -0
  951. {app-rn-runtime → package}/components/input/switch/switch.styles.js +0 -0
  952. {app-rn-runtime → package}/components/input/switch/switch.styles.js.map +0 -0
  953. {app-rn-runtime → package}/components/input/text/text.component.js.map +0 -0
  954. {app-rn-runtime → package}/components/input/text/text.props.js.map +0 -0
  955. {app-rn-runtime → package}/components/input/text/text.styles.js +0 -0
  956. {app-rn-runtime → package}/components/input/text/text.styles.js.map +0 -0
  957. {app-rn-runtime → package}/components/input/textarea/textarea.component.js.map +0 -0
  958. {app-rn-runtime → package}/components/input/textarea/textarea.props.js.map +0 -0
  959. {app-rn-runtime → package}/components/input/textarea/textarea.styles.js +0 -0
  960. {app-rn-runtime → package}/components/input/textarea/textarea.styles.js.map +0 -0
  961. {app-rn-runtime → package}/components/input/toggle/toggle.component.js.map +0 -0
  962. {app-rn-runtime → package}/components/input/toggle/toggle.props.js.map +0 -0
  963. {app-rn-runtime → package}/components/input/toggle/toggle.styles.js +0 -0
  964. {app-rn-runtime → package}/components/input/toggle/toggle.styles.js.map +0 -0
  965. {app-rn-runtime → package}/components/navigation/appnavbar/appnavbar.component.js.map +0 -0
  966. {app-rn-runtime → package}/components/navigation/appnavbar/appnavbar.props.js.map +0 -0
  967. {app-rn-runtime → package}/components/navigation/appnavbar/appnavbar.styles.js +0 -0
  968. {app-rn-runtime → package}/components/navigation/appnavbar/appnavbar.styles.js.map +0 -0
  969. {app-rn-runtime → package}/components/navigation/basenav/basenav.component.js.map +0 -0
  970. {app-rn-runtime → package}/components/navigation/basenav/basenav.props.js.map +0 -0
  971. {app-rn-runtime → package}/components/navigation/basenav/basenav.styles.js +0 -0
  972. {app-rn-runtime → package}/components/navigation/basenav/basenav.styles.js.map +0 -0
  973. {app-rn-runtime → package}/components/navigation/menu/menu.props.js.map +0 -0
  974. {app-rn-runtime → package}/components/navigation/navbar/navbar.component.js +0 -0
  975. {app-rn-runtime → package}/components/navigation/navbar/navbar.component.js.map +0 -0
  976. {app-rn-runtime → package}/components/navigation/navbar/navbar.props.js.map +0 -0
  977. {app-rn-runtime → package}/components/navigation/navbar/navbar.styles.js +0 -0
  978. {app-rn-runtime → package}/components/navigation/navbar/navbar.styles.js.map +0 -0
  979. {app-rn-runtime → package}/components/navigation/navitem/navitem.component.js.map +0 -0
  980. {app-rn-runtime → package}/components/navigation/navitem/navitem.props.js.map +0 -0
  981. {app-rn-runtime → package}/components/navigation/navitem/navitem.styles.js +0 -0
  982. {app-rn-runtime → package}/components/navigation/navitem/navitem.styles.js.map +0 -0
  983. {app-rn-runtime → package}/components/navigation/popover/popover.props.js.map +0 -0
  984. {app-rn-runtime → package}/components/navigation/popover/popover.styles.js +0 -0
  985. {app-rn-runtime → package}/components/navigation/popover/popover.styles.js.map +0 -0
  986. {app-rn-runtime → package}/components/page/content/content.component.js +0 -0
  987. {app-rn-runtime → package}/components/page/content/content.component.js.map +0 -0
  988. {app-rn-runtime → package}/components/page/content/content.props.js +0 -0
  989. {app-rn-runtime → package}/components/page/content/content.props.js.map +0 -0
  990. {app-rn-runtime → package}/components/page/content/content.styles.js +0 -0
  991. {app-rn-runtime → package}/components/page/content/content.styles.js.map +0 -0
  992. {app-rn-runtime → package}/components/page/left-panel/left-panel.component.js.map +0 -0
  993. {app-rn-runtime → package}/components/page/left-panel/left-panel.props.js.map +0 -0
  994. {app-rn-runtime → package}/components/page/left-panel/left-panel.styles.js +0 -0
  995. {app-rn-runtime → package}/components/page/left-panel/left-panel.styles.js.map +0 -0
  996. {app-rn-runtime → package}/components/page/page-content/page-content.props.js.map +0 -0
  997. {app-rn-runtime → package}/components/page/page-content/page-content.styles.js +0 -0
  998. {app-rn-runtime → package}/components/page/page-content/page-content.styles.js.map +0 -0
  999. {app-rn-runtime → package}/components/page/page.component.js.map +0 -0
  1000. {app-rn-runtime → package}/components/page/page.props.js +0 -0
  1001. {app-rn-runtime → package}/components/page/page.props.js.map +0 -0
  1002. {app-rn-runtime → package}/components/page/page.styles.js +0 -0
  1003. {app-rn-runtime → package}/components/page/page.styles.js.map +0 -0
  1004. {app-rn-runtime → package}/components/page/partial/partial.component.js +0 -0
  1005. {app-rn-runtime → package}/components/page/partial/partial.component.js.map +0 -0
  1006. {app-rn-runtime → package}/components/page/partial/partial.props.js +0 -0
  1007. {app-rn-runtime → package}/components/page/partial/partial.props.js.map +0 -0
  1008. {app-rn-runtime → package}/components/page/partial/partial.styles.js +0 -0
  1009. {app-rn-runtime → package}/components/page/partial/partial.styles.js.map +0 -0
  1010. {app-rn-runtime → package}/components/page/partial-container/partial-container.component.js +0 -0
  1011. {app-rn-runtime → package}/components/page/partial-container/partial-container.component.js.map +0 -0
  1012. {app-rn-runtime → package}/components/page/partial-container/partial-container.props.js.map +0 -0
  1013. {app-rn-runtime → package}/components/page/partial-container/partial-container.styles.js +0 -0
  1014. {app-rn-runtime → package}/components/page/partial-container/partial-container.styles.js.map +0 -0
  1015. {app-rn-runtime → package}/components/page/tabbar/curve.js +0 -0
  1016. {app-rn-runtime → package}/components/page/tabbar/curve.js.map +0 -0
  1017. {app-rn-runtime → package}/components/page/tabbar/tabbar.props.js.map +0 -0
  1018. {app-rn-runtime → package}/components/page/tabbar/tabbar.styles.js +0 -0
  1019. {app-rn-runtime → package}/components/page/tabbar/tabbar.styles.js.map +0 -0
  1020. {app-rn-runtime → package}/components/prefab/prefab-container.component.js +0 -0
  1021. {app-rn-runtime → package}/components/prefab/prefab-container.component.js.map +0 -0
  1022. {app-rn-runtime → package}/components/prefab/prefab-container.props.js +0 -0
  1023. {app-rn-runtime → package}/components/prefab/prefab-container.props.js.map +0 -0
  1024. {app-rn-runtime → package}/components/prefab/prefab-container.styles.js +0 -0
  1025. {app-rn-runtime → package}/components/prefab/prefab-container.styles.js.map +0 -0
  1026. {app-rn-runtime → package}/core/AppConfig.js +0 -0
  1027. {app-rn-runtime → package}/core/AppConfig.js.map +0 -0
  1028. {app-rn-runtime → package}/core/accessibility.js +0 -0
  1029. {app-rn-runtime → package}/core/accessibility.js.map +0 -0
  1030. {app-rn-runtime → package}/core/asset.provider.js +0 -0
  1031. {app-rn-runtime → package}/core/asset.provider.js.map +0 -0
  1032. {app-rn-runtime → package}/core/components/floatinglabel.component.js +0 -0
  1033. {app-rn-runtime → package}/core/components/floatinglabel.component.js.map +0 -0
  1034. {app-rn-runtime → package}/core/components/textinput.component.js.map +0 -0
  1035. {app-rn-runtime → package}/core/constant.service.js.map +0 -0
  1036. {app-rn-runtime → package}/core/constants/currency-constants.js +0 -0
  1037. {app-rn-runtime → package}/core/constants/currency-constants.js.map +0 -0
  1038. {app-rn-runtime → package}/core/currency-constants.js +0 -0
  1039. {app-rn-runtime → package}/core/currency-constants.js.map +0 -0
  1040. {app-rn-runtime → package}/core/device/calendar-service.js +0 -0
  1041. {app-rn-runtime → package}/core/device/calendar-service.js.map +0 -0
  1042. {app-rn-runtime → package}/core/device/camera-service.js +0 -0
  1043. {app-rn-runtime → package}/core/device/camera-service.js.map +0 -0
  1044. {app-rn-runtime → package}/core/device/contacts-service.js +0 -0
  1045. {app-rn-runtime → package}/core/device/contacts-service.js.map +0 -0
  1046. {app-rn-runtime → package}/core/device/location-service.js +0 -0
  1047. {app-rn-runtime → package}/core/device/location-service.js.map +0 -0
  1048. {app-rn-runtime → package}/core/device/scan-service.js +0 -0
  1049. {app-rn-runtime → package}/core/device/scan-service.js.map +0 -0
  1050. {app-rn-runtime → package}/core/display.manager.js +0 -0
  1051. {app-rn-runtime → package}/core/display.manager.js.map +0 -0
  1052. {app-rn-runtime → package}/core/event-notifier.js.map +0 -0
  1053. {app-rn-runtime → package}/core/file-extension-types.js +0 -0
  1054. {app-rn-runtime → package}/core/file-extension-types.js.map +0 -0
  1055. {app-rn-runtime → package}/core/fixed-view.component.js.map +0 -0
  1056. {app-rn-runtime → package}/core/formatters.js +0 -0
  1057. {app-rn-runtime → package}/core/formatters.js.map +0 -0
  1058. {app-rn-runtime → package}/core/i18n.service.js +0 -0
  1059. {app-rn-runtime → package}/core/i18n.service.js.map +0 -0
  1060. {app-rn-runtime → package}/core/if.component.js +0 -0
  1061. {app-rn-runtime → package}/core/if.component.js.map +0 -0
  1062. {app-rn-runtime → package}/core/imageSizeEstimator.js.map +0 -0
  1063. {app-rn-runtime → package}/core/injector.js +0 -0
  1064. {app-rn-runtime → package}/core/injector.js.map +0 -0
  1065. {app-rn-runtime → package}/core/key.extractor.js.map +0 -0
  1066. {app-rn-runtime → package}/core/logger.js.map +0 -0
  1067. {app-rn-runtime → package}/core/modal.service.js +0 -0
  1068. {app-rn-runtime → package}/core/modal.service.js.map +0 -0
  1069. {app-rn-runtime → package}/core/navigation.service.js +0 -0
  1070. {app-rn-runtime → package}/core/navigation.service.js.map +0 -0
  1071. {app-rn-runtime → package}/core/network.service.js.map +0 -0
  1072. {app-rn-runtime → package}/core/partial.service.js +0 -0
  1073. {app-rn-runtime → package}/core/partial.service.js.map +0 -0
  1074. {app-rn-runtime → package}/core/props.provider.js.map +0 -0
  1075. {app-rn-runtime → package}/core/scroll-view.component.js.map +0 -0
  1076. {app-rn-runtime → package}/core/security.service.js +0 -0
  1077. {app-rn-runtime → package}/core/security.service.js.map +0 -0
  1078. {app-rn-runtime → package}/core/spinner.service.js +0 -0
  1079. {app-rn-runtime → package}/core/spinner.service.js.map +0 -0
  1080. {app-rn-runtime → package}/core/storage.service.js.map +0 -0
  1081. {app-rn-runtime → package}/core/tappable.component.js.map +0 -0
  1082. {app-rn-runtime → package}/core/testid.provider.js +0 -0
  1083. {app-rn-runtime → package}/core/testid.provider.js.map +0 -0
  1084. {app-rn-runtime → package}/core/toast.service.js +0 -0
  1085. {app-rn-runtime → package}/core/toast.service.js.map +0 -0
  1086. {app-rn-runtime → package}/core/ui-preferences.context.js +0 -0
  1087. {app-rn-runtime → package}/core/ui-preferences.context.js.map +0 -0
  1088. {app-rn-runtime → package}/core/viewport.js.map +0 -0
  1089. {app-rn-runtime → package}/core/wm-component-tree.js.map +0 -0
  1090. {app-rn-runtime → package}/gestures/swipe.animation.js.map +0 -0
  1091. {app-rn-runtime → package}/index.js +0 -0
  1092. {app-rn-runtime → package}/index.js.map +0 -0
  1093. {app-rn-runtime → package}/runtime/App.navigator.js +0 -0
  1094. {app-rn-runtime → package}/runtime/App.navigator.js.map +0 -0
  1095. {app-rn-runtime → package}/runtime/base-partial.component.js.map +0 -0
  1096. {app-rn-runtime → package}/runtime/base-prefab.component.js.map +0 -0
  1097. {app-rn-runtime → package}/runtime/lib-patch.js +0 -0
  1098. {app-rn-runtime → package}/runtime/lib-patch.js.map +0 -0
  1099. {app-rn-runtime → package}/runtime/memo.component.js.map +0 -0
  1100. {app-rn-runtime → package}/runtime/navigator/drawer.navigator.js +0 -0
  1101. {app-rn-runtime → package}/runtime/navigator/drawer.navigator.js.map +0 -0
  1102. {app-rn-runtime → package}/runtime/navigator/stack.navigator.js.map +0 -0
  1103. {app-rn-runtime → package}/runtime/platform.api.js +0 -0
  1104. {app-rn-runtime → package}/runtime/platform.api.js.map +0 -0
  1105. {app-rn-runtime → package}/runtime/services/app-display-manager.service.js.map +0 -0
  1106. {app-rn-runtime → package}/runtime/services/app-modal.service.js.map +0 -0
  1107. {app-rn-runtime → package}/runtime/services/app-security.service.js.map +0 -0
  1108. {app-rn-runtime → package}/runtime/services/app-spinner.service.js.map +0 -0
  1109. {app-rn-runtime → package}/runtime/services/app-toast.service.js.map +0 -0
  1110. {app-rn-runtime → package}/runtime/services/device/calendar-service.js +0 -0
  1111. {app-rn-runtime → package}/runtime/services/device/calendar-service.js.map +0 -0
  1112. {app-rn-runtime → package}/runtime/services/device/camera-service.js.map +0 -0
  1113. {app-rn-runtime → package}/runtime/services/device/contacts-service.js +0 -0
  1114. {app-rn-runtime → package}/runtime/services/device/contacts-service.js.map +0 -0
  1115. {app-rn-runtime → package}/runtime/services/device/location-service.js +0 -0
  1116. {app-rn-runtime → package}/runtime/services/device/location-service.js.map +0 -0
  1117. {app-rn-runtime → package}/runtime/services/device/permissions.js +0 -0
  1118. {app-rn-runtime → package}/runtime/services/device/permissions.js.map +0 -0
  1119. {app-rn-runtime → package}/runtime/services/device/scan-service.js.map +0 -0
  1120. {app-rn-runtime → package}/runtime/services/partial.service.js +0 -0
  1121. {app-rn-runtime → package}/runtime/services/partial.service.js.map +0 -0
  1122. {app-rn-runtime → package}/runtime/services/webprocess.service.js.map +0 -0
  1123. {app-rn-runtime → package}/runtime/watcher.js.map +0 -0
  1124. {app-rn-runtime → package}/styles/MediaQueryList.js +0 -0
  1125. {app-rn-runtime → package}/styles/MediaQueryList.js.map +0 -0
  1126. {app-rn-runtime → package}/styles/style-prop.validator.js +0 -0
  1127. {app-rn-runtime → package}/styles/style-prop.validator.js.map +0 -0
  1128. {app-rn-runtime → package}/styles/style-props.js.map +0 -0
  1129. {app-rn-runtime → package}/styles/theme.js.map +0 -0
  1130. {app-rn-runtime → package}/variables/base-variable.js.map +0 -0
  1131. {app-rn-runtime → package}/variables/device/calendar/create-event.operation.js +0 -0
  1132. {app-rn-runtime → package}/variables/device/calendar/create-event.operation.js.map +0 -0
  1133. {app-rn-runtime → package}/variables/device/calendar/delete-event.operation.js +0 -0
  1134. {app-rn-runtime → package}/variables/device/calendar/delete-event.operation.js.map +0 -0
  1135. {app-rn-runtime → package}/variables/device/calendar/get-events.operation.js +0 -0
  1136. {app-rn-runtime → package}/variables/device/calendar/get-events.operation.js.map +0 -0
  1137. {app-rn-runtime → package}/variables/device/camera/capture-image.operation.js +0 -0
  1138. {app-rn-runtime → package}/variables/device/camera/capture-image.operation.js.map +0 -0
  1139. {app-rn-runtime → package}/variables/device/camera/capture-video.operation.js +0 -0
  1140. {app-rn-runtime → package}/variables/device/camera/capture-video.operation.js.map +0 -0
  1141. {app-rn-runtime → package}/variables/device/contacts/get-contacts.operation.js +0 -0
  1142. {app-rn-runtime → package}/variables/device/contacts/get-contacts.operation.js.map +0 -0
  1143. {app-rn-runtime → package}/variables/device/device/app-info.operation.js +0 -0
  1144. {app-rn-runtime → package}/variables/device/device/app-info.operation.js.map +0 -0
  1145. {app-rn-runtime → package}/variables/device/device/current-geo-position.operation.js +0 -0
  1146. {app-rn-runtime → package}/variables/device/device/current-geo-position.operation.js.map +0 -0
  1147. {app-rn-runtime → package}/variables/device/device/device-info.operation.js +0 -0
  1148. {app-rn-runtime → package}/variables/device/device/device-info.operation.js.map +0 -0
  1149. {app-rn-runtime → package}/variables/device/device/network-info.operation.js.map +0 -0
  1150. {app-rn-runtime → package}/variables/device/device/vibrate.operation.js +0 -0
  1151. {app-rn-runtime → package}/variables/device/device/vibrate.operation.js.map +0 -0
  1152. {app-rn-runtime → package}/variables/device/file/upload-file.operation.js +0 -0
  1153. {app-rn-runtime → package}/variables/device/file/upload-file.operation.js.map +0 -0
  1154. {app-rn-runtime → package}/variables/device/operation.provider.js +0 -0
  1155. {app-rn-runtime → package}/variables/device/operation.provider.js.map +0 -0
  1156. {app-rn-runtime → package}/variables/device/scan/scan.operation.js +0 -0
  1157. {app-rn-runtime → package}/variables/device/scan/scan.operation.js.map +0 -0
  1158. {app-rn-runtime → package}/variables/device-variable.js +0 -0
  1159. {app-rn-runtime → package}/variables/device-variable.js.map +0 -0
  1160. {app-rn-runtime → package}/variables/http.service.js +0 -0
  1161. {app-rn-runtime → package}/variables/http.service.js.map +0 -0
  1162. {app-rn-runtime → package}/variables/live-variable.js.map +0 -0
  1163. {app-rn-runtime → package}/variables/model-variable.js.map +0 -0
  1164. {app-rn-runtime → package}/variables/service-variable.js.map +0 -0
  1165. {app-rn-runtime → package}/variables/utils/dataset-util.js +0 -0
  1166. {app-rn-runtime → package}/variables/utils/dataset-util.js.map +0 -0
  1167. {app-rn-runtime → package}/variables/utils/inflight-queue.js.map +0 -0
  1168. {app-rn-runtime → package}/variables/utils/variable.constants.js +0 -0
  1169. {app-rn-runtime → package}/variables/utils/variable.constants.js.map +0 -0
  1170. {app-rn-runtime → package}/variables/utils/variable.utils.js +0 -0
  1171. {app-rn-runtime → package}/variables/utils/variable.utils.js.map +0 -0
package/core/utils.js ADDED
@@ -0,0 +1,543 @@
1
+ import { Platform } from 'react-native';
2
+ import moment from "moment";
3
+ import * as FileSystem from "expo-file-system";
4
+ import { isFunction, includes, isUndefined, isNull, orderBy, groupBy, toLower, get, forEach, sortBy, cloneDeep, keys, values, isArray, isString, isNumber } from 'lodash';
5
+ import * as mime from 'react-native-mime-types';
6
+ import ThemeVariables from '../styles/theme.variables';
7
+ const GROUP_BY_OPTIONS = {
8
+ ALPHABET: 'alphabet',
9
+ WORD: 'word',
10
+ OTHERS: 'Others'
11
+ };
12
+ const TIME_ROLLUP_OPTIONS = {
13
+ HOUR: 'hour',
14
+ DAY: 'day',
15
+ WEEK: 'week',
16
+ MONTH: 'month',
17
+ YEAR: 'year'
18
+ };
19
+ const AppLayoutPositionY = {};
20
+ const _deepCopy = (o1, ...o2) => {
21
+ o2.forEach(o => {
22
+ if (o) {
23
+ Object.keys(o).forEach(k => {
24
+ const v = o[k];
25
+ if (v && !isString(v) && !isArray(v) && typeof v === 'object') {
26
+ o1[k] = _deepCopy(o1[k] || {}, o[k]);
27
+ } else {
28
+ o1[k] = _deepCopy(v);
29
+ }
30
+ });
31
+ }
32
+ });
33
+ return o1;
34
+ };
35
+ export const deepCopy = (...objects) => _deepCopy({}, ...objects);
36
+ export const toBoolean = val => {
37
+ return val === true || val === 'true' || !(val === false || val === null || val === undefined || val === '');
38
+ };
39
+ export const toNumber = val => {
40
+ try {
41
+ return parseFloat(val) || 0;
42
+ } catch (e) {
43
+ return 0;
44
+ }
45
+ };
46
+
47
+ /**
48
+ * this method encodes the url and returns the encoded string
49
+ */
50
+ export const encodeUrl = url => {
51
+ let splits = url.split('#');
52
+ const hash = splits[1];
53
+ splits = splits[0].split('?');
54
+ let params = '';
55
+ if (splits.length > 1) {
56
+ params = splits[1].split('&').map(p => p.split('=')).map(p => p[0] + '=' + encodeURIComponent(p[1])).join('&');
57
+ }
58
+ return encodeURI(splits[0]) + (params ? '?' + params : '') + (hash ? '#' + hash : '');
59
+ };
60
+ export const isWebPreviewMode = () => Platform.OS === 'web';
61
+ export const isDevMode = () => isWebPreviewMode() || __DEV__;
62
+ export const widgetsWithUndefinedValue = ['checkbox', 'toggle'];
63
+ export const isAndroid = () => Platform.OS === 'android' || Platform.OS === 'web' && /android/i.test(window.navigator.userAgent);
64
+ export const isIos = () => Platform.OS === 'ios' || Platform.OS === 'web' && /iPhone|iPad/i.test(window.navigator.userAgent);
65
+ const getGroupKey = (fieldDef, groupby, widgetScope, innerItem) => isFunction(groupby) ? groupby.apply(widgetScope.proxy, [innerItem ? fieldDef[innerItem] : fieldDef]) : get(innerItem ? fieldDef[innerItem] : fieldDef, groupby);
66
+
67
+ /**
68
+ * This method prepares the grouped data.
69
+ *
70
+ * @param fieldDefs array of objects i.e. dataset
71
+ * @param groupby string groupby
72
+ * @param match string match
73
+ * @param orderby string orderby
74
+ * @param dateFormat string date format
75
+ */
76
+ export const getGroupedData = (fieldDefs, groupby, match, orderby, dateFormat, widgetScope, innerItem) => {
77
+ // handling case-in-sensitive scenario
78
+ // ordering the data based on groupby field. If there is innerItem then apply orderby using the innerItem's containing the groupby field.
79
+ fieldDefs = orderBy(fieldDefs, fieldDef => {
80
+ const groupKey = getGroupKey(fieldDef, groupby, widgetScope, innerItem);
81
+ if (groupKey) {
82
+ return toLower(groupKey);
83
+ }
84
+ return '';
85
+ });
86
+
87
+ // extract the grouped data based on the field obtained from 'groupDataByField'.
88
+ const groupedLiData = groupBy(fieldDefs, function (fieldDef) {
89
+ let concatStr = getGroupKey(fieldDef, groupby, widgetScope, innerItem);
90
+ // by default set the undefined groupKey as 'others'
91
+ if (isUndefined(concatStr) || isNull(concatStr) || concatStr.toString().trim() === '') {
92
+ return GROUP_BY_OPTIONS.OTHERS;
93
+ }
94
+ // if match prop is alphabetic ,get the starting alphabet of the word as key.
95
+ if (match === GROUP_BY_OPTIONS.ALPHABET) {
96
+ concatStr = concatStr.substr(0, 1);
97
+ }
98
+
99
+ // if match contains the time options then get the concatStr using 'getTimeRolledUpString'
100
+ if (includes(values(TIME_ROLLUP_OPTIONS), match)) {
101
+ dateFormat = dateFormat && dateFormat.replace(/d/g, 'D');
102
+ dateFormat = dateFormat && dateFormat.replace(/y/g, 'Y');
103
+ concatStr = moment(concatStr).format(dateFormat);
104
+ }
105
+ return concatStr;
106
+ });
107
+ return getSortedGroupedData(groupedLiData, groupby, orderby, innerItem);
108
+ };
109
+
110
+ /**
111
+ * function to get the ordered dataset based on the given orderby
112
+ */
113
+ export const getOrderedDataset = (dataSet, orderby, innerItem) => {
114
+ if (!orderBy) {
115
+ return cloneDeep(dataSet);
116
+ }
117
+
118
+ // The order by only works when the dataset contains list of objects.
119
+ const items = orderby && orderby.split(','),
120
+ fields = [],
121
+ directions = [];
122
+ items && items.forEach(obj => {
123
+ const item = obj.split(':');
124
+ fields.push(innerItem ? innerItem + '.' + item[0] : item[0]);
125
+ directions.push(item[1]);
126
+ });
127
+ return orderBy(dataSet, fields, directions);
128
+ };
129
+
130
+ /**
131
+ * This method returns sorted data based to groupkey.
132
+ * Returns a array of objects, each object containing key which is groupKey and data is the sorted data which is sorted by groupby field in the data.
133
+ *
134
+ * @param groupedLiData, grouped data object with key as the groupKey and its value as the array of objects grouped under the groupKey.
135
+ * @param groupBy, string groupby property
136
+ * @returns {any[]}
137
+ */
138
+ export const getSortedGroupedData = (groupedLiData, groupBy, orderby, innerItem) => {
139
+ const _groupedData = [];
140
+ forEach(keys(groupedLiData), (groupkey, index) => {
141
+ const liData = getOrderedDataset(groupedLiData[groupkey], orderby, innerItem);
142
+ _groupedData.push({
143
+ key: groupkey,
144
+ data: sortBy(liData, data => {
145
+ data._groupIndex = index;
146
+ return get(data, groupBy) || get(data[innerItem], groupBy);
147
+ })
148
+ });
149
+ });
150
+ return _groupedData;
151
+ };
152
+ export const isDefined = v => typeof v !== 'undefined';
153
+
154
+ // try to convert the chekedvalue and unchecked values to boolean/number
155
+ export const unStringify = (val, defaultVal) => {
156
+ if (val === null) {
157
+ return defaultVal;
158
+ }
159
+ if (val === true || val === 'true') {
160
+ return true;
161
+ }
162
+ if (val === false || val === 'false') {
163
+ return false;
164
+ }
165
+ const number = parseInt(val, 10);
166
+ if (!isNaN(number)) {
167
+ return number;
168
+ }
169
+ return val;
170
+ };
171
+
172
+ /**
173
+ * This function invokes the given the function (fn) until the function successfully executes or the maximum number
174
+ * of retries is reached or onBeforeRetry returns false.
175
+ *
176
+ * @param fn - a function that is needs to be invoked. The function can also return a promise as well.
177
+ * @param interval - minimum time gap between successive retries. This argument should be greater or equal to 0.
178
+ * @param maxRetries - maximum number of retries. This argument should be greater than 0. For all other values,
179
+ * maxRetries is infinity.
180
+ * @param onBeforeRetry - a callback function that will be invoked before re-invoking again. This function can
181
+ * return false or a promise that is resolved to false to stop further retry attempts.
182
+ * @returns {*} a promise that is resolved when fn is success (or) maximum retry attempts reached
183
+ * (or) onBeforeRetry returned false.
184
+ */
185
+ export const retryIfFails = (fn, interval, maxRetries, onBeforeRetry = () => Promise.resolve(false)) => {
186
+ let retryCount = 0;
187
+ const tryFn = () => {
188
+ retryCount++;
189
+ if (isFunction(fn)) {
190
+ return fn();
191
+ }
192
+ };
193
+ maxRetries = isNumber(maxRetries) && maxRetries > 0 ? maxRetries : 0;
194
+ interval = isNumber(interval) && interval > 0 ? interval : 0;
195
+ return new Promise((resolve, reject) => {
196
+ const errorFn = function () {
197
+ const errArgs = arguments;
198
+ setTimeout(() => {
199
+ Promise.resolve().then(() => onBeforeRetry()).then(function (retry) {
200
+ if (retry !== false && (!maxRetries || retryCount <= maxRetries)) {
201
+ Promise.resolve().then(() => tryFn()).then(resolve, errorFn);
202
+ } else {
203
+ reject(errArgs);
204
+ }
205
+ }, () => reject(errArgs));
206
+ }, interval);
207
+ };
208
+ Promise.resolve().then(() => tryFn()).then(resolve, errorFn);
209
+ });
210
+ };
211
+
212
+ /**
213
+ * Promise of a defer created using this function, has abort function that will reject the defer when called.
214
+ * @returns {*} angular defer object
215
+ */
216
+ export const getAbortableDefer = () => {
217
+ const _defer = {
218
+ promise: null,
219
+ reject: null,
220
+ resolve: null,
221
+ onAbort: () => {},
222
+ isAborted: false
223
+ };
224
+ _defer.promise = new Promise((resolve, reject) => {
225
+ _defer.resolve = resolve;
226
+ _defer.reject = reject;
227
+ });
228
+ _defer.promise.abort = () => {
229
+ _defer.onAbort && _defer.onAbort();
230
+ _defer.reject('aborted');
231
+ _defer.isAborted = true;
232
+ };
233
+ return _defer;
234
+ };
235
+ export const validateField = (props, value) => {
236
+ let requiredCheck = true,
237
+ regexCheck = true;
238
+ if (props.required) {
239
+ if (isArray(value)) {
240
+ requiredCheck = value.length === 0 ? false : true;
241
+ } else {
242
+ requiredCheck = !value ? false : true;
243
+ }
244
+ if (!requiredCheck) {
245
+ return {
246
+ errorType: 'required',
247
+ isValid: false
248
+ };
249
+ }
250
+ }
251
+ if (value && props.regexp) {
252
+ const condition = new RegExp("^" + props.regexp + "$", 'g');
253
+ regexCheck = condition.test(value);
254
+ if (!regexCheck) {
255
+ return {
256
+ errorType: 'regexp',
257
+ isValid: false
258
+ };
259
+ }
260
+ }
261
+ if (value && props.maxchars && value.length > props.maxchars) {
262
+ return {
263
+ errorType: 'maxchars',
264
+ isValid: false
265
+ };
266
+ }
267
+ if (value && props.mindate && new Date(props.datavalue) < moment(props.mindate).startOf('day').toDate()) {
268
+ return {
269
+ errorType: 'mindate',
270
+ isValid: false
271
+ };
272
+ }
273
+ if (value && props.maxdate && new Date(props.datavalue) > moment(props.maxdate).endOf('day').toDate()) {
274
+ return {
275
+ errorType: 'maxdate',
276
+ isValid: false
277
+ };
278
+ }
279
+ return {
280
+ isValid: true
281
+ };
282
+ };
283
+ export const countDecimalDigits = number => {
284
+ if (!number) return 0;
285
+
286
+ // * convert the number to a string
287
+ const numberString = number.toString();
288
+
289
+ // * regular expression to match and count the decimal digits
290
+ const decimalMatch = numberString.match(/\.(\d+)/);
291
+ if (decimalMatch) {
292
+ const decimalDigits = decimalMatch[1];
293
+ return decimalDigits.length;
294
+ } else {
295
+ return 0; // * no decimal digits found
296
+ }
297
+ };
298
+ export const formatCompactNumber = number => {
299
+ const isNegative = number < 0;
300
+ number = isNegative ? number * -1 : number;
301
+ let formattedNumber = number + '';
302
+ if (number >= 1000 && number < 1000000) {
303
+ formattedNumber = (number / 1000).toFixed(1).replace(/\.0$/, "") + "K";
304
+ } else if (number >= 1000000 && number < 1000000000) {
305
+ formattedNumber = (number / 1000000).toFixed(1).replace(/\.0$/, "") + "M";
306
+ } else if (number >= 1000000000 && number < 1000000000000) {
307
+ formattedNumber = (number / 1000000000).toFixed(1).replace(/\.0$/, "") + "B";
308
+ } else if (number >= 1000000000000 && number < 1000000000000000) {
309
+ formattedNumber = (number / 1000000000000).toFixed(1).replace(/\.0$/, "") + "T";
310
+ }
311
+ return (isNegative ? '-' : '') + formattedNumber;
312
+ };
313
+ export const toBase64 = function (path) {
314
+ return FileSystem.readAsStringAsync(path, {
315
+ encoding: 'base64'
316
+ });
317
+ };
318
+ const DATASET_WIDGETS = new Set(['select', 'checkboxset', 'radioset', 'switch', 'autocomplete', 'chips', 'typeahead', 'rating']);
319
+ export const isDataSetWidget = widget => {
320
+ return DATASET_WIDGETS.has(widget);
321
+ };
322
+ export const isFullPathUrl = url => {
323
+ return isString(url) && (url.startsWith('data:') || url.startsWith('http:') || url.startsWith('https:') || url.startsWith('file:'));
324
+ };
325
+ export function removeUndefinedKeys(obj) {
326
+ for (const key in obj) {
327
+ if (obj[key] === undefined) {
328
+ delete obj[key];
329
+ } else if (typeof obj[key] === 'object') {
330
+ // * if the value is an object, recursively call the function
331
+ removeUndefinedKeys(obj[key]);
332
+ }
333
+ }
334
+ return obj;
335
+ }
336
+ // * get total number of days in a month of a year
337
+ function getDaysInMonth(month, year) {
338
+ return new Date(year, month, 0).getDate();
339
+ }
340
+ export const getDates = (startDate, endDate, month = 0,
341
+ // zero-based
342
+ year = new Date().getFullYear()) => {
343
+ const daysInMonth = getDaysInMonth(month, year);
344
+ const dates = Array.from({
345
+ length: daysInMonth
346
+ }, (v, i) => i + 1);
347
+ const datesInRange = dates.filter(date => date >= startDate);
348
+ return datesInRange;
349
+ };
350
+ export const monthNames = ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'];
351
+ export const getMonths = (startMonth, endMonth) => {
352
+ const months = monthNames.map(name => name.substring(0, 3));
353
+ const monthRange = months.filter((_, index) => index >= startMonth);
354
+ return monthRange;
355
+ };
356
+ export const getMonthIndex = (monthName, shortName = true) => {
357
+ const months = shortName ? monthNames.map(name => name.substring(0, 3)) : monthNames;
358
+ const monthNumber = months.findIndex(name => name === monthName);
359
+ return monthNumber;
360
+ };
361
+ export const getYearRange = (startYear = 1950, endYear = 2060) => {
362
+ const years = [];
363
+ for (let year = startYear; year <= endYear; ++year) {
364
+ years.push(year);
365
+ }
366
+ return years;
367
+ };
368
+ export const getDateObject = (date, month, year) => {
369
+ // * month is zero-based
370
+ return new Date(year, month, date);
371
+ };
372
+ export const getHours = () => {
373
+ const hours = [];
374
+ for (let hour = 1; hour <= 12; ++hour) {
375
+ const paddedHour = String(hour).padStart(2, '0');
376
+ hours.push(paddedHour);
377
+ }
378
+ return hours;
379
+ };
380
+ export const get24Hours = () => {
381
+ const hours = [];
382
+ for (let hour = 0; hour <= 23; ++hour) {
383
+ const paddedHour = String(hour).padStart(2, '0');
384
+ hours.push(paddedHour);
385
+ }
386
+ return hours;
387
+ };
388
+ export const getMinutes = () => {
389
+ const minutes = [];
390
+ for (let minute = 0; minute <= 59; ++minute) {
391
+ const paddedMinute = String(minute).padStart(2, '0');
392
+ minutes.push(paddedMinute);
393
+ }
394
+ return minutes;
395
+ };
396
+ export const getTimeIndicators = () => {
397
+ return ['AM', 'PM'];
398
+ };
399
+ export const getDateTimeObject = (date, month, year, hour, minute) => {
400
+ // * month is zero-based
401
+ return new Date(year, month, date, hour, minute);
402
+ };
403
+ export const getGradientStartEnd = angle => {
404
+ const angleLowerCase = angle === null || angle === void 0 ? void 0 : angle.toLowerCase();
405
+ let start = {
406
+ x: 0,
407
+ y: 1
408
+ };
409
+ let end = {
410
+ x: 1,
411
+ y: 1
412
+ };
413
+ if (angle === '0deg' || angleLowerCase === 'to top') {
414
+ end.x = 0;
415
+ end.y = 0;
416
+ } else if (angle === '90deg' || angleLowerCase === 'to right') {
417
+ start.x = 0;
418
+ } else if (angle === '180deg' || angleLowerCase === 'to bottom') {
419
+ start.y = 0;
420
+ end.x = 0;
421
+ end.y = 1;
422
+ } else if (angle === '270deg' || angleLowerCase === 'to left') {
423
+ start.x = 1;
424
+ end.x = 0;
425
+ } else {
426
+ // other angle
427
+ }
428
+ return {
429
+ start,
430
+ end
431
+ };
432
+ };
433
+ export const parseLinearGradient = gradient => {
434
+ let angle = '',
435
+ color1 = '',
436
+ color2 = '';
437
+ const linearGradientRegex = /linear-gradient\(([^,]+),\s*([^,]+),\s*([^)]+)\)/;
438
+ const hasLinearGradient = linearGradientRegex.test(gradient);
439
+ const matches = gradient === null || gradient === void 0 ? void 0 : gradient.match(linearGradientRegex);
440
+ angle = (matches === null || matches === void 0 ? void 0 : matches[1]) || '90deg';
441
+ const {
442
+ start,
443
+ end
444
+ } = getGradientStartEnd(angle);
445
+ color1 = (matches === null || matches === void 0 ? void 0 : matches[2]) || ThemeVariables.INSTANCE.primaryColor;
446
+ color2 = (matches === null || matches === void 0 ? void 0 : matches[3]) || ThemeVariables.INSTANCE.primaryColor;
447
+ return {
448
+ hasLinearGradient,
449
+ color1,
450
+ color2,
451
+ start,
452
+ end
453
+ };
454
+ };
455
+ export const validateInputOnDevice = (value, type) => {
456
+ var _value$match;
457
+ const isCurrencyField = type === 'currency';
458
+ let isValidText = true;
459
+ let validText = value;
460
+
461
+ // * no alphabets except E, may contain E only once
462
+ if (/[a-df-zA-DF-Z]/.test(value) || !/^[^eE]*[eE]?[^eE]*$/.test(value)) {
463
+ isValidText = false;
464
+ validText = validText.replace(/[a-df-zA-DF-Z]/g, '');
465
+ validText = validText.replace(/([eE])\1+/g, 'e');
466
+ }
467
+
468
+ // * currency only: check for negative number
469
+ if (isCurrencyField && (Number(value) < 0 || /-/g.test(value))) {
470
+ isValidText = false;
471
+ validText = validText.replace(/-/g, '');
472
+ }
473
+
474
+ // * number only: not more than one minus and doesn't end with minus (-)
475
+ if (!isCurrencyField && Number((_value$match = value.match(/-/g)) === null || _value$match === void 0 ? void 0 : _value$match.length) > 1 || /\w-/.test(value)) {
476
+ isValidText = false;
477
+ validText = validText.replace(/-/g, '');
478
+ validText = validText.replace(/\w-/g, '');
479
+ }
480
+
481
+ // * check for more than one decimal point
482
+ if (/^\d*\.\d*\..*$/.test(value)) {
483
+ isValidText = false;
484
+ validText = validText.replace(/\.(?=\.*\.)/g, '');
485
+ }
486
+
487
+ // * check for spaces and comma
488
+ if (/[\s,]/.test(value)) {
489
+ isValidText = false;
490
+ validText = validText.replace(/[\s,]/, '');
491
+ }
492
+ return {
493
+ isValidText,
494
+ validText
495
+ };
496
+ };
497
+ export const isDateFormatAsPerPattern = (datePattern, dateString) => {
498
+ try {
499
+ var _date$format;
500
+ // * format dateString as per datePattern
501
+ const date = moment(dateString, datePattern, true);
502
+
503
+ // * check date is valid and matches the format
504
+ return date.isValid() && typeof dateString === 'string' && (dateString === null || dateString === void 0 ? void 0 : dateString.toUpperCase()) === ((_date$format = date.format(datePattern)) === null || _date$format === void 0 ? void 0 : _date$format.toUpperCase());
505
+ } catch (error) {
506
+ // * if not able to parse date string
507
+ return false;
508
+ }
509
+ };
510
+ export const getMimeType = extensions => {
511
+ if (!extensions) return '*/*';
512
+ let hasInvalidExtension = false;
513
+ let wildCards = ['image/*', 'audio/*', 'video/*'];
514
+ let extensionList = extensions.split(' ');
515
+ let mimeType = extensionList.map(extension => {
516
+ let type = mime.lookup(extension);
517
+ let isWildCardExtension = wildCards.includes(extension);
518
+ // * invalid extension, also not in wildcards
519
+ hasInvalidExtension = !type && !isWildCardExtension;
520
+ return type ? type : isWildCardExtension ? extension : '';
521
+ }).filter(type => type);
522
+ if (hasInvalidExtension) return '*/*';
523
+ return mimeType;
524
+ };
525
+ export function getNumberOfEmptyObjects(noOfItems) {
526
+ return Array.from({
527
+ length: noOfItems
528
+ }, () => ({}));
529
+ }
530
+ export const setPosition = data => {
531
+ Object.keys(data).forEach(key => {
532
+ AppLayoutPositionY[key] = data[key];
533
+ });
534
+ };
535
+ export const resetLayoutPositions = () => {
536
+ Object.keys(AppLayoutPositionY).forEach(key => {
537
+ delete AppLayoutPositionY[key];
538
+ });
539
+ };
540
+ export const getPosition = key => {
541
+ return AppLayoutPositionY[key];
542
+ };
543
+ //# sourceMappingURL=utils.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["Platform","moment","FileSystem","isFunction","includes","isUndefined","isNull","orderBy","groupBy","toLower","get","forEach","sortBy","cloneDeep","keys","values","isArray","isString","isNumber","mime","ThemeVariables","GROUP_BY_OPTIONS","ALPHABET","WORD","OTHERS","TIME_ROLLUP_OPTIONS","HOUR","DAY","WEEK","MONTH","YEAR","AppLayoutPositionY","_deepCopy","o1","o2","o","Object","k","v","deepCopy","objects","toBoolean","val","undefined","toNumber","parseFloat","e","encodeUrl","url","splits","split","hash","params","length","map","p","encodeURIComponent","join","encodeURI","isWebPreviewMode","OS","isDevMode","__DEV__","widgetsWithUndefinedValue","isAndroid","test","window","navigator","userAgent","isIos","getGroupKey","fieldDef","groupby","widgetScope","innerItem","apply","proxy","getGroupedData","fieldDefs","match","orderby","dateFormat","groupKey","groupedLiData","concatStr","toString","trim","substr","replace","format","getSortedGroupedData","getOrderedDataset","dataSet","items","fields","directions","obj","item","push","_groupedData","groupkey","index","liData","key","data","_groupIndex","isDefined","unStringify","defaultVal","number","parseInt","isNaN","retryIfFails","fn","interval","maxRetries","onBeforeRetry","Promise","resolve","retryCount","tryFn","reject","errorFn","errArgs","arguments","setTimeout","then","retry","getAbortableDefer","_defer","promise","onAbort","isAborted","abort","validateField","props","value","requiredCheck","regexCheck","required","errorType","isValid","regexp","condition","RegExp","maxchars","mindate","Date","datavalue","startOf","toDate","maxdate","endOf","countDecimalDigits","numberString","decimalMatch","decimalDigits","formatCompactNumber","isNegative","formattedNumber","toFixed","toBase64","path","readAsStringAsync","encoding","DATASET_WIDGETS","Set","isDataSetWidget","widget","has","isFullPathUrl","startsWith","removeUndefinedKeys","getDaysInMonth","month","year","getDate","getDates","startDate","endDate","getFullYear","daysInMonth","dates","Array","from","i","datesInRange","filter","date","monthNames","getMonths","startMonth","endMonth","months","name","substring","monthRange","_","getMonthIndex","monthName","shortName","monthNumber","findIndex","getYearRange","startYear","endYear","years","getDateObject","getHours","hours","hour","paddedHour","String","padStart","get24Hours","getMinutes","minutes","minute","paddedMinute","getTimeIndicators","getDateTimeObject","getGradientStartEnd","angle","angleLowerCase","toLowerCase","start","x","y","end","parseLinearGradient","gradient","color1","color2","linearGradientRegex","hasLinearGradient","matches","INSTANCE","primaryColor","validateInputOnDevice","type","_value$match","isCurrencyField","isValidText","validText","Number","isDateFormatAsPerPattern","datePattern","dateString","_date$format","toUpperCase","error","getMimeType","extensions","hasInvalidExtension","wildCards","extensionList","mimeType","extension","lookup","isWildCardExtension","getNumberOfEmptyObjects","noOfItems","setPosition","resetLayoutPositions","getPosition"],"sources":["utils.ts"],"sourcesContent":["import { Platform } from 'react-native';\nimport moment from \"moment\";\nimport * as FileSystem from \"expo-file-system\";\nimport { isFunction, includes, isUndefined, isNull, orderBy, groupBy, toLower, get, forEach, sortBy, cloneDeep, keys, values, isArray, isString, isNumber} from 'lodash';\nimport * as mime from 'react-native-mime-types';\nimport ThemeVariables from '../styles/theme.variables';\n\ndeclare const window: any;\nconst GROUP_BY_OPTIONS = {\n ALPHABET: 'alphabet',\n WORD: 'word',\n OTHERS: 'Others'\n};\nconst TIME_ROLLUP_OPTIONS = {\n HOUR: 'hour',\n DAY: 'day',\n WEEK: 'week',\n MONTH: 'month',\n YEAR: 'year'\n};\n\nconst AppLayoutPositionY: { [index: string]: number } = {}\n\nconst _deepCopy = (o1: any, ...o2: any) => {\n o2.forEach((o: any) => {\n if (o) {\n Object.keys(o).forEach(k => {\n const v = o[k];\n if (v && !isString(v) && !isArray(v) && typeof v === 'object') {\n o1[k] = _deepCopy(o1[k] || {}, o[k]);\n } else {\n o1[k] = _deepCopy(v);\n }\n });\n }\n });\n return o1;\n};\n\nexport const deepCopy = (...objects: any) => _deepCopy({}, ...objects);\n\nexport const toBoolean = (val: any) => {\n return val === true\n || val === 'true'\n || !(val === false\n || val === null\n || val === undefined\n || val === '');\n};\n\nexport const toNumber = (val: any) => {\n try {\n return parseFloat(val) || 0;\n } catch(e) {\n return 0;\n }\n};\n\n/**\n * this method encodes the url and returns the encoded string\n */\n export const encodeUrl = (url: string): string => {\n let splits = url.split('#');\n const hash = splits[1];\n splits = splits[0].split('?');\n let params = '';\n if (splits.length > 1) {\n params = splits[1].split('&')\n .map(p => p.split('='))\n .map(p => p[0] +'=' + encodeURIComponent(p[1]))\n .join('&');\n }\n return encodeURI(splits[0]) + (params ? '?' + params: '') + (hash ? '#'+ hash : '');\n};\n\nexport const isWebPreviewMode = () => Platform.OS === 'web';\n\nexport const isDevMode = () => isWebPreviewMode() || __DEV__;\n\nexport const widgetsWithUndefinedValue = ['checkbox', 'toggle'];\n\nexport const isAndroid = () => (Platform.OS === 'android' || (Platform.OS === 'web' && /android/i.test(window.navigator.userAgent)));\n\nexport const isIos = () => (Platform.OS === 'ios' || (Platform.OS === 'web' && /iPhone|iPad/i.test(window.navigator.userAgent)));\n\nconst getGroupKey = (fieldDef: any, groupby: string, widgetScope: any, innerItem?: any) => isFunction(groupby) ? groupby.apply(widgetScope.proxy, [innerItem ? fieldDef[innerItem] : fieldDef]) : get(innerItem ? fieldDef[innerItem] : fieldDef, groupby);\n\n/**\n * This method prepares the grouped data.\n *\n * @param fieldDefs array of objects i.e. dataset\n * @param groupby string groupby\n * @param match string match\n * @param orderby string orderby\n * @param dateFormat string date format\n */\nexport const getGroupedData = (fieldDefs: any, groupby: string, match: string, orderby: string, dateFormat: string, widgetScope: any, innerItem?: any) => {\n\n // handling case-in-sensitive scenario\n // ordering the data based on groupby field. If there is innerItem then apply orderby using the innerItem's containing the groupby field.\n fieldDefs = orderBy(fieldDefs, fieldDef => {\n const groupKey = getGroupKey(fieldDef, groupby, widgetScope, innerItem);\n if (groupKey) {\n return toLower(groupKey);\n }\n return '';\n });\n\n // extract the grouped data based on the field obtained from 'groupDataByField'.\n const groupedLiData = groupBy(fieldDefs, function (fieldDef) {\n let concatStr = getGroupKey(fieldDef, groupby, widgetScope, innerItem);\n // by default set the undefined groupKey as 'others'\n if (isUndefined(concatStr) || isNull(concatStr) || concatStr.toString().trim() === '') {\n return GROUP_BY_OPTIONS.OTHERS;\n }\n // if match prop is alphabetic ,get the starting alphabet of the word as key.\n if (match === GROUP_BY_OPTIONS.ALPHABET) {\n concatStr = concatStr.substr(0, 1);\n }\n\n // if match contains the time options then get the concatStr using 'getTimeRolledUpString'\n if (includes(values(TIME_ROLLUP_OPTIONS), match)) {\n dateFormat = dateFormat && dateFormat.replace(/d/g, 'D');\n dateFormat = dateFormat && dateFormat.replace(/y/g, 'Y');\n concatStr = moment(concatStr).format(dateFormat);\n }\n\n return concatStr;\n });\n\n return getSortedGroupedData(groupedLiData, groupby, orderby, innerItem);\n};\n\n/**\n * function to get the ordered dataset based on the given orderby\n */\nexport const getOrderedDataset = (dataSet: any, orderby: string, innerItem?: any) => {\n if (!orderBy) {\n return cloneDeep(dataSet);\n }\n\n // The order by only works when the dataset contains list of objects.\n const items = orderby && orderby.split(','),\n fields: any = [],\n directions: any = [];\n items && items.forEach( obj => {\n const item = obj.split(':');\n fields.push(innerItem ? innerItem + '.' + item[0] : item[0]);\n directions.push(item[1]);\n });\n return orderBy(dataSet, fields, directions);\n};\n\n\n/**\n * This method returns sorted data based to groupkey.\n * Returns a array of objects, each object containing key which is groupKey and data is the sorted data which is sorted by groupby field in the data.\n *\n * @param groupedLiData, grouped data object with key as the groupKey and its value as the array of objects grouped under the groupKey.\n * @param groupBy, string groupby property\n * @returns {any[]}\n */\nexport const getSortedGroupedData = (groupedLiData: any, groupBy: string, orderby: string, innerItem?: any) => {\n const _groupedData: any = [];\n forEach(keys(groupedLiData), (groupkey, index) => {\n const liData = getOrderedDataset(groupedLiData[groupkey], orderby, innerItem);\n _groupedData.push({\n key: groupkey,\n data: sortBy(liData, data => {\n data._groupIndex = index;\n return get(data, groupBy) || get(data[innerItem], groupBy);\n })\n });\n });\n return _groupedData;\n};\n\nexport const isDefined = (v: any) => typeof v !== 'undefined';\n\n// try to convert the chekedvalue and unchecked values to boolean/number\nexport const unStringify = (val: any, defaultVal?: boolean) => {\n if (val === null) {\n return defaultVal;\n }\n\n if (val === true || val === 'true') {\n return true;\n }\n\n if (val === false || val === 'false') {\n return false;\n }\n\n const number = parseInt(val, 10);\n if (!isNaN(number)) {\n return number;\n }\n return val;\n};\n\n/**\n * This function invokes the given the function (fn) until the function successfully executes or the maximum number\n * of retries is reached or onBeforeRetry returns false.\n *\n * @param fn - a function that is needs to be invoked. The function can also return a promise as well.\n * @param interval - minimum time gap between successive retries. This argument should be greater or equal to 0.\n * @param maxRetries - maximum number of retries. This argument should be greater than 0. For all other values,\n * maxRetries is infinity.\n * @param onBeforeRetry - a callback function that will be invoked before re-invoking again. This function can\n * return false or a promise that is resolved to false to stop further retry attempts.\n * @returns {*} a promise that is resolved when fn is success (or) maximum retry attempts reached\n * (or) onBeforeRetry returned false.\n */\nexport const retryIfFails = (fn: Function, interval: number, maxRetries: number, onBeforeRetry = () => Promise.resolve(false)) => {\n let retryCount = 0;\n const tryFn = () => {\n retryCount++;\n if (isFunction(fn)) {\n return fn();\n }\n };\n maxRetries = (isNumber(maxRetries) && maxRetries > 0 ? maxRetries : 0);\n interval = (isNumber(interval) && interval > 0 ? interval : 0);\n return new Promise((resolve, reject) => {\n const errorFn = function () {\n const errArgs = arguments;\n setTimeout(() => {\n Promise.resolve().then(() => onBeforeRetry()).then(function (retry) {\n if (retry !== false && (!maxRetries || retryCount <= maxRetries)) {\n Promise.resolve().then(() => tryFn()).then(resolve, errorFn);\n } else {\n reject(errArgs);\n }\n }, () => reject(errArgs));\n }, interval);\n };\n Promise.resolve().then(() => tryFn()).then(resolve, errorFn);\n });\n};\n\n/**\n * Promise of a defer created using this function, has abort function that will reject the defer when called.\n * @returns {*} angular defer object\n */\nexport const getAbortableDefer = () => {\n const _defer: any = {\n promise: null,\n reject: null,\n resolve: null,\n onAbort: () => { },\n isAborted: false\n };\n _defer.promise = new Promise((resolve, reject) => {\n _defer.resolve = resolve;\n _defer.reject = reject;\n });\n _defer.promise.abort = () => {\n _defer.onAbort && _defer.onAbort();\n _defer.reject('aborted');\n _defer.isAborted = true;\n };\n return _defer;\n};\n\nexport const validateField = (props: any, value: any) => {\n let requiredCheck = true, regexCheck = true;\n if (props.required) {\n if (isArray(value)) {\n requiredCheck = value.length === 0 ? false : true\n } else {\n requiredCheck = !value ? false : true\n }\n if (!requiredCheck) {\n return {\n errorType : 'required',\n isValid: false\n }\n }\n }\n if (value && props.regexp) {\n const condition = new RegExp(\"^\" + props.regexp + \"$\", 'g');\n regexCheck = condition.test(value);\n if (!regexCheck) {\n return {\n errorType : 'regexp',\n isValid: false\n }\n }\n }\n if (value && props.maxchars && value.length > props.maxchars) {\n return {\n errorType : 'maxchars',\n isValid: false\n }\n\n }\n if (value && props.mindate && new Date(props.datavalue) < moment(props.mindate).startOf('day').toDate()) {\n return {\n errorType : 'mindate',\n isValid: false\n }\n }\n if (value && props.maxdate && new Date(props.datavalue) > moment(props.maxdate).endOf('day').toDate()) {\n return {\n errorType : 'maxdate',\n isValid: false\n }\n }\n\n return {\n isValid: true\n }\n};\n\nexport const countDecimalDigits = (number: number | string) => {\n if (!number) return 0;\n\n // * convert the number to a string\n const numberString = number.toString();\n \n // * regular expression to match and count the decimal digits\n const decimalMatch = numberString.match(/\\.(\\d+)/);\n\n if (decimalMatch) {\n const decimalDigits = decimalMatch[1];\n return decimalDigits.length;\n } else {\n return 0; // * no decimal digits found\n }\n}\n\nexport const formatCompactNumber = (number: number) => {\n const isNegative = number < 0;\n number = isNegative ? number * -1 : number;\n let formattedNumber = number + '';\n if (number >= 1000 && number < 1_000_000) {\n formattedNumber = (number / 1000).toFixed(1).replace(/\\.0$/, \"\") + \"K\";\n } else if (number >= 1_000_000 && number < 1_000_000_000) {\n formattedNumber = (number / 1_000_000).toFixed(1).replace(/\\.0$/, \"\") + \"M\";\n } else if (number >= 1_000_000_000 && number < 1_000_000_000_000) {\n formattedNumber = (number / 1_000_000_000).toFixed(1).replace(/\\.0$/, \"\") + \"B\";\n } else if (number >= 1_000_000_000_000 && number < 1_000_000_000_000_000) {\n formattedNumber = (number / 1_000_000_000_000).toFixed(1).replace(/\\.0$/, \"\") + \"T\";\n }\n return (isNegative ? '-' : '') + formattedNumber;\n}\n\nexport const toBase64 = function(path: string) {\n return FileSystem.readAsStringAsync(path, { encoding: 'base64' });\n};\n\nconst DATASET_WIDGETS = new Set([ 'select', 'checkboxset', 'radioset', 'switch', 'autocomplete', 'chips', 'typeahead', 'rating']);\nexport const isDataSetWidget = (widget: any) => {\n return DATASET_WIDGETS.has(widget);\n};\nexport const isFullPathUrl = (url: string) => {\n return isString(url) &&\n (url.startsWith('data:') \n || url.startsWith('http:') \n || url.startsWith('https:') \n || url.startsWith('file:'));\n};\n\nexport function removeUndefinedKeys(obj: any) {\n for (const key in obj) {\n if (obj[key] === undefined) {\n delete obj[key];\n } else if (typeof obj[key] === 'object') {\n // * if the value is an object, recursively call the function\n removeUndefinedKeys(obj[key]);\n }\n }\n\n return obj;\n}\n// * get total number of days in a month of a year\nfunction getDaysInMonth(month: number, year: number) {\n return new Date(year, month, 0).getDate();\n}\n\nexport const getDates = (\n startDate: number,\n endDate: number,\n month = 0, // zero-based\n year = new Date().getFullYear(),\n) => {\n const daysInMonth = getDaysInMonth(month, year);\n const dates = Array.from({length: daysInMonth}, (v, i) => i + 1);\n\n const datesInRange = dates.filter(date => date >= startDate);\n\n return datesInRange;\n};\n\nexport const monthNames = [\n 'January',\n 'February',\n 'March',\n 'April',\n 'May',\n 'June',\n 'July',\n 'August',\n 'September',\n 'October',\n 'November',\n 'December',\n];\n\nexport const getMonths = (startMonth: number, endMonth: number) => {\n const months = monthNames.map(name => name.substring(0, 3));\n const monthRange = months.filter((_, index) => index >= startMonth)\n\n return monthRange;\n};\n\nexport const getMonthIndex = (monthName: string, shortName: boolean = true) => {\n const months = shortName ? monthNames.map(name => name.substring(0, 3)) : monthNames;\n const monthNumber = months.findIndex((name) => name === monthName);\n\n return monthNumber;\n}\n\nexport const getYearRange = (\n startYear: number = 1950,\n endYear: number = 2060,\n) => {\n const years = [];\n for (let year = startYear; year <= endYear; ++year) {\n years.push(year);\n }\n\n return years;\n};\n\nexport const getDateObject = (date: number, month: number, year: number) => {\n // * month is zero-based\n return new Date(year, month, date);\n};\n\nexport const getHours = () => {\n const hours = [];\n for (let hour = 1; hour <= 12; ++hour) {\n const paddedHour = String(hour).padStart(2, '0');\n hours.push(paddedHour);\n }\n\n return hours;\n}\n\nexport const get24Hours = () => {\n const hours = [];\n for (let hour = 0; hour <= 23; ++hour) {\n const paddedHour = String(hour).padStart(2, '0');\n hours.push(paddedHour);\n }\n\n return hours;\n}\n\nexport const getMinutes = () => {\n const minutes = [];\n for (let minute = 0; minute <= 59; ++minute) {\n const paddedMinute = String(minute).padStart(2, '0');\n minutes.push(paddedMinute);\n }\n\n return minutes;\n}\n\nexport const getTimeIndicators = () => {\n return ['AM', 'PM'];\n}\n\nexport const getDateTimeObject = (date: number, month: number, year: number, hour: number, minute: number) => {\n // * month is zero-based\n return new Date(year, month, date, hour, minute);\n};\n\nexport const getGradientStartEnd = (angle: string) => {\n const angleLowerCase = angle?.toLowerCase();\n let start = { x: 0, y: 1 };\n let end = { x: 1, y: 1 };\n\n if (angle === '0deg' || angleLowerCase === 'to top') {\n end.x = 0;\n end.y = 0;\n } else if (angle === '90deg' || angleLowerCase === 'to right') {\n start.x = 0;\n } else if (angle === '180deg' || angleLowerCase === 'to bottom') {\n start.y = 0;\n end.x = 0;\n end.y = 1;\n } else if (angle === '270deg' || angleLowerCase === 'to left') {\n start.x = 1;\n end.x = 0;\n } else {\n // other angle\n }\n\n return {start, end}\n}\n\nexport const parseLinearGradient = (gradient: string) => {\n let angle = '', color1 = '', color2 = '';\n const linearGradientRegex = /linear-gradient\\(([^,]+),\\s*([^,]+),\\s*([^)]+)\\)/;\n const hasLinearGradient = linearGradientRegex.test(gradient);\n\n const matches = gradient?.match(linearGradientRegex);\n angle = matches?.[1] || '90deg';\n const {start, end} = getGradientStartEnd(angle)\n color1 = matches?.[2] || ThemeVariables.INSTANCE.primaryColor;\n color2 = matches?.[3] || ThemeVariables.INSTANCE.primaryColor;\n\n return {hasLinearGradient, color1, color2, start, end};\n}\n\nexport const validateInputOnDevice = (value: string, type: 'number' | 'currency') => {\n const isCurrencyField = type === 'currency';\n let isValidText = true;\n let validText = value;\n \n // * no alphabets except E, may contain E only once\n if (/[a-df-zA-DF-Z]/.test(value) || !/^[^eE]*[eE]?[^eE]*$/.test(value)) {\n isValidText = false;\n validText = validText.replace(/[a-df-zA-DF-Z]/g, '');\n validText = validText.replace(/([eE])\\1+/g, 'e');\n }\n\n // * currency only: check for negative number\n if (isCurrencyField && (Number(value) < 0 || /-/g.test(value))) {\n isValidText = false;\n validText = validText.replace(/-/g, '');\n }\n\n // * number only: not more than one minus and doesn't end with minus (-)\n if (!isCurrencyField && (Number(value.match(/-/g)?.length) > 1) || /\\w-/.test(value)) {\n isValidText = false;\n validText = validText.replace(/-/g, '');\n validText = validText.replace(/\\w-/g, '');\n }\n\n // * check for more than one decimal point\n if (/^\\d*\\.\\d*\\..*$/.test(value)) {\n isValidText = false;\n validText = validText.replace(/\\.(?=\\.*\\.)/g, '');\n }\n\n // * check for spaces and comma\n if (/[\\s,]/.test(value)) {\n isValidText = false;\n validText = validText.replace(/[\\s,]/, '');\n }\n\n return {isValidText, validText};\n}\n\nexport const isDateFormatAsPerPattern = (\n datePattern?: string,\n dateString?: string | Date\n) => {\n try {\n // * format dateString as per datePattern\n const date = moment(dateString, datePattern, true);\n\n // * check date is valid and matches the format\n return date.isValid() && typeof dateString === 'string' && dateString?.toUpperCase() === date.format(datePattern)?.toUpperCase();\n } catch (error) {\n // * if not able to parse date string\n return false;\n }\n};\n\nexport const getMimeType = (extensions?: string) => {\n if (!extensions) return '*/*';\n let hasInvalidExtension = false;\n let wildCards = ['image/*', 'audio/*', 'video/*'];\n let extensionList = extensions.split(' ');\n let mimeType = extensionList\n .map((extension: string) => {\n let type = mime.lookup(extension);\n let isWildCardExtension = wildCards.includes(extension);\n // * invalid extension, also not in wildcards\n hasInvalidExtension = !type && !isWildCardExtension;\n return type ? type : isWildCardExtension ? extension : '';\n })\n .filter((type) => type);\n\n if (hasInvalidExtension) return '*/*';\n return mimeType;\n};\n\nexport function getNumberOfEmptyObjects(noOfItems: number) {\n return Array.from({ length: noOfItems }, () => ({}));\n}\n\nexport const setPosition = (data: { [index: string]: number }): void => {\n Object.keys(data).forEach((key: string):void => {\n AppLayoutPositionY[key] = data[key];\n })\n} \n\nexport const resetLayoutPositions = (): void => {\n Object.keys(AppLayoutPositionY).forEach((key: string) => {\n delete AppLayoutPositionY[key];\n })\n}\n\nexport const getPosition = (key: string): number => {\n return AppLayoutPositionY[key];\n}\n"],"mappings":"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","ignoreList":[]}