@wavemaker/app-rn-runtime 11.9.2-next.139498 → 11.9.2-next.139501

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 (69) hide show
  1. app-rn-runtime/components/basic/audio/audio.component.js +9 -2
  2. app-rn-runtime/components/basic/audio/audio.component.js.map +1 -1
  3. app-rn-runtime/components/basic/audio/audio.styles.js +7 -0
  4. app-rn-runtime/components/basic/audio/audio.styles.js.map +1 -1
  5. app-rn-runtime/components/basic/video/video.component.js +6 -0
  6. app-rn-runtime/components/basic/video/video.component.js.map +1 -1
  7. app-rn-runtime/components/basic/video/video.styles.js +7 -1
  8. app-rn-runtime/components/basic/video/video.styles.js.map +1 -1
  9. app-rn-runtime/components/container/wizard/wizardstep/wizardstep.component.js +4 -0
  10. app-rn-runtime/components/container/wizard/wizardstep/wizardstep.component.js.map +1 -1
  11. app-rn-runtime/components/data/form/form-field/form-field.component.js +2 -1
  12. app-rn-runtime/components/data/form/form-field/form-field.component.js.map +1 -1
  13. app-rn-runtime/components/input/basenumber/basenumber.component.js +5 -5
  14. app-rn-runtime/components/input/basenumber/basenumber.component.js.map +1 -1
  15. app-rn-runtime/components/input/calendar/calendar.component.js +25 -0
  16. app-rn-runtime/components/input/calendar/calendar.component.js.map +1 -1
  17. app-rn-runtime/components/input/calendar/calendar.styles.js +19 -0
  18. app-rn-runtime/components/input/calendar/calendar.styles.js.map +1 -1
  19. app-rn-runtime/components/input/checkbox/checkbox.component.js +21 -1
  20. app-rn-runtime/components/input/checkbox/checkbox.component.js.map +1 -1
  21. app-rn-runtime/components/input/checkbox/checkbox.styles.js +16 -1
  22. app-rn-runtime/components/input/checkbox/checkbox.styles.js.map +1 -1
  23. app-rn-runtime/components/input/chips/chips.component.js +16 -2
  24. app-rn-runtime/components/input/chips/chips.component.js.map +1 -1
  25. app-rn-runtime/components/input/chips/chips.styles.js +8 -0
  26. app-rn-runtime/components/input/chips/chips.styles.js.map +1 -1
  27. app-rn-runtime/components/input/currency/currency.component.js +11 -3
  28. app-rn-runtime/components/input/currency/currency.component.js.map +1 -1
  29. app-rn-runtime/components/input/currency/currency.styles.js +37 -0
  30. app-rn-runtime/components/input/currency/currency.styles.js.map +1 -1
  31. app-rn-runtime/components/input/epoch/base-datetime.component.js +22 -2
  32. app-rn-runtime/components/input/epoch/base-datetime.component.js.map +1 -1
  33. app-rn-runtime/components/input/epoch/datetime/datetime.props.js +6 -0
  34. app-rn-runtime/components/input/epoch/datetime/datetime.props.js.map +1 -1
  35. app-rn-runtime/components/input/epoch/datetime/datetime.styles.js +13 -0
  36. app-rn-runtime/components/input/epoch/datetime/datetime.styles.js.map +1 -1
  37. app-rn-runtime/components/input/epoch/wheelpickermodal/date/date-picker-modal.component.js +7 -4
  38. app-rn-runtime/components/input/epoch/wheelpickermodal/date/date-picker-modal.component.js.map +1 -1
  39. app-rn-runtime/components/input/epoch/wheelpickermodal/date/date-picker-modal.props.js +3 -0
  40. app-rn-runtime/components/input/epoch/wheelpickermodal/date/date-picker-modal.props.js.map +1 -1
  41. app-rn-runtime/components/input/epoch/wheelpickermodal/time/time-picker-modal.component.js +7 -4
  42. app-rn-runtime/components/input/epoch/wheelpickermodal/time/time-picker-modal.component.js.map +1 -1
  43. app-rn-runtime/components/input/epoch/wheelpickermodal/time/time-picker-modal.props.js +3 -0
  44. app-rn-runtime/components/input/epoch/wheelpickermodal/time/time-picker-modal.props.js.map +1 -1
  45. app-rn-runtime/components/input/number/number.component.js +14 -2
  46. app-rn-runtime/components/input/number/number.component.js.map +1 -1
  47. app-rn-runtime/components/input/number/number.styles.js +21 -1
  48. app-rn-runtime/components/input/number/number.styles.js.map +1 -1
  49. app-rn-runtime/components/input/select/select.component.js +11 -3
  50. app-rn-runtime/components/input/select/select.component.js.map +1 -1
  51. app-rn-runtime/components/input/select/select.styles.js +24 -0
  52. app-rn-runtime/components/input/select/select.styles.js.map +1 -1
  53. app-rn-runtime/components/input/switch/switch.component.js +13 -3
  54. app-rn-runtime/components/input/switch/switch.component.js.map +1 -1
  55. app-rn-runtime/components/input/switch/switch.styles.js +15 -0
  56. app-rn-runtime/components/input/switch/switch.styles.js.map +1 -1
  57. app-rn-runtime/components/input/toggle/toggle.component.js +6 -0
  58. app-rn-runtime/components/input/toggle/toggle.component.js.map +1 -1
  59. app-rn-runtime/components/input/toggle/toggle.props.js +2 -0
  60. app-rn-runtime/components/input/toggle/toggle.props.js.map +1 -1
  61. app-rn-runtime/components/input/toggle/toggle.styles.js +7 -0
  62. app-rn-runtime/components/input/toggle/toggle.styles.js.map +1 -1
  63. app-rn-runtime/package.json +3 -3
  64. app-rn-runtime/runtime/App.js +4 -0
  65. app-rn-runtime/runtime/App.js.map +1 -1
  66. app-rn-runtime/runtime/base-page.component.js +28 -2
  67. app-rn-runtime/runtime/base-page.component.js.map +1 -1
  68. app-rn-runtime/runtime/services/app-modal.service.js +4 -4
  69. app-rn-runtime/runtime/services/app-modal.service.js.map +1 -1
@@ -1 +1 @@
1
- {"version":3,"names":["BackHandler","injector","isAndroid","isWebPreviewMode","AppModalService","constructor","_defineProperty","modalsOpened","length","hideModal","clearBackButtonPress","removeEventListener","handleBackButtonPress","setBackButtonPress","addEventListener","getAppConfig","appConfig","get","showLastModal","modalOptions","refresh","setTimeout","onOpen","showModal","options","i","findIndex","o","elevationIndex","parseInt","app","toastsOpened","push","Promise","resolve","then","animatedRefs","triggerExit","onClose","splice","appModalService"],"sources":["app-modal.service.tsx"],"sourcesContent":["import { BackHandler } from \"react-native\";\n\nimport injector from '@wavemaker/app-rn-runtime/core/injector';\nimport AppConfig from '@wavemaker/app-rn-runtime/core/AppConfig';\nimport { ModalOptions, ModalService } from '@wavemaker/app-rn-runtime/core/modal.service';\nimport { isAndroid, isWebPreviewMode } from \"@wavemaker/app-rn-runtime/core/utils\";\n\nclass AppModalService implements ModalService {\n public modalOptions = {} as ModalOptions;\n\n public modalsOpened = [] as ModalOptions[];\n public appConfig: any;\n\n animatedRefs: any = [];\n\n private clearBackButtonPress() {\n if (isAndroid() && !isWebPreviewMode()) {\n BackHandler.removeEventListener('hardwareBackPress', this.handleBackButtonPress);\n }\n }\n\n private setBackButtonPress() {\n this.clearBackButtonPress();\n if (isAndroid() && !isWebPreviewMode() && this.modalsOpened.length > 0) {\n BackHandler.addEventListener('hardwareBackPress', this.handleBackButtonPress);\n }\n }\n\n private handleBackButtonPress = () => {\n if (this.modalsOpened.length) {\n this.hideModal();\n return true;\n }\n return false;\n }\n\n private getAppConfig() {\n if (!this.appConfig) {\n this.appConfig = injector.get<AppConfig>('APP_CONFIG');\n }\n return this.appConfig;\n }\n\n private showLastModal() {\n this.modalOptions = this.modalsOpened.length ? this.modalsOpened[this.modalsOpened.length - 1] : {} as ModalOptions;\n this.refresh();\n // widgets in dialog are not accessible. Hence adding setTimeout\n setTimeout(() => {\n this.modalOptions.onOpen && this.modalOptions.onOpen();\n },500);\n this.setBackButtonPress();\n }\n\n public refresh() {\n this.getAppConfig().refresh();\n }\n\n public showModal(options: ModalOptions) {\n const i = this.modalsOpened.findIndex(o => o === options);\n if (i < 0) {\n options.elevationIndex = parseInt(this.getAppConfig().app.toastsOpened + this.modalsOpened.length + 1);\n this.modalsOpened.push(options);\n this.showLastModal();\n }\n }\n\n public hideModal(options?: ModalOptions) {\n const i = options ? this.modalsOpened.findIndex(o => o === options) : (this.modalsOpened.length - 1);\n if (i >= 0) {\n Promise.resolve()\n .then(() => this.modalsOpened.length > 1 && this.animatedRefs && this.animatedRefs[i].triggerExit())\n .then(() => {\n const o = this.modalsOpened[i];\n return o && o.onClose && o.onClose();\n })\n .then(() => this.modalsOpened.splice(i, 1))\n .then(() => this.showLastModal());\n }\n this.clearBackButtonPress();\n }\n}\n\nconst appModalService = new AppModalService();\n\nexport default appModalService;\n"],"mappings":"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","ignoreList":[]}
1
+ {"version":3,"names":["BackHandler","injector","isAndroid","isWebPreviewMode","AppModalService","constructor","_defineProperty","modalsOpened","length","hideModal","clearBackButtonPress","removeEventListener","handleBackButtonPress","setBackButtonPress","addEventListener","getAppConfig","appConfig","get","showLastModal","modalOptions","refresh","showModal","options","i","findIndex","o","elevationIndex","parseInt","app","toastsOpened","push","setTimeout","onOpen","Promise","resolve","then","animatedRefs","triggerExit","onClose","splice","appModalService"],"sources":["app-modal.service.tsx"],"sourcesContent":["import { BackHandler } from \"react-native\";\n\nimport injector from '@wavemaker/app-rn-runtime/core/injector';\nimport AppConfig from '@wavemaker/app-rn-runtime/core/AppConfig';\nimport { ModalOptions, ModalService } from '@wavemaker/app-rn-runtime/core/modal.service';\nimport { isAndroid, isWebPreviewMode } from \"@wavemaker/app-rn-runtime/core/utils\";\n\nclass AppModalService implements ModalService {\n public modalOptions = {} as ModalOptions;\n\n public modalsOpened = [] as ModalOptions[];\n public appConfig: any;\n\n animatedRefs: any = [];\n\n private clearBackButtonPress() {\n if (isAndroid() && !isWebPreviewMode()) {\n BackHandler.removeEventListener('hardwareBackPress', this.handleBackButtonPress);\n }\n }\n\n private setBackButtonPress() {\n this.clearBackButtonPress();\n if (isAndroid() && !isWebPreviewMode() && this.modalsOpened.length > 0) {\n BackHandler.addEventListener('hardwareBackPress', this.handleBackButtonPress);\n }\n }\n\n private handleBackButtonPress = () => {\n if (this.modalsOpened.length) {\n this.hideModal();\n return true;\n }\n return false;\n }\n\n private getAppConfig() {\n if (!this.appConfig) {\n this.appConfig = injector.get<AppConfig>('APP_CONFIG');\n }\n return this.appConfig;\n }\n\n private showLastModal() {\n this.modalOptions = this.modalsOpened.length ? this.modalsOpened[this.modalsOpened.length - 1] : {} as ModalOptions;\n this.refresh();\n this.setBackButtonPress();\n }\n\n public refresh() {\n this.getAppConfig().refresh();\n }\n\n public showModal(options: ModalOptions) {\n const i = this.modalsOpened.findIndex(o => o === options);\n if (i < 0) {\n options.elevationIndex = parseInt(this.getAppConfig().app.toastsOpened + this.modalsOpened.length + 1);\n this.modalsOpened.push(options);\n this.showLastModal();\n // widgets in dialog are not accessible. Hence adding setTimeout\n setTimeout(() => {\n this.modalOptions.onOpen && this.modalOptions.onOpen();\n },500);\n }\n }\n\n public hideModal(options?: ModalOptions) {\n const i = options ? this.modalsOpened.findIndex(o => o === options) : (this.modalsOpened.length - 1);\n if (i >= 0) {\n Promise.resolve()\n .then(() => this.modalsOpened.length > 1 && this.animatedRefs && this.animatedRefs[i].triggerExit())\n .then(() => {\n const o = this.modalsOpened[i];\n return o && o.onClose && o.onClose();\n })\n .then(() => this.modalsOpened.splice(i, 1))\n .then(() => this.showLastModal());\n }\n this.clearBackButtonPress();\n }\n}\n\nconst appModalService = new AppModalService();\n\nexport default appModalService;\n"],"mappings":"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","ignoreList":[]}