@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
@@ -1,183 +0,0 @@
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-wizard';
4
- BASE_THEME.registerStyle((themeVariables, addStyle) => {
5
- const defaultStyles = defineStyles({
6
- root: {
7
- flexDirection: 'column',
8
- backgroundColor: themeVariables.wizardBackgroundColor,
9
- display: 'flex',
10
- minHeight: 240
11
- },
12
- text: {},
13
- activeStep: {
14
- backgroundColor: themeVariables.wizardStepActiveColor,
15
- borderColor: themeVariables.wizardStepActiveColor,
16
- color: themeVariables.wizardActiveStepColor
17
- },
18
- doneStep: {
19
- backgroundColor: themeVariables.wizardStepDoneColor,
20
- color: themeVariables.wizardDoneStepColor,
21
- borderColor: themeVariables.wizardStepDoneColor
22
- },
23
- wizardHeader: {
24
- padding: 8,
25
- flexDirection: 'row',
26
- alignItems: 'flex-start',
27
- justifyContent: 'center'
28
- },
29
- stepWrapper: {
30
- alignItems: 'center',
31
- justifyContent: 'center',
32
- zIndex: 20
33
- },
34
- headerWrapper: {
35
- flex: 1
36
- },
37
- wizardBody: {
38
- alignSelf: 'flex-start',
39
- paddingTop: 10,
40
- flex: 1,
41
- width: '100%',
42
- borderWidth: 0,
43
- borderTopWidth: 1,
44
- borderBottomWidth: 1,
45
- borderColor: themeVariables.wizardBorderColor
46
- },
47
- wizardFooter: {
48
- flexDirection: 'row',
49
- justifyContent: 'flex-start',
50
- padding: 12
51
- },
52
- buttonWrapper: {
53
- flexDirection: 'row'
54
- },
55
- stepTitle: {
56
- textTransform: 'capitalize',
57
- fontSize: 12,
58
- color: themeVariables.wizardStepTitleColor
59
- },
60
- step: {
61
- alignItems: 'center',
62
- justifyContent: 'center',
63
- width: 37,
64
- backgroundColor: themeVariables.wizardBackgroundColor,
65
- height: 37,
66
- borderWidth: 1,
67
- borderRadius: 18.5,
68
- color: themeVariables.wizardStepColor,
69
- borderColor: themeVariables.wizardStepColor
70
- },
71
- wizardActions: {
72
- root: {
73
- marginRight: 8
74
- },
75
- text: {
76
- textTransform: 'capitalize',
77
- fontSize: 14
78
- }
79
- },
80
- nextButton: {
81
- root: {
82
- marginRight: 0,
83
- backgroundColor: themeVariables.wizardNextBtnColor,
84
- borderColor: themeVariables.wizardNextBtnColor
85
- }
86
- },
87
- prevButton: {},
88
- cancelButton: {},
89
- doneButton: {
90
- root: {
91
- marginRight: 0,
92
- backgroundColor: themeVariables.wizardDoneBtnColor
93
- },
94
- icon: {
95
- text: {
96
- fontSize: 12
97
- }
98
- }
99
- },
100
- stepIcon: {
101
- root: {
102
- alignSelf: 'center',
103
- justifyContent: 'center'
104
- },
105
- text: {
106
- color: themeVariables.wizardStepIconColor,
107
- fontSize: 15
108
- }
109
- },
110
- skipLink: {
111
- root: {
112
- padding: 8,
113
- alignSelf: 'flex-end'
114
- }
115
- },
116
- stepConnector: {
117
- backgroundColor: themeVariables.wizardStepConnectorColor,
118
- position: 'absolute',
119
- top: 17.5,
120
- zIndex: 10,
121
- height: 2
122
- },
123
- numberTextStepConnector: {
124
- display: 'none'
125
- },
126
- stepCounter: {
127
- fontSize: 15,
128
- color: themeVariables.wizardStepColor
129
- }
130
- });
131
- addStyle(DEFAULT_CLASS, '', defaultStyles);
132
- addStyle('number-text-inline', '', {
133
- stepConnector: {
134
- display: 'none'
135
- },
136
- numberTextStepConnector: {
137
- backgroundColor: themeVariables.wizardStepConnectorColor,
138
- height: 2,
139
- display: 'flex'
140
- },
141
- stepWrapper: {
142
- flexDirection: 'row'
143
- },
144
- wizardHeader: {
145
- justifyContent: 'flex-start'
146
- },
147
- headerWrapper: {
148
- flex: -1
149
- },
150
- stepTitle: {
151
- padding: 5
152
- }
153
- });
154
- addStyle(DEFAULT_CLASS + '-rtl', '', {
155
- wizardActions: {
156
- icon: {
157
- root: {
158
- transform: [{
159
- rotateY: '180deg'
160
- }]
161
- }
162
- }
163
- },
164
- nextButton: {
165
- root: {
166
- marginRight: 8
167
- }
168
- },
169
- doneButton: {
170
- root: {
171
- marginRight: 8
172
- },
173
- icon: {
174
- root: {
175
- transform: [{
176
- rotateY: '0deg'
177
- }]
178
- }
179
- }
180
- }
181
- });
182
- });
183
- //# sourceMappingURL=wizard.styles.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":["BASE_THEME","defineStyles","DEFAULT_CLASS","registerStyle","themeVariables","addStyle","defaultStyles","root","flexDirection","backgroundColor","wizardBackgroundColor","display","minHeight","text","activeStep","wizardStepActiveColor","borderColor","color","wizardActiveStepColor","doneStep","wizardStepDoneColor","wizardDoneStepColor","wizardHeader","padding","alignItems","justifyContent","stepWrapper","zIndex","headerWrapper","flex","wizardBody","alignSelf","paddingTop","width","borderWidth","borderTopWidth","borderBottomWidth","wizardBorderColor","wizardFooter","buttonWrapper","stepTitle","textTransform","fontSize","wizardStepTitleColor","step","height","borderRadius","wizardStepColor","wizardActions","marginRight","nextButton","wizardNextBtnColor","prevButton","cancelButton","doneButton","wizardDoneBtnColor","icon","stepIcon","wizardStepIconColor","skipLink","stepConnector","wizardStepConnectorColor","position","top","numberTextStepConnector","stepCounter","transform","rotateY"],"sources":["wizard.styles.ts"],"sourcesContent":["import BASE_THEME, { AllStyle } from '@wavemaker/app-rn-runtime/styles/theme';\nimport { BaseStyles, defineStyles } from '@wavemaker/app-rn-runtime/core/base.component';\nimport { WmButtonStyles } from '@wavemaker/app-rn-runtime/components/basic/button/button.styles';\nimport { WmIconStyles } from '@wavemaker/app-rn-runtime/components/basic/icon/icon.styles';\nimport { WmAnchorStyles } from '@wavemaker/app-rn-runtime/components/basic/anchor/anchor.styles';\n\nexport type WmWizardStyles = BaseStyles & {\n wizardHeader: AllStyle,\n wizardBody: AllStyle,\n wizardFooter: AllStyle,\n wizardActions: WmButtonStyles,\n stepTitle: AllStyle,\n buttonWrapper: AllStyle,\n step: AllStyle,\n nextButton: WmButtonStyles,\n doneButton: WmButtonStyles,\n prevButton: WmButtonStyles,\n cancelButton: WmButtonStyles,\n stepIcon: WmIconStyles,\n skipLink: WmAnchorStyles,\n activeStep: AllStyle,\n doneStep: AllStyle,\n headerWrapper: AllStyle,\n stepWrapper: AllStyle,\n stepConnector: AllStyle,\n numberTextStepConnector: AllStyle,\n stepCounter: AllStyle\n};\n\nexport const DEFAULT_CLASS = 'app-wizard';\nBASE_THEME.registerStyle((themeVariables, addStyle) => {\n const defaultStyles: WmWizardStyles = defineStyles({\n root: {\n flexDirection: 'column',\n backgroundColor: themeVariables.wizardBackgroundColor,\n display: 'flex',\n minHeight: 240\n },\n text: {},\n activeStep:{\n backgroundColor: themeVariables.wizardStepActiveColor,\n borderColor: themeVariables.wizardStepActiveColor,\n color: themeVariables.wizardActiveStepColor\n },\n doneStep: {\n backgroundColor: themeVariables.wizardStepDoneColor,\n color: themeVariables.wizardDoneStepColor,\n borderColor: themeVariables.wizardStepDoneColor\n },\n wizardHeader: {\n padding: 8,\n flexDirection: 'row',\n alignItems: 'flex-start',\n justifyContent: 'center'\n },\n stepWrapper: {\n alignItems: 'center',\n justifyContent: 'center',\n zIndex: 20\n },\n headerWrapper: {\n flex: 1\n },\n wizardBody: {\n alignSelf: 'flex-start',\n paddingTop: 10,\n flex: 1,\n width: '100%',\n borderWidth: 0,\n borderTopWidth: 1,\n borderBottomWidth: 1,\n borderColor: themeVariables.wizardBorderColor\n },\n wizardFooter: {\n flexDirection: 'row',\n justifyContent: 'flex-start',\n padding: 12\n },\n buttonWrapper: {\n flexDirection: 'row',\n },\n stepTitle: {\n textTransform: 'capitalize',\n fontSize: 12,\n color: themeVariables.wizardStepTitleColor\n },\n step: {\n alignItems: 'center',\n justifyContent: 'center',\n width: 37,\n backgroundColor: themeVariables.wizardBackgroundColor,\n height: 37,\n borderWidth: 1,\n borderRadius: 18.5,\n color: themeVariables.wizardStepColor,\n borderColor: themeVariables.wizardStepColor\n },\n wizardActions: {\n root: {\n marginRight: 8\n },\n text : {\n textTransform: 'capitalize',\n fontSize: 14\n }\n } as WmButtonStyles,\n nextButton: {\n root: {\n marginRight: 0,\n backgroundColor: themeVariables.wizardNextBtnColor,\n borderColor: themeVariables.wizardNextBtnColor\n }\n } as WmButtonStyles,\n prevButton: {\n } as WmButtonStyles,\n cancelButton: {\n } as WmButtonStyles,\n doneButton: {\n root: {\n marginRight: 0,\n backgroundColor: themeVariables.wizardDoneBtnColor\n },\n icon: {\n text: {\n fontSize: 12\n }\n }\n } as WmButtonStyles,\n stepIcon: {\n root: {\n alignSelf: 'center',\n justifyContent: 'center'\n },\n text: {\n color: themeVariables.wizardStepIconColor,\n fontSize: 15\n }\n } as WmIconStyles,\n skipLink: {\n root: {\n padding: 8,\n alignSelf: 'flex-end'\n },\n } as WmAnchorStyles,\n stepConnector: {\n backgroundColor: themeVariables.wizardStepConnectorColor,\n position: 'absolute',\n top: 17.5,\n zIndex: 10,\n height: 2\n },\n numberTextStepConnector: {\n display: 'none'\n },\n stepCounter: {\n fontSize: 15,\n color: themeVariables.wizardStepColor\n }\n } as WmWizardStyles);\n\n addStyle(DEFAULT_CLASS, '', defaultStyles);\n addStyle('number-text-inline', '', {\n stepConnector: {\n display: 'none'\n },\n numberTextStepConnector: {\n backgroundColor: themeVariables.wizardStepConnectorColor,\n height: 2,\n display: 'flex'\n },\n stepWrapper: {\n flexDirection: 'row'\n },\n wizardHeader: {\n justifyContent: 'flex-start'\n },\n headerWrapper: {\n flex: -1\n },\n stepTitle: {\n padding: 5\n },\n } as WmWizardStyles);\n addStyle(DEFAULT_CLASS + '-rtl', '', {\n wizardActions: {\n icon: {\n root:{\n transform: [{rotateY:'180deg'}]\n }\n },\n },\n nextButton:{\n root: {\n marginRight: 8,\n }\n },\n doneButton:{\n root: {\n marginRight: 8,\n },\n icon:{\n root:{\n transform: [{rotateY:'0deg'}]\n }\n }\n }\n });\n});\n"],"mappings":"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"}
@@ -1,67 +0,0 @@
1
- import React from 'react';
2
- import { View } from 'react-native';
3
- import { BaseComponent, BaseComponentState } from '@wavemaker/app-rn-runtime/core/base.component';
4
- import WmLabel from '@wavemaker/app-rn-runtime/components/basic/label/label.component';
5
- import WmMenu from '@wavemaker/app-rn-runtime/components/navigation/menu/menu.component';
6
- import WmIcon from '@wavemaker/app-rn-runtime/components/basic/icon/icon.component';
7
- import { Tappable } from '@wavemaker/app-rn-runtime/core/tappable.component';
8
- import WmPicture from '@wavemaker/app-rn-runtime/components/basic/picture/picture.component';
9
- import WmCardProps from './card.props';
10
- import { DEFAULT_CLASS } from './card.styles';
11
- export class WmCardState extends BaseComponentState {}
12
- export default class WmCard extends BaseComponent {
13
- constructor(props) {
14
- super(props, DEFAULT_CLASS, new WmCardProps());
15
- }
16
- renderHeader(props) {
17
- return /*#__PURE__*/React.createElement(View, {
18
- style: {
19
- flexDirection: 'row'
20
- }
21
- }, props.iconclass || props.title || props.subheading || props.actions ? /*#__PURE__*/React.createElement(View, {
22
- style: this.styles.heading
23
- }, /*#__PURE__*/React.createElement(WmIcon, {
24
- styles: this.styles.cardIcon,
25
- iconclass: props.iconclass
26
- }), /*#__PURE__*/React.createElement(View, {
27
- style: {
28
- flex: 1
29
- }
30
- }, /*#__PURE__*/React.createElement(WmLabel, {
31
- styles: this.styles.title,
32
- caption: props.title
33
- }), /*#__PURE__*/React.createElement(WmLabel, {
34
- styles: this.styles.subheading,
35
- caption: props.subheading
36
- })), /*#__PURE__*/React.createElement(WmMenu, {
37
- caption: "",
38
- iconclass: "wm-sl-l sl-more-menu-vertical",
39
- dataset: props.actions,
40
- itemlabel: props.itemlabel,
41
- itemlink: props.itemlink,
42
- itemicon: props.itemicon,
43
- itembadge: props.itembadge,
44
- isactive: props.isactive,
45
- itemchildren: props.itemchildren
46
- })) : null, props.picturesource && /*#__PURE__*/React.createElement(WmPicture, {
47
- picturesource: props.picturesource,
48
- styles: this.theme.mergeStyle({
49
- root: {
50
- height: props.imageheight
51
- }
52
- }, this.styles.picture)
53
- }));
54
- }
55
- renderWidget(props) {
56
- return /*#__PURE__*/React.createElement(View, {
57
- style: this.styles.root
58
- }, this._background, /*#__PURE__*/React.createElement(Tappable, {
59
- target: this,
60
- styles: {
61
- width: '100%',
62
- height: this.styles.root.height ? '100%' : null
63
- }
64
- }, this.renderHeader(props), props.children));
65
- }
66
- }
67
- //# sourceMappingURL=card.component.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":["React","View","BaseComponent","BaseComponentState","WmLabel","WmMenu","WmIcon","Tappable","WmPicture","WmCardProps","DEFAULT_CLASS","WmCardState","WmCard","constructor","props","renderHeader","createElement","style","flexDirection","iconclass","title","subheading","actions","styles","heading","cardIcon","flex","caption","dataset","itemlabel","itemlink","itemicon","itembadge","isactive","itemchildren","picturesource","theme","mergeStyle","root","height","imageheight","picture","renderWidget","_background","target","width","children"],"sources":["card.component.tsx"],"sourcesContent":["import React from 'react';\nimport { View } from 'react-native';\nimport { BaseComponent, BaseComponentState } from '@wavemaker/app-rn-runtime/core/base.component';\nimport WmLabel from '@wavemaker/app-rn-runtime/components/basic/label/label.component';\nimport WmMenu from '@wavemaker/app-rn-runtime/components/navigation/menu/menu.component';\nimport WmIcon from '@wavemaker/app-rn-runtime/components/basic/icon/icon.component';\nimport { Tappable } from '@wavemaker/app-rn-runtime/core/tappable.component';\nimport WmPicture from '@wavemaker/app-rn-runtime/components/basic/picture/picture.component';\n\n\nimport WmCardProps from './card.props';\nimport { DEFAULT_CLASS, WmCardStyles } from './card.styles';\n\nexport class WmCardState extends BaseComponentState<WmCardProps> {}\n\nexport default class WmCard extends BaseComponent<WmCardProps, WmCardState, WmCardStyles> {\n\n constructor(props: WmCardProps) {\n super(props, DEFAULT_CLASS, new WmCardProps());\n }\n\n renderHeader(props: WmCardProps) {\n return (\n <View style={{flexDirection: 'row'}}>\n {(props.iconclass || props.title || props.subheading || props.actions) ?\n (<View style={this.styles.heading}>\n <WmIcon styles={this.styles.cardIcon} iconclass={props.iconclass}></WmIcon>\n <View style={{flex: 1}}>\n <WmLabel styles={this.styles.title} caption={props.title}></WmLabel>\n <WmLabel styles={this.styles.subheading} caption={props.subheading}></WmLabel>\n </View>\n <WmMenu\n caption=\"\"\n iconclass=\"wm-sl-l sl-more-menu-vertical\"\n dataset={props.actions}\n itemlabel={props.itemlabel}\n itemlink={props.itemlink}\n itemicon={props.itemicon}\n itembadge={props.itembadge}\n isactive={props.isactive}\n itemchildren={props.itemchildren}></WmMenu>\n </View>) : null}\n {props.picturesource &&\n (<WmPicture\n picturesource={props.picturesource}\n styles={this.theme.mergeStyle({root : {height: props.imageheight}}, this.styles.picture)}></WmPicture>\n )}\n </View>);\n }\n\n renderWidget(props: WmCardProps) {\n return (\n <View style={this.styles.root}>\n {this._background}\n <Tappable target={this} styles={{width: '100%', height: this.styles.root.height ? '100%' : null}}>\n {this.renderHeader(props)}\n {props.children}\n </Tappable>\n </View>);\n }\n}\n"],"mappings":"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"}
@@ -1,33 +0,0 @@
1
- function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
2
- function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
3
- function _toPrimitive(input, hint) { if (typeof input !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (typeof res !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
4
- import React from 'react';
5
- import { BaseComponent, BaseComponentState } from '@wavemaker/app-rn-runtime/core/base.component';
6
- import WmButton from '@wavemaker/app-rn-runtime/components/basic/button/button.component';
7
- import WmFormActionProps from './form-action.props';
8
- import { DEFAULT_CLASS } from './form-action.styles';
9
- import { debounce } from "lodash";
10
- export class WmFormActionState extends BaseComponentState {}
11
- export default class WmFormAction extends BaseComponent {
12
- constructor(props) {
13
- super(props, DEFAULT_CLASS, new WmFormActionProps());
14
- _defineProperty(this, "_debouncedFormAction", debounce(this.onClick, 250));
15
- }
16
- onClick($event, cb) {
17
- cb && cb($event);
18
- }
19
- renderWidget(props) {
20
- return /*#__PURE__*/React.createElement(WmButton, {
21
- show: props.show,
22
- disabled: props.disabled,
23
- caption: props.displayName,
24
- styles: this.styles,
25
- name: props.name,
26
- iconclass: props.iconclass,
27
- onTap: $event => {
28
- this._debouncedFormAction($event, props.formAction);
29
- }
30
- });
31
- }
32
- }
33
- //# sourceMappingURL=form-action.component.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":["React","BaseComponent","BaseComponentState","WmButton","WmFormActionProps","DEFAULT_CLASS","debounce","WmFormActionState","WmFormAction","constructor","props","_defineProperty","onClick","$event","cb","renderWidget","createElement","show","disabled","caption","displayName","styles","name","iconclass","onTap","_debouncedFormAction","formAction"],"sources":["form-action.component.tsx"],"sourcesContent":["import React from 'react';\nimport { BaseComponent, BaseComponentState } from '@wavemaker/app-rn-runtime/core/base.component';\nimport WmButton from '@wavemaker/app-rn-runtime/components/basic/button/button.component';\nimport { TapEvent } from '@wavemaker/app-rn-runtime/core/tappable.component';\n\nimport WmFormActionProps from './form-action.props';\nimport { DEFAULT_CLASS, WmFormActionStyles } from './form-action.styles';\nimport {debounce} from \"lodash\";\nimport WmSkeleton, { createSkeleton } from '@wavemaker/app-rn-runtime/components/basic/skeleton/skeleton.component';\nimport { ThemeConsumer } from '@wavemaker/app-rn-runtime/styles/theme';\n\nexport class WmFormActionState extends BaseComponentState<WmFormActionProps> {}\n\nexport default class WmFormAction extends BaseComponent<WmFormActionProps, WmFormActionState, WmFormActionStyles> {\n\n constructor(props: WmFormActionProps) {\n super(props, DEFAULT_CLASS, new WmFormActionProps());\n }\n\n private _debouncedFormAction = debounce(this.onClick, 250);\n\n onClick($event: TapEvent, cb: Function | undefined) {\n cb && cb($event);\n }\n\n renderWidget(props: WmFormActionProps) {\n return (\n <WmButton\n show={props.show}\n disabled={props.disabled}\n caption={props.displayName}\n styles={this.styles}\n name={props.name}\n iconclass={props.iconclass}\n onTap={($event: any) => {\n this._debouncedFormAction($event, props.formAction);\n }}\n />\n );\n }\n}\n"],"mappings":";;;AAAA,OAAOA,KAAK,MAAM,OAAO;AACzB,SAASC,aAAa,EAAEC,kBAAkB,QAAQ,+CAA+C;AACjG,OAAOC,QAAQ,MAAM,oEAAoE;AAGzF,OAAOC,iBAAiB,MAAM,qBAAqB;AACnD,SAASC,aAAa,QAA4B,sBAAsB;AACxE,SAAQC,QAAQ,QAAO,QAAQ;AAI/B,OAAO,MAAMC,iBAAiB,SAASL,kBAAkB,CAAoB;AAE7E,eAAe,MAAMM,YAAY,SAASP,aAAa,CAA2D;EAEhHQ,WAAWA,CAACC,KAAwB,EAAE;IACpC,KAAK,CAACA,KAAK,EAAEL,aAAa,EAAE,IAAID,iBAAiB,CAAC,CAAC,CAAC;IAACO,eAAA,+BAGxBL,QAAQ,CAAC,IAAI,CAACM,OAAO,EAAE,GAAG,CAAC;EAF1D;EAIAA,OAAOA,CAACC,MAAgB,EAAEC,EAAwB,EAAE;IAClDA,EAAE,IAAIA,EAAE,CAACD,MAAM,CAAC;EAClB;EAEAE,YAAYA,CAACL,KAAwB,EAAE;IACrC,oBACEV,KAAA,CAAAgB,aAAA,CAACb,QAAQ;MACPc,IAAI,EAAEP,KAAK,CAACO,IAAK;MACjBC,QAAQ,EAAER,KAAK,CAACQ,QAAS;MACzBC,OAAO,EAAET,KAAK,CAACU,WAAY;MAC3BC,MAAM,EAAE,IAAI,CAACA,MAAO;MACpBC,IAAI,EAAEZ,KAAK,CAACY,IAAK;MACjBC,SAAS,EAAEb,KAAK,CAACa,SAAU;MAC3BC,KAAK,EAAGX,MAAW,IAAK;QACtB,IAAI,CAACY,oBAAoB,CAACZ,MAAM,EAAEH,KAAK,CAACgB,UAAU,CAAC;MACrD;IAAE,CACH,CAAC;EAEN;AACF"}
@@ -1,225 +0,0 @@
1
- function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
2
- function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
3
- function _toPrimitive(input, hint) { if (typeof input !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (typeof res !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
4
- import React from 'react';
5
- import { Text, View } from 'react-native';
6
- import { BaseComponent, BaseComponentState } from '@wavemaker/app-rn-runtime/core/base.component';
7
- import { isEqual, get, find, cloneDeep, forEach, keys } from 'lodash';
8
- import WmFormFieldProps from './form-field.props';
9
- import { DEFAULT_CLASS } from './form-field.styles';
10
- import { PERFORMANCE_LOGGER } from "@wavemaker/app-rn-runtime/core/logger";
11
- export class WmFormFieldState extends BaseComponentState {
12
- constructor() {
13
- super(...arguments);
14
- _defineProperty(this, "isValid", true);
15
- }
16
- }
17
- export default class WmFormField extends BaseComponent {
18
- constructor(props) {
19
- super(props, DEFAULT_CLASS, new WmFormFieldProps(), new WmFormFieldState());
20
- _defineProperty(this, "form", void 0);
21
- _defineProperty(this, "formwidget", void 0);
22
- _defineProperty(this, "_syncValidators", void 0);
23
- _defineProperty(this, "defaultValidatorMessages", []);
24
- _defineProperty(this, "notifyForFields", []);
25
- _defineProperty(this, "_asyncValidatorFn", void 0);
26
- }
27
- onFieldChangeEvt(name, $new, $old, isDefault) {
28
- this.notifyChanges();
29
- this.validateFormField();
30
- if (!isEqual($old, $new)) {
31
- this.updateState({
32
- props: {
33
- datavalue: $new
34
- }
35
- }, () => {
36
- !isDefault && this.invokeEventCallback('onChange', [undefined, this, $new, $old]);
37
- });
38
- if (this.form) {
39
- this.form.updateDataOutput.call(this.form, get(this.props, 'formKey', this.props.name), $new);
40
- }
41
- }
42
- }
43
-
44
- // Registers observer of validation fields
45
- observeOn(fields) {
46
- forEach(fields, field => {
47
- const formfield = find(this.form.formFields, f => f.proxy.name === field);
48
- if (formfield) {
49
- formfield.notifyForFields.push(this);
50
- }
51
- });
52
- }
53
-
54
- // Notifies changes to observing validation fields
55
- notifyChanges() {
56
- forEach(this.notifyForFields, field => {
57
- field.formwidget.validate(field.formwidget.datavalue);
58
- setTimeout(() => field.validateFormField());
59
- });
60
- }
61
- getPromiseList(validators) {
62
- const arr = [];
63
- forEach(validators, fn => {
64
- let promise = fn;
65
- if (fn instanceof Function && fn.bind) {
66
- promise = fn(this.formwidget.proxy, this.form);
67
- }
68
- if (promise instanceof Promise) {
69
- arr.push(promise);
70
- }
71
- });
72
- return arr;
73
- }
74
-
75
- // this method sets the asyncValidation on the form field. Assigns validationmessages from the returned response
76
- setAsyncValidators(validators) {
77
- this._asyncValidatorFn = () => {
78
- return Promise.all(this.getPromiseList(validators)).then(() => {
79
- return null;
80
- }, err => {
81
- let validationMsg;
82
- // if err obj has validationMessage key, then set validationMessage using this value
83
- // else return the value of the first key in the err object as validation message.
84
- if (err.hasOwnProperty('errorMessage')) {
85
- validationMsg = get(err, 'errorMessage');
86
- } else {
87
- const messageKeys = keys(err);
88
- validationMsg = err[messageKeys[0]].toString();
89
- }
90
- this.setInvalidState(validationMsg);
91
- return err;
92
- });
93
- };
94
- }
95
-
96
- // sets the default validation on the form field
97
- setValidators(validators) {
98
- let _cloneValidators = cloneDeep(validators);
99
- this._syncValidators = [];
100
- forEach(_cloneValidators, (obj, index) => {
101
- // custom validation is bound to function.
102
- if (obj && obj instanceof Function) {
103
- // passing formwidget and form as arguments to the obj (i.e. validator function)
104
- _cloneValidators[index] = obj.bind(undefined, this.formwidget.proxy, this.form);
105
- this._syncValidators.push(_cloneValidators[index]);
106
- } else {
107
- // checks for default validator like required, maxchars etc.
108
- const key = get(obj, 'type');
109
- this.defaultValidatorMessages[key] = get(obj, 'errorMessage');
110
- const value = get(obj, 'validator');
111
- let propsObj = {
112
- props: {}
113
- };
114
- propsObj.props[key] = value;
115
- key === 'required' && this.updateState(propsObj);
116
- this.formwidget.updateState(propsObj);
117
- }
118
- });
119
- }
120
- updateFormWidgetDataset(res, displayField) {
121
- this.formwidget.updateState({
122
- props: {
123
- dataset: res.data,
124
- datafield: 'All Fields',
125
- displayfield: this.formwidget.state.props.displayfield || displayField
126
- }
127
- });
128
- }
129
- setInvalidState(msg) {
130
- this.updateState({
131
- isValid: false,
132
- props: {
133
- validationmessage: msg
134
- }
135
- });
136
- this.formwidget.updateState({
137
- isValid: false,
138
- props: {
139
- validationmessage: msg
140
- }
141
- });
142
- }
143
- onPropertyChange(name, $new, $old) {
144
- switch (name) {
145
- case 'datavalue':
146
- if (!isEqual($old, $new)) {
147
- PERFORMANCE_LOGGER.debug(`form field ${this.props.name} changed from ${$old} to ${$new}`);
148
- }
149
- break;
150
- case 'defaultvalue':
151
- if (!isEqual($old, $new)) {
152
- get(this, 'form') && this.form.applyDefaultValue(this);
153
- }
154
- break;
155
- case 'primary-key':
156
- if ($new) {
157
- this.form.setPrimaryKey(this.props.name);
158
- }
159
- break;
160
- }
161
- }
162
- setReadOnlyState(updateMode) {
163
- this.formwidget.updateState({
164
- props: {
165
- readonly: !updateMode
166
- }
167
- });
168
- }
169
- validateFormField() {
170
- var _this$formwidget, _this$_syncValidators;
171
- if (((_this$formwidget = this.formwidget) === null || _this$formwidget === void 0 ? void 0 : _this$formwidget.state.isValid) === false) {
172
- var _this$formwidget2;
173
- const errorType = (_this$formwidget2 = this.formwidget) === null || _this$formwidget2 === void 0 || (_this$formwidget2 = _this$formwidget2.state) === null || _this$formwidget2 === void 0 ? void 0 : _this$formwidget2.errorType;
174
- let validationMsg = get(this.defaultValidatorMessages, errorType);
175
- if (validationMsg) {
176
- if (validationMsg instanceof Function) {
177
- // passing formwidget and form as arguments to the errorMessage function.
178
- validationMsg = validationMsg(this.formwidget.proxy, this.form);
179
- }
180
- this.updateState({
181
- props: {
182
- validationmessage: validationMsg
183
- }
184
- });
185
- }
186
- this.updateState({
187
- isValid: false
188
- });
189
- } else {
190
- this.updateState({
191
- isValid: true
192
- });
193
- }
194
- (_this$_syncValidators = this._syncValidators) === null || _this$_syncValidators === void 0 ? void 0 : _this$_syncValidators.forEach(fn => {
195
- const errormsg = fn();
196
- let validationMsg = errormsg === null || errormsg === void 0 ? void 0 : errormsg.errorMessage;
197
- if (validationMsg) {
198
- if (validationMsg instanceof Function) {
199
- // passing formwidget and form as arguments to the errorMessage function.
200
- validationMsg = validationMsg(this.formwidget.proxy, this.form);
201
- }
202
- this.setInvalidState(validationMsg);
203
- }
204
- });
205
- this._asyncValidatorFn && this._asyncValidatorFn();
206
- }
207
- renderWidget(props) {
208
- var childrenWithProps = React.Children.map(props.renderFormFields(this.proxy).props.children, child => {
209
- return /*#__PURE__*/React.cloneElement(child, {
210
- datavalue: props.datavalue,
211
- isValid: this.state.isValid,
212
- invokeEvent: this.invokeEventCallback.bind(this),
213
- triggerValidation: this.validateFormField.bind(this),
214
- onFieldChange: this.onFieldChangeEvt.bind(this),
215
- formRef: props.formRef
216
- });
217
- });
218
- return /*#__PURE__*/React.createElement(View, {
219
- style: this.styles.root
220
- }, this._background, childrenWithProps, this.state.isValid === false && /*#__PURE__*/React.createElement(Text, {
221
- style: this.styles.errorMsg
222
- }, props.validationmessage));
223
- }
224
- }
225
- //# sourceMappingURL=form-field.component.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":["React","Text","View","BaseComponent","BaseComponentState","isEqual","get","find","cloneDeep","forEach","keys","WmFormFieldProps","DEFAULT_CLASS","PERFORMANCE_LOGGER","WmFormFieldState","constructor","arguments","_defineProperty","WmFormField","props","onFieldChangeEvt","name","$new","$old","isDefault","notifyChanges","validateFormField","updateState","datavalue","invokeEventCallback","undefined","form","updateDataOutput","call","observeOn","fields","field","formfield","formFields","f","proxy","notifyForFields","push","formwidget","validate","setTimeout","getPromiseList","validators","arr","fn","promise","Function","bind","Promise","setAsyncValidators","_asyncValidatorFn","all","then","err","validationMsg","hasOwnProperty","messageKeys","toString","setInvalidState","setValidators","_cloneValidators","_syncValidators","obj","index","key","defaultValidatorMessages","value","propsObj","updateFormWidgetDataset","res","displayField","dataset","data","datafield","displayfield","state","msg","isValid","validationmessage","onPropertyChange","debug","applyDefaultValue","setPrimaryKey","setReadOnlyState","updateMode","readonly","_this$formwidget","_this$_syncValidators","_this$formwidget2","errorType","errormsg","errorMessage","renderWidget","childrenWithProps","Children","map","renderFormFields","children","child","cloneElement","invokeEvent","triggerValidation","onFieldChange","formRef","createElement","style","styles","root","_background","errorMsg"],"sources":["form-field.component.tsx"],"sourcesContent":["import React from 'react';\nimport {Text, View} from 'react-native';\nimport { BaseComponent, BaseComponentState } from '@wavemaker/app-rn-runtime/core/base.component';\nimport { widgetsWithUndefinedValue } from '@wavemaker/app-rn-runtime/core/utils';\nimport { isEqual, get, find, cloneDeep, forEach, keys } from 'lodash';\n\nimport WmFormFieldProps from './form-field.props';\nimport { DEFAULT_CLASS, WmFormFieldStyles } from './form-field.styles';\nimport {PERFORMANCE_LOGGER} from \"@wavemaker/app-rn-runtime/core/logger\";\n\nexport class WmFormFieldState extends BaseComponentState<WmFormFieldProps> {\n isValid = true;\n}\n\nexport default class WmFormField extends BaseComponent<WmFormFieldProps, WmFormFieldState, WmFormFieldStyles> {\n public form: any;\n public formwidget: any;\n public _syncValidators: any;\n public defaultValidatorMessages: any = [];\n private notifyForFields: any = [];\n private _asyncValidatorFn: any;\n constructor(props: WmFormFieldProps) {\n super(props, DEFAULT_CLASS, new WmFormFieldProps(), new WmFormFieldState());\n }\n\n onFieldChangeEvt(name: string, $new: any, $old: any, isDefault: boolean) {\n this.notifyChanges();\n this.validateFormField();\n if (!isEqual($old, $new)) {\n this.updateState({ props: { datavalue: $new }} as WmFormFieldState, () => {\n !isDefault && this.invokeEventCallback('onChange', [undefined, this, $new, $old]);\n });\n if (this.form) {\n this.form.updateDataOutput.call(this.form, get(this.props, 'formKey', this.props.name), $new);\n }\n }\n }\n\n // Registers observer of validation fields\n observeOn(fields: any) {\n forEach(fields, (field) => {\n const formfield = find(this.form.formFields, (f) => f.proxy.name === field);\n if (formfield) {\n formfield.notifyForFields.push(this);\n }\n });\n }\n\n // Notifies changes to observing validation fields\n notifyChanges() {\n forEach(this.notifyForFields, (field) => {\n field.formwidget.validate(field.formwidget.datavalue);\n setTimeout(() => field.validateFormField());\n });\n }\n\n getPromiseList(validators: any) {\n const arr: any = [];\n forEach(validators, (fn) => {\n let promise = fn;\n if (fn instanceof Function && fn.bind) {\n promise = fn(this.formwidget.proxy, this.form);\n }\n if (promise instanceof Promise) {\n arr.push(promise);\n }\n });\n return arr;\n }\n\n // this method sets the asyncValidation on the form field. Assigns validationmessages from the returned response\n setAsyncValidators(validators: any) {\n this._asyncValidatorFn = () => {\n return Promise.all(this.getPromiseList(validators)).then(() => {\n return null;\n }, err => {\n let validationMsg: string;\n // if err obj has validationMessage key, then set validationMessage using this value\n // else return the value of the first key in the err object as validation message.\n if (err.hasOwnProperty('errorMessage')) {\n validationMsg = get(err, 'errorMessage');\n } else {\n const messageKeys = keys(err);\n validationMsg = (err[messageKeys[0]]).toString();\n }\n this.setInvalidState(validationMsg);\n return err;\n })\n };\n }\n\n // sets the default validation on the form field\n setValidators(validators: any) {\n let _cloneValidators = cloneDeep(validators);\n this._syncValidators = [];\n forEach(_cloneValidators, (obj, index) => {\n // custom validation is bound to function.\n if (obj && obj instanceof Function) {\n // passing formwidget and form as arguments to the obj (i.e. validator function)\n _cloneValidators[index] = obj.bind(undefined, this.formwidget.proxy, this.form);\n this._syncValidators.push(_cloneValidators[index]);\n } else {\n // checks for default validator like required, maxchars etc.\n const key = get(obj, 'type');\n this.defaultValidatorMessages[key] = get(obj, 'errorMessage');\n const value = get(obj, 'validator');\n let propsObj: any = {\n props: {}\n };\n propsObj.props[key] = value;\n key === 'required' && this.updateState(propsObj as WmFormFieldState);\n this.formwidget.updateState(propsObj as WmFormFieldState);\n }\n });\n }\n\n updateFormWidgetDataset(res: any, displayField: string) {\n this.formwidget.updateState({\n props: {\n dataset: res.data,\n datafield: 'All Fields',\n displayfield: this.formwidget.state.props.displayfield || displayField,\n }\n } as WmFormFieldState);\n }\n\n setInvalidState(msg: string) {\n this.updateState({\n isValid: false,\n props: {\n validationmessage: msg\n }\n } as WmFormFieldState)\n this.formwidget.updateState({\n isValid: false,\n props: {\n validationmessage: msg\n }\n } as WmFormFieldState);\n }\n\n onPropertyChange(name: string, $new: any, $old: any) {\n switch (name) {\n case 'datavalue':\n if (!isEqual($old, $new)) {\n PERFORMANCE_LOGGER.debug(`form field ${this.props.name} changed from ${$old} to ${$new}`);\n }\n break;\n case 'defaultvalue':\n if (!isEqual($old, $new)) {\n get(this, 'form') && this.form.applyDefaultValue(this);\n }\n break;\n case 'primary-key':\n if ($new) {\n this.form.setPrimaryKey(this.props.name);\n }\n break;\n }\n }\n\n setReadOnlyState(updateMode: any) {\n this.formwidget.updateState({\n props: {\n readonly: !updateMode,\n }\n } as WmFormFieldState);\n }\n\n validateFormField() {\n if (this.formwidget?.state.isValid === false) {\n const errorType = this.formwidget?.state?.errorType;\n let validationMsg = get(this.defaultValidatorMessages, errorType);\n if (validationMsg) {\n if (validationMsg instanceof Function) {\n // passing formwidget and form as arguments to the errorMessage function.\n validationMsg = validationMsg(this.formwidget.proxy, this.form);\n }\n this.updateState({ props: {\n validationmessage: validationMsg\n }} as WmFormFieldState);\n }\n this.updateState({ isValid: false} as WmFormFieldState);\n } else {\n this.updateState({ isValid: true } as WmFormFieldState);\n }\n\n this._syncValidators?.forEach((fn: any) => {\n const errormsg = fn();\n let validationMsg = errormsg?.errorMessage;\n if (validationMsg) {\n if (validationMsg instanceof Function) {\n // passing formwidget and form as arguments to the errorMessage function.\n validationMsg = validationMsg(this.formwidget.proxy, this.form);\n }\n this.setInvalidState(validationMsg);\n }\n })\n\n this._asyncValidatorFn && this._asyncValidatorFn();\n\n }\n\n renderWidget(props: WmFormFieldProps) {\n var childrenWithProps = React.Children.map(props.renderFormFields(this.proxy).props.children, (child) => {\n return React.cloneElement(child, {\n datavalue: props.datavalue,\n isValid: this.state.isValid,\n invokeEvent: this.invokeEventCallback.bind(this),\n triggerValidation: this.validateFormField.bind(this),\n onFieldChange: this.onFieldChangeEvt.bind(this),\n formRef: props.formRef });\n });\n return (\n <View style={this.styles.root}>{this._background}{childrenWithProps}\n {this.state.isValid === false && <Text style={this.styles.errorMsg}>{props.validationmessage}</Text>}\n </View>\n );\n }\n}\n"],"mappings":"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"}