@wavemaker/app-rn-runtime 11.4.3-next.30202 → 11.4.3-patch.2

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 (1045) hide show
  1. package/components/advanced/carousel/carousel.component.js +209 -0
  2. package/components/advanced/carousel/carousel.component.js.map +1 -0
  3. package/components/advanced/login/login.component.js +39 -0
  4. package/components/advanced/login/login.component.js.map +1 -0
  5. package/components/advanced/network-info-toaster/network-info-toaster.component.js +114 -0
  6. package/components/advanced/network-info-toaster/network-info-toaster.component.js.map +1 -0
  7. package/components/advanced/webview/webview.component.js +130 -0
  8. package/components/advanced/webview/webview.component.js.map +1 -0
  9. package/components/basic/anchor/anchor.component.js +71 -0
  10. package/components/basic/anchor/anchor.component.js.map +1 -0
  11. package/components/basic/animatedview.component.js +214 -0
  12. package/components/basic/animatedview.component.js.map +1 -0
  13. package/components/basic/audio/audio.component.js +245 -0
  14. package/components/basic/audio/audio.component.js.map +1 -0
  15. package/components/basic/button/button.component.js +53 -0
  16. package/components/basic/button/button.component.js.map +1 -0
  17. package/components/basic/button/button.styles.js +134 -0
  18. package/components/basic/button/button.styles.js.map +1 -0
  19. package/components/basic/buttongroup/buttongroup.styles.js +51 -0
  20. package/components/basic/buttongroup/buttongroup.styles.js.map +1 -0
  21. package/components/basic/icon/icon.component.js +198 -0
  22. package/components/basic/icon/icon.component.js.map +1 -0
  23. package/components/basic/icon/icon.props.js +19 -0
  24. package/components/basic/icon/icon.props.js.map +1 -0
  25. package/components/basic/label/label.component.js +122 -0
  26. package/components/basic/label/label.component.js.map +1 -0
  27. package/components/basic/label/label.styles.js +123 -0
  28. package/components/basic/label/label.styles.js.map +1 -0
  29. package/components/basic/message/message.component.js +76 -0
  30. package/components/basic/message/message.component.js.map +1 -0
  31. package/components/basic/picture/picture.component.js +189 -0
  32. package/components/basic/picture/picture.component.js.map +1 -0
  33. package/components/basic/progress-bar/progress-bar.component.js +38 -0
  34. package/components/basic/progress-bar/progress-bar.component.js.map +1 -0
  35. package/components/basic/progress-bar/progress-bar.styles.js +29 -0
  36. package/components/basic/progress-bar/progress-bar.styles.js.map +1 -0
  37. package/components/basic/progress-circle/progress-circle.component.js +76 -0
  38. package/components/basic/progress-circle/progress-circle.component.js.map +1 -0
  39. package/components/basic/search/search.component.js +417 -0
  40. package/components/basic/search/search.component.js.map +1 -0
  41. package/components/basic/search/search.styles.js +172 -0
  42. package/components/basic/search/search.styles.js.map +1 -0
  43. package/components/basic/spinner/spinner.component.js +91 -0
  44. package/components/basic/spinner/spinner.component.js.map +1 -0
  45. package/components/basic/spinner/spinner.styles.js +40 -0
  46. package/components/basic/spinner/spinner.styles.js.map +1 -0
  47. package/components/basic/video/video.component.js +57 -0
  48. package/components/basic/video/video.component.js.map +1 -0
  49. package/components/chart/pie-chart/pie-chart.component.js +212 -0
  50. package/components/chart/pie-chart/pie-chart.component.js.map +1 -0
  51. package/components/chart/pie-chart/pie-chart.props.js +14 -0
  52. package/components/chart/pie-chart/pie-chart.props.js.map +1 -0
  53. package/components/container/accordion/accordion.component.js +145 -0
  54. package/components/container/accordion/accordion.component.js.map +1 -0
  55. package/components/container/accordion/accordionpane/accordionpane.component.js +75 -0
  56. package/components/container/accordion/accordionpane/accordionpane.component.js.map +1 -0
  57. package/components/container/container.component.js +38 -0
  58. package/components/container/container.component.js.map +1 -0
  59. package/components/container/panel/collapsible-pane.component.js +26 -0
  60. package/components/container/panel/collapsible-pane.component.js.map +1 -0
  61. package/components/container/panel/panel.component.js +109 -0
  62. package/components/container/panel/panel.component.js.map +1 -0
  63. package/components/container/panel/panel.styles.js +105 -0
  64. package/components/container/panel/panel.styles.js.map +1 -0
  65. package/components/container/tabs/tabheader/tabheader.component.js +184 -0
  66. package/components/container/tabs/tabheader/tabheader.component.js.map +1 -0
  67. package/components/container/tabs/tabheader/tabheader.styles.js +68 -0
  68. package/components/container/tabs/tabheader/tabheader.styles.js.map +1 -0
  69. package/components/container/tabs/tabs.component.js +230 -0
  70. package/components/container/tabs/tabs.component.js.map +1 -0
  71. package/components/container/tile/tile.component.js +22 -0
  72. package/components/container/tile/tile.component.js.map +1 -0
  73. package/components/container/wizard/wizard.component.js +181 -0
  74. package/components/container/wizard/wizard.component.js.map +1 -0
  75. package/components/container/wizard/wizard.styles.js +194 -0
  76. package/components/container/wizard/wizard.styles.js.map +1 -0
  77. package/components/data/card/card.component.js +68 -0
  78. package/components/data/card/card.component.js.map +1 -0
  79. package/components/data/form/form-action/form-action.component.js +34 -0
  80. package/components/data/form/form-action/form-action.component.js.map +1 -0
  81. package/components/data/form/form-field/form-field.component.js +226 -0
  82. package/components/data/form/form-field/form-field.component.js.map +1 -0
  83. package/components/data/form/form.component.js +399 -0
  84. package/components/data/form/form.component.js.map +1 -0
  85. package/components/data/list/list-template/list-template.styles.js +26 -0
  86. package/components/data/list/list-template/list-template.styles.js.map +1 -0
  87. package/components/data/list/list.component.js +313 -0
  88. package/components/data/list/list.component.js.map +1 -0
  89. package/components/data/list/list.styles.js +129 -0
  90. package/components/data/list/list.styles.js.map +1 -0
  91. package/components/device/barcodescanner/barcodescanner.component.js +47 -0
  92. package/components/device/barcodescanner/barcodescanner.component.js.map +1 -0
  93. package/components/device/barcodescanner/barcodescanner.styles.js +31 -0
  94. package/components/device/barcodescanner/barcodescanner.styles.js.map +1 -0
  95. package/components/device/camera/camera.component.js +65 -0
  96. package/components/device/camera/camera.component.js.map +1 -0
  97. package/components/device/camera/camera.styles.js +31 -0
  98. package/components/device/camera/camera.styles.js.map +1 -0
  99. package/components/dialogs/alertdialog/alertdialog.component.js +67 -0
  100. package/components/dialogs/alertdialog/alertdialog.component.js.map +1 -0
  101. package/components/dialogs/alertdialog/alertdialog.styles.js +33 -0
  102. package/components/dialogs/alertdialog/alertdialog.styles.js.map +1 -0
  103. package/components/dialogs/confirmdialog/confirmdialog.component.js +73 -0
  104. package/components/dialogs/confirmdialog/confirmdialog.component.js.map +1 -0
  105. package/components/dialogs/confirmdialog/confirmdialog.styles.js +58 -0
  106. package/components/dialogs/confirmdialog/confirmdialog.styles.js.map +1 -0
  107. package/components/dialogs/dialog/dialog.component.js +94 -0
  108. package/components/dialogs/dialog/dialog.component.js.map +1 -0
  109. package/components/dialogs/dialog/dialog.styles.js +70 -0
  110. package/components/dialogs/dialog/dialog.styles.js.map +1 -0
  111. package/components/input/calendar/calendar.component.js +139 -0
  112. package/components/input/calendar/calendar.component.js.map +1 -0
  113. package/components/input/calendar/calendar.styles.js +143 -0
  114. package/components/input/calendar/calendar.styles.js.map +1 -0
  115. package/components/input/calendar/views/month-view.js +195 -0
  116. package/components/input/calendar/views/month-view.js.map +1 -0
  117. package/components/input/checkbox/checkbox.component.js +95 -0
  118. package/components/input/checkbox/checkbox.component.js.map +1 -0
  119. package/components/input/checkboxset/checkboxset.component.js +92 -0
  120. package/components/input/checkboxset/checkboxset.component.js.map +1 -0
  121. package/components/input/chips/chips.component.js +270 -0
  122. package/components/input/chips/chips.component.js.map +1 -0
  123. package/components/input/chips/chips.styles.js +93 -0
  124. package/components/input/chips/chips.styles.js.map +1 -0
  125. package/components/input/currency/currency.component.js +70 -0
  126. package/components/input/currency/currency.component.js.map +1 -0
  127. package/components/input/currency/currency.styles.js +72 -0
  128. package/components/input/currency/currency.styles.js.map +1 -0
  129. package/components/input/epoch/base-datetime.component.js +274 -0
  130. package/components/input/epoch/base-datetime.component.js.map +1 -0
  131. package/components/input/fileupload/fileupload.component.js +56 -0
  132. package/components/input/fileupload/fileupload.component.js.map +1 -0
  133. package/components/input/number/number.component.js +52 -0
  134. package/components/input/number/number.component.js.map +1 -0
  135. package/components/input/number/number.styles.js +42 -0
  136. package/components/input/number/number.styles.js.map +1 -0
  137. package/components/input/radioset/radioset.component.js +61 -0
  138. package/components/input/radioset/radioset.component.js.map +1 -0
  139. package/components/input/rating/rating.component.js +144 -0
  140. package/components/input/rating/rating.component.js.map +1 -0
  141. package/components/input/select/select.component.js +185 -0
  142. package/components/input/select/select.component.js.map +1 -0
  143. package/components/input/select/select.styles.js +101 -0
  144. package/components/input/select/select.styles.js.map +1 -0
  145. package/components/input/slider/slider.component.js +148 -0
  146. package/components/input/slider/slider.component.js.map +1 -0
  147. package/components/input/slider/slider.styles.js +58 -0
  148. package/components/input/slider/slider.styles.js.map +1 -0
  149. package/components/input/switch/switch.component.js +73 -0
  150. package/components/input/switch/switch.component.js.map +1 -0
  151. package/components/input/switch/switch.styles.js +117 -0
  152. package/components/input/switch/switch.styles.js.map +1 -0
  153. package/components/input/text/text.component.js +47 -0
  154. package/components/input/text/text.component.js.map +1 -0
  155. package/components/input/text/text.styles.js +48 -0
  156. package/components/input/text/text.styles.js.map +1 -0
  157. package/components/input/textarea/textarea.component.js +48 -0
  158. package/components/input/textarea/textarea.component.js.map +1 -0
  159. package/components/input/toggle/toggle.component.js +95 -0
  160. package/components/input/toggle/toggle.component.js.map +1 -0
  161. package/components/input/toggle/toggle.styles.js +55 -0
  162. package/components/input/toggle/toggle.styles.js.map +1 -0
  163. package/components/navigation/appnavbar/appnavbar.component.js +57 -0
  164. package/components/navigation/appnavbar/appnavbar.component.js.map +1 -0
  165. package/components/navigation/appnavbar/appnavbar.styles.js +160 -0
  166. package/components/navigation/appnavbar/appnavbar.styles.js.map +1 -0
  167. package/components/navigation/menu/menu.component.js +63 -0
  168. package/components/navigation/menu/menu.component.js.map +1 -0
  169. package/components/navigation/menu/menu.styles.js +71 -0
  170. package/components/navigation/menu/menu.styles.js.map +1 -0
  171. package/components/navigation/navbar/navbar.component.js +77 -0
  172. package/components/navigation/navbar/navbar.component.js.map +1 -0
  173. package/components/navigation/navitem/navitem.component.js +66 -0
  174. package/components/navigation/navitem/navitem.component.js.map +1 -0
  175. package/components/navigation/navitem/navitem.styles.js +80 -0
  176. package/components/navigation/navitem/navitem.styles.js.map +1 -0
  177. package/components/navigation/popover/popover.component.js +129 -0
  178. package/components/navigation/popover/popover.component.js.map +1 -0
  179. package/components/navigation/popover/popover.styles.js +75 -0
  180. package/components/navigation/popover/popover.styles.js.map +1 -0
  181. package/components/page/left-panel/left-panel.styles.js +18 -0
  182. package/components/page/left-panel/left-panel.styles.js.map +1 -0
  183. package/components/page/tabbar/tabbar.component.js +103 -0
  184. package/components/page/tabbar/tabbar.component.js.map +1 -0
  185. package/core/base.component.js +425 -0
  186. package/core/base.component.js.map +1 -0
  187. package/core/formatters.js +61 -0
  188. package/core/formatters.js.map +1 -0
  189. package/core/tappable.component.js +82 -0
  190. package/core/tappable.component.js.map +1 -0
  191. package/core/testid.provider.js +5 -0
  192. package/core/testid.provider.js.map +1 -0
  193. package/package.json +244 -0
  194. package/runtime/App.js +485 -0
  195. package/runtime/App.js.map +1 -0
  196. package/runtime/base-fragment.component.js +340 -0
  197. package/runtime/base-fragment.component.js.map +1 -0
  198. package/runtime/services/device/camera-service.js +349 -0
  199. package/runtime/services/device/camera-service.js.map +1 -0
  200. package/runtime/services/device/scan-service.js +136 -0
  201. package/runtime/services/device/scan-service.js.map +1 -0
  202. package/styles/theme.variables.js +403 -0
  203. package/styles/theme.variables.js.map +1 -0
  204. app-rn-runtime/components/advanced/carousel/carousel.component.js +0 -201
  205. app-rn-runtime/components/advanced/carousel/carousel.component.js.map +0 -1
  206. app-rn-runtime/components/advanced/login/login.component.js +0 -38
  207. app-rn-runtime/components/advanced/login/login.component.js.map +0 -1
  208. app-rn-runtime/components/advanced/network-info-toaster/network-info-toaster.component.js +0 -113
  209. app-rn-runtime/components/advanced/network-info-toaster/network-info-toaster.component.js.map +0 -1
  210. app-rn-runtime/components/advanced/webview/webview.component.js +0 -129
  211. app-rn-runtime/components/advanced/webview/webview.component.js.map +0 -1
  212. app-rn-runtime/components/basic/anchor/anchor.component.js +0 -69
  213. app-rn-runtime/components/basic/anchor/anchor.component.js.map +0 -1
  214. app-rn-runtime/components/basic/animatedview.component.js +0 -164
  215. app-rn-runtime/components/basic/animatedview.component.js.map +0 -1
  216. app-rn-runtime/components/basic/audio/audio.component.js +0 -240
  217. app-rn-runtime/components/basic/audio/audio.component.js.map +0 -1
  218. app-rn-runtime/components/basic/button/button.component.js +0 -52
  219. app-rn-runtime/components/basic/button/button.component.js.map +0 -1
  220. app-rn-runtime/components/basic/button/button.styles.js +0 -124
  221. app-rn-runtime/components/basic/button/button.styles.js.map +0 -1
  222. app-rn-runtime/components/basic/buttongroup/buttongroup.styles.js +0 -50
  223. app-rn-runtime/components/basic/buttongroup/buttongroup.styles.js.map +0 -1
  224. app-rn-runtime/components/basic/icon/icon.component.js +0 -195
  225. app-rn-runtime/components/basic/icon/icon.component.js.map +0 -1
  226. app-rn-runtime/components/basic/icon/icon.props.js +0 -18
  227. app-rn-runtime/components/basic/icon/icon.props.js.map +0 -1
  228. app-rn-runtime/components/basic/label/label.component.js +0 -65
  229. app-rn-runtime/components/basic/label/label.component.js.map +0 -1
  230. app-rn-runtime/components/basic/label/label.styles.js +0 -122
  231. app-rn-runtime/components/basic/label/label.styles.js.map +0 -1
  232. app-rn-runtime/components/basic/message/message.component.js +0 -73
  233. app-rn-runtime/components/basic/message/message.component.js.map +0 -1
  234. app-rn-runtime/components/basic/picture/picture.component.js +0 -187
  235. app-rn-runtime/components/basic/picture/picture.component.js.map +0 -1
  236. app-rn-runtime/components/basic/progress-bar/progress-bar.component.js +0 -36
  237. app-rn-runtime/components/basic/progress-bar/progress-bar.component.js.map +0 -1
  238. app-rn-runtime/components/basic/progress-bar/progress-bar.styles.js +0 -29
  239. app-rn-runtime/components/basic/progress-bar/progress-bar.styles.js.map +0 -1
  240. app-rn-runtime/components/basic/progress-circle/progress-circle.component.js +0 -75
  241. app-rn-runtime/components/basic/progress-circle/progress-circle.component.js.map +0 -1
  242. app-rn-runtime/components/basic/search/search.component.js +0 -413
  243. app-rn-runtime/components/basic/search/search.component.js.map +0 -1
  244. app-rn-runtime/components/basic/search/search.styles.js +0 -171
  245. app-rn-runtime/components/basic/search/search.styles.js.map +0 -1
  246. app-rn-runtime/components/basic/spinner/spinner.component.js +0 -87
  247. app-rn-runtime/components/basic/spinner/spinner.component.js.map +0 -1
  248. app-rn-runtime/components/basic/spinner/spinner.styles.js +0 -39
  249. app-rn-runtime/components/basic/spinner/spinner.styles.js.map +0 -1
  250. app-rn-runtime/components/basic/video/video.component.js +0 -56
  251. app-rn-runtime/components/basic/video/video.component.js.map +0 -1
  252. app-rn-runtime/components/chart/pie-chart/pie-chart.component.js +0 -191
  253. app-rn-runtime/components/chart/pie-chart/pie-chart.component.js.map +0 -1
  254. app-rn-runtime/components/chart/pie-chart/pie-chart.props.js +0 -13
  255. app-rn-runtime/components/chart/pie-chart/pie-chart.props.js.map +0 -1
  256. app-rn-runtime/components/container/accordion/accordion.component.js +0 -142
  257. app-rn-runtime/components/container/accordion/accordion.component.js.map +0 -1
  258. app-rn-runtime/components/container/accordion/accordionpane/accordionpane.component.js +0 -94
  259. app-rn-runtime/components/container/accordion/accordionpane/accordionpane.component.js.map +0 -1
  260. app-rn-runtime/components/container/container.component.js +0 -37
  261. app-rn-runtime/components/container/container.component.js.map +0 -1
  262. app-rn-runtime/components/container/panel/panel.component.js +0 -127
  263. app-rn-runtime/components/container/panel/panel.component.js.map +0 -1
  264. app-rn-runtime/components/container/panel/panel.styles.js +0 -98
  265. app-rn-runtime/components/container/panel/panel.styles.js.map +0 -1
  266. app-rn-runtime/components/container/tabs/tabheader/tabheader.component.js +0 -182
  267. app-rn-runtime/components/container/tabs/tabheader/tabheader.component.js.map +0 -1
  268. app-rn-runtime/components/container/tabs/tabheader/tabheader.styles.js +0 -64
  269. app-rn-runtime/components/container/tabs/tabheader/tabheader.styles.js.map +0 -1
  270. app-rn-runtime/components/container/tabs/tabs.component.js +0 -229
  271. app-rn-runtime/components/container/tabs/tabs.component.js.map +0 -1
  272. app-rn-runtime/components/container/tile/tile.component.js +0 -21
  273. app-rn-runtime/components/container/tile/tile.component.js.map +0 -1
  274. app-rn-runtime/components/container/wizard/wizard.component.js +0 -176
  275. app-rn-runtime/components/container/wizard/wizard.component.js.map +0 -1
  276. app-rn-runtime/components/container/wizard/wizard.styles.js +0 -183
  277. app-rn-runtime/components/container/wizard/wizard.styles.js.map +0 -1
  278. app-rn-runtime/components/data/card/card.component.js +0 -67
  279. app-rn-runtime/components/data/card/card.component.js.map +0 -1
  280. app-rn-runtime/components/data/form/form-action/form-action.component.js +0 -33
  281. app-rn-runtime/components/data/form/form-action/form-action.component.js.map +0 -1
  282. app-rn-runtime/components/data/form/form-field/form-field.component.js +0 -225
  283. app-rn-runtime/components/data/form/form-field/form-field.component.js.map +0 -1
  284. app-rn-runtime/components/data/form/form.component.js +0 -396
  285. app-rn-runtime/components/data/form/form.component.js.map +0 -1
  286. app-rn-runtime/components/data/list/list-template/list-template.styles.js +0 -22
  287. app-rn-runtime/components/data/list/list-template/list-template.styles.js.map +0 -1
  288. app-rn-runtime/components/data/list/list.component.js +0 -307
  289. app-rn-runtime/components/data/list/list.component.js.map +0 -1
  290. app-rn-runtime/components/data/list/list.styles.js +0 -122
  291. app-rn-runtime/components/data/list/list.styles.js.map +0 -1
  292. app-rn-runtime/components/device/barcodescanner/barcodescanner.component.js +0 -46
  293. app-rn-runtime/components/device/barcodescanner/barcodescanner.component.js.map +0 -1
  294. app-rn-runtime/components/device/barcodescanner/barcodescanner.styles.js +0 -30
  295. app-rn-runtime/components/device/barcodescanner/barcodescanner.styles.js.map +0 -1
  296. app-rn-runtime/components/device/camera/camera.component.js +0 -64
  297. app-rn-runtime/components/device/camera/camera.component.js.map +0 -1
  298. app-rn-runtime/components/device/camera/camera.styles.js +0 -30
  299. app-rn-runtime/components/device/camera/camera.styles.js.map +0 -1
  300. app-rn-runtime/components/dialogs/alertdialog/alertdialog.component.js +0 -64
  301. app-rn-runtime/components/dialogs/alertdialog/alertdialog.component.js.map +0 -1
  302. app-rn-runtime/components/dialogs/alertdialog/alertdialog.styles.js +0 -27
  303. app-rn-runtime/components/dialogs/alertdialog/alertdialog.styles.js.map +0 -1
  304. app-rn-runtime/components/dialogs/confirmdialog/confirmdialog.component.js +0 -69
  305. app-rn-runtime/components/dialogs/confirmdialog/confirmdialog.component.js.map +0 -1
  306. app-rn-runtime/components/dialogs/confirmdialog/confirmdialog.styles.js +0 -58
  307. app-rn-runtime/components/dialogs/confirmdialog/confirmdialog.styles.js.map +0 -1
  308. app-rn-runtime/components/dialogs/dialog/dialog.component.js +0 -92
  309. app-rn-runtime/components/dialogs/dialog/dialog.component.js.map +0 -1
  310. app-rn-runtime/components/dialogs/dialog/dialog.styles.js +0 -61
  311. app-rn-runtime/components/dialogs/dialog/dialog.styles.js.map +0 -1
  312. app-rn-runtime/components/input/calendar/calendar.component.js +0 -135
  313. app-rn-runtime/components/input/calendar/calendar.component.js.map +0 -1
  314. app-rn-runtime/components/input/calendar/calendar.styles.js +0 -132
  315. app-rn-runtime/components/input/calendar/calendar.styles.js.map +0 -1
  316. app-rn-runtime/components/input/calendar/views/month-view.js +0 -191
  317. app-rn-runtime/components/input/calendar/views/month-view.js.map +0 -1
  318. app-rn-runtime/components/input/checkbox/checkbox.component.js +0 -95
  319. app-rn-runtime/components/input/checkbox/checkbox.component.js.map +0 -1
  320. app-rn-runtime/components/input/checkboxset/checkboxset.component.js +0 -91
  321. app-rn-runtime/components/input/checkboxset/checkboxset.component.js.map +0 -1
  322. app-rn-runtime/components/input/chips/chips.component.js +0 -266
  323. app-rn-runtime/components/input/chips/chips.component.js.map +0 -1
  324. app-rn-runtime/components/input/chips/chips.styles.js +0 -85
  325. app-rn-runtime/components/input/chips/chips.styles.js.map +0 -1
  326. app-rn-runtime/components/input/currency/currency.component.js +0 -70
  327. app-rn-runtime/components/input/currency/currency.component.js.map +0 -1
  328. app-rn-runtime/components/input/currency/currency.styles.js +0 -64
  329. app-rn-runtime/components/input/currency/currency.styles.js.map +0 -1
  330. app-rn-runtime/components/input/epoch/base-datetime.component.js +0 -272
  331. app-rn-runtime/components/input/epoch/base-datetime.component.js.map +0 -1
  332. app-rn-runtime/components/input/fileupload/fileupload.component.js +0 -55
  333. app-rn-runtime/components/input/fileupload/fileupload.component.js.map +0 -1
  334. app-rn-runtime/components/input/number/number.component.js +0 -52
  335. app-rn-runtime/components/input/number/number.component.js.map +0 -1
  336. app-rn-runtime/components/input/number/number.styles.js +0 -38
  337. app-rn-runtime/components/input/number/number.styles.js.map +0 -1
  338. app-rn-runtime/components/input/radioset/radioset.component.js +0 -60
  339. app-rn-runtime/components/input/radioset/radioset.component.js.map +0 -1
  340. app-rn-runtime/components/input/rating/rating.component.js +0 -142
  341. app-rn-runtime/components/input/rating/rating.component.js.map +0 -1
  342. app-rn-runtime/components/input/select/select.component.js +0 -181
  343. app-rn-runtime/components/input/select/select.component.js.map +0 -1
  344. app-rn-runtime/components/input/select/select.styles.js +0 -98
  345. app-rn-runtime/components/input/select/select.styles.js.map +0 -1
  346. app-rn-runtime/components/input/slider/slider.component.js +0 -77
  347. app-rn-runtime/components/input/slider/slider.component.js.map +0 -1
  348. app-rn-runtime/components/input/slider/slider.styles.js +0 -33
  349. app-rn-runtime/components/input/slider/slider.styles.js.map +0 -1
  350. app-rn-runtime/components/input/switch/switch.component.js +0 -71
  351. app-rn-runtime/components/input/switch/switch.component.js.map +0 -1
  352. app-rn-runtime/components/input/switch/switch.styles.js +0 -115
  353. app-rn-runtime/components/input/switch/switch.styles.js.map +0 -1
  354. app-rn-runtime/components/input/text/text.component.js +0 -47
  355. app-rn-runtime/components/input/text/text.component.js.map +0 -1
  356. app-rn-runtime/components/input/text/text.styles.js +0 -44
  357. app-rn-runtime/components/input/text/text.styles.js.map +0 -1
  358. app-rn-runtime/components/input/textarea/textarea.component.js +0 -48
  359. app-rn-runtime/components/input/textarea/textarea.component.js.map +0 -1
  360. app-rn-runtime/components/input/toggle/toggle.component.js +0 -94
  361. app-rn-runtime/components/input/toggle/toggle.component.js.map +0 -1
  362. app-rn-runtime/components/input/toggle/toggle.styles.js +0 -43
  363. app-rn-runtime/components/input/toggle/toggle.styles.js.map +0 -1
  364. app-rn-runtime/components/navigation/appnavbar/appnavbar.component.js +0 -52
  365. app-rn-runtime/components/navigation/appnavbar/appnavbar.component.js.map +0 -1
  366. app-rn-runtime/components/navigation/appnavbar/appnavbar.styles.js +0 -160
  367. app-rn-runtime/components/navigation/appnavbar/appnavbar.styles.js.map +0 -1
  368. app-rn-runtime/components/navigation/menu/menu.component.js +0 -61
  369. app-rn-runtime/components/navigation/menu/menu.component.js.map +0 -1
  370. app-rn-runtime/components/navigation/menu/menu.styles.js +0 -67
  371. app-rn-runtime/components/navigation/menu/menu.styles.js.map +0 -1
  372. app-rn-runtime/components/navigation/navbar/navbar.component.js +0 -74
  373. app-rn-runtime/components/navigation/navbar/navbar.component.js.map +0 -1
  374. app-rn-runtime/components/navigation/navitem/navitem.component.js +0 -62
  375. app-rn-runtime/components/navigation/navitem/navitem.component.js.map +0 -1
  376. app-rn-runtime/components/navigation/navitem/navitem.styles.js +0 -76
  377. app-rn-runtime/components/navigation/navitem/navitem.styles.js.map +0 -1
  378. app-rn-runtime/components/navigation/popover/popover.component.js +0 -126
  379. app-rn-runtime/components/navigation/popover/popover.component.js.map +0 -1
  380. app-rn-runtime/components/navigation/popover/popover.styles.js +0 -69
  381. app-rn-runtime/components/navigation/popover/popover.styles.js.map +0 -1
  382. app-rn-runtime/components/page/left-panel/left-panel.styles.js +0 -13
  383. app-rn-runtime/components/page/left-panel/left-panel.styles.js.map +0 -1
  384. app-rn-runtime/components/page/tabbar/tabbar.component.js +0 -102
  385. app-rn-runtime/components/page/tabbar/tabbar.component.js.map +0 -1
  386. app-rn-runtime/core/base.component.js +0 -382
  387. app-rn-runtime/core/base.component.js.map +0 -1
  388. app-rn-runtime/core/formatters.js +0 -54
  389. app-rn-runtime/core/formatters.js.map +0 -1
  390. app-rn-runtime/core/tappable.component.js +0 -72
  391. app-rn-runtime/core/tappable.component.js.map +0 -1
  392. app-rn-runtime/package.json +0 -243
  393. app-rn-runtime/runtime/App.js +0 -465
  394. app-rn-runtime/runtime/App.js.map +0 -1
  395. app-rn-runtime/runtime/base-fragment.component.js +0 -330
  396. app-rn-runtime/runtime/base-fragment.component.js.map +0 -1
  397. app-rn-runtime/runtime/services/device/camera-service.js +0 -332
  398. app-rn-runtime/runtime/services/device/camera-service.js.map +0 -1
  399. app-rn-runtime/runtime/services/device/scan-service.js +0 -122
  400. app-rn-runtime/runtime/services/device/scan-service.js.map +0 -1
  401. app-rn-runtime/styles/theme.variables.js +0 -392
  402. app-rn-runtime/styles/theme.variables.js.map +0 -1
  403. {app-rn-runtime → package}/actions/base-action.js +0 -0
  404. {app-rn-runtime → package}/actions/base-action.js.map +0 -0
  405. {app-rn-runtime → package}/actions/index.js +0 -0
  406. {app-rn-runtime → package}/actions/index.js.map +0 -0
  407. {app-rn-runtime → package}/actions/login-action.js +0 -0
  408. {app-rn-runtime → package}/actions/login-action.js.map +0 -0
  409. {app-rn-runtime → package}/actions/logout-action.js +0 -0
  410. {app-rn-runtime → package}/actions/logout-action.js.map +0 -0
  411. {app-rn-runtime → package}/actions/navigation-action.js +0 -0
  412. {app-rn-runtime → package}/actions/navigation-action.js.map +0 -0
  413. {app-rn-runtime → package}/actions/notification-action.js +0 -0
  414. {app-rn-runtime → package}/actions/notification-action.js.map +0 -0
  415. {app-rn-runtime → package}/actions/timer-action.js +0 -0
  416. {app-rn-runtime → package}/actions/timer-action.js.map +0 -0
  417. {app-rn-runtime → package}/components/advanced/carousel/carousel-content/carousel-content.component.js +0 -0
  418. {app-rn-runtime → package}/components/advanced/carousel/carousel-content/carousel-content.component.js.map +0 -0
  419. {app-rn-runtime → package}/components/advanced/carousel/carousel-content/carousel-content.props.js +0 -0
  420. {app-rn-runtime → package}/components/advanced/carousel/carousel-content/carousel-content.props.js.map +0 -0
  421. {app-rn-runtime → package}/components/advanced/carousel/carousel-content/carousel-content.styles.js +0 -0
  422. {app-rn-runtime → package}/components/advanced/carousel/carousel-content/carousel-content.styles.js.map +0 -0
  423. {app-rn-runtime → package}/components/advanced/carousel/carousel-template/carousel-template.component.js +0 -0
  424. {app-rn-runtime → package}/components/advanced/carousel/carousel-template/carousel-template.component.js.map +0 -0
  425. {app-rn-runtime → package}/components/advanced/carousel/carousel-template/carousel-template.props.js +0 -0
  426. {app-rn-runtime → package}/components/advanced/carousel/carousel-template/carousel-template.props.js.map +0 -0
  427. {app-rn-runtime → package}/components/advanced/carousel/carousel-template/carousel-template.styles.js +0 -0
  428. {app-rn-runtime → package}/components/advanced/carousel/carousel-template/carousel-template.styles.js.map +0 -0
  429. {app-rn-runtime → package}/components/advanced/carousel/carousel.props.js +0 -0
  430. {app-rn-runtime → package}/components/advanced/carousel/carousel.props.js.map +0 -0
  431. {app-rn-runtime → package}/components/advanced/carousel/carousel.styles.js +0 -0
  432. {app-rn-runtime → package}/components/advanced/carousel/carousel.styles.js.map +0 -0
  433. {app-rn-runtime → package}/components/advanced/login/login.props.js +0 -0
  434. {app-rn-runtime → package}/components/advanced/login/login.props.js.map +0 -0
  435. {app-rn-runtime → package}/components/advanced/login/login.styles.js +0 -0
  436. {app-rn-runtime → package}/components/advanced/login/login.styles.js.map +0 -0
  437. {app-rn-runtime → package}/components/advanced/network-info-toaster/network-info-toaster.props.js +0 -0
  438. {app-rn-runtime → package}/components/advanced/network-info-toaster/network-info-toaster.props.js.map +0 -0
  439. {app-rn-runtime → package}/components/advanced/network-info-toaster/network-info-toaster.styles.js +0 -0
  440. {app-rn-runtime → package}/components/advanced/network-info-toaster/network-info-toaster.styles.js.map +0 -0
  441. {app-rn-runtime → package}/components/advanced/webview/webview.props.js +0 -0
  442. {app-rn-runtime → package}/components/advanced/webview/webview.props.js.map +0 -0
  443. {app-rn-runtime → package}/components/advanced/webview/webview.styles.js +0 -0
  444. {app-rn-runtime → package}/components/advanced/webview/webview.styles.js.map +0 -0
  445. {app-rn-runtime → package}/components/basic/anchor/anchor.props.js +0 -0
  446. {app-rn-runtime → package}/components/basic/anchor/anchor.props.js.map +0 -0
  447. {app-rn-runtime → package}/components/basic/anchor/anchor.styles.js +0 -0
  448. {app-rn-runtime → package}/components/basic/anchor/anchor.styles.js.map +0 -0
  449. {app-rn-runtime → package}/components/basic/audio/audio.props.js +0 -0
  450. {app-rn-runtime → package}/components/basic/audio/audio.props.js.map +0 -0
  451. {app-rn-runtime → package}/components/basic/audio/audio.styles.js +0 -0
  452. {app-rn-runtime → package}/components/basic/audio/audio.styles.js.map +0 -0
  453. {app-rn-runtime → package}/components/basic/button/button.props.js +0 -0
  454. {app-rn-runtime → package}/components/basic/button/button.props.js.map +0 -0
  455. {app-rn-runtime → package}/components/basic/buttongroup/buttongroup.component.js +0 -0
  456. {app-rn-runtime → package}/components/basic/buttongroup/buttongroup.component.js.map +0 -0
  457. {app-rn-runtime → package}/components/basic/buttongroup/buttongroup.props.js +0 -0
  458. {app-rn-runtime → package}/components/basic/buttongroup/buttongroup.props.js.map +0 -0
  459. {app-rn-runtime → package}/components/basic/custom/custom.component.js +0 -0
  460. {app-rn-runtime → package}/components/basic/custom/custom.component.js.map +0 -0
  461. {app-rn-runtime → package}/components/basic/custom/custom.props.js +0 -0
  462. {app-rn-runtime → package}/components/basic/custom/custom.props.js.map +0 -0
  463. {app-rn-runtime → package}/components/basic/custom/custom.styles.js +0 -0
  464. {app-rn-runtime → package}/components/basic/custom/custom.styles.js.map +0 -0
  465. {app-rn-runtime → package}/components/basic/icon/icon.styles.js +0 -0
  466. {app-rn-runtime → package}/components/basic/icon/icon.styles.js.map +0 -0
  467. {app-rn-runtime → package}/components/basic/icon/streamline-light-icon/streamline-light-icon.component.js +0 -0
  468. {app-rn-runtime → package}/components/basic/icon/streamline-light-icon/streamline-light-icon.component.js.map +0 -0
  469. {app-rn-runtime → package}/components/basic/icon/streamline-light-icon/streamline-light-icon.ttf +0 -0
  470. {app-rn-runtime → package}/components/basic/icon/streamline-regular-icon/streamline-regular-icon.component.js +0 -0
  471. {app-rn-runtime → package}/components/basic/icon/streamline-regular-icon/streamline-regular-icon.component.js.map +0 -0
  472. {app-rn-runtime → package}/components/basic/icon/streamline-regular-icon/streamline-regular-icon.ttf +0 -0
  473. {app-rn-runtime → package}/components/basic/icon/wavicon/wavicon.component.js +0 -0
  474. {app-rn-runtime → package}/components/basic/icon/wavicon/wavicon.component.js.map +0 -0
  475. {app-rn-runtime → package}/components/basic/icon/wavicon/wavicon.ttf +0 -0
  476. {app-rn-runtime → package}/components/basic/label/label.props.js +0 -0
  477. {app-rn-runtime → package}/components/basic/label/label.props.js.map +0 -0
  478. {app-rn-runtime → package}/components/basic/lottie/lottie.component.js +0 -0
  479. {app-rn-runtime → package}/components/basic/lottie/lottie.component.js.map +0 -0
  480. {app-rn-runtime → package}/components/basic/lottie/lottie.props.js +0 -0
  481. {app-rn-runtime → package}/components/basic/lottie/lottie.props.js.map +0 -0
  482. {app-rn-runtime → package}/components/basic/lottie/lottie.styles.js +0 -0
  483. {app-rn-runtime → package}/components/basic/lottie/lottie.styles.js.map +0 -0
  484. {app-rn-runtime → package}/components/basic/message/message.props.js +0 -0
  485. {app-rn-runtime → package}/components/basic/message/message.props.js.map +0 -0
  486. {app-rn-runtime → package}/components/basic/message/message.styles.js +0 -0
  487. {app-rn-runtime → package}/components/basic/message/message.styles.js.map +0 -0
  488. {app-rn-runtime → package}/components/basic/modal/modal.component.js +0 -0
  489. {app-rn-runtime → package}/components/basic/modal/modal.component.js.map +0 -0
  490. {app-rn-runtime → package}/components/basic/modal/modal.props.js +0 -0
  491. {app-rn-runtime → package}/components/basic/modal/modal.props.js.map +0 -0
  492. {app-rn-runtime → package}/components/basic/modal/modal.styles.js +0 -0
  493. {app-rn-runtime → package}/components/basic/modal/modal.styles.js.map +0 -0
  494. {app-rn-runtime → package}/components/basic/picture/picture.props.js +0 -0
  495. {app-rn-runtime → package}/components/basic/picture/picture.props.js.map +0 -0
  496. {app-rn-runtime → package}/components/basic/picture/picture.styles.js +0 -0
  497. {app-rn-runtime → package}/components/basic/picture/picture.styles.js.map +0 -0
  498. {app-rn-runtime → package}/components/basic/progress-bar/progress-bar.props.js +0 -0
  499. {app-rn-runtime → package}/components/basic/progress-bar/progress-bar.props.js.map +0 -0
  500. {app-rn-runtime → package}/components/basic/progress-circle/progress-circle.props.js +0 -0
  501. {app-rn-runtime → package}/components/basic/progress-circle/progress-circle.props.js.map +0 -0
  502. {app-rn-runtime → package}/components/basic/progress-circle/progress-circle.styles.js +0 -0
  503. {app-rn-runtime → package}/components/basic/progress-circle/progress-circle.styles.js.map +0 -0
  504. {app-rn-runtime → package}/components/basic/search/local-data-provider.js +0 -0
  505. {app-rn-runtime → package}/components/basic/search/local-data-provider.js.map +0 -0
  506. {app-rn-runtime → package}/components/basic/search/search.props.js +0 -0
  507. {app-rn-runtime → package}/components/basic/search/search.props.js.map +0 -0
  508. {app-rn-runtime → package}/components/basic/skeleton/skeleton.component.js +0 -0
  509. {app-rn-runtime → package}/components/basic/skeleton/skeleton.component.js.map +0 -0
  510. {app-rn-runtime → package}/components/basic/skeleton/skeleton.props.js +0 -0
  511. {app-rn-runtime → package}/components/basic/skeleton/skeleton.props.js.map +0 -0
  512. {app-rn-runtime → package}/components/basic/skeleton/skeleton.styles.js +0 -0
  513. {app-rn-runtime → package}/components/basic/skeleton/skeleton.styles.js.map +0 -0
  514. {app-rn-runtime → package}/components/basic/spinner/spinner.props.js +0 -0
  515. {app-rn-runtime → package}/components/basic/spinner/spinner.props.js.map +0 -0
  516. {app-rn-runtime → package}/components/basic/video/video.props.js +0 -0
  517. {app-rn-runtime → package}/components/basic/video/video.props.js.map +0 -0
  518. {app-rn-runtime → package}/components/basic/video/video.styles.js +0 -0
  519. {app-rn-runtime → package}/components/basic/video/video.styles.js.map +0 -0
  520. {app-rn-runtime → package}/components/chart/area-chart/area-chart.component.js +0 -0
  521. {app-rn-runtime → package}/components/chart/area-chart/area-chart.component.js.map +0 -0
  522. {app-rn-runtime → package}/components/chart/area-chart/area-chart.props.js +0 -0
  523. {app-rn-runtime → package}/components/chart/area-chart/area-chart.props.js.map +0 -0
  524. {app-rn-runtime → package}/components/chart/area-chart/area-chart.styles.js +0 -0
  525. {app-rn-runtime → package}/components/chart/area-chart/area-chart.styles.js.map +0 -0
  526. {app-rn-runtime → package}/components/chart/bar-chart/bar-chart.component.js +0 -0
  527. {app-rn-runtime → package}/components/chart/bar-chart/bar-chart.component.js.map +0 -0
  528. {app-rn-runtime → package}/components/chart/bar-chart/bar-chart.props.js +0 -0
  529. {app-rn-runtime → package}/components/chart/bar-chart/bar-chart.props.js.map +0 -0
  530. {app-rn-runtime → package}/components/chart/bar-chart/bar-chart.styles.js +0 -0
  531. {app-rn-runtime → package}/components/chart/bar-chart/bar-chart.styles.js.map +0 -0
  532. {app-rn-runtime → package}/components/chart/basechart.component.js +0 -0
  533. {app-rn-runtime → package}/components/chart/basechart.component.js.map +0 -0
  534. {app-rn-runtime → package}/components/chart/basechart.props.js +0 -0
  535. {app-rn-runtime → package}/components/chart/basechart.props.js.map +0 -0
  536. {app-rn-runtime → package}/components/chart/basechart.styles.js +0 -0
  537. {app-rn-runtime → package}/components/chart/basechart.styles.js.map +0 -0
  538. {app-rn-runtime → package}/components/chart/bubble-chart/bubble-chart.component.js +0 -0
  539. {app-rn-runtime → package}/components/chart/bubble-chart/bubble-chart.component.js.map +0 -0
  540. {app-rn-runtime → package}/components/chart/bubble-chart/bubble-chart.props.js +0 -0
  541. {app-rn-runtime → package}/components/chart/bubble-chart/bubble-chart.props.js.map +0 -0
  542. {app-rn-runtime → package}/components/chart/bubble-chart/bubble-chart.styles.js +0 -0
  543. {app-rn-runtime → package}/components/chart/bubble-chart/bubble-chart.styles.js.map +0 -0
  544. {app-rn-runtime → package}/components/chart/column-chart/column-chart.component.js +0 -0
  545. {app-rn-runtime → package}/components/chart/column-chart/column-chart.component.js.map +0 -0
  546. {app-rn-runtime → package}/components/chart/column-chart/column-chart.props.js +0 -0
  547. {app-rn-runtime → package}/components/chart/column-chart/column-chart.props.js.map +0 -0
  548. {app-rn-runtime → package}/components/chart/column-chart/column-chart.styles.js +0 -0
  549. {app-rn-runtime → package}/components/chart/column-chart/column-chart.styles.js.map +0 -0
  550. {app-rn-runtime → package}/components/chart/donut-chart/donut-chart.component.js +0 -0
  551. {app-rn-runtime → package}/components/chart/donut-chart/donut-chart.component.js.map +0 -0
  552. {app-rn-runtime → package}/components/chart/donut-chart/donut-chart.props.js +0 -0
  553. {app-rn-runtime → package}/components/chart/donut-chart/donut-chart.props.js.map +0 -0
  554. {app-rn-runtime → package}/components/chart/donut-chart/donut-chart.styles.js +0 -0
  555. {app-rn-runtime → package}/components/chart/donut-chart/donut-chart.styles.js.map +0 -0
  556. {app-rn-runtime → package}/components/chart/legend/legend.component.js +0 -0
  557. {app-rn-runtime → package}/components/chart/legend/legend.component.js.map +0 -0
  558. {app-rn-runtime → package}/components/chart/line-chart/line-chart.component.js +0 -0
  559. {app-rn-runtime → package}/components/chart/line-chart/line-chart.component.js.map +0 -0
  560. {app-rn-runtime → package}/components/chart/line-chart/line-chart.props.js +0 -0
  561. {app-rn-runtime → package}/components/chart/line-chart/line-chart.props.js.map +0 -0
  562. {app-rn-runtime → package}/components/chart/line-chart/line-chart.styles.js +0 -0
  563. {app-rn-runtime → package}/components/chart/line-chart/line-chart.styles.js.map +0 -0
  564. {app-rn-runtime → package}/components/chart/pie-chart/pie-chart.styles.js +0 -0
  565. {app-rn-runtime → package}/components/chart/pie-chart/pie-chart.styles.js.map +0 -0
  566. {app-rn-runtime → package}/components/chart/stack-chart/stack-chart.component.js +0 -0
  567. {app-rn-runtime → package}/components/chart/stack-chart/stack-chart.component.js.map +0 -0
  568. {app-rn-runtime → package}/components/chart/stack-chart/stack-chart.props.js +0 -0
  569. {app-rn-runtime → package}/components/chart/stack-chart/stack-chart.props.js.map +0 -0
  570. {app-rn-runtime → package}/components/chart/stack-chart/stack-chart.styles.js +0 -0
  571. {app-rn-runtime → package}/components/chart/stack-chart/stack-chart.styles.js.map +0 -0
  572. {app-rn-runtime → package}/components/chart/theme/chart.theme.js +0 -0
  573. {app-rn-runtime → package}/components/chart/theme/chart.theme.js.map +0 -0
  574. {app-rn-runtime → package}/components/container/accordion/accordion.props.js +0 -0
  575. {app-rn-runtime → package}/components/container/accordion/accordion.props.js.map +0 -0
  576. {app-rn-runtime → package}/components/container/accordion/accordion.styles.js +0 -0
  577. {app-rn-runtime → package}/components/container/accordion/accordion.styles.js.map +0 -0
  578. {app-rn-runtime → package}/components/container/accordion/accordionpane/accordionpane.props.js +0 -0
  579. {app-rn-runtime → package}/components/container/accordion/accordionpane/accordionpane.props.js.map +0 -0
  580. {app-rn-runtime → package}/components/container/accordion/accordionpane/accordionpane.styles.js +0 -0
  581. {app-rn-runtime → package}/components/container/accordion/accordionpane/accordionpane.styles.js.map +0 -0
  582. {app-rn-runtime → package}/components/container/container.props.js +0 -0
  583. {app-rn-runtime → package}/components/container/container.props.js.map +0 -0
  584. {app-rn-runtime → package}/components/container/container.styles.js +0 -0
  585. {app-rn-runtime → package}/components/container/container.styles.js.map +0 -0
  586. {app-rn-runtime → package}/components/container/layoutgrid/gridcolumn/gridcolumn.component.js +0 -0
  587. {app-rn-runtime → package}/components/container/layoutgrid/gridcolumn/gridcolumn.component.js.map +0 -0
  588. {app-rn-runtime → package}/components/container/layoutgrid/gridcolumn/gridcolumn.props.js +0 -0
  589. {app-rn-runtime → package}/components/container/layoutgrid/gridcolumn/gridcolumn.props.js.map +0 -0
  590. {app-rn-runtime → package}/components/container/layoutgrid/gridcolumn/gridcolumn.styles.js +0 -0
  591. {app-rn-runtime → package}/components/container/layoutgrid/gridcolumn/gridcolumn.styles.js.map +0 -0
  592. {app-rn-runtime → package}/components/container/layoutgrid/gridrow/gridrow.component.js +0 -0
  593. {app-rn-runtime → package}/components/container/layoutgrid/gridrow/gridrow.component.js.map +0 -0
  594. {app-rn-runtime → package}/components/container/layoutgrid/gridrow/gridrow.props.js +0 -0
  595. {app-rn-runtime → package}/components/container/layoutgrid/gridrow/gridrow.props.js.map +0 -0
  596. {app-rn-runtime → package}/components/container/layoutgrid/gridrow/gridrow.styles.js +0 -0
  597. {app-rn-runtime → package}/components/container/layoutgrid/gridrow/gridrow.styles.js.map +0 -0
  598. {app-rn-runtime → package}/components/container/layoutgrid/layoutgrid.component.js +0 -0
  599. {app-rn-runtime → package}/components/container/layoutgrid/layoutgrid.component.js.map +0 -0
  600. {app-rn-runtime → package}/components/container/layoutgrid/layoutgrid.props.js +0 -0
  601. {app-rn-runtime → package}/components/container/layoutgrid/layoutgrid.props.js.map +0 -0
  602. {app-rn-runtime → package}/components/container/layoutgrid/layoutgrid.styles.js +0 -0
  603. {app-rn-runtime → package}/components/container/layoutgrid/layoutgrid.styles.js.map +0 -0
  604. {app-rn-runtime → package}/components/container/linearlayout/linearlayout.component.js +0 -0
  605. {app-rn-runtime → package}/components/container/linearlayout/linearlayout.component.js.map +0 -0
  606. {app-rn-runtime → package}/components/container/linearlayout/linearlayout.props.js +0 -0
  607. {app-rn-runtime → package}/components/container/linearlayout/linearlayout.props.js.map +0 -0
  608. {app-rn-runtime → package}/components/container/linearlayout/linearlayout.styles.js +0 -0
  609. {app-rn-runtime → package}/components/container/linearlayout/linearlayout.styles.js.map +0 -0
  610. {app-rn-runtime → package}/components/container/linearlayout/linearlayoutitem/linearlayoutitem.component.js +0 -0
  611. {app-rn-runtime → package}/components/container/linearlayout/linearlayoutitem/linearlayoutitem.component.js.map +0 -0
  612. {app-rn-runtime → package}/components/container/linearlayout/linearlayoutitem/linearlayoutitem.props.js +0 -0
  613. {app-rn-runtime → package}/components/container/linearlayout/linearlayoutitem/linearlayoutitem.props.js.map +0 -0
  614. {app-rn-runtime → package}/components/container/linearlayout/linearlayoutitem/linearlayoutitem.styles.js +0 -0
  615. {app-rn-runtime → package}/components/container/linearlayout/linearlayoutitem/linearlayoutitem.styles.js.map +0 -0
  616. {app-rn-runtime → package}/components/container/panel/panel-content/panel-content.component.js +0 -0
  617. {app-rn-runtime → package}/components/container/panel/panel-content/panel-content.component.js.map +0 -0
  618. {app-rn-runtime → package}/components/container/panel/panel-content/panel-content.props.js +0 -0
  619. {app-rn-runtime → package}/components/container/panel/panel-content/panel-content.props.js.map +0 -0
  620. {app-rn-runtime → package}/components/container/panel/panel-content/panel-content.styles.js +0 -0
  621. {app-rn-runtime → package}/components/container/panel/panel-content/panel-content.styles.js.map +0 -0
  622. {app-rn-runtime → package}/components/container/panel/panel-footer/panel-footer.component.js +0 -0
  623. {app-rn-runtime → package}/components/container/panel/panel-footer/panel-footer.component.js.map +0 -0
  624. {app-rn-runtime → package}/components/container/panel/panel-footer/panel-footer.props.js +0 -0
  625. {app-rn-runtime → package}/components/container/panel/panel-footer/panel-footer.props.js.map +0 -0
  626. {app-rn-runtime → package}/components/container/panel/panel-footer/panel-footer.styles.js +0 -0
  627. {app-rn-runtime → package}/components/container/panel/panel-footer/panel-footer.styles.js.map +0 -0
  628. {app-rn-runtime → package}/components/container/panel/panel.props.js +0 -0
  629. {app-rn-runtime → package}/components/container/panel/panel.props.js.map +0 -0
  630. {app-rn-runtime → package}/components/container/partial-host.component.js +0 -0
  631. {app-rn-runtime → package}/components/container/partial-host.component.js.map +0 -0
  632. {app-rn-runtime → package}/components/container/tabs/tabheader/tabheader.props.js +0 -0
  633. {app-rn-runtime → package}/components/container/tabs/tabheader/tabheader.props.js.map +0 -0
  634. {app-rn-runtime → package}/components/container/tabs/tabpane/tabpane.component.js +0 -0
  635. {app-rn-runtime → package}/components/container/tabs/tabpane/tabpane.component.js.map +0 -0
  636. {app-rn-runtime → package}/components/container/tabs/tabpane/tabpane.props.js +0 -0
  637. {app-rn-runtime → package}/components/container/tabs/tabpane/tabpane.props.js.map +0 -0
  638. {app-rn-runtime → package}/components/container/tabs/tabpane/tabpane.styles.js +0 -0
  639. {app-rn-runtime → package}/components/container/tabs/tabpane/tabpane.styles.js.map +0 -0
  640. {app-rn-runtime → package}/components/container/tabs/tabs.props.js +0 -0
  641. {app-rn-runtime → package}/components/container/tabs/tabs.props.js.map +0 -0
  642. {app-rn-runtime → package}/components/container/tabs/tabs.styles.js +0 -0
  643. {app-rn-runtime → package}/components/container/tabs/tabs.styles.js.map +0 -0
  644. {app-rn-runtime → package}/components/container/tile/tile.props.js +0 -0
  645. {app-rn-runtime → package}/components/container/tile/tile.props.js.map +0 -0
  646. {app-rn-runtime → package}/components/container/tile/tile.styles.js +0 -0
  647. {app-rn-runtime → package}/components/container/tile/tile.styles.js.map +0 -0
  648. {app-rn-runtime → package}/components/container/wizard/wizard.props.js +0 -0
  649. {app-rn-runtime → package}/components/container/wizard/wizard.props.js.map +0 -0
  650. {app-rn-runtime → package}/components/container/wizard/wizardstep/wizardstep.component.js +0 -0
  651. {app-rn-runtime → package}/components/container/wizard/wizardstep/wizardstep.component.js.map +0 -0
  652. {app-rn-runtime → package}/components/container/wizard/wizardstep/wizardstep.props.js +0 -0
  653. {app-rn-runtime → package}/components/container/wizard/wizardstep/wizardstep.props.js.map +0 -0
  654. {app-rn-runtime → package}/components/container/wizard/wizardstep/wizardstep.styles.js +0 -0
  655. {app-rn-runtime → package}/components/container/wizard/wizardstep/wizardstep.styles.js.map +0 -0
  656. {app-rn-runtime → package}/components/data/card/card-content/card-content.component.js +0 -0
  657. {app-rn-runtime → package}/components/data/card/card-content/card-content.component.js.map +0 -0
  658. {app-rn-runtime → package}/components/data/card/card-content/card-content.props.js +0 -0
  659. {app-rn-runtime → package}/components/data/card/card-content/card-content.props.js.map +0 -0
  660. {app-rn-runtime → package}/components/data/card/card-content/card-content.styles.js +0 -0
  661. {app-rn-runtime → package}/components/data/card/card-content/card-content.styles.js.map +0 -0
  662. {app-rn-runtime → package}/components/data/card/card-footer/card-footer.component.js +0 -0
  663. {app-rn-runtime → package}/components/data/card/card-footer/card-footer.component.js.map +0 -0
  664. {app-rn-runtime → package}/components/data/card/card-footer/card-footer.props.js +0 -0
  665. {app-rn-runtime → package}/components/data/card/card-footer/card-footer.props.js.map +0 -0
  666. {app-rn-runtime → package}/components/data/card/card-footer/card-footer.styles.js +0 -0
  667. {app-rn-runtime → package}/components/data/card/card-footer/card-footer.styles.js.map +0 -0
  668. {app-rn-runtime → package}/components/data/card/card.props.js +0 -0
  669. {app-rn-runtime → package}/components/data/card/card.props.js.map +0 -0
  670. {app-rn-runtime → package}/components/data/card/card.styles.js +0 -0
  671. {app-rn-runtime → package}/components/data/card/card.styles.js.map +0 -0
  672. {app-rn-runtime → package}/components/data/form/form-action/form-action.props.js +0 -0
  673. {app-rn-runtime → package}/components/data/form/form-action/form-action.props.js.map +0 -0
  674. {app-rn-runtime → package}/components/data/form/form-action/form-action.styles.js +0 -0
  675. {app-rn-runtime → package}/components/data/form/form-action/form-action.styles.js.map +0 -0
  676. {app-rn-runtime → package}/components/data/form/form-body/form-body.component.js +0 -0
  677. {app-rn-runtime → package}/components/data/form/form-body/form-body.component.js.map +0 -0
  678. {app-rn-runtime → package}/components/data/form/form-body/form-body.props.js +0 -0
  679. {app-rn-runtime → package}/components/data/form/form-body/form-body.props.js.map +0 -0
  680. {app-rn-runtime → package}/components/data/form/form-body/form-body.styles.js +0 -0
  681. {app-rn-runtime → package}/components/data/form/form-body/form-body.styles.js.map +0 -0
  682. {app-rn-runtime → package}/components/data/form/form-field/form-field.props.js +0 -0
  683. {app-rn-runtime → package}/components/data/form/form-field/form-field.props.js.map +0 -0
  684. {app-rn-runtime → package}/components/data/form/form-field/form-field.styles.js +0 -0
  685. {app-rn-runtime → package}/components/data/form/form-field/form-field.styles.js.map +0 -0
  686. {app-rn-runtime → package}/components/data/form/form-footer/form-footer.component.js +0 -0
  687. {app-rn-runtime → package}/components/data/form/form-footer/form-footer.component.js.map +0 -0
  688. {app-rn-runtime → package}/components/data/form/form-footer/form-footer.props.js +0 -0
  689. {app-rn-runtime → package}/components/data/form/form-footer/form-footer.props.js.map +0 -0
  690. {app-rn-runtime → package}/components/data/form/form-footer/form-footer.styles.js +0 -0
  691. {app-rn-runtime → package}/components/data/form/form-footer/form-footer.styles.js.map +0 -0
  692. {app-rn-runtime → package}/components/data/form/form.props.js +0 -0
  693. {app-rn-runtime → package}/components/data/form/form.props.js.map +0 -0
  694. {app-rn-runtime → package}/components/data/form/form.styles.js +0 -0
  695. {app-rn-runtime → package}/components/data/form/form.styles.js.map +0 -0
  696. {app-rn-runtime → package}/components/data/list/list-template/list-template.component.js +0 -0
  697. {app-rn-runtime → package}/components/data/list/list-template/list-template.component.js.map +0 -0
  698. {app-rn-runtime → package}/components/data/list/list-template/list-template.props.js +0 -0
  699. {app-rn-runtime → package}/components/data/list/list-template/list-template.props.js.map +0 -0
  700. {app-rn-runtime → package}/components/data/list/list.props.js +0 -0
  701. {app-rn-runtime → package}/components/data/list/list.props.js.map +0 -0
  702. {app-rn-runtime → package}/components/data/liveform/liveform.component.js +0 -0
  703. {app-rn-runtime → package}/components/data/liveform/liveform.component.js.map +0 -0
  704. {app-rn-runtime → package}/components/device/barcodescanner/barcodescanner.props.js +0 -0
  705. {app-rn-runtime → package}/components/device/barcodescanner/barcodescanner.props.js.map +0 -0
  706. {app-rn-runtime → package}/components/device/camera/camera.props.js +0 -0
  707. {app-rn-runtime → package}/components/device/camera/camera.props.js.map +0 -0
  708. {app-rn-runtime → package}/components/dialogs/alertdialog/alertdialog.props.js +0 -0
  709. {app-rn-runtime → package}/components/dialogs/alertdialog/alertdialog.props.js.map +0 -0
  710. {app-rn-runtime → package}/components/dialogs/confirmdialog/confirmdialog.props.js +0 -0
  711. {app-rn-runtime → package}/components/dialogs/confirmdialog/confirmdialog.props.js.map +0 -0
  712. {app-rn-runtime → package}/components/dialogs/dialog/dialog.props.js +0 -0
  713. {app-rn-runtime → package}/components/dialogs/dialog/dialog.props.js.map +0 -0
  714. {app-rn-runtime → package}/components/dialogs/dialogactions/dialogactions.component.js +0 -0
  715. {app-rn-runtime → package}/components/dialogs/dialogactions/dialogactions.component.js.map +0 -0
  716. {app-rn-runtime → package}/components/dialogs/dialogactions/dialogactions.props.js +0 -0
  717. {app-rn-runtime → package}/components/dialogs/dialogactions/dialogactions.props.js.map +0 -0
  718. {app-rn-runtime → package}/components/dialogs/dialogactions/dialogactions.styles.js +0 -0
  719. {app-rn-runtime → package}/components/dialogs/dialogactions/dialogactions.styles.js.map +0 -0
  720. {app-rn-runtime → package}/components/dialogs/dialogcontent/dialogcontent.component.js +0 -0
  721. {app-rn-runtime → package}/components/dialogs/dialogcontent/dialogcontent.component.js.map +0 -0
  722. {app-rn-runtime → package}/components/dialogs/dialogcontent/dialogcontent.props.js +0 -0
  723. {app-rn-runtime → package}/components/dialogs/dialogcontent/dialogcontent.props.js.map +0 -0
  724. {app-rn-runtime → package}/components/dialogs/dialogcontent/dialogcontent.styles.js +0 -0
  725. {app-rn-runtime → package}/components/dialogs/dialogcontent/dialogcontent.styles.js.map +0 -0
  726. {app-rn-runtime → package}/components/input/basedataset/basedataset.component.js +0 -0
  727. {app-rn-runtime → package}/components/input/basedataset/basedataset.component.js.map +0 -0
  728. {app-rn-runtime → package}/components/input/basedataset/basedataset.props.js +0 -0
  729. {app-rn-runtime → package}/components/input/basedataset/basedataset.props.js.map +0 -0
  730. {app-rn-runtime → package}/components/input/basedataset/basedataset.styles.js +0 -0
  731. {app-rn-runtime → package}/components/input/basedataset/basedataset.styles.js.map +0 -0
  732. {app-rn-runtime → package}/components/input/baseinput/baseinput.component.js +0 -0
  733. {app-rn-runtime → package}/components/input/baseinput/baseinput.component.js.map +0 -0
  734. {app-rn-runtime → package}/components/input/baseinput/baseinput.props.js +0 -0
  735. {app-rn-runtime → package}/components/input/baseinput/baseinput.props.js.map +0 -0
  736. {app-rn-runtime → package}/components/input/baseinput/baseinput.styles.js +0 -0
  737. {app-rn-runtime → package}/components/input/baseinput/baseinput.styles.js.map +0 -0
  738. {app-rn-runtime → package}/components/input/basenumber/basenumber.component.js +0 -0
  739. {app-rn-runtime → package}/components/input/basenumber/basenumber.component.js.map +0 -0
  740. {app-rn-runtime → package}/components/input/basenumber/basenumber.props.js +0 -0
  741. {app-rn-runtime → package}/components/input/basenumber/basenumber.props.js.map +0 -0
  742. {app-rn-runtime → package}/components/input/basenumber/basenumber.styles.js +0 -0
  743. {app-rn-runtime → package}/components/input/basenumber/basenumber.styles.js.map +0 -0
  744. {app-rn-runtime → package}/components/input/calendar/calendar.props.js +0 -0
  745. {app-rn-runtime → package}/components/input/calendar/calendar.props.js.map +0 -0
  746. {app-rn-runtime → package}/components/input/calendar/views/month-view.styles.js +0 -0
  747. {app-rn-runtime → package}/components/input/calendar/views/month-view.styles.js.map +0 -0
  748. {app-rn-runtime → package}/components/input/checkbox/checkbox.props.js +0 -0
  749. {app-rn-runtime → package}/components/input/checkbox/checkbox.props.js.map +0 -0
  750. {app-rn-runtime → package}/components/input/checkbox/checkbox.styles.js +0 -0
  751. {app-rn-runtime → package}/components/input/checkbox/checkbox.styles.js.map +0 -0
  752. {app-rn-runtime → package}/components/input/checkboxset/checkboxset.props.js +0 -0
  753. {app-rn-runtime → package}/components/input/checkboxset/checkboxset.props.js.map +0 -0
  754. {app-rn-runtime → package}/components/input/checkboxset/checkboxset.styles.js +0 -0
  755. {app-rn-runtime → package}/components/input/checkboxset/checkboxset.styles.js.map +0 -0
  756. {app-rn-runtime → package}/components/input/chips/chips.props.js +0 -0
  757. {app-rn-runtime → package}/components/input/chips/chips.props.js.map +0 -0
  758. {app-rn-runtime → package}/components/input/composite/composite.component.js +0 -0
  759. {app-rn-runtime → package}/components/input/composite/composite.component.js.map +0 -0
  760. {app-rn-runtime → package}/components/input/composite/composite.props.js +0 -0
  761. {app-rn-runtime → package}/components/input/composite/composite.props.js.map +0 -0
  762. {app-rn-runtime → package}/components/input/composite/composite.styles.js +0 -0
  763. {app-rn-runtime → package}/components/input/composite/composite.styles.js.map +0 -0
  764. {app-rn-runtime → package}/components/input/currency/currency.props.js +0 -0
  765. {app-rn-runtime → package}/components/input/currency/currency.props.js.map +0 -0
  766. {app-rn-runtime → package}/components/input/epoch/date/date.component.js +0 -0
  767. {app-rn-runtime → package}/components/input/epoch/date/date.component.js.map +0 -0
  768. {app-rn-runtime → package}/components/input/epoch/date/date.props.js +0 -0
  769. {app-rn-runtime → package}/components/input/epoch/date/date.props.js.map +0 -0
  770. {app-rn-runtime → package}/components/input/epoch/date/date.styles.js +0 -0
  771. {app-rn-runtime → package}/components/input/epoch/date/date.styles.js.map +0 -0
  772. {app-rn-runtime → package}/components/input/epoch/date-picker.component.js +0 -0
  773. {app-rn-runtime → package}/components/input/epoch/date-picker.component.js.map +0 -0
  774. {app-rn-runtime → package}/components/input/epoch/datetime/datetime.component.js +0 -0
  775. {app-rn-runtime → package}/components/input/epoch/datetime/datetime.component.js.map +0 -0
  776. {app-rn-runtime → package}/components/input/epoch/datetime/datetime.props.js +0 -0
  777. {app-rn-runtime → package}/components/input/epoch/datetime/datetime.props.js.map +0 -0
  778. {app-rn-runtime → package}/components/input/epoch/datetime/datetime.styles.js +0 -0
  779. {app-rn-runtime → package}/components/input/epoch/datetime/datetime.styles.js.map +0 -0
  780. {app-rn-runtime → package}/components/input/epoch/time/time.component.js +0 -0
  781. {app-rn-runtime → package}/components/input/epoch/time/time.component.js.map +0 -0
  782. {app-rn-runtime → package}/components/input/epoch/time/time.props.js +0 -0
  783. {app-rn-runtime → package}/components/input/epoch/time/time.props.js.map +0 -0
  784. {app-rn-runtime → package}/components/input/epoch/time/time.styles.js +0 -0
  785. {app-rn-runtime → package}/components/input/epoch/time/time.styles.js.map +0 -0
  786. {app-rn-runtime → package}/components/input/fileupload/fileupload.props.js +0 -0
  787. {app-rn-runtime → package}/components/input/fileupload/fileupload.props.js.map +0 -0
  788. {app-rn-runtime → package}/components/input/fileupload/fileupload.styles.js +0 -0
  789. {app-rn-runtime → package}/components/input/fileupload/fileupload.styles.js.map +0 -0
  790. {app-rn-runtime → package}/components/input/number/number.props.js +0 -0
  791. {app-rn-runtime → package}/components/input/number/number.props.js.map +0 -0
  792. {app-rn-runtime → package}/components/input/radioset/radioset.props.js +0 -0
  793. {app-rn-runtime → package}/components/input/radioset/radioset.props.js.map +0 -0
  794. {app-rn-runtime → package}/components/input/radioset/radioset.styles.js +0 -0
  795. {app-rn-runtime → package}/components/input/radioset/radioset.styles.js.map +0 -0
  796. {app-rn-runtime → package}/components/input/rating/rating.props.js +0 -0
  797. {app-rn-runtime → package}/components/input/rating/rating.props.js.map +0 -0
  798. {app-rn-runtime → package}/components/input/rating/rating.styles.js +0 -0
  799. {app-rn-runtime → package}/components/input/rating/rating.styles.js.map +0 -0
  800. {app-rn-runtime → package}/components/input/select/select.props.js +0 -0
  801. {app-rn-runtime → package}/components/input/select/select.props.js.map +0 -0
  802. {app-rn-runtime → package}/components/input/slider/slider.props.js +0 -0
  803. {app-rn-runtime → package}/components/input/slider/slider.props.js.map +0 -0
  804. {app-rn-runtime → package}/components/input/switch/switch.props.js +0 -0
  805. {app-rn-runtime → package}/components/input/switch/switch.props.js.map +0 -0
  806. {app-rn-runtime → package}/components/input/text/text.props.js +0 -0
  807. {app-rn-runtime → package}/components/input/text/text.props.js.map +0 -0
  808. {app-rn-runtime → package}/components/input/textarea/textarea.props.js +0 -0
  809. {app-rn-runtime → package}/components/input/textarea/textarea.props.js.map +0 -0
  810. {app-rn-runtime → package}/components/input/textarea/textarea.styles.js +0 -0
  811. {app-rn-runtime → package}/components/input/textarea/textarea.styles.js.map +0 -0
  812. {app-rn-runtime → package}/components/input/toggle/toggle.props.js +0 -0
  813. {app-rn-runtime → package}/components/input/toggle/toggle.props.js.map +0 -0
  814. {app-rn-runtime → package}/components/navigation/appnavbar/appnavbar.props.js +0 -0
  815. {app-rn-runtime → package}/components/navigation/appnavbar/appnavbar.props.js.map +0 -0
  816. {app-rn-runtime → package}/components/navigation/basenav/basenav.component.js +0 -0
  817. {app-rn-runtime → package}/components/navigation/basenav/basenav.component.js.map +0 -0
  818. {app-rn-runtime → package}/components/navigation/basenav/basenav.props.js +0 -0
  819. {app-rn-runtime → package}/components/navigation/basenav/basenav.props.js.map +0 -0
  820. {app-rn-runtime → package}/components/navigation/basenav/basenav.styles.js +0 -0
  821. {app-rn-runtime → package}/components/navigation/basenav/basenav.styles.js.map +0 -0
  822. {app-rn-runtime → package}/components/navigation/menu/menu.props.js +0 -0
  823. {app-rn-runtime → package}/components/navigation/menu/menu.props.js.map +0 -0
  824. {app-rn-runtime → package}/components/navigation/navbar/navbar.props.js +0 -0
  825. {app-rn-runtime → package}/components/navigation/navbar/navbar.props.js.map +0 -0
  826. {app-rn-runtime → package}/components/navigation/navbar/navbar.styles.js +0 -0
  827. {app-rn-runtime → package}/components/navigation/navbar/navbar.styles.js.map +0 -0
  828. {app-rn-runtime → package}/components/navigation/navitem/navitem.props.js +0 -0
  829. {app-rn-runtime → package}/components/navigation/navitem/navitem.props.js.map +0 -0
  830. {app-rn-runtime → package}/components/navigation/popover/popover.props.js +0 -0
  831. {app-rn-runtime → package}/components/navigation/popover/popover.props.js.map +0 -0
  832. {app-rn-runtime → package}/components/page/content/content.component.js +0 -0
  833. {app-rn-runtime → package}/components/page/content/content.component.js.map +0 -0
  834. {app-rn-runtime → package}/components/page/content/content.props.js +0 -0
  835. {app-rn-runtime → package}/components/page/content/content.props.js.map +0 -0
  836. {app-rn-runtime → package}/components/page/content/content.styles.js +0 -0
  837. {app-rn-runtime → package}/components/page/content/content.styles.js.map +0 -0
  838. {app-rn-runtime → package}/components/page/left-panel/left-panel.component.js +0 -0
  839. {app-rn-runtime → package}/components/page/left-panel/left-panel.component.js.map +0 -0
  840. {app-rn-runtime → package}/components/page/left-panel/left-panel.props.js +0 -0
  841. {app-rn-runtime → package}/components/page/left-panel/left-panel.props.js.map +0 -0
  842. {app-rn-runtime → package}/components/page/page-content/page-content.component.js +0 -0
  843. {app-rn-runtime → package}/components/page/page-content/page-content.component.js.map +0 -0
  844. {app-rn-runtime → package}/components/page/page-content/page-content.props.js +0 -0
  845. {app-rn-runtime → package}/components/page/page-content/page-content.props.js.map +0 -0
  846. {app-rn-runtime → package}/components/page/page-content/page-content.styles.js +0 -0
  847. {app-rn-runtime → package}/components/page/page-content/page-content.styles.js.map +0 -0
  848. {app-rn-runtime → package}/components/page/page.component.js +0 -0
  849. {app-rn-runtime → package}/components/page/page.component.js.map +0 -0
  850. {app-rn-runtime → package}/components/page/page.props.js +0 -0
  851. {app-rn-runtime → package}/components/page/page.props.js.map +0 -0
  852. {app-rn-runtime → package}/components/page/page.styles.js +0 -0
  853. {app-rn-runtime → package}/components/page/page.styles.js.map +0 -0
  854. {app-rn-runtime → package}/components/page/partial/partial.component.js +0 -0
  855. {app-rn-runtime → package}/components/page/partial/partial.component.js.map +0 -0
  856. {app-rn-runtime → package}/components/page/partial/partial.props.js +0 -0
  857. {app-rn-runtime → package}/components/page/partial/partial.props.js.map +0 -0
  858. {app-rn-runtime → package}/components/page/partial/partial.styles.js +0 -0
  859. {app-rn-runtime → package}/components/page/partial/partial.styles.js.map +0 -0
  860. {app-rn-runtime → package}/components/page/partial-container/partial-container.component.js +0 -0
  861. {app-rn-runtime → package}/components/page/partial-container/partial-container.component.js.map +0 -0
  862. {app-rn-runtime → package}/components/page/partial-container/partial-container.props.js +0 -0
  863. {app-rn-runtime → package}/components/page/partial-container/partial-container.props.js.map +0 -0
  864. {app-rn-runtime → package}/components/page/partial-container/partial-container.styles.js +0 -0
  865. {app-rn-runtime → package}/components/page/partial-container/partial-container.styles.js.map +0 -0
  866. {app-rn-runtime → package}/components/page/tabbar/tabbar.props.js +0 -0
  867. {app-rn-runtime → package}/components/page/tabbar/tabbar.props.js.map +0 -0
  868. {app-rn-runtime → package}/components/page/tabbar/tabbar.styles.js +0 -0
  869. {app-rn-runtime → package}/components/page/tabbar/tabbar.styles.js.map +0 -0
  870. {app-rn-runtime → package}/components/prefab/prefab-container.component.js +0 -0
  871. {app-rn-runtime → package}/components/prefab/prefab-container.component.js.map +0 -0
  872. {app-rn-runtime → package}/components/prefab/prefab-container.props.js +0 -0
  873. {app-rn-runtime → package}/components/prefab/prefab-container.props.js.map +0 -0
  874. {app-rn-runtime → package}/components/prefab/prefab-container.styles.js +0 -0
  875. {app-rn-runtime → package}/components/prefab/prefab-container.styles.js.map +0 -0
  876. {app-rn-runtime → package}/core/AppConfig.js +0 -0
  877. {app-rn-runtime → package}/core/AppConfig.js.map +0 -0
  878. {app-rn-runtime → package}/core/asset.provider.js +0 -0
  879. {app-rn-runtime → package}/core/asset.provider.js.map +0 -0
  880. {app-rn-runtime → package}/core/components/textinput.component.js +0 -0
  881. {app-rn-runtime → package}/core/components/textinput.component.js.map +0 -0
  882. {app-rn-runtime → package}/core/constants/currency-constants.js +0 -0
  883. {app-rn-runtime → package}/core/constants/currency-constants.js.map +0 -0
  884. {app-rn-runtime → package}/core/currency-constants.js +0 -0
  885. {app-rn-runtime → package}/core/currency-constants.js.map +0 -0
  886. {app-rn-runtime → package}/core/device/calendar-service.js +0 -0
  887. {app-rn-runtime → package}/core/device/calendar-service.js.map +0 -0
  888. {app-rn-runtime → package}/core/device/camera-service.js +0 -0
  889. {app-rn-runtime → package}/core/device/camera-service.js.map +0 -0
  890. {app-rn-runtime → package}/core/device/contacts-service.js +0 -0
  891. {app-rn-runtime → package}/core/device/contacts-service.js.map +0 -0
  892. {app-rn-runtime → package}/core/device/location-service.js +0 -0
  893. {app-rn-runtime → package}/core/device/location-service.js.map +0 -0
  894. {app-rn-runtime → package}/core/device/scan-service.js +0 -0
  895. {app-rn-runtime → package}/core/device/scan-service.js.map +0 -0
  896. {app-rn-runtime → package}/core/display.manager.js +0 -0
  897. {app-rn-runtime → package}/core/display.manager.js.map +0 -0
  898. {app-rn-runtime → package}/core/event-notifier.js +0 -0
  899. {app-rn-runtime → package}/core/event-notifier.js.map +0 -0
  900. {app-rn-runtime → package}/core/file-extension-types.js +0 -0
  901. {app-rn-runtime → package}/core/file-extension-types.js.map +0 -0
  902. {app-rn-runtime → package}/core/fixed-view.component.js +0 -0
  903. {app-rn-runtime → package}/core/fixed-view.component.js.map +0 -0
  904. {app-rn-runtime → package}/core/i18n.service.js +0 -0
  905. {app-rn-runtime → package}/core/i18n.service.js.map +0 -0
  906. {app-rn-runtime → package}/core/if.component.js +0 -0
  907. {app-rn-runtime → package}/core/if.component.js.map +0 -0
  908. {app-rn-runtime → package}/core/imageSizeEstimator.js +0 -0
  909. {app-rn-runtime → package}/core/imageSizeEstimator.js.map +0 -0
  910. {app-rn-runtime → package}/core/injector.js +0 -0
  911. {app-rn-runtime → package}/core/injector.js.map +0 -0
  912. {app-rn-runtime → package}/core/key.extractor.js +0 -0
  913. {app-rn-runtime → package}/core/key.extractor.js.map +0 -0
  914. {app-rn-runtime → package}/core/logger.js +0 -0
  915. {app-rn-runtime → package}/core/logger.js.map +0 -0
  916. {app-rn-runtime → package}/core/modal.service.js +0 -0
  917. {app-rn-runtime → package}/core/modal.service.js.map +0 -0
  918. {app-rn-runtime → package}/core/navigation.service.js +0 -0
  919. {app-rn-runtime → package}/core/navigation.service.js.map +0 -0
  920. {app-rn-runtime → package}/core/network.service.js +0 -0
  921. {app-rn-runtime → package}/core/network.service.js.map +0 -0
  922. {app-rn-runtime → package}/core/partial.service.js +0 -0
  923. {app-rn-runtime → package}/core/partial.service.js.map +0 -0
  924. {app-rn-runtime → package}/core/props.provider.js +0 -0
  925. {app-rn-runtime → package}/core/props.provider.js.map +0 -0
  926. {app-rn-runtime → package}/core/scroll-view.component.js +0 -0
  927. {app-rn-runtime → package}/core/scroll-view.component.js.map +0 -0
  928. {app-rn-runtime → package}/core/security.service.js +0 -0
  929. {app-rn-runtime → package}/core/security.service.js.map +0 -0
  930. {app-rn-runtime → package}/core/spinner.service.js +0 -0
  931. {app-rn-runtime → package}/core/spinner.service.js.map +0 -0
  932. {app-rn-runtime → package}/core/storage.service.js +0 -0
  933. {app-rn-runtime → package}/core/storage.service.js.map +0 -0
  934. {app-rn-runtime → package}/core/toast.service.js +0 -0
  935. {app-rn-runtime → package}/core/toast.service.js.map +0 -0
  936. {app-rn-runtime → package}/core/utils.js +0 -0
  937. {app-rn-runtime → package}/core/utils.js.map +0 -0
  938. {app-rn-runtime → package}/core/viewport.js +0 -0
  939. {app-rn-runtime → package}/core/viewport.js.map +0 -0
  940. {app-rn-runtime → package}/gestures/swipe.animation.js +0 -0
  941. {app-rn-runtime → package}/gestures/swipe.animation.js.map +0 -0
  942. {app-rn-runtime → package}/index.js +0 -0
  943. {app-rn-runtime → package}/index.js.map +0 -0
  944. {app-rn-runtime → package}/runtime/App.navigator.js +0 -0
  945. {app-rn-runtime → package}/runtime/App.navigator.js.map +0 -0
  946. {app-rn-runtime → package}/runtime/base-page.component.js +0 -0
  947. {app-rn-runtime → package}/runtime/base-page.component.js.map +0 -0
  948. {app-rn-runtime → package}/runtime/base-partial.component.js +0 -0
  949. {app-rn-runtime → package}/runtime/base-partial.component.js.map +0 -0
  950. {app-rn-runtime → package}/runtime/base-prefab.component.js +0 -0
  951. {app-rn-runtime → package}/runtime/base-prefab.component.js.map +0 -0
  952. {app-rn-runtime → package}/runtime/lib-patch.js +0 -0
  953. {app-rn-runtime → package}/runtime/lib-patch.js.map +0 -0
  954. {app-rn-runtime → package}/runtime/memo.component.js +0 -0
  955. {app-rn-runtime → package}/runtime/memo.component.js.map +0 -0
  956. {app-rn-runtime → package}/runtime/navigator/drawer.navigator.js +0 -0
  957. {app-rn-runtime → package}/runtime/navigator/drawer.navigator.js.map +0 -0
  958. {app-rn-runtime → package}/runtime/navigator/stack.navigator.js +0 -0
  959. {app-rn-runtime → package}/runtime/navigator/stack.navigator.js.map +0 -0
  960. {app-rn-runtime → package}/runtime/platform.api.js +0 -0
  961. {app-rn-runtime → package}/runtime/platform.api.js.map +0 -0
  962. {app-rn-runtime → package}/runtime/services/app-display-manager.service.js +0 -0
  963. {app-rn-runtime → package}/runtime/services/app-display-manager.service.js.map +0 -0
  964. {app-rn-runtime → package}/runtime/services/app-i18n.service.js +0 -0
  965. {app-rn-runtime → package}/runtime/services/app-i18n.service.js.map +0 -0
  966. {app-rn-runtime → package}/runtime/services/app-modal.service.js +0 -0
  967. {app-rn-runtime → package}/runtime/services/app-modal.service.js.map +0 -0
  968. {app-rn-runtime → package}/runtime/services/app-security.service.js +0 -0
  969. {app-rn-runtime → package}/runtime/services/app-security.service.js.map +0 -0
  970. {app-rn-runtime → package}/runtime/services/app-spinner.service.js +0 -0
  971. {app-rn-runtime → package}/runtime/services/app-spinner.service.js.map +0 -0
  972. {app-rn-runtime → package}/runtime/services/app-toast.service.js +0 -0
  973. {app-rn-runtime → package}/runtime/services/app-toast.service.js.map +0 -0
  974. {app-rn-runtime → package}/runtime/services/device/calendar-service.js +0 -0
  975. {app-rn-runtime → package}/runtime/services/device/calendar-service.js.map +0 -0
  976. {app-rn-runtime → package}/runtime/services/device/contacts-service.js +0 -0
  977. {app-rn-runtime → package}/runtime/services/device/contacts-service.js.map +0 -0
  978. {app-rn-runtime → package}/runtime/services/device/location-service.js +0 -0
  979. {app-rn-runtime → package}/runtime/services/device/location-service.js.map +0 -0
  980. {app-rn-runtime → package}/runtime/services/device/permissions.js +0 -0
  981. {app-rn-runtime → package}/runtime/services/device/permissions.js.map +0 -0
  982. {app-rn-runtime → package}/runtime/services/partial.service.js +0 -0
  983. {app-rn-runtime → package}/runtime/services/partial.service.js.map +0 -0
  984. {app-rn-runtime → package}/runtime/services/webprocess.service.js +0 -0
  985. {app-rn-runtime → package}/runtime/services/webprocess.service.js.map +0 -0
  986. {app-rn-runtime → package}/runtime/watcher.js +0 -0
  987. {app-rn-runtime → package}/runtime/watcher.js.map +0 -0
  988. {app-rn-runtime → package}/styles/MediaQueryList.js +0 -0
  989. {app-rn-runtime → package}/styles/MediaQueryList.js.map +0 -0
  990. {app-rn-runtime → package}/styles/background.component.js +0 -0
  991. {app-rn-runtime → package}/styles/background.component.js.map +0 -0
  992. {app-rn-runtime → package}/styles/style-prop.validator.js +0 -0
  993. {app-rn-runtime → package}/styles/style-prop.validator.js.map +0 -0
  994. {app-rn-runtime → package}/styles/style-props.js +0 -0
  995. {app-rn-runtime → package}/styles/style-props.js.map +0 -0
  996. {app-rn-runtime → package}/styles/theme.js +0 -0
  997. {app-rn-runtime → package}/styles/theme.js.map +0 -0
  998. {app-rn-runtime → package}/variables/base-variable.js +0 -0
  999. {app-rn-runtime → package}/variables/base-variable.js.map +0 -0
  1000. {app-rn-runtime → package}/variables/device/calendar/create-event.operation.js +0 -0
  1001. {app-rn-runtime → package}/variables/device/calendar/create-event.operation.js.map +0 -0
  1002. {app-rn-runtime → package}/variables/device/calendar/delete-event.operation.js +0 -0
  1003. {app-rn-runtime → package}/variables/device/calendar/delete-event.operation.js.map +0 -0
  1004. {app-rn-runtime → package}/variables/device/calendar/get-events.operation.js +0 -0
  1005. {app-rn-runtime → package}/variables/device/calendar/get-events.operation.js.map +0 -0
  1006. {app-rn-runtime → package}/variables/device/camera/capture-image.operation.js +0 -0
  1007. {app-rn-runtime → package}/variables/device/camera/capture-image.operation.js.map +0 -0
  1008. {app-rn-runtime → package}/variables/device/camera/capture-video.operation.js +0 -0
  1009. {app-rn-runtime → package}/variables/device/camera/capture-video.operation.js.map +0 -0
  1010. {app-rn-runtime → package}/variables/device/contacts/get-contacts.operation.js +0 -0
  1011. {app-rn-runtime → package}/variables/device/contacts/get-contacts.operation.js.map +0 -0
  1012. {app-rn-runtime → package}/variables/device/device/app-info.operation.js +0 -0
  1013. {app-rn-runtime → package}/variables/device/device/app-info.operation.js.map +0 -0
  1014. {app-rn-runtime → package}/variables/device/device/current-geo-position.operation.js +0 -0
  1015. {app-rn-runtime → package}/variables/device/device/current-geo-position.operation.js.map +0 -0
  1016. {app-rn-runtime → package}/variables/device/device/device-info.operation.js +0 -0
  1017. {app-rn-runtime → package}/variables/device/device/device-info.operation.js.map +0 -0
  1018. {app-rn-runtime → package}/variables/device/device/network-info.operation.js +0 -0
  1019. {app-rn-runtime → package}/variables/device/device/network-info.operation.js.map +0 -0
  1020. {app-rn-runtime → package}/variables/device/device/vibrate.operation.js +0 -0
  1021. {app-rn-runtime → package}/variables/device/device/vibrate.operation.js.map +0 -0
  1022. {app-rn-runtime → package}/variables/device/file/upload-file.operation.js +0 -0
  1023. {app-rn-runtime → package}/variables/device/file/upload-file.operation.js.map +0 -0
  1024. {app-rn-runtime → package}/variables/device/operation.provider.js +0 -0
  1025. {app-rn-runtime → package}/variables/device/operation.provider.js.map +0 -0
  1026. {app-rn-runtime → package}/variables/device/scan/scan.operation.js +0 -0
  1027. {app-rn-runtime → package}/variables/device/scan/scan.operation.js.map +0 -0
  1028. {app-rn-runtime → package}/variables/device-variable.js +0 -0
  1029. {app-rn-runtime → package}/variables/device-variable.js.map +0 -0
  1030. {app-rn-runtime → package}/variables/http.service.js +0 -0
  1031. {app-rn-runtime → package}/variables/http.service.js.map +0 -0
  1032. {app-rn-runtime → package}/variables/live-variable.js +0 -0
  1033. {app-rn-runtime → package}/variables/live-variable.js.map +0 -0
  1034. {app-rn-runtime → package}/variables/model-variable.js +0 -0
  1035. {app-rn-runtime → package}/variables/model-variable.js.map +0 -0
  1036. {app-rn-runtime → package}/variables/service-variable.js +0 -0
  1037. {app-rn-runtime → package}/variables/service-variable.js.map +0 -0
  1038. {app-rn-runtime → package}/variables/utils/dataset-util.js +0 -0
  1039. {app-rn-runtime → package}/variables/utils/dataset-util.js.map +0 -0
  1040. {app-rn-runtime → package}/variables/utils/inflight-queue.js +0 -0
  1041. {app-rn-runtime → package}/variables/utils/inflight-queue.js.map +0 -0
  1042. {app-rn-runtime → package}/variables/utils/variable.constants.js +0 -0
  1043. {app-rn-runtime → package}/variables/utils/variable.constants.js.map +0 -0
  1044. {app-rn-runtime → package}/variables/utils/variable.utils.js +0 -0
  1045. {app-rn-runtime → package}/variables/utils/variable.utils.js.map +0 -0
@@ -0,0 +1 @@
1
+ {"version":3,"names":["React","View","BaseComponent","BaseComponentState","isDefined","debounce","find","forEach","get","set","WmLabel","WmIcon","WmMessage","ToastConsumer","WmFormProps","DEFAULT_CLASS","isDataSetWidget","WmFormState","constructor","arguments","_defineProperty","WmForm","props","handleSubmit","componentDidMount","getParentFormRef","parentForm","pformName","current","parent","parentFormRef","setReadonlyFields","_this$formFields","formFields","field","setReadOnlyState","state","isUpdateMode","setReadonlyState","updateMode","updateState","setTimeout","showActions","edit","new","cancel","delete","registerFormFields","formWidgets","w","form","formwidget","formKey","name","f","formfields","applyFormData","applyDefaultValue","formdataoutput","datavalue","dataoutput","_this$buttonArray","buttonArray","action","show","registerFormActions","formActions","_updateFieldOnDataSourceChange","isDataSetBound","widget","isRelated","relatedData","_this$parentFormRef","formData","formdata","formField","_formField$props","fw","key","setState","isDefault","updateFormFieldDefaultValue","dv","defaultvalue","_formField$props2","invokeEventCallback","bind","undefined","formreset","ff","id","_widget","isValid","reset","submit","_debouncedSubmitForm","onPropertyChange","$new","$old","_this$formFields2","setPrimaryKey","fieldName","primaryKey","indexOf","push","validateFieldsOnSubmit","val","onValidate","required","generator","msg","defaultValidatorMessages","validationmessage","validate","event","preventDefault","onBeforesubmit","proxy","formSubmit","data","onResultCb","error","response","status","onSuccess","postmessage","toggleMessage","onError","errormessage","updateDataOutput","Object","assign","type","message","messagelayout","showInlineMsg","toaster","showToast","placement","styles","bottom","text","hideOnClick","onMsgClose","renderWidget","createElement","toastService","style","root","_background","iconclass","title","subheading","heading","flex","flexDirection","getTestId","listIcon","caption","hideclose","onClose","children"],"sources":["form.component.tsx"],"sourcesContent":["import React from 'react';\nimport { View } from 'react-native';\nimport { BaseComponent, BaseComponentState } from '@wavemaker/app-rn-runtime/core/base.component';\nimport { isDefined, widgetsWithUndefinedValue } from '@wavemaker/app-rn-runtime/core/utils';\nimport { debounce, find, forEach, get, set } from 'lodash';\n\nimport WmLabel from '@wavemaker/app-rn-runtime/components/basic/label/label.component';\nimport WmIcon from '@wavemaker/app-rn-runtime/components/basic/icon/icon.component';\nimport WmFormField, { WmFormFieldState } from '@wavemaker/app-rn-runtime/components/data/form/form-field/form-field.component';\nimport WmMessage from '@wavemaker/app-rn-runtime/components/basic/message/message.component';\nimport { ToastConsumer, ToastService } from '@wavemaker/app-rn-runtime/core/toast.service';\n\nimport WmFormProps from './form.props';\nimport { DEFAULT_CLASS, WmFormStyles } from './form.styles';\nimport WmSkeleton, { createSkeleton } from '../../basic/skeleton/skeleton.component';\nimport { WmSkeletonStyles } from '../../basic/skeleton/skeleton.styles';\nimport { isDataSetWidget } from '@wavemaker/app-rn-runtime/core/utils';\nimport WmFormAction, {\n WmFormActionState\n} from '@wavemaker/app-rn-runtime/components/data/form/form-action/form-action.component';\n\nexport class WmFormState extends BaseComponentState<WmFormProps> {\n isValid = false;\n type: 'success' | 'warning' | 'error' | 'info' | 'loading' | undefined = 'success';\n message: string = '';\n showInlineMsg: boolean = false;\n isUpdateMode: boolean = true;\n}\nexport default class WmForm extends BaseComponent<WmFormProps, WmFormState, WmFormStyles> {\n public formFields: Array<WmFormField> = []; // contains array of direct widget elements [WmText, WmNumber, WmCurrent]\n public parentFormRef: any;\n public formfields: {[key: string]: WmFormField} = {};\n public formdataoutput: any;\n private toaster: any;\n public formActions: Array<WmFormAction> = [];\n primaryKey = [];\n buttonArray: Array<WmFormAction> = [];\n formWidgets: { [key: string]: BaseComponent<any, any, any> } = {}; // object containing key as name of formField and value as WmFormField proxy.\n constructor(props: WmFormProps) {\n super(props, DEFAULT_CLASS, new WmFormProps(), new WmFormState());\n }\n\n private _debouncedSubmitForm = debounce(this.handleSubmit, 250);\n\n componentDidMount() {\n super.componentDidMount();\n this.getParentFormRef(this.props.parentForm);\n }\n\n getParentFormRef(pformName: string) {\n let current = this.parent;\n while (current) {\n if (get(current, 'props.name') === pformName) {\n this.parentFormRef = current;\n break;\n }\n current = current.parent;\n }\n }\n\n setReadonlyFields() {\n this.formFields?.forEach((field: any) => {\n field.setReadOnlyState(this.state.isUpdateMode);\n });\n }\n\n setReadonlyState(updateMode: any) {\n this.updateState({\n isUpdateMode: updateMode,\n } as WmFormState);\n setTimeout(() => {\n this.showActions();\n this.setReadonlyFields();\n }, 100);\n }\n\n edit() {\n this.setReadonlyState(true);\n }\n\n new() {\n this.setReadonlyState(true);\n }\n\n cancel() {\n this.setReadonlyState(false);\n }\n\n delete() { }\n\n registerFormFields(\n formFields: Array<WmFormField>,\n formWidgets: { [key: string]: BaseComponent<any, any, any> }\n ) {\n forEach(formFields, (w: WmFormField) => {\n if (!w.form) {\n w.form = this;\n w.formwidget = (w.props.formKey && formWidgets[w.props.formKey])\n || (w.props.name && formWidgets[w.props.name]);\n }\n });\n\n this.formFields = formFields;\n this.formWidgets = formWidgets;\n\n formFields.forEach((f: WmFormField) => {\n if (f.props.name) {\n set(this.formfields, f.props.name, f);\n }\n })\n\n this.setReadonlyFields();\n\n this.applyFormData();\n this.applyDefaultValue();\n\n // setting default form dataoutput.\n if (!this.formdataoutput) {\n this.formdataoutput = {};\n formFields.forEach((w: WmFormField) => {\n const name = get(w.props, 'formKey') || w.props.name;\n if (name) {\n set(this.formdataoutput, name, w.props.datavalue);\n }\n });\n this.updateState({\n props: {\n dataoutput: this.formdataoutput\n }\n } as WmFormState);\n }\n }\n\n showActions () {\n this.buttonArray?.forEach((action: any) => {\n action.updateState({\n props: {\n show: action.updateMode === this.state.isUpdateMode\n }} as WmFormActionState);\n });\n }\n\n registerFormActions(formActions: Array<WmFormAction>) {\n this.buttonArray = formActions;\n this.showActions();\n }\n\n private _updateFieldOnDataSourceChange(field: WmFormField, formFields: Array<WmFormField>) {\n if (!field.state.props.isDataSetBound && isDataSetWidget(field.props.widget)) {\n if (field.state.props.isRelated) {\n field.updateState({\n props: {\n isDataSetBound: true\n }} as WmFormFieldState);\n this.props.relatedData && this.props.relatedData(field);\n }\n }\n }\n\n applyFormData() {\n let formData = this.state.props.formdata || this.parentFormRef?.state.props.formdata;\n if (!formData || (this.parentFormRef && this.state.props.formdata)) {\n return;\n }\n forEach(this.formFields, (formField: WmFormField) => {\n let fw = formField.props?.name && this.formWidgets[formField.props.name];\n if (!fw) {\n fw = find(this.formWidgets, (fw: BaseComponent<any, any, any>) => {\n return get(fw, 'formfieldname') === formField.props.name\n });\n }\n let key = get(formField, 'formKey') || get(fw, 'props.name');\n fw && fw.setState({ isDefault: true });\n formField.updateState({\n props: {\n datavalue: get(formData, key)\n }\n } as WmFormFieldState);\n });\n }\n\n updateFormFieldDefaultValue(formField: WmFormField) {\n if (formField) {\n const dv = formField.state.props.defaultvalue;\n if (isDefined(dv) && dv !== null && this.formFields) {\n let field = formField.props?.name && this.formWidgets[formField.props.name];\n if (!field) {\n field = find(this.formWidgets, (fw: BaseComponent<any, any, any>) => {\n return get(fw, 'formfieldname') === formField.props.name\n });\n }\n if (field) {\n field.setState({ isDefault: true });\n field.updateState({\n props: {\n datavalue: dv\n }\n }, this.invokeEventCallback.bind(formField, 'onFieldChange', [undefined, formField, dv]));\n }\n }\n }\n }\n\n get dataoutput() {\n return this.formdataoutput;\n }\n\n applyDefaultValue(formField?: WmFormField) {\n if (formField) {\n this.updateFormFieldDefaultValue(formField);\n return;\n }\n forEach(this.formFields, (w: WmFormField) => {\n this.updateFormFieldDefaultValue(w);\n });\n }\n\n formreset() {\n forEach(this.formFields, (ff: WmFormField) => {\n ff.updateState({\n props : {\n datavalue: ''\n }\n } as WmFormFieldState, () => {\n const id = ff.props.formKey || ff.props.name;\n if (id) {\n let widget: BaseComponent<any, any, any> | undefined | any = this.formWidgets[id];\n if (!widget) {\n widget = find(this.formWidgets, (fw: BaseComponent<any, any, any>) => {\n return get(fw, 'formfieldname') === ff.props.name\n });\n }\n widget.updateState({\n isValid: true,\n props : {\n datavalue: ''\n }\n }, () => ff.updateState({\n isValid: true\n } as WmFormFieldState));\n widget?.reset();\n }\n }\n );\n });\n }\n\n submit() {\n this._debouncedSubmitForm();\n }\n\n onPropertyChange(name: string, $new: any, $old: any) {\n switch (name) {\n case 'formdata':\n if ($new) {\n this.applyFormData();\n }\n break;\n case 'defaultmode':\n this.updateState({\n isUpdateMode: $new && $new === 'Edit' ? true : false,\n } as WmFormState);\n break;\n case 'dataset':\n this.formFields?.forEach((w: WmFormField) => {\n this._updateFieldOnDataSourceChange(w, this.formFields);\n });\n break;\n }\n }\n setPrimaryKey(fieldName: string) {\n /*Store the primary key of data*/\n this.primaryKey = this.primaryKey || [];\n // @ts-ignore\n if (this.primaryKey.indexOf(fieldName) === -1) {\n // @ts-ignore\n this.primaryKey.push(fieldName);\n }\n }\n // Disable the form submit if form is in invalid state. Highlight all the invalid fields if validation type is default\n validateFieldsOnSubmit() {\n let isValid = true;\n forEach(this.formFields, (field) => {\n const val = field?.state.props.datavalue;\n\n const onValidate = get(field, 'props.onValidate');\n onValidate && onValidate(field);\n if (!val && field?.state.props.required && field.state.props.generator === 'assigned') {\n isValid = false;\n const msg = get(field.defaultValidatorMessages, 'required') || field.state.props.validationmessage;\n field.updateState({ isValid: isValid, props: {\n validationmessage: msg\n }} as WmFormFieldState);\n field.formwidget.validate && field.formwidget.validate(val);\n }\n // check for isvalid state of formwidget\n if (field.formwidget.state.isValid === false) {\n isValid = false;\n }\n });\n return isValid;\n }\n\n // @ts-ignore\n handleSubmit(event?: any) {\n event?.preventDefault();\n const formData = this.state.props.dataoutput || this.formdataoutput;\n\n if (!this.validateFieldsOnSubmit()) {\n return false;\n }\n if (this.props.onBeforesubmit) {\n this.invokeEventCallback('onBeforesubmit', [ null, this.proxy, formData ]);\n }\n if (this.props.formSubmit) {\n this.props.formSubmit(formData, ((data: any) => {\n this.invokeEventCallback('onSubmit', [ null, this.proxy, formData ]);\n this.onResultCb(get(data, 'params'), 'success');\n }), ((error: any) => {\n this.invokeEventCallback('onSubmit', [ null, this.proxy, formData ]);\n this.onResultCb(error, '');\n }));\n } else {\n this.invokeEventCallback('onSubmit', [ null, this.proxy, formData ]);\n }\n }\n\n onResultCb(response: any, status: string, event?: any) {\n this.invokeEventCallback('onResult', [ null, this.proxy, response ]);\n if (status) {\n this.invokeEventCallback('onSuccess', [ null, this.proxy, response ]);\n !this.props.onSuccess && this.state.props.postmessage && this.toggleMessage('success', this.state.props.postmessage);\n } else {\n this.invokeEventCallback('onError', [ null, this.proxy, response ]);\n !this.props.onError && this.toggleMessage('error', this.state.props.errormessage || get(response, 'message'));\n }\n }\n\n updateDataOutput(key: string, val: any) {\n const current = this.formdataoutput || {};\n if (key) {\n set(current, key, val);\n } else {\n Object.assign(current, val)\n }\n this.formdataoutput = current;\n this.updateState({ props: { dataoutput: current }} as WmFormState);\n this.parentFormRef && this.parentFormRef.updateDataOutput(undefined, this.formdataoutput);\n this.updateState({\n props: {\n dataoutput: this.formdataoutput\n }\n } as WmFormState);\n }\n\n toggleMessage(\n type: 'success' | 'warning' | 'error' | 'info' | 'loading' | undefined,\n message: string\n ) {\n if (this.state.props.messagelayout === 'Inline') {\n this.setState({\n type: type,\n message: message,\n showInlineMsg: true\n } as WmFormState)\n return;\n }\n this.toaster.showToast({\n name: this, placement: \"\", styles: {bottom: 0},\n text: message,\n type: type,\n hideOnClick: true\n });\n }\n\n onMsgClose() {\n this.setState({\n showInlineMsg: false\n } as WmFormState)\n }\n\n renderWidget(props: WmFormProps) {\n return (\n <ToastConsumer>\n {(toastService: ToastService) => {\n this.toaster = toastService;\n return <View style={this.styles.root}>\n {this._background}\n {props.iconclass || props.title || props.subheading ? (\n <View style={this.styles.heading}>\n <View style={{flex: 1, flexDirection: 'row'}}>\n <WmIcon id={this.getTestId('icon')} styles={this.styles.listIcon} iconclass={props.iconclass}></WmIcon>\n <View>\n <WmLabel id={this.getTestId('title')} styles={this.styles.title} caption={props.title}></WmLabel>\n <WmLabel id={this.getTestId('description')} styles={this.styles.subheading} caption={props.subheading}></WmLabel>\n </View>\n </View>\n </View>\n ) : null}\n {this.state.showInlineMsg ? <WmMessage type={this.state.type} caption={this.state.message} hideclose={false} onClose={this.onMsgClose.bind(this)}></WmMessage> : null\n }\n {props.children}\n </View>\n }\n }\n </ToastConsumer>\n );\n }\n}\n"],"mappings":"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"}
@@ -0,0 +1,26 @@
1
+ import BASE_THEME from '@wavemaker/app-rn-runtime/styles/theme';
2
+ import { defineStyles } from '@wavemaker/app-rn-runtime/core/base.component';
3
+ export const DEFAULT_CLASS = 'app-list-template';
4
+ BASE_THEME.registerStyle((themeVariables, addStyle) => {
5
+ const defaultStyles = defineStyles({
6
+ root: {
7
+ backgroundColor: themeVariables.listHeaderBgColor
8
+ },
9
+ text: {}
10
+ });
11
+ addStyle(DEFAULT_CLASS, '', defaultStyles);
12
+ addStyle('list-card-template', '', {
13
+ root: {
14
+ borderBottomWidth: 0
15
+ // marginLeft: 35,
16
+ }
17
+ });
18
+
19
+ addStyle('horizontal-list-template', '', {
20
+ root: {}
21
+ });
22
+ addStyle('vertical-list-template', '', {
23
+ root: {}
24
+ });
25
+ });
26
+ //# sourceMappingURL=list-template.styles.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["BASE_THEME","defineStyles","DEFAULT_CLASS","registerStyle","themeVariables","addStyle","defaultStyles","root","backgroundColor","listHeaderBgColor","text","borderBottomWidth"],"sources":["list-template.styles.ts"],"sourcesContent":["import BASE_THEME from '@wavemaker/app-rn-runtime/styles/theme';\nimport { BaseStyles, defineStyles } from '@wavemaker/app-rn-runtime/core/base.component';\n\nexport type WmListTemplateStyles = BaseStyles & {};\n\nexport const DEFAULT_CLASS = 'app-list-template';\nBASE_THEME.registerStyle((themeVariables, addStyle) => {\n const defaultStyles: WmListTemplateStyles = defineStyles<WmListTemplateStyles>({\n root: {\n backgroundColor: themeVariables.listHeaderBgColor,\n },\n text: {}\n });\n\n addStyle(DEFAULT_CLASS, '', defaultStyles);\n addStyle('list-card-template', '', {\n root : {\n borderBottomWidth: 0,\n // marginLeft: 35,\n }\n } as WmListTemplateStyles);\n addStyle('horizontal-list-template', '', {\n root : {}\n } as WmListTemplateStyles);\n addStyle('vertical-list-template', '', {\n root : {\n }\n } as WmListTemplateStyles);\n});"],"mappings":"AAAA,OAAOA,UAAU,MAAM,wCAAwC;AAC/D,SAAqBC,YAAY,QAAQ,+CAA+C;AAIxF,OAAO,MAAMC,aAAa,GAAG,mBAAmB;AAChDF,UAAU,CAACG,aAAa,CAAC,CAACC,cAAc,EAAEC,QAAQ,KAAK;EACnD,MAAMC,aAAmC,GAAGL,YAAY,CAAuB;IAC3EM,IAAI,EAAE;MACFC,eAAe,EAAEJ,cAAc,CAACK;IACpC,CAAC;IACDC,IAAI,EAAE,CAAC;EACX,CAAC,CAAC;EAEFL,QAAQ,CAACH,aAAa,EAAE,EAAE,EAAEI,aAAa,CAAC;EAC1CD,QAAQ,CAAC,oBAAoB,EAAE,EAAE,EAAE;IAC/BE,IAAI,EAAG;MACHI,iBAAiB,EAAE;MACnB;IACJ;EACJ,CAAyB,CAAC;;EAC1BN,QAAQ,CAAC,0BAA0B,EAAE,EAAE,EAAE;IACrCE,IAAI,EAAG,CAAC;EACZ,CAAyB,CAAC;EAC1BF,QAAQ,CAAC,wBAAwB,EAAE,EAAE,EAAE;IACnCE,IAAI,EAAG,CACP;EACJ,CAAyB,CAAC;AAC9B,CAAC,CAAC"}
@@ -0,0 +1,313 @@
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 { SectionList, Text, View } from 'react-native';
7
+ import { FlatList } from 'react-native-gesture-handler';
8
+ import { isArray, isNil, round } from 'lodash-es';
9
+ import { BaseComponent, BaseComponentState } from '@wavemaker/app-rn-runtime/core/base.component';
10
+ import { getGroupedData, isDefined } from "@wavemaker/app-rn-runtime/core/utils";
11
+ import { Tappable } from '@wavemaker/app-rn-runtime/core/tappable.component';
12
+ import { DefaultKeyExtractor } from '@wavemaker/app-rn-runtime/core/key.extractor';
13
+ import WmLabel from '@wavemaker/app-rn-runtime/components/basic/label/label.component';
14
+ import WmIcon from '@wavemaker/app-rn-runtime/components/basic/icon/icon.component';
15
+ import WmListProps from './list.props';
16
+ import { DEFAULT_CLASS } from './list.styles';
17
+ export class WmListState extends BaseComponentState {
18
+ constructor() {
19
+ super(...arguments);
20
+ _defineProperty(this, "selectedindex", void 0);
21
+ _defineProperty(this, "groupedData", []);
22
+ _defineProperty(this, "currentPage", 1);
23
+ }
24
+ }
25
+ export default class WmList extends BaseComponent {
26
+ constructor(props) {
27
+ super(props, DEFAULT_CLASS, new WmListProps(), new WmListState());
28
+ _defineProperty(this, "itemWidgets", []);
29
+ _defineProperty(this, "selectedItemWidgets", {});
30
+ _defineProperty(this, "keyExtractor", new DefaultKeyExtractor());
31
+ }
32
+ isSelected($item) {
33
+ const selectedItem = this.state.props.selecteditem;
34
+ if (isArray(selectedItem)) {
35
+ return selectedItem.indexOf($item) >= 0;
36
+ }
37
+ return selectedItem === $item;
38
+ }
39
+ onSelect($item, $index) {
40
+ let triggerTapEvent = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false;
41
+ const props = this.state.props;
42
+ let selectedItem = null;
43
+ if (props.disableitem !== true && (typeof props.disableitem !== 'function' || !props.disableitem($item, $index))) {
44
+ if (props.multiselect) {
45
+ selectedItem = [...(props.selecteditem || [])];
46
+ const index = selectedItem.indexOf($item);
47
+ if (index < 0) {
48
+ if (!props.selectionlimit || props.selectionlimit < 0 || selectedItem.length < props.selectionlimit) {
49
+ selectedItem.push($item);
50
+ } else {
51
+ this.invokeEventCallback('onSelectionlimitexceed', [null, this]);
52
+ }
53
+ } else {
54
+ selectedItem.splice(index, 1);
55
+ }
56
+ } else {
57
+ if (props.selecteditem === $item) {
58
+ selectedItem = null;
59
+ } else {
60
+ selectedItem = $item;
61
+ }
62
+ }
63
+ this.selectedItemWidgets = this.itemWidgets[$index];
64
+ this.updateState({
65
+ props: {
66
+ selecteditem: selectedItem
67
+ },
68
+ selectedindex: $index
69
+ }, () => {
70
+ this.invokeEventCallback('onSelect', [this.proxy, $item]);
71
+ triggerTapEvent && this.invokeEventCallback('onTap', [null, this.proxy]);
72
+ });
73
+ }
74
+ }
75
+ selectFirstItem() {
76
+ const props = this.state.props;
77
+ if (this.initialized && props.dataset && props.dataset.length) {
78
+ const index = props.groupby ? '00' : 0;
79
+ this.onSelect(props.dataset[0], index);
80
+ }
81
+ }
82
+ deselectAll() {
83
+ this.updateState({
84
+ props: {
85
+ selecteditem: null
86
+ },
87
+ selectedindex: -1
88
+ });
89
+ }
90
+ setGroupData(items) {
91
+ const dataItems = items;
92
+ const props = this.state.props;
93
+ if (props.groupby) {
94
+ const groupedData = dataItems && getGroupedData(dataItems, props.groupby, props.match, props.orderby, props.dateformat, this);
95
+ this.updateState({
96
+ groupedData: groupedData
97
+ }, () => {
98
+ var _this$keyExtractor;
99
+ (_this$keyExtractor = this.keyExtractor) === null || _this$keyExtractor === void 0 ? void 0 : _this$keyExtractor.clear();
100
+ });
101
+ }
102
+ }
103
+ onPropertyChange(name, $new, $old) {
104
+ super.onPropertyChange(name, $new, $old);
105
+ const props = this.state.props;
106
+ switch (name) {
107
+ case 'selectfirstitem':
108
+ if ($new) {
109
+ this.selectFirstItem();
110
+ }
111
+ break;
112
+ case 'dataset':
113
+ if (this.state.props.groupby) {
114
+ this.setGroupData($new);
115
+ } else {
116
+ const data = isArray($new) ? $new : isDefined($new) ? [$new] : [];
117
+ this.updateState({
118
+ groupedData: data[0] || props.direction === 'horizontal' ? [{
119
+ key: '',
120
+ data: data
121
+ }] : []
122
+ }, () => {
123
+ var _this$keyExtractor2;
124
+ (_this$keyExtractor2 = this.keyExtractor) === null || _this$keyExtractor2 === void 0 ? void 0 : _this$keyExtractor2.clear();
125
+ });
126
+ }
127
+ this.itemWidgets = [];
128
+ if (props.selectfirstitem) {
129
+ this.selectFirstItem();
130
+ } else {
131
+ this.deselectAll();
132
+ }
133
+ break;
134
+ case 'groupby':
135
+ case 'match':
136
+ this.setGroupData(this.state.props.dataset);
137
+ break;
138
+ case 'multiselect':
139
+ if ($new) {
140
+ if (!isArray(this.state.props.selecteditem)) {
141
+ this.state.props.selecteditem = this.state.props.selecteditem ? [this.state.props.selecteditem] : [];
142
+ }
143
+ } else if (isArray(this.state.props.selecteditem)) {
144
+ this.state.props.selecteditem = this.state.props.selecteditem.pop();
145
+ }
146
+ }
147
+ }
148
+ componentDidMount() {
149
+ var _props$dataset;
150
+ const props = this.state.props;
151
+ if (this.state.props.selectfirstitem && (_props$dataset = props.dataset) !== null && _props$dataset !== void 0 && _props$dataset.length) {
152
+ setTimeout(() => {
153
+ this.onSelect(props.dataset[0], 0);
154
+ });
155
+ }
156
+ super.componentDidMount();
157
+ }
158
+ componentDidUpdate(prevProps, prevState, snapshot) {
159
+ super.componentDidUpdate && super.componentDidUpdate(prevProps, prevState, snapshot);
160
+ this.invokeEventCallback('onRender', [this, this.state.props.dataset]);
161
+ }
162
+ getDefaultStyles() {
163
+ const isHorizontal = this.state.props.direction === 'horizontal';
164
+ return this.theme.getStyle(`${this.defaultClass} ${isHorizontal ? 'app-horizontal-list' : 'app-vertical-list'}`);
165
+ }
166
+ getIndex(item) {
167
+ return this.state.props.dataset.indexOf(item);
168
+ }
169
+ generateItemKey(item, index, props) {
170
+ if (props.itemkey && item && !this._showSkeleton) {
171
+ return props.itemkey(item, index);
172
+ }
173
+ return 'list_item_' + this.keyExtractor.getKey(item, true);
174
+ }
175
+ renderItem(item, index, props) {
176
+ const cols = this.getNoOfColumns();
177
+ const isHorizontal = props.direction === 'horizontal';
178
+ return /*#__PURE__*/React.createElement(Tappable, _extends({}, this.getTestPropsForAction(`item${index}`), {
179
+ onTap: () => this.onSelect(item, index, true),
180
+ onLongTap: () => this.invokeEventCallback('onLongtap', [null, this.proxy]),
181
+ onDoubleTap: () => this.invokeEventCallback('onDoubletap', [null, this.proxy]),
182
+ styles: [cols ? {
183
+ width: round(100 / cols, 2) + '%'
184
+ } : null, cols || isHorizontal ? {
185
+ paddingRight: (isNil(this.styles.item.marginRight) ? this.styles.item.margin : this.styles.item.marginRight) || 4
186
+ } : null]
187
+ }), /*#__PURE__*/React.createElement(View, {
188
+ style: [this.styles.item, props.itemclass ? this.theme.getStyle(props.itemclass(item, index)) : null, this.isSelected(item) ? this.styles.selectedItem : {}]
189
+ }, props.renderItem(item, index, this), this.isSelected(item) ? /*#__PURE__*/React.createElement(WmIcon, {
190
+ id: this.getTestId('icon' + index),
191
+ iconclass: "wi wi-check-circle",
192
+ styles: this.styles.selectedIcon
193
+ }) : null));
194
+ }
195
+ renderHeader(props, title) {
196
+ return props.groupby ? /*#__PURE__*/React.createElement(Text, {
197
+ style: this.styles.groupHeading
198
+ }, title) : props.iconclass || props.title || props.subheading ? /*#__PURE__*/React.createElement(View, {
199
+ style: this.styles.heading
200
+ }, /*#__PURE__*/React.createElement(View, {
201
+ style: {
202
+ flex: 1,
203
+ flexDirection: 'row'
204
+ }
205
+ }, /*#__PURE__*/React.createElement(WmIcon, {
206
+ id: this.getTestId('icon'),
207
+ styles: this.styles.listIcon,
208
+ iconclass: props.iconclass
209
+ }), /*#__PURE__*/React.createElement(View, null, /*#__PURE__*/React.createElement(WmLabel, {
210
+ id: this.getTestId('title'),
211
+ styles: this.styles.title,
212
+ caption: props.title
213
+ }), /*#__PURE__*/React.createElement(WmLabel, {
214
+ id: this.getTestId('subheading'),
215
+ styles: this.styles.subheading,
216
+ caption: props.subheading
217
+ })))) : null;
218
+ }
219
+ renderEmptyMessage(isHorizontal, item, index, props) {
220
+ return /*#__PURE__*/React.createElement(WmLabel, {
221
+ id: this.getTestId('emptymsg'),
222
+ styles: this.styles.emptyMessage,
223
+ caption: props.nodatamessage
224
+ });
225
+ }
226
+ renderLoadingIcon(props) {
227
+ return /*#__PURE__*/React.createElement(WmIcon, {
228
+ id: this.getTestId('loadingicon'),
229
+ styles: this.styles.loadingIcon,
230
+ iconclass: props.loadingicon,
231
+ caption: props.loadingdatamsg
232
+ });
233
+ }
234
+ getNoOfColumns() {
235
+ const props = this.state.props;
236
+ if (props.direction === 'vertical') {
237
+ return props.itemsperrow.xs;
238
+ }
239
+ return 0;
240
+ }
241
+ renderWithFlatList(props) {
242
+ let isHorizontal = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;
243
+ return /*#__PURE__*/React.createElement(View, {
244
+ style: this.styles.root
245
+ }, this.state.groupedData ? this.state.groupedData.map((v, i) => /*#__PURE__*/React.createElement(View, {
246
+ style: {
247
+ marginBottom: 16
248
+ },
249
+ key: v.key || this.keyExtractor.getKey(v, true)
250
+ }, this.renderHeader(props, v.key), /*#__PURE__*/React.createElement(FlatList, _extends({
251
+ key: props.name + '_' + (isHorizontal ? 'H' : 'V') + props.itemsperrow.xs,
252
+ keyExtractor: (item, i) => this.generateItemKey(item, i, props),
253
+ horizontal: isHorizontal,
254
+ data: v.data || [],
255
+ ListEmptyComponent: itemInfo => this.renderEmptyMessage(isHorizontal, itemInfo.item, itemInfo.index, props),
256
+ renderItem: itemInfo => this.renderItem(itemInfo.item, itemInfo.index, props)
257
+ }, isHorizontal ? {} : {
258
+ numColumns: this.getNoOfColumns()
259
+ })))) : null);
260
+ }
261
+ getSectionListData() {
262
+ if (this._showSkeleton) {
263
+ return [{
264
+ key: '',
265
+ data: [{}, {}, {}]
266
+ }];
267
+ } else if (this.state.groupedData && this.state.groupedData[0] && this.state.groupedData[0]['data'].length) {
268
+ return this.state.groupedData;
269
+ }
270
+ return [];
271
+ }
272
+ renderWithSectionList(props) {
273
+ let isHorizontal = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;
274
+ return /*#__PURE__*/React.createElement(SectionList, {
275
+ keyExtractor: (item, i) => this.generateItemKey(item, i, props),
276
+ horizontal: isHorizontal,
277
+ onEndReached: _ref => {
278
+ let {
279
+ distanceFromEnd
280
+ } = _ref;
281
+ this.setState({
282
+ currentPage: this.state.currentPage + 1
283
+ });
284
+ this.invokeEventCallback('onEndReached', [null, this]);
285
+ },
286
+ contentContainerStyle: this.styles.root,
287
+ onEndReachedThreshold: 0.3,
288
+ sections: this.getSectionListData(),
289
+ renderSectionHeader: _ref2 => {
290
+ let {
291
+ section: {
292
+ key,
293
+ data
294
+ }
295
+ } = _ref2;
296
+ return this.renderHeader(props, key);
297
+ },
298
+ renderSectionFooter: () => props.loadingdata ? this.renderLoadingIcon(props) : null,
299
+ ListEmptyComponent: itemInfo => this.renderEmptyMessage(isHorizontal, itemInfo.item, itemInfo.index, props),
300
+ renderItem: itemInfo => this.renderItem(itemInfo.item, itemInfo.index, props)
301
+ });
302
+ }
303
+ renderWidget(props) {
304
+ this.invokeEventCallback('onBeforedatarender', [this, this.state.props.dataset]);
305
+ const isHorizontal = props.direction === 'horizontal';
306
+ return /*#__PURE__*/React.createElement(View, {
307
+ style: isHorizontal ? null : {
308
+ width: '100%'
309
+ }
310
+ }, this._background, isHorizontal || !props.groupby ? this.renderWithFlatList(props, isHorizontal) : this.renderWithSectionList(props, isHorizontal));
311
+ }
312
+ }
313
+ //# sourceMappingURL=list.component.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["React","SectionList","Text","View","FlatList","isArray","isNil","round","BaseComponent","BaseComponentState","getGroupedData","isDefined","Tappable","DefaultKeyExtractor","WmLabel","WmIcon","WmListProps","DEFAULT_CLASS","WmListState","constructor","arguments","_defineProperty","WmList","props","isSelected","$item","selectedItem","state","selecteditem","indexOf","onSelect","$index","triggerTapEvent","length","undefined","disableitem","multiselect","index","selectionlimit","push","invokeEventCallback","splice","selectedItemWidgets","itemWidgets","updateState","selectedindex","proxy","selectFirstItem","initialized","dataset","groupby","deselectAll","setGroupData","items","dataItems","groupedData","match","orderby","dateformat","_this$keyExtractor","keyExtractor","clear","onPropertyChange","name","$new","$old","data","direction","key","_this$keyExtractor2","selectfirstitem","pop","componentDidMount","_props$dataset","setTimeout","componentDidUpdate","prevProps","prevState","snapshot","getDefaultStyles","isHorizontal","theme","getStyle","defaultClass","getIndex","item","generateItemKey","itemkey","_showSkeleton","getKey","renderItem","cols","getNoOfColumns","createElement","_extends","getTestPropsForAction","onTap","onLongTap","onDoubleTap","styles","width","paddingRight","marginRight","margin","style","itemclass","id","getTestId","iconclass","selectedIcon","renderHeader","title","groupHeading","subheading","heading","flex","flexDirection","listIcon","caption","renderEmptyMessage","emptyMessage","nodatamessage","renderLoadingIcon","loadingIcon","loadingicon","loadingdatamsg","itemsperrow","xs","renderWithFlatList","root","map","v","i","marginBottom","horizontal","ListEmptyComponent","itemInfo","numColumns","getSectionListData","renderWithSectionList","onEndReached","_ref","distanceFromEnd","setState","currentPage","contentContainerStyle","onEndReachedThreshold","sections","renderSectionHeader","_ref2","section","renderSectionFooter","loadingdata","renderWidget","_background"],"sources":["list.component.tsx"],"sourcesContent":["import React from 'react';\nimport { SectionList, Text, View, TouchableWithoutFeedback } from 'react-native';\nimport { FlatList } from 'react-native-gesture-handler';\nimport { isArray, isNil, round } from 'lodash-es';\nimport { BaseComponent, BaseComponentState } from '@wavemaker/app-rn-runtime/core/base.component';\nimport {getGroupedData, isDefined} from \"@wavemaker/app-rn-runtime/core/utils\";\nimport { Tappable } from '@wavemaker/app-rn-runtime/core/tappable.component';\nimport { DefaultKeyExtractor } from '@wavemaker/app-rn-runtime/core/key.extractor';\nimport WmLabel from '@wavemaker/app-rn-runtime/components/basic/label/label.component';\nimport WmIcon from '@wavemaker/app-rn-runtime/components/basic/icon/icon.component';\n\nimport WmListProps from './list.props';\nimport { DEFAULT_CLASS, WmListStyles } from './list.styles';\n\n\nexport class WmListState extends BaseComponentState<WmListProps> {\n public selectedindex: any;\n groupedData: Array<any> = [];\n currentPage: number = 1;\n}\n\nexport default class WmList extends BaseComponent<WmListProps, WmListState, WmListStyles> {\n\n private itemWidgets = [] as any[];\n private selectedItemWidgets = {} as any;\n private keyExtractor = new DefaultKeyExtractor();\n \n constructor(props: WmListProps) {\n super(props, DEFAULT_CLASS, new WmListProps(), new WmListState());\n }\n\n private isSelected($item: any) {\n const selectedItem = this.state.props.selecteditem;\n if (isArray(selectedItem)) {\n return selectedItem.indexOf($item) >= 0;\n }\n return selectedItem === $item;\n }\n\n private onSelect($item: any, $index: number | string, triggerTapEvent = false) {\n const props = this.state.props;\n let selectedItem = null as any;\n if (props.disableitem !== true \n && (typeof props.disableitem !== 'function' || !props.disableitem($item, $index))) {\n if (props.multiselect) {\n selectedItem = [...(props.selecteditem || [])];\n const index = selectedItem.indexOf($item);\n if (index < 0) {\n if ((!props.selectionlimit)\n || props.selectionlimit < 0\n || selectedItem.length < props.selectionlimit) {\n selectedItem.push($item);\n } else {\n this.invokeEventCallback('onSelectionlimitexceed', [null, this]);\n }\n } else {\n selectedItem.splice(index, 1);\n }\n } else {\n if (props.selecteditem === $item) {\n selectedItem = null;\n } else {\n selectedItem = $item;\n }\n }\n this.selectedItemWidgets = this.itemWidgets[$index as number];\n this.updateState({\n props: { selecteditem: selectedItem },\n selectedindex: $index\n } as WmListState, () => {\n this.invokeEventCallback('onSelect', [this.proxy, $item]);\n triggerTapEvent && this.invokeEventCallback('onTap', [null, this.proxy]);\n });\n }\n }\n\n private selectFirstItem() {\n const props = this.state.props;\n if (this.initialized\n && props.dataset\n && props.dataset.length) {\n const index = props.groupby ? '00': 0;\n this.onSelect(props.dataset[0], index);\n }\n }\n\n private deselectAll() {\n this.updateState({\n props: { selecteditem: null },\n selectedindex: -1\n } as WmListState);\n }\n\n setGroupData(items: any) {\n const dataItems = items;\n const props = this.state.props;\n if (props.groupby) {\n const groupedData = dataItems && getGroupedData(dataItems, props.groupby, props.match, props.orderby, props.dateformat, this);\n this.updateState({\n groupedData: groupedData\n } as WmListState, () => {\n this.keyExtractor?.clear();\n });\n }\n }\n\n public onPropertyChange(name: string, $new: any, $old: any) {\n super.onPropertyChange(name, $new, $old);\n const props = this.state.props;\n switch(name) {\n case 'selectfirstitem':\n if ($new) {\n this.selectFirstItem();\n }\n break;\n case 'dataset':\n if (this.state.props.groupby) {\n this.setGroupData($new);\n } else {\n const data = isArray($new) ? $new : (isDefined($new) ? [$new] : []);\n this.updateState({\n groupedData: (data[0] || props.direction === 'horizontal' ? [{\n key: '',\n data: data\n }] : [])\n } as WmListState, () => {\n this.keyExtractor?.clear();\n });\n }\n this.itemWidgets = [];\n if (props.selectfirstitem) {\n this.selectFirstItem();\n } else {\n this.deselectAll();\n }\n break;\n case 'groupby':\n case 'match':\n this.setGroupData(this.state.props.dataset);\n break;\n case 'multiselect':\n if ($new) {\n if (!isArray(this.state.props.selecteditem)) {\n this.state.props.selecteditem = this.state.props.selecteditem ? \n [this.state.props.selecteditem] : [];\n }\n } else if (isArray(this.state.props.selecteditem)) {\n this.state.props.selecteditem = this.state.props.selecteditem.pop();\n }\n }\n }\n\n componentDidMount() {\n const props = this.state.props;\n if (this.state.props.selectfirstitem && props.dataset?.length) {\n setTimeout(() => {\n this.onSelect(props.dataset[0], 0);\n });\n }\n super.componentDidMount();\n }\n\n componentDidUpdate(prevProps: WmListProps, prevState: WmListState, snapshot?: any) {\n super.componentDidUpdate && super.componentDidUpdate(prevProps, prevState, snapshot);\n this.invokeEventCallback('onRender', [this, this.state.props.dataset]);\n }\n\n getDefaultStyles() {\n const isHorizontal = this.state.props.direction === 'horizontal';\n return this.theme.getStyle(`${this.defaultClass} ${isHorizontal ? 'app-horizontal-list' : 'app-vertical-list'}`);\n }\n\n getIndex(item: any) {\n return this.state.props.dataset.indexOf(item);\n }\n\n private generateItemKey(item: any, index: number, props: WmListProps) {\n if (props.itemkey && item && !this._showSkeleton) {\n return props.itemkey(item, index);\n }\n return 'list_item_' + this.keyExtractor.getKey(item, true);\n }\n\n private renderItem(item: any, index: number, props: WmListProps) {\n const cols = this. getNoOfColumns();\n const isHorizontal = (props.direction === 'horizontal');\n return ( \n <Tappable\n {...this.getTestPropsForAction(`item${index}`)}\n onTap={() => this.onSelect(item, index, true)}\n onLongTap={() => this.invokeEventCallback('onLongtap', [null, this.proxy])}\n onDoubleTap={() => this.invokeEventCallback('onDoubletap', [null, this.proxy])}\n styles={\n [\n cols ? {\n width: round(100/cols, 2) + '%'\n } : null,\n cols || isHorizontal? {\n paddingRight: (isNil(this.styles.item.marginRight) \n ? this.styles.item.margin : this.styles.item.marginRight) || 4\n }: null\n ]\n }>\n <View style={[\n this.styles.item,\n props.itemclass ? this.theme.getStyle(props.itemclass(item, index)) : null,\n this.isSelected(item) ? this.styles.selectedItem : {}]}>\n { props.renderItem(item, index, this)}\n { this.isSelected(item) ? (\n <WmIcon id={this.getTestId('icon' + index)}iconclass='wi wi-check-circle' styles={this.styles.selectedIcon} />\n ) : null}\n </View>\n </Tappable>\n );\n }\n\n private renderHeader(props: WmListProps, title: string) {\n return props.groupby ? (\n <Text style={this.styles.groupHeading}>{title}</Text>\n ) : (props.iconclass || props.title || props.subheading) ? (\n <View style={this.styles.heading}>\n <View style={{flex: 1, flexDirection: 'row'}}>\n <WmIcon id={this.getTestId('icon')} styles={this.styles.listIcon} iconclass={props.iconclass}></WmIcon>\n <View>\n <WmLabel id={this.getTestId('title')} styles={this.styles.title} caption={props.title}></WmLabel>\n <WmLabel id={this.getTestId('subheading')} styles={this.styles.subheading} caption={props.subheading}></WmLabel>\n </View>\n </View>\n </View>) : null;\n }\n\n private renderEmptyMessage(isHorizontal: boolean, item: any, index: any, props: WmListProps) {\n return (<WmLabel id={this.getTestId('emptymsg')} styles={this.styles.emptyMessage} caption={props.nodatamessage}></WmLabel>);\n }\n\n private renderLoadingIcon(props: WmListProps) {\n return (<WmIcon\n id={this.getTestId('loadingicon')}\n styles={this.styles.loadingIcon}\n iconclass={props.loadingicon}\n caption={props.loadingdatamsg}></WmIcon>)\n }\n\n public getNoOfColumns() {\n const props = this.state.props;\n if(props.direction === 'vertical') {\n return props.itemsperrow.xs;\n }\n return 0;\n }\n\n private renderWithFlatList(props: WmListProps, isHorizontal = false) {\n return (\n <View style={this.styles.root}>\n {this.state.groupedData ? this.state.groupedData.map((v: any, i) => ((\n <View style={{marginBottom: 16}} key={v.key || this.keyExtractor.getKey(v, true)}>\n {this.renderHeader(props, v.key)}\n <FlatList\n key={props.name + '_' + (isHorizontal ? 'H' : 'V') + props.itemsperrow.xs}\n keyExtractor={(item, i) => this.generateItemKey(item, i, props)}\n horizontal = {isHorizontal}\n data={v.data || []}\n ListEmptyComponent = {(itemInfo) => this.renderEmptyMessage(isHorizontal, itemInfo.item, itemInfo.index, props)}\n renderItem={(itemInfo) => this.renderItem(itemInfo.item, itemInfo.index, props)} \n {...(isHorizontal ? {} : {numColumns : this.getNoOfColumns()})}> \n </FlatList>\n </View>\n ))) : null\n }\n </View>);\n }\n\n private getSectionListData() {\n if (this._showSkeleton) {\n return [{\n key: '',\n data: [{}, {}, {}]\n }];\n } else if (this.state.groupedData \n && this.state.groupedData[0] \n && this.state.groupedData[0]['data'].length) {\n return this.state.groupedData;\n }\n return [];\n }\n\n private renderWithSectionList(props: WmListProps, isHorizontal = false) { \n return (\n <SectionList\n keyExtractor={(item, i) => this.generateItemKey(item, i, props)}\n horizontal = {isHorizontal}\n onEndReached={({distanceFromEnd}) => {\n this.setState({ currentPage: this.state.currentPage + 1 } as WmListState);\n this.invokeEventCallback('onEndReached', [null, this]);\n }}\n contentContainerStyle={this.styles.root}\n onEndReachedThreshold={0.3}\n sections={this.getSectionListData()}\n renderSectionHeader={({ section: {key, data}}) => {\n return this.renderHeader(props, key);\n }}\n renderSectionFooter={() => props.loadingdata ? this.renderLoadingIcon(props) : null}\n ListEmptyComponent = {(itemInfo) => this.renderEmptyMessage(isHorizontal, itemInfo.item, itemInfo.index, props)}\n renderItem={(itemInfo) => this.renderItem(itemInfo.item, itemInfo.index, props)}>\n </SectionList>\n );\n }\n\n renderWidget(props: WmListProps) {\n this.invokeEventCallback('onBeforedatarender', [this, this.state.props.dataset]);\n const isHorizontal = (props.direction === 'horizontal');\n return (\n <View style={isHorizontal ? null : { width: '100%' }}>\n {this._background}\n {(isHorizontal || !props.groupby) ?\n this.renderWithFlatList(props, isHorizontal)\n : this.renderWithSectionList(props, isHorizontal)}\n </View>);\n }\n}\n"],"mappings":"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"}
@@ -0,0 +1,129 @@
1
+ import BASE_THEME from '@wavemaker/app-rn-runtime/styles/theme';
2
+ import { defineStyles } from '@wavemaker/app-rn-runtime/core/base.component';
3
+ export const DEFAULT_CLASS = 'app-list';
4
+ BASE_THEME.registerStyle((themeVariables, addStyle) => {
5
+ const defaultStyles = defineStyles({
6
+ root: {},
7
+ text: {},
8
+ listIcon: {
9
+ root: {
10
+ marginTop: 10,
11
+ marginRight: 8
12
+ }
13
+ },
14
+ groupHeading: {
15
+ backgroundColor: themeVariables.groupHeadingBgColor,
16
+ fontSize: 16,
17
+ paddingLeft: 8,
18
+ paddingRight: 8,
19
+ lineHeight: 40,
20
+ fontFamily: themeVariables.baseFont
21
+ },
22
+ loadingIcon: {
23
+ root: {
24
+ flex: 1,
25
+ alignSelf: 'center',
26
+ justifyContent: 'center',
27
+ fontSize: 16
28
+ },
29
+ text: {
30
+ color: themeVariables.listSubTitleColor
31
+ }
32
+ },
33
+ heading: {
34
+ padding: 8,
35
+ marginBottom: 6,
36
+ backgroundColor: themeVariables.listHeaderBgColor
37
+ },
38
+ title: {
39
+ text: {
40
+ color: themeVariables.listTitleColor,
41
+ fontSize: 16,
42
+ fontFamily: themeVariables.baseFont,
43
+ lineHeight: 24,
44
+ fontWeight: '400'
45
+ }
46
+ },
47
+ subheading: {
48
+ text: {
49
+ fontSize: 14,
50
+ lineHeight: 20,
51
+ fontFamily: themeVariables.baseFont,
52
+ fontWeight: '400',
53
+ color: themeVariables.listSubTitleColor
54
+ }
55
+ },
56
+ emptyMessage: {
57
+ root: {
58
+ flex: 1,
59
+ alignSelf: 'center',
60
+ fontSize: 16,
61
+ lineHeight: 18,
62
+ color: themeVariables.listSubTitleColor
63
+ }
64
+ },
65
+ item: {
66
+ ...BASE_THEME.getStyle('elevate1').root,
67
+ shadowColor: 'rgba(0, 0, 0, 0.3)',
68
+ flexDirection: 'row',
69
+ flex: 1,
70
+ paddingLeft: 4,
71
+ paddingRight: 4,
72
+ paddingTop: 4,
73
+ paddingBottom: 4,
74
+ minHeight: 56,
75
+ backgroundColor: themeVariables.itemBgColor,
76
+ borderColor: themeVariables.selectedItemBorderColor,
77
+ borderRadius: 6,
78
+ borderStyle: 'solid'
79
+ },
80
+ selectedItem: {},
81
+ selectedIcon: {
82
+ root: {
83
+ position: 'absolute',
84
+ right: 0,
85
+ top: 0
86
+ },
87
+ text: {
88
+ color: themeVariables.primaryColor,
89
+ fontSize: 16
90
+ }
91
+ }
92
+ });
93
+ addStyle(DEFAULT_CLASS, '', defaultStyles);
94
+ addStyle('app-horizontal-list', '', {
95
+ groupHeading: {
96
+ minWidth: 120,
97
+ backgroundColor: themeVariables.groupHeadingBgColor
98
+ },
99
+ item: {
100
+ marginRight: 6,
101
+ borderColor: themeVariables.selectedItemBorderColor
102
+ }
103
+ });
104
+ addStyle('app-vertical-list', '', {
105
+ item: {
106
+ marginBottom: 6,
107
+ width: '100%',
108
+ borderBottomWidth: 0,
109
+ borderBottomColor: themeVariables.listDividerColor
110
+ }
111
+ });
112
+ addStyle('app-horizontal-list-dense', '', {
113
+ item: {
114
+ marginRight: 0,
115
+ borderRadius: 0,
116
+ borderRightWidth: 1,
117
+ borderRightColor: 'rgba(0,0,0,0.05)'
118
+ }
119
+ });
120
+ addStyle('app-list-dense', '', {
121
+ item: {
122
+ marginBottom: 0,
123
+ borderRadius: 0,
124
+ borderBottomWidth: 1,
125
+ borderBottomColor: 'rgba(0,0,0,0.05)'
126
+ }
127
+ });
128
+ });
129
+ //# sourceMappingURL=list.styles.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["BASE_THEME","defineStyles","DEFAULT_CLASS","registerStyle","themeVariables","addStyle","defaultStyles","root","text","listIcon","marginTop","marginRight","groupHeading","backgroundColor","groupHeadingBgColor","fontSize","paddingLeft","paddingRight","lineHeight","fontFamily","baseFont","loadingIcon","flex","alignSelf","justifyContent","color","listSubTitleColor","heading","padding","marginBottom","listHeaderBgColor","title","listTitleColor","fontWeight","subheading","emptyMessage","item","getStyle","shadowColor","flexDirection","paddingTop","paddingBottom","minHeight","itemBgColor","borderColor","selectedItemBorderColor","borderRadius","borderStyle","selectedItem","selectedIcon","position","right","top","primaryColor","minWidth","width","borderBottomWidth","borderBottomColor","listDividerColor","borderRightWidth","borderRightColor"],"sources":["list.styles.ts"],"sourcesContent":["import { TextStyle, ViewStyle } from 'react-native';\nimport BASE_THEME, { AllStyle } from '@wavemaker/app-rn-runtime/styles/theme';\nimport { BaseStyles, defineStyles } from '@wavemaker/app-rn-runtime/core/base.component';\nimport { WmLabelStyles } from '@wavemaker/app-rn-runtime/components/basic/label/label.styles';\nimport { WmIconStyles } from '@wavemaker/app-rn-runtime/components/basic/icon/icon.styles';\n\nexport type WmListStyles = BaseStyles & {\n heading: AllStyle,\n groupHeading: TextStyle,\n listIcon: WmIconStyles,\n loadingIcon: WmIconStyles,\n title: WmLabelStyles,\n subheading: WmLabelStyles,\n emptyMessage: WmLabelStyles,\n item: AllStyle,\n selectedItem: AllStyle,\n selectedIcon: WmIconStyles\n};\n\nexport const DEFAULT_CLASS = 'app-list';\nBASE_THEME.registerStyle((themeVariables, addStyle) => {\n const defaultStyles: WmListStyles = defineStyles({\n root: {},\n text: {},\n listIcon: {\n root: {\n marginTop: 10,\n marginRight: 8\n }\n } as WmIconStyles,\n groupHeading: {\n backgroundColor: themeVariables.groupHeadingBgColor,\n fontSize: 16,\n paddingLeft: 8,\n paddingRight: 8,\n lineHeight: 40,\n fontFamily: themeVariables.baseFont\n },\n loadingIcon: {\n root: {\n flex: 1,\n alignSelf: 'center',\n justifyContent: 'center',\n fontSize: 16\n },\n text: {\n color: themeVariables.listSubTitleColor\n }\n } as WmIconStyles,\n heading : {\n padding: 8,\n marginBottom: 6,\n backgroundColor: themeVariables.listHeaderBgColor\n },\n title: {\n text: {\n color: themeVariables.listTitleColor,\n fontSize: 16,\n fontFamily: themeVariables.baseFont,\n lineHeight: 24,\n fontWeight: '400' \n }\n } as WmLabelStyles,\n subheading: {\n text: {\n fontSize: 14,\n lineHeight: 20,\n fontFamily: themeVariables.baseFont,\n fontWeight: '400',\n color: themeVariables.listSubTitleColor\n }\n } as WmLabelStyles,\n emptyMessage: {\n root: {\n flex: 1,\n alignSelf: 'center',\n fontSize: 16,\n lineHeight: 18,\n color: themeVariables.listSubTitleColor\n }\n } as WmLabelStyles,\n item: {\n ...BASE_THEME.getStyle('elevate1').root,\n shadowColor: 'rgba(0, 0, 0, 0.3)',\n flexDirection: 'row',\n flex: 1,\n paddingLeft: 4,\n paddingRight: 4,\n paddingTop: 4,\n paddingBottom: 4,\n minHeight: 56,\n backgroundColor: themeVariables.itemBgColor,\n borderColor: themeVariables.selectedItemBorderColor,\n borderRadius: 6,\n borderStyle: 'solid',\n },\n selectedItem : {} as AllStyle,\n selectedIcon : {\n root: {\n position: 'absolute',\n right: 0,\n top: 0\n },\n text: {\n color: themeVariables.primaryColor,\n fontSize: 16\n }\n } as WmIconStyles\n });\n\n addStyle(DEFAULT_CLASS, '', defaultStyles);\n\n addStyle('app-horizontal-list', '', {\n groupHeading: {\n minWidth: 120,\n backgroundColor: themeVariables.groupHeadingBgColor,\n },\n item: {\n marginRight: 6,\n borderColor: themeVariables.selectedItemBorderColor,\n }\n } as WmListStyles);\n\n addStyle('app-vertical-list', '', {\n item: {\n marginBottom: 6,\n width: '100%',\n borderBottomWidth: 0,\n borderBottomColor: themeVariables.listDividerColor,\n }\n } as any as WmListStyles);\n\n addStyle('app-horizontal-list-dense', '', {\n item: {\n marginRight: 0,\n borderRadius: 0,\n borderRightWidth: 1,\n borderRightColor: 'rgba(0,0,0,0.05)'\n } as ViewStyle\n } as WmListStyles);\n\n addStyle('app-list-dense', '', {\n item: {\n marginBottom: 0,\n borderRadius: 0,\n borderBottomWidth: 1,\n borderBottomColor: 'rgba(0,0,0,0.05)'\n } as ViewStyle\n } as WmListStyles);\n});\n"],"mappings":"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"}