@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 +0,0 @@
1
- {"version":3,"names":["React","Animated","Easing","Text","View","BaseComponent","BaseComponentState","WmTabheaderProps","DEFAULT_CLASS","Tappable","createSkeleton","BackgroundComponent","WmTabheaderState","WmTabheader","constructor","props","_defineProperty","Value","headerScrollPosition","addListener","_ref","value","headerScrollPositionValue","setHeaderPanelPositon","nativeEvent","headerPanelLayout","layout","setHeaderPositon","index","headersLayout","selectedTabIndex","forceUpdate","onTabSelection","state","onIndexChange","setPosition","_this$headersLayout$s","_this$headerPanelLayo","_this$headerPanelLayo2","toIndicatorPosition","toIndicatorWidth","width","toHeaderScrollPosition","totalWidth","data","length","forEach","p","i","minScrollPosition","maxScrollPosition","Math","max","min","positionIndicator","position","isRTL","parallel","timing","useNativeDriver","toValue","duration","easing","linear","indicatorWidth","indicatorPosition","start","renderSkeleton","createElement","style","transform","translateX","onLayout","bind","styles","root","map","header","_this$styles$root","_this$styles$root2","_this$styles$activeHe","isSelected","onTap","key","flex","activeHeader","theme","borderRadius","height","activeHeaderText","fontSize","activeIndicator","scaleX","renderWidget","overflow","_background","flexGrow","undefined","numberOfLines","headerText","title","backgroundImage","image","backgroundPosition","size","backgroundSize","repeat","backgroundRepeat","resizeMode","backgroundResizeMode","arrowIndicator","arrowIndicatorDot"],"sources":["tabheader.component.tsx"],"sourcesContent":["import React from 'react';\nimport { Animated, Easing, LayoutChangeEvent, LayoutRectangle, Text, View } from 'react-native';\nimport { BaseComponent, BaseComponentState } from '@wavemaker/app-rn-runtime/core/base.component';\n\nimport WmTabheaderProps from './tabheader.props';\nimport { DEFAULT_CLASS, WmTabheaderStyles } from './tabheader.styles';\nimport { Tappable } from '@wavemaker/app-rn-runtime/core/tappable.component';\nimport WmSkeleton, { createSkeleton } from '@wavemaker/app-rn-runtime/components/basic/skeleton/skeleton.component';\nimport { WmSkeletonStyles } from '@wavemaker/app-rn-runtime/components/basic/skeleton/skeleton.styles';\nimport { BackgroundComponent } from '@wavemaker/app-rn-runtime/styles/background.component';\n\nexport class WmTabheaderState extends BaseComponentState<WmTabheaderProps> {\n}\n\nexport default class WmTabheader extends BaseComponent<WmTabheaderProps, WmTabheaderState, WmTabheaderStyles> {\n\n private headerPanelLayout: LayoutRectangle = null as any;\n private headersLayout: LayoutRectangle[] = [];\n private headerScrollPosition = new Animated.Value(0);\n private headerScrollPositionValue = 0;\n private indicatorPosition = new Animated.Value(0);\n private indicatorWidth = new Animated.Value(0);\n\n constructor(props: WmTabheaderProps) {\n super(props, DEFAULT_CLASS, new WmTabheaderProps(), new WmTabheaderState());\n this.headerScrollPosition.addListener(({value}) => this.headerScrollPositionValue = value);\n }\n\n setHeaderPanelPositon(nativeEvent: LayoutChangeEvent) {\n this.headerPanelLayout = nativeEvent.nativeEvent.layout;\n }\n\n setHeaderPositon(index: number, nativeEvent: LayoutChangeEvent) {\n this.headersLayout[index] = nativeEvent.nativeEvent.layout;\n if (index === this.props.selectedTabIndex) {\n this.forceUpdate();\n }\n }\n\n onTabSelection(index: number) {\n if (this.state.props.selectedTabIndex != index) {\n this.state.props.onIndexChange && this.state.props.onIndexChange(index);\n }\n }\n\n setPosition() {\n const selectedTabIndex = this.state.props.selectedTabIndex;\n let toIndicatorPosition = 0;\n let toIndicatorWidth = this.headersLayout[selectedTabIndex]?.width || 0;\n let toHeaderScrollPosition = this.headerScrollPositionValue;\n let totalWidth = 0;\n if (this.state.props.data.length !== this.headersLayout.length) {\n return;\n }\n this.headersLayout.forEach((p, i) => {\n if (i < selectedTabIndex) {\n toIndicatorPosition += p.width;\n }\n totalWidth += p.width;\n });\n toHeaderScrollPosition = -1 * (toIndicatorPosition - (this.headerPanelLayout?.width || 0) / 2 + toIndicatorWidth/ 2) ;\n const minScrollPosition = -1 * (totalWidth - (this.headerPanelLayout?.width || 0));\n const maxScrollPosition = 0;\n toHeaderScrollPosition = Math.max(minScrollPosition, toHeaderScrollPosition);\n toHeaderScrollPosition = Math.min(maxScrollPosition, toHeaderScrollPosition);\n let positionIndicator = (toIndicatorPosition - (100 - toIndicatorWidth) / 2);\n let position = this.isRTL?-positionIndicator:positionIndicator;\n Animated.parallel([\n Animated.timing(this.headerScrollPosition, {\n useNativeDriver: true,\n toValue: toHeaderScrollPosition,\n duration: 200,\n easing: Easing.linear\n }),\n Animated.timing(this.indicatorWidth, {\n useNativeDriver: true,\n toValue: toIndicatorWidth / 100,\n duration: 200,\n easing: Easing.linear\n }),\n Animated.timing(this.indicatorPosition, {\n useNativeDriver: true,\n toValue: position,\n duration: 200,\n easing: Easing.linear\n })\n ]).start();\n }\n\n public renderSkeleton(props: WmTabheaderProps){\n return(\n <Animated.View style={{\n transform: [{\n translateX: this.headerScrollPosition\n }]\n }}\n onLayout={this.setHeaderPanelPositon.bind(this)}>\n <View style={this.styles.root}>\n {this.props.data.map((header ,i) => {\n const isSelected = i === this.props.selectedTabIndex;\n return (\n <Tappable onTap={this.onTabSelection.bind(this, i)} key={header.key} styles={{flex: 1}}>\n <View onLayout={this.setHeaderPositon.bind(this, i)} style={[\n this.styles.header, \n isSelected ? this.styles.activeHeader : null]}>\n {\n createSkeleton(this.theme, { root: { borderRadius: 4 }} as WmSkeletonStyles, {\n ...this.styles.root,\n width: this.styles.root?.width || \"100%\",\n height: this.styles.root?.height || this.styles.activeHeaderText?.fontSize || 16\n })\n }\n </View>\n </Tappable>\n );\n })}\n </View>\n <Animated.View style={[this.styles.activeIndicator, {\n transform: [{\n translateX: this.indicatorPosition\n }, {\n scaleX: this.indicatorWidth\n }]\n }]}></Animated.View>\n </Animated.View>\n\n )\n }\n\n renderWidget(props: WmTabheaderProps) {\n this.setPosition();\n const activeIndicator = this.styles.activeIndicator as any;\n return (\n <View style={{overflow: 'hidden'}}>\n <Animated.View style={{\n transform: [{\n translateX: this.headerScrollPosition\n }]\n }}\n onLayout={this.setHeaderPanelPositon.bind(this)}>\n <View style={this.styles.root}>\n {this._background}\n {props.data.map((header ,i) => {\n const isSelected = i === props.selectedTabIndex ;\n return (\n <Tappable onTap={this.onTabSelection.bind(this, i)}\n key={header.key} \n styles={this.styles.header.flexGrow ? {flexGrow: this.styles.header.flexGrow} : null}>\n <View onLayout={this.setHeaderPositon.bind(this, i)}>\n <View style={[\n this.styles.header,\n {flexGrow: undefined},\n isSelected ? this.styles.activeHeader : null]}>\n <Text numberOfLines={1} style={[\n this.styles.headerText, \n isSelected ? this.styles.activeHeaderText : null]}>{header.title}</Text>\n </View>\n </View>\n </Tappable>\n );\n })}\n </View>\n <Animated.View style={[this.styles.activeIndicator, {\n transform: [{\n translateX: this.indicatorPosition\n }, {\n scaleX: this.indicatorWidth\n }]\n }]}>\n {activeIndicator.backgroundImage ? (<BackgroundComponent\n image={activeIndicator.backgroundImage}\n position={activeIndicator.backgroundPosition}\n size={activeIndicator.backgroundSize}\n repeat={activeIndicator.backgroundRepeat}\n resizeMode={activeIndicator.backgroundResizeMode}\n style={{borderRadius: this.styles.root.borderRadius}}\n ></BackgroundComponent>) : null }\n <View style={this.styles.arrowIndicator}>\n <View style={this.styles.arrowIndicatorDot}></View>\n </View>\n </Animated.View>\n </Animated.View>\n </View>\n ); \n }\n}\n"],"mappings":"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"}
@@ -1,64 +0,0 @@
1
- import BASE_THEME from '@wavemaker/app-rn-runtime/styles/theme';
2
- export const DEFAULT_CLASS = 'app-tabheader';
3
- BASE_THEME.registerStyle((themeVariables, addStyle) => {
4
- const defaultStyles = {
5
- root: {
6
- flexDirection: 'row',
7
- minWidth: '100%',
8
- overflow: 'visible',
9
- backgroundColor: themeVariables.tabHeaderBgColor
10
- },
11
- text: {},
12
- header: {
13
- backgroundColor: themeVariables.tabHeaderBgColor,
14
- paddingHorizontal: 12,
15
- paddingVertical: 12,
16
- minWidth: 80,
17
- flexDirection: 'row',
18
- justifyContent: 'center',
19
- flexGrow: 1
20
- },
21
- headerIcon: {
22
- text: {
23
- color: themeVariables.tabHeaderIconColor
24
- }
25
- },
26
- headerText: {
27
- color: themeVariables.tabHeaderTextColor,
28
- overflow: 'visible',
29
- fontFamily: themeVariables.baseFont,
30
- fontWeight: 'bold',
31
- fontSize: 16,
32
- textTransform: 'capitalize'
33
- },
34
- activeHeader: {
35
- backgroundColor: themeVariables.tabActiveHeaderBgColor
36
- },
37
- activeIndicator: {
38
- backgroundColor: themeVariables.tabActiveIndicatorBgColor,
39
- width: 100,
40
- height: 4,
41
- marginTop: -4,
42
- backgroundPosition: '0px center',
43
- backgroundSize: '48px 48px',
44
- backgroundRepeat: 'no-repeat'
45
- },
46
- activeHeaderIcon: {
47
- text: {
48
- color: themeVariables.tabActiveHeaderIconColor
49
- }
50
- },
51
- activeHeaderText: {
52
- color: themeVariables.tabActiveHeaderTextColor
53
- },
54
- arrowIndicator: {
55
- display: 'none'
56
- },
57
- arrowIndicatorDot: {
58
- display: 'none'
59
- },
60
- skeleton: {}
61
- };
62
- addStyle(DEFAULT_CLASS, '', defaultStyles);
63
- });
64
- //# sourceMappingURL=tabheader.styles.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":["BASE_THEME","DEFAULT_CLASS","registerStyle","themeVariables","addStyle","defaultStyles","root","flexDirection","minWidth","overflow","backgroundColor","tabHeaderBgColor","text","header","paddingHorizontal","paddingVertical","justifyContent","flexGrow","headerIcon","color","tabHeaderIconColor","headerText","tabHeaderTextColor","fontFamily","baseFont","fontWeight","fontSize","textTransform","activeHeader","tabActiveHeaderBgColor","activeIndicator","tabActiveIndicatorBgColor","width","height","marginTop","backgroundPosition","backgroundSize","backgroundRepeat","activeHeaderIcon","tabActiveHeaderIconColor","activeHeaderText","tabActiveHeaderTextColor","arrowIndicator","display","arrowIndicatorDot","skeleton"],"sources":["tabheader.styles.ts"],"sourcesContent":["import BASE_THEME from '@wavemaker/app-rn-runtime/styles/theme';\nimport { BaseStyles } from '@wavemaker/app-rn-runtime/core/base.component';\nimport { TextStyle, ViewStyle } from 'react-native';\nimport { WmIconStyles } from '@wavemaker/app-rn-runtime/components/basic/icon/icon.styles';\nimport { WmSkeletonStyles } from '@wavemaker/app-rn-runtime/components/basic/skeleton/skeleton.styles';\n\nexport type WmTabheaderStyles = BaseStyles & {\n activeIndicator: ViewStyle,\n header: ViewStyle,\n headerIcon: WmIconStyles,\n headerText: TextStyle,\n arrowIndicator: ViewStyle,\n arrowIndicatorDot: ViewStyle,\n activeHeader: ViewStyle,\n activeHeaderIcon: WmIconStyles,\n activeHeaderText: TextStyle,\n skeleton: WmSkeletonStyles \n};\n\nexport const DEFAULT_CLASS = 'app-tabheader';\nBASE_THEME.registerStyle((themeVariables, addStyle) => {\n const defaultStyles = {\n root: {\n flexDirection: 'row',\n minWidth: '100%',\n overflow: 'visible',\n backgroundColor: themeVariables.tabHeaderBgColor,\n },\n text: {},\n header: {\n backgroundColor: themeVariables.tabHeaderBgColor,\n paddingHorizontal: 12,\n paddingVertical: 12,\n minWidth: 80,\n flexDirection: 'row',\n justifyContent: 'center',\n flexGrow: 1\n },\n headerIcon: {\n text: {\n color: themeVariables.tabHeaderIconColor\n }\n } as WmIconStyles,\n headerText: {\n color: themeVariables.tabHeaderTextColor,\n overflow: 'visible',\n fontFamily: themeVariables.baseFont,\n fontWeight: 'bold',\n fontSize: 16,\n textTransform: 'capitalize'\n },\n activeHeader: {\n backgroundColor: themeVariables.tabActiveHeaderBgColor\n },\n activeIndicator: {\n backgroundColor: themeVariables.tabActiveIndicatorBgColor,\n width: 100,\n height: 4,\n marginTop: -4,\n backgroundPosition: '0px center',\n backgroundSize: '48px 48px',\n backgroundRepeat: 'no-repeat'\n },\n activeHeaderIcon: {\n text: {\n color: themeVariables.tabActiveHeaderIconColor\n }\n } as WmIconStyles,\n activeHeaderText: {\n color: themeVariables.tabActiveHeaderTextColor \n },\n arrowIndicator: {\n display: 'none'\n },\n arrowIndicatorDot: {\n display: 'none'\n },\n skeleton: {} as WmSkeletonStyles\n } as WmTabheaderStyles;\n addStyle(DEFAULT_CLASS, '', defaultStyles);\n});"],"mappings":"AAAA,OAAOA,UAAU,MAAM,wCAAwC;AAmB/D,OAAO,MAAMC,aAAa,GAAG,eAAe;AAC5CD,UAAU,CAACE,aAAa,CAAC,CAACC,cAAc,EAAEC,QAAQ,KAAK;EACnD,MAAMC,aAAa,GAAG;IAClBC,IAAI,EAAE;MACFC,aAAa,EAAE,KAAK;MACpBC,QAAQ,EAAE,MAAM;MAChBC,QAAQ,EAAE,SAAS;MACnBC,eAAe,EAAEP,cAAc,CAACQ;IACpC,CAAC;IACDC,IAAI,EAAE,CAAC,CAAC;IACRC,MAAM,EAAE;MACJH,eAAe,EAAEP,cAAc,CAACQ,gBAAgB;MAChDG,iBAAiB,EAAE,EAAE;MACrBC,eAAe,EAAE,EAAE;MACnBP,QAAQ,EAAE,EAAE;MACZD,aAAa,EAAE,KAAK;MACpBS,cAAc,EAAE,QAAQ;MACxBC,QAAQ,EAAE;IACd,CAAC;IACDC,UAAU,EAAE;MACRN,IAAI,EAAE;QACFO,KAAK,EAAEhB,cAAc,CAACiB;MAC1B;IACJ,CAAiB;IACjBC,UAAU,EAAE;MACRF,KAAK,EAAEhB,cAAc,CAACmB,kBAAkB;MACxCb,QAAQ,EAAE,SAAS;MACnBc,UAAU,EAAEpB,cAAc,CAACqB,QAAQ;MACnCC,UAAU,EAAE,MAAM;MAClBC,QAAQ,EAAE,EAAE;MACZC,aAAa,EAAE;IACnB,CAAC;IACDC,YAAY,EAAE;MACVlB,eAAe,EAAEP,cAAc,CAAC0B;IACpC,CAAC;IACDC,eAAe,EAAE;MACbpB,eAAe,EAAEP,cAAc,CAAC4B,yBAAyB;MACzDC,KAAK,EAAE,GAAG;MACVC,MAAM,EAAE,CAAC;MACTC,SAAS,EAAE,CAAC,CAAC;MACbC,kBAAkB,EAAE,YAAY;MAChCC,cAAc,EAAE,WAAW;MAC3BC,gBAAgB,EAAE;IACtB,CAAC;IACDC,gBAAgB,EAAE;MACd1B,IAAI,EAAE;QACFO,KAAK,EAAEhB,cAAc,CAACoC;MAC1B;IACJ,CAAiB;IACjBC,gBAAgB,EAAE;MACdrB,KAAK,EAAEhB,cAAc,CAACsC;IAC1B,CAAC;IACDC,cAAc,EAAE;MACZC,OAAO,EAAE;IACb,CAAC;IACDC,iBAAiB,EAAE;MACfD,OAAO,EAAE;IACb,CAAC;IACDE,QAAQ,EAAE,CAAC;EACf,CAAsB;EACtBzC,QAAQ,CAACH,aAAa,EAAE,EAAE,EAAEI,aAAa,CAAC;AAC9C,CAAC,CAAC"}
@@ -1,229 +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 { View } from 'react-native';
6
- import { BaseComponent, BaseComponentState } from '@wavemaker/app-rn-runtime/core/base.component';
7
- import * as SwipeAnimation from '@wavemaker/app-rn-runtime/gestures/swipe.animation';
8
- import { isWebPreviewMode } from '@wavemaker/app-rn-runtime/core/utils';
9
- import WmTabsProps from './tabs.props';
10
- import { DEFAULT_CLASS } from './tabs.styles';
11
- import WmTabheader from './tabheader/tabheader.component';
12
- export class WmTabsState extends BaseComponentState {
13
- constructor() {
14
- super(...arguments);
15
- _defineProperty(this, "tabsShown", []);
16
- _defineProperty(this, "selectedTabIndex", 0);
17
- }
18
- }
19
- export default class WmTabs extends BaseComponent {
20
- constructor(props) {
21
- super(props, DEFAULT_CLASS, new WmTabsProps(), new WmTabsState());
22
- _defineProperty(this, "tabPanes", []);
23
- _defineProperty(this, "newIndex", 0);
24
- _defineProperty(this, "tabLayout", null);
25
- _defineProperty(this, "tabPaneHeights", []);
26
- _defineProperty(this, "animationView", null);
27
- _defineProperty(this, "animationHandlers", {
28
- bounds: e => {
29
- var _this$tabLayout;
30
- const activeTabIndex = this.state.selectedTabIndex,
31
- w = ((_this$tabLayout = this.tabLayout) === null || _this$tabLayout === void 0 ? void 0 : _this$tabLayout.width) || 0,
32
- noOfTabs = this.tabPanes.length;
33
- return {
34
- lower: -1 * (activeTabIndex - (activeTabIndex === 0 ? 0 : 1)) * w,
35
- center: -1 * activeTabIndex * w,
36
- upper: -1 * (activeTabIndex + (activeTabIndex === noOfTabs - 1 ? 0 : 1)) * w
37
- };
38
- },
39
- onLower: e => {
40
- this.onChange(this.state.selectedTabIndex - 1);
41
- },
42
- onUpper: e => {
43
- this.onChange(this.state.selectedTabIndex + 1);
44
- }
45
- });
46
- const selectedIndex = props.defaultpaneindex || 0;
47
- const tabsShown = [];
48
- tabsShown[selectedIndex] = true;
49
- this.updateState({
50
- selectedTabIndex: selectedIndex,
51
- tabsShown: tabsShown
52
- });
53
- }
54
- setTabLayout(event) {
55
- this.tabLayout = event.nativeEvent.layout;
56
- this.forceUpdate(() => {
57
- this.goToTab();
58
- });
59
- }
60
- setTabPaneHeights(index, nativeEvent) {
61
- var _nativeEvent$nativeEv;
62
- this.tabPaneHeights[index] = (_nativeEvent$nativeEv = nativeEvent.nativeEvent.layout) === null || _nativeEvent$nativeEv === void 0 ? void 0 : _nativeEvent$nativeEv.height;
63
- if (index === this.state.selectedTabIndex) {
64
- this.forceUpdate();
65
- }
66
- }
67
- setTabShown(tabIndex, callback) {
68
- if (!this.state.tabsShown[tabIndex]) {
69
- const tabsShown = [...this.state.tabsShown];
70
- tabsShown[tabIndex] = true;
71
- setTimeout(() => {
72
- this.updateState({
73
- tabsShown: tabsShown
74
- }, callback);
75
- }, 300);
76
- } else {
77
- callback && callback();
78
- }
79
- }
80
- addTabPane(tabPane) {
81
- const i = this.tabPanes.findIndex(t => t.props.name === tabPane.props.name);
82
- if (i >= 0) {
83
- this.tabPanes[i] = tabPane;
84
- } else {
85
- this.tabPanes[this.newIndex++] = tabPane;
86
- }
87
- }
88
- selectTabPane(tabPane) {
89
- this.goToTab(this.tabPanes.indexOf(tabPane));
90
- }
91
- goToTab() {
92
- var _this$tabLayout2, _this$animationView;
93
- let index = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : this.state.selectedTabIndex;
94
- const position = -1 * index * (((_this$tabLayout2 = this.tabLayout) === null || _this$tabLayout2 === void 0 ? void 0 : _this$tabLayout2.width) || 0);
95
- (_this$animationView = this.animationView) === null || _this$animationView === void 0 ? void 0 : _this$animationView.setPosition(position).then(() => this.onChange(index));
96
- }
97
- prev() {
98
- var _this$animationView2;
99
- (_this$animationView2 = this.animationView) === null || _this$animationView2 === void 0 ? void 0 : _this$animationView2.goToLower();
100
- }
101
- next() {
102
- var _this$animationView3;
103
- (_this$animationView3 = this.animationView) === null || _this$animationView3 === void 0 ? void 0 : _this$animationView3.goToLower();
104
- }
105
- onChange(newIndex) {
106
- if (newIndex < 0 || newIndex >= this.tabPanes.length) {
107
- return;
108
- }
109
- const oldIndex = this.state.selectedTabIndex;
110
- const deselectedTab = this.tabPanes[this.state.selectedTabIndex];
111
- this.newIndex = newIndex;
112
- deselectedTab === null || deselectedTab === void 0 ? void 0 : deselectedTab._onDeselect();
113
- this.updateState({
114
- selectedTabIndex: newIndex
115
- }, () => {
116
- this.setTabShown(newIndex, () => {
117
- const selectedTab = this.tabPanes[newIndex];
118
- selectedTab === null || selectedTab === void 0 ? void 0 : selectedTab._onSelect();
119
- this.invokeEventCallback('onChange', [{}, this.proxy, newIndex, oldIndex]);
120
- });
121
- });
122
- }
123
- renderSkeleton(props) {
124
- const tabPanes = React.Children.toArray(this.props.children).filter((item, index) => item.props.show != false);
125
- const headerData = tabPanes.map((p, i) => ({
126
- title: p.props.title || 'Tab Title',
127
- icon: '',
128
- key: `tab-${p.props.title}-${i}`
129
- }));
130
- return /*#__PURE__*/React.createElement(View, {
131
- style: [this.styles.root, {
132
- borderBottomWidth: 0
133
- }]
134
- }, /*#__PURE__*/React.createElement(View, {
135
- onLayout: this.setTabLayout.bind(this),
136
- style: {
137
- width: '100%'
138
- }
139
- }), /*#__PURE__*/React.createElement(WmTabheader, {
140
- styles: this.styles.tabHeader,
141
- data: headerData,
142
- showskeleton: this.props.showskeleton,
143
- selectedTabIndex: this.state.selectedTabIndex
144
- }), /*#__PURE__*/React.createElement(View
145
- //{...this.panResponder.panHandlers}
146
- , {
147
- style: {
148
- width: '100%',
149
- //height: this.tabPaneHeights[this.state.selectedTabIndex],
150
- overflow: 'hidden'
151
- }
152
- }, /*#__PURE__*/React.createElement(View, {
153
- style: {
154
- flexDirection: 'row',
155
- flexWrap: 'nowrap'
156
- }
157
- }, tabPanes.map((p, i) => {
158
- return /*#__PURE__*/React.createElement(View, {
159
- key: `tab-${p.props.title}-${i}`,
160
- style: {
161
- width: '100%',
162
- alignSelf: 'flex-start'
163
- },
164
- onLayout: this.setTabPaneHeights.bind(this, i)
165
- }, p);
166
- }))));
167
- }
168
- renderWidget(props) {
169
- const tabPanes = React.Children.toArray(props.children).filter((item, index) => item.props.show != false);
170
- const headerData = tabPanes.map((p, i) => ({
171
- title: p.props.title || 'Tab Title',
172
- icon: '',
173
- key: `tab-${p.props.title}-${i}`
174
- }));
175
- return /*#__PURE__*/React.createElement(View, {
176
- style: this.styles.root
177
- }, this._background, /*#__PURE__*/React.createElement(View, {
178
- onLayout: this.setTabLayout.bind(this),
179
- style: {
180
- width: '100%'
181
- }
182
- }), /*#__PURE__*/React.createElement(WmTabheader, {
183
- styles: this.styles.tabHeader,
184
- data: headerData,
185
- selectedTabIndex: this.state.selectedTabIndex,
186
- onIndexChange: this.goToTab.bind(this)
187
- }), /*#__PURE__*/React.createElement(View, {
188
- style: [{
189
- width: '100%',
190
- flex: 1
191
- }, this.styles.root.height ? isWebPreviewMode() ? {
192
- 'overflow-x': 'hidden',
193
- 'overflow-y': 'auto'
194
- } : {
195
- overflow: 'scroll'
196
- } : {
197
- overflow: 'hidden',
198
- maxHeight: this.tabPaneHeights[this.state.selectedTabIndex]
199
- }]
200
- }, /*#__PURE__*/React.createElement(SwipeAnimation.View, {
201
- enableGestures: props.enablegestures,
202
- style: {
203
- flexDirection: 'row',
204
- flexWrap: 'nowrap'
205
- },
206
- direction: "horizontal",
207
- ref: r => {
208
- this.animationView = r;
209
- },
210
- handlers: this.animationHandlers
211
- }, tabPanes.map((p, i) => {
212
- return /*#__PURE__*/React.createElement(View, {
213
- style: {
214
- width: '100%',
215
- height: this.styles.root.height ? undefined : 1000000,
216
- alignSelf: 'flex-start'
217
- }
218
- }, /*#__PURE__*/React.createElement(View, {
219
- key: `tab-${p.props.title}-${i}`,
220
- style: {
221
- width: '100%',
222
- alignSelf: 'flex-start'
223
- },
224
- onLayout: this.setTabPaneHeights.bind(this, i)
225
- }, p));
226
- }))));
227
- }
228
- }
229
- //# sourceMappingURL=tabs.component.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":["React","View","BaseComponent","BaseComponentState","SwipeAnimation","isWebPreviewMode","WmTabsProps","DEFAULT_CLASS","WmTabheader","WmTabsState","constructor","arguments","_defineProperty","WmTabs","props","bounds","e","_this$tabLayout","activeTabIndex","state","selectedTabIndex","w","tabLayout","width","noOfTabs","tabPanes","length","lower","center","upper","onLower","onChange","onUpper","selectedIndex","defaultpaneindex","tabsShown","updateState","setTabLayout","event","nativeEvent","layout","forceUpdate","goToTab","setTabPaneHeights","index","_nativeEvent$nativeEv","tabPaneHeights","height","setTabShown","tabIndex","callback","setTimeout","addTabPane","tabPane","i","findIndex","t","name","newIndex","selectTabPane","indexOf","_this$tabLayout2","_this$animationView","undefined","position","animationView","setPosition","then","prev","_this$animationView2","goToLower","next","_this$animationView3","oldIndex","deselectedTab","_onDeselect","selectedTab","_onSelect","invokeEventCallback","proxy","renderSkeleton","Children","toArray","children","filter","item","show","headerData","map","p","title","icon","key","createElement","style","styles","root","borderBottomWidth","onLayout","bind","tabHeader","data","showskeleton","overflow","flexDirection","flexWrap","alignSelf","renderWidget","_background","onIndexChange","flex","maxHeight","enableGestures","enablegestures","direction","ref","r","handlers","animationHandlers"],"sources":["tabs.component.tsx"],"sourcesContent":["import React from 'react';\nimport { LayoutChangeEvent, LayoutRectangle, View } from 'react-native';\nimport { BaseComponent, BaseComponentState } from '@wavemaker/app-rn-runtime/core/base.component';\nimport * as SwipeAnimation from '@wavemaker/app-rn-runtime/gestures/swipe.animation';\nimport { isWebPreviewMode } from '@wavemaker/app-rn-runtime/core/utils';\n\nimport WmTabsProps from './tabs.props';\nimport { DEFAULT_CLASS, WmTabsStyles } from './tabs.styles';\nimport WmTabpane from './tabpane/tabpane.component';\nimport WmTabheader from './tabheader/tabheader.component';\n\nexport class WmTabsState extends BaseComponentState<WmTabsProps> {\n tabsShown: boolean[] = [];\n selectedTabIndex: number = 0;\n}\n\nexport default class WmTabs extends BaseComponent<WmTabsProps, WmTabsState, WmTabsStyles> {\n public tabPanes = [] as WmTabpane[];\n private newIndex = 0;\n private tabLayout: LayoutRectangle = null as any;\n private tabPaneHeights: number[] = [];\n private animationView: SwipeAnimation.View | null = null as any;\n private animationHandlers = {\n bounds: (e) => {\n const activeTabIndex = this.state.selectedTabIndex,\n w = this.tabLayout?.width || 0,\n noOfTabs = this.tabPanes.length;\n return {\n lower: -1 * (activeTabIndex - (activeTabIndex === 0 ? 0 : 1)) * w,\n center: -1 * activeTabIndex * w,\n upper: -1 * (activeTabIndex + (activeTabIndex === noOfTabs - 1 ? 0 : 1)) * w\n };\n },\n onLower: (e) => {\n this.onChange(this.state.selectedTabIndex - 1);\n },\n onUpper: (e) => {\n this.onChange(this.state.selectedTabIndex + 1);\n }\n } as SwipeAnimation.Handlers;\n\n constructor(props: WmTabsProps) {\n super(props, DEFAULT_CLASS, new WmTabsProps(), new WmTabsState());\n const selectedIndex = props.defaultpaneindex || 0;\n const tabsShown: boolean[] = [];\n tabsShown[selectedIndex] = true;\n this.updateState({\n selectedTabIndex: selectedIndex,\n tabsShown: tabsShown\n }as WmTabsState);\n }\n\n setTabLayout(event: LayoutChangeEvent) {\n this.tabLayout = event.nativeEvent.layout;\n this.forceUpdate(() => {\n this.goToTab();\n });\n }\n\n setTabPaneHeights(index: number, nativeEvent: LayoutChangeEvent) {\n this.tabPaneHeights[index] = nativeEvent.nativeEvent.layout?.height;\n if (index === this.state.selectedTabIndex) {\n this.forceUpdate();\n }\n }\n\n setTabShown(tabIndex: number, callback: () => any) {\n if (!this.state.tabsShown[tabIndex]) {\n const tabsShown = [...this.state.tabsShown];\n tabsShown[tabIndex] = true;\n setTimeout(() => {\n this.updateState({\n tabsShown: tabsShown\n } as WmTabsState, callback);\n }, 300);\n } else {\n callback && callback();\n }\n }\n\n addTabPane(tabPane: WmTabpane) {\n const i = this.tabPanes.findIndex(t => t.props.name === tabPane.props.name);\n if (i >= 0) {\n this.tabPanes[i] = tabPane;\n } else {\n this.tabPanes[this.newIndex++] = tabPane;\n }\n }\n\n selectTabPane(tabPane: WmTabpane) {\n this.goToTab(this.tabPanes.indexOf(tabPane));\n }\n\n goToTab(index = this.state.selectedTabIndex) {\n const position = -1 * index * (this.tabLayout?.width || 0);\n this.animationView?.setPosition(position)\n .then(() => this.onChange(index));\n }\n\n prev() {\n this.animationView?.goToLower();\n }\n\n next() {\n this.animationView?.goToLower();\n }\n\n onChange(newIndex: number) {\n if (newIndex < 0 || newIndex >= this.tabPanes.length) {\n return;\n }\n const oldIndex = this.state.selectedTabIndex;\n const deselectedTab = this.tabPanes[this.state.selectedTabIndex];\n this.newIndex = newIndex;\n deselectedTab?._onDeselect();\n this.updateState({\n selectedTabIndex: newIndex\n } as WmTabsState, () => {\n this.setTabShown(newIndex, () => {\n const selectedTab = this.tabPanes[newIndex];\n selectedTab?._onSelect();\n this.invokeEventCallback('onChange', [{}, this.proxy, newIndex, oldIndex]);\n });\n });\n }\n\n public renderSkeleton(props: WmTabsProps){\n const tabPanes = React.Children.toArray(this.props.children)\n .filter((item: any, index: number) => item.props.show != false);\n const headerData = tabPanes.map((p: any, i: number) => \n ({title: p.props.title || 'Tab Title', icon: '', key: `tab-${p.props.title}-${i}`}));\n return(\n <View style={[this.styles.root, { borderBottomWidth: 0}]}>\n <View onLayout={this.setTabLayout.bind(this)} style={{width: '100%'}}></View>\n <WmTabheader\n styles={this.styles.tabHeader}\n data={headerData}\n showskeleton={this.props.showskeleton}\n selectedTabIndex={this.state.selectedTabIndex}\n ></WmTabheader>\n <View \n //{...this.panResponder.panHandlers}\n style={{\n width: '100%',\n //height: this.tabPaneHeights[this.state.selectedTabIndex],\n overflow: 'hidden'\n }} >\n <View style={{\n flexDirection: 'row',\n flexWrap: 'nowrap'\n }}>\n {tabPanes.map((p: any, i) => {\n return (\n <View\n key={`tab-${p.props.title}-${i}`}\n style={{width: '100%', alignSelf: 'flex-start'}}\n onLayout={this.setTabPaneHeights.bind(this, i)}>\n {/* {this.state.tabsShown[i] ? p : null} */}\n {p}\n </View>);\n })}\n </View>\n </View>\n </View>\n\n )\n }\n\n renderWidget(props: WmTabsProps) {\n const tabPanes = React.Children.toArray(props.children)\n .filter((item: any, index: number) => item.props.show != false);\n const headerData = tabPanes.map((p: any, i: number) => \n ({title: p.props.title || 'Tab Title', icon: '', key: `tab-${p.props.title}-${i}`}));\n return (\n <View style={this.styles.root}>\n {this._background}\n <View onLayout={this.setTabLayout.bind(this)} style={{width: '100%'}}></View>\n <WmTabheader\n styles={this.styles.tabHeader}\n data={headerData}\n selectedTabIndex={this.state.selectedTabIndex}\n onIndexChange={this.goToTab.bind(this)}\n ></WmTabheader>\n <View\n style={[{\n width: '100%',\n flex: 1\n }, this.styles.root.height ? \n (isWebPreviewMode() ? {'overflow-x': 'hidden','overflow-y': 'auto'} as any : {overflow: 'scroll'}) \n : {\n overflow: 'hidden',\n maxHeight: this.tabPaneHeights[this.state.selectedTabIndex],\n }]} >\n <SwipeAnimation.View \n enableGestures={props.enablegestures}\n style={{\n flexDirection: 'row',\n flexWrap: 'nowrap'\n }}\n direction='horizontal'\n ref={(r) => {this.animationView = r}}\n handlers = {this.animationHandlers}\n >\n {tabPanes.map((p: any, i) => {\n return (\n <View \n style={{\n width: '100%',\n height: this.styles.root.height ? undefined : 1000000,\n alignSelf: 'flex-start'}}>\n <View\n key={`tab-${p.props.title}-${i}`}\n style={{width: '100%', alignSelf: 'flex-start'}}\n onLayout={this.setTabPaneHeights.bind(this, i)}>\n {/* {this.state.tabsShown[i] ? p : null} */}\n {p}\n </View>\n </View>);\n })}\n </SwipeAnimation.View>\n </View>\n </View>\n );\n }\n}\n"],"mappings":"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"}
@@ -1,21 +0,0 @@
1
- import React from 'react';
2
- import { BaseComponent, BaseComponentState } from '@wavemaker/app-rn-runtime/core/base.component';
3
- import WmTileProps from './tile.props';
4
- import { DEFAULT_CLASS } from './tile.styles';
5
- import { Tappable } from '@wavemaker/app-rn-runtime/core/tappable.component';
6
- import { Animatedview } from '@wavemaker/app-rn-runtime/components/basic/animatedview.component';
7
- export class WmTileState extends BaseComponentState {}
8
- export default class WmTile extends BaseComponent {
9
- constructor(props) {
10
- super(props, DEFAULT_CLASS, new WmTileProps());
11
- }
12
- renderWidget(props) {
13
- return /*#__PURE__*/React.createElement(Tappable, {
14
- target: this
15
- }, /*#__PURE__*/React.createElement(Animatedview, {
16
- entryanimation: props.animation,
17
- style: this.styles.root
18
- }, this._background, props.children));
19
- }
20
- }
21
- //# sourceMappingURL=tile.component.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":["React","BaseComponent","BaseComponentState","WmTileProps","DEFAULT_CLASS","Tappable","Animatedview","WmTileState","WmTile","constructor","props","renderWidget","createElement","target","entryanimation","animation","style","styles","root","_background","children"],"sources":["tile.component.tsx"],"sourcesContent":["import React from 'react';\nimport { BaseComponent, BaseComponentState } from '@wavemaker/app-rn-runtime/core/base.component';\n\nimport WmTileProps from './tile.props';\nimport { DEFAULT_CLASS, WmTileStyles } from './tile.styles';\nimport { Tappable } from '@wavemaker/app-rn-runtime/core/tappable.component';\nimport { Animatedview } from '@wavemaker/app-rn-runtime/components/basic/animatedview.component';\n\nexport class WmTileState extends BaseComponentState<WmTileProps> {}\n\nexport default class WmTile extends BaseComponent<WmTileProps, WmTileState, WmTileStyles> {\n\n constructor(props: WmTileProps) {\n super(props, DEFAULT_CLASS, new WmTileProps());\n }\n\n renderWidget(props: WmTileProps) {\n return (<Tappable target={this}>\n <Animatedview entryanimation={props.animation} style={this.styles.root}>{this._background}{props.children}</Animatedview>\n </Tappable>);\n }\n}\n"],"mappings":"AAAA,OAAOA,KAAK,MAAM,OAAO;AACzB,SAASC,aAAa,EAAEC,kBAAkB,QAAQ,+CAA+C;AAEjG,OAAOC,WAAW,MAAM,cAAc;AACtC,SAASC,aAAa,QAAsB,eAAe;AAC3D,SAASC,QAAQ,QAAQ,mDAAmD;AAC5E,SAASC,YAAY,QAAQ,mEAAmE;AAEhG,OAAO,MAAMC,WAAW,SAASL,kBAAkB,CAAc;AAEjE,eAAe,MAAMM,MAAM,SAASP,aAAa,CAAyC;EAExFQ,WAAWA,CAACC,KAAkB,EAAE;IAC9B,KAAK,CAACA,KAAK,EAAEN,aAAa,EAAE,IAAID,WAAW,CAAC,CAAC,CAAC;EAChD;EAEAQ,YAAYA,CAACD,KAAkB,EAAE;IAC/B,oBAAQV,KAAA,CAAAY,aAAA,CAACP,QAAQ;MAACQ,MAAM,EAAE;IAAK,gBAC7Bb,KAAA,CAAAY,aAAA,CAACN,YAAY;MAACQ,cAAc,EAAEJ,KAAK,CAACK,SAAU;MAACC,KAAK,EAAE,IAAI,CAACC,MAAM,CAACC;IAAK,GAAE,IAAI,CAACC,WAAW,EAAET,KAAK,CAACU,QAAuB,CAChH,CAAC;EACb;AACF"}
@@ -1,176 +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, TouchableOpacity, Platform } from 'react-native';
6
- import { isArray, merge } from 'lodash';
7
- import { BaseComponent, BaseComponentState } from '@wavemaker/app-rn-runtime/core/base.component';
8
- import WmWizardProps from './wizard.props';
9
- import { DEFAULT_CLASS } from './wizard.styles';
10
- import WmButton from '@wavemaker/app-rn-runtime/components/basic/button/button.component';
11
- import WmIcon from '@wavemaker/app-rn-runtime/components/basic/icon/icon.component';
12
- import WmAnchor from '@wavemaker/app-rn-runtime/components/basic/anchor/anchor.component';
13
- export class WmWizardState extends BaseComponentState {
14
- constructor() {
15
- super(...arguments);
16
- _defineProperty(this, "currentStep", 0);
17
- _defineProperty(this, "isDone", false);
18
- }
19
- }
20
- export default class WmWizard extends BaseComponent {
21
- constructor(props) {
22
- super(props, DEFAULT_CLASS, new WmWizardProps());
23
- _defineProperty(this, "numberOfSteps", null);
24
- _defineProperty(this, "steps", []);
25
- const steps = props.children;
26
- let defaultStepIndex = 0;
27
- if (isArray(steps) && props.defaultstep) {
28
- steps.map((item, index) => {
29
- if (props.defaultstep === item.props.name) {
30
- defaultStepIndex = index;
31
- }
32
- });
33
- }
34
- this.updateCurrentStep(defaultStepIndex);
35
- }
36
- addWizardStep(step) {
37
- this.steps[step.props.index] = step;
38
- this.forceUpdate();
39
- }
40
- componentDidMount() {
41
- super.componentDidMount();
42
- this.showActiveStep();
43
- }
44
- showActiveStep() {
45
- var _this$steps$this$stat;
46
- (_this$steps$this$stat = this.steps[this.state.currentStep]) === null || _this$steps$this$stat === void 0 ? void 0 : _this$steps$this$stat.setActive();
47
- }
48
- updateCurrentStep(index) {
49
- var _this$steps$this$stat2;
50
- let isDone = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;
51
- (_this$steps$this$stat2 = this.steps[this.state.currentStep]) === null || _this$steps$this$stat2 === void 0 ? void 0 : _this$steps$this$stat2.setInActive();
52
- this.updateState({
53
- currentStep: index,
54
- isDone: isDone
55
- }, () => this.showActiveStep());
56
- }
57
- getStepStyle(index) {
58
- const style = [this.styles.step];
59
- if (this.state.isDone || index < this.state.currentStep) {
60
- style.push(this.styles.doneStep);
61
- } else if (this.state.currentStep === index) {
62
- style.push(this.styles.activeStep);
63
- }
64
- return style;
65
- }
66
- renderWizardHeader(item, index) {
67
- const isLastStep = index === this.numberOfSteps - 1;
68
- const isFirstStep = index === 0;
69
- const isActiveStep = index === this.state.currentStep;
70
- const isNumberTextLayout = this.state.props.classname === 'number-text-inline';
71
- return item.props.show != false ? /*#__PURE__*/React.createElement(View, {
72
- style: [this.styles.headerWrapper, isNumberTextLayout ? {
73
- paddingRight: isActiveStep ? 0 : 5,
74
- paddingLeft: index === this.state.currentStep + 1 ? 0 : 5
75
- } : {}],
76
- key: index + 1
77
- }, /*#__PURE__*/React.createElement(TouchableOpacity, {
78
- style: this.styles.stepWrapper,
79
- onPress: this.updateCurrentStep.bind(this, index, false),
80
- disabled: index >= this.state.currentStep
81
- }, /*#__PURE__*/React.createElement(View, {
82
- style: this.getStepStyle(index)
83
- }, index >= this.state.currentStep && !this.state.isDone && /*#__PURE__*/React.createElement(Text, {
84
- style: isActiveStep ? this.styles.activeStep : this.styles.stepCounter
85
- }, index + 1), (index < this.state.currentStep || this.state.isDone) && /*#__PURE__*/React.createElement(WmIcon, {
86
- styles: merge({}, this.styles.stepIcon, {
87
- icon: {
88
- color: this.styles.activeStep.color
89
- }
90
- }),
91
- iconclass: item.props.iconclass || 'wm-sl-l sl-check'
92
- })), (isNumberTextLayout && isActiveStep || !isNumberTextLayout) && /*#__PURE__*/React.createElement(Text, {
93
- style: this.styles.stepTitle
94
- }, item.props.title || 'Step Title'), this.numberOfSteps > 1 && isActiveStep && /*#__PURE__*/React.createElement(View, {
95
- style: [this.styles.numberTextStepConnector, {
96
- width: isLastStep ? 0 : 50
97
- }]
98
- })), this.numberOfSteps > 1 && /*#__PURE__*/React.createElement(View, {
99
- style: [this.styles.stepConnector, {
100
- width: isFirstStep || isLastStep ? '50%' : '100%',
101
- left: Platform.OS == "web" ? !this.isRTL && isFirstStep || this.isRTL && isLastStep ? '50%' : '0%' : isFirstStep ? '50%' : '0%'
102
- }]
103
- })) : null;
104
- }
105
- onPrev(steps) {
106
- const index = this.state.currentStep;
107
- const currentStep = this.steps[index];
108
- currentStep.invokePrevCB(index);
109
- this.updateCurrentStep(index - 1);
110
- }
111
- onNext(steps, eventName) {
112
- const index = this.state.currentStep;
113
- const currentStep = this.steps[index];
114
- if (eventName === 'skip') {
115
- currentStep.invokeSkipCB(index);
116
- } else {
117
- currentStep.invokeNextCB(index);
118
- }
119
- this.updateCurrentStep(index + 1);
120
- }
121
- onDone($event) {
122
- this.updateState({
123
- isDone: true
124
- });
125
- this.invokeEventCallback('onDone', [$event, this.proxy]);
126
- }
127
- onCancel() {
128
- this.invokeEventCallback('onCancel', [null, this.proxy]);
129
- }
130
- onSkip(steps) {
131
- this.onNext(steps, 'skip');
132
- }
133
- renderWidget(props) {
134
- this.numberOfSteps = this.steps.length;
135
- const activeStep = this.steps[this.state.currentStep];
136
- const isSkippable = this.steps[this.state.currentStep] && this.steps[this.state.currentStep].props.enableskip;
137
- return /*#__PURE__*/React.createElement(View, {
138
- style: this.styles.root
139
- }, this._background, /*#__PURE__*/React.createElement(View, {
140
- style: this.styles.wizardHeader
141
- }, this.steps ? this.steps.map((step, i) => this.renderWizardHeader(step, i)) : null), /*#__PURE__*/React.createElement(View, {
142
- style: this.styles.wizardBody
143
- }, props.children), /*#__PURE__*/React.createElement(View, {
144
- style: [this.styles.wizardFooter, {
145
- flexDirection: props.actionsalignment === 'right' ? 'row-reverse' : 'row'
146
- }]
147
- }, this.state.currentStep + 1 === this.numberOfSteps && /*#__PURE__*/React.createElement(WmButton, {
148
- iconclass: 'wm-sl-l sl-check',
149
- styles: merge({}, this.styles.wizardActions, this.theme.getStyle('btn-success'), this.styles.doneButton),
150
- caption: props.donebtnlabel,
151
- onTap: this.onDone.bind(this)
152
- }), this.state.currentStep + 1 < this.numberOfSteps && /*#__PURE__*/React.createElement(WmButton, {
153
- iconclass: 'wi wi-chevron-right',
154
- styles: merge({}, this.styles.wizardActions, this.theme.getStyle('btn-primary'), this.styles.nextButton),
155
- iconposition: 'right',
156
- caption: props.nextbtnlabel,
157
- onTap: this.onNext.bind(this, this.steps)
158
- }), this.state.currentStep > 0 && /*#__PURE__*/React.createElement(WmButton, {
159
- iconclass: 'wi wi-chevron-left',
160
- styles: merge({}, this.theme.getStyle('btn-default'), this.styles.wizardActions, this.styles.prevButton),
161
- caption: props.previousbtnlabel,
162
- onTap: this.onPrev.bind(this, this.steps)
163
- }), props.cancelable ? /*#__PURE__*/React.createElement(WmButton, {
164
- caption: props.cancelbtnlabel,
165
- styles: merge({}, this.theme.getStyle('btn-default'), this.styles.wizardActions, this.styles.cancelButton),
166
- onTap: this.onCancel.bind(this)
167
- }) : null, isSkippable && /*#__PURE__*/React.createElement(WmAnchor, {
168
- iconclass: 'wi wi-chevron-right',
169
- iconposition: 'right',
170
- caption: 'Skip',
171
- styles: merge({}, this.styles.wizardActions, this.styles.skipLink),
172
- onTap: this.onSkip.bind(this, this.steps)
173
- })));
174
- }
175
- }
176
- //# sourceMappingURL=wizard.component.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":["React","Text","View","TouchableOpacity","Platform","isArray","merge","BaseComponent","BaseComponentState","WmWizardProps","DEFAULT_CLASS","WmButton","WmIcon","WmAnchor","WmWizardState","constructor","arguments","_defineProperty","WmWizard","props","steps","children","defaultStepIndex","defaultstep","map","item","index","name","updateCurrentStep","addWizardStep","step","forceUpdate","componentDidMount","showActiveStep","_this$steps$this$stat","state","currentStep","setActive","_this$steps$this$stat2","isDone","length","undefined","setInActive","updateState","getStepStyle","style","styles","push","doneStep","activeStep","renderWizardHeader","isLastStep","numberOfSteps","isFirstStep","isActiveStep","isNumberTextLayout","classname","show","createElement","headerWrapper","paddingRight","paddingLeft","key","stepWrapper","onPress","bind","disabled","stepCounter","stepIcon","icon","color","iconclass","stepTitle","title","numberTextStepConnector","width","stepConnector","left","OS","isRTL","onPrev","invokePrevCB","onNext","eventName","invokeSkipCB","invokeNextCB","onDone","$event","invokeEventCallback","proxy","onCancel","onSkip","renderWidget","isSkippable","enableskip","root","_background","wizardHeader","i","wizardBody","wizardFooter","flexDirection","actionsalignment","wizardActions","theme","getStyle","doneButton","caption","donebtnlabel","onTap","nextButton","iconposition","nextbtnlabel","prevButton","previousbtnlabel","cancelable","cancelbtnlabel","cancelButton","skipLink"],"sources":["wizard.component.tsx"],"sourcesContent":["import React from 'react';\nimport { Text, View, TouchableOpacity, Platform } from 'react-native';\nimport { isArray, merge } from 'lodash';\nimport { BaseComponent, BaseComponentState } from '@wavemaker/app-rn-runtime/core/base.component';\n\nimport WmWizardProps from './wizard.props';\nimport { DEFAULT_CLASS, WmWizardStyles } from './wizard.styles';\nimport WmButton from '@wavemaker/app-rn-runtime/components/basic/button/button.component';\nimport WmIcon from '@wavemaker/app-rn-runtime/components/basic/icon/icon.component';\nimport WmAnchor from '@wavemaker/app-rn-runtime/components/basic/anchor/anchor.component';\nimport WmWizardstep from './wizardstep/wizardstep.component';\n\nexport class WmWizardState extends BaseComponentState<WmWizardProps> {\n currentStep: number = 0;\n isDone: boolean = false;\n}\n\nexport default class WmWizard extends BaseComponent<WmWizardProps, WmWizardState, WmWizardStyles> {\n private numberOfSteps: number = null as any;\n private steps = [] as WmWizardstep[];\n constructor(props: WmWizardProps) {\n super(props, DEFAULT_CLASS, new WmWizardProps());\n const steps = props.children;\n let defaultStepIndex = 0;\n if (isArray(steps) && props.defaultstep) {\n steps.map((item: any, index: any) => {\n if (props.defaultstep === item.props.name) {\n defaultStepIndex = index;\n }\n })\n }\n this.updateCurrentStep(defaultStepIndex);\n }\n\n addWizardStep(step: WmWizardstep) {\n this.steps[step.props.index] = step;\n this.forceUpdate();\n }\n\n componentDidMount() {\n super.componentDidMount();\n this.showActiveStep();\n }\n\n showActiveStep() {\n this.steps[this.state.currentStep]?.setActive();\n }\n\n updateCurrentStep(index: number, isDone = false) {\n this.steps[this.state.currentStep]?.setInActive();\n this.updateState({\n currentStep: index,\n isDone: isDone\n } as WmWizardState, () => this.showActiveStep());\n }\n\n getStepStyle(index: number) {\n const style = [this.styles.step];\n if (this.state.isDone || index < this.state.currentStep) {\n style.push(this.styles.doneStep);\n } else if (this.state.currentStep === index) {\n style.push(this.styles.activeStep);\n }\n return style;\n }\n\n renderWizardHeader(item: any, index: number) {\n const isLastStep = index === this.numberOfSteps - 1;\n const isFirstStep = index === 0;\n const isActiveStep = index === this.state.currentStep;\n const isNumberTextLayout = this.state.props.classname === 'number-text-inline';\n return item.props.show != false ? (\n <View style={[this.styles.headerWrapper, isNumberTextLayout ?\n {paddingRight: isActiveStep ? 0 : 5, paddingLeft: index === this.state.currentStep + 1 ? 0 : 5}: {}]} key={index+1}>\n <TouchableOpacity style={this.styles.stepWrapper}\n onPress={this.updateCurrentStep.bind(this, index, false)} disabled={index >= this.state.currentStep}>\n <View style={this.getStepStyle(index)}>\n {index >= this.state.currentStep && !this.state.isDone &&\n <Text style={isActiveStep ? this.styles.activeStep : this.styles.stepCounter}>{index+1}</Text>}\n {(index < this.state.currentStep || this.state.isDone) &&\n <WmIcon styles={merge({}, this.styles.stepIcon, {icon: {color: this.styles.activeStep.color}})}\n iconclass={item.props.iconclass || 'wm-sl-l sl-check'}></WmIcon>}\n </View>\n {((isNumberTextLayout && isActiveStep) || !isNumberTextLayout) &&\n <Text style={this.styles.stepTitle}>\n {item.props.title || 'Step Title'}</Text> }\n {this.numberOfSteps > 1 && isActiveStep &&\n <View style={[this.styles.numberTextStepConnector, {width: isLastStep ? 0 : 50}]}></View>}\n </TouchableOpacity>\n {this.numberOfSteps > 1 && <View style={[this.styles.stepConnector, { width: isFirstStep || isLastStep ? '50%' : '100%',\n left: Platform.OS == \"web\"?(!this.isRTL && isFirstStep) || (this.isRTL && isLastStep) ? '50%': '0%': isFirstStep ? '50%': '0%'}]}></View>}\n </View>\n ) : null;\n }\n\n onPrev(steps: any) {\n const index = this.state.currentStep;\n const currentStep = this.steps[index];\n currentStep.invokePrevCB(index);\n this.updateCurrentStep(index - 1);\n }\n\n onNext(steps: any, eventName?: string) {\n const index = this.state.currentStep;\n const currentStep = this.steps[index];\n if (eventName === 'skip') {\n currentStep.invokeSkipCB(index);\n } else {\n currentStep.invokeNextCB(index);\n }\n this.updateCurrentStep(index + 1);\n }\n\n onDone($event: any) {\n this.updateState({\n isDone: true\n } as WmWizardState);\n this.invokeEventCallback('onDone', [$event, this.proxy]);\n }\n\n onCancel() {\n this.invokeEventCallback('onCancel', [null, this.proxy]);\n }\n onSkip(steps: any) {\n this.onNext(steps, 'skip');\n }\n\n renderWidget(props: WmWizardProps) {\n this.numberOfSteps = this.steps.length;\n const activeStep = this.steps[this.state.currentStep];\n const isSkippable = this.steps[this.state.currentStep] && this.steps[this.state.currentStep].props.enableskip;\n return (\n <View style={this.styles.root}>\n {this._background}\n <View style={this.styles.wizardHeader}>\n {this.steps ? this.steps.map((step, i) => this.renderWizardHeader(step, i)) : null}\n </View>\n <View style={this.styles.wizardBody}>\n {props.children}\n </View>\n <View style={[this.styles.wizardFooter,\n {flexDirection: props.actionsalignment === 'right' ? 'row-reverse': 'row'}]}>\n {(this.state.currentStep+1) === this.numberOfSteps &&\n <WmButton iconclass={'wm-sl-l sl-check'} styles={merge({}, this.styles.wizardActions, this.theme.getStyle('btn-success'), this.styles.doneButton)}\n caption={props.donebtnlabel} onTap={this.onDone.bind(this)}></WmButton>\n }\n {(this.state.currentStep+1) < this.numberOfSteps &&\n <WmButton iconclass={'wi wi-chevron-right'} styles={merge({}, this.styles.wizardActions, this.theme.getStyle('btn-primary'), this.styles.nextButton)}\n iconposition={'right'} caption={props.nextbtnlabel} onTap={this.onNext.bind(this, this.steps)}></WmButton>\n }\n {this.state.currentStep > 0 &&\n <WmButton iconclass={'wi wi-chevron-left'} styles={merge({}, this.theme.getStyle('btn-default'), this.styles.wizardActions, this.styles.prevButton)} caption={props.previousbtnlabel}\n onTap={this.onPrev.bind(this, this.steps)}></WmButton>\n }\n {props.cancelable ?\n <WmButton caption={props.cancelbtnlabel} styles={merge({}, this.theme.getStyle('btn-default'), this.styles.wizardActions, this.styles.cancelButton)} onTap={this.onCancel.bind(this)}></WmButton>\n : null\n }\n {isSkippable &&\n <WmAnchor iconclass={'wi wi-chevron-right'} iconposition={'right'} caption={'Skip'}\n styles={merge({}, this.styles.wizardActions, this.styles.skipLink)} onTap={this.onSkip.bind(this, this.steps)}></WmAnchor>\n }\n </View>\n </View>\n );\n }\n}\n"],"mappings":"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"}