@wavemaker/app-rn-runtime 11.10.0-next.NULL → 11.10.1-rc.200

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 (1206) 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 +347 -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 +100 -0
  19. package/components/basic/anchor/anchor.component.js.map +1 -0
  20. package/components/basic/anchor/anchor.props.js +32 -0
  21. package/components/basic/animatedview.component.js +222 -0
  22. package/components/basic/audio/audio.component.js +251 -0
  23. package/components/basic/audio/audio.props.js +15 -0
  24. package/components/basic/button/button.component.js +114 -0
  25. package/components/basic/button/button.component.js.map +1 -0
  26. package/components/basic/button/button.props.js +27 -0
  27. package/components/basic/buttongroup/buttongroup.props.js +14 -0
  28. package/components/basic/custom/custom.props.js +16 -0
  29. package/components/basic/icon/icon.component.js +267 -0
  30. package/components/basic/icon/icon.component.js.map +1 -0
  31. package/components/basic/icon/icon.props.js +27 -0
  32. package/components/basic/label/label.component.js +157 -0
  33. package/components/basic/label/label.component.js.map +1 -0
  34. package/components/basic/label/label.props.js +24 -0
  35. package/components/basic/label/label.styles.js +133 -0
  36. package/components/basic/label/label.styles.js.map +1 -0
  37. package/components/basic/lottie/lottie.component.js +138 -0
  38. package/components/basic/lottie/lottie.props.js +14 -0
  39. package/components/basic/message/message.component.js +78 -0
  40. package/components/basic/message/message.props.js +21 -0
  41. package/components/basic/modal/modal.props.js +12 -0
  42. package/components/basic/picture/picture.component.js +199 -0
  43. package/components/basic/picture/picture.component.js.map +1 -0
  44. package/components/basic/picture/picture.props.js +23 -0
  45. package/components/basic/picture/picture.props.js.map +1 -0
  46. package/components/basic/progress-bar/progress-bar.component.js +60 -0
  47. package/components/basic/progress-bar/progress-bar.component.js.map +1 -0
  48. package/components/basic/progress-bar/progress-bar.props.js +16 -0
  49. package/components/basic/progress-bar/progress-bar.styles.js.map +1 -0
  50. package/components/basic/progress-circle/progress-circle.component.js +78 -0
  51. package/components/basic/progress-circle/progress-circle.component.js.map +1 -0
  52. package/components/basic/progress-circle/progress-circle.props.js +19 -0
  53. package/components/basic/search/local-data-provider.js +113 -0
  54. package/components/basic/search/search.component.js +431 -0
  55. package/components/basic/search/search.component.js.map +1 -0
  56. package/components/basic/search/search.props.js +36 -0
  57. package/components/basic/search/search.styles.js +169 -0
  58. package/components/basic/search/search.styles.js.map +1 -0
  59. package/components/basic/skeleton/skeleton.component.js +151 -0
  60. package/components/basic/skeleton/skeleton.props.js +11 -0
  61. package/components/basic/spinner/spinner.component.js +90 -0
  62. package/components/basic/spinner/spinner.props.js +17 -0
  63. package/components/basic/tooltip/tooltip.props.js +18 -0
  64. package/components/basic/video/video.component.js +144 -0
  65. package/components/basic/video/video.component.js.map +1 -0
  66. package/components/basic/video/video.props.js +32 -0
  67. package/components/basic/video/video.props.js.map +1 -0
  68. package/components/chart/area-chart/area-chart.component.js +148 -0
  69. package/components/chart/area-chart/area-chart.props.js +12 -0
  70. package/components/chart/bar-chart/bar-chart.component.js +120 -0
  71. package/components/chart/bar-chart/bar-chart.props.js +13 -0
  72. package/components/chart/basechart.component.js +693 -0
  73. package/components/chart/basechart.props.js +61 -0
  74. package/components/chart/bubble-chart/bubble-chart.component.js +104 -0
  75. package/components/chart/bubble-chart/bubble-chart.props.js +11 -0
  76. package/components/chart/donut-chart/donut-chart.props.js +11 -0
  77. package/components/chart/line-chart/line-chart.component.js +110 -0
  78. package/components/chart/line-chart/line-chart.props.js +14 -0
  79. package/components/chart/pie-chart/pie-chart.component.js +228 -0
  80. package/components/chart/pie-chart/pie-chart.props.js +14 -0
  81. package/components/chart/stack-chart/stack-chart.component.js +348 -0
  82. package/components/chart/stack-chart/stack-chart.props.js +17 -0
  83. package/components/container/accordion/accordion.component.js +190 -0
  84. package/components/container/accordion/accordion.props.js +14 -0
  85. package/components/container/accordion/accordionpane/accordionpane.component.js +85 -0
  86. package/components/container/accordion/accordionpane/accordionpane.props.js +17 -0
  87. package/components/container/container.component.js +82 -0
  88. package/components/container/container.component.js.map +1 -0
  89. package/components/container/container.props.js +14 -0
  90. package/components/container/layoutgrid/gridcolumn/gridcolumn.props.js +13 -0
  91. package/components/container/layoutgrid/gridrow/gridrow.props.js +11 -0
  92. package/components/container/layoutgrid/layoutgrid.props.js +11 -0
  93. package/components/container/linearlayout/linearlayout.props.js +15 -0
  94. package/components/container/linearlayout/linearlayoutitem/linearlayoutitem.props.js +13 -0
  95. package/components/container/panel/panel-content/panel-content.props.js +11 -0
  96. package/components/container/panel/panel-footer/panel-footer.props.js +11 -0
  97. package/components/container/panel/panel.component.js +155 -0
  98. package/components/container/panel/panel.component.js.map +1 -0
  99. package/components/container/panel/panel.props.js +24 -0
  100. package/components/container/partial-host.component.js +42 -0
  101. package/components/container/tabs/tabheader/tabheader.component.js +214 -0
  102. package/components/container/tabs/tabheader/tabheader.component.js.map +1 -0
  103. package/components/container/tabs/tabheader/tabheader.props.js +15 -0
  104. package/components/container/tabs/tabheader/tabheader.props.js.map +1 -0
  105. package/components/container/tabs/tabpane/tabpane.component.js +81 -0
  106. package/components/container/tabs/tabpane/tabpane.props.js +16 -0
  107. package/components/container/tabs/tabs.component.js +283 -0
  108. package/components/container/tabs/tabs.component.js.map +1 -0
  109. package/components/container/tabs/tabs.props.js +14 -0
  110. package/components/container/tabs/tabs.props.js.map +1 -0
  111. package/components/container/tabs/tabs.styles.js.map +1 -0
  112. package/components/container/tile/tile.component.js +50 -0
  113. package/components/container/tile/tile.component.js.map +1 -0
  114. package/components/container/tile/tile.props.js +13 -0
  115. package/components/container/wizard/wizard.component.js +387 -0
  116. package/components/container/wizard/wizard.component.js.map +1 -0
  117. package/components/container/wizard/wizard.props.js +23 -0
  118. package/components/container/wizard/wizard.styles.js +316 -0
  119. package/components/container/wizard/wizard.styles.js.map +1 -0
  120. package/components/container/wizard/wizardstep/wizardstep.component.js +91 -0
  121. package/components/container/wizard/wizardstep/wizardstep.component.js.map +1 -0
  122. package/components/container/wizard/wizardstep/wizardstep.props.js +22 -0
  123. package/components/data/card/card-content/card-content.component.js +45 -0
  124. package/components/data/card/card-content/card-content.props.js +12 -0
  125. package/components/data/card/card-footer/card-footer.props.js +11 -0
  126. package/components/data/card/card.component.js +91 -0
  127. package/components/data/card/card.component.js.map +1 -0
  128. package/components/data/card/card.props.js +27 -0
  129. package/components/data/form/form-action/form-action.component.js +35 -0
  130. package/components/data/form/form-action/form-action.props.js +18 -0
  131. package/components/data/form/form-body/form-body.props.js +11 -0
  132. package/components/data/form/form-field/form-field.component.js +246 -0
  133. package/components/data/form/form-field/form-field.props.js +34 -0
  134. package/components/data/form/form-footer/form-footer.props.js +11 -0
  135. package/components/data/form/form.component.js +425 -0
  136. package/components/data/form/form.props.js +31 -0
  137. package/components/data/list/list-action-template/list-action-template.props.js +12 -0
  138. package/components/data/list/list-template/list-template.props.js +12 -0
  139. package/components/data/list/list.component.js +486 -0
  140. package/components/data/list/list.component.js.map +1 -0
  141. package/components/data/list/list.props.js +48 -0
  142. package/components/data/liveform/liveform.component.js +98 -0
  143. package/components/device/barcodescanner/barcodescanner.component.js +50 -0
  144. package/components/device/barcodescanner/barcodescanner.props.js +18 -0
  145. package/components/device/camera/camera.component.js +68 -0
  146. package/components/device/camera/camera.props.js +23 -0
  147. package/components/dialogs/alertdialog/alertdialog.component.js +72 -0
  148. package/components/dialogs/alertdialog/alertdialog.props.js +24 -0
  149. package/components/dialogs/confirmdialog/confirmdialog.component.js +78 -0
  150. package/components/dialogs/confirmdialog/confirmdialog.props.js +24 -0
  151. package/components/dialogs/dialog/dialog.component.js +102 -0
  152. package/components/dialogs/dialog/dialog.component.js.map +1 -0
  153. package/components/dialogs/dialog/dialog.props.js +25 -0
  154. package/components/dialogs/dialogactions/dialogactions.component.js +21 -0
  155. package/components/dialogs/dialogactions/dialogactions.props.js +11 -0
  156. package/components/dialogs/dialogcontent/dialogcontent.props.js +11 -0
  157. package/components/input/basedataset/basedataset.component.js +230 -0
  158. package/components/input/basedataset/basedataset.props.js +31 -0
  159. package/components/input/baseinput/baseinput.component.js +193 -0
  160. package/components/input/baseinput/baseinput.props.js +31 -0
  161. package/components/input/baseinput/baseinput.props.js.map +1 -0
  162. package/components/input/basenumber/basenumber.component.js +346 -0
  163. package/components/input/basenumber/basenumber.component.js.map +1 -0
  164. package/components/input/basenumber/basenumber.props.js +27 -0
  165. package/components/input/calendar/calendar.component.js +164 -0
  166. package/components/input/calendar/calendar.props.js +14 -0
  167. package/components/input/calendar/calendar.styles.js.map +1 -0
  168. package/components/input/calendar/views/month-view.js +191 -0
  169. package/components/input/calendar/views/month-view.js.map +1 -0
  170. package/components/input/calendar/views/month-view.styles.js +39 -0
  171. package/components/input/calendar/views/month-view.styles.js.map +1 -0
  172. package/components/input/checkbox/checkbox.component.js +121 -0
  173. package/components/input/checkbox/checkbox.props.js +18 -0
  174. package/components/input/checkboxset/checkboxset.component.js +154 -0
  175. package/components/input/checkboxset/checkboxset.component.js.map +1 -0
  176. package/components/input/checkboxset/checkboxset.props.js +21 -0
  177. package/components/input/chips/chips.component.js +320 -0
  178. package/components/input/chips/chips.component.js.map +1 -0
  179. package/components/input/chips/chips.props.js +19 -0
  180. package/components/input/composite/composite.props.js +12 -0
  181. package/components/input/currency/currency.component.js +113 -0
  182. package/components/input/currency/currency.props.js +13 -0
  183. package/components/input/epoch/base-datetime.component.js +473 -0
  184. package/components/input/epoch/date-picker.component.js +136 -0
  185. package/components/input/epoch/date-picker.component.js.map +1 -0
  186. package/components/input/epoch/datetime/datetime.props.js +35 -0
  187. package/components/input/epoch/time/time.props.js +15 -0
  188. package/components/input/epoch/wheel-date-picker.component.js +198 -0
  189. package/components/input/epoch/wheel-time-picker.component.js +107 -0
  190. package/components/input/epoch/wheelpicker/wheelpicker.component.js +91 -0
  191. package/components/input/epoch/wheelpicker/wheelpicker.props.js +17 -0
  192. package/components/input/epoch/wheelpickermodal/date/date-picker-modal.component.js +79 -0
  193. package/components/input/epoch/wheelpickermodal/date/date-picker-modal.props.js +20 -0
  194. package/components/input/epoch/wheelpickermodal/time/time-picker-modal.component.js +77 -0
  195. package/components/input/epoch/wheelpickermodal/time/time-picker-modal.props.js +19 -0
  196. package/components/input/fileupload/fileupload.component.js +60 -0
  197. package/components/input/fileupload/fileupload.props.js +17 -0
  198. package/components/input/number/number.component.js +83 -0
  199. package/components/input/number/number.props.js +13 -0
  200. package/components/input/radioset/radioset.component.js +132 -0
  201. package/components/input/radioset/radioset.component.js.map +1 -0
  202. package/components/input/radioset/radioset.props.js +20 -0
  203. package/components/input/rating/rating.component.js +144 -0
  204. package/components/input/rating/rating.props.js +21 -0
  205. package/components/input/select/select.component.js +251 -0
  206. package/components/input/select/select.component.js.map +1 -0
  207. package/components/input/select/select.props.js +12 -0
  208. package/components/input/select/select.styles.js +153 -0
  209. package/components/input/select/select.styles.js.map +1 -0
  210. package/components/input/slider/slider.component.js +444 -0
  211. package/components/input/slider/slider.component.js.map +1 -0
  212. package/components/input/slider/slider.props.js +20 -0
  213. package/components/input/switch/switch.component.js +96 -0
  214. package/components/input/switch/switch.component.js.map +1 -0
  215. package/components/input/switch/switch.props.js +13 -0
  216. package/components/input/text/text.component.js +85 -0
  217. package/components/input/text/text.component.js.map +1 -0
  218. package/components/input/text/text.props.js +15 -0
  219. package/components/input/textarea/textarea.component.js +83 -0
  220. package/components/input/textarea/textarea.props.js +14 -0
  221. package/components/input/toggle/toggle.component.js +151 -0
  222. package/components/input/toggle/toggle.component.js.map +1 -0
  223. package/components/input/toggle/toggle.props.js +22 -0
  224. package/components/navigation/appnavbar/appnavbar.component.js +74 -0
  225. package/components/navigation/appnavbar/appnavbar.props.js +21 -0
  226. package/components/navigation/basenav/basenav.component.js +72 -0
  227. package/components/navigation/basenav/basenav.props.js +18 -0
  228. package/components/navigation/menu/menu.component.js +65 -0
  229. package/components/navigation/menu/menu.component.js.map +1 -0
  230. package/components/navigation/menu/menu.props.js +14 -0
  231. package/components/navigation/menu/menu.styles.js +70 -0
  232. package/components/navigation/menu/menu.styles.js.map +1 -0
  233. package/components/navigation/navbar/navbar.props.js +16 -0
  234. package/components/navigation/navitem/navitem.component.js +67 -0
  235. package/components/navigation/navitem/navitem.props.js +19 -0
  236. package/components/navigation/popover/popover.component.js +193 -0
  237. package/components/navigation/popover/popover.component.js.map +1 -0
  238. package/components/navigation/popover/popover.props.js +31 -0
  239. package/components/page/left-panel/left-panel.component.js +48 -0
  240. package/components/page/left-panel/left-panel.props.js +12 -0
  241. package/components/page/page-content/page-content.component.js +114 -0
  242. package/components/page/page-content/page-content.component.js.map +1 -0
  243. package/components/page/page-content/page-content.props.js +12 -0
  244. package/components/page/page.component.js +26 -0
  245. package/components/page/partial-container/partial-container.props.js +12 -0
  246. package/components/page/tabbar/tabbar.component.js +149 -0
  247. package/components/page/tabbar/tabbar.component.js.map +1 -0
  248. package/components/page/tabbar/tabbar.props.js +28 -0
  249. package/core/AppConfig.js.map +1 -0
  250. package/core/accessibility.js +160 -0
  251. package/core/accessibility.js.map +1 -0
  252. package/core/base.component.js +523 -0
  253. package/core/base.component.js.map +1 -0
  254. package/core/components/textinput.component.js +197 -0
  255. package/core/constant.service.js +22 -0
  256. package/core/event-notifier.js +68 -0
  257. package/core/fixed-view.component.js +67 -0
  258. package/core/imageSizeEstimator.js +51 -0
  259. package/core/key.extractor.js +21 -0
  260. package/core/logger.js +123 -0
  261. package/core/network.service.js +327 -0
  262. package/core/props.provider.js +88 -0
  263. package/core/scroll-view.component.js +52 -0
  264. package/core/storage.service.js +38 -0
  265. package/core/tappable.component.js +156 -0
  266. package/core/tappable.component.js.map +1 -0
  267. package/core/utils.js +543 -0
  268. package/core/utils.js.map +1 -0
  269. package/core/viewport.js +45 -0
  270. package/core/wm-component-tree.js +58 -0
  271. package/gestures/swipe.animation.js +217 -0
  272. package/npm-shrinkwrap.json +25695 -0
  273. package/package-lock.json +25695 -0
  274. package/package.json +272 -0
  275. package/runtime/App.js +533 -0
  276. package/runtime/App.js.map +1 -0
  277. package/runtime/base-fragment.component.js +411 -0
  278. package/runtime/base-fragment.component.js.map +1 -0
  279. package/runtime/base-page.component.js +209 -0
  280. package/runtime/base-page.component.js.map +1 -0
  281. package/runtime/base-partial.component.js +63 -0
  282. package/runtime/base-prefab.component.js +83 -0
  283. package/runtime/memo.component.js +35 -0
  284. package/runtime/navigator/stack.navigator.js +77 -0
  285. package/runtime/services/app-display-manager.service.js +50 -0
  286. package/runtime/services/app-i18n.service.js +82 -0
  287. package/runtime/services/app-i18n.service.js.map +1 -0
  288. package/runtime/services/app-modal.service.js +71 -0
  289. package/runtime/services/app-security.service.js +256 -0
  290. package/runtime/services/app-spinner.service.js +74 -0
  291. package/runtime/services/app-toast.service.js +56 -0
  292. package/runtime/services/device/camera-service.js +349 -0
  293. package/runtime/services/device/camera-service.js.map +1 -0
  294. package/runtime/services/device/permissions.js +50 -0
  295. package/runtime/services/device/permissions.js.map +1 -0
  296. package/runtime/services/device/scan-service.js +162 -0
  297. package/runtime/services/device/scan-service.js.map +1 -0
  298. package/runtime/services/webprocess.service.js +107 -0
  299. package/runtime/watcher.js +147 -0
  300. package/styles/background.component.js +311 -0
  301. package/styles/background.component.js.map +1 -0
  302. package/styles/style-props.js +93 -0
  303. package/styles/theme.js +454 -0
  304. package/styles/theme.js.map +1 -0
  305. package/styles/theme.variables.js +437 -0
  306. package/styles/theme.variables.js.map +1 -0
  307. package/variables/base-variable.js +125 -0
  308. package/variables/device/device/network-info.operation.js +33 -0
  309. package/variables/device/file/upload-file.operation.js +63 -0
  310. package/variables/device/file/upload-file.operation.js.map +1 -0
  311. package/variables/live-variable.js +130 -0
  312. package/variables/model-variable.js +47 -0
  313. package/variables/service-variable.js +143 -0
  314. package/variables/utils/inflight-queue.js +114 -0
  315. app-rn-runtime/actions/notification-action.js +0 -73
  316. app-rn-runtime/actions/timer-action.js +0 -57
  317. app-rn-runtime/components/advanced/carousel/carousel-content/carousel-content.props.js +0 -11
  318. app-rn-runtime/components/advanced/carousel/carousel-template/carousel-template.props.js +0 -11
  319. app-rn-runtime/components/advanced/carousel/carousel.component.js +0 -331
  320. app-rn-runtime/components/advanced/carousel/carousel.component.js.map +0 -1
  321. app-rn-runtime/components/advanced/carousel/carousel.props.js +0 -21
  322. app-rn-runtime/components/advanced/carousel/carousel.props.js.map +0 -1
  323. app-rn-runtime/components/advanced/carousel/carousel.styles.js +0 -180
  324. app-rn-runtime/components/advanced/carousel/carousel.styles.js.map +0 -1
  325. app-rn-runtime/components/advanced/login/login.component.js +0 -39
  326. app-rn-runtime/components/advanced/login/login.props.js +0 -12
  327. app-rn-runtime/components/advanced/network-info-toaster/network-info-toaster.component.js +0 -114
  328. app-rn-runtime/components/advanced/network-info-toaster/network-info-toaster.props.js +0 -11
  329. app-rn-runtime/components/advanced/webview/webview.component.js +0 -153
  330. app-rn-runtime/components/advanced/webview/webview.component.js.map +0 -1
  331. app-rn-runtime/components/advanced/webview/webview.props.js +0 -16
  332. app-rn-runtime/components/basic/anchor/anchor.component.js +0 -99
  333. app-rn-runtime/components/basic/anchor/anchor.component.js.map +0 -1
  334. app-rn-runtime/components/basic/anchor/anchor.props.js +0 -32
  335. app-rn-runtime/components/basic/animatedview.component.js +0 -222
  336. app-rn-runtime/components/basic/audio/audio.component.js +0 -251
  337. app-rn-runtime/components/basic/audio/audio.props.js +0 -15
  338. app-rn-runtime/components/basic/button/button.component.js +0 -113
  339. app-rn-runtime/components/basic/button/button.component.js.map +0 -1
  340. app-rn-runtime/components/basic/button/button.props.js +0 -27
  341. app-rn-runtime/components/basic/buttongroup/buttongroup.props.js +0 -14
  342. app-rn-runtime/components/basic/custom/custom.props.js +0 -16
  343. app-rn-runtime/components/basic/icon/icon.component.js +0 -266
  344. app-rn-runtime/components/basic/icon/icon.component.js.map +0 -1
  345. app-rn-runtime/components/basic/icon/icon.props.js +0 -27
  346. app-rn-runtime/components/basic/label/label.component.js +0 -156
  347. app-rn-runtime/components/basic/label/label.component.js.map +0 -1
  348. app-rn-runtime/components/basic/label/label.props.js +0 -24
  349. app-rn-runtime/components/basic/label/label.styles.js +0 -129
  350. app-rn-runtime/components/basic/label/label.styles.js.map +0 -1
  351. app-rn-runtime/components/basic/lottie/lottie.component.js +0 -138
  352. app-rn-runtime/components/basic/lottie/lottie.props.js +0 -14
  353. app-rn-runtime/components/basic/message/message.component.js +0 -78
  354. app-rn-runtime/components/basic/message/message.props.js +0 -21
  355. app-rn-runtime/components/basic/modal/modal.props.js +0 -12
  356. app-rn-runtime/components/basic/picture/picture.component.js +0 -191
  357. app-rn-runtime/components/basic/picture/picture.component.js.map +0 -1
  358. app-rn-runtime/components/basic/picture/picture.props.js +0 -22
  359. app-rn-runtime/components/basic/picture/picture.props.js.map +0 -1
  360. app-rn-runtime/components/basic/progress-bar/progress-bar.component.js +0 -59
  361. app-rn-runtime/components/basic/progress-bar/progress-bar.component.js.map +0 -1
  362. app-rn-runtime/components/basic/progress-bar/progress-bar.props.js +0 -16
  363. app-rn-runtime/components/basic/progress-bar/progress-bar.styles.js.map +0 -1
  364. app-rn-runtime/components/basic/progress-circle/progress-circle.component.js +0 -77
  365. app-rn-runtime/components/basic/progress-circle/progress-circle.component.js.map +0 -1
  366. app-rn-runtime/components/basic/progress-circle/progress-circle.props.js +0 -19
  367. app-rn-runtime/components/basic/search/local-data-provider.js +0 -113
  368. app-rn-runtime/components/basic/search/search.component.js +0 -427
  369. app-rn-runtime/components/basic/search/search.component.js.map +0 -1
  370. app-rn-runtime/components/basic/search/search.props.js +0 -36
  371. app-rn-runtime/components/basic/search/search.styles.js +0 -178
  372. app-rn-runtime/components/basic/search/search.styles.js.map +0 -1
  373. app-rn-runtime/components/basic/skeleton/skeleton.component.js +0 -151
  374. app-rn-runtime/components/basic/skeleton/skeleton.props.js +0 -11
  375. app-rn-runtime/components/basic/spinner/spinner.component.js +0 -90
  376. app-rn-runtime/components/basic/spinner/spinner.props.js +0 -17
  377. app-rn-runtime/components/basic/tooltip/tooltip.props.js +0 -18
  378. app-rn-runtime/components/basic/video/video.component.js +0 -68
  379. app-rn-runtime/components/basic/video/video.component.js.map +0 -1
  380. app-rn-runtime/components/basic/video/video.props.js +0 -25
  381. app-rn-runtime/components/basic/video/video.props.js.map +0 -1
  382. app-rn-runtime/components/chart/area-chart/area-chart.component.js +0 -148
  383. app-rn-runtime/components/chart/area-chart/area-chart.props.js +0 -12
  384. app-rn-runtime/components/chart/bar-chart/bar-chart.component.js +0 -120
  385. app-rn-runtime/components/chart/bar-chart/bar-chart.props.js +0 -13
  386. app-rn-runtime/components/chart/basechart.component.js +0 -693
  387. app-rn-runtime/components/chart/basechart.props.js +0 -61
  388. app-rn-runtime/components/chart/bubble-chart/bubble-chart.component.js +0 -104
  389. app-rn-runtime/components/chart/bubble-chart/bubble-chart.props.js +0 -11
  390. app-rn-runtime/components/chart/donut-chart/donut-chart.props.js +0 -11
  391. app-rn-runtime/components/chart/line-chart/line-chart.component.js +0 -110
  392. app-rn-runtime/components/chart/line-chart/line-chart.props.js +0 -14
  393. app-rn-runtime/components/chart/pie-chart/pie-chart.component.js +0 -228
  394. app-rn-runtime/components/chart/pie-chart/pie-chart.props.js +0 -14
  395. app-rn-runtime/components/chart/stack-chart/stack-chart.component.js +0 -348
  396. app-rn-runtime/components/chart/stack-chart/stack-chart.props.js +0 -17
  397. app-rn-runtime/components/container/accordion/accordion.component.js +0 -190
  398. app-rn-runtime/components/container/accordion/accordion.props.js +0 -14
  399. app-rn-runtime/components/container/accordion/accordionpane/accordionpane.component.js +0 -85
  400. app-rn-runtime/components/container/accordion/accordionpane/accordionpane.props.js +0 -17
  401. app-rn-runtime/components/container/container.component.js +0 -80
  402. app-rn-runtime/components/container/container.component.js.map +0 -1
  403. app-rn-runtime/components/container/container.props.js +0 -14
  404. app-rn-runtime/components/container/layoutgrid/gridcolumn/gridcolumn.props.js +0 -13
  405. app-rn-runtime/components/container/layoutgrid/gridrow/gridrow.props.js +0 -11
  406. app-rn-runtime/components/container/layoutgrid/layoutgrid.props.js +0 -11
  407. app-rn-runtime/components/container/linearlayout/linearlayout.props.js +0 -15
  408. app-rn-runtime/components/container/linearlayout/linearlayoutitem/linearlayoutitem.props.js +0 -13
  409. app-rn-runtime/components/container/panel/panel-content/panel-content.props.js +0 -11
  410. app-rn-runtime/components/container/panel/panel-footer/panel-footer.props.js +0 -11
  411. app-rn-runtime/components/container/panel/panel.component.js +0 -155
  412. app-rn-runtime/components/container/panel/panel.component.js.map +0 -1
  413. app-rn-runtime/components/container/panel/panel.props.js +0 -24
  414. app-rn-runtime/components/container/partial-host.component.js +0 -42
  415. app-rn-runtime/components/container/tabs/tabheader/tabheader.component.js +0 -198
  416. app-rn-runtime/components/container/tabs/tabheader/tabheader.component.js.map +0 -1
  417. app-rn-runtime/components/container/tabs/tabheader/tabheader.props.js +0 -13
  418. app-rn-runtime/components/container/tabs/tabheader/tabheader.props.js.map +0 -1
  419. app-rn-runtime/components/container/tabs/tabpane/tabpane.component.js +0 -81
  420. app-rn-runtime/components/container/tabs/tabpane/tabpane.props.js +0 -16
  421. app-rn-runtime/components/container/tabs/tabs.component.js +0 -281
  422. app-rn-runtime/components/container/tabs/tabs.component.js.map +0 -1
  423. app-rn-runtime/components/container/tabs/tabs.props.js +0 -13
  424. app-rn-runtime/components/container/tabs/tabs.props.js.map +0 -1
  425. app-rn-runtime/components/container/tabs/tabs.styles.js.map +0 -1
  426. app-rn-runtime/components/container/tile/tile.component.js +0 -49
  427. app-rn-runtime/components/container/tile/tile.component.js.map +0 -1
  428. app-rn-runtime/components/container/tile/tile.props.js +0 -13
  429. app-rn-runtime/components/container/wizard/wizard.component.js +0 -343
  430. app-rn-runtime/components/container/wizard/wizard.component.js.map +0 -1
  431. app-rn-runtime/components/container/wizard/wizard.props.js +0 -23
  432. app-rn-runtime/components/container/wizard/wizard.styles.js +0 -313
  433. app-rn-runtime/components/container/wizard/wizard.styles.js.map +0 -1
  434. app-rn-runtime/components/container/wizard/wizardstep/wizardstep.component.js +0 -84
  435. app-rn-runtime/components/container/wizard/wizardstep/wizardstep.component.js.map +0 -1
  436. app-rn-runtime/components/container/wizard/wizardstep/wizardstep.props.js +0 -22
  437. app-rn-runtime/components/data/card/card-content/card-content.component.js +0 -45
  438. app-rn-runtime/components/data/card/card-content/card-content.props.js +0 -12
  439. app-rn-runtime/components/data/card/card-footer/card-footer.props.js +0 -11
  440. app-rn-runtime/components/data/card/card.component.js +0 -90
  441. app-rn-runtime/components/data/card/card.component.js.map +0 -1
  442. app-rn-runtime/components/data/card/card.props.js +0 -27
  443. app-rn-runtime/components/data/form/form-action/form-action.component.js +0 -35
  444. app-rn-runtime/components/data/form/form-action/form-action.props.js +0 -18
  445. app-rn-runtime/components/data/form/form-body/form-body.props.js +0 -11
  446. app-rn-runtime/components/data/form/form-field/form-field.component.js +0 -246
  447. app-rn-runtime/components/data/form/form-field/form-field.props.js +0 -34
  448. app-rn-runtime/components/data/form/form-footer/form-footer.props.js +0 -11
  449. app-rn-runtime/components/data/form/form.component.js +0 -425
  450. app-rn-runtime/components/data/form/form.props.js +0 -31
  451. app-rn-runtime/components/data/list/list-action-template/list-action-template.props.js +0 -12
  452. app-rn-runtime/components/data/list/list-template/list-template.props.js +0 -12
  453. app-rn-runtime/components/data/list/list.component.js +0 -475
  454. app-rn-runtime/components/data/list/list.component.js.map +0 -1
  455. app-rn-runtime/components/data/list/list.props.js +0 -48
  456. app-rn-runtime/components/data/liveform/liveform.component.js +0 -98
  457. app-rn-runtime/components/device/barcodescanner/barcodescanner.component.js +0 -50
  458. app-rn-runtime/components/device/barcodescanner/barcodescanner.props.js +0 -18
  459. app-rn-runtime/components/device/camera/camera.component.js +0 -68
  460. app-rn-runtime/components/device/camera/camera.props.js +0 -23
  461. app-rn-runtime/components/dialogs/alertdialog/alertdialog.component.js +0 -72
  462. app-rn-runtime/components/dialogs/alertdialog/alertdialog.props.js +0 -24
  463. app-rn-runtime/components/dialogs/confirmdialog/confirmdialog.component.js +0 -78
  464. app-rn-runtime/components/dialogs/confirmdialog/confirmdialog.props.js +0 -24
  465. app-rn-runtime/components/dialogs/dialog/dialog.component.js +0 -102
  466. app-rn-runtime/components/dialogs/dialog/dialog.component.js.map +0 -1
  467. app-rn-runtime/components/dialogs/dialog/dialog.props.js +0 -25
  468. app-rn-runtime/components/dialogs/dialogactions/dialogactions.component.js +0 -21
  469. app-rn-runtime/components/dialogs/dialogactions/dialogactions.props.js +0 -11
  470. app-rn-runtime/components/dialogs/dialogcontent/dialogcontent.props.js +0 -11
  471. app-rn-runtime/components/input/basedataset/basedataset.component.js +0 -230
  472. app-rn-runtime/components/input/basedataset/basedataset.props.js +0 -31
  473. app-rn-runtime/components/input/baseinput/baseinput.component.js +0 -193
  474. app-rn-runtime/components/input/baseinput/baseinput.props.js +0 -30
  475. app-rn-runtime/components/input/baseinput/baseinput.props.js.map +0 -1
  476. app-rn-runtime/components/input/basenumber/basenumber.component.js +0 -340
  477. app-rn-runtime/components/input/basenumber/basenumber.component.js.map +0 -1
  478. app-rn-runtime/components/input/basenumber/basenumber.props.js +0 -27
  479. app-rn-runtime/components/input/calendar/calendar.component.js +0 -164
  480. app-rn-runtime/components/input/calendar/calendar.props.js +0 -14
  481. app-rn-runtime/components/input/calendar/calendar.styles.js.map +0 -1
  482. app-rn-runtime/components/input/calendar/views/month-view.js +0 -191
  483. app-rn-runtime/components/input/calendar/views/month-view.js.map +0 -1
  484. app-rn-runtime/components/input/calendar/views/month-view.styles.js +0 -39
  485. app-rn-runtime/components/input/calendar/views/month-view.styles.js.map +0 -1
  486. app-rn-runtime/components/input/checkbox/checkbox.component.js +0 -121
  487. app-rn-runtime/components/input/checkbox/checkbox.props.js +0 -18
  488. app-rn-runtime/components/input/checkboxset/checkboxset.component.js +0 -144
  489. app-rn-runtime/components/input/checkboxset/checkboxset.component.js.map +0 -1
  490. app-rn-runtime/components/input/checkboxset/checkboxset.props.js +0 -21
  491. app-rn-runtime/components/input/chips/chips.component.js +0 -296
  492. app-rn-runtime/components/input/chips/chips.component.js.map +0 -1
  493. app-rn-runtime/components/input/chips/chips.props.js +0 -19
  494. app-rn-runtime/components/input/composite/composite.props.js +0 -12
  495. app-rn-runtime/components/input/currency/currency.component.js +0 -113
  496. app-rn-runtime/components/input/currency/currency.props.js +0 -13
  497. app-rn-runtime/components/input/epoch/base-datetime.component.js +0 -473
  498. app-rn-runtime/components/input/epoch/date-picker.component.js +0 -136
  499. app-rn-runtime/components/input/epoch/date-picker.component.js.map +0 -1
  500. app-rn-runtime/components/input/epoch/datetime/datetime.props.js +0 -35
  501. app-rn-runtime/components/input/epoch/time/time.props.js +0 -15
  502. app-rn-runtime/components/input/epoch/wheel-date-picker.component.js +0 -198
  503. app-rn-runtime/components/input/epoch/wheel-time-picker.component.js +0 -107
  504. app-rn-runtime/components/input/epoch/wheelpicker/wheelpicker.component.js +0 -91
  505. app-rn-runtime/components/input/epoch/wheelpicker/wheelpicker.props.js +0 -17
  506. app-rn-runtime/components/input/epoch/wheelpickermodal/date/date-picker-modal.component.js +0 -79
  507. app-rn-runtime/components/input/epoch/wheelpickermodal/date/date-picker-modal.props.js +0 -20
  508. app-rn-runtime/components/input/epoch/wheelpickermodal/time/time-picker-modal.component.js +0 -77
  509. app-rn-runtime/components/input/epoch/wheelpickermodal/time/time-picker-modal.props.js +0 -19
  510. app-rn-runtime/components/input/fileupload/fileupload.component.js +0 -60
  511. app-rn-runtime/components/input/fileupload/fileupload.props.js +0 -17
  512. app-rn-runtime/components/input/number/number.component.js +0 -83
  513. app-rn-runtime/components/input/number/number.props.js +0 -13
  514. app-rn-runtime/components/input/radioset/radioset.component.js +0 -122
  515. app-rn-runtime/components/input/radioset/radioset.component.js.map +0 -1
  516. app-rn-runtime/components/input/radioset/radioset.props.js +0 -20
  517. app-rn-runtime/components/input/rating/rating.component.js +0 -144
  518. app-rn-runtime/components/input/rating/rating.props.js +0 -21
  519. app-rn-runtime/components/input/select/select.component.js +0 -215
  520. app-rn-runtime/components/input/select/select.component.js.map +0 -1
  521. app-rn-runtime/components/input/select/select.props.js +0 -12
  522. app-rn-runtime/components/input/select/select.styles.js +0 -129
  523. app-rn-runtime/components/input/select/select.styles.js.map +0 -1
  524. app-rn-runtime/components/input/slider/slider.component.js +0 -444
  525. app-rn-runtime/components/input/slider/slider.component.js.map +0 -1
  526. app-rn-runtime/components/input/slider/slider.props.js +0 -20
  527. app-rn-runtime/components/input/switch/switch.component.js +0 -94
  528. app-rn-runtime/components/input/switch/switch.component.js.map +0 -1
  529. app-rn-runtime/components/input/switch/switch.props.js +0 -13
  530. app-rn-runtime/components/input/text/text.component.js +0 -85
  531. app-rn-runtime/components/input/text/text.component.js.map +0 -1
  532. app-rn-runtime/components/input/text/text.props.js +0 -15
  533. app-rn-runtime/components/input/textarea/textarea.component.js +0 -83
  534. app-rn-runtime/components/input/textarea/textarea.props.js +0 -14
  535. app-rn-runtime/components/input/toggle/toggle.component.js +0 -150
  536. app-rn-runtime/components/input/toggle/toggle.component.js.map +0 -1
  537. app-rn-runtime/components/input/toggle/toggle.props.js +0 -22
  538. app-rn-runtime/components/navigation/appnavbar/appnavbar.component.js +0 -74
  539. app-rn-runtime/components/navigation/appnavbar/appnavbar.props.js +0 -21
  540. app-rn-runtime/components/navigation/basenav/basenav.component.js +0 -72
  541. app-rn-runtime/components/navigation/basenav/basenav.props.js +0 -18
  542. app-rn-runtime/components/navigation/menu/menu.component.js +0 -63
  543. app-rn-runtime/components/navigation/menu/menu.component.js.map +0 -1
  544. app-rn-runtime/components/navigation/menu/menu.props.js +0 -14
  545. app-rn-runtime/components/navigation/menu/menu.styles.js +0 -74
  546. app-rn-runtime/components/navigation/menu/menu.styles.js.map +0 -1
  547. app-rn-runtime/components/navigation/navbar/navbar.props.js +0 -16
  548. app-rn-runtime/components/navigation/navitem/navitem.component.js +0 -67
  549. app-rn-runtime/components/navigation/navitem/navitem.props.js +0 -19
  550. app-rn-runtime/components/navigation/popover/popover.component.js +0 -193
  551. app-rn-runtime/components/navigation/popover/popover.component.js.map +0 -1
  552. app-rn-runtime/components/navigation/popover/popover.props.js +0 -31
  553. app-rn-runtime/components/page/left-panel/left-panel.component.js +0 -48
  554. app-rn-runtime/components/page/left-panel/left-panel.props.js +0 -12
  555. app-rn-runtime/components/page/page-content/page-content.component.js +0 -93
  556. app-rn-runtime/components/page/page-content/page-content.component.js.map +0 -1
  557. app-rn-runtime/components/page/page-content/page-content.props.js +0 -12
  558. app-rn-runtime/components/page/page.component.js +0 -26
  559. app-rn-runtime/components/page/partial-container/partial-container.props.js +0 -12
  560. app-rn-runtime/components/page/tabbar/tabbar.component.js +0 -149
  561. app-rn-runtime/components/page/tabbar/tabbar.component.js.map +0 -1
  562. app-rn-runtime/components/page/tabbar/tabbar.props.js +0 -28
  563. app-rn-runtime/core/AppConfig.js.map +0 -1
  564. app-rn-runtime/core/accessibility.js +0 -155
  565. app-rn-runtime/core/accessibility.js.map +0 -1
  566. app-rn-runtime/core/base.component.js +0 -485
  567. app-rn-runtime/core/base.component.js.map +0 -1
  568. app-rn-runtime/core/components/textinput.component.js +0 -197
  569. app-rn-runtime/core/constant.service.js +0 -22
  570. app-rn-runtime/core/event-notifier.js +0 -68
  571. app-rn-runtime/core/fixed-view.component.js +0 -67
  572. app-rn-runtime/core/imageSizeEstimator.js +0 -51
  573. app-rn-runtime/core/key.extractor.js +0 -21
  574. app-rn-runtime/core/logger.js +0 -123
  575. app-rn-runtime/core/network.service.js +0 -327
  576. app-rn-runtime/core/props.provider.js +0 -88
  577. app-rn-runtime/core/scroll-view.component.js +0 -52
  578. app-rn-runtime/core/storage.service.js +0 -38
  579. app-rn-runtime/core/tappable.component.js +0 -151
  580. app-rn-runtime/core/tappable.component.js.map +0 -1
  581. app-rn-runtime/core/utils.js +0 -529
  582. app-rn-runtime/core/utils.js.map +0 -1
  583. app-rn-runtime/core/viewport.js +0 -45
  584. app-rn-runtime/core/wm-component-tree.js +0 -58
  585. app-rn-runtime/gestures/swipe.animation.js +0 -217
  586. app-rn-runtime/package.json +0 -277
  587. app-rn-runtime/runtime/App.js +0 -525
  588. app-rn-runtime/runtime/App.js.map +0 -1
  589. app-rn-runtime/runtime/base-fragment.component.js +0 -401
  590. app-rn-runtime/runtime/base-fragment.component.js.map +0 -1
  591. app-rn-runtime/runtime/base-page.component.js +0 -206
  592. app-rn-runtime/runtime/base-page.component.js.map +0 -1
  593. app-rn-runtime/runtime/base-partial.component.js +0 -63
  594. app-rn-runtime/runtime/base-prefab.component.js +0 -83
  595. app-rn-runtime/runtime/memo.component.js +0 -35
  596. app-rn-runtime/runtime/navigator/stack.navigator.js +0 -77
  597. app-rn-runtime/runtime/services/app-display-manager.service.js +0 -50
  598. app-rn-runtime/runtime/services/app-i18n.service.js +0 -81
  599. app-rn-runtime/runtime/services/app-i18n.service.js.map +0 -1
  600. app-rn-runtime/runtime/services/app-modal.service.js +0 -71
  601. app-rn-runtime/runtime/services/app-security.service.js +0 -256
  602. app-rn-runtime/runtime/services/app-spinner.service.js +0 -74
  603. app-rn-runtime/runtime/services/app-toast.service.js +0 -56
  604. app-rn-runtime/runtime/services/device/camera-service.js +0 -349
  605. app-rn-runtime/runtime/services/device/camera-service.js.map +0 -1
  606. app-rn-runtime/runtime/services/device/permissions.js +0 -50
  607. app-rn-runtime/runtime/services/device/permissions.js.map +0 -1
  608. app-rn-runtime/runtime/services/device/scan-service.js +0 -136
  609. app-rn-runtime/runtime/services/device/scan-service.js.map +0 -1
  610. app-rn-runtime/runtime/services/webprocess.service.js +0 -107
  611. app-rn-runtime/runtime/watcher.js +0 -147
  612. app-rn-runtime/styles/background.component.js +0 -311
  613. app-rn-runtime/styles/background.component.js.map +0 -1
  614. app-rn-runtime/styles/style-props.js +0 -93
  615. app-rn-runtime/styles/theme.js +0 -414
  616. app-rn-runtime/styles/theme.js.map +0 -1
  617. app-rn-runtime/styles/theme.variables.js +0 -437
  618. app-rn-runtime/styles/theme.variables.js.map +0 -1
  619. app-rn-runtime/variables/base-variable.js +0 -125
  620. app-rn-runtime/variables/device/device/network-info.operation.js +0 -33
  621. app-rn-runtime/variables/device/file/upload-file.operation.js +0 -56
  622. app-rn-runtime/variables/device/file/upload-file.operation.js.map +0 -1
  623. app-rn-runtime/variables/live-variable.js +0 -130
  624. app-rn-runtime/variables/model-variable.js +0 -47
  625. app-rn-runtime/variables/service-variable.js +0 -143
  626. app-rn-runtime/variables/utils/inflight-queue.js +0 -114
  627. {app-rn-runtime → package}/actions/base-action.js +0 -0
  628. {app-rn-runtime → package}/actions/base-action.js.map +0 -0
  629. {app-rn-runtime → package}/actions/index.js +0 -0
  630. {app-rn-runtime → package}/actions/index.js.map +0 -0
  631. {app-rn-runtime → package}/actions/login-action.js +0 -0
  632. {app-rn-runtime → package}/actions/login-action.js.map +0 -0
  633. {app-rn-runtime → package}/actions/logout-action.js +0 -0
  634. {app-rn-runtime → package}/actions/logout-action.js.map +0 -0
  635. {app-rn-runtime → package}/actions/navigation-action.js +0 -0
  636. {app-rn-runtime → package}/actions/navigation-action.js.map +0 -0
  637. {app-rn-runtime → package}/actions/notification-action.js.map +0 -0
  638. {app-rn-runtime → package}/actions/timer-action.js.map +0 -0
  639. {app-rn-runtime → package}/components/advanced/carousel/carousel-content/carousel-content.component.js +0 -0
  640. {app-rn-runtime → package}/components/advanced/carousel/carousel-content/carousel-content.component.js.map +0 -0
  641. {app-rn-runtime → package}/components/advanced/carousel/carousel-content/carousel-content.props.js.map +0 -0
  642. {app-rn-runtime → package}/components/advanced/carousel/carousel-content/carousel-content.styles.js +0 -0
  643. {app-rn-runtime → package}/components/advanced/carousel/carousel-content/carousel-content.styles.js.map +0 -0
  644. {app-rn-runtime → package}/components/advanced/carousel/carousel-template/carousel-template.component.js +0 -0
  645. {app-rn-runtime → package}/components/advanced/carousel/carousel-template/carousel-template.component.js.map +0 -0
  646. {app-rn-runtime → package}/components/advanced/carousel/carousel-template/carousel-template.props.js.map +0 -0
  647. {app-rn-runtime → package}/components/advanced/carousel/carousel-template/carousel-template.styles.js +0 -0
  648. {app-rn-runtime → package}/components/advanced/carousel/carousel-template/carousel-template.styles.js.map +0 -0
  649. {app-rn-runtime → package}/components/advanced/login/login.component.js.map +0 -0
  650. {app-rn-runtime → package}/components/advanced/login/login.props.js.map +0 -0
  651. {app-rn-runtime → package}/components/advanced/login/login.styles.js +0 -0
  652. {app-rn-runtime → package}/components/advanced/login/login.styles.js.map +0 -0
  653. {app-rn-runtime → package}/components/advanced/network-info-toaster/network-info-toaster.component.js.map +0 -0
  654. {app-rn-runtime → package}/components/advanced/network-info-toaster/network-info-toaster.props.js.map +0 -0
  655. {app-rn-runtime → package}/components/advanced/network-info-toaster/network-info-toaster.styles.js +0 -0
  656. {app-rn-runtime → package}/components/advanced/network-info-toaster/network-info-toaster.styles.js.map +0 -0
  657. {app-rn-runtime → package}/components/advanced/webview/webview.props.js.map +0 -0
  658. {app-rn-runtime → package}/components/advanced/webview/webview.styles.js +0 -0
  659. {app-rn-runtime → package}/components/advanced/webview/webview.styles.js.map +0 -0
  660. {app-rn-runtime → package}/components/basic/anchor/anchor.props.js.map +0 -0
  661. {app-rn-runtime → package}/components/basic/anchor/anchor.styles.js +0 -0
  662. {app-rn-runtime → package}/components/basic/anchor/anchor.styles.js.map +0 -0
  663. {app-rn-runtime → package}/components/basic/animatedview.component.js.map +0 -0
  664. {app-rn-runtime → package}/components/basic/audio/audio.component.js.map +0 -0
  665. {app-rn-runtime → package}/components/basic/audio/audio.props.js.map +0 -0
  666. {app-rn-runtime → package}/components/basic/audio/audio.styles.js +0 -0
  667. {app-rn-runtime → package}/components/basic/audio/audio.styles.js.map +0 -0
  668. {app-rn-runtime → package}/components/basic/button/button.props.js.map +0 -0
  669. {app-rn-runtime → package}/components/basic/button/button.styles.js +0 -0
  670. {app-rn-runtime → package}/components/basic/button/button.styles.js.map +0 -0
  671. {app-rn-runtime → package}/components/basic/buttongroup/buttongroup.component.js +0 -0
  672. {app-rn-runtime → package}/components/basic/buttongroup/buttongroup.component.js.map +0 -0
  673. {app-rn-runtime → package}/components/basic/buttongroup/buttongroup.props.js.map +0 -0
  674. {app-rn-runtime → package}/components/basic/buttongroup/buttongroup.styles.js +0 -0
  675. {app-rn-runtime → package}/components/basic/buttongroup/buttongroup.styles.js.map +0 -0
  676. {app-rn-runtime → package}/components/basic/custom/custom.component.js +0 -0
  677. {app-rn-runtime → package}/components/basic/custom/custom.component.js.map +0 -0
  678. {app-rn-runtime → package}/components/basic/custom/custom.props.js.map +0 -0
  679. {app-rn-runtime → package}/components/basic/custom/custom.styles.js +0 -0
  680. {app-rn-runtime → package}/components/basic/custom/custom.styles.js.map +0 -0
  681. {app-rn-runtime → package}/components/basic/icon/icon.props.js.map +0 -0
  682. {app-rn-runtime → package}/components/basic/icon/icon.styles.js +0 -0
  683. {app-rn-runtime → package}/components/basic/icon/icon.styles.js.map +0 -0
  684. {app-rn-runtime → package}/components/basic/icon/streamline-light-icon/streamline-light-icon.component.js +0 -0
  685. {app-rn-runtime → package}/components/basic/icon/streamline-light-icon/streamline-light-icon.component.js.map +0 -0
  686. {app-rn-runtime → package}/components/basic/icon/streamline-light-icon/streamline-light-icon.ttf +0 -0
  687. {app-rn-runtime → package}/components/basic/icon/streamline-regular-icon/streamline-regular-icon.component.js +0 -0
  688. {app-rn-runtime → package}/components/basic/icon/streamline-regular-icon/streamline-regular-icon.component.js.map +0 -0
  689. {app-rn-runtime → package}/components/basic/icon/streamline-regular-icon/streamline-regular-icon.ttf +0 -0
  690. {app-rn-runtime → package}/components/basic/icon/wavicon/wavicon.component.js +0 -0
  691. {app-rn-runtime → package}/components/basic/icon/wavicon/wavicon.component.js.map +0 -0
  692. {app-rn-runtime → package}/components/basic/icon/wavicon/wavicon.ttf +0 -0
  693. {app-rn-runtime → package}/components/basic/label/label.props.js.map +0 -0
  694. {app-rn-runtime → package}/components/basic/lottie/lottie.component.js.map +0 -0
  695. {app-rn-runtime → package}/components/basic/lottie/lottie.props.js.map +0 -0
  696. {app-rn-runtime → package}/components/basic/lottie/lottie.styles.js +0 -0
  697. {app-rn-runtime → package}/components/basic/lottie/lottie.styles.js.map +0 -0
  698. {app-rn-runtime → package}/components/basic/message/message.component.js.map +0 -0
  699. {app-rn-runtime → package}/components/basic/message/message.props.js.map +0 -0
  700. {app-rn-runtime → package}/components/basic/message/message.styles.js +0 -0
  701. {app-rn-runtime → package}/components/basic/message/message.styles.js.map +0 -0
  702. {app-rn-runtime → package}/components/basic/modal/modal.component.js +0 -0
  703. {app-rn-runtime → package}/components/basic/modal/modal.component.js.map +0 -0
  704. {app-rn-runtime → package}/components/basic/modal/modal.props.js.map +0 -0
  705. {app-rn-runtime → package}/components/basic/modal/modal.styles.js +0 -0
  706. {app-rn-runtime → package}/components/basic/modal/modal.styles.js.map +0 -0
  707. {app-rn-runtime → package}/components/basic/picture/picture.styles.js +0 -0
  708. {app-rn-runtime → package}/components/basic/picture/picture.styles.js.map +0 -0
  709. {app-rn-runtime → package}/components/basic/progress-bar/progress-bar.props.js.map +0 -0
  710. {app-rn-runtime → package}/components/basic/progress-bar/progress-bar.styles.js +0 -0
  711. {app-rn-runtime → package}/components/basic/progress-circle/progress-circle.props.js.map +0 -0
  712. {app-rn-runtime → package}/components/basic/progress-circle/progress-circle.styles.js +0 -0
  713. {app-rn-runtime → package}/components/basic/progress-circle/progress-circle.styles.js.map +0 -0
  714. {app-rn-runtime → package}/components/basic/search/local-data-provider.js.map +0 -0
  715. {app-rn-runtime → package}/components/basic/search/search.props.js.map +0 -0
  716. {app-rn-runtime → package}/components/basic/skeleton/skeleton.component.js.map +0 -0
  717. {app-rn-runtime → package}/components/basic/skeleton/skeleton.props.js.map +0 -0
  718. {app-rn-runtime → package}/components/basic/skeleton/skeleton.styles.js +0 -0
  719. {app-rn-runtime → package}/components/basic/skeleton/skeleton.styles.js.map +0 -0
  720. {app-rn-runtime → package}/components/basic/spinner/spinner.component.js.map +0 -0
  721. {app-rn-runtime → package}/components/basic/spinner/spinner.props.js.map +0 -0
  722. {app-rn-runtime → package}/components/basic/spinner/spinner.styles.js +0 -0
  723. {app-rn-runtime → package}/components/basic/spinner/spinner.styles.js.map +0 -0
  724. {app-rn-runtime → package}/components/basic/tooltip/tooltip.component.js +0 -0
  725. {app-rn-runtime → package}/components/basic/tooltip/tooltip.component.js.map +0 -0
  726. {app-rn-runtime → package}/components/basic/tooltip/tooltip.props.js.map +0 -0
  727. {app-rn-runtime → package}/components/basic/tooltip/tooltip.styles.js +0 -0
  728. {app-rn-runtime → package}/components/basic/tooltip/tooltip.styles.js.map +0 -0
  729. {app-rn-runtime → package}/components/basic/video/video.styles.js +0 -0
  730. {app-rn-runtime → package}/components/basic/video/video.styles.js.map +0 -0
  731. {app-rn-runtime → package}/components/chart/area-chart/area-chart.component.js.map +0 -0
  732. {app-rn-runtime → package}/components/chart/area-chart/area-chart.props.js.map +0 -0
  733. {app-rn-runtime → package}/components/chart/area-chart/area-chart.styles.js +0 -0
  734. {app-rn-runtime → package}/components/chart/area-chart/area-chart.styles.js.map +0 -0
  735. {app-rn-runtime → package}/components/chart/bar-chart/bar-chart.component.js.map +0 -0
  736. {app-rn-runtime → package}/components/chart/bar-chart/bar-chart.props.js.map +0 -0
  737. {app-rn-runtime → package}/components/chart/bar-chart/bar-chart.styles.js +0 -0
  738. {app-rn-runtime → package}/components/chart/bar-chart/bar-chart.styles.js.map +0 -0
  739. {app-rn-runtime → package}/components/chart/basechart.component.js.map +0 -0
  740. {app-rn-runtime → package}/components/chart/basechart.props.js.map +0 -0
  741. {app-rn-runtime → package}/components/chart/basechart.styles.js +0 -0
  742. {app-rn-runtime → package}/components/chart/basechart.styles.js.map +0 -0
  743. {app-rn-runtime → package}/components/chart/bubble-chart/bubble-chart.component.js.map +0 -0
  744. {app-rn-runtime → package}/components/chart/bubble-chart/bubble-chart.props.js.map +0 -0
  745. {app-rn-runtime → package}/components/chart/bubble-chart/bubble-chart.styles.js +0 -0
  746. {app-rn-runtime → package}/components/chart/bubble-chart/bubble-chart.styles.js.map +0 -0
  747. {app-rn-runtime → package}/components/chart/column-chart/column-chart.component.js +0 -0
  748. {app-rn-runtime → package}/components/chart/column-chart/column-chart.component.js.map +0 -0
  749. {app-rn-runtime → package}/components/chart/column-chart/column-chart.props.js +0 -0
  750. {app-rn-runtime → package}/components/chart/column-chart/column-chart.props.js.map +0 -0
  751. {app-rn-runtime → package}/components/chart/column-chart/column-chart.styles.js +0 -0
  752. {app-rn-runtime → package}/components/chart/column-chart/column-chart.styles.js.map +0 -0
  753. {app-rn-runtime → package}/components/chart/donut-chart/donut-chart.component.js +0 -0
  754. {app-rn-runtime → package}/components/chart/donut-chart/donut-chart.component.js.map +0 -0
  755. {app-rn-runtime → package}/components/chart/donut-chart/donut-chart.props.js.map +0 -0
  756. {app-rn-runtime → package}/components/chart/donut-chart/donut-chart.styles.js +0 -0
  757. {app-rn-runtime → package}/components/chart/donut-chart/donut-chart.styles.js.map +0 -0
  758. {app-rn-runtime → package}/components/chart/legend/legend.component.js +0 -0
  759. {app-rn-runtime → package}/components/chart/legend/legend.component.js.map +0 -0
  760. {app-rn-runtime → package}/components/chart/line-chart/line-chart.component.js.map +0 -0
  761. {app-rn-runtime → package}/components/chart/line-chart/line-chart.props.js.map +0 -0
  762. {app-rn-runtime → package}/components/chart/line-chart/line-chart.styles.js +0 -0
  763. {app-rn-runtime → package}/components/chart/line-chart/line-chart.styles.js.map +0 -0
  764. {app-rn-runtime → package}/components/chart/pie-chart/pie-chart.component.js.map +0 -0
  765. {app-rn-runtime → package}/components/chart/pie-chart/pie-chart.props.js.map +0 -0
  766. {app-rn-runtime → package}/components/chart/pie-chart/pie-chart.styles.js +0 -0
  767. {app-rn-runtime → package}/components/chart/pie-chart/pie-chart.styles.js.map +0 -0
  768. {app-rn-runtime → package}/components/chart/stack-chart/stack-chart.component.js.map +0 -0
  769. {app-rn-runtime → package}/components/chart/stack-chart/stack-chart.props.js.map +0 -0
  770. {app-rn-runtime → package}/components/chart/stack-chart/stack-chart.styles.js +0 -0
  771. {app-rn-runtime → package}/components/chart/stack-chart/stack-chart.styles.js.map +0 -0
  772. {app-rn-runtime → package}/components/chart/staticdata.js +0 -0
  773. {app-rn-runtime → package}/components/chart/staticdata.js.map +0 -0
  774. {app-rn-runtime → package}/components/chart/theme/chart.theme.js +0 -0
  775. {app-rn-runtime → package}/components/chart/theme/chart.theme.js.map +0 -0
  776. {app-rn-runtime → package}/components/container/accordion/accordion.component.js.map +0 -0
  777. {app-rn-runtime → package}/components/container/accordion/accordion.props.js.map +0 -0
  778. {app-rn-runtime → package}/components/container/accordion/accordion.styles.js +0 -0
  779. {app-rn-runtime → package}/components/container/accordion/accordion.styles.js.map +0 -0
  780. {app-rn-runtime → package}/components/container/accordion/accordionpane/accordionpane.component.js.map +0 -0
  781. {app-rn-runtime → package}/components/container/accordion/accordionpane/accordionpane.props.js.map +0 -0
  782. {app-rn-runtime → package}/components/container/accordion/accordionpane/accordionpane.styles.js +0 -0
  783. {app-rn-runtime → package}/components/container/accordion/accordionpane/accordionpane.styles.js.map +0 -0
  784. {app-rn-runtime → package}/components/container/container.props.js.map +0 -0
  785. {app-rn-runtime → package}/components/container/container.styles.js +0 -0
  786. {app-rn-runtime → package}/components/container/container.styles.js.map +0 -0
  787. {app-rn-runtime → package}/components/container/layoutgrid/gridcolumn/gridcolumn.component.js +0 -0
  788. {app-rn-runtime → package}/components/container/layoutgrid/gridcolumn/gridcolumn.component.js.map +0 -0
  789. {app-rn-runtime → package}/components/container/layoutgrid/gridcolumn/gridcolumn.props.js.map +0 -0
  790. {app-rn-runtime → package}/components/container/layoutgrid/gridcolumn/gridcolumn.styles.js +0 -0
  791. {app-rn-runtime → package}/components/container/layoutgrid/gridcolumn/gridcolumn.styles.js.map +0 -0
  792. {app-rn-runtime → package}/components/container/layoutgrid/gridrow/gridrow.component.js +0 -0
  793. {app-rn-runtime → package}/components/container/layoutgrid/gridrow/gridrow.component.js.map +0 -0
  794. {app-rn-runtime → package}/components/container/layoutgrid/gridrow/gridrow.props.js.map +0 -0
  795. {app-rn-runtime → package}/components/container/layoutgrid/gridrow/gridrow.styles.js +0 -0
  796. {app-rn-runtime → package}/components/container/layoutgrid/gridrow/gridrow.styles.js.map +0 -0
  797. {app-rn-runtime → package}/components/container/layoutgrid/layoutgrid.component.js +0 -0
  798. {app-rn-runtime → package}/components/container/layoutgrid/layoutgrid.component.js.map +0 -0
  799. {app-rn-runtime → package}/components/container/layoutgrid/layoutgrid.props.js.map +0 -0
  800. {app-rn-runtime → package}/components/container/layoutgrid/layoutgrid.styles.js +0 -0
  801. {app-rn-runtime → package}/components/container/layoutgrid/layoutgrid.styles.js.map +0 -0
  802. {app-rn-runtime → package}/components/container/linearlayout/linearlayout.component.js +0 -0
  803. {app-rn-runtime → package}/components/container/linearlayout/linearlayout.component.js.map +0 -0
  804. {app-rn-runtime → package}/components/container/linearlayout/linearlayout.props.js.map +0 -0
  805. {app-rn-runtime → package}/components/container/linearlayout/linearlayout.styles.js +0 -0
  806. {app-rn-runtime → package}/components/container/linearlayout/linearlayout.styles.js.map +0 -0
  807. {app-rn-runtime → package}/components/container/linearlayout/linearlayoutitem/linearlayoutitem.component.js +0 -0
  808. {app-rn-runtime → package}/components/container/linearlayout/linearlayoutitem/linearlayoutitem.component.js.map +0 -0
  809. {app-rn-runtime → package}/components/container/linearlayout/linearlayoutitem/linearlayoutitem.props.js.map +0 -0
  810. {app-rn-runtime → package}/components/container/linearlayout/linearlayoutitem/linearlayoutitem.styles.js +0 -0
  811. {app-rn-runtime → package}/components/container/linearlayout/linearlayoutitem/linearlayoutitem.styles.js.map +0 -0
  812. {app-rn-runtime → package}/components/container/panel/collapsible-pane.component.js +0 -0
  813. {app-rn-runtime → package}/components/container/panel/collapsible-pane.component.js.map +0 -0
  814. {app-rn-runtime → package}/components/container/panel/panel-content/panel-content.component.js +0 -0
  815. {app-rn-runtime → package}/components/container/panel/panel-content/panel-content.component.js.map +0 -0
  816. {app-rn-runtime → package}/components/container/panel/panel-content/panel-content.props.js.map +0 -0
  817. {app-rn-runtime → package}/components/container/panel/panel-content/panel-content.styles.js +0 -0
  818. {app-rn-runtime → package}/components/container/panel/panel-content/panel-content.styles.js.map +0 -0
  819. {app-rn-runtime → package}/components/container/panel/panel-footer/panel-footer.component.js +0 -0
  820. {app-rn-runtime → package}/components/container/panel/panel-footer/panel-footer.component.js.map +0 -0
  821. {app-rn-runtime → package}/components/container/panel/panel-footer/panel-footer.props.js.map +0 -0
  822. {app-rn-runtime → package}/components/container/panel/panel-footer/panel-footer.styles.js +0 -0
  823. {app-rn-runtime → package}/components/container/panel/panel-footer/panel-footer.styles.js.map +0 -0
  824. {app-rn-runtime → package}/components/container/panel/panel.props.js.map +0 -0
  825. {app-rn-runtime → package}/components/container/panel/panel.styles.js +0 -0
  826. {app-rn-runtime → package}/components/container/panel/panel.styles.js.map +0 -0
  827. {app-rn-runtime → package}/components/container/partial-host.component.js.map +0 -0
  828. {app-rn-runtime → package}/components/container/tabs/tabheader/tabheader.styles.js +0 -0
  829. {app-rn-runtime → package}/components/container/tabs/tabheader/tabheader.styles.js.map +0 -0
  830. {app-rn-runtime → package}/components/container/tabs/tabpane/tabpane.component.js.map +0 -0
  831. {app-rn-runtime → package}/components/container/tabs/tabpane/tabpane.props.js.map +0 -0
  832. {app-rn-runtime → package}/components/container/tabs/tabpane/tabpane.styles.js +0 -0
  833. {app-rn-runtime → package}/components/container/tabs/tabpane/tabpane.styles.js.map +0 -0
  834. {app-rn-runtime → package}/components/container/tabs/tabs.styles.js +0 -0
  835. {app-rn-runtime → package}/components/container/tile/tile.props.js.map +0 -0
  836. {app-rn-runtime → package}/components/container/tile/tile.styles.js +0 -0
  837. {app-rn-runtime → package}/components/container/tile/tile.styles.js.map +0 -0
  838. {app-rn-runtime → package}/components/container/wizard/wizard.props.js.map +0 -0
  839. {app-rn-runtime → package}/components/container/wizard/wizardstep/wizardstep.props.js.map +0 -0
  840. {app-rn-runtime → package}/components/container/wizard/wizardstep/wizardstep.styles.js +0 -0
  841. {app-rn-runtime → package}/components/container/wizard/wizardstep/wizardstep.styles.js.map +0 -0
  842. {app-rn-runtime → package}/components/data/card/card-content/card-content.component.js.map +0 -0
  843. {app-rn-runtime → package}/components/data/card/card-content/card-content.props.js.map +0 -0
  844. {app-rn-runtime → package}/components/data/card/card-content/card-content.styles.js +0 -0
  845. {app-rn-runtime → package}/components/data/card/card-content/card-content.styles.js.map +0 -0
  846. {app-rn-runtime → package}/components/data/card/card-footer/card-footer.component.js +0 -0
  847. {app-rn-runtime → package}/components/data/card/card-footer/card-footer.component.js.map +0 -0
  848. {app-rn-runtime → package}/components/data/card/card-footer/card-footer.props.js.map +0 -0
  849. {app-rn-runtime → package}/components/data/card/card-footer/card-footer.styles.js +0 -0
  850. {app-rn-runtime → package}/components/data/card/card-footer/card-footer.styles.js.map +0 -0
  851. {app-rn-runtime → package}/components/data/card/card.props.js.map +0 -0
  852. {app-rn-runtime → package}/components/data/card/card.styles.js +0 -0
  853. {app-rn-runtime → package}/components/data/card/card.styles.js.map +0 -0
  854. {app-rn-runtime → package}/components/data/form/form-action/form-action.component.js.map +0 -0
  855. {app-rn-runtime → package}/components/data/form/form-action/form-action.props.js.map +0 -0
  856. {app-rn-runtime → package}/components/data/form/form-action/form-action.styles.js +0 -0
  857. {app-rn-runtime → package}/components/data/form/form-action/form-action.styles.js.map +0 -0
  858. {app-rn-runtime → package}/components/data/form/form-body/form-body.component.js +0 -0
  859. {app-rn-runtime → package}/components/data/form/form-body/form-body.component.js.map +0 -0
  860. {app-rn-runtime → package}/components/data/form/form-body/form-body.props.js.map +0 -0
  861. {app-rn-runtime → package}/components/data/form/form-body/form-body.styles.js +0 -0
  862. {app-rn-runtime → package}/components/data/form/form-body/form-body.styles.js.map +0 -0
  863. {app-rn-runtime → package}/components/data/form/form-field/form-field.component.js.map +0 -0
  864. {app-rn-runtime → package}/components/data/form/form-field/form-field.props.js.map +0 -0
  865. {app-rn-runtime → package}/components/data/form/form-field/form-field.styles.js +0 -0
  866. {app-rn-runtime → package}/components/data/form/form-field/form-field.styles.js.map +0 -0
  867. {app-rn-runtime → package}/components/data/form/form-footer/form-footer.component.js +0 -0
  868. {app-rn-runtime → package}/components/data/form/form-footer/form-footer.component.js.map +0 -0
  869. {app-rn-runtime → package}/components/data/form/form-footer/form-footer.props.js.map +0 -0
  870. {app-rn-runtime → package}/components/data/form/form-footer/form-footer.styles.js +0 -0
  871. {app-rn-runtime → package}/components/data/form/form-footer/form-footer.styles.js.map +0 -0
  872. {app-rn-runtime → package}/components/data/form/form.component.js.map +0 -0
  873. {app-rn-runtime → package}/components/data/form/form.props.js.map +0 -0
  874. {app-rn-runtime → package}/components/data/form/form.styles.js +0 -0
  875. {app-rn-runtime → package}/components/data/form/form.styles.js.map +0 -0
  876. {app-rn-runtime → package}/components/data/list/list-action-template/list-action-template.component.js +0 -0
  877. {app-rn-runtime → package}/components/data/list/list-action-template/list-action-template.component.js.map +0 -0
  878. {app-rn-runtime → package}/components/data/list/list-action-template/list-action-template.props.js.map +0 -0
  879. {app-rn-runtime → package}/components/data/list/list-action-template/list-action-template.styles.js +0 -0
  880. {app-rn-runtime → package}/components/data/list/list-action-template/list-action-template.styles.js.map +0 -0
  881. {app-rn-runtime → package}/components/data/list/list-template/list-template.component.js +0 -0
  882. {app-rn-runtime → package}/components/data/list/list-template/list-template.component.js.map +0 -0
  883. {app-rn-runtime → package}/components/data/list/list-template/list-template.props.js.map +0 -0
  884. {app-rn-runtime → package}/components/data/list/list-template/list-template.styles.js +0 -0
  885. {app-rn-runtime → package}/components/data/list/list-template/list-template.styles.js.map +0 -0
  886. {app-rn-runtime → package}/components/data/list/list.props.js.map +0 -0
  887. {app-rn-runtime → package}/components/data/list/list.styles.js +0 -0
  888. {app-rn-runtime → package}/components/data/list/list.styles.js.map +0 -0
  889. {app-rn-runtime → package}/components/data/liveform/liveform.component.js.map +0 -0
  890. {app-rn-runtime → package}/components/device/barcodescanner/barcodescanner.component.js.map +0 -0
  891. {app-rn-runtime → package}/components/device/barcodescanner/barcodescanner.props.js.map +0 -0
  892. {app-rn-runtime → package}/components/device/barcodescanner/barcodescanner.styles.js +0 -0
  893. {app-rn-runtime → package}/components/device/barcodescanner/barcodescanner.styles.js.map +0 -0
  894. {app-rn-runtime → package}/components/device/camera/camera.component.js.map +0 -0
  895. {app-rn-runtime → package}/components/device/camera/camera.props.js.map +0 -0
  896. {app-rn-runtime → package}/components/device/camera/camera.styles.js +0 -0
  897. {app-rn-runtime → package}/components/device/camera/camera.styles.js.map +0 -0
  898. {app-rn-runtime → package}/components/dialogs/alertdialog/alertdialog.component.js.map +0 -0
  899. {app-rn-runtime → package}/components/dialogs/alertdialog/alertdialog.props.js.map +0 -0
  900. {app-rn-runtime → package}/components/dialogs/alertdialog/alertdialog.styles.js +0 -0
  901. {app-rn-runtime → package}/components/dialogs/alertdialog/alertdialog.styles.js.map +0 -0
  902. {app-rn-runtime → package}/components/dialogs/confirmdialog/confirmdialog.component.js.map +0 -0
  903. {app-rn-runtime → package}/components/dialogs/confirmdialog/confirmdialog.props.js.map +0 -0
  904. {app-rn-runtime → package}/components/dialogs/confirmdialog/confirmdialog.styles.js +0 -0
  905. {app-rn-runtime → package}/components/dialogs/confirmdialog/confirmdialog.styles.js.map +0 -0
  906. {app-rn-runtime → package}/components/dialogs/dialog/dialog.props.js.map +0 -0
  907. {app-rn-runtime → package}/components/dialogs/dialog/dialog.styles.js +0 -0
  908. {app-rn-runtime → package}/components/dialogs/dialog/dialog.styles.js.map +0 -0
  909. {app-rn-runtime → package}/components/dialogs/dialogactions/dialogactions.component.js.map +0 -0
  910. {app-rn-runtime → package}/components/dialogs/dialogactions/dialogactions.props.js.map +0 -0
  911. {app-rn-runtime → package}/components/dialogs/dialogactions/dialogactions.styles.js +0 -0
  912. {app-rn-runtime → package}/components/dialogs/dialogactions/dialogactions.styles.js.map +0 -0
  913. {app-rn-runtime → package}/components/dialogs/dialogcontent/dialogcontent.component.js +0 -0
  914. {app-rn-runtime → package}/components/dialogs/dialogcontent/dialogcontent.component.js.map +0 -0
  915. {app-rn-runtime → package}/components/dialogs/dialogcontent/dialogcontent.props.js.map +0 -0
  916. {app-rn-runtime → package}/components/dialogs/dialogcontent/dialogcontent.styles.js +0 -0
  917. {app-rn-runtime → package}/components/dialogs/dialogcontent/dialogcontent.styles.js.map +0 -0
  918. {app-rn-runtime → package}/components/input/basedataset/basedataset.component.js.map +0 -0
  919. {app-rn-runtime → package}/components/input/basedataset/basedataset.props.js.map +0 -0
  920. {app-rn-runtime → package}/components/input/basedataset/basedataset.styles.js +0 -0
  921. {app-rn-runtime → package}/components/input/basedataset/basedataset.styles.js.map +0 -0
  922. {app-rn-runtime → package}/components/input/baseinput/baseinput.component.js.map +0 -0
  923. {app-rn-runtime → package}/components/input/baseinput/baseinput.styles.js +0 -0
  924. {app-rn-runtime → package}/components/input/baseinput/baseinput.styles.js.map +0 -0
  925. {app-rn-runtime → package}/components/input/basenumber/basenumber.props.js.map +0 -0
  926. {app-rn-runtime → package}/components/input/basenumber/basenumber.styles.js +0 -0
  927. {app-rn-runtime → package}/components/input/basenumber/basenumber.styles.js.map +0 -0
  928. {app-rn-runtime → package}/components/input/calendar/calendar.component.js.map +0 -0
  929. {app-rn-runtime → package}/components/input/calendar/calendar.props.js.map +0 -0
  930. {app-rn-runtime → package}/components/input/calendar/calendar.styles.js +0 -0
  931. {app-rn-runtime → package}/components/input/checkbox/checkbox.component.js.map +0 -0
  932. {app-rn-runtime → package}/components/input/checkbox/checkbox.props.js.map +0 -0
  933. {app-rn-runtime → package}/components/input/checkbox/checkbox.styles.js +0 -0
  934. {app-rn-runtime → package}/components/input/checkbox/checkbox.styles.js.map +0 -0
  935. {app-rn-runtime → package}/components/input/checkboxset/checkboxset.props.js.map +0 -0
  936. {app-rn-runtime → package}/components/input/checkboxset/checkboxset.styles.js +0 -0
  937. {app-rn-runtime → package}/components/input/checkboxset/checkboxset.styles.js.map +0 -0
  938. {app-rn-runtime → package}/components/input/chips/chips.props.js.map +0 -0
  939. {app-rn-runtime → package}/components/input/chips/chips.styles.js +0 -0
  940. {app-rn-runtime → package}/components/input/chips/chips.styles.js.map +0 -0
  941. {app-rn-runtime → package}/components/input/composite/composite.component.js +0 -0
  942. {app-rn-runtime → package}/components/input/composite/composite.component.js.map +0 -0
  943. {app-rn-runtime → package}/components/input/composite/composite.props.js.map +0 -0
  944. {app-rn-runtime → package}/components/input/composite/composite.styles.js +0 -0
  945. {app-rn-runtime → package}/components/input/composite/composite.styles.js.map +0 -0
  946. {app-rn-runtime → package}/components/input/currency/currency.component.js.map +0 -0
  947. {app-rn-runtime → package}/components/input/currency/currency.props.js.map +0 -0
  948. {app-rn-runtime → package}/components/input/currency/currency.styles.js +0 -0
  949. {app-rn-runtime → package}/components/input/currency/currency.styles.js.map +0 -0
  950. {app-rn-runtime → package}/components/input/epoch/base-datetime.component.js.map +0 -0
  951. {app-rn-runtime → package}/components/input/epoch/date/date.component.js +0 -0
  952. {app-rn-runtime → package}/components/input/epoch/date/date.component.js.map +0 -0
  953. {app-rn-runtime → package}/components/input/epoch/date/date.props.js +0 -0
  954. {app-rn-runtime → package}/components/input/epoch/date/date.props.js.map +0 -0
  955. {app-rn-runtime → package}/components/input/epoch/date/date.styles.js +0 -0
  956. {app-rn-runtime → package}/components/input/epoch/date/date.styles.js.map +0 -0
  957. {app-rn-runtime → package}/components/input/epoch/datetime/datetime.component.js +0 -0
  958. {app-rn-runtime → package}/components/input/epoch/datetime/datetime.component.js.map +0 -0
  959. {app-rn-runtime → package}/components/input/epoch/datetime/datetime.props.js.map +0 -0
  960. {app-rn-runtime → package}/components/input/epoch/datetime/datetime.styles.js +0 -0
  961. {app-rn-runtime → package}/components/input/epoch/datetime/datetime.styles.js.map +0 -0
  962. {app-rn-runtime → package}/components/input/epoch/time/time.component.js +0 -0
  963. {app-rn-runtime → package}/components/input/epoch/time/time.component.js.map +0 -0
  964. {app-rn-runtime → package}/components/input/epoch/time/time.props.js.map +0 -0
  965. {app-rn-runtime → package}/components/input/epoch/time/time.styles.js +0 -0
  966. {app-rn-runtime → package}/components/input/epoch/time/time.styles.js.map +0 -0
  967. {app-rn-runtime → package}/components/input/epoch/wheel-date-picker.component.js.map +0 -0
  968. {app-rn-runtime → package}/components/input/epoch/wheel-time-picker.component.js.map +0 -0
  969. {app-rn-runtime → package}/components/input/epoch/wheelpicker/wheelpicker.component.js.map +0 -0
  970. {app-rn-runtime → package}/components/input/epoch/wheelpicker/wheelpicker.props.js.map +0 -0
  971. {app-rn-runtime → package}/components/input/epoch/wheelpicker/wheelpicker.styles.js +0 -0
  972. {app-rn-runtime → package}/components/input/epoch/wheelpicker/wheelpicker.styles.js.map +0 -0
  973. {app-rn-runtime → package}/components/input/epoch/wheelpickermodal/date/date-picker-modal.component.js.map +0 -0
  974. {app-rn-runtime → package}/components/input/epoch/wheelpickermodal/date/date-picker-modal.props.js.map +0 -0
  975. {app-rn-runtime → package}/components/input/epoch/wheelpickermodal/styles/datetime-picker-modal.styles.js +0 -0
  976. {app-rn-runtime → package}/components/input/epoch/wheelpickermodal/styles/datetime-picker-modal.styles.js.map +0 -0
  977. {app-rn-runtime → package}/components/input/epoch/wheelpickermodal/time/time-picker-modal.component.js.map +0 -0
  978. {app-rn-runtime → package}/components/input/epoch/wheelpickermodal/time/time-picker-modal.props.js.map +0 -0
  979. {app-rn-runtime → package}/components/input/fileupload/fileupload.component.js.map +0 -0
  980. {app-rn-runtime → package}/components/input/fileupload/fileupload.props.js.map +0 -0
  981. {app-rn-runtime → package}/components/input/fileupload/fileupload.styles.js +0 -0
  982. {app-rn-runtime → package}/components/input/fileupload/fileupload.styles.js.map +0 -0
  983. {app-rn-runtime → package}/components/input/number/number.component.js.map +0 -0
  984. {app-rn-runtime → package}/components/input/number/number.props.js.map +0 -0
  985. {app-rn-runtime → package}/components/input/number/number.styles.js +0 -0
  986. {app-rn-runtime → package}/components/input/number/number.styles.js.map +0 -0
  987. {app-rn-runtime → package}/components/input/radioset/radioset.props.js.map +0 -0
  988. {app-rn-runtime → package}/components/input/radioset/radioset.styles.js +0 -0
  989. {app-rn-runtime → package}/components/input/radioset/radioset.styles.js.map +0 -0
  990. {app-rn-runtime → package}/components/input/rating/rating.component.js.map +0 -0
  991. {app-rn-runtime → package}/components/input/rating/rating.props.js.map +0 -0
  992. {app-rn-runtime → package}/components/input/rating/rating.styles.js +0 -0
  993. {app-rn-runtime → package}/components/input/rating/rating.styles.js.map +0 -0
  994. {app-rn-runtime → package}/components/input/select/select.props.js.map +0 -0
  995. {app-rn-runtime → package}/components/input/slider/slider.props.js.map +0 -0
  996. {app-rn-runtime → package}/components/input/slider/slider.styles.js +0 -0
  997. {app-rn-runtime → package}/components/input/slider/slider.styles.js.map +0 -0
  998. {app-rn-runtime → package}/components/input/switch/switch.props.js.map +0 -0
  999. {app-rn-runtime → package}/components/input/switch/switch.styles.js +0 -0
  1000. {app-rn-runtime → package}/components/input/switch/switch.styles.js.map +0 -0
  1001. {app-rn-runtime → package}/components/input/text/text.props.js.map +0 -0
  1002. {app-rn-runtime → package}/components/input/text/text.styles.js +0 -0
  1003. {app-rn-runtime → package}/components/input/text/text.styles.js.map +0 -0
  1004. {app-rn-runtime → package}/components/input/textarea/textarea.component.js.map +0 -0
  1005. {app-rn-runtime → package}/components/input/textarea/textarea.props.js.map +0 -0
  1006. {app-rn-runtime → package}/components/input/textarea/textarea.styles.js +0 -0
  1007. {app-rn-runtime → package}/components/input/textarea/textarea.styles.js.map +0 -0
  1008. {app-rn-runtime → package}/components/input/toggle/toggle.props.js.map +0 -0
  1009. {app-rn-runtime → package}/components/input/toggle/toggle.styles.js +0 -0
  1010. {app-rn-runtime → package}/components/input/toggle/toggle.styles.js.map +0 -0
  1011. {app-rn-runtime → package}/components/navigation/appnavbar/appnavbar.component.js.map +0 -0
  1012. {app-rn-runtime → package}/components/navigation/appnavbar/appnavbar.props.js.map +0 -0
  1013. {app-rn-runtime → package}/components/navigation/appnavbar/appnavbar.styles.js +0 -0
  1014. {app-rn-runtime → package}/components/navigation/appnavbar/appnavbar.styles.js.map +0 -0
  1015. {app-rn-runtime → package}/components/navigation/basenav/basenav.component.js.map +0 -0
  1016. {app-rn-runtime → package}/components/navigation/basenav/basenav.props.js.map +0 -0
  1017. {app-rn-runtime → package}/components/navigation/basenav/basenav.styles.js +0 -0
  1018. {app-rn-runtime → package}/components/navigation/basenav/basenav.styles.js.map +0 -0
  1019. {app-rn-runtime → package}/components/navigation/menu/menu.props.js.map +0 -0
  1020. {app-rn-runtime → package}/components/navigation/navbar/navbar.component.js +0 -0
  1021. {app-rn-runtime → package}/components/navigation/navbar/navbar.component.js.map +0 -0
  1022. {app-rn-runtime → package}/components/navigation/navbar/navbar.props.js.map +0 -0
  1023. {app-rn-runtime → package}/components/navigation/navbar/navbar.styles.js +0 -0
  1024. {app-rn-runtime → package}/components/navigation/navbar/navbar.styles.js.map +0 -0
  1025. {app-rn-runtime → package}/components/navigation/navitem/navitem.component.js.map +0 -0
  1026. {app-rn-runtime → package}/components/navigation/navitem/navitem.props.js.map +0 -0
  1027. {app-rn-runtime → package}/components/navigation/navitem/navitem.styles.js +0 -0
  1028. {app-rn-runtime → package}/components/navigation/navitem/navitem.styles.js.map +0 -0
  1029. {app-rn-runtime → package}/components/navigation/popover/popover.props.js.map +0 -0
  1030. {app-rn-runtime → package}/components/navigation/popover/popover.styles.js +0 -0
  1031. {app-rn-runtime → package}/components/navigation/popover/popover.styles.js.map +0 -0
  1032. {app-rn-runtime → package}/components/page/content/content.component.js +0 -0
  1033. {app-rn-runtime → package}/components/page/content/content.component.js.map +0 -0
  1034. {app-rn-runtime → package}/components/page/content/content.props.js +0 -0
  1035. {app-rn-runtime → package}/components/page/content/content.props.js.map +0 -0
  1036. {app-rn-runtime → package}/components/page/content/content.styles.js +0 -0
  1037. {app-rn-runtime → package}/components/page/content/content.styles.js.map +0 -0
  1038. {app-rn-runtime → package}/components/page/left-panel/left-panel.component.js.map +0 -0
  1039. {app-rn-runtime → package}/components/page/left-panel/left-panel.props.js.map +0 -0
  1040. {app-rn-runtime → package}/components/page/left-panel/left-panel.styles.js +0 -0
  1041. {app-rn-runtime → package}/components/page/left-panel/left-panel.styles.js.map +0 -0
  1042. {app-rn-runtime → package}/components/page/page-content/page-content.props.js.map +0 -0
  1043. {app-rn-runtime → package}/components/page/page-content/page-content.styles.js +0 -0
  1044. {app-rn-runtime → package}/components/page/page-content/page-content.styles.js.map +0 -0
  1045. {app-rn-runtime → package}/components/page/page.component.js.map +0 -0
  1046. {app-rn-runtime → package}/components/page/page.props.js +0 -0
  1047. {app-rn-runtime → package}/components/page/page.props.js.map +0 -0
  1048. {app-rn-runtime → package}/components/page/page.styles.js +0 -0
  1049. {app-rn-runtime → package}/components/page/page.styles.js.map +0 -0
  1050. {app-rn-runtime → package}/components/page/partial/partial.component.js +0 -0
  1051. {app-rn-runtime → package}/components/page/partial/partial.component.js.map +0 -0
  1052. {app-rn-runtime → package}/components/page/partial/partial.props.js +0 -0
  1053. {app-rn-runtime → package}/components/page/partial/partial.props.js.map +0 -0
  1054. {app-rn-runtime → package}/components/page/partial/partial.styles.js +0 -0
  1055. {app-rn-runtime → package}/components/page/partial/partial.styles.js.map +0 -0
  1056. {app-rn-runtime → package}/components/page/partial-container/partial-container.component.js +0 -0
  1057. {app-rn-runtime → package}/components/page/partial-container/partial-container.component.js.map +0 -0
  1058. {app-rn-runtime → package}/components/page/partial-container/partial-container.props.js.map +0 -0
  1059. {app-rn-runtime → package}/components/page/partial-container/partial-container.styles.js +0 -0
  1060. {app-rn-runtime → package}/components/page/partial-container/partial-container.styles.js.map +0 -0
  1061. {app-rn-runtime → package}/components/page/tabbar/curve.js +0 -0
  1062. {app-rn-runtime → package}/components/page/tabbar/curve.js.map +0 -0
  1063. {app-rn-runtime → package}/components/page/tabbar/tabbar.props.js.map +0 -0
  1064. {app-rn-runtime → package}/components/page/tabbar/tabbar.styles.js +0 -0
  1065. {app-rn-runtime → package}/components/page/tabbar/tabbar.styles.js.map +0 -0
  1066. {app-rn-runtime → package}/components/prefab/prefab-container.component.js +0 -0
  1067. {app-rn-runtime → package}/components/prefab/prefab-container.component.js.map +0 -0
  1068. {app-rn-runtime → package}/components/prefab/prefab-container.props.js +0 -0
  1069. {app-rn-runtime → package}/components/prefab/prefab-container.props.js.map +0 -0
  1070. {app-rn-runtime → package}/components/prefab/prefab-container.styles.js +0 -0
  1071. {app-rn-runtime → package}/components/prefab/prefab-container.styles.js.map +0 -0
  1072. {app-rn-runtime → package}/core/AppConfig.js +0 -0
  1073. {app-rn-runtime → package}/core/asset.provider.js +0 -0
  1074. {app-rn-runtime → package}/core/asset.provider.js.map +0 -0
  1075. {app-rn-runtime → package}/core/components/floatinglabel.component.js +0 -0
  1076. {app-rn-runtime → package}/core/components/floatinglabel.component.js.map +0 -0
  1077. {app-rn-runtime → package}/core/components/textinput.component.js.map +0 -0
  1078. {app-rn-runtime → package}/core/constant.service.js.map +0 -0
  1079. {app-rn-runtime → package}/core/constants/currency-constants.js +0 -0
  1080. {app-rn-runtime → package}/core/constants/currency-constants.js.map +0 -0
  1081. {app-rn-runtime → package}/core/currency-constants.js +0 -0
  1082. {app-rn-runtime → package}/core/currency-constants.js.map +0 -0
  1083. {app-rn-runtime → package}/core/device/calendar-service.js +0 -0
  1084. {app-rn-runtime → package}/core/device/calendar-service.js.map +0 -0
  1085. {app-rn-runtime → package}/core/device/camera-service.js +0 -0
  1086. {app-rn-runtime → package}/core/device/camera-service.js.map +0 -0
  1087. {app-rn-runtime → package}/core/device/contacts-service.js +0 -0
  1088. {app-rn-runtime → package}/core/device/contacts-service.js.map +0 -0
  1089. {app-rn-runtime → package}/core/device/location-service.js +0 -0
  1090. {app-rn-runtime → package}/core/device/location-service.js.map +0 -0
  1091. {app-rn-runtime → package}/core/device/scan-service.js +0 -0
  1092. {app-rn-runtime → package}/core/device/scan-service.js.map +0 -0
  1093. {app-rn-runtime → package}/core/display.manager.js +0 -0
  1094. {app-rn-runtime → package}/core/display.manager.js.map +0 -0
  1095. {app-rn-runtime → package}/core/event-notifier.js.map +0 -0
  1096. {app-rn-runtime → package}/core/file-extension-types.js +0 -0
  1097. {app-rn-runtime → package}/core/file-extension-types.js.map +0 -0
  1098. {app-rn-runtime → package}/core/fixed-view.component.js.map +0 -0
  1099. {app-rn-runtime → package}/core/formatters.js +0 -0
  1100. {app-rn-runtime → package}/core/formatters.js.map +0 -0
  1101. {app-rn-runtime → package}/core/i18n.service.js +0 -0
  1102. {app-rn-runtime → package}/core/i18n.service.js.map +0 -0
  1103. {app-rn-runtime → package}/core/if.component.js +0 -0
  1104. {app-rn-runtime → package}/core/if.component.js.map +0 -0
  1105. {app-rn-runtime → package}/core/imageSizeEstimator.js.map +0 -0
  1106. {app-rn-runtime → package}/core/injector.js +0 -0
  1107. {app-rn-runtime → package}/core/injector.js.map +0 -0
  1108. {app-rn-runtime → package}/core/key.extractor.js.map +0 -0
  1109. {app-rn-runtime → package}/core/logger.js.map +0 -0
  1110. {app-rn-runtime → package}/core/modal.service.js +0 -0
  1111. {app-rn-runtime → package}/core/modal.service.js.map +0 -0
  1112. {app-rn-runtime → package}/core/navigation.service.js +0 -0
  1113. {app-rn-runtime → package}/core/navigation.service.js.map +0 -0
  1114. {app-rn-runtime → package}/core/network.service.js.map +0 -0
  1115. {app-rn-runtime → package}/core/partial.service.js +0 -0
  1116. {app-rn-runtime → package}/core/partial.service.js.map +0 -0
  1117. {app-rn-runtime → package}/core/props.provider.js.map +0 -0
  1118. {app-rn-runtime → package}/core/scroll-view.component.js.map +0 -0
  1119. {app-rn-runtime → package}/core/security.service.js +0 -0
  1120. {app-rn-runtime → package}/core/security.service.js.map +0 -0
  1121. {app-rn-runtime → package}/core/spinner.service.js +0 -0
  1122. {app-rn-runtime → package}/core/spinner.service.js.map +0 -0
  1123. {app-rn-runtime → package}/core/storage.service.js.map +0 -0
  1124. {app-rn-runtime → package}/core/testid.provider.js +0 -0
  1125. {app-rn-runtime → package}/core/testid.provider.js.map +0 -0
  1126. {app-rn-runtime → package}/core/toast.service.js +0 -0
  1127. {app-rn-runtime → package}/core/toast.service.js.map +0 -0
  1128. {app-rn-runtime → package}/core/ui-preferences.context.js +0 -0
  1129. {app-rn-runtime → package}/core/ui-preferences.context.js.map +0 -0
  1130. {app-rn-runtime → package}/core/viewport.js.map +0 -0
  1131. {app-rn-runtime → package}/core/wm-component-tree.js.map +0 -0
  1132. {app-rn-runtime → package}/gestures/swipe.animation.js.map +0 -0
  1133. {app-rn-runtime → package}/index.js +0 -0
  1134. {app-rn-runtime → package}/index.js.map +0 -0
  1135. {app-rn-runtime → package}/runtime/App.navigator.js +0 -0
  1136. {app-rn-runtime → package}/runtime/App.navigator.js.map +0 -0
  1137. {app-rn-runtime → package}/runtime/base-partial.component.js.map +0 -0
  1138. {app-rn-runtime → package}/runtime/base-prefab.component.js.map +0 -0
  1139. {app-rn-runtime → package}/runtime/lib-patch.js +0 -0
  1140. {app-rn-runtime → package}/runtime/lib-patch.js.map +0 -0
  1141. {app-rn-runtime → package}/runtime/memo.component.js.map +0 -0
  1142. {app-rn-runtime → package}/runtime/navigator/drawer.navigator.js +0 -0
  1143. {app-rn-runtime → package}/runtime/navigator/drawer.navigator.js.map +0 -0
  1144. {app-rn-runtime → package}/runtime/navigator/stack.navigator.js.map +0 -0
  1145. {app-rn-runtime → package}/runtime/platform.api.js +0 -0
  1146. {app-rn-runtime → package}/runtime/platform.api.js.map +0 -0
  1147. {app-rn-runtime → package}/runtime/services/app-display-manager.service.js.map +0 -0
  1148. {app-rn-runtime → package}/runtime/services/app-modal.service.js.map +0 -0
  1149. {app-rn-runtime → package}/runtime/services/app-security.service.js.map +0 -0
  1150. {app-rn-runtime → package}/runtime/services/app-spinner.service.js.map +0 -0
  1151. {app-rn-runtime → package}/runtime/services/app-toast.service.js.map +0 -0
  1152. {app-rn-runtime → package}/runtime/services/device/calendar-service.js +0 -0
  1153. {app-rn-runtime → package}/runtime/services/device/calendar-service.js.map +0 -0
  1154. {app-rn-runtime → package}/runtime/services/device/contacts-service.js +0 -0
  1155. {app-rn-runtime → package}/runtime/services/device/contacts-service.js.map +0 -0
  1156. {app-rn-runtime → package}/runtime/services/device/location-service.js +0 -0
  1157. {app-rn-runtime → package}/runtime/services/device/location-service.js.map +0 -0
  1158. {app-rn-runtime → package}/runtime/services/partial.service.js +0 -0
  1159. {app-rn-runtime → package}/runtime/services/partial.service.js.map +0 -0
  1160. {app-rn-runtime → package}/runtime/services/webprocess.service.js.map +0 -0
  1161. {app-rn-runtime → package}/runtime/watcher.js.map +0 -0
  1162. {app-rn-runtime → package}/styles/MediaQueryList.js +0 -0
  1163. {app-rn-runtime → package}/styles/MediaQueryList.js.map +0 -0
  1164. {app-rn-runtime → package}/styles/style-prop.validator.js +0 -0
  1165. {app-rn-runtime → package}/styles/style-prop.validator.js.map +0 -0
  1166. {app-rn-runtime → package}/styles/style-props.js.map +0 -0
  1167. {app-rn-runtime → package}/variables/base-variable.js.map +0 -0
  1168. {app-rn-runtime → package}/variables/device/calendar/create-event.operation.js +0 -0
  1169. {app-rn-runtime → package}/variables/device/calendar/create-event.operation.js.map +0 -0
  1170. {app-rn-runtime → package}/variables/device/calendar/delete-event.operation.js +0 -0
  1171. {app-rn-runtime → package}/variables/device/calendar/delete-event.operation.js.map +0 -0
  1172. {app-rn-runtime → package}/variables/device/calendar/get-events.operation.js +0 -0
  1173. {app-rn-runtime → package}/variables/device/calendar/get-events.operation.js.map +0 -0
  1174. {app-rn-runtime → package}/variables/device/camera/capture-image.operation.js +0 -0
  1175. {app-rn-runtime → package}/variables/device/camera/capture-image.operation.js.map +0 -0
  1176. {app-rn-runtime → package}/variables/device/camera/capture-video.operation.js +0 -0
  1177. {app-rn-runtime → package}/variables/device/camera/capture-video.operation.js.map +0 -0
  1178. {app-rn-runtime → package}/variables/device/contacts/get-contacts.operation.js +0 -0
  1179. {app-rn-runtime → package}/variables/device/contacts/get-contacts.operation.js.map +0 -0
  1180. {app-rn-runtime → package}/variables/device/device/app-info.operation.js +0 -0
  1181. {app-rn-runtime → package}/variables/device/device/app-info.operation.js.map +0 -0
  1182. {app-rn-runtime → package}/variables/device/device/current-geo-position.operation.js +0 -0
  1183. {app-rn-runtime → package}/variables/device/device/current-geo-position.operation.js.map +0 -0
  1184. {app-rn-runtime → package}/variables/device/device/device-info.operation.js +0 -0
  1185. {app-rn-runtime → package}/variables/device/device/device-info.operation.js.map +0 -0
  1186. {app-rn-runtime → package}/variables/device/device/network-info.operation.js.map +0 -0
  1187. {app-rn-runtime → package}/variables/device/device/vibrate.operation.js +0 -0
  1188. {app-rn-runtime → package}/variables/device/device/vibrate.operation.js.map +0 -0
  1189. {app-rn-runtime → package}/variables/device/operation.provider.js +0 -0
  1190. {app-rn-runtime → package}/variables/device/operation.provider.js.map +0 -0
  1191. {app-rn-runtime → package}/variables/device/scan/scan.operation.js +0 -0
  1192. {app-rn-runtime → package}/variables/device/scan/scan.operation.js.map +0 -0
  1193. {app-rn-runtime → package}/variables/device-variable.js +0 -0
  1194. {app-rn-runtime → package}/variables/device-variable.js.map +0 -0
  1195. {app-rn-runtime → package}/variables/http.service.js +0 -0
  1196. {app-rn-runtime → package}/variables/http.service.js.map +0 -0
  1197. {app-rn-runtime → package}/variables/live-variable.js.map +0 -0
  1198. {app-rn-runtime → package}/variables/model-variable.js.map +0 -0
  1199. {app-rn-runtime → package}/variables/service-variable.js.map +0 -0
  1200. {app-rn-runtime → package}/variables/utils/dataset-util.js +0 -0
  1201. {app-rn-runtime → package}/variables/utils/dataset-util.js.map +0 -0
  1202. {app-rn-runtime → package}/variables/utils/inflight-queue.js.map +0 -0
  1203. {app-rn-runtime → package}/variables/utils/variable.constants.js +0 -0
  1204. {app-rn-runtime → package}/variables/utils/variable.constants.js.map +0 -0
  1205. {app-rn-runtime → package}/variables/utils/variable.utils.js +0 -0
  1206. {app-rn-runtime → package}/variables/utils/variable.utils.js.map +0 -0
@@ -0,0 +1,199 @@
1
+ function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
2
+ function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
3
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
4
+ function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
5
+ import React from 'react';
6
+ import { Image, View } from 'react-native';
7
+ // import { NumberProp, SvgUri } from 'react-native-svg';
8
+ import { isNumber } from 'lodash-es';
9
+ import { Tappable } from '@wavemaker/app-rn-runtime/core/tappable.component';
10
+ import { BaseComponent, BaseComponentState } from '@wavemaker/app-rn-runtime/core/base.component';
11
+ import ImageSizeEstimator from '@wavemaker/app-rn-runtime/core/imageSizeEstimator';
12
+ import { isFullPathUrl } from '@wavemaker/app-rn-runtime/core/utils';
13
+ import { AccessibilityWidgetType, getAccessibilityProps } from '@wavemaker/app-rn-runtime/core/accessibility';
14
+ import WmPictureProps from './picture.props';
15
+ import { DEFAULT_CLASS } from './picture.styles';
16
+ import { Animatedview } from '@wavemaker/app-rn-runtime/components/basic/animatedview.component';
17
+ import { createSkeleton } from '../skeleton/skeleton.component';
18
+ export class WmPictureState extends BaseComponentState {
19
+ constructor(...args) {
20
+ super(...args);
21
+ _defineProperty(this, "naturalImageWidth", 0);
22
+ _defineProperty(this, "naturalImageHeight", 0);
23
+ _defineProperty(this, "imageWidth", 0);
24
+ _defineProperty(this, "imageHeight", 0);
25
+ }
26
+ }
27
+ export default class WmPicture extends BaseComponent {
28
+ constructor(_props) {
29
+ super(_props, DEFAULT_CLASS, new WmPictureProps());
30
+ _defineProperty(this, "_pictureSource", null);
31
+ _defineProperty(this, "_picturePlaceHolder", null);
32
+ _defineProperty(this, "onViewLayoutChange", e => {
33
+ let imageWidth = e.nativeEvent.layout.width;
34
+ let imageHeight = e.nativeEvent.layout.height;
35
+ if (!imageWidth && !imageHeight) {
36
+ return;
37
+ }
38
+ if (!this.styles.root.height || typeof this.styles.root.height === 'string' && !this.styles.root.height.includes('%')) {
39
+ imageHeight = 0;
40
+ }
41
+ if (imageWidth && !imageHeight) {
42
+ imageHeight = imageWidth * this.state.naturalImageHeight / this.state.naturalImageWidth;
43
+ } else if (imageHeight && !imageWidth) {
44
+ imageWidth = imageHeight * this.state.naturalImageWidth / this.state.naturalImageHeight;
45
+ }
46
+ this.updateState({
47
+ imageWidth: imageWidth,
48
+ imageHeight: imageHeight
49
+ });
50
+ });
51
+ _defineProperty(this, "showImage", (imageElement, props) => {
52
+ if (props.fastload) {
53
+ return imageElement;
54
+ }
55
+ return this.state.imageWidth ? imageElement : null;
56
+ });
57
+ }
58
+ loadImage(image) {
59
+ if (!image || !this.loadAsset) {
60
+ return null;
61
+ }
62
+ const imageSrc = this.loadAsset(image);
63
+ if (imageSrc && typeof imageSrc === 'object' && typeof imageSrc.default === 'function') {
64
+ return null;
65
+ }
66
+ if (isNumber(imageSrc)) {
67
+ const {
68
+ width,
69
+ height
70
+ } = Image.resolveAssetSource(imageSrc);
71
+ this.updateState({
72
+ naturalImageWidth: width,
73
+ naturalImageHeight: height
74
+ });
75
+ } else if (imageSrc !== null) {
76
+ const cancel = ImageSizeEstimator.getSize(imageSrc, (width, height) => {
77
+ this.updateState({
78
+ naturalImageWidth: width,
79
+ naturalImageHeight: height
80
+ });
81
+ this.cleanup.splice(this.cleanup.indexOf(cancel), 1);
82
+ });
83
+ this.cleanup.push(cancel);
84
+ }
85
+ return imageSrc;
86
+ }
87
+ onPropertyChange(name, $new, $old) {
88
+ switch (name) {
89
+ case 'picturesource':
90
+ this._pictureSource = null;
91
+ case 'pictureplaceholder':
92
+ this._picturePlaceHolder = null;
93
+ break;
94
+ }
95
+ }
96
+ createShape(shape, imageWidth) {
97
+ if (shape) {
98
+ switch (shape) {
99
+ case 'circle':
100
+ return {
101
+ picture: {
102
+ borderRadius: isNumber(imageWidth) ? imageWidth / 2 : 4
103
+ }
104
+ };
105
+ case 'rounded':
106
+ return this.theme.getStyle('rounded-image');
107
+ case 'thumbnail':
108
+ return this.theme.getStyle('thumbnail-image');
109
+ }
110
+ }
111
+ return {};
112
+ }
113
+ getElementToShow(props, imgSrc, shapeStyles) {
114
+ let elementToshow, source;
115
+ if (imgSrc && typeof imgSrc === 'object' && typeof (imgSrc === null || imgSrc === void 0 ? void 0 : imgSrc.default) === 'function') {
116
+ let imgStyle = {};
117
+ if (props.resizemode === 'contain') {
118
+ imgStyle['width'] = '100%';
119
+ imgStyle['height'] = '100%';
120
+ }
121
+ elementToshow = /*#__PURE__*/React.createElement(imgSrc === null || imgSrc === void 0 ? void 0 : imgSrc.default, imgStyle);
122
+ //} else if (!isWebPreviewMode() && props.isSvg) {
123
+ // svg from uri
124
+ // elementToshow = <SvgUri testID={this.getTestId('picture')} width={this.styles.root.width as NumberProp} height={this.styles.root.height as NumberProp} uri={imgSrc}/>;
125
+ } else if (isFullPathUrl(imgSrc)) {
126
+ source = {
127
+ uri: imgSrc
128
+ };
129
+ } else {
130
+ source = imgSrc;
131
+ }
132
+ if (this.state.naturalImageWidth) {
133
+ elementToshow = /*#__PURE__*/React.createElement(Image, _extends({}, this.getTestProps('picture'), {
134
+ style: [this.styles.picture, shapeStyles.picture],
135
+ resizeMode: props.resizemode,
136
+ source: source
137
+ }, getAccessibilityProps(AccessibilityWidgetType.PICTURE, props)));
138
+ }
139
+ return elementToshow;
140
+ }
141
+ renderSkeleton(props) {
142
+ var _this$styles$root, _shapeStyles$root, _shapeStyles$picture, _this$styles$root2, _shapeStyles$root2, _shapeStyles$picture2, _this$styles$root3, _shapeStyles$picture3, _shapeStyles$root3, _this$styles$root4;
143
+ const imageWidth = this.state.imageWidth;
144
+ const imageHeight = this.state.imageHeight;
145
+ const shapeStyles = this.createShape(this.props.shape, imageWidth);
146
+ const skeletonWidth = this.props.skeletonwidth || ((_this$styles$root = this.styles.root) === null || _this$styles$root === void 0 ? void 0 : _this$styles$root.width) || ((_shapeStyles$root = shapeStyles.root) === null || _shapeStyles$root === void 0 ? void 0 : _shapeStyles$root.width) || ((_shapeStyles$picture = shapeStyles.picture) === null || _shapeStyles$picture === void 0 ? void 0 : _shapeStyles$picture.width) || imageWidth;
147
+ const skeletonHeight = this.props.skeletonheight || ((_this$styles$root2 = this.styles.root) === null || _this$styles$root2 === void 0 ? void 0 : _this$styles$root2.height) || ((_shapeStyles$root2 = shapeStyles.root) === null || _shapeStyles$root2 === void 0 ? void 0 : _shapeStyles$root2.height) || ((_shapeStyles$picture2 = shapeStyles.picture) === null || _shapeStyles$picture2 === void 0 ? void 0 : _shapeStyles$picture2.height) || imageHeight;
148
+ return createSkeleton(this.theme, this.styles.skeleton, {
149
+ ...this.styles.root,
150
+ borderRadius: this.props.shape == 'circle' && (_this$styles$root3 = this.styles.root) !== null && _this$styles$root3 !== void 0 && _this$styles$root3.width ? 25 : ((_shapeStyles$picture3 = shapeStyles.picture) === null || _shapeStyles$picture3 === void 0 ? void 0 : _shapeStyles$picture3.borderRadius) || ((_shapeStyles$root3 = shapeStyles.root) === null || _shapeStyles$root3 === void 0 ? void 0 : _shapeStyles$root3.borderRadius) || ((_this$styles$root4 = this.styles.root) === null || _this$styles$root4 === void 0 ? void 0 : _this$styles$root4.borderRadius) || 4,
151
+ width: skeletonWidth,
152
+ height: skeletonHeight
153
+ });
154
+ }
155
+ renderWidget(props) {
156
+ var _shapeStyles$picture4;
157
+ const imageWidth = this.state.imageWidth;
158
+ const imageHeight = this.state.imageHeight;
159
+ const shapeStyles = this.createShape(props.shape, imageWidth);
160
+ this._pictureSource = this._pictureSource || this.loadImage(props.picturesource);
161
+ this._picturePlaceHolder = props.fastload ? this._pictureSource || this._picturePlaceHolder || this.loadImage(props.pictureplaceholder) : this._picturePlaceHolder || this.loadImage(props.pictureplaceholder);
162
+ const imgSrc = this._pictureSource || this._picturePlaceHolder;
163
+ let elementToshow;
164
+ if (imgSrc) {
165
+ elementToshow = this.getElementToShow(props, imgSrc, shapeStyles);
166
+ }
167
+ return imgSrc && (this.state.naturalImageWidth || props.isSvg) ? /*#__PURE__*/React.createElement(View, {
168
+ style: [{
169
+ width: imageWidth,
170
+ height: imageHeight
171
+ }, this.styles.root, shapeStyles.root, shapeStyles.picture]
172
+ }, this._background, /*#__PURE__*/React.createElement(View, {
173
+ style: [{
174
+ overflow: 'hidden',
175
+ width: '100%',
176
+ height: '100%'
177
+ }],
178
+ onLayout: this.onViewLayoutChange
179
+ }, /*#__PURE__*/React.createElement(Tappable, _extends({
180
+ disableTouchEffect: this.state.props.disabletoucheffect
181
+ }, this.getTestPropsForAction(), {
182
+ rippleColor: this.styles.root.rippleColor,
183
+ target: this,
184
+ styles: {
185
+ width: imageWidth ? null : '100%',
186
+ height: imageHeight ? null : '100%'
187
+ }
188
+ }), /*#__PURE__*/React.createElement(Animatedview, {
189
+ entryanimation: props.animation,
190
+ delay: props.animationdelay,
191
+ style: [{
192
+ height: imageHeight,
193
+ width: imageWidth,
194
+ borderRadius: (_shapeStyles$picture4 = shapeStyles.picture) === null || _shapeStyles$picture4 === void 0 ? void 0 : _shapeStyles$picture4.borderRadius
195
+ }]
196
+ }, this.showImage(elementToshow, props))))) : null;
197
+ }
198
+ }
199
+ //# sourceMappingURL=picture.component.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["React","Image","View","isNumber","Tappable","BaseComponent","BaseComponentState","ImageSizeEstimator","isFullPathUrl","AccessibilityWidgetType","getAccessibilityProps","WmPictureProps","DEFAULT_CLASS","Animatedview","createSkeleton","WmPictureState","constructor","args","_defineProperty","WmPicture","props","e","imageWidth","nativeEvent","layout","width","imageHeight","height","styles","root","includes","state","naturalImageHeight","naturalImageWidth","updateState","imageElement","fastload","loadImage","image","loadAsset","imageSrc","default","resolveAssetSource","cancel","getSize","cleanup","splice","indexOf","push","onPropertyChange","name","$new","$old","_pictureSource","_picturePlaceHolder","createShape","shape","picture","borderRadius","theme","getStyle","getElementToShow","imgSrc","shapeStyles","elementToshow","source","imgStyle","resizemode","createElement","uri","_extends","getTestProps","style","resizeMode","PICTURE","renderSkeleton","_this$styles$root","_shapeStyles$root","_shapeStyles$picture","_this$styles$root2","_shapeStyles$root2","_shapeStyles$picture2","_this$styles$root3","_shapeStyles$picture3","_shapeStyles$root3","_this$styles$root4","skeletonWidth","skeletonwidth","skeletonHeight","skeletonheight","skeleton","renderWidget","_shapeStyles$picture4","picturesource","pictureplaceholder","isSvg","_background","overflow","onLayout","onViewLayoutChange","disableTouchEffect","disabletoucheffect","getTestPropsForAction","rippleColor","target","entryanimation","animation","delay","animationdelay","showImage"],"sources":["picture.component.tsx"],"sourcesContent":["import React from 'react';\nimport { DimensionValue, Image, LayoutChangeEvent, View } from 'react-native';\n// import { NumberProp, SvgUri } from 'react-native-svg';\nimport { isNumber, isString } from 'lodash-es';\nimport { Tappable } from '@wavemaker/app-rn-runtime/core/tappable.component';\nimport { BaseComponent, BaseComponentState } from '@wavemaker/app-rn-runtime/core/base.component';\nimport ImageSizeEstimator from '@wavemaker/app-rn-runtime/core/imageSizeEstimator';\nimport { isFullPathUrl } from '@wavemaker/app-rn-runtime/core/utils';\nimport { AccessibilityWidgetType, getAccessibilityProps } from '@wavemaker/app-rn-runtime/core/accessibility';\n\nimport WmPictureProps from './picture.props';\nimport { DEFAULT_CLASS, WmPictureStyles } from './picture.styles';\nimport { Animatedview } from '@wavemaker/app-rn-runtime/components/basic/animatedview.component';\nimport WmSkeleton, { createSkeleton } from '../skeleton/skeleton.component';\n\nexport class WmPictureState extends BaseComponentState<WmPictureProps> {\n naturalImageWidth: number = 0;\n naturalImageHeight: number = 0;\n imageWidth: number = 0;\n imageHeight: number = 0;\n}\n\nexport default class WmPicture extends BaseComponent<WmPictureProps, WmPictureState, WmPictureStyles> {\n\n private _pictureSource = null as any;\n private _picturePlaceHolder = null as any;\n\n constructor(props: WmPictureProps) {\n super(props, DEFAULT_CLASS, new WmPictureProps());\n }\n\n loadImage(image: string | undefined) {\n if (!image || !this.loadAsset) {\n return null;\n }\n const imageSrc = this.loadAsset(image) as any;\n if (imageSrc && typeof imageSrc === 'object' && typeof imageSrc.default === 'function') {\n return null;\n }\n if (isNumber(imageSrc)) {\n const {width, height} = Image.resolveAssetSource(imageSrc);\n this.updateState({\n naturalImageWidth: width,\n naturalImageHeight: height\n } as WmPictureState);\n } else if (imageSrc !== null) {\n const cancel = ImageSizeEstimator.getSize(imageSrc, (width: number, height: number) => {\n this.updateState({\n naturalImageWidth: width,\n naturalImageHeight: height\n } as WmPictureState);\n this.cleanup.splice(this.cleanup.indexOf(cancel), 1);\n });\n this.cleanup.push(cancel);\n }\n return imageSrc;\n }\n\n onPropertyChange(name: string, $new: any, $old: any) {\n switch(name) {\n case 'picturesource':\n this._pictureSource = null;\n case 'pictureplaceholder':\n this._picturePlaceHolder = null;\n break;\n }\n }\n\n onViewLayoutChange = (e: LayoutChangeEvent) => {\n let imageWidth = e.nativeEvent.layout.width;\n let imageHeight = e.nativeEvent.layout.height;\n if (!imageWidth && !imageHeight) {\n return;\n }\n if (!this.styles.root.height\n || (typeof this.styles.root.height === 'string'\n && !this.styles.root.height.includes('%'))) {\n imageHeight = 0;\n }\n if (imageWidth && !imageHeight) {\n imageHeight = imageWidth * this.state.naturalImageHeight / this.state.naturalImageWidth;\n } else if (imageHeight && !imageWidth) {\n imageWidth = imageHeight * this.state.naturalImageWidth / this.state.naturalImageHeight;\n }\n this.updateState({\n imageWidth: imageWidth,\n imageHeight: imageHeight\n } as WmPictureState);\n };\n\n createShape(shape: string | undefined, imageWidth?: number | string): WmPictureStyles {\n if (shape) {\n switch(shape) {\n case 'circle':\n return {\n picture: {\n borderRadius: isNumber(imageWidth) ? imageWidth / 2 : 4\n }\n } as WmPictureStyles;\n case 'rounded' :\n return (this.theme.getStyle('rounded-image') as WmPictureStyles);\n case 'thumbnail' :\n return (this.theme.getStyle('thumbnail-image') as WmPictureStyles);\n }\n }\n return {} as WmPictureStyles;\n }\n\n getElementToShow(props: WmPictureProps, imgSrc: any, shapeStyles: WmPictureStyles) {\n let elementToshow, source;\n if (imgSrc && typeof imgSrc === 'object' && typeof imgSrc?.default === 'function') {\n let imgStyle : any = {};\n if (props.resizemode === 'contain') {\n imgStyle['width'] = '100%';\n imgStyle['height'] = '100%';\n }\n elementToshow = React.createElement(imgSrc?.default, imgStyle);\n //} else if (!isWebPreviewMode() && props.isSvg) {\n // svg from uri\n // elementToshow = <SvgUri testID={this.getTestId('picture')} width={this.styles.root.width as NumberProp} height={this.styles.root.height as NumberProp} uri={imgSrc}/>;\n } else if (isFullPathUrl(imgSrc)) {\n source = {\n uri: imgSrc\n };\n } else {\n source = imgSrc;\n }\n if (this.state.naturalImageWidth) {\n elementToshow = (\n <Image\n {...this.getTestProps('picture')}\n style={[this.styles.picture, shapeStyles.picture]}\n resizeMode={props.resizemode}\n source={source}\n {...getAccessibilityProps(AccessibilityWidgetType.PICTURE, props)}\n />\n );\n }\n return elementToshow;\n }\n\n public renderSkeleton(props: WmPictureProps){\n const imageWidth = this.state.imageWidth;\n const imageHeight = this.state.imageHeight;\n const shapeStyles = this.createShape(this.props.shape, imageWidth);\n const skeletonWidth = this.props.skeletonwidth || this.styles.root?.width || shapeStyles.root?.width || shapeStyles.picture?.width || imageWidth;\n const skeletonHeight = this.props.skeletonheight || this.styles.root?.height || shapeStyles.root?.height || shapeStyles.picture?.height || imageHeight;\n return createSkeleton(this.theme, this.styles.skeleton, {\n ...this.styles.root,\n borderRadius: this.props.shape == 'circle' && this.styles.root?.width ? 25 : shapeStyles.picture?.borderRadius || shapeStyles.root?.borderRadius || this.styles.root?.borderRadius || 4,\n width: skeletonWidth as DimensionValue,\n height: skeletonHeight as DimensionValue\n });\n }\n\n showImage = (imageElement: any, props: WmPictureProps) => {\n if(props.fastload){\n return imageElement;\n }\n return this.state.imageWidth ? imageElement : null\n }\n\n renderWidget(props: WmPictureProps) {\n const imageWidth = this.state.imageWidth;\n const imageHeight = this.state.imageHeight;\n const shapeStyles = this.createShape(props.shape, imageWidth);\n this._pictureSource = this._pictureSource || this.loadImage(props.picturesource);\n this._picturePlaceHolder = props.fastload ? \n (this._pictureSource || this._picturePlaceHolder || this.loadImage(props.pictureplaceholder)) :\n (this._picturePlaceHolder || this.loadImage(props.pictureplaceholder));\n const imgSrc: any = this._pictureSource || this._picturePlaceHolder;\n let elementToshow;\n if (imgSrc) {\n elementToshow = this.getElementToShow(props, imgSrc, shapeStyles);\n }\n return imgSrc && (this.state.naturalImageWidth || props.isSvg) ? (\n <View style={[{\n width: imageWidth,\n height: imageHeight\n }, this.styles.root, shapeStyles.root, shapeStyles.picture]}>\n {this._background}\n <View style={[{overflow: 'hidden', width: '100%',\n height: '100%'}]} onLayout={this.onViewLayoutChange}>\n <Tappable\n disableTouchEffect={this.state.props.disabletoucheffect}\n {...this.getTestPropsForAction()}\n rippleColor={this.styles.root.rippleColor}\n target={this} styles={{width: imageWidth ? null : '100%', height: imageHeight ? null : '100%'}}>\n <Animatedview entryanimation={props.animation} delay={props.animationdelay} style={[{\n height: imageHeight,\n width: imageWidth,\n borderRadius: shapeStyles.picture?.borderRadius\n }]}>\n {this.showImage(elementToshow, props)}\n </Animatedview>\n </Tappable>\n </View>\n </View>\n ): null;\n }\n}\n"],"mappings":"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","ignoreList":[]}
@@ -0,0 +1,23 @@
1
+ function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
2
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
3
+ function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
4
+ import { BaseProps } from '@wavemaker/app-rn-runtime/core/base.component';
5
+ export default class WmPictureProps extends BaseProps {
6
+ constructor(...args) {
7
+ super(...args);
8
+ _defineProperty(this, "animation", null);
9
+ _defineProperty(this, "animationdelay", null);
10
+ _defineProperty(this, "picturesource", null);
11
+ _defineProperty(this, "pictureplaceholder", null);
12
+ _defineProperty(this, "shape", null);
13
+ _defineProperty(this, "isSvg", null);
14
+ _defineProperty(this, "resizemode", 'stretch');
15
+ _defineProperty(this, "skeletonheight", null);
16
+ _defineProperty(this, "skeletonwidth", null);
17
+ _defineProperty(this, "accessibilitylabel", undefined);
18
+ _defineProperty(this, "hint", undefined);
19
+ _defineProperty(this, "accessibilityrole", 'image');
20
+ _defineProperty(this, "fastload", false);
21
+ }
22
+ }
23
+ //# sourceMappingURL=picture.props.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["BaseProps","WmPictureProps","constructor","args","_defineProperty","undefined"],"sources":["picture.props.ts"],"sourcesContent":["import { AccessibilityRole, ImageResizeMode } from 'react-native';\nimport { BaseProps } from '@wavemaker/app-rn-runtime/core/base.component';\n\nexport default class WmPictureProps extends BaseProps {\n animation?: string = null as any;\n animationdelay?: number = null as any;\n picturesource?: string = null as any;\n pictureplaceholder?: string = null as any;\n shape?: string = null as any;\n isSvg?: string = null as any;\n resizemode?: ImageResizeMode = 'stretch' as any;\n skeletonheight?: string = null as any;\n skeletonwidth?: string = null as any;\n accessibilitylabel?: string = undefined;\n hint?: string = undefined;\n accessibilityrole?: AccessibilityRole = 'image';\n fastload?: boolean = false;\n}\n"],"mappings":";;;AACA,SAASA,SAAS,QAAQ,+CAA+C;AAEzE,eAAe,MAAMC,cAAc,SAASD,SAAS,CAAC;EAAAE,YAAA,GAAAC,IAAA;IAAA,SAAAA,IAAA;IAAAC,eAAA,oBAC/B,IAAI;IAAAA,eAAA,yBACC,IAAI;IAAAA,eAAA,wBACL,IAAI;IAAAA,eAAA,6BACC,IAAI;IAAAA,eAAA,gBACjB,IAAI;IAAAA,eAAA,gBACJ,IAAI;IAAAA,eAAA,qBACU,SAAS;IAAAA,eAAA,yBACd,IAAI;IAAAA,eAAA,wBACL,IAAI;IAAAA,eAAA,6BACCC,SAAS;IAAAD,eAAA,eACvBC,SAAS;IAAAD,eAAA,4BACe,OAAO;IAAAA,eAAA,mBAC1B,KAAK;EAAA;AAC5B","ignoreList":[]}
@@ -0,0 +1,60 @@
1
+ function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
2
+ import React from 'react';
3
+ import { View } from 'react-native';
4
+ import { ProgressBar } from 'react-native-paper';
5
+ import { LinearGradient as ExpoLinearGradient } from 'expo-linear-gradient';
6
+ import { Tappable } from '@wavemaker/app-rn-runtime/core/tappable.component';
7
+ import { BaseComponent, BaseComponentState } from '@wavemaker/app-rn-runtime/core/base.component';
8
+ import { AccessibilityWidgetType, getAccessibilityProps } from '@wavemaker/app-rn-runtime/core/accessibility';
9
+ import WmProgressBarProps from './progress-bar.props';
10
+ import { DEFAULT_CLASS } from './progress-bar.styles';
11
+ import { parseLinearGradient } from '@wavemaker/app-rn-runtime/core/utils';
12
+ export class WmProgressBarState extends BaseComponentState {}
13
+ export default class WmProgressBar extends BaseComponent {
14
+ constructor(props) {
15
+ super(props, DEFAULT_CLASS, new WmProgressBarProps());
16
+ }
17
+ renderWidget(props) {
18
+ var _styles$root, _styles$progressBar;
19
+ let value = (props.datavalue - props.minvalue) / (props.maxvalue - props.minvalue);
20
+ const styles = this.theme.mergeStyle(this.theme.getStyle(`app-${props.type}-progress-bar`), this.styles);
21
+ const {
22
+ hasLinearGradient,
23
+ color1,
24
+ color2,
25
+ start,
26
+ end
27
+ } = parseLinearGradient(styles === null || styles === void 0 || (_styles$root = styles.root) === null || _styles$root === void 0 || (_styles$root = _styles$root.progressBar) === null || _styles$root === void 0 ? void 0 : _styles$root.backgroundColor);
28
+ const gradientColors = [color1, color2];
29
+ const valuePercent = `${Math.round(value * 100)}%`;
30
+ return /*#__PURE__*/React.createElement(View, {
31
+ style: styles.root
32
+ }, this._background, /*#__PURE__*/React.createElement(Tappable, {
33
+ target: this,
34
+ styles: {
35
+ root: {
36
+ width: '100%',
37
+ height: '100%'
38
+ }
39
+ },
40
+ disableTouchEffect: this.state.props.disabletoucheffect
41
+ }, /*#__PURE__*/React.createElement(ProgressBar, _extends({}, this.getTestPropsForAction('progressbar'), getAccessibilityProps(AccessibilityWidgetType.PROGRESSBAR, props), {
42
+ animatedValue: value,
43
+ color: styles.progressValue.color,
44
+ style: [styles.progressBar, {
45
+ height: styles.root.height || styles.progressBar.height
46
+ }]
47
+ })), hasLinearGradient ? /*#__PURE__*/React.createElement(ExpoLinearGradient, {
48
+ colors: gradientColors,
49
+ start: start,
50
+ end: end,
51
+ style: [{
52
+ width: valuePercent,
53
+ height: styles.root.height || styles.progressBar.height,
54
+ position: 'absolute',
55
+ borderRadius: (styles === null || styles === void 0 || (_styles$progressBar = styles.progressBar) === null || _styles$progressBar === void 0 ? void 0 : _styles$progressBar.borderRadius) || 0
56
+ }]
57
+ }) : /*#__PURE__*/React.createElement(React.Fragment, null)));
58
+ }
59
+ }
60
+ //# sourceMappingURL=progress-bar.component.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["React","View","ProgressBar","LinearGradient","ExpoLinearGradient","Tappable","BaseComponent","BaseComponentState","AccessibilityWidgetType","getAccessibilityProps","WmProgressBarProps","DEFAULT_CLASS","parseLinearGradient","WmProgressBarState","WmProgressBar","constructor","props","renderWidget","_styles$root","_styles$progressBar","value","datavalue","minvalue","maxvalue","styles","theme","mergeStyle","getStyle","type","hasLinearGradient","color1","color2","start","end","root","progressBar","backgroundColor","gradientColors","valuePercent","Math","round","createElement","style","_background","target","width","height","disableTouchEffect","state","disabletoucheffect","_extends","getTestPropsForAction","PROGRESSBAR","animatedValue","color","progressValue","colors","position","borderRadius","Fragment"],"sources":["progress-bar.component.tsx"],"sourcesContent":["import React from 'react';\nimport { View } from 'react-native';\nimport { ProgressBar } from 'react-native-paper';\nimport { LinearGradient as ExpoLinearGradient } from 'expo-linear-gradient';\nimport { Tappable } from '@wavemaker/app-rn-runtime/core/tappable.component';\nimport { BaseComponent, BaseComponentState } from '@wavemaker/app-rn-runtime/core/base.component';\nimport { AccessibilityWidgetType, getAccessibilityProps } from '@wavemaker/app-rn-runtime/core/accessibility';\n\nimport WmProgressBarProps from './progress-bar.props';\nimport { DEFAULT_CLASS, WmProgressBarStyles } from './progress-bar.styles';\nimport { parseLinearGradient } from '@wavemaker/app-rn-runtime/core/utils';\n\nexport class WmProgressBarState extends BaseComponentState<WmProgressBarProps> {}\n\nexport default class WmProgressBar extends BaseComponent<WmProgressBarProps, WmProgressBarState, WmProgressBarStyles> {\n\n constructor(props: WmProgressBarProps) {\n super(props, DEFAULT_CLASS, new WmProgressBarProps());\n }\n\n renderWidget(props: WmProgressBarProps) {\n let value = (props.datavalue - props.minvalue) / (props.maxvalue - props.minvalue);\n const styles = this.theme.mergeStyle(this.theme.getStyle(`app-${props.type}-progress-bar`), this.styles);\n const {hasLinearGradient, color1, color2, start, end} = parseLinearGradient(styles?.root?.progressBar?.backgroundColor as string);\n const gradientColors: [string, string, ...string[]] = [color1, color2];\n const valuePercent = `${Math.round(value * 100)}%`;\n\n return (\n <View style={styles.root}>\n {this._background}\n <Tappable target={this} styles={{root:{width: '100%', height: '100%'}}} disableTouchEffect={this.state.props.disabletoucheffect}>\n <ProgressBar\n {...this.getTestPropsForAction('progressbar')}\n {...getAccessibilityProps(AccessibilityWidgetType.PROGRESSBAR, props)}\n animatedValue={value}\n color={styles.progressValue.color}\n style={[styles.progressBar, {height: styles.root.height || styles.progressBar.height}]}></ProgressBar>\n {hasLinearGradient ? (\n <ExpoLinearGradient\n colors={gradientColors}\n start={start}\n end={end}\n style={[\n {\n width: valuePercent as any,\n height: styles.root.height || styles.progressBar.height,\n position: 'absolute',\n borderRadius: styles?.progressBar?.borderRadius || 0,\n },\n ]}\n />\n ) : (\n <></>\n )}\n </Tappable>\n </View>); \n }\n\n}"],"mappings":"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","ignoreList":[]}
@@ -0,0 +1,16 @@
1
+ function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
2
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
3
+ function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
4
+ import { BaseProps } from '@wavemaker/app-rn-runtime/core/base.component';
5
+ export default class WmProgressBarProps extends BaseProps {
6
+ constructor(...args) {
7
+ super(...args);
8
+ _defineProperty(this, "type", 'default');
9
+ _defineProperty(this, "datavalue", 30);
10
+ _defineProperty(this, "minvalue", 0);
11
+ _defineProperty(this, "maxvalue", 100);
12
+ _defineProperty(this, "accessibilitylabel", undefined);
13
+ _defineProperty(this, "accessibilityrole", 'progressbar');
14
+ }
15
+ }
16
+ //# sourceMappingURL=progress-bar.props.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["Color","BASE_THEME","defineStyles","DEFAULT_CLASS","registerStyle","themeVariables","addStyle","defaultStyles","root","text","progressBar","height","progressValue","getStyle","color","backgroundColor","alpha","rgb","toString","progressBarDefaultColor","progressBarSuccessColor","progressBarInfoColor","progressBarDangerColor","progressBarWarningColor"],"sources":["progress-bar.styles.ts"],"sourcesContent":["import Color from 'color';\nimport BASE_THEME, { AllStyle } from '@wavemaker/app-rn-runtime/styles/theme';\nimport { BaseStyles, defineStyles } from '@wavemaker/app-rn-runtime/core/base.component';\nimport { Platform } from 'react-native';\n\nexport type WmProgressBarStyles = BaseStyles & {\n progressBar : AllStyle,\n progressValue: AllStyle\n};\n\nexport const DEFAULT_CLASS = 'app-progress-bar';\nBASE_THEME.registerStyle((themeVariables, addStyle) => {\n const defaultStyles: WmProgressBarStyles = defineStyles({\n root: {},\n text: {},\n progressBar: {\n height: 4\n },\n progressValue: {}\n });\n\n const getStyle = (color: string) => ({\n progressBar: {\n backgroundColor: Color(color).alpha(0.2).rgb().toString()\n },\n progressValue: {\n color: color\n }\n } as WmProgressBarStyles);\n\n addStyle(DEFAULT_CLASS, '', defaultStyles);\n addStyle('app-default-progress-bar', '', getStyle(themeVariables.progressBarDefaultColor));\n addStyle('app-success-progress-bar', '', getStyle(themeVariables.progressBarSuccessColor));\n addStyle('app-info-progress-bar', '', getStyle(themeVariables.progressBarInfoColor));\n addStyle('app-danger-progress-bar', '', getStyle(themeVariables.progressBarDangerColor));\n addStyle('app-warning-progress-bar', '', getStyle(themeVariables.progressBarWarningColor));\n});"],"mappings":"AAAA,OAAOA,KAAK,MAAM,OAAO;AACzB,OAAOC,UAAU,MAAoB,wCAAwC;AAC7E,SAAqBC,YAAY,QAAQ,+CAA+C;AAQxF,OAAO,MAAMC,aAAa,GAAG,kBAAkB;AAC/CF,UAAU,CAACG,aAAa,CAAC,CAACC,cAAc,EAAEC,QAAQ,KAAK;EACnD,MAAMC,aAAkC,GAAGL,YAAY,CAAC;IACpDM,IAAI,EAAE,CAAC,CAAC;IACRC,IAAI,EAAE,CAAC,CAAC;IACRC,WAAW,EAAE;MACTC,MAAM,EAAE;IACZ,CAAC;IACDC,aAAa,EAAE,CAAC;EACpB,CAAC,CAAC;EAEF,MAAMC,QAAQ,GAAIC,KAAa,KAAM;IACjCJ,WAAW,EAAE;MACTK,eAAe,EAAEf,KAAK,CAACc,KAAK,CAAC,CAACE,KAAK,CAAC,GAAG,CAAC,CAACC,GAAG,CAAC,CAAC,CAACC,QAAQ,CAAC;IAC5D,CAAC;IACDN,aAAa,EAAE;MACXE,KAAK,EAAEA;IACX;EACJ,CAAC,CAAwB;EAEzBR,QAAQ,CAACH,aAAa,EAAE,EAAE,EAAEI,aAAa,CAAC;EAC1CD,QAAQ,CAAC,0BAA0B,EAAE,EAAE,EAAEO,QAAQ,CAACR,cAAc,CAACc,uBAAuB,CAAC,CAAC;EAC1Fb,QAAQ,CAAC,0BAA0B,EAAE,EAAE,EAAEO,QAAQ,CAACR,cAAc,CAACe,uBAAuB,CAAC,CAAC;EAC1Fd,QAAQ,CAAC,uBAAuB,EAAE,EAAE,EAAEO,QAAQ,CAACR,cAAc,CAACgB,oBAAoB,CAAC,CAAC;EACpFf,QAAQ,CAAC,yBAAyB,EAAE,EAAE,EAAEO,QAAQ,CAACR,cAAc,CAACiB,sBAAsB,CAAC,CAAC;EACxFhB,QAAQ,CAAC,0BAA0B,EAAE,EAAE,EAAEO,QAAQ,CAACR,cAAc,CAACkB,uBAAuB,CAAC,CAAC;AAC9F,CAAC,CAAC","ignoreList":[]}
@@ -0,0 +1,78 @@
1
+ function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
2
+ function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
3
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
4
+ function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
5
+ import React from 'react';
6
+ import { View, Text } from 'react-native';
7
+ import { isNumber } from 'lodash';
8
+ import { AnimatedCircularProgress } from 'react-native-circular-progress';
9
+ import { Tappable } from '@wavemaker/app-rn-runtime/core/tappable.component';
10
+ import { BaseComponent, BaseComponentState } from '@wavemaker/app-rn-runtime/core/base.component';
11
+ import { AccessibilityWidgetType, getAccessibilityProps } from '@wavemaker/app-rn-runtime/core/accessibility';
12
+ import WmProgressCircleProps from './progress-circle.props';
13
+ import { DEFAULT_CLASS } from './progress-circle.styles';
14
+ export class WmProgressCircleState extends BaseComponentState {
15
+ constructor(...args) {
16
+ super(...args);
17
+ _defineProperty(this, "radius", 10);
18
+ }
19
+ }
20
+ export default class WmProgressCircle extends BaseComponent {
21
+ constructor(props) {
22
+ super(props, DEFAULT_CLASS, new WmProgressCircleProps(), new WmProgressCircleState());
23
+ }
24
+ onLayout(e) {
25
+ const width = e.nativeEvent.layout.width;
26
+ const height = e.nativeEvent.layout.height;
27
+ let radius = this.state.radius;
28
+ if (!width) {
29
+ radius = height;
30
+ } else if (!height) {
31
+ radius = width;
32
+ } else {
33
+ radius = Math.min(width, height);
34
+ }
35
+ this.updateState({
36
+ radius: radius
37
+ });
38
+ }
39
+ renderWidget(props) {
40
+ let value = 0;
41
+ if (isNumber(props.datavalue) && isNumber(props.minvalue) && isNumber(props.maxvalue)) {
42
+ value = (+props.datavalue - +props.minvalue) / (+props.maxvalue - +props.minvalue) * 100;
43
+ }
44
+ const styles = this.theme.mergeStyle(this.theme.getStyle(`app-${props.type}-progress-circle`), this.styles);
45
+ const showText = props.captionplacement !== 'hidden';
46
+ return /*#__PURE__*/React.createElement(View, _extends({
47
+ style: styles.root,
48
+ onLayout: this.onLayout.bind(this)
49
+ }, getAccessibilityProps(AccessibilityWidgetType.PROGRESSCIRCLE, props), this.getTestPropsForAction('progresscircle')), this._background, /*#__PURE__*/React.createElement(Tappable, {
50
+ target: this,
51
+ styles: {
52
+ root: {
53
+ width: '100%',
54
+ height: '100%'
55
+ }
56
+ },
57
+ disableTouchEffect: this.state.props.disabletoucheffect
58
+ }, /*#__PURE__*/React.createElement(AnimatedCircularProgress, {
59
+ fill: value,
60
+ width: styles.progressValue.height,
61
+ backgroundWidth: styles.progressValue.height,
62
+ rotation: 0,
63
+ tintColor: styles.progressValue.backgroundColor,
64
+ lineCap: styles.progressValue.buttStyle || "butt",
65
+ backgroundColor: styles.progressCircle.backgroundColor,
66
+ size: this.state.radius
67
+ }, fill => /*#__PURE__*/React.createElement(View, {
68
+ style: {
69
+ alignItems: 'center'
70
+ }
71
+ }, /*#__PURE__*/React.createElement(Text, _extends({
72
+ style: styles.text
73
+ }, this.getTestPropsForLabel('title')), showText ? props.title || value : ''), showText && props.subtitle ? /*#__PURE__*/React.createElement(Text, _extends({
74
+ style: styles.subTitle
75
+ }, this.getTestPropsForLabel('subtitle')), props.subtitle) : null))));
76
+ }
77
+ }
78
+ //# sourceMappingURL=progress-circle.component.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["React","View","Text","isNumber","AnimatedCircularProgress","Tappable","BaseComponent","BaseComponentState","AccessibilityWidgetType","getAccessibilityProps","WmProgressCircleProps","DEFAULT_CLASS","WmProgressCircleState","constructor","args","_defineProperty","WmProgressCircle","props","onLayout","e","width","nativeEvent","layout","height","radius","state","Math","min","updateState","renderWidget","value","datavalue","minvalue","maxvalue","styles","theme","mergeStyle","getStyle","type","showText","captionplacement","createElement","_extends","style","root","bind","PROGRESSCIRCLE","getTestPropsForAction","_background","target","disableTouchEffect","disabletoucheffect","fill","progressValue","backgroundWidth","rotation","tintColor","backgroundColor","lineCap","buttStyle","progressCircle","size","alignItems","text","getTestPropsForLabel","title","subtitle","subTitle"],"sources":["progress-circle.component.tsx"],"sourcesContent":["import React from 'react';\nimport { LayoutChangeEvent, View, Text } from 'react-native';\nimport { isNumber } from 'lodash';\nimport { AnimatedCircularProgress } from 'react-native-circular-progress';\nimport { Tappable } from '@wavemaker/app-rn-runtime/core/tappable.component';\nimport { BaseComponent, BaseComponentState } from '@wavemaker/app-rn-runtime/core/base.component';\nimport { AccessibilityWidgetType, getAccessibilityProps } from '@wavemaker/app-rn-runtime/core/accessibility';\n\nimport WmProgressCircleProps from './progress-circle.props';\nimport { DEFAULT_CLASS, WmProgressCircleStyles } from './progress-circle.styles';\n\n\nexport class WmProgressCircleState extends BaseComponentState<WmProgressCircleProps> {\n radius = 10;\n}\n\nexport default class WmProgressCircle extends BaseComponent<WmProgressCircleProps, WmProgressCircleState, WmProgressCircleStyles> {\n\n constructor(props: WmProgressCircleProps) {\n super(props, DEFAULT_CLASS, new WmProgressCircleProps(), new WmProgressCircleState());\n }\n\n onLayout(e: LayoutChangeEvent) {\n const width = e.nativeEvent.layout.width;\n const height = e.nativeEvent.layout.height;\n let radius = this.state.radius;\n if (!width) {\n radius = height;\n } else if (!height) {\n radius = width;\n } else {\n radius = Math.min(width, height);\n }\n this.updateState({\n radius: radius\n } as WmProgressCircleState);\n }\n\n renderWidget(props: WmProgressCircleProps) {\n let value = 0;\n if (isNumber(props.datavalue) && isNumber(props.minvalue) && isNumber(props.maxvalue)) {\n value = (+props.datavalue - (+props.minvalue)) / (+props.maxvalue - (+props.minvalue)) * 100;\n }\n const styles = this.theme.mergeStyle(this.theme.getStyle(`app-${props.type}-progress-circle`), this.styles);\n const showText = props.captionplacement !== 'hidden';\n return (\n <View style={styles.root} onLayout={this.onLayout.bind(this)} {...getAccessibilityProps(AccessibilityWidgetType.PROGRESSCIRCLE, props)} {...this.getTestPropsForAction('progresscircle')}>\n {this._background}\n <Tappable target={this} styles={{root:{width: '100%', height: '100%'}}} disableTouchEffect={this.state.props.disabletoucheffect}>\n <AnimatedCircularProgress\n fill={value}\n width={styles.progressValue.height}\n backgroundWidth={styles.progressValue.height}\n rotation={0}\n tintColor={styles.progressValue.backgroundColor}\n lineCap={styles.progressValue.buttStyle || \"butt\"}\n backgroundColor={styles.progressCircle.backgroundColor}\n size={this.state.radius}>\n {(fill) => (<View style={{alignItems: 'center'}}>\n <Text style={styles.text} {...this.getTestPropsForLabel('title')}>{ showText ? props.title || value : '' }</Text>\n {showText && props.subtitle ? (<Text style={styles.subTitle} {...this.getTestPropsForLabel('subtitle')}>{ props.subtitle }</Text>) : null}\n </View>)} \n </AnimatedCircularProgress>\n </Tappable>\n </View>); \n }\n}\n"],"mappings":"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","ignoreList":[]}
@@ -0,0 +1,19 @@
1
+ function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
2
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
3
+ function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
4
+ import { BaseProps } from '@wavemaker/app-rn-runtime/core/base.component';
5
+ export default class WmProgressCircleProps extends BaseProps {
6
+ constructor(...args) {
7
+ super(...args);
8
+ _defineProperty(this, "type", 'default');
9
+ _defineProperty(this, "datavalue", 30);
10
+ _defineProperty(this, "minvalue", 0);
11
+ _defineProperty(this, "maxvalue", 100);
12
+ _defineProperty(this, "captionplacement", 'inside');
13
+ _defineProperty(this, "title", '');
14
+ _defineProperty(this, "subtitle", '');
15
+ _defineProperty(this, "accessibilitylabel", undefined);
16
+ _defineProperty(this, "accessibilityrole", 'progressbar');
17
+ }
18
+ }
19
+ //# sourceMappingURL=progress-circle.props.js.map
@@ -0,0 +1,113 @@
1
+ function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
2
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
3
+ function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
4
+ import { filter, includes, values, isNumber, split, toLower, get, toString, isArray, isObject, isString } from 'lodash';
5
+ export class DataProvider {
6
+ constructor() {
7
+ _defineProperty(this, "localDataProvider", new LocalDataProvider());
8
+ }
9
+ // check if the variable is of type service variable and whether update is required.
10
+ init(self) {
11
+ let response = self.invokeEventCallback('isUpdateRequired', []);
12
+ return response;
13
+ }
14
+
15
+ // setting the inputFields and invoking the variable
16
+ invokeVariable(self, query) {
17
+ var _self$props;
18
+ let paramsObj = null;
19
+ ((_self$props = self.props) === null || _self$props === void 0 ? void 0 : _self$props.searchkey) && self.props.searchkey.split(',').forEach(k => {
20
+ if (!paramsObj) {
21
+ paramsObj = {};
22
+ }
23
+ paramsObj[k] = query;
24
+ });
25
+ let invokeEvent = get(self.props, 'formfield') ? self.props.invokeEvent : self.invokeEventCallback;
26
+ if (invokeEvent) {
27
+ return invokeEvent.call(self, 'onQuerySearch', [paramsObj]);
28
+ }
29
+ return Promise.resolve();
30
+ }
31
+ filter(config, cb) {
32
+ const props = config.props;
33
+ if (props.searchkey) {
34
+ const keys = split(props.searchkey, ',');
35
+ if (keys.length && cb) {
36
+ cb();
37
+ return;
38
+ }
39
+ }
40
+ return this.localDataProvider.filter(config);
41
+ }
42
+ }
43
+ export class LocalDataProvider {
44
+ applyFilter(entry, queryText) {
45
+ entry = isNumber(entry) ? entry.toString() : entry;
46
+ return includes(entry, queryText);
47
+ }
48
+ filter(config) {
49
+ const entries = config.entries;
50
+ let queryText = config.query;
51
+ const props = config.props;
52
+ let filteredData;
53
+ const casesensitive = false;
54
+
55
+ /**
56
+ * If searchkey is defined, then check for match string against each item in the dataset with item's field name as the searchkey
57
+ * return the filtered data containing the matching string.
58
+ */
59
+ if (props.searchkey) {
60
+ const keys = split(props.searchkey, ',');
61
+ if (!entries.length) {
62
+ return [];
63
+ }
64
+ let entryObj = entries[0];
65
+ entryObj = entryObj.hasOwnProperty('dataObject') ? entryObj['dataObject'] : entryObj;
66
+ const entryKeys = Object.keys(entryObj);
67
+ const hasEntry = keys.find(k => {
68
+ if (k.includes('.')) {
69
+ k = split(k, '.')[0];
70
+ }
71
+ return entryKeys.includes(k);
72
+ });
73
+ if (!hasEntry) {
74
+ // widget bound to query variable, searchkey is query or path params and not the key from the entry obj
75
+ return entries;
76
+ }
77
+ filteredData = filter(entries, item => {
78
+ return keys.some(key => {
79
+ let a = get(item.dataObject, key),
80
+ b = queryText;
81
+ if (!casesensitive) {
82
+ a = toLower(toString(a));
83
+ b = toLower(toString(b));
84
+ }
85
+ return this.applyFilter(a, b);
86
+ });
87
+ });
88
+ } else {
89
+ // local search on data with array of objects.
90
+ // Iterate over each item and return the filtered data containing the matching string.
91
+ if (isArray(entries) && isObject(entries[0])) {
92
+ filteredData = filter(entries, entry => {
93
+ let a = isString(entry.dataObject) ? entry.dataObject : values(entry.dataObject).join(' ');
94
+ if (!casesensitive) {
95
+ a = toLower(a);
96
+ queryText = toLower(queryText);
97
+ }
98
+ return this.applyFilter(a, queryText);
99
+ });
100
+ } else {
101
+ filteredData = filter(entries, entry => {
102
+ if (!casesensitive) {
103
+ entry = toLower(entry);
104
+ queryText = toLower(queryText);
105
+ }
106
+ return this.applyFilter(entry, queryText);
107
+ });
108
+ }
109
+ }
110
+ return filteredData;
111
+ }
112
+ }
113
+ //# sourceMappingURL=local-data-provider.js.map