@wavemaker/app-rn-runtime 11.6.1-rc.5496 → 11.7.0-dev.1

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 (1172) hide show
  1. package/components/advanced/carousel/carousel.component.js +295 -0
  2. package/components/advanced/carousel/carousel.component.js.map +1 -0
  3. package/components/advanced/carousel/carousel.styles.js +165 -0
  4. package/components/advanced/carousel/carousel.styles.js.map +1 -0
  5. package/components/advanced/webview/webview.component.js +149 -0
  6. package/components/advanced/webview/webview.component.js.map +1 -0
  7. package/components/advanced/webview/webview.props.js +16 -0
  8. package/components/advanced/webview/webview.props.js.map +1 -0
  9. package/components/basic/anchor/anchor.component.js +85 -0
  10. package/components/basic/anchor/anchor.component.js.map +1 -0
  11. package/components/basic/anchor/anchor.props.js +30 -0
  12. package/components/basic/anchor/anchor.props.js.map +1 -0
  13. package/components/basic/anchor/anchor.styles.js +80 -0
  14. package/components/basic/anchor/anchor.styles.js.map +1 -0
  15. package/components/basic/animatedview.component.js +216 -0
  16. package/components/basic/animatedview.component.js.map +1 -0
  17. package/components/basic/button/button.component.js +86 -0
  18. package/components/basic/button/button.component.js.map +1 -0
  19. package/components/basic/button/button.props.js +26 -0
  20. package/components/basic/button/button.props.js.map +1 -0
  21. package/components/basic/button/button.styles.js +133 -0
  22. package/components/basic/button/button.styles.js.map +1 -0
  23. package/components/basic/buttongroup/buttongroup.styles.js +59 -0
  24. package/components/basic/buttongroup/buttongroup.styles.js.map +1 -0
  25. package/components/basic/icon/icon.component.js +250 -0
  26. package/components/basic/icon/icon.component.js.map +1 -0
  27. package/components/basic/icon/icon.props.js +26 -0
  28. package/components/basic/icon/icon.props.js.map +1 -0
  29. package/components/basic/icon/icon.styles.js +33 -0
  30. package/components/basic/icon/icon.styles.js.map +1 -0
  31. package/components/basic/label/label.component.js +143 -0
  32. package/components/basic/label/label.component.js.map +1 -0
  33. package/components/basic/label/label.props.js +23 -0
  34. package/components/basic/label/label.props.js.map +1 -0
  35. package/components/basic/label/label.styles.js +129 -0
  36. package/components/basic/label/label.styles.js.map +1 -0
  37. package/components/basic/message/message.component.js +77 -0
  38. package/components/basic/message/message.component.js.map +1 -0
  39. package/components/basic/message/message.props.js +20 -0
  40. package/components/basic/message/message.props.js.map +1 -0
  41. package/components/basic/message/message.styles.js +117 -0
  42. package/components/basic/message/message.styles.js.map +1 -0
  43. package/components/basic/picture/picture.component.js +191 -0
  44. package/components/basic/picture/picture.component.js.map +1 -0
  45. package/components/basic/picture/picture.props.js +21 -0
  46. package/components/basic/picture/picture.props.js.map +1 -0
  47. package/components/basic/picture/picture.styles.js +43 -0
  48. package/components/basic/picture/picture.styles.js.map +1 -0
  49. package/components/basic/progress-bar/progress-bar.component.js +37 -0
  50. package/components/basic/progress-bar/progress-bar.component.js.map +1 -0
  51. package/components/basic/progress-bar/progress-bar.props.js +16 -0
  52. package/components/basic/progress-bar/progress-bar.props.js.map +1 -0
  53. package/components/basic/progress-circle/progress-circle.component.js +77 -0
  54. package/components/basic/progress-circle/progress-circle.component.js.map +1 -0
  55. package/components/basic/progress-circle/progress-circle.props.js +19 -0
  56. package/components/basic/progress-circle/progress-circle.props.js.map +1 -0
  57. package/components/basic/search/search.component.js +424 -0
  58. package/components/basic/search/search.component.js.map +1 -0
  59. package/components/basic/search/search.props.js +33 -0
  60. package/components/basic/search/search.props.js.map +1 -0
  61. package/components/basic/search/search.styles.js +173 -0
  62. package/components/basic/search/search.styles.js.map +1 -0
  63. package/components/basic/skeleton/skeleton.component.js +148 -0
  64. package/components/basic/skeleton/skeleton.component.js.map +1 -0
  65. package/components/basic/video/video.component.js +59 -0
  66. package/components/basic/video/video.component.js.map +1 -0
  67. package/components/basic/video/video.props.js +25 -0
  68. package/components/basic/video/video.props.js.map +1 -0
  69. package/components/chart/area-chart/area-chart.component.js +137 -0
  70. package/components/chart/area-chart/area-chart.component.js.map +1 -0
  71. package/components/chart/bar-chart/bar-chart.component.js +109 -0
  72. package/components/chart/bar-chart/bar-chart.component.js.map +1 -0
  73. package/components/chart/bar-chart/bar-chart.props.js +13 -0
  74. package/components/chart/bar-chart/bar-chart.props.js.map +1 -0
  75. package/components/chart/basechart.component.js +605 -0
  76. package/components/chart/basechart.component.js.map +1 -0
  77. package/components/chart/basechart.props.js +66 -0
  78. package/components/chart/basechart.props.js.map +1 -0
  79. package/components/chart/basechart.styles.js +76 -0
  80. package/components/chart/basechart.styles.js.map +1 -0
  81. package/components/chart/bubble-chart/bubble-chart.component.js +84 -0
  82. package/components/chart/bubble-chart/bubble-chart.component.js.map +1 -0
  83. package/components/chart/line-chart/line-chart.component.js +98 -0
  84. package/components/chart/line-chart/line-chart.component.js.map +1 -0
  85. package/components/chart/line-chart/line-chart.props.js.map +1 -0
  86. package/components/chart/pie-chart/pie-chart.component.js +216 -0
  87. package/components/chart/pie-chart/pie-chart.component.js.map +1 -0
  88. package/components/chart/stack-chart/stack-chart.component.js +277 -0
  89. package/components/chart/stack-chart/stack-chart.component.js.map +1 -0
  90. package/components/chart/stack-chart/stack-chart.props.js +17 -0
  91. package/components/chart/stack-chart/stack-chart.props.js.map +1 -0
  92. package/components/chart/staticdata.js +215 -0
  93. package/components/chart/staticdata.js.map +1 -0
  94. package/components/container/container.component.js +47 -0
  95. package/components/container/container.component.js.map +1 -0
  96. package/components/container/container.props.js +13 -0
  97. package/components/container/container.props.js.map +1 -0
  98. package/components/container/panel/panel.component.js +113 -0
  99. package/components/container/panel/panel.component.js.map +1 -0
  100. package/components/container/panel/panel.props.js +24 -0
  101. package/components/container/panel/panel.props.js.map +1 -0
  102. package/components/container/tabs/tabheader/tabheader.component.js +196 -0
  103. package/components/container/tabs/tabheader/tabheader.component.js.map +1 -0
  104. package/components/container/tabs/tabheader/tabheader.styles.js +69 -0
  105. package/components/container/tabs/tabheader/tabheader.styles.js.map +1 -0
  106. package/components/container/tabs/tabpane/tabpane.component.js +74 -0
  107. package/components/container/tabs/tabpane/tabpane.component.js.map +1 -0
  108. package/components/container/tabs/tabpane/tabpane.props.js +16 -0
  109. package/components/container/tabs/tabpane/tabpane.props.js.map +1 -0
  110. package/components/container/tabs/tabs.component.js +240 -0
  111. package/components/container/tabs/tabs.component.js.map +1 -0
  112. package/components/container/wizard/wizard.component.js +293 -0
  113. package/components/container/wizard/wizard.component.js.map +1 -0
  114. package/components/container/wizard/wizard.styles.js +308 -0
  115. package/components/container/wizard/wizard.styles.js.map +1 -0
  116. package/components/container/wizard/wizardstep/wizardstep.component.js +77 -0
  117. package/components/container/wizard/wizardstep/wizardstep.component.js.map +1 -0
  118. package/components/container/wizard/wizardstep/wizardstep.props.js +22 -0
  119. package/components/container/wizard/wizardstep/wizardstep.props.js.map +1 -0
  120. package/components/data/card/card.component.js +72 -0
  121. package/components/data/card/card.component.js.map +1 -0
  122. package/components/data/card/card.props.js +27 -0
  123. package/components/data/card/card.props.js.map +1 -0
  124. package/components/data/form/form-action/form-action.component.js +35 -0
  125. package/components/data/form/form-action/form-action.component.js.map +1 -0
  126. package/components/data/form/form-action/form-action.props.js +18 -0
  127. package/components/data/form/form-action/form-action.props.js.map +1 -0
  128. package/components/data/form/form-action/form-action.styles.js +34 -0
  129. package/components/data/form/form-action/form-action.styles.js.map +1 -0
  130. package/components/data/form/form-field/form-field.component.js +231 -0
  131. package/components/data/form/form-field/form-field.component.js.map +1 -0
  132. package/components/data/list/list.component.js +420 -0
  133. package/components/data/list/list.component.js.map +1 -0
  134. package/components/data/list/list.props.js +44 -0
  135. package/components/data/list/list.props.js.map +1 -0
  136. package/components/data/list/list.styles.js +142 -0
  137. package/components/data/list/list.styles.js.map +1 -0
  138. package/components/device/barcodescanner/barcodescanner.component.js +50 -0
  139. package/components/device/barcodescanner/barcodescanner.component.js.map +1 -0
  140. package/components/device/barcodescanner/barcodescanner.props.js +18 -0
  141. package/components/device/barcodescanner/barcodescanner.props.js.map +1 -0
  142. package/components/device/barcodescanner/barcodescanner.styles.js +38 -0
  143. package/components/device/barcodescanner/barcodescanner.styles.js.map +1 -0
  144. package/components/device/camera/camera.component.js +68 -0
  145. package/components/device/camera/camera.component.js.map +1 -0
  146. package/components/device/camera/camera.props.js +23 -0
  147. package/components/device/camera/camera.props.js.map +1 -0
  148. package/components/device/camera/camera.styles.js +39 -0
  149. package/components/device/camera/camera.styles.js.map +1 -0
  150. package/components/dialogs/alertdialog/alertdialog.component.js +71 -0
  151. package/components/dialogs/alertdialog/alertdialog.component.js.map +1 -0
  152. package/components/dialogs/alertdialog/alertdialog.props.js +23 -0
  153. package/components/dialogs/alertdialog/alertdialog.props.js.map +1 -0
  154. package/components/dialogs/alertdialog/alertdialog.styles.js +34 -0
  155. package/components/dialogs/alertdialog/alertdialog.styles.js.map +1 -0
  156. package/components/dialogs/confirmdialog/confirmdialog.component.js +77 -0
  157. package/components/dialogs/confirmdialog/confirmdialog.component.js.map +1 -0
  158. package/components/dialogs/confirmdialog/confirmdialog.props.js +23 -0
  159. package/components/dialogs/confirmdialog/confirmdialog.props.js.map +1 -0
  160. package/components/dialogs/dialog/dialog.component.js +98 -0
  161. package/components/dialogs/dialog/dialog.component.js.map +1 -0
  162. package/components/dialogs/dialog/dialog.props.js +24 -0
  163. package/components/dialogs/dialog/dialog.props.js.map +1 -0
  164. package/components/dialogs/dialog/dialog.styles.js +79 -0
  165. package/components/dialogs/dialog/dialog.styles.js.map +1 -0
  166. package/components/input/basedataset/basedataset.props.js +31 -0
  167. package/components/input/basedataset/basedataset.props.js.map +1 -0
  168. package/components/input/baseinput/baseinput.component.js +151 -0
  169. package/components/input/baseinput/baseinput.component.js.map +1 -0
  170. package/components/input/baseinput/baseinput.props.js +27 -0
  171. package/components/input/baseinput/baseinput.props.js.map +1 -0
  172. package/components/input/basenumber/basenumber.component.js +317 -0
  173. package/components/input/basenumber/basenumber.component.js.map +1 -0
  174. package/components/input/basenumber/basenumber.props.js +25 -0
  175. package/components/input/basenumber/basenumber.props.js.map +1 -0
  176. package/components/input/checkbox/checkbox.component.js +102 -0
  177. package/components/input/checkbox/checkbox.component.js.map +1 -0
  178. package/components/input/checkbox/checkbox.styles.js +66 -0
  179. package/components/input/checkbox/checkbox.styles.js.map +1 -0
  180. package/components/input/checkboxset/checkboxset.component.js +111 -0
  181. package/components/input/checkboxset/checkboxset.component.js.map +1 -0
  182. package/components/input/checkboxset/checkboxset.props.js +14 -0
  183. package/components/input/checkboxset/checkboxset.props.js.map +1 -0
  184. package/components/input/checkboxset/checkboxset.styles.js +75 -0
  185. package/components/input/checkboxset/checkboxset.styles.js.map +1 -0
  186. package/components/input/chips/chips.component.js +281 -0
  187. package/components/input/chips/chips.component.js.map +1 -0
  188. package/components/input/composite/composite.component.js +24 -0
  189. package/components/input/composite/composite.component.js.map +1 -0
  190. package/components/input/composite/composite.props.js +12 -0
  191. package/components/input/composite/composite.props.js.map +1 -0
  192. package/components/input/currency/currency.component.js +88 -0
  193. package/components/input/currency/currency.component.js.map +1 -0
  194. package/components/input/currency/currency.props.js +13 -0
  195. package/components/input/currency/currency.props.js.map +1 -0
  196. package/components/input/currency/currency.styles.js +90 -0
  197. package/components/input/currency/currency.styles.js.map +1 -0
  198. package/components/input/epoch/base-datetime.component.js +353 -0
  199. package/components/input/epoch/base-datetime.component.js.map +1 -0
  200. package/components/input/epoch/date/date.component.js +20 -0
  201. package/components/input/epoch/date/date.component.js.map +1 -0
  202. package/components/input/epoch/date/date.styles.js +37 -0
  203. package/components/input/epoch/date/date.styles.js.map +1 -0
  204. package/components/input/epoch/datetime/datetime.component.js +20 -0
  205. package/components/input/epoch/datetime/datetime.component.js.map +1 -0
  206. package/components/input/epoch/datetime/datetime.props.js +27 -0
  207. package/components/input/epoch/datetime/datetime.props.js.map +1 -0
  208. package/components/input/epoch/datetime/datetime.styles.js +119 -0
  209. package/components/input/epoch/datetime/datetime.styles.js.map +1 -0
  210. package/components/input/epoch/time/time.component.js +26 -0
  211. package/components/input/epoch/time/time.component.js.map +1 -0
  212. package/components/input/epoch/time/time.styles.js +37 -0
  213. package/components/input/epoch/time/time.styles.js.map +1 -0
  214. package/components/input/fileupload/fileupload.component.js +58 -0
  215. package/components/input/fileupload/fileupload.component.js.map +1 -0
  216. package/components/input/fileupload/fileupload.props.js +16 -0
  217. package/components/input/fileupload/fileupload.props.js.map +1 -0
  218. package/components/input/fileupload/fileupload.styles.js +27 -0
  219. package/components/input/fileupload/fileupload.styles.js.map +1 -0
  220. package/components/input/number/number.component.js +66 -0
  221. package/components/input/number/number.component.js.map +1 -0
  222. package/components/input/number/number.props.js +13 -0
  223. package/components/input/number/number.props.js.map +1 -0
  224. package/components/input/number/number.styles.js +59 -0
  225. package/components/input/number/number.styles.js.map +1 -0
  226. package/components/input/radioset/radioset.component.js +94 -0
  227. package/components/input/radioset/radioset.component.js.map +1 -0
  228. package/components/input/radioset/radioset.props.js +18 -0
  229. package/components/input/radioset/radioset.props.js.map +1 -0
  230. package/components/input/radioset/radioset.styles.js +82 -0
  231. package/components/input/radioset/radioset.styles.js.map +1 -0
  232. package/components/input/select/select.component.js +189 -0
  233. package/components/input/select/select.component.js.map +1 -0
  234. package/components/input/select/select.styles.js +105 -0
  235. package/components/input/select/select.styles.js.map +1 -0
  236. package/components/input/slider/slider.styles.js +60 -0
  237. package/components/input/slider/slider.styles.js.map +1 -0
  238. package/components/input/switch/switch.component.js +81 -0
  239. package/components/input/switch/switch.component.js.map +1 -0
  240. package/components/input/switch/switch.styles.js +122 -0
  241. package/components/input/switch/switch.styles.js.map +1 -0
  242. package/components/input/text/text.component.js +59 -0
  243. package/components/input/text/text.component.js.map +1 -0
  244. package/components/input/text/text.props.js +12 -0
  245. package/components/input/text/text.props.js.map +1 -0
  246. package/components/input/text/text.styles.js +65 -0
  247. package/components/input/text/text.styles.js.map +1 -0
  248. package/components/input/textarea/textarea.component.js +60 -0
  249. package/components/input/textarea/textarea.component.js.map +1 -0
  250. package/components/input/textarea/textarea.props.js +12 -0
  251. package/components/input/textarea/textarea.props.js.map +1 -0
  252. package/components/input/textarea/textarea.styles.js +63 -0
  253. package/components/input/textarea/textarea.styles.js.map +1 -0
  254. package/components/input/toggle/toggle.component.js +138 -0
  255. package/components/input/toggle/toggle.component.js.map +1 -0
  256. package/components/input/toggle/toggle.props.js +20 -0
  257. package/components/input/toggle/toggle.props.js.map +1 -0
  258. package/components/input/toggle/toggle.styles.js +48 -0
  259. package/components/input/toggle/toggle.styles.js.map +1 -0
  260. package/components/navigation/appnavbar/appnavbar.component.js +70 -0
  261. package/components/navigation/appnavbar/appnavbar.component.js.map +1 -0
  262. package/components/navigation/appnavbar/appnavbar.props.js +21 -0
  263. package/components/navigation/appnavbar/appnavbar.props.js.map +1 -0
  264. package/components/navigation/appnavbar/appnavbar.styles.js +169 -0
  265. package/components/navigation/appnavbar/appnavbar.styles.js.map +1 -0
  266. package/components/navigation/basenav/basenav.component.js +76 -0
  267. package/components/navigation/basenav/basenav.component.js.map +1 -0
  268. package/components/navigation/menu/menu.styles.js +74 -0
  269. package/components/navigation/menu/menu.styles.js.map +1 -0
  270. package/components/navigation/navitem/navitem.component.js +68 -0
  271. package/components/navigation/navitem/navitem.component.js.map +1 -0
  272. package/components/navigation/navitem/navitem.props.js +19 -0
  273. package/components/navigation/navitem/navitem.props.js.map +1 -0
  274. package/components/navigation/popover/popover.component.js +136 -0
  275. package/components/navigation/popover/popover.component.js.map +1 -0
  276. package/components/navigation/popover/popover.props.js +30 -0
  277. package/components/navigation/popover/popover.props.js.map +1 -0
  278. package/components/navigation/popover/popover.styles.js +81 -0
  279. package/components/navigation/popover/popover.styles.js.map +1 -0
  280. package/components/page/page-content/page-content.component.js +36 -0
  281. package/components/page/page-content/page-content.component.js.map +1 -0
  282. package/components/page/tabbar/curve.js +84 -0
  283. package/components/page/tabbar/curve.js.map +1 -0
  284. package/components/page/tabbar/tabbar.component.js +137 -0
  285. package/components/page/tabbar/tabbar.component.js.map +1 -0
  286. package/components/page/tabbar/tabbar.styles.js +167 -0
  287. package/components/page/tabbar/tabbar.styles.js.map +1 -0
  288. package/core/accessibility.js +149 -0
  289. package/core/accessibility.js.map +1 -0
  290. package/core/base.component.js +443 -0
  291. package/core/base.component.js.map +1 -0
  292. package/core/components/flatlist.component.js +38 -0
  293. package/core/components/flatlist.component.js.map +1 -0
  294. package/core/components/floatinglabel.component.js +45 -0
  295. package/core/components/floatinglabel.component.js.map +1 -0
  296. package/core/components/textinput.component.js +60 -0
  297. package/core/components/textinput.component.js.map +1 -0
  298. package/core/event-notifier.js +50 -0
  299. package/core/event-notifier.js.map +1 -0
  300. package/core/tappable.component.js +109 -0
  301. package/core/tappable.component.js.map +1 -0
  302. package/core/utils.js +343 -0
  303. package/core/utils.js.map +1 -0
  304. package/gestures/swipe.animation.js +217 -0
  305. package/gestures/swipe.animation.js.map +1 -0
  306. package/package.json +246 -0
  307. package/runtime/App.js +500 -0
  308. package/runtime/App.js.map +1 -0
  309. package/runtime/base-page.component.js +163 -0
  310. package/runtime/base-page.component.js.map +1 -0
  311. package/runtime/services/app-security.service.js +201 -0
  312. package/runtime/services/app-security.service.js.map +1 -0
  313. package/runtime/services/webprocess.service.js +109 -0
  314. package/runtime/services/webprocess.service.js.map +1 -0
  315. package/styles/background.component.js +304 -0
  316. package/styles/background.component.js.map +1 -0
  317. package/styles/theme.js +396 -0
  318. package/styles/theme.js.map +1 -0
  319. package/styles/theme.variables.js +430 -0
  320. package/styles/theme.variables.js.map +1 -0
  321. package/variables/model-variable.js +47 -0
  322. package/variables/model-variable.js.map +1 -0
  323. package/variables/service-variable.js +141 -0
  324. package/variables/service-variable.js.map +1 -0
  325. app-rn-runtime/components/advanced/carousel/carousel.component.js +0 -290
  326. app-rn-runtime/components/advanced/carousel/carousel.component.js.map +0 -1
  327. app-rn-runtime/components/advanced/carousel/carousel.styles.js +0 -162
  328. app-rn-runtime/components/advanced/carousel/carousel.styles.js.map +0 -1
  329. app-rn-runtime/components/advanced/webview/webview.component.js +0 -130
  330. app-rn-runtime/components/advanced/webview/webview.component.js.map +0 -1
  331. app-rn-runtime/components/advanced/webview/webview.props.js +0 -14
  332. app-rn-runtime/components/advanced/webview/webview.props.js.map +0 -1
  333. app-rn-runtime/components/basic/anchor/anchor.component.js +0 -71
  334. app-rn-runtime/components/basic/anchor/anchor.component.js.map +0 -1
  335. app-rn-runtime/components/basic/anchor/anchor.props.js +0 -23
  336. app-rn-runtime/components/basic/anchor/anchor.props.js.map +0 -1
  337. app-rn-runtime/components/basic/anchor/anchor.styles.js +0 -78
  338. app-rn-runtime/components/basic/anchor/anchor.styles.js.map +0 -1
  339. app-rn-runtime/components/basic/animatedview.component.js +0 -214
  340. app-rn-runtime/components/basic/animatedview.component.js.map +0 -1
  341. app-rn-runtime/components/basic/button/button.component.js +0 -53
  342. app-rn-runtime/components/basic/button/button.component.js.map +0 -1
  343. app-rn-runtime/components/basic/button/button.props.js +0 -19
  344. app-rn-runtime/components/basic/button/button.props.js.map +0 -1
  345. app-rn-runtime/components/basic/button/button.styles.js +0 -134
  346. app-rn-runtime/components/basic/button/button.styles.js.map +0 -1
  347. app-rn-runtime/components/basic/buttongroup/buttongroup.styles.js +0 -51
  348. app-rn-runtime/components/basic/buttongroup/buttongroup.styles.js.map +0 -1
  349. app-rn-runtime/components/basic/icon/icon.component.js +0 -198
  350. app-rn-runtime/components/basic/icon/icon.component.js.map +0 -1
  351. app-rn-runtime/components/basic/icon/icon.props.js +0 -19
  352. app-rn-runtime/components/basic/icon/icon.props.js.map +0 -1
  353. app-rn-runtime/components/basic/icon/icon.styles.js +0 -32
  354. app-rn-runtime/components/basic/icon/icon.styles.js.map +0 -1
  355. app-rn-runtime/components/basic/label/label.component.js +0 -126
  356. app-rn-runtime/components/basic/label/label.component.js.map +0 -1
  357. app-rn-runtime/components/basic/label/label.props.js +0 -19
  358. app-rn-runtime/components/basic/label/label.props.js.map +0 -1
  359. app-rn-runtime/components/basic/label/label.styles.js +0 -130
  360. app-rn-runtime/components/basic/label/label.styles.js.map +0 -1
  361. app-rn-runtime/components/basic/message/message.component.js +0 -76
  362. app-rn-runtime/components/basic/message/message.component.js.map +0 -1
  363. app-rn-runtime/components/basic/message/message.props.js +0 -17
  364. app-rn-runtime/components/basic/message/message.props.js.map +0 -1
  365. app-rn-runtime/components/basic/message/message.styles.js +0 -115
  366. app-rn-runtime/components/basic/message/message.styles.js.map +0 -1
  367. app-rn-runtime/components/basic/picture/picture.component.js +0 -189
  368. app-rn-runtime/components/basic/picture/picture.component.js.map +0 -1
  369. app-rn-runtime/components/basic/picture/picture.props.js +0 -18
  370. app-rn-runtime/components/basic/picture/picture.props.js.map +0 -1
  371. app-rn-runtime/components/basic/picture/picture.styles.js +0 -41
  372. app-rn-runtime/components/basic/picture/picture.styles.js.map +0 -1
  373. app-rn-runtime/components/basic/progress-bar/progress-bar.component.js +0 -37
  374. app-rn-runtime/components/basic/progress-bar/progress-bar.component.js.map +0 -1
  375. app-rn-runtime/components/basic/progress-bar/progress-bar.props.js +0 -14
  376. app-rn-runtime/components/basic/progress-bar/progress-bar.props.js.map +0 -1
  377. app-rn-runtime/components/basic/progress-circle/progress-circle.component.js +0 -76
  378. app-rn-runtime/components/basic/progress-circle/progress-circle.component.js.map +0 -1
  379. app-rn-runtime/components/basic/progress-circle/progress-circle.props.js +0 -17
  380. app-rn-runtime/components/basic/progress-circle/progress-circle.props.js.map +0 -1
  381. app-rn-runtime/components/basic/search/search.component.js +0 -417
  382. app-rn-runtime/components/basic/search/search.component.js.map +0 -1
  383. app-rn-runtime/components/basic/search/search.props.js +0 -29
  384. app-rn-runtime/components/basic/search/search.props.js.map +0 -1
  385. app-rn-runtime/components/basic/search/search.styles.js +0 -172
  386. app-rn-runtime/components/basic/search/search.styles.js.map +0 -1
  387. app-rn-runtime/components/basic/skeleton/skeleton.component.js +0 -149
  388. app-rn-runtime/components/basic/skeleton/skeleton.component.js.map +0 -1
  389. app-rn-runtime/components/basic/video/video.component.js +0 -57
  390. app-rn-runtime/components/basic/video/video.component.js.map +0 -1
  391. app-rn-runtime/components/basic/video/video.props.js +0 -22
  392. app-rn-runtime/components/basic/video/video.props.js.map +0 -1
  393. app-rn-runtime/components/chart/area-chart/area-chart.component.js +0 -127
  394. app-rn-runtime/components/chart/area-chart/area-chart.component.js.map +0 -1
  395. app-rn-runtime/components/chart/bar-chart/bar-chart.component.js +0 -96
  396. app-rn-runtime/components/chart/bar-chart/bar-chart.component.js.map +0 -1
  397. app-rn-runtime/components/chart/bar-chart/bar-chart.props.js +0 -15
  398. app-rn-runtime/components/chart/bar-chart/bar-chart.props.js.map +0 -1
  399. app-rn-runtime/components/chart/basechart.component.js +0 -579
  400. app-rn-runtime/components/chart/basechart.component.js.map +0 -1
  401. app-rn-runtime/components/chart/basechart.props.js +0 -61
  402. app-rn-runtime/components/chart/basechart.props.js.map +0 -1
  403. app-rn-runtime/components/chart/basechart.styles.js +0 -69
  404. app-rn-runtime/components/chart/basechart.styles.js.map +0 -1
  405. app-rn-runtime/components/chart/bubble-chart/bubble-chart.component.js +0 -82
  406. app-rn-runtime/components/chart/bubble-chart/bubble-chart.component.js.map +0 -1
  407. app-rn-runtime/components/chart/line-chart/line-chart.component.js +0 -91
  408. app-rn-runtime/components/chart/line-chart/line-chart.component.js.map +0 -1
  409. app-rn-runtime/components/chart/line-chart/line-chart.props.js.map +0 -1
  410. app-rn-runtime/components/chart/pie-chart/pie-chart.component.js +0 -213
  411. app-rn-runtime/components/chart/pie-chart/pie-chart.component.js.map +0 -1
  412. app-rn-runtime/components/chart/stack-chart/stack-chart.component.js +0 -254
  413. app-rn-runtime/components/chart/stack-chart/stack-chart.component.js.map +0 -1
  414. app-rn-runtime/components/chart/stack-chart/stack-chart.props.js +0 -16
  415. app-rn-runtime/components/chart/stack-chart/stack-chart.props.js.map +0 -1
  416. app-rn-runtime/components/container/container.component.js +0 -38
  417. app-rn-runtime/components/container/container.component.js.map +0 -1
  418. app-rn-runtime/components/container/container.props.js +0 -12
  419. app-rn-runtime/components/container/container.props.js.map +0 -1
  420. app-rn-runtime/components/container/panel/panel.component.js +0 -109
  421. app-rn-runtime/components/container/panel/panel.component.js.map +0 -1
  422. app-rn-runtime/components/container/panel/panel.props.js +0 -20
  423. app-rn-runtime/components/container/panel/panel.props.js.map +0 -1
  424. app-rn-runtime/components/container/tabs/tabheader/tabheader.component.js +0 -196
  425. app-rn-runtime/components/container/tabs/tabheader/tabheader.component.js.map +0 -1
  426. app-rn-runtime/components/container/tabs/tabheader/tabheader.styles.js +0 -69
  427. app-rn-runtime/components/container/tabs/tabheader/tabheader.styles.js.map +0 -1
  428. app-rn-runtime/components/container/tabs/tabpane/tabpane.component.js +0 -55
  429. app-rn-runtime/components/container/tabs/tabpane/tabpane.component.js.map +0 -1
  430. app-rn-runtime/components/container/tabs/tabpane/tabpane.props.js +0 -15
  431. app-rn-runtime/components/container/tabs/tabpane/tabpane.props.js.map +0 -1
  432. app-rn-runtime/components/container/tabs/tabs.component.js +0 -237
  433. app-rn-runtime/components/container/tabs/tabs.component.js.map +0 -1
  434. app-rn-runtime/components/container/wizard/wizard.component.js +0 -290
  435. app-rn-runtime/components/container/wizard/wizard.component.js.map +0 -1
  436. app-rn-runtime/components/container/wizard/wizard.styles.js +0 -292
  437. app-rn-runtime/components/container/wizard/wizard.styles.js.map +0 -1
  438. app-rn-runtime/components/container/wizard/wizardstep/wizardstep.component.js +0 -52
  439. app-rn-runtime/components/container/wizard/wizardstep/wizardstep.component.js.map +0 -1
  440. app-rn-runtime/components/container/wizard/wizardstep/wizardstep.props.js +0 -16
  441. app-rn-runtime/components/container/wizard/wizardstep/wizardstep.props.js.map +0 -1
  442. app-rn-runtime/components/data/card/card.component.js +0 -68
  443. app-rn-runtime/components/data/card/card.component.js.map +0 -1
  444. app-rn-runtime/components/data/card/card.props.js +0 -23
  445. app-rn-runtime/components/data/card/card.props.js.map +0 -1
  446. app-rn-runtime/components/data/form/form-action/form-action.component.js +0 -34
  447. app-rn-runtime/components/data/form/form-action/form-action.component.js.map +0 -1
  448. app-rn-runtime/components/data/form/form-action/form-action.props.js +0 -17
  449. app-rn-runtime/components/data/form/form-action/form-action.props.js.map +0 -1
  450. app-rn-runtime/components/data/form/form-action/form-action.styles.js +0 -33
  451. app-rn-runtime/components/data/form/form-action/form-action.styles.js.map +0 -1
  452. app-rn-runtime/components/data/form/form-field/form-field.component.js +0 -227
  453. app-rn-runtime/components/data/form/form-field/form-field.component.js.map +0 -1
  454. app-rn-runtime/components/data/list/list.component.js +0 -312
  455. app-rn-runtime/components/data/list/list.component.js.map +0 -1
  456. app-rn-runtime/components/data/list/list.props.js +0 -41
  457. app-rn-runtime/components/data/list/list.props.js.map +0 -1
  458. app-rn-runtime/components/data/list/list.styles.js +0 -129
  459. app-rn-runtime/components/data/list/list.styles.js.map +0 -1
  460. app-rn-runtime/components/device/barcodescanner/barcodescanner.component.js +0 -47
  461. app-rn-runtime/components/device/barcodescanner/barcodescanner.component.js.map +0 -1
  462. app-rn-runtime/components/device/barcodescanner/barcodescanner.props.js +0 -15
  463. app-rn-runtime/components/device/barcodescanner/barcodescanner.props.js.map +0 -1
  464. app-rn-runtime/components/device/barcodescanner/barcodescanner.styles.js +0 -31
  465. app-rn-runtime/components/device/barcodescanner/barcodescanner.styles.js.map +0 -1
  466. app-rn-runtime/components/device/camera/camera.component.js +0 -65
  467. app-rn-runtime/components/device/camera/camera.component.js.map +0 -1
  468. app-rn-runtime/components/device/camera/camera.props.js +0 -20
  469. app-rn-runtime/components/device/camera/camera.props.js.map +0 -1
  470. app-rn-runtime/components/device/camera/camera.styles.js +0 -31
  471. app-rn-runtime/components/device/camera/camera.styles.js.map +0 -1
  472. app-rn-runtime/components/dialogs/alertdialog/alertdialog.component.js +0 -67
  473. app-rn-runtime/components/dialogs/alertdialog/alertdialog.component.js.map +0 -1
  474. app-rn-runtime/components/dialogs/alertdialog/alertdialog.props.js +0 -19
  475. app-rn-runtime/components/dialogs/alertdialog/alertdialog.props.js.map +0 -1
  476. app-rn-runtime/components/dialogs/alertdialog/alertdialog.styles.js +0 -33
  477. app-rn-runtime/components/dialogs/alertdialog/alertdialog.styles.js.map +0 -1
  478. app-rn-runtime/components/dialogs/confirmdialog/confirmdialog.component.js +0 -73
  479. app-rn-runtime/components/dialogs/confirmdialog/confirmdialog.component.js.map +0 -1
  480. app-rn-runtime/components/dialogs/confirmdialog/confirmdialog.props.js +0 -19
  481. app-rn-runtime/components/dialogs/confirmdialog/confirmdialog.props.js.map +0 -1
  482. app-rn-runtime/components/dialogs/dialog/dialog.component.js +0 -94
  483. app-rn-runtime/components/dialogs/dialog/dialog.component.js.map +0 -1
  484. app-rn-runtime/components/dialogs/dialog/dialog.props.js +0 -20
  485. app-rn-runtime/components/dialogs/dialog/dialog.props.js.map +0 -1
  486. app-rn-runtime/components/dialogs/dialog/dialog.styles.js +0 -70
  487. app-rn-runtime/components/dialogs/dialog/dialog.styles.js.map +0 -1
  488. app-rn-runtime/components/input/basedataset/basedataset.props.js +0 -27
  489. app-rn-runtime/components/input/basedataset/basedataset.props.js.map +0 -1
  490. app-rn-runtime/components/input/baseinput/baseinput.component.js +0 -151
  491. app-rn-runtime/components/input/baseinput/baseinput.component.js.map +0 -1
  492. app-rn-runtime/components/input/baseinput/baseinput.props.js +0 -23
  493. app-rn-runtime/components/input/baseinput/baseinput.props.js.map +0 -1
  494. app-rn-runtime/components/input/basenumber/basenumber.component.js +0 -311
  495. app-rn-runtime/components/input/basenumber/basenumber.component.js.map +0 -1
  496. app-rn-runtime/components/input/basenumber/basenumber.props.js +0 -21
  497. app-rn-runtime/components/input/basenumber/basenumber.props.js.map +0 -1
  498. app-rn-runtime/components/input/checkbox/checkbox.component.js +0 -95
  499. app-rn-runtime/components/input/checkbox/checkbox.component.js.map +0 -1
  500. app-rn-runtime/components/input/checkbox/checkbox.styles.js +0 -36
  501. app-rn-runtime/components/input/checkbox/checkbox.styles.js.map +0 -1
  502. app-rn-runtime/components/input/checkboxset/checkboxset.component.js +0 -98
  503. app-rn-runtime/components/input/checkboxset/checkboxset.component.js.map +0 -1
  504. app-rn-runtime/components/input/checkboxset/checkboxset.props.js +0 -13
  505. app-rn-runtime/components/input/checkboxset/checkboxset.props.js.map +0 -1
  506. app-rn-runtime/components/input/checkboxset/checkboxset.styles.js +0 -46
  507. app-rn-runtime/components/input/checkboxset/checkboxset.styles.js.map +0 -1
  508. app-rn-runtime/components/input/chips/chips.component.js +0 -277
  509. app-rn-runtime/components/input/chips/chips.component.js.map +0 -1
  510. app-rn-runtime/components/input/composite/composite.component.js +0 -24
  511. app-rn-runtime/components/input/composite/composite.component.js.map +0 -1
  512. app-rn-runtime/components/input/composite/composite.props.js +0 -12
  513. app-rn-runtime/components/input/composite/composite.props.js.map +0 -1
  514. app-rn-runtime/components/input/currency/currency.component.js +0 -73
  515. app-rn-runtime/components/input/currency/currency.component.js.map +0 -1
  516. app-rn-runtime/components/input/currency/currency.props.js +0 -12
  517. app-rn-runtime/components/input/currency/currency.props.js.map +0 -1
  518. app-rn-runtime/components/input/currency/currency.styles.js +0 -72
  519. app-rn-runtime/components/input/currency/currency.styles.js.map +0 -1
  520. app-rn-runtime/components/input/epoch/base-datetime.component.js +0 -287
  521. app-rn-runtime/components/input/epoch/base-datetime.component.js.map +0 -1
  522. app-rn-runtime/components/input/epoch/date/date.component.js +0 -12
  523. app-rn-runtime/components/input/epoch/date/date.component.js.map +0 -1
  524. app-rn-runtime/components/input/epoch/date/date.styles.js +0 -21
  525. app-rn-runtime/components/input/epoch/date/date.styles.js.map +0 -1
  526. app-rn-runtime/components/input/epoch/datetime/datetime.component.js +0 -12
  527. app-rn-runtime/components/input/epoch/datetime/datetime.component.js.map +0 -1
  528. app-rn-runtime/components/input/epoch/datetime/datetime.props.js +0 -22
  529. app-rn-runtime/components/input/epoch/datetime/datetime.props.js.map +0 -1
  530. app-rn-runtime/components/input/epoch/datetime/datetime.styles.js +0 -71
  531. app-rn-runtime/components/input/epoch/datetime/datetime.styles.js.map +0 -1
  532. app-rn-runtime/components/input/epoch/time/time.component.js +0 -18
  533. app-rn-runtime/components/input/epoch/time/time.component.js.map +0 -1
  534. app-rn-runtime/components/input/epoch/time/time.styles.js +0 -21
  535. app-rn-runtime/components/input/epoch/time/time.styles.js.map +0 -1
  536. app-rn-runtime/components/input/fileupload/fileupload.component.js +0 -56
  537. app-rn-runtime/components/input/fileupload/fileupload.component.js.map +0 -1
  538. app-rn-runtime/components/input/fileupload/fileupload.props.js +0 -14
  539. app-rn-runtime/components/input/fileupload/fileupload.props.js.map +0 -1
  540. app-rn-runtime/components/input/fileupload/fileupload.styles.js +0 -27
  541. app-rn-runtime/components/input/fileupload/fileupload.styles.js.map +0 -1
  542. app-rn-runtime/components/input/number/number.component.js +0 -55
  543. app-rn-runtime/components/input/number/number.component.js.map +0 -1
  544. app-rn-runtime/components/input/number/number.props.js +0 -12
  545. app-rn-runtime/components/input/number/number.props.js.map +0 -1
  546. app-rn-runtime/components/input/number/number.styles.js +0 -42
  547. app-rn-runtime/components/input/number/number.styles.js.map +0 -1
  548. app-rn-runtime/components/input/radioset/radioset.component.js +0 -63
  549. app-rn-runtime/components/input/radioset/radioset.component.js.map +0 -1
  550. app-rn-runtime/components/input/radioset/radioset.props.js +0 -17
  551. app-rn-runtime/components/input/radioset/radioset.props.js.map +0 -1
  552. app-rn-runtime/components/input/radioset/radioset.styles.js +0 -49
  553. app-rn-runtime/components/input/radioset/radioset.styles.js.map +0 -1
  554. app-rn-runtime/components/input/select/select.component.js +0 -185
  555. app-rn-runtime/components/input/select/select.component.js.map +0 -1
  556. app-rn-runtime/components/input/select/select.styles.js +0 -101
  557. app-rn-runtime/components/input/select/select.styles.js.map +0 -1
  558. app-rn-runtime/components/input/slider/slider.styles.js +0 -60
  559. app-rn-runtime/components/input/slider/slider.styles.js.map +0 -1
  560. app-rn-runtime/components/input/switch/switch.component.js +0 -74
  561. app-rn-runtime/components/input/switch/switch.component.js.map +0 -1
  562. app-rn-runtime/components/input/switch/switch.styles.js +0 -117
  563. app-rn-runtime/components/input/switch/switch.styles.js.map +0 -1
  564. app-rn-runtime/components/input/text/text.component.js +0 -47
  565. app-rn-runtime/components/input/text/text.component.js.map +0 -1
  566. app-rn-runtime/components/input/text/text.props.js +0 -11
  567. app-rn-runtime/components/input/text/text.props.js.map +0 -1
  568. app-rn-runtime/components/input/text/text.styles.js +0 -48
  569. app-rn-runtime/components/input/text/text.styles.js.map +0 -1
  570. app-rn-runtime/components/input/textarea/textarea.component.js +0 -48
  571. app-rn-runtime/components/input/textarea/textarea.component.js.map +0 -1
  572. app-rn-runtime/components/input/textarea/textarea.props.js +0 -11
  573. app-rn-runtime/components/input/textarea/textarea.props.js.map +0 -1
  574. app-rn-runtime/components/input/textarea/textarea.styles.js +0 -46
  575. app-rn-runtime/components/input/textarea/textarea.styles.js.map +0 -1
  576. app-rn-runtime/components/input/toggle/toggle.component.js +0 -95
  577. app-rn-runtime/components/input/toggle/toggle.component.js.map +0 -1
  578. app-rn-runtime/components/input/toggle/toggle.props.js +0 -16
  579. app-rn-runtime/components/input/toggle/toggle.props.js.map +0 -1
  580. app-rn-runtime/components/input/toggle/toggle.styles.js +0 -55
  581. app-rn-runtime/components/input/toggle/toggle.styles.js.map +0 -1
  582. app-rn-runtime/components/navigation/appnavbar/appnavbar.component.js +0 -65
  583. app-rn-runtime/components/navigation/appnavbar/appnavbar.component.js.map +0 -1
  584. app-rn-runtime/components/navigation/appnavbar/appnavbar.props.js +0 -20
  585. app-rn-runtime/components/navigation/appnavbar/appnavbar.props.js.map +0 -1
  586. app-rn-runtime/components/navigation/appnavbar/appnavbar.styles.js +0 -160
  587. app-rn-runtime/components/navigation/appnavbar/appnavbar.styles.js.map +0 -1
  588. app-rn-runtime/components/navigation/basenav/basenav.component.js +0 -77
  589. app-rn-runtime/components/navigation/basenav/basenav.component.js.map +0 -1
  590. app-rn-runtime/components/navigation/menu/menu.styles.js +0 -71
  591. app-rn-runtime/components/navigation/menu/menu.styles.js.map +0 -1
  592. app-rn-runtime/components/navigation/navitem/navitem.component.js +0 -65
  593. app-rn-runtime/components/navigation/navitem/navitem.component.js.map +0 -1
  594. app-rn-runtime/components/navigation/navitem/navitem.props.js +0 -16
  595. app-rn-runtime/components/navigation/navitem/navitem.props.js.map +0 -1
  596. app-rn-runtime/components/navigation/popover/popover.component.js +0 -129
  597. app-rn-runtime/components/navigation/popover/popover.component.js.map +0 -1
  598. app-rn-runtime/components/navigation/popover/popover.props.js +0 -23
  599. app-rn-runtime/components/navigation/popover/popover.props.js.map +0 -1
  600. app-rn-runtime/components/navigation/popover/popover.styles.js +0 -75
  601. app-rn-runtime/components/navigation/popover/popover.styles.js.map +0 -1
  602. app-rn-runtime/components/page/page-content/page-content.component.js +0 -30
  603. app-rn-runtime/components/page/page-content/page-content.component.js.map +0 -1
  604. app-rn-runtime/components/page/tabbar/tabbar.component.js +0 -103
  605. app-rn-runtime/components/page/tabbar/tabbar.component.js.map +0 -1
  606. app-rn-runtime/components/page/tabbar/tabbar.styles.js +0 -100
  607. app-rn-runtime/components/page/tabbar/tabbar.styles.js.map +0 -1
  608. app-rn-runtime/core/base.component.js +0 -425
  609. app-rn-runtime/core/base.component.js.map +0 -1
  610. app-rn-runtime/core/components/textinput.component.js +0 -37
  611. app-rn-runtime/core/components/textinput.component.js.map +0 -1
  612. app-rn-runtime/core/event-notifier.js +0 -25
  613. app-rn-runtime/core/event-notifier.js.map +0 -1
  614. app-rn-runtime/core/tappable.component.js +0 -82
  615. app-rn-runtime/core/tappable.component.js.map +0 -1
  616. app-rn-runtime/core/utils.js +0 -332
  617. app-rn-runtime/core/utils.js.map +0 -1
  618. app-rn-runtime/gestures/swipe.animation.js +0 -184
  619. app-rn-runtime/gestures/swipe.animation.js.map +0 -1
  620. app-rn-runtime/package.json +0 -244
  621. app-rn-runtime/runtime/App.js +0 -495
  622. app-rn-runtime/runtime/App.js.map +0 -1
  623. app-rn-runtime/runtime/base-page.component.js +0 -163
  624. app-rn-runtime/runtime/base-page.component.js.map +0 -1
  625. app-rn-runtime/runtime/services/app-security.service.js +0 -200
  626. app-rn-runtime/runtime/services/app-security.service.js.map +0 -1
  627. app-rn-runtime/runtime/services/webprocess.service.js +0 -110
  628. app-rn-runtime/runtime/services/webprocess.service.js.map +0 -1
  629. app-rn-runtime/styles/background.component.js +0 -298
  630. app-rn-runtime/styles/background.component.js.map +0 -1
  631. app-rn-runtime/styles/theme.js +0 -353
  632. app-rn-runtime/styles/theme.js.map +0 -1
  633. app-rn-runtime/styles/theme.variables.js +0 -406
  634. app-rn-runtime/styles/theme.variables.js.map +0 -1
  635. app-rn-runtime/variables/model-variable.js +0 -46
  636. app-rn-runtime/variables/model-variable.js.map +0 -1
  637. app-rn-runtime/variables/service-variable.js +0 -133
  638. app-rn-runtime/variables/service-variable.js.map +0 -1
  639. {app-rn-runtime → package}/actions/base-action.js +0 -0
  640. {app-rn-runtime → package}/actions/base-action.js.map +0 -0
  641. {app-rn-runtime → package}/actions/index.js +0 -0
  642. {app-rn-runtime → package}/actions/index.js.map +0 -0
  643. {app-rn-runtime → package}/actions/login-action.js +0 -0
  644. {app-rn-runtime → package}/actions/login-action.js.map +0 -0
  645. {app-rn-runtime → package}/actions/logout-action.js +0 -0
  646. {app-rn-runtime → package}/actions/logout-action.js.map +0 -0
  647. {app-rn-runtime → package}/actions/navigation-action.js +0 -0
  648. {app-rn-runtime → package}/actions/navigation-action.js.map +0 -0
  649. {app-rn-runtime → package}/actions/notification-action.js +0 -0
  650. {app-rn-runtime → package}/actions/notification-action.js.map +0 -0
  651. {app-rn-runtime → package}/actions/timer-action.js +0 -0
  652. {app-rn-runtime → package}/actions/timer-action.js.map +0 -0
  653. {app-rn-runtime → package}/components/advanced/carousel/carousel-content/carousel-content.component.js +0 -0
  654. {app-rn-runtime → package}/components/advanced/carousel/carousel-content/carousel-content.component.js.map +0 -0
  655. {app-rn-runtime → package}/components/advanced/carousel/carousel-content/carousel-content.props.js +0 -0
  656. {app-rn-runtime → package}/components/advanced/carousel/carousel-content/carousel-content.props.js.map +0 -0
  657. {app-rn-runtime → package}/components/advanced/carousel/carousel-content/carousel-content.styles.js +0 -0
  658. {app-rn-runtime → package}/components/advanced/carousel/carousel-content/carousel-content.styles.js.map +0 -0
  659. {app-rn-runtime → package}/components/advanced/carousel/carousel-template/carousel-template.component.js +0 -0
  660. {app-rn-runtime → package}/components/advanced/carousel/carousel-template/carousel-template.component.js.map +0 -0
  661. {app-rn-runtime → package}/components/advanced/carousel/carousel-template/carousel-template.props.js +0 -0
  662. {app-rn-runtime → package}/components/advanced/carousel/carousel-template/carousel-template.props.js.map +0 -0
  663. {app-rn-runtime → package}/components/advanced/carousel/carousel-template/carousel-template.styles.js +0 -0
  664. {app-rn-runtime → package}/components/advanced/carousel/carousel-template/carousel-template.styles.js.map +0 -0
  665. {app-rn-runtime → package}/components/advanced/carousel/carousel.props.js +0 -0
  666. {app-rn-runtime → package}/components/advanced/carousel/carousel.props.js.map +0 -0
  667. {app-rn-runtime → package}/components/advanced/login/login.component.js +0 -0
  668. {app-rn-runtime → package}/components/advanced/login/login.component.js.map +0 -0
  669. {app-rn-runtime → package}/components/advanced/login/login.props.js +0 -0
  670. {app-rn-runtime → package}/components/advanced/login/login.props.js.map +0 -0
  671. {app-rn-runtime → package}/components/advanced/login/login.styles.js +0 -0
  672. {app-rn-runtime → package}/components/advanced/login/login.styles.js.map +0 -0
  673. {app-rn-runtime → package}/components/advanced/network-info-toaster/network-info-toaster.component.js +0 -0
  674. {app-rn-runtime → package}/components/advanced/network-info-toaster/network-info-toaster.component.js.map +0 -0
  675. {app-rn-runtime → package}/components/advanced/network-info-toaster/network-info-toaster.props.js +0 -0
  676. {app-rn-runtime → package}/components/advanced/network-info-toaster/network-info-toaster.props.js.map +0 -0
  677. {app-rn-runtime → package}/components/advanced/network-info-toaster/network-info-toaster.styles.js +0 -0
  678. {app-rn-runtime → package}/components/advanced/network-info-toaster/network-info-toaster.styles.js.map +0 -0
  679. {app-rn-runtime → package}/components/advanced/webview/webview.styles.js +0 -0
  680. {app-rn-runtime → package}/components/advanced/webview/webview.styles.js.map +0 -0
  681. {app-rn-runtime → package}/components/basic/audio/audio.component.js +0 -0
  682. {app-rn-runtime → package}/components/basic/audio/audio.component.js.map +0 -0
  683. {app-rn-runtime → package}/components/basic/audio/audio.props.js +0 -0
  684. {app-rn-runtime → package}/components/basic/audio/audio.props.js.map +0 -0
  685. {app-rn-runtime → package}/components/basic/audio/audio.styles.js +0 -0
  686. {app-rn-runtime → package}/components/basic/audio/audio.styles.js.map +0 -0
  687. {app-rn-runtime → package}/components/basic/buttongroup/buttongroup.component.js +0 -0
  688. {app-rn-runtime → package}/components/basic/buttongroup/buttongroup.component.js.map +0 -0
  689. {app-rn-runtime → package}/components/basic/buttongroup/buttongroup.props.js +0 -0
  690. {app-rn-runtime → package}/components/basic/buttongroup/buttongroup.props.js.map +0 -0
  691. {app-rn-runtime → package}/components/basic/custom/custom.component.js +0 -0
  692. {app-rn-runtime → package}/components/basic/custom/custom.component.js.map +0 -0
  693. {app-rn-runtime → package}/components/basic/custom/custom.props.js +0 -0
  694. {app-rn-runtime → package}/components/basic/custom/custom.props.js.map +0 -0
  695. {app-rn-runtime → package}/components/basic/custom/custom.styles.js +0 -0
  696. {app-rn-runtime → package}/components/basic/custom/custom.styles.js.map +0 -0
  697. {app-rn-runtime → package}/components/basic/icon/streamline-light-icon/streamline-light-icon.component.js +0 -0
  698. {app-rn-runtime → package}/components/basic/icon/streamline-light-icon/streamline-light-icon.component.js.map +0 -0
  699. {app-rn-runtime → package}/components/basic/icon/streamline-light-icon/streamline-light-icon.ttf +0 -0
  700. {app-rn-runtime → package}/components/basic/icon/streamline-regular-icon/streamline-regular-icon.component.js +0 -0
  701. {app-rn-runtime → package}/components/basic/icon/streamline-regular-icon/streamline-regular-icon.component.js.map +0 -0
  702. {app-rn-runtime → package}/components/basic/icon/streamline-regular-icon/streamline-regular-icon.ttf +0 -0
  703. {app-rn-runtime → package}/components/basic/icon/wavicon/wavicon.component.js +0 -0
  704. {app-rn-runtime → package}/components/basic/icon/wavicon/wavicon.component.js.map +0 -0
  705. {app-rn-runtime → package}/components/basic/icon/wavicon/wavicon.ttf +0 -0
  706. {app-rn-runtime → package}/components/basic/lottie/lottie.component.js +0 -0
  707. {app-rn-runtime → package}/components/basic/lottie/lottie.component.js.map +0 -0
  708. {app-rn-runtime → package}/components/basic/lottie/lottie.props.js +0 -0
  709. {app-rn-runtime → package}/components/basic/lottie/lottie.props.js.map +0 -0
  710. {app-rn-runtime → package}/components/basic/lottie/lottie.styles.js +0 -0
  711. {app-rn-runtime → package}/components/basic/lottie/lottie.styles.js.map +0 -0
  712. {app-rn-runtime → package}/components/basic/modal/modal.component.js +0 -0
  713. {app-rn-runtime → package}/components/basic/modal/modal.component.js.map +0 -0
  714. {app-rn-runtime → package}/components/basic/modal/modal.props.js +0 -0
  715. {app-rn-runtime → package}/components/basic/modal/modal.props.js.map +0 -0
  716. {app-rn-runtime → package}/components/basic/modal/modal.styles.js +0 -0
  717. {app-rn-runtime → package}/components/basic/modal/modal.styles.js.map +0 -0
  718. {app-rn-runtime → package}/components/basic/progress-bar/progress-bar.styles.js +0 -0
  719. {app-rn-runtime → package}/components/basic/progress-bar/progress-bar.styles.js.map +0 -0
  720. {app-rn-runtime → package}/components/basic/progress-circle/progress-circle.styles.js +0 -0
  721. {app-rn-runtime → package}/components/basic/progress-circle/progress-circle.styles.js.map +0 -0
  722. {app-rn-runtime → package}/components/basic/search/local-data-provider.js +0 -0
  723. {app-rn-runtime → package}/components/basic/search/local-data-provider.js.map +0 -0
  724. {app-rn-runtime → package}/components/basic/skeleton/skeleton.props.js +0 -0
  725. {app-rn-runtime → package}/components/basic/skeleton/skeleton.props.js.map +0 -0
  726. {app-rn-runtime → package}/components/basic/skeleton/skeleton.styles.js +0 -0
  727. {app-rn-runtime → package}/components/basic/skeleton/skeleton.styles.js.map +0 -0
  728. {app-rn-runtime → package}/components/basic/spinner/spinner.component.js +0 -0
  729. {app-rn-runtime → package}/components/basic/spinner/spinner.component.js.map +0 -0
  730. {app-rn-runtime → package}/components/basic/spinner/spinner.props.js +0 -0
  731. {app-rn-runtime → package}/components/basic/spinner/spinner.props.js.map +0 -0
  732. {app-rn-runtime → package}/components/basic/spinner/spinner.styles.js +0 -0
  733. {app-rn-runtime → package}/components/basic/spinner/spinner.styles.js.map +0 -0
  734. {app-rn-runtime → package}/components/basic/video/video.styles.js +0 -0
  735. {app-rn-runtime → package}/components/basic/video/video.styles.js.map +0 -0
  736. {app-rn-runtime → package}/components/chart/area-chart/area-chart.props.js +0 -0
  737. {app-rn-runtime → package}/components/chart/area-chart/area-chart.props.js.map +0 -0
  738. {app-rn-runtime → package}/components/chart/area-chart/area-chart.styles.js +0 -0
  739. {app-rn-runtime → package}/components/chart/area-chart/area-chart.styles.js.map +0 -0
  740. {app-rn-runtime → package}/components/chart/bar-chart/bar-chart.styles.js +0 -0
  741. {app-rn-runtime → package}/components/chart/bar-chart/bar-chart.styles.js.map +0 -0
  742. {app-rn-runtime → package}/components/chart/bubble-chart/bubble-chart.props.js +0 -0
  743. {app-rn-runtime → package}/components/chart/bubble-chart/bubble-chart.props.js.map +0 -0
  744. {app-rn-runtime → package}/components/chart/bubble-chart/bubble-chart.styles.js +0 -0
  745. {app-rn-runtime → package}/components/chart/bubble-chart/bubble-chart.styles.js.map +0 -0
  746. {app-rn-runtime → package}/components/chart/column-chart/column-chart.component.js +0 -0
  747. {app-rn-runtime → package}/components/chart/column-chart/column-chart.component.js.map +0 -0
  748. {app-rn-runtime → package}/components/chart/column-chart/column-chart.props.js +0 -0
  749. {app-rn-runtime → package}/components/chart/column-chart/column-chart.props.js.map +0 -0
  750. {app-rn-runtime → package}/components/chart/column-chart/column-chart.styles.js +0 -0
  751. {app-rn-runtime → package}/components/chart/column-chart/column-chart.styles.js.map +0 -0
  752. {app-rn-runtime → package}/components/chart/donut-chart/donut-chart.component.js +0 -0
  753. {app-rn-runtime → package}/components/chart/donut-chart/donut-chart.component.js.map +0 -0
  754. {app-rn-runtime → package}/components/chart/donut-chart/donut-chart.props.js +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.props.js +0 -0
  761. {app-rn-runtime → package}/components/chart/line-chart/line-chart.styles.js +0 -0
  762. {app-rn-runtime → package}/components/chart/line-chart/line-chart.styles.js.map +0 -0
  763. {app-rn-runtime → package}/components/chart/pie-chart/pie-chart.props.js +0 -0
  764. {app-rn-runtime → package}/components/chart/pie-chart/pie-chart.props.js.map +0 -0
  765. {app-rn-runtime → package}/components/chart/pie-chart/pie-chart.styles.js +0 -0
  766. {app-rn-runtime → package}/components/chart/pie-chart/pie-chart.styles.js.map +0 -0
  767. {app-rn-runtime → package}/components/chart/stack-chart/stack-chart.styles.js +0 -0
  768. {app-rn-runtime → package}/components/chart/stack-chart/stack-chart.styles.js.map +0 -0
  769. {app-rn-runtime → package}/components/chart/theme/chart.theme.js +0 -0
  770. {app-rn-runtime → package}/components/chart/theme/chart.theme.js.map +0 -0
  771. {app-rn-runtime → package}/components/container/accordion/accordion.component.js +0 -0
  772. {app-rn-runtime → package}/components/container/accordion/accordion.component.js.map +0 -0
  773. {app-rn-runtime → package}/components/container/accordion/accordion.props.js +0 -0
  774. {app-rn-runtime → package}/components/container/accordion/accordion.props.js.map +0 -0
  775. {app-rn-runtime → package}/components/container/accordion/accordion.styles.js +0 -0
  776. {app-rn-runtime → package}/components/container/accordion/accordion.styles.js.map +0 -0
  777. {app-rn-runtime → package}/components/container/accordion/accordionpane/accordionpane.component.js +0 -0
  778. {app-rn-runtime → package}/components/container/accordion/accordionpane/accordionpane.component.js.map +0 -0
  779. {app-rn-runtime → package}/components/container/accordion/accordionpane/accordionpane.props.js +0 -0
  780. {app-rn-runtime → package}/components/container/accordion/accordionpane/accordionpane.props.js.map +0 -0
  781. {app-rn-runtime → package}/components/container/accordion/accordionpane/accordionpane.styles.js +0 -0
  782. {app-rn-runtime → package}/components/container/accordion/accordionpane/accordionpane.styles.js.map +0 -0
  783. {app-rn-runtime → package}/components/container/container.styles.js +0 -0
  784. {app-rn-runtime → package}/components/container/container.styles.js.map +0 -0
  785. {app-rn-runtime → package}/components/container/layoutgrid/gridcolumn/gridcolumn.component.js +0 -0
  786. {app-rn-runtime → package}/components/container/layoutgrid/gridcolumn/gridcolumn.component.js.map +0 -0
  787. {app-rn-runtime → package}/components/container/layoutgrid/gridcolumn/gridcolumn.props.js +0 -0
  788. {app-rn-runtime → package}/components/container/layoutgrid/gridcolumn/gridcolumn.props.js.map +0 -0
  789. {app-rn-runtime → package}/components/container/layoutgrid/gridcolumn/gridcolumn.styles.js +0 -0
  790. {app-rn-runtime → package}/components/container/layoutgrid/gridcolumn/gridcolumn.styles.js.map +0 -0
  791. {app-rn-runtime → package}/components/container/layoutgrid/gridrow/gridrow.component.js +0 -0
  792. {app-rn-runtime → package}/components/container/layoutgrid/gridrow/gridrow.component.js.map +0 -0
  793. {app-rn-runtime → package}/components/container/layoutgrid/gridrow/gridrow.props.js +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 +0 -0
  800. {app-rn-runtime → package}/components/container/layoutgrid/layoutgrid.props.js.map +0 -0
  801. {app-rn-runtime → package}/components/container/layoutgrid/layoutgrid.styles.js +0 -0
  802. {app-rn-runtime → package}/components/container/layoutgrid/layoutgrid.styles.js.map +0 -0
  803. {app-rn-runtime → package}/components/container/linearlayout/linearlayout.component.js +0 -0
  804. {app-rn-runtime → package}/components/container/linearlayout/linearlayout.component.js.map +0 -0
  805. {app-rn-runtime → package}/components/container/linearlayout/linearlayout.props.js +0 -0
  806. {app-rn-runtime → package}/components/container/linearlayout/linearlayout.props.js.map +0 -0
  807. {app-rn-runtime → package}/components/container/linearlayout/linearlayout.styles.js +0 -0
  808. {app-rn-runtime → package}/components/container/linearlayout/linearlayout.styles.js.map +0 -0
  809. {app-rn-runtime → package}/components/container/linearlayout/linearlayoutitem/linearlayoutitem.component.js +0 -0
  810. {app-rn-runtime → package}/components/container/linearlayout/linearlayoutitem/linearlayoutitem.component.js.map +0 -0
  811. {app-rn-runtime → package}/components/container/linearlayout/linearlayoutitem/linearlayoutitem.props.js +0 -0
  812. {app-rn-runtime → package}/components/container/linearlayout/linearlayoutitem/linearlayoutitem.props.js.map +0 -0
  813. {app-rn-runtime → package}/components/container/linearlayout/linearlayoutitem/linearlayoutitem.styles.js +0 -0
  814. {app-rn-runtime → package}/components/container/linearlayout/linearlayoutitem/linearlayoutitem.styles.js.map +0 -0
  815. {app-rn-runtime → package}/components/container/panel/collapsible-pane.component.js +0 -0
  816. {app-rn-runtime → package}/components/container/panel/collapsible-pane.component.js.map +0 -0
  817. {app-rn-runtime → package}/components/container/panel/panel-content/panel-content.component.js +0 -0
  818. {app-rn-runtime → package}/components/container/panel/panel-content/panel-content.component.js.map +0 -0
  819. {app-rn-runtime → package}/components/container/panel/panel-content/panel-content.props.js +0 -0
  820. {app-rn-runtime → package}/components/container/panel/panel-content/panel-content.props.js.map +0 -0
  821. {app-rn-runtime → package}/components/container/panel/panel-content/panel-content.styles.js +0 -0
  822. {app-rn-runtime → package}/components/container/panel/panel-content/panel-content.styles.js.map +0 -0
  823. {app-rn-runtime → package}/components/container/panel/panel-footer/panel-footer.component.js +0 -0
  824. {app-rn-runtime → package}/components/container/panel/panel-footer/panel-footer.component.js.map +0 -0
  825. {app-rn-runtime → package}/components/container/panel/panel-footer/panel-footer.props.js +0 -0
  826. {app-rn-runtime → package}/components/container/panel/panel-footer/panel-footer.props.js.map +0 -0
  827. {app-rn-runtime → package}/components/container/panel/panel-footer/panel-footer.styles.js +0 -0
  828. {app-rn-runtime → package}/components/container/panel/panel-footer/panel-footer.styles.js.map +0 -0
  829. {app-rn-runtime → package}/components/container/panel/panel.styles.js +0 -0
  830. {app-rn-runtime → package}/components/container/panel/panel.styles.js.map +0 -0
  831. {app-rn-runtime → package}/components/container/partial-host.component.js +0 -0
  832. {app-rn-runtime → package}/components/container/partial-host.component.js.map +0 -0
  833. {app-rn-runtime → package}/components/container/tabs/tabheader/tabheader.props.js +0 -0
  834. {app-rn-runtime → package}/components/container/tabs/tabheader/tabheader.props.js.map +0 -0
  835. {app-rn-runtime → package}/components/container/tabs/tabpane/tabpane.styles.js +0 -0
  836. {app-rn-runtime → package}/components/container/tabs/tabpane/tabpane.styles.js.map +0 -0
  837. {app-rn-runtime → package}/components/container/tabs/tabs.props.js +0 -0
  838. {app-rn-runtime → package}/components/container/tabs/tabs.props.js.map +0 -0
  839. {app-rn-runtime → package}/components/container/tabs/tabs.styles.js +0 -0
  840. {app-rn-runtime → package}/components/container/tabs/tabs.styles.js.map +0 -0
  841. {app-rn-runtime → package}/components/container/tile/tile.component.js +0 -0
  842. {app-rn-runtime → package}/components/container/tile/tile.component.js.map +0 -0
  843. {app-rn-runtime → package}/components/container/tile/tile.props.js +0 -0
  844. {app-rn-runtime → package}/components/container/tile/tile.props.js.map +0 -0
  845. {app-rn-runtime → package}/components/container/tile/tile.styles.js +0 -0
  846. {app-rn-runtime → package}/components/container/tile/tile.styles.js.map +0 -0
  847. {app-rn-runtime → package}/components/container/wizard/wizard.props.js +0 -0
  848. {app-rn-runtime → package}/components/container/wizard/wizard.props.js.map +0 -0
  849. {app-rn-runtime → package}/components/container/wizard/wizardstep/wizardstep.styles.js +0 -0
  850. {app-rn-runtime → package}/components/container/wizard/wizardstep/wizardstep.styles.js.map +0 -0
  851. {app-rn-runtime → package}/components/data/card/card-content/card-content.component.js +0 -0
  852. {app-rn-runtime → package}/components/data/card/card-content/card-content.component.js.map +0 -0
  853. {app-rn-runtime → package}/components/data/card/card-content/card-content.props.js +0 -0
  854. {app-rn-runtime → package}/components/data/card/card-content/card-content.props.js.map +0 -0
  855. {app-rn-runtime → package}/components/data/card/card-content/card-content.styles.js +0 -0
  856. {app-rn-runtime → package}/components/data/card/card-content/card-content.styles.js.map +0 -0
  857. {app-rn-runtime → package}/components/data/card/card-footer/card-footer.component.js +0 -0
  858. {app-rn-runtime → package}/components/data/card/card-footer/card-footer.component.js.map +0 -0
  859. {app-rn-runtime → package}/components/data/card/card-footer/card-footer.props.js +0 -0
  860. {app-rn-runtime → package}/components/data/card/card-footer/card-footer.props.js.map +0 -0
  861. {app-rn-runtime → package}/components/data/card/card-footer/card-footer.styles.js +0 -0
  862. {app-rn-runtime → package}/components/data/card/card-footer/card-footer.styles.js.map +0 -0
  863. {app-rn-runtime → package}/components/data/card/card.styles.js +0 -0
  864. {app-rn-runtime → package}/components/data/card/card.styles.js.map +0 -0
  865. {app-rn-runtime → package}/components/data/form/form-body/form-body.component.js +0 -0
  866. {app-rn-runtime → package}/components/data/form/form-body/form-body.component.js.map +0 -0
  867. {app-rn-runtime → package}/components/data/form/form-body/form-body.props.js +0 -0
  868. {app-rn-runtime → package}/components/data/form/form-body/form-body.props.js.map +0 -0
  869. {app-rn-runtime → package}/components/data/form/form-body/form-body.styles.js +0 -0
  870. {app-rn-runtime → package}/components/data/form/form-body/form-body.styles.js.map +0 -0
  871. {app-rn-runtime → package}/components/data/form/form-field/form-field.props.js +0 -0
  872. {app-rn-runtime → package}/components/data/form/form-field/form-field.props.js.map +0 -0
  873. {app-rn-runtime → package}/components/data/form/form-field/form-field.styles.js +0 -0
  874. {app-rn-runtime → package}/components/data/form/form-field/form-field.styles.js.map +0 -0
  875. {app-rn-runtime → package}/components/data/form/form-footer/form-footer.component.js +0 -0
  876. {app-rn-runtime → package}/components/data/form/form-footer/form-footer.component.js.map +0 -0
  877. {app-rn-runtime → package}/components/data/form/form-footer/form-footer.props.js +0 -0
  878. {app-rn-runtime → package}/components/data/form/form-footer/form-footer.props.js.map +0 -0
  879. {app-rn-runtime → package}/components/data/form/form-footer/form-footer.styles.js +0 -0
  880. {app-rn-runtime → package}/components/data/form/form-footer/form-footer.styles.js.map +0 -0
  881. {app-rn-runtime → package}/components/data/form/form.component.js +0 -0
  882. {app-rn-runtime → package}/components/data/form/form.component.js.map +0 -0
  883. {app-rn-runtime → package}/components/data/form/form.props.js +0 -0
  884. {app-rn-runtime → package}/components/data/form/form.props.js.map +0 -0
  885. {app-rn-runtime → package}/components/data/form/form.styles.js +0 -0
  886. {app-rn-runtime → package}/components/data/form/form.styles.js.map +0 -0
  887. {app-rn-runtime → package}/components/data/list/list-template/list-template.component.js +0 -0
  888. {app-rn-runtime → package}/components/data/list/list-template/list-template.component.js.map +0 -0
  889. {app-rn-runtime → package}/components/data/list/list-template/list-template.props.js +0 -0
  890. {app-rn-runtime → package}/components/data/list/list-template/list-template.props.js.map +0 -0
  891. {app-rn-runtime → package}/components/data/list/list-template/list-template.styles.js +0 -0
  892. {app-rn-runtime → package}/components/data/list/list-template/list-template.styles.js.map +0 -0
  893. {app-rn-runtime → package}/components/data/liveform/liveform.component.js +0 -0
  894. {app-rn-runtime → package}/components/data/liveform/liveform.component.js.map +0 -0
  895. {app-rn-runtime → package}/components/dialogs/confirmdialog/confirmdialog.styles.js +0 -0
  896. {app-rn-runtime → package}/components/dialogs/confirmdialog/confirmdialog.styles.js.map +0 -0
  897. {app-rn-runtime → package}/components/dialogs/dialogactions/dialogactions.component.js +0 -0
  898. {app-rn-runtime → package}/components/dialogs/dialogactions/dialogactions.component.js.map +0 -0
  899. {app-rn-runtime → package}/components/dialogs/dialogactions/dialogactions.props.js +0 -0
  900. {app-rn-runtime → package}/components/dialogs/dialogactions/dialogactions.props.js.map +0 -0
  901. {app-rn-runtime → package}/components/dialogs/dialogactions/dialogactions.styles.js +0 -0
  902. {app-rn-runtime → package}/components/dialogs/dialogactions/dialogactions.styles.js.map +0 -0
  903. {app-rn-runtime → package}/components/dialogs/dialogcontent/dialogcontent.component.js +0 -0
  904. {app-rn-runtime → package}/components/dialogs/dialogcontent/dialogcontent.component.js.map +0 -0
  905. {app-rn-runtime → package}/components/dialogs/dialogcontent/dialogcontent.props.js +0 -0
  906. {app-rn-runtime → package}/components/dialogs/dialogcontent/dialogcontent.props.js.map +0 -0
  907. {app-rn-runtime → package}/components/dialogs/dialogcontent/dialogcontent.styles.js +0 -0
  908. {app-rn-runtime → package}/components/dialogs/dialogcontent/dialogcontent.styles.js.map +0 -0
  909. {app-rn-runtime → package}/components/input/basedataset/basedataset.component.js +0 -0
  910. {app-rn-runtime → package}/components/input/basedataset/basedataset.component.js.map +0 -0
  911. {app-rn-runtime → package}/components/input/basedataset/basedataset.styles.js +0 -0
  912. {app-rn-runtime → package}/components/input/basedataset/basedataset.styles.js.map +0 -0
  913. {app-rn-runtime → package}/components/input/baseinput/baseinput.styles.js +0 -0
  914. {app-rn-runtime → package}/components/input/baseinput/baseinput.styles.js.map +0 -0
  915. {app-rn-runtime → package}/components/input/basenumber/basenumber.styles.js +0 -0
  916. {app-rn-runtime → package}/components/input/basenumber/basenumber.styles.js.map +0 -0
  917. {app-rn-runtime → package}/components/input/calendar/calendar.component.js +0 -0
  918. {app-rn-runtime → package}/components/input/calendar/calendar.component.js.map +0 -0
  919. {app-rn-runtime → package}/components/input/calendar/calendar.props.js +0 -0
  920. {app-rn-runtime → package}/components/input/calendar/calendar.props.js.map +0 -0
  921. {app-rn-runtime → package}/components/input/calendar/calendar.styles.js +0 -0
  922. {app-rn-runtime → package}/components/input/calendar/calendar.styles.js.map +0 -0
  923. {app-rn-runtime → package}/components/input/calendar/views/month-view.js +0 -0
  924. {app-rn-runtime → package}/components/input/calendar/views/month-view.js.map +0 -0
  925. {app-rn-runtime → package}/components/input/calendar/views/month-view.styles.js +0 -0
  926. {app-rn-runtime → package}/components/input/calendar/views/month-view.styles.js.map +0 -0
  927. {app-rn-runtime → package}/components/input/checkbox/checkbox.props.js +0 -0
  928. {app-rn-runtime → package}/components/input/checkbox/checkbox.props.js.map +0 -0
  929. {app-rn-runtime → package}/components/input/chips/chips.props.js +0 -0
  930. {app-rn-runtime → package}/components/input/chips/chips.props.js.map +0 -0
  931. {app-rn-runtime → package}/components/input/chips/chips.styles.js +0 -0
  932. {app-rn-runtime → package}/components/input/chips/chips.styles.js.map +0 -0
  933. {app-rn-runtime → package}/components/input/composite/composite.styles.js +0 -0
  934. {app-rn-runtime → package}/components/input/composite/composite.styles.js.map +0 -0
  935. {app-rn-runtime → package}/components/input/epoch/date/date.props.js +0 -0
  936. {app-rn-runtime → package}/components/input/epoch/date/date.props.js.map +0 -0
  937. {app-rn-runtime → package}/components/input/epoch/date-picker.component.js +0 -0
  938. {app-rn-runtime → package}/components/input/epoch/date-picker.component.js.map +0 -0
  939. {app-rn-runtime → package}/components/input/epoch/time/time.props.js +0 -0
  940. {app-rn-runtime → package}/components/input/epoch/time/time.props.js.map +0 -0
  941. {app-rn-runtime → package}/components/input/rating/rating.component.js +0 -0
  942. {app-rn-runtime → package}/components/input/rating/rating.component.js.map +0 -0
  943. {app-rn-runtime → package}/components/input/rating/rating.props.js +0 -0
  944. {app-rn-runtime → package}/components/input/rating/rating.props.js.map +0 -0
  945. {app-rn-runtime → package}/components/input/rating/rating.styles.js +0 -0
  946. {app-rn-runtime → package}/components/input/rating/rating.styles.js.map +0 -0
  947. {app-rn-runtime → package}/components/input/select/select.props.js +0 -0
  948. {app-rn-runtime → package}/components/input/select/select.props.js.map +0 -0
  949. {app-rn-runtime → package}/components/input/slider/slider.component.js +0 -0
  950. {app-rn-runtime → package}/components/input/slider/slider.component.js.map +0 -0
  951. {app-rn-runtime → package}/components/input/slider/slider.props.js +0 -0
  952. {app-rn-runtime → package}/components/input/slider/slider.props.js.map +0 -0
  953. {app-rn-runtime → package}/components/input/switch/switch.props.js +0 -0
  954. {app-rn-runtime → package}/components/input/switch/switch.props.js.map +0 -0
  955. {app-rn-runtime → package}/components/navigation/basenav/basenav.props.js +0 -0
  956. {app-rn-runtime → package}/components/navigation/basenav/basenav.props.js.map +0 -0
  957. {app-rn-runtime → package}/components/navigation/basenav/basenav.styles.js +0 -0
  958. {app-rn-runtime → package}/components/navigation/basenav/basenav.styles.js.map +0 -0
  959. {app-rn-runtime → package}/components/navigation/menu/menu.component.js +0 -0
  960. {app-rn-runtime → package}/components/navigation/menu/menu.component.js.map +0 -0
  961. {app-rn-runtime → package}/components/navigation/menu/menu.props.js +0 -0
  962. {app-rn-runtime → package}/components/navigation/menu/menu.props.js.map +0 -0
  963. {app-rn-runtime → package}/components/navigation/navbar/navbar.component.js +0 -0
  964. {app-rn-runtime → package}/components/navigation/navbar/navbar.component.js.map +0 -0
  965. {app-rn-runtime → package}/components/navigation/navbar/navbar.props.js +0 -0
  966. {app-rn-runtime → package}/components/navigation/navbar/navbar.props.js.map +0 -0
  967. {app-rn-runtime → package}/components/navigation/navbar/navbar.styles.js +0 -0
  968. {app-rn-runtime → package}/components/navigation/navbar/navbar.styles.js.map +0 -0
  969. {app-rn-runtime → package}/components/navigation/navitem/navitem.styles.js +0 -0
  970. {app-rn-runtime → package}/components/navigation/navitem/navitem.styles.js.map +0 -0
  971. {app-rn-runtime → package}/components/page/content/content.component.js +0 -0
  972. {app-rn-runtime → package}/components/page/content/content.component.js.map +0 -0
  973. {app-rn-runtime → package}/components/page/content/content.props.js +0 -0
  974. {app-rn-runtime → package}/components/page/content/content.props.js.map +0 -0
  975. {app-rn-runtime → package}/components/page/content/content.styles.js +0 -0
  976. {app-rn-runtime → package}/components/page/content/content.styles.js.map +0 -0
  977. {app-rn-runtime → package}/components/page/left-panel/left-panel.component.js +0 -0
  978. {app-rn-runtime → package}/components/page/left-panel/left-panel.component.js.map +0 -0
  979. {app-rn-runtime → package}/components/page/left-panel/left-panel.props.js +0 -0
  980. {app-rn-runtime → package}/components/page/left-panel/left-panel.props.js.map +0 -0
  981. {app-rn-runtime → package}/components/page/left-panel/left-panel.styles.js +0 -0
  982. {app-rn-runtime → package}/components/page/left-panel/left-panel.styles.js.map +0 -0
  983. {app-rn-runtime → package}/components/page/page-content/page-content.props.js +0 -0
  984. {app-rn-runtime → package}/components/page/page-content/page-content.props.js.map +0 -0
  985. {app-rn-runtime → package}/components/page/page-content/page-content.styles.js +0 -0
  986. {app-rn-runtime → package}/components/page/page-content/page-content.styles.js.map +0 -0
  987. {app-rn-runtime → package}/components/page/page.component.js +0 -0
  988. {app-rn-runtime → package}/components/page/page.component.js.map +0 -0
  989. {app-rn-runtime → package}/components/page/page.props.js +0 -0
  990. {app-rn-runtime → package}/components/page/page.props.js.map +0 -0
  991. {app-rn-runtime → package}/components/page/page.styles.js +0 -0
  992. {app-rn-runtime → package}/components/page/page.styles.js.map +0 -0
  993. {app-rn-runtime → package}/components/page/partial/partial.component.js +0 -0
  994. {app-rn-runtime → package}/components/page/partial/partial.component.js.map +0 -0
  995. {app-rn-runtime → package}/components/page/partial/partial.props.js +0 -0
  996. {app-rn-runtime → package}/components/page/partial/partial.props.js.map +0 -0
  997. {app-rn-runtime → package}/components/page/partial/partial.styles.js +0 -0
  998. {app-rn-runtime → package}/components/page/partial/partial.styles.js.map +0 -0
  999. {app-rn-runtime → package}/components/page/partial-container/partial-container.component.js +0 -0
  1000. {app-rn-runtime → package}/components/page/partial-container/partial-container.component.js.map +0 -0
  1001. {app-rn-runtime → package}/components/page/partial-container/partial-container.props.js +0 -0
  1002. {app-rn-runtime → package}/components/page/partial-container/partial-container.props.js.map +0 -0
  1003. {app-rn-runtime → package}/components/page/partial-container/partial-container.styles.js +0 -0
  1004. {app-rn-runtime → package}/components/page/partial-container/partial-container.styles.js.map +0 -0
  1005. {app-rn-runtime → package}/components/page/tabbar/tabbar.props.js +0 -0
  1006. {app-rn-runtime → package}/components/page/tabbar/tabbar.props.js.map +0 -0
  1007. {app-rn-runtime → package}/components/prefab/prefab-container.component.js +0 -0
  1008. {app-rn-runtime → package}/components/prefab/prefab-container.component.js.map +0 -0
  1009. {app-rn-runtime → package}/components/prefab/prefab-container.props.js +0 -0
  1010. {app-rn-runtime → package}/components/prefab/prefab-container.props.js.map +0 -0
  1011. {app-rn-runtime → package}/components/prefab/prefab-container.styles.js +0 -0
  1012. {app-rn-runtime → package}/components/prefab/prefab-container.styles.js.map +0 -0
  1013. {app-rn-runtime → package}/core/AppConfig.js +0 -0
  1014. {app-rn-runtime → package}/core/AppConfig.js.map +0 -0
  1015. {app-rn-runtime → package}/core/asset.provider.js +0 -0
  1016. {app-rn-runtime → package}/core/asset.provider.js.map +0 -0
  1017. {app-rn-runtime → package}/core/constant.service.js +0 -0
  1018. {app-rn-runtime → package}/core/constant.service.js.map +0 -0
  1019. {app-rn-runtime → package}/core/constants/currency-constants.js +0 -0
  1020. {app-rn-runtime → package}/core/constants/currency-constants.js.map +0 -0
  1021. {app-rn-runtime → package}/core/currency-constants.js +0 -0
  1022. {app-rn-runtime → package}/core/currency-constants.js.map +0 -0
  1023. {app-rn-runtime → package}/core/device/calendar-service.js +0 -0
  1024. {app-rn-runtime → package}/core/device/calendar-service.js.map +0 -0
  1025. {app-rn-runtime → package}/core/device/camera-service.js +0 -0
  1026. {app-rn-runtime → package}/core/device/camera-service.js.map +0 -0
  1027. {app-rn-runtime → package}/core/device/contacts-service.js +0 -0
  1028. {app-rn-runtime → package}/core/device/contacts-service.js.map +0 -0
  1029. {app-rn-runtime → package}/core/device/location-service.js +0 -0
  1030. {app-rn-runtime → package}/core/device/location-service.js.map +0 -0
  1031. {app-rn-runtime → package}/core/device/scan-service.js +0 -0
  1032. {app-rn-runtime → package}/core/device/scan-service.js.map +0 -0
  1033. {app-rn-runtime → package}/core/display.manager.js +0 -0
  1034. {app-rn-runtime → package}/core/display.manager.js.map +0 -0
  1035. {app-rn-runtime → package}/core/file-extension-types.js +0 -0
  1036. {app-rn-runtime → package}/core/file-extension-types.js.map +0 -0
  1037. {app-rn-runtime → package}/core/fixed-view.component.js +0 -0
  1038. {app-rn-runtime → package}/core/fixed-view.component.js.map +0 -0
  1039. {app-rn-runtime → package}/core/formatters.js +0 -0
  1040. {app-rn-runtime → package}/core/formatters.js.map +0 -0
  1041. {app-rn-runtime → package}/core/i18n.service.js +0 -0
  1042. {app-rn-runtime → package}/core/i18n.service.js.map +0 -0
  1043. {app-rn-runtime → package}/core/if.component.js +0 -0
  1044. {app-rn-runtime → package}/core/if.component.js.map +0 -0
  1045. {app-rn-runtime → package}/core/imageSizeEstimator.js +0 -0
  1046. {app-rn-runtime → package}/core/imageSizeEstimator.js.map +0 -0
  1047. {app-rn-runtime → package}/core/injector.js +0 -0
  1048. {app-rn-runtime → package}/core/injector.js.map +0 -0
  1049. {app-rn-runtime → package}/core/key.extractor.js +0 -0
  1050. {app-rn-runtime → package}/core/key.extractor.js.map +0 -0
  1051. {app-rn-runtime → package}/core/logger.js +0 -0
  1052. {app-rn-runtime → package}/core/logger.js.map +0 -0
  1053. {app-rn-runtime → package}/core/modal.service.js +0 -0
  1054. {app-rn-runtime → package}/core/modal.service.js.map +0 -0
  1055. {app-rn-runtime → package}/core/navigation.service.js +0 -0
  1056. {app-rn-runtime → package}/core/navigation.service.js.map +0 -0
  1057. {app-rn-runtime → package}/core/network.service.js +0 -0
  1058. {app-rn-runtime → package}/core/network.service.js.map +0 -0
  1059. {app-rn-runtime → package}/core/partial.service.js +0 -0
  1060. {app-rn-runtime → package}/core/partial.service.js.map +0 -0
  1061. {app-rn-runtime → package}/core/props.provider.js +0 -0
  1062. {app-rn-runtime → package}/core/props.provider.js.map +0 -0
  1063. {app-rn-runtime → package}/core/scroll-view.component.js +0 -0
  1064. {app-rn-runtime → package}/core/scroll-view.component.js.map +0 -0
  1065. {app-rn-runtime → package}/core/security.service.js +0 -0
  1066. {app-rn-runtime → package}/core/security.service.js.map +0 -0
  1067. {app-rn-runtime → package}/core/spinner.service.js +0 -0
  1068. {app-rn-runtime → package}/core/spinner.service.js.map +0 -0
  1069. {app-rn-runtime → package}/core/storage.service.js +0 -0
  1070. {app-rn-runtime → package}/core/storage.service.js.map +0 -0
  1071. {app-rn-runtime → package}/core/testid.provider.js +0 -0
  1072. {app-rn-runtime → package}/core/testid.provider.js.map +0 -0
  1073. {app-rn-runtime → package}/core/toast.service.js +0 -0
  1074. {app-rn-runtime → package}/core/toast.service.js.map +0 -0
  1075. {app-rn-runtime → package}/core/viewport.js +0 -0
  1076. {app-rn-runtime → package}/core/viewport.js.map +0 -0
  1077. {app-rn-runtime → package}/index.js +0 -0
  1078. {app-rn-runtime → package}/index.js.map +0 -0
  1079. {app-rn-runtime → package}/runtime/App.navigator.js +0 -0
  1080. {app-rn-runtime → package}/runtime/App.navigator.js.map +0 -0
  1081. {app-rn-runtime → package}/runtime/base-fragment.component.js +0 -0
  1082. {app-rn-runtime → package}/runtime/base-fragment.component.js.map +0 -0
  1083. {app-rn-runtime → package}/runtime/base-partial.component.js +0 -0
  1084. {app-rn-runtime → package}/runtime/base-partial.component.js.map +0 -0
  1085. {app-rn-runtime → package}/runtime/base-prefab.component.js +0 -0
  1086. {app-rn-runtime → package}/runtime/base-prefab.component.js.map +0 -0
  1087. {app-rn-runtime → package}/runtime/lib-patch.js +0 -0
  1088. {app-rn-runtime → package}/runtime/lib-patch.js.map +0 -0
  1089. {app-rn-runtime → package}/runtime/memo.component.js +0 -0
  1090. {app-rn-runtime → package}/runtime/memo.component.js.map +0 -0
  1091. {app-rn-runtime → package}/runtime/navigator/drawer.navigator.js +0 -0
  1092. {app-rn-runtime → package}/runtime/navigator/drawer.navigator.js.map +0 -0
  1093. {app-rn-runtime → package}/runtime/navigator/stack.navigator.js +0 -0
  1094. {app-rn-runtime → package}/runtime/navigator/stack.navigator.js.map +0 -0
  1095. {app-rn-runtime → package}/runtime/platform.api.js +0 -0
  1096. {app-rn-runtime → package}/runtime/platform.api.js.map +0 -0
  1097. {app-rn-runtime → package}/runtime/services/app-display-manager.service.js +0 -0
  1098. {app-rn-runtime → package}/runtime/services/app-display-manager.service.js.map +0 -0
  1099. {app-rn-runtime → package}/runtime/services/app-i18n.service.js +0 -0
  1100. {app-rn-runtime → package}/runtime/services/app-i18n.service.js.map +0 -0
  1101. {app-rn-runtime → package}/runtime/services/app-modal.service.js +0 -0
  1102. {app-rn-runtime → package}/runtime/services/app-modal.service.js.map +0 -0
  1103. {app-rn-runtime → package}/runtime/services/app-spinner.service.js +0 -0
  1104. {app-rn-runtime → package}/runtime/services/app-spinner.service.js.map +0 -0
  1105. {app-rn-runtime → package}/runtime/services/app-toast.service.js +0 -0
  1106. {app-rn-runtime → package}/runtime/services/app-toast.service.js.map +0 -0
  1107. {app-rn-runtime → package}/runtime/services/device/calendar-service.js +0 -0
  1108. {app-rn-runtime → package}/runtime/services/device/calendar-service.js.map +0 -0
  1109. {app-rn-runtime → package}/runtime/services/device/camera-service.js +0 -0
  1110. {app-rn-runtime → package}/runtime/services/device/camera-service.js.map +0 -0
  1111. {app-rn-runtime → package}/runtime/services/device/contacts-service.js +0 -0
  1112. {app-rn-runtime → package}/runtime/services/device/contacts-service.js.map +0 -0
  1113. {app-rn-runtime → package}/runtime/services/device/location-service.js +0 -0
  1114. {app-rn-runtime → package}/runtime/services/device/location-service.js.map +0 -0
  1115. {app-rn-runtime → package}/runtime/services/device/permissions.js +0 -0
  1116. {app-rn-runtime → package}/runtime/services/device/permissions.js.map +0 -0
  1117. {app-rn-runtime → package}/runtime/services/device/scan-service.js +0 -0
  1118. {app-rn-runtime → package}/runtime/services/device/scan-service.js.map +0 -0
  1119. {app-rn-runtime → package}/runtime/services/partial.service.js +0 -0
  1120. {app-rn-runtime → package}/runtime/services/partial.service.js.map +0 -0
  1121. {app-rn-runtime → package}/runtime/watcher.js +0 -0
  1122. {app-rn-runtime → package}/runtime/watcher.js.map +0 -0
  1123. {app-rn-runtime → package}/styles/MediaQueryList.js +0 -0
  1124. {app-rn-runtime → package}/styles/MediaQueryList.js.map +0 -0
  1125. {app-rn-runtime → package}/styles/style-prop.validator.js +0 -0
  1126. {app-rn-runtime → package}/styles/style-prop.validator.js.map +0 -0
  1127. {app-rn-runtime → package}/styles/style-props.js +0 -0
  1128. {app-rn-runtime → package}/styles/style-props.js.map +0 -0
  1129. {app-rn-runtime → package}/variables/base-variable.js +0 -0
  1130. {app-rn-runtime → package}/variables/base-variable.js.map +0 -0
  1131. {app-rn-runtime → package}/variables/device/calendar/create-event.operation.js +0 -0
  1132. {app-rn-runtime → package}/variables/device/calendar/create-event.operation.js.map +0 -0
  1133. {app-rn-runtime → package}/variables/device/calendar/delete-event.operation.js +0 -0
  1134. {app-rn-runtime → package}/variables/device/calendar/delete-event.operation.js.map +0 -0
  1135. {app-rn-runtime → package}/variables/device/calendar/get-events.operation.js +0 -0
  1136. {app-rn-runtime → package}/variables/device/calendar/get-events.operation.js.map +0 -0
  1137. {app-rn-runtime → package}/variables/device/camera/capture-image.operation.js +0 -0
  1138. {app-rn-runtime → package}/variables/device/camera/capture-image.operation.js.map +0 -0
  1139. {app-rn-runtime → package}/variables/device/camera/capture-video.operation.js +0 -0
  1140. {app-rn-runtime → package}/variables/device/camera/capture-video.operation.js.map +0 -0
  1141. {app-rn-runtime → package}/variables/device/contacts/get-contacts.operation.js +0 -0
  1142. {app-rn-runtime → package}/variables/device/contacts/get-contacts.operation.js.map +0 -0
  1143. {app-rn-runtime → package}/variables/device/device/app-info.operation.js +0 -0
  1144. {app-rn-runtime → package}/variables/device/device/app-info.operation.js.map +0 -0
  1145. {app-rn-runtime → package}/variables/device/device/current-geo-position.operation.js +0 -0
  1146. {app-rn-runtime → package}/variables/device/device/current-geo-position.operation.js.map +0 -0
  1147. {app-rn-runtime → package}/variables/device/device/device-info.operation.js +0 -0
  1148. {app-rn-runtime → package}/variables/device/device/device-info.operation.js.map +0 -0
  1149. {app-rn-runtime → package}/variables/device/device/network-info.operation.js +0 -0
  1150. {app-rn-runtime → package}/variables/device/device/network-info.operation.js.map +0 -0
  1151. {app-rn-runtime → package}/variables/device/device/vibrate.operation.js +0 -0
  1152. {app-rn-runtime → package}/variables/device/device/vibrate.operation.js.map +0 -0
  1153. {app-rn-runtime → package}/variables/device/file/upload-file.operation.js +0 -0
  1154. {app-rn-runtime → package}/variables/device/file/upload-file.operation.js.map +0 -0
  1155. {app-rn-runtime → package}/variables/device/operation.provider.js +0 -0
  1156. {app-rn-runtime → package}/variables/device/operation.provider.js.map +0 -0
  1157. {app-rn-runtime → package}/variables/device/scan/scan.operation.js +0 -0
  1158. {app-rn-runtime → package}/variables/device/scan/scan.operation.js.map +0 -0
  1159. {app-rn-runtime → package}/variables/device-variable.js +0 -0
  1160. {app-rn-runtime → package}/variables/device-variable.js.map +0 -0
  1161. {app-rn-runtime → package}/variables/http.service.js +0 -0
  1162. {app-rn-runtime → package}/variables/http.service.js.map +0 -0
  1163. {app-rn-runtime → package}/variables/live-variable.js +0 -0
  1164. {app-rn-runtime → package}/variables/live-variable.js.map +0 -0
  1165. {app-rn-runtime → package}/variables/utils/dataset-util.js +0 -0
  1166. {app-rn-runtime → package}/variables/utils/dataset-util.js.map +0 -0
  1167. {app-rn-runtime → package}/variables/utils/inflight-queue.js +0 -0
  1168. {app-rn-runtime → package}/variables/utils/inflight-queue.js.map +0 -0
  1169. {app-rn-runtime → package}/variables/utils/variable.constants.js +0 -0
  1170. {app-rn-runtime → package}/variables/utils/variable.constants.js.map +0 -0
  1171. {app-rn-runtime → package}/variables/utils/variable.utils.js +0 -0
  1172. {app-rn-runtime → package}/variables/utils/variable.utils.js.map +0 -0
@@ -0,0 +1 @@
1
+ {"version":3,"names":["assign","isUndefined","isNil","React","AccessibilityInfo","Platform","Animatable","ThemeVariables","StyleProps","getStyleName","BackgroundComponent","injector","ROOT_LOGGER","deepCopy","BASE_THEME","ThemeConsumer","ThemeEvent","EventNotifier","PropsProvider","assignIn","HideMode","AssetConsumer","FixedView","TextIdPrefixConsumer","isScreenReaderEnabled","WIDGET_LOGGER","extend","ParentContext","createContext","BaseComponentState","constructor","_defineProperty","undefined","defineStyles","styles","text","fontFamily","INSTANCE","baseFont","userSelect","BaseProps","arguments","BaseComponent","Component","markupProps","defaultClass","defaultProps","defaultState","ADD_TO_DOM","createElement","Fragment","I18nService","get","state","propertyProvider","show","name","$new","$old","debug","props","initialized","styleName","styleOverrides","setTimeout","cleanRefresh","onPropertyChange","check","proxy","Proxy","target","prop","receiver","propName","toString","has","Reflect","set","value","updateState","cleanup","push","updateStateTimeouts","forEach","v","clearTimeout","theme","subscribe","CHANGE","forceUpdate","addEventListener","remove","destroyParentListeners","event","fn","notifier","notify","args","isRTL","i18nService","isRTLLocale","animate","setState","animationId","Date","now","animatableProps","setProp","setPropDefault","setDefault","getDefaultStyles","getStyle","reset","newPartialState","callback","destroyed","stateFn","oldState","oldProps","newState","Object","keys","k","onUpdateState","_this$props$listener","_this$props$listener2","listener","onComponentChange","timeoutId","splice","indexOf","shouldComponentUpdate","nextProps","nextState","nextContext","key","componentDidMount","onComponentInit","componentWillAttach","isFixed","hide","componentWillDetach","componentWillUnmount","onComponentDestroy","f","destroy","componentDidUpdate","prevProps","prevState","snapshot","invokeEventCallback","eventName","callBack","map","a","apply","e","console","error","isVisible","refresh","renderSkeleton","parentListenerDestroyers","setParent","parent","copyStyles","property","from","to","renderFixedContainer","style","rootStyle","left","top","bottom","right","width","height","root","mergeStyle","addAnimation","renderWidget","n","View","_extends","setBackground","bgStyle","_background","image","backgroundImage","position","backgroundPosition","size","backgroundSize","repeat","backgroundRepeat","resizeMode","backgroundResizeMode","borderRadius","getTestId","suffix","id","testIdPrefix","getTestProps","OS","accessibilityLabel","testID","accessible","getStyleClassName","classname","getTestPropsForInput","getTestPropsForAction","getTestPropsForLabel","getDependenciesFromContext","loadAsset","Consumer","_this$parent","_showSkeleton","showskeleton","Provider","render","hideMode","DONOT_ADD_TO_DOM","selectedLocale","getSelectedLocale","info","disabled","showindevice","d","join","hasOwnProperty","backgroundColor","eleToRender"],"sources":["base.component.tsx"],"sourcesContent":["import { assign, isUndefined, isNil } from 'lodash';\nimport React, { ReactNode } from 'react';\nimport { AccessibilityInfo, Platform, TextStyle, ViewStyle } from 'react-native';\nimport { AnimatableProperties } from 'react-native-animatable';\nimport * as Animatable from 'react-native-animatable';\nimport ThemeVariables from '@wavemaker/app-rn-runtime/styles/theme.variables';\nimport { StyleProps, getStyleName } from '@wavemaker/app-rn-runtime/styles/style-props';\nimport { BackgroundComponent } from '@wavemaker/app-rn-runtime/styles/background.component';\nimport injector from '@wavemaker/app-rn-runtime/core/injector';\nimport { ROOT_LOGGER } from '@wavemaker/app-rn-runtime/core/logger';\nimport { deepCopy } from '@wavemaker/app-rn-runtime/core/utils';\nimport BASE_THEME, { NamedStyles, AllStyle, ThemeConsumer, ThemeEvent, Theme } from '../styles/theme';\nimport EventNotifier from './event-notifier';\nimport { PropsProvider } from './props.provider';\nimport { assignIn } from 'lodash-es';\nimport { HideMode } from './if.component';\nimport { AssetConsumer } from './asset.provider';\nimport { FixedView } from './fixed-view.component';\nimport { TextIdPrefixConsumer } from './testid.provider';\nimport { isScreenReaderEnabled } from './accessibility';\n\nexport const WIDGET_LOGGER = ROOT_LOGGER.extend('widget');\n\nexport const ParentContext = React.createContext(null as any);\n\nexport class BaseComponentState<T extends BaseProps> {\n public animationId?: number = 0;\n public animatableProps?: AnimatableProperties<ViewStyle> = undefined;\n public props = {} as T;\n public hide? = false;\n}\n\nexport type BaseStyles = NamedStyles<any> & {\n root: AllStyle,\n text: TextStyle & {userSelect?: 'none'| 'text'}\n}\n\nexport function defineStyles<T>(styles: T): T {\n return deepCopy({\n text: {\n fontFamily: ThemeVariables.INSTANCE.baseFont,\n userSelect: 'text'\n }\n }, styles);\n}\n\nexport interface LifecycleListener {\n onComponentChange?: (c: BaseComponent<any, any, any>) => void;\n onComponentInit?: (c: BaseComponent<any, any, any>) => void;\n onComponentDestroy?: (c: BaseComponent<any, any, any>) => void;\n}\n\nexport class BaseProps extends StyleProps {\n id?: string = null as any;\n name?: string = null as any;\n key?: any = null as any;\n disabled? = false;\n show? = true as Boolean | String | Number;\n styles?: any = null;\n classname?: string = null as any;\n listener?: LifecycleListener = null as any;\n showindevice?: ('xs'|'sm'|'md'|'lg'|'xl'|'xxl')[] = null as any;\n showskeleton?: boolean = false;\n}\n\nexport abstract class BaseComponent<T extends BaseProps, S extends BaseComponentState<T>, L extends BaseStyles> extends React.Component<T, S> {\n public styles: L = null as any;\n public hideMode = HideMode.ADD_TO_DOM;\n private propertyProvider: PropsProvider<T>;\n public proxy: BaseComponent<T, S, L>;\n public initialized = false;\n public cleanup = [] as Function[];\n public theme = BASE_THEME;\n public updateStateTimeouts= [] as NodeJS.Timeout[];\n public parent: BaseComponent<any, any, any> = null as any;\n public destroyed = false;\n public _showSkeleton = false;\n public isFixed = false;\n private notifier = new EventNotifier();\n private parentListenerDestroyers = [] as Function[];\n public _background = <></>;\n private styleOverrides = {} as any;\n public loadAsset: (path: string) => number | string = null as any;\n private i18nService = injector.I18nService.get();\n public testIdPrefix = '';\n\n constructor(markupProps: T, public defaultClass: string, defaultProps?: T, defaultState?: S) {\n super(markupProps);\n this.state = (defaultState || {} as S);\n this.propertyProvider = new PropsProvider<T>(\n assign({show: true}, defaultProps),\n assign({}, markupProps),\n (name: string, $new: any, $old: any) => {\n WIDGET_LOGGER.debug(() => `${this.props.name || this.constructor.name}: ${name} changed from ${$old} to ${$new}`);\n if (this.initialized) {\n const styleName = getStyleName(name);\n if (styleName) {\n if ($new === undefined) {\n delete this.styleOverrides[styleName];\n } else {\n this.styleOverrides[styleName] = $new;\n }\n }\n }\n if (name === 'showskeleton' && this.initialized) {\n setTimeout(() => this.cleanRefresh(), 100);\n }\n this.onPropertyChange(name, $new, $old);\n });\n //@ts-ignore\n this.state.props =this.propertyProvider.get();\n this.propertyProvider.check();\n //@ts-ignore\n this.proxy = (new Proxy(this, {\n get: (target, prop, receiver): any => {\n const propName = prop.toString();\n if (this.propertyProvider.has(propName)) {\n //@ts-ignore\n return this.state.props[propName];\n }\n return Reflect.get(target, prop, receiver);\n },\n set: (target: any, prop, value: any): any => {\n const propName = prop.toString();\n if (this.propertyProvider.has(propName)) {\n // @ts-ignore\n const props = {} as any;\n props[propName] = value;\n this.updateState({\n props: props\n } as S);\n return true;\n } else {\n return Reflect.set(target, prop, value);\n }\n }\n }));\n this.cleanup.push(() => {\n this.updateStateTimeouts.forEach(v => clearTimeout(v));\n });\n this.cleanup.push(this.theme.subscribe(ThemeEvent.CHANGE, () => {\n this.forceUpdate();\n }));\n this.cleanup.push(AccessibilityInfo.addEventListener('screenReaderChanged',\n () => {\n setTimeout(() => {\n this.forceUpdate();\n }, 100);\n },\n ).remove);\n this.cleanup.push(() => {\n this.destroyParentListeners();\n });\n }\n\n public subscribe(event: string, fn: Function) {\n return this.notifier.subscribe(event, fn);\n }\n\n public notify(event: string, args: any[]) {\n return this.notifier.notify(event, args);\n }\n\n public get isRTL(){\n return this.i18nService.isRTLLocale();\n }\n\n public animate(props: AnimatableProperties<ViewStyle>) {\n this.setState({\n animationId: Date.now(),\n animatableProps: props\n });\n }\n\n setProp(propName: string, value: any) {\n this.propertyProvider.set(propName, value);\n this.updateState({props:{}} as S);\n }\n\n setPropDefault(propName: string, value: any) {\n this.propertyProvider.setDefault(propName, value);\n }\n \n onPropertyChange(name: string, $new: any, $old: any) { \n }\n \n getDefaultStyles() {\n return this.theme.getStyle(this.defaultClass);\n }\n\n reset() {\n\n }\n\n updateState(newPartialState: S, callback?: ()=>void) {\n if (this.destroyed) {\n return;\n }\n const stateFn = (oldState: S) => {\n const oldProps = oldState.props;\n const newState = this.initialized ? assignIn({}, oldState, newPartialState) : assignIn(oldState, newPartialState);\n if (newPartialState.props) {\n Object.keys(newPartialState.props).forEach((k) => {\n //@ts-ignore\n oldProps[k] = newState.props[k];\n });\n newState.props = oldProps;\n }\n return newState;\n };\n const onUpdateState = () => {\n callback && callback();\n this.props.listener?.onComponentChange\n && this.props.listener?.onComponentChange(this);\n }\n if (!this.initialized) {\n this.state = stateFn(this.state);\n onUpdateState();\n } else {\n const timeoutId = setTimeout(() => {\n this.setState(stateFn, onUpdateState);\n this.updateStateTimeouts.splice(this.updateStateTimeouts.indexOf(timeoutId), 1);\n });\n this.updateStateTimeouts.push(timeoutId);\n }\n }\n\n shouldComponentUpdate(nextProps: T, nextState: S, nextContext: any) {\n if (this.propertyProvider.check(nextProps)) {\n return true;\n }\n for(let key in nextState) {\n if(key !== 'props' && (!(key in this.state) || nextState[key] !== this.state[key])) {\n return true;\n }\n }\n\n for(let key in this.state) {\n if(key !== 'props' && (!(key in nextState) || this.state[key] !== nextState[key])) {\n return true;\n }\n }\n return false;\n }\n\n componentDidMount() {\n if (this.props.listener && this.props.listener.onComponentInit) {\n this.props.listener.onComponentInit(this.proxy);\n }\n this.initialized = true;\n }\n\n componentWillAttach() {\n if (this.isFixed) {\n this.setState({hide: false});\n }\n }\n\n componentWillDetach() {\n if (this.isFixed) {\n this.setState({hide: true});\n }\n }\n\n componentWillUnmount() {\n this.destroyed = true;\n if (this.props.listener && this.props.listener.onComponentDestroy) {\n this.props.listener.onComponentDestroy(this.proxy);\n }\n this.cleanup.forEach(f => f && f());\n this.notifier.destroy();\n this.notifier.notify('destroy', []);\n }\n \n componentDidUpdate(prevProps: Readonly<T>, prevState: Readonly<S>, snapshot?: any): void {\n if (this.propertyProvider.check(this.props)) {\n this.forceUpdate();\n }\n }\n\n invokeEventCallback(eventName: string, args: any[]) {\n //@ts-ignore\n const callBack: Function = this.props[eventName];\n args = args && args.map(a => (a === this) ? this.proxy : a)\n if (callBack) {\n try {\n return callBack.apply(this.proxy, args);\n } catch(e) {\n console.error(e);\n }\n }\n }\n\n isVisible() {\n const show = this.state.props.show;\n return show !== false && show !== 'false' && show !== '0' && !isNil(show);\n }\n\n protected abstract renderWidget(props: T): ReactNode;\n\n public refresh() {\n this.forceUpdate();\n }\n\n public cleanRefresh() {\n this.forceUpdate(() => this.notifier.notify('forceUpdate', []));\n }\n \n public renderSkeleton (props: T): ReactNode {\n return null;\n }\n\n public destroyParentListeners() {\n this.parentListenerDestroyers.map(fn => fn());\n }\n\n private setParent(parent: BaseComponent<any, any, any>) {\n if (parent && this.parent !== parent) {\n this.parent = parent;\n this.notifier.setParent(parent.notifier);\n this.parentListenerDestroyers = [\n this.parent.subscribe('forceUpdate', () => {\n this.cleanRefresh();\n }),\n this.parent.subscribe('destroy', () => {\n this.destroyParentListeners();\n })\n ];\n }\n }\n\n copyStyles(property: string, from: any, to: any) {\n if (!isUndefined(from[property])) {\n to[property] = from[property];\n }\n }\n\n renderFixedContainer(props: T) {\n const style = {} as ViewStyle;\n const rootStyle = {\n left: 0,\n top: 0,\n bottom: 0,\n right: 0,\n width: \"100%\",\n height: \"100%\"\n } as ViewStyle;\n this.copyStyles('left', this.styles.root, style);\n this.copyStyles('top', this.styles.root, style);\n this.copyStyles('right', this.styles.root, style);\n this.copyStyles('bottom', this.styles.root, style);\n this.copyStyles('width', this.styles.root, style);\n this.copyStyles('height', this.styles.root, style);\n this.styles = this.theme.mergeStyle(this.styles, {root: rootStyle});\n return (<FixedView style={style} theme={this.theme}>{this.addAnimation(this.renderWidget(props))}</FixedView>);\n }\n\n private addAnimation(n: ReactNode) {\n if (!this.state.animatableProps) {\n return n;\n }\n return (<Animatable.View key={this.state.animationId} {...this.state.animatableProps}>{n}</Animatable.View>);\n }\n \n private setBackground() {\n const bgStyle = this.styles.root as any;\n this._background = (\n <BackgroundComponent \n image={bgStyle.backgroundImage}\n position={bgStyle.backgroundPosition}\n size={bgStyle.backgroundSize}\n repeat={bgStyle.backgroundRepeat}\n resizeMode={bgStyle.backgroundResizeMode}\n style={{borderRadius: this.styles.root.borderRadius}}>\n </BackgroundComponent>\n );\n delete (this.styles.root as any)['backgroundImage'];\n delete (this.styles.root as any)['backgroundPosition'];\n delete (this.styles.root as any)['backgroundResizeMode'];\n delete (this.styles.root as any)['backgroundSize'];\n delete (this.styles.root as any)['backgroundRepeat'];\n }\n\n public getTestId(suffix?: string) {\n let id = this.props.id || this.props.name;\n if (this.testIdPrefix) {\n id = this.testIdPrefix + '_' + id;\n }\n if (suffix) {\n id = id + '_' + suffix;\n }\n return id;\n }\n\n public getTestProps(suffix?: string) {\n let id = this.getTestId(suffix);\n if (isScreenReaderEnabled()) {\n return {};\n }\n if (Platform.OS === 'android' || Platform.OS === 'web') {\n return {\n accessibilityLabel: id,\n testID: id\n };\n }\n return {\n accessible: false,\n testID: id\n };\n }\n\n public getStyleClassName() {\n return this.state.props.classname;\n }\n\n public getTestPropsForInput(suffix?: string) {\n return this.getTestProps(suffix || 'i');\n }\n\n public getTestPropsForAction(suffix?: string) {\n return this.getTestProps(suffix || 'a');\n }\n\n public getTestPropsForLabel(suffix?: string) {\n return this.getTestProps(suffix || 'l');\n }\n\n private getDependenciesFromContext(fn: () => ReactNode) {\n return (\n <TextIdPrefixConsumer>\n {(testIdPrefix) => {\n this.testIdPrefix = testIdPrefix || '';\n return (<AssetConsumer>\n {(loadAsset) => {\n this.loadAsset = loadAsset;\n return (<ParentContext.Consumer>\n {(parent) => {\n this.setParent(parent);\n this._showSkeleton = this.parent?._showSkeleton \n || !!this.state.props.showskeleton;\n return (\n <ParentContext.Provider value={this}>\n <ThemeConsumer>\n {(theme) => { \n this.theme = theme || BASE_THEME;\n return fn();\n }}\n </ThemeConsumer>\n </ParentContext.Provider>);\n }} \n </ParentContext.Consumer>);\n }}\n </AssetConsumer>);\n }}\n </TextIdPrefixConsumer>); \n }\n \n public render(): ReactNode {\n const props = this.state.props;\n if (this.state.hide || (!this.isVisible() && this.hideMode === HideMode.DONOT_ADD_TO_DOM)) {\n return null;\n }\n this.isFixed = false;\n const selectedLocale = this.i18nService.getSelectedLocale();\n return this.getDependenciesFromContext(() => {\n WIDGET_LOGGER.info(() => `${this.props.name || this.constructor.name} is rendering.`);\n const classname = this.getStyleClassName();\n this.styles = this.theme.mergeStyle(\n this.getDefaultStyles(),\n {text: this.theme.getStyle('app-' + selectedLocale)},\n {text: this.theme.getStyle(this.defaultClass + '-' + selectedLocale)},\n props.disabled ? this.theme.getStyle(this.defaultClass + '-disabled') : null,\n this.isRTL ? this.theme.getStyle(this.defaultClass + '-rtl') : null,\n classname && this.theme.getStyle(classname),\n props.showindevice && this.theme.getStyle('d-all-none ' + props.showindevice.map(d => `d-${d}-flex`).join(' ')),\n this.props.styles,\n {\n root: this.styleOverrides,\n text: this.styleOverrides\n });\n if (this.styles.root.hasOwnProperty('_background')) {\n delete this.styles.root.backgroundColor;\n }\n if (!this.isVisible()) {\n assign(this.styles, this.theme.getStyle('hidden'))\n }\n let eleToRender = (this._showSkeleton && this.renderSkeleton(props));\n if (eleToRender) {\n return eleToRender;\n }\n this.setBackground();\n this.isFixed = (this.styles.root.position as any) === 'fixed';\n if (this.isFixed) {\n this.styles.root.position = undefined;\n return this.renderFixedContainer(props);\n }\n return this.addAnimation(this.renderWidget(this.state.props)); \n });\n }\n}\n"],"mappings":"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"}
@@ -0,0 +1,38 @@
1
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
2
+ import { isEmpty } from 'lodash-es';
3
+ import React from 'react';
4
+ import { View } from 'react-native';
5
+ import { FlatList } from 'react-native-gesture-handler';
6
+ const WMFlatList = props => {
7
+ return /*#__PURE__*/React.createElement(View, {
8
+ style: [{
9
+ flex: 1
10
+ }]
11
+ }, !isEmpty(props.groupedData) ? props.groupedData.map((v, i) => /*#__PURE__*/React.createElement(View, {
12
+ style: {
13
+ marginBottom: 16,
14
+ flex: 1
15
+ }
16
+ // key={v.key || props.getKey(v)} // * will cause re-render
17
+ ,
18
+ key: i
19
+ }, props.renderHeader(props, v.key), /*#__PURE__*/React.createElement(View, {
20
+ style: {
21
+ flex: 1
22
+ }
23
+ }, /*#__PURE__*/React.createElement(FlatList
24
+ // estimatedItemSize={200}
25
+ , _extends({
26
+ onEndReachedThreshold: 0.3,
27
+ onEndReached: props.handleOnEndReached,
28
+ keyExtractor: props.generateItemKey,
29
+ horizontal: props.isHorizontal,
30
+ data: isEmpty(v.data[0]) ? [] : v.data,
31
+ ListEmptyComponent: props.listEmptyComponent,
32
+ renderItem: props.renderItem
33
+ }, props.isHorizontal ? {} : {
34
+ numColumns: props.noOfColumns
35
+ }))))) : props.renderEmptyMessage);
36
+ };
37
+ export default WMFlatList;
38
+ //# sourceMappingURL=flatlist.component.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["isEmpty","React","View","FlatList","WMFlatList","props","createElement","style","flex","groupedData","map","v","i","marginBottom","key","renderHeader","_extends","onEndReachedThreshold","onEndReached","handleOnEndReached","keyExtractor","generateItemKey","horizontal","isHorizontal","data","ListEmptyComponent","listEmptyComponent","renderItem","numColumns","noOfColumns","renderEmptyMessage"],"sources":["flatlist.component.tsx"],"sourcesContent":["import { isEmpty } from 'lodash-es';\nimport React from 'react';\nimport { View } from 'react-native';\nimport { FlatList } from 'react-native-gesture-handler';\n\nconst WMFlatList = (props: any) => {\n return (\n <View style={[{ flex: 1 }]}>\n {!isEmpty(props.groupedData)\n ? props.groupedData.map((v: any, i: number) => (\n <View\n style={{ marginBottom: 16, flex: 1 }}\n // key={v.key || props.getKey(v)} // * will cause re-render\n key={i}\n >\n {props.renderHeader(props, v.key)}\n <View style={{ flex: 1 }}>\n <FlatList\n // estimatedItemSize={200}\n onEndReachedThreshold={0.3}\n onEndReached={props.handleOnEndReached}\n keyExtractor={props.generateItemKey\n }\n horizontal={props.isHorizontal}\n data={isEmpty(v.data[0]) ? [] : v.data}\n ListEmptyComponent={props.listEmptyComponent\n }\n renderItem={props.renderItem\n }\n {...(props.isHorizontal\n ? {}\n : { numColumns: props.noOfColumns })}\n ></FlatList>\n </View>\n </View>\n ))\n : props.renderEmptyMessage}\n </View>\n );\n};\n\nexport default WMFlatList;\n"],"mappings":";AAAA,SAASA,OAAO,QAAQ,WAAW;AACnC,OAAOC,KAAK,MAAM,OAAO;AACzB,SAASC,IAAI,QAAQ,cAAc;AACnC,SAASC,QAAQ,QAAQ,8BAA8B;AAEvD,MAAMC,UAAU,GAAIC,KAAU,IAAK;EACjC,oBACEJ,KAAA,CAAAK,aAAA,CAACJ,IAAI;IAACK,KAAK,EAAE,CAAC;MAAEC,IAAI,EAAE;IAAE,CAAC;EAAE,GACxB,CAACR,OAAO,CAACK,KAAK,CAACI,WAAW,CAAC,GACxBJ,KAAK,CAACI,WAAW,CAACC,GAAG,CAAC,CAACC,CAAM,EAAEC,CAAS,kBACtCX,KAAA,CAAAK,aAAA,CAACJ,IAAI;IACHK,KAAK,EAAE;MAAEM,YAAY,EAAE,EAAE;MAAEL,IAAI,EAAE;IAAE;IACnC;IAAA;IACAM,GAAG,EAAEF;EAAE,GAENP,KAAK,CAACU,YAAY,CAACV,KAAK,EAAEM,CAAC,CAACG,GAAG,CAAC,eACjCb,KAAA,CAAAK,aAAA,CAACJ,IAAI;IAACK,KAAK,EAAE;MAAEC,IAAI,EAAE;IAAE;EAAE,gBACvBP,KAAA,CAAAK,aAAA,CAACH;EACC;EAAA,EAAAa,QAAA;IACAC,qBAAqB,EAAE,GAAI;IAC3BC,YAAY,EAAEb,KAAK,CAACc,kBAAmB;IACvCC,YAAY,EAAEf,KAAK,CAACgB,eACnB;IACDC,UAAU,EAAEjB,KAAK,CAACkB,YAAa;IAC/BC,IAAI,EAAExB,OAAO,CAACW,CAAC,CAACa,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,EAAE,GAAGb,CAAC,CAACa,IAAK;IACvCC,kBAAkB,EAAEpB,KAAK,CAACqB,kBACzB;IACDC,UAAU,EAAEtB,KAAK,CAACsB;EACjB,GACItB,KAAK,CAACkB,YAAY,GACnB,CAAC,CAAC,GACF;IAAEK,UAAU,EAAEvB,KAAK,CAACwB;EAAY,CAAC,CAC5B,CACP,CACF,CACP,CAAC,GACFxB,KAAK,CAACyB,kBACN,CAAC;AAEX,CAAC;AAED,eAAe1B,UAAU"}
@@ -0,0 +1,45 @@
1
+ import React, { useEffect, useState } from 'react';
2
+ import { Animated, Text } from 'react-native';
3
+ import { Theme } from '@wavemaker/app-rn-runtime/styles/theme';
4
+ export const FloatingLabel = props => {
5
+ var _props$style, _props$style2;
6
+ const width = ((_props$style = props.style) === null || _props$style === void 0 ? void 0 : _props$style.width) || 160;
7
+ const [labelPositionX] = useState(new Animated.Value(0));
8
+ const [labelPositionY] = useState(new Animated.Value(0));
9
+ const [labelScale] = useState(new Animated.Value(1));
10
+ const fontSize = ((_props$style2 = props.style) === null || _props$style2 === void 0 ? void 0 : _props$style2.fontSize) || 16;
11
+ useEffect(() => {
12
+ Animated.parallel([Animated.timing(labelPositionX, {
13
+ toValue: props.moveUp ? -1 * 0.1 * width : 0,
14
+ duration: 200,
15
+ useNativeDriver: true
16
+ }), Animated.timing(labelPositionY, {
17
+ toValue: props.moveUp ? -1 * fontSize : 0,
18
+ duration: 200,
19
+ useNativeDriver: true
20
+ }), Animated.timing(labelScale, {
21
+ toValue: props.moveUp ? 0.8 : 1,
22
+ duration: 200,
23
+ useNativeDriver: true
24
+ })]).start();
25
+ }, [props.moveUp]);
26
+ return /*#__PURE__*/React.createElement(Animated.View, {
27
+ style: [{
28
+ position: 'absolute',
29
+ zIndex: 1,
30
+ width: width,
31
+ transform: [{
32
+ translateY: labelPositionY
33
+ }, {
34
+ translateX: labelPositionX
35
+ }, {
36
+ scale: labelScale
37
+ }]
38
+ }, props.style],
39
+ pointerEvents: "none"
40
+ }, /*#__PURE__*/React.createElement(Text, {
41
+ style: Theme.BASE.getTextStyle(props.style),
42
+ ellipsizeMode: "tail"
43
+ }, props.label));
44
+ };
45
+ //# sourceMappingURL=floatinglabel.component.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["React","useEffect","useState","Animated","Text","Theme","FloatingLabel","props","_props$style","_props$style2","width","style","labelPositionX","Value","labelPositionY","labelScale","fontSize","parallel","timing","toValue","moveUp","duration","useNativeDriver","start","createElement","View","position","zIndex","transform","translateY","translateX","scale","pointerEvents","BASE","getTextStyle","ellipsizeMode","label"],"sources":["floatinglabel.component.tsx"],"sourcesContent":["import React, { useEffect, useState } from 'react';\nimport { Animated, TextStyle, Text} from 'react-native';\n\nimport { Theme } from '@wavemaker/app-rn-runtime/styles/theme';\n\nexport const FloatingLabel = (props: {\n label?: string,\n style?: TextStyle\n moveUp: boolean,\n }) => {\n const width = (props.style?.width as number) || 160;\n const [labelPositionX] = useState(new Animated.Value(0));\n const [labelPositionY] = useState(new Animated.Value(0));\n const [labelScale] = useState(new Animated.Value(1));\n const fontSize = (props.style?.fontSize || 16);\n useEffect(() => {\n Animated.parallel([\n Animated.timing(labelPositionX, {\n toValue: props.moveUp ? -1 * 0.1 * width : 0,\n duration: 200,\n useNativeDriver: true,\n }),\n Animated.timing(labelPositionY, {\n toValue: props.moveUp ? -1 * fontSize : 0,\n duration: 200,\n useNativeDriver: true,\n }),\n Animated.timing(labelScale, {\n toValue: props.moveUp ? 0.8 : 1,\n duration: 200,\n useNativeDriver: true,\n })\n ]).start();\n }, [props.moveUp]);\n return (\n <Animated.View style={[{\n position: 'absolute',\n zIndex: 1,\n width: width,\n transform: [\n {translateY: labelPositionY},\n {translateX: labelPositionX},\n {scale: labelScale}\n ]},\n props.style\n ]}\n pointerEvents=\"none\">\n <Text\n style={Theme.BASE.getTextStyle(props.style)}\n ellipsizeMode=\"tail\">\n {props.label}\n </Text>\n </Animated.View>\n );\n };\n "],"mappings":"AAAA,OAAOA,KAAK,IAAIC,SAAS,EAAEC,QAAQ,QAAQ,OAAO;AAClD,SAASC,QAAQ,EAAaC,IAAI,QAAO,cAAc;AAEvD,SAASC,KAAK,QAAQ,wCAAwC;AAE9D,OAAO,MAAMC,aAAa,GAAIC,KAI3B,IAAK;EAAA,IAAAC,YAAA,EAAAC,aAAA;EACJ,MAAMC,KAAK,GAAG,EAAAF,YAAA,GAACD,KAAK,CAACI,KAAK,cAAAH,YAAA,uBAAXA,YAAA,CAAaE,KAAK,KAAe,GAAG;EACnD,MAAM,CAACE,cAAc,CAAC,GAAGV,QAAQ,CAAC,IAAIC,QAAQ,CAACU,KAAK,CAAC,CAAC,CAAC,CAAC;EACxD,MAAM,CAACC,cAAc,CAAC,GAAGZ,QAAQ,CAAC,IAAIC,QAAQ,CAACU,KAAK,CAAC,CAAC,CAAC,CAAC;EACxD,MAAM,CAACE,UAAU,CAAC,GAAGb,QAAQ,CAAC,IAAIC,QAAQ,CAACU,KAAK,CAAC,CAAC,CAAC,CAAC;EACpD,MAAMG,QAAQ,GAAI,EAAAP,aAAA,GAAAF,KAAK,CAACI,KAAK,cAAAF,aAAA,uBAAXA,aAAA,CAAaO,QAAQ,KAAI,EAAG;EAC9Cf,SAAS,CAAC,MAAM;IACdE,QAAQ,CAACc,QAAQ,CAAC,CAChBd,QAAQ,CAACe,MAAM,CAACN,cAAc,EAAE;MAC9BO,OAAO,EAAEZ,KAAK,CAACa,MAAM,GAAG,CAAC,CAAC,GAAG,GAAG,GAAGV,KAAK,GAAG,CAAC;MAC5CW,QAAQ,EAAE,GAAG;MACbC,eAAe,EAAE;IACnB,CAAC,CAAC,EACFnB,QAAQ,CAACe,MAAM,CAACJ,cAAc,EAAE;MAC9BK,OAAO,EAAEZ,KAAK,CAACa,MAAM,GAAG,CAAC,CAAC,GAAGJ,QAAQ,GAAG,CAAC;MACzCK,QAAQ,EAAE,GAAG;MACbC,eAAe,EAAE;IACnB,CAAC,CAAC,EACFnB,QAAQ,CAACe,MAAM,CAACH,UAAU,EAAE;MAC1BI,OAAO,EAAEZ,KAAK,CAACa,MAAM,GAAG,GAAG,GAAG,CAAC;MAC/BC,QAAQ,EAAE,GAAG;MACbC,eAAe,EAAE;IACnB,CAAC,CAAC,CACH,CAAC,CAACC,KAAK,CAAC,CAAC;EACZ,CAAC,EAAE,CAAChB,KAAK,CAACa,MAAM,CAAC,CAAC;EAClB,oBACIpB,KAAA,CAAAwB,aAAA,CAACrB,QAAQ,CAACsB,IAAI;IAACd,KAAK,EAAE,CAAC;MACnBe,QAAQ,EAAE,UAAU;MACpBC,MAAM,EAAE,CAAC;MACTjB,KAAK,EAAEA,KAAK;MACZkB,SAAS,EAAE,CACP;QAACC,UAAU,EAAEf;MAAc,CAAC,EAC5B;QAACgB,UAAU,EAAElB;MAAc,CAAC,EAC5B;QAACmB,KAAK,EAAEhB;MAAU,CAAC;IACtB,CAAC,EACFR,KAAK,CAACI,KAAK,CACb;IACFqB,aAAa,EAAC;EAAM,gBAClBhC,KAAA,CAAAwB,aAAA,CAACpB,IAAI;IACHO,KAAK,EAAEN,KAAK,CAAC4B,IAAI,CAACC,YAAY,CAAC3B,KAAK,CAACI,KAAK,CAAE;IAC5CwB,aAAa,EAAC;EAAM,GACnB5B,KAAK,CAAC6B,KACH,CACO,CAAC;AAEtB,CAAC"}
@@ -0,0 +1,60 @@
1
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
2
+ import React, { useCallback, useRef, useState } from 'react';
3
+ import { Platform, TextInput } from 'react-native';
4
+ import { FloatingLabel } from './floatinglabel.component';
5
+ export const WMTextInput = /*#__PURE__*/React.forwardRef((props, ref) => {
6
+ var _props$value, _props$defaultValue;
7
+ const [selectRange, setSelectRange] = useState(null);
8
+ const [isInputFocused, setIsInputFocused] = useState(false);
9
+ const value = useRef(props.value || '');
10
+ const animateLabelText = props.floatingLabel && (Platform.OS === 'web' ? Number((_props$value = props.value) === null || _props$value === void 0 ? void 0 : _props$value.length) > 0 : Number((_props$defaultValue = props.defaultValue) === null || _props$defaultValue === void 0 ? void 0 : _props$defaultValue.length) > 0);
11
+ const onSelectionChange = useCallback(e => {
12
+ var _e$nativeEvent;
13
+ if (Platform.OS !== 'android') {
14
+ return;
15
+ }
16
+ const selection = e === null || e === void 0 || (_e$nativeEvent = e.nativeEvent) === null || _e$nativeEvent === void 0 ? void 0 : _e$nativeEvent.selection;
17
+ if (!props.allowContentSelection && selection && selection.end - selection.start > 0) {
18
+ setSelectRange({
19
+ start: value.current.length + 2,
20
+ end: value.current.length + 2
21
+ });
22
+ } else if (selectRange && selectRange.end > 0) {
23
+ setSelectRange(null);
24
+ }
25
+ }, [props.allowContentSelection, value.current]);
26
+ const onChangeText = useCallback(text => {
27
+ value.current = text;
28
+ }, []);
29
+ return /*#__PURE__*/React.createElement(React.Fragment, null, props.floatingLabel ? /*#__PURE__*/React.createElement(FloatingLabel, {
30
+ moveUp: !!(value.current || isInputFocused),
31
+ label: props.floatingLabel ?? props.placeholder,
32
+ style: {
33
+ ...(props.floatingLabelStyle || []),
34
+ ...(isInputFocused ? props.activeFloatingLabelStyle || {} : {})
35
+ }
36
+ }) : null, /*#__PURE__*/React.createElement(TextInput, _extends({}, props, {
37
+ placeholder: props.floatingLabel ? '' : props.placeholder,
38
+ style: props.style,
39
+ onFocus: e => {
40
+ var _props$onFocus;
41
+ (_props$onFocus = props.onFocus) === null || _props$onFocus === void 0 ? void 0 : _props$onFocus.call(props, e);
42
+ setIsInputFocused(true);
43
+ },
44
+ onBlur: e => {
45
+ var _props$onBlur;
46
+ props === null || props === void 0 || (_props$onBlur = props.onBlur) === null || _props$onBlur === void 0 ? void 0 : _props$onBlur.call(props, e);
47
+ setIsInputFocused(false);
48
+ },
49
+ ref: ref,
50
+ selection: selectRange,
51
+ onSelectionChange: onSelectionChange,
52
+ caretHidden: !!(selectRange !== null && selectRange !== void 0 && selectRange.end),
53
+ onChangeText: text => {
54
+ props.onChangeText && props.onChangeText(text);
55
+ onChangeText(text);
56
+ },
57
+ contextMenuHidden: !props.allowContentSelection
58
+ })));
59
+ });
60
+ //# sourceMappingURL=textinput.component.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["React","useCallback","useRef","useState","Platform","TextInput","FloatingLabel","WMTextInput","forwardRef","props","ref","_props$value","_props$defaultValue","selectRange","setSelectRange","isInputFocused","setIsInputFocused","value","animateLabelText","floatingLabel","OS","Number","length","defaultValue","onSelectionChange","e","_e$nativeEvent","selection","nativeEvent","allowContentSelection","end","start","current","onChangeText","text","createElement","Fragment","moveUp","label","placeholder","style","floatingLabelStyle","activeFloatingLabelStyle","_extends","onFocus","_props$onFocus","call","onBlur","_props$onBlur","caretHidden","contextMenuHidden"],"sources":["textinput.component.tsx"],"sourcesContent":["import React, { ForwardedRef, useCallback, useRef, useState } from 'react';\nimport { Platform, TextInput, TextInputProps, TextStyle } from 'react-native';\nimport { FloatingLabel } from './floatinglabel.component';\n\ninterface SelectRange {\n start: number,\n end: number\n}\n\nexport const WMTextInput = React.forwardRef((props: (TextInputProps & \n {allowContentSelection: boolean, \n floatingLabel: string\n floatingLabelStyle: TextStyle,\n activeFloatingLabelStyle: TextStyle\n }), \n ref: ForwardedRef<TextInput>) => {\n const [selectRange, setSelectRange] = useState<SelectRange>(null as any);\n const [isInputFocused, setIsInputFocused] = useState(false);\n const value = useRef(props.value || '');\n \n const animateLabelText = props.floatingLabel && ( Platform.OS === 'web' ? Number(props.value?.length) > 0 : Number(props.defaultValue?.length) > 0);\n\n const onSelectionChange = useCallback((e: any) => {\n if (Platform.OS !== 'android') {\n return;\n }\n const selection = e?.nativeEvent?.selection;\n if (!props.allowContentSelection\n && selection\n && selection.end - selection.start > 0) {\n setSelectRange({\n start: value.current.length + 2,\n end: value.current.length + 2\n });\n } else if (selectRange && selectRange.end > 0){\n setSelectRange(null as any);\n }\n }, [props.allowContentSelection, value.current]);\n const onChangeText = useCallback((text: string) => {\n value.current = text;\n }, []);\n\n return (\n <>\n {props.floatingLabel ? (\n <FloatingLabel\n moveUp={!!(value.current || isInputFocused)}\n label={props.floatingLabel ?? props.placeholder} \n style={{\n ...(props.floatingLabelStyle || []),\n ...(isInputFocused ? (props.activeFloatingLabelStyle || {}) : {})\n }}/>\n ) : null}\n <TextInput\n {...props}\n placeholder={props.floatingLabel ? '' : props.placeholder }\n style={props.style}\n onFocus={(e) => {\n props.onFocus?.(e);\n setIsInputFocused(true);\n }}\n onBlur={(e) => {\n props?.onBlur?.(e);\n setIsInputFocused(false);\n }}\n ref={ref}\n selection={selectRange}\n onSelectionChange={onSelectionChange}\n caretHidden={!!selectRange?.end}\n onChangeText={(text) => {\n props.onChangeText && props.onChangeText(text);\n onChangeText(text);\n }}\n contextMenuHidden={!props.allowContentSelection}\n ></TextInput>\n </>\n );\n});"],"mappings":"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"}
@@ -0,0 +1,50 @@
1
+ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
2
+ function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
3
+ function _toPrimitive(input, hint) { if (typeof input !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (typeof res !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
4
+ export default class EventNotifier {
5
+ constructor() {
6
+ _defineProperty(this, "listeners", {});
7
+ _defineProperty(this, "parent", null);
8
+ _defineProperty(this, "children", []);
9
+ }
10
+ setParent(parent) {
11
+ if (parent !== this.parent) {
12
+ this.parent = parent;
13
+ this.parent.children.push(this);
14
+ }
15
+ }
16
+ notify(event, args) {
17
+ let propagate = true;
18
+ if (this.listeners[event]) {
19
+ propagate = !this.listeners[event].find(l => {
20
+ try {
21
+ return (l && l.apply(null, args)) === false;
22
+ } catch (e) {
23
+ console.error(e);
24
+ }
25
+ return true;
26
+ });
27
+ }
28
+ if (propagate) {
29
+ this.children.forEach(c => {
30
+ c.notify(event, args);
31
+ });
32
+ }
33
+ }
34
+ subscribe(event, fn) {
35
+ this.listeners[event] = this.listeners[event] || [];
36
+ this.listeners[event].push(fn);
37
+ return () => {
38
+ const eventListeners = this.listeners[event];
39
+ const i = eventListeners.findIndex(fni => fni === fn);
40
+ eventListeners.splice(i, 1);
41
+ };
42
+ }
43
+ destroy() {
44
+ if (this.parent) {
45
+ const i = this.parent.children.indexOf(this) || -1;
46
+ this.parent.children.splice(i, 1);
47
+ }
48
+ }
49
+ }
50
+ //# sourceMappingURL=event-notifier.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["EventNotifier","constructor","_defineProperty","setParent","parent","children","push","notify","event","args","propagate","listeners","find","l","apply","e","console","error","forEach","c","subscribe","fn","eventListeners","i","findIndex","fni","splice","destroy","indexOf"],"sources":["event-notifier.ts"],"sourcesContent":["export default class EventNotifier {\n private listeners = {} as any;\n private parent: EventNotifier = null as any;\n private children: EventNotifier[] = [];\n\n setParent(parent: EventNotifier) {\n if (parent !== this.parent) {\n this.parent = parent;\n this.parent.children.push(this);\n }\n }\n\n public notify(event: string, args: any[]) {\n let propagate = true;\n if (this.listeners[event]) {\n propagate = !this.listeners[event].find((l: Function) => {\n try {\n return (l && l.apply(null, args)) === false;\n } catch(e) {\n console.error(e);\n }\n return true;\n });\n }\n if (propagate) {\n this.children.forEach((c) => {\n c.notify(event, args);\n });\n }\n }\n\n public subscribe(event: string, fn: Function) {\n this.listeners[event] = this.listeners[event] || [];\n this.listeners[event].push(fn);\n return () => {\n const eventListeners = this.listeners[event];\n const i = eventListeners.findIndex((fni: Function) => fni === fn);\n eventListeners.splice(i, 1);\n };\n }\n\n public destroy() {\n if (this.parent) {\n const i = this.parent.children.indexOf(this) || -1;\n this.parent.children.splice(i, 1);\n }\n }\n}"],"mappings":";;;AAAA,eAAe,MAAMA,aAAa,CAAC;EAAAC,YAAA;IAAAC,eAAA,oBACX,CAAC,CAAC;IAAAA,eAAA,iBACU,IAAI;IAAAA,eAAA,mBACA,EAAE;EAAA;EAEtCC,SAASA,CAACC,MAAqB,EAAE;IAC7B,IAAIA,MAAM,KAAK,IAAI,CAACA,MAAM,EAAE;MACxB,IAAI,CAACA,MAAM,GAAGA,MAAM;MACpB,IAAI,CAACA,MAAM,CAACC,QAAQ,CAACC,IAAI,CAAC,IAAI,CAAC;IACnC;EACJ;EAEOC,MAAMA,CAACC,KAAa,EAAEC,IAAW,EAAE;IACtC,IAAIC,SAAS,GAAG,IAAI;IACpB,IAAI,IAAI,CAACC,SAAS,CAACH,KAAK,CAAC,EAAE;MACvBE,SAAS,GAAG,CAAC,IAAI,CAACC,SAAS,CAACH,KAAK,CAAC,CAACI,IAAI,CAAEC,CAAW,IAAK;QACrD,IAAI;UACA,OAAO,CAACA,CAAC,IAAIA,CAAC,CAACC,KAAK,CAAC,IAAI,EAAEL,IAAI,CAAC,MAAM,KAAK;QAC/C,CAAC,CAAC,OAAMM,CAAC,EAAE;UACPC,OAAO,CAACC,KAAK,CAACF,CAAC,CAAC;QACpB;QACA,OAAO,IAAI;MACf,CAAC,CAAC;IACN;IACA,IAAIL,SAAS,EAAE;MACX,IAAI,CAACL,QAAQ,CAACa,OAAO,CAAEC,CAAC,IAAK;QACzBA,CAAC,CAACZ,MAAM,CAACC,KAAK,EAAEC,IAAI,CAAC;MACzB,CAAC,CAAC;IACN;EACJ;EAEOW,SAASA,CAACZ,KAAa,EAAEa,EAAY,EAAE;IAC1C,IAAI,CAACV,SAAS,CAACH,KAAK,CAAC,GAAG,IAAI,CAACG,SAAS,CAACH,KAAK,CAAC,IAAI,EAAE;IACnD,IAAI,CAACG,SAAS,CAACH,KAAK,CAAC,CAACF,IAAI,CAACe,EAAE,CAAC;IAC9B,OAAO,MAAM;MACT,MAAMC,cAAc,GAAG,IAAI,CAACX,SAAS,CAACH,KAAK,CAAC;MAC5C,MAAMe,CAAC,GAAGD,cAAc,CAACE,SAAS,CAAEC,GAAa,IAAKA,GAAG,KAAKJ,EAAE,CAAC;MACjEC,cAAc,CAACI,MAAM,CAACH,CAAC,EAAE,CAAC,CAAC;IAC/B,CAAC;EACL;EAEOI,OAAOA,CAAA,EAAG;IACb,IAAI,IAAI,CAACvB,MAAM,EAAE;MACb,MAAMmB,CAAC,GAAG,IAAI,CAACnB,MAAM,CAACC,QAAQ,CAACuB,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;MAClD,IAAI,CAACxB,MAAM,CAACC,QAAQ,CAACqB,MAAM,CAACH,CAAC,EAAE,CAAC,CAAC;IACrC;EACJ;AACJ"}
@@ -0,0 +1,109 @@
1
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
2
+ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
3
+ function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
4
+ function _toPrimitive(input, hint) { if (typeof input !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (typeof res !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
5
+ import React from "react";
6
+ import { Platform, View } from "react-native";
7
+ import { get } from "lodash";
8
+ import injector from "./injector";
9
+ import { TouchableRipple } from "react-native-paper";
10
+ export class TapEvent {
11
+ constructor() {
12
+ _defineProperty(this, "propagationEnabled", true);
13
+ }
14
+ stopPropagation() {
15
+ this.propagationEnabled = false;
16
+ }
17
+ }
18
+ export class Tappable extends React.Component {
19
+ constructor(props) {
20
+ super(props);
21
+ _defineProperty(this, "lastPress", 0);
22
+ _defineProperty(this, "lastTap", 0);
23
+ _defineProperty(this, "lastDoubleTap", 0);
24
+ _defineProperty(this, "isLongTap", false);
25
+ }
26
+ onPress(e) {
27
+ var _this$props$target;
28
+ this.lastPress = Date.now();
29
+ const target = this.props.target;
30
+ if (!Tappable.CURRENT_EVENT) {
31
+ Tappable.CURRENT_EVENT = new TapEvent();
32
+ setTimeout(() => {
33
+ Tappable.CURRENT_EVENT = null;
34
+ }, 10);
35
+ }
36
+ const syntheticEvent = Tappable.CURRENT_EVENT;
37
+ this.props.onTouchStart && this.props.onTouchStart(e || syntheticEvent);
38
+ (_this$props$target = this.props.target) === null || _this$props$target === void 0 ? void 0 : _this$props$target.invokeEventCallback('onTouchstart', [syntheticEvent, this.props.target]);
39
+ const currentTime = Date.now();
40
+ const tapDelta = currentTime - this.lastTap;
41
+ if (this.isLongTap) {
42
+ this.isLongTap = false;
43
+ return;
44
+ }
45
+ if (syntheticEvent.propagationEnabled) {
46
+ var _injector$FOCUSED_ELE;
47
+ (_injector$FOCUSED_ELE = injector.FOCUSED_ELEMENT.get()) === null || _injector$FOCUSED_ELE === void 0 ? void 0 : _injector$FOCUSED_ELE.blur();
48
+ if (this.lastDoubleTap !== this.lastTap && tapDelta < 500) {
49
+ this.props.onDoubleTap && this.props.onDoubleTap(e);
50
+ setTimeout(() => {
51
+ target === null || target === void 0 ? void 0 : target.invokeEventCallback('onDoubletap', [syntheticEvent, target]);
52
+ }, 200);
53
+ this.lastDoubleTap = currentTime;
54
+ }
55
+ setTimeout(() => {
56
+ if (this.props.onTap) {
57
+ this.props.onTap(e || syntheticEvent);
58
+ } else {
59
+ target === null || target === void 0 ? void 0 : target.invokeEventCallback('onTap', [syntheticEvent, target]);
60
+ }
61
+ }, 200);
62
+ this.lastTap = currentTime;
63
+ }
64
+ }
65
+ onLongTap(e) {
66
+ const syntheticEvent = Tappable.CURRENT_EVENT;
67
+ this.props.onLongTap && this.props.onLongTap(e || syntheticEvent);
68
+ setTimeout(() => {
69
+ var _this$props$target2;
70
+ (_this$props$target2 = this.props.target) === null || _this$props$target2 === void 0 ? void 0 : _this$props$target2.invokeEventCallback('onLongtap', [syntheticEvent, this.props.target]);
71
+ }, 200);
72
+ this.isLongTap = true;
73
+ }
74
+ onPressOut(e) {
75
+ const syntheticEvent = Tappable.CURRENT_EVENT;
76
+ this.props.onTouchEnd && this.props.onTouchEnd(e || syntheticEvent);
77
+ setTimeout(() => {
78
+ var _this$props$target3;
79
+ (_this$props$target3 = this.props.target) === null || _this$props$target3 === void 0 ? void 0 : _this$props$target3.invokeEventCallback('onTouchend', [syntheticEvent, this.props.target]);
80
+ }, 200);
81
+ this.isLongTap = false;
82
+ }
83
+ render() {
84
+ const target = this.props.target;
85
+ if (target !== null && target !== void 0 && target.props.onTap || target !== null && target !== void 0 && target.props.onLongtap || target !== null && target !== void 0 && target.props.onDoubletap || this.props.onTap || this.props.onLongTap || this.props.onDoubleTap) {
86
+ return /*#__PURE__*/React.createElement(TouchableRipple, _extends({
87
+ rippleColor: this.props.rippleColor,
88
+ borderless: true
89
+ }, Platform.OS === 'android' || Platform.OS === 'web' ? {
90
+ accessibilityLabel: this.props.testID,
91
+ testID: this.props.testID
92
+ } : {
93
+ // accessible: false,
94
+ testID: this.props.testID
95
+ }, {
96
+ disabled: get(target === null || target === void 0 ? void 0 : target.proxy, 'disabled'),
97
+ style: this.props.styles,
98
+ onPress: () => this.onPress(),
99
+ onLongPress: () => this.onLongTap(),
100
+ onPressOut: () => this.onPressOut()
101
+ }), /*#__PURE__*/React.createElement(React.Fragment, null, this.props.children));
102
+ }
103
+ return /*#__PURE__*/React.createElement(View, {
104
+ style: this.props.styles
105
+ }, this.props.children);
106
+ }
107
+ }
108
+ _defineProperty(Tappable, "CURRENT_EVENT", null);
109
+ //# sourceMappingURL=tappable.component.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["React","Platform","View","get","injector","TouchableRipple","TapEvent","constructor","_defineProperty","stopPropagation","propagationEnabled","Tappable","Component","props","onPress","e","_this$props$target","lastPress","Date","now","target","CURRENT_EVENT","setTimeout","syntheticEvent","onTouchStart","invokeEventCallback","currentTime","tapDelta","lastTap","isLongTap","_injector$FOCUSED_ELE","FOCUSED_ELEMENT","blur","lastDoubleTap","onDoubleTap","onTap","onLongTap","_this$props$target2","onPressOut","onTouchEnd","_this$props$target3","render","onLongtap","onDoubletap","createElement","_extends","rippleColor","borderless","OS","accessibilityLabel","testID","disabled","proxy","style","styles","onLongPress","Fragment","children"],"sources":["tappable.component.tsx"],"sourcesContent":["import { BaseComponent } from \"@wavemaker/app-rn-runtime/core/base.component\";\nimport React from \"react\";\nimport { GestureResponderEvent, Platform, View } from \"react-native\";\nimport { get } from \"lodash\";\nimport injector from \"./injector\";\nimport { TouchableRipple } from \"react-native-paper\";\nimport ThemeVariables from \"../styles/theme.variables\";\n\n\ninterface TappableProps {\n testID?: string;\n children?: any\n styles?: any;\n target?: BaseComponent<any, any, any>;\n onTap?: (e: any) => void;\n onLongTap?: (e: any) => void; \n onDoubleTap?: (e: any) => void;\n onTouchStart? : (e: any) => void;\n onTouchEnd? : (e: any) => void;\n rippleColor?: string;\n}\n\nexport class TapEvent {\n propagationEnabled = true;\n \n constructor() {\n\n }\n\n stopPropagation() {\n this.propagationEnabled = false;\n }\n}\n\nexport class Tappable extends React.Component<TappableProps, any> {\n private lastPress = 0;\n private lastTap = 0;\n private lastDoubleTap = 0;\n private isLongTap = false;\n\n static CURRENT_EVENT: TapEvent = null as any;\n \n constructor(props: any) {\n super(props);\n }\n\n onPress(e?: GestureResponderEvent): void { \n this.lastPress = Date.now();\n const target = this.props.target;\n if (!Tappable.CURRENT_EVENT) {\n Tappable.CURRENT_EVENT = new TapEvent();\n setTimeout(() => {\n Tappable.CURRENT_EVENT = null as any;\n }, 10);\n }\n const syntheticEvent = Tappable.CURRENT_EVENT;\n this.props.onTouchStart && this.props.onTouchStart(e || syntheticEvent);\n this.props.target?.invokeEventCallback('onTouchstart', [syntheticEvent, this.props.target]);\n const currentTime = Date.now();\n const tapDelta = currentTime - this.lastTap;\n if (this.isLongTap) {\n this.isLongTap = false;\n return;\n }\n if (syntheticEvent.propagationEnabled) {\n injector.FOCUSED_ELEMENT.get()?.blur();\n if(this.lastDoubleTap !== this.lastTap \n && tapDelta < 500) {\n this.props.onDoubleTap && this.props.onDoubleTap(e);\n setTimeout(() => {\n target?.invokeEventCallback('onDoubletap', [syntheticEvent, target]);\n }, 200);\n this.lastDoubleTap = currentTime;\n }\n setTimeout(() => {\n if (this.props.onTap) {\n this.props.onTap(e || syntheticEvent);\n } else {\n target?.invokeEventCallback('onTap', [syntheticEvent, target]);\n }\n }, 200);\n this.lastTap = currentTime;\n }\n }\n\n onLongTap(e?: GestureResponderEvent): void {\n const syntheticEvent = Tappable.CURRENT_EVENT;\n this.props.onLongTap && this.props.onLongTap(e || syntheticEvent);\n setTimeout(() => {\n this.props.target?.invokeEventCallback('onLongtap', [syntheticEvent, this.props.target]);\n }, 200);\n this.isLongTap = true;\n }\n \n onPressOut(e?: GestureResponderEvent): void {\n const syntheticEvent = Tappable.CURRENT_EVENT;\n this.props.onTouchEnd && this.props.onTouchEnd(e || syntheticEvent);\n setTimeout(() => {\n this.props.target?.invokeEventCallback('onTouchend', [syntheticEvent, this.props.target]);\n }, 200);\n this.isLongTap = false;\n }\n\n render() {\n const target = this.props.target;\n if (target?.props.onTap \n || target?.props.onLongtap \n || target?.props.onDoubletap \n || this.props.onTap \n || this.props.onLongTap \n || this.props.onDoubleTap) {\n return (\n <TouchableRipple\n rippleColor={this.props.rippleColor}\n borderless = {true}\n {...(Platform.OS === 'android' || Platform.OS === 'web') ? {\n accessibilityLabel: this.props.testID,\n testID: this.props.testID\n }: {\n // accessible: false,\n testID: this.props.testID\n }} \n disabled={get(target?.proxy, 'disabled')}\n style={this.props.styles}\n onPress={() => this.onPress()}\n onLongPress={() => this.onLongTap()}\n onPressOut={() => this.onPressOut()}>\n <>{this.props.children}</>\n </TouchableRipple>\n );\n }\n return (<View style={this.props.styles}>{this.props.children}</View>);\n }\n}\n"],"mappings":"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"}