@wavemaker/app-rn-runtime 12.0.0-next.141218 → 12.0.0-next.141221
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.
- package/actions/notification-action.js +73 -0
- package/actions/timer-action.js +57 -0
- package/components/advanced/carousel/carousel-content/carousel-content.props.js +11 -0
- package/components/advanced/carousel/carousel-template/carousel-template.props.js +11 -0
- package/components/advanced/carousel/carousel.component.js +346 -0
- package/components/advanced/carousel/carousel.component.js.map +1 -0
- package/components/advanced/carousel/carousel.props.js +21 -0
- package/components/advanced/carousel/carousel.props.js.map +1 -0
- package/components/advanced/carousel/carousel.styles.js +176 -0
- package/components/advanced/carousel/carousel.styles.js.map +1 -0
- package/components/advanced/login/login.component.js +39 -0
- package/components/advanced/login/login.props.js +12 -0
- package/components/advanced/network-info-toaster/network-info-toaster.component.js +114 -0
- package/components/advanced/network-info-toaster/network-info-toaster.props.js +11 -0
- package/components/advanced/webview/webview.component.js +155 -0
- package/components/advanced/webview/webview.component.js.map +1 -0
- package/components/advanced/webview/webview.props.js +16 -0
- package/components/basic/anchor/anchor.component.js +99 -0
- package/components/basic/anchor/anchor.props.js +32 -0
- package/components/basic/animatedview.component.js +222 -0
- package/components/basic/audio/audio.component.js +251 -0
- package/components/basic/audio/audio.props.js +15 -0
- package/components/basic/button/button.component.js +113 -0
- package/components/basic/button/button.props.js +27 -0
- package/components/basic/buttongroup/buttongroup.props.js +14 -0
- package/components/basic/custom/custom.props.js +16 -0
- package/components/basic/icon/icon.component.js +266 -0
- package/components/basic/icon/icon.props.js +27 -0
- package/components/basic/label/label.component.js +156 -0
- package/components/basic/label/label.props.js +24 -0
- package/components/basic/label/label.styles.js +133 -0
- package/components/basic/label/label.styles.js.map +1 -0
- package/components/basic/lottie/lottie.component.js +138 -0
- package/components/basic/lottie/lottie.props.js +14 -0
- package/components/basic/message/message.component.js +78 -0
- package/components/basic/message/message.props.js +21 -0
- package/components/basic/modal/modal.props.js +12 -0
- package/components/basic/picture/picture.component.js +197 -0
- package/components/basic/picture/picture.component.js.map +1 -0
- package/components/basic/picture/picture.props.js +23 -0
- package/components/basic/picture/picture.props.js.map +1 -0
- package/components/basic/progress-bar/progress-bar.component.js +59 -0
- package/components/basic/progress-bar/progress-bar.props.js +16 -0
- package/components/basic/progress-circle/progress-circle.component.js +77 -0
- package/components/basic/progress-circle/progress-circle.props.js +19 -0
- package/components/basic/search/local-data-provider.js +113 -0
- package/components/basic/search/search.component.js +427 -0
- package/components/basic/search/search.component.js.map +1 -0
- package/components/basic/search/search.props.js +36 -0
- package/components/basic/skeleton/skeleton.component.js +151 -0
- package/components/basic/skeleton/skeleton.props.js +11 -0
- package/components/basic/spinner/spinner.component.js +90 -0
- package/components/basic/spinner/spinner.props.js +17 -0
- package/components/basic/tooltip/tooltip.props.js +18 -0
- package/components/basic/video/video.component.js +68 -0
- package/components/basic/video/video.props.js +25 -0
- package/components/chart/area-chart/area-chart.component.js +148 -0
- package/components/chart/area-chart/area-chart.props.js +12 -0
- package/components/chart/bar-chart/bar-chart.component.js +120 -0
- package/components/chart/bar-chart/bar-chart.props.js +13 -0
- package/components/chart/basechart.component.js +693 -0
- package/components/chart/basechart.props.js +61 -0
- package/components/chart/bubble-chart/bubble-chart.component.js +104 -0
- package/components/chart/bubble-chart/bubble-chart.props.js +11 -0
- package/components/chart/donut-chart/donut-chart.props.js +11 -0
- package/components/chart/line-chart/line-chart.component.js +110 -0
- package/components/chart/line-chart/line-chart.props.js +14 -0
- package/components/chart/pie-chart/pie-chart.component.js +228 -0
- package/components/chart/pie-chart/pie-chart.props.js +14 -0
- package/components/chart/stack-chart/stack-chart.component.js +348 -0
- package/components/chart/stack-chart/stack-chart.props.js +17 -0
- package/components/container/accordion/accordion.component.js +190 -0
- package/components/container/accordion/accordion.props.js +14 -0
- package/components/container/accordion/accordionpane/accordionpane.component.js +85 -0
- package/components/container/accordion/accordionpane/accordionpane.props.js +17 -0
- package/components/container/container.component.js +80 -0
- package/components/container/container.props.js +14 -0
- package/components/container/layoutgrid/gridcolumn/gridcolumn.props.js +13 -0
- package/components/container/layoutgrid/gridrow/gridrow.props.js +11 -0
- package/components/container/layoutgrid/layoutgrid.props.js +11 -0
- package/components/container/linearlayout/linearlayout.props.js +15 -0
- package/components/container/linearlayout/linearlayoutitem/linearlayoutitem.props.js +13 -0
- package/components/container/panel/panel-content/panel-content.props.js +11 -0
- package/components/container/panel/panel-footer/panel-footer.props.js +11 -0
- package/components/container/panel/panel.component.js +155 -0
- package/components/container/panel/panel.component.js.map +1 -0
- package/components/container/panel/panel.props.js +24 -0
- package/components/container/partial-host.component.js +42 -0
- package/components/container/tabs/tabheader/tabheader.component.js +212 -0
- package/components/container/tabs/tabheader/tabheader.component.js.map +1 -0
- package/components/container/tabs/tabheader/tabheader.props.js +14 -0
- package/components/container/tabs/tabheader/tabheader.props.js.map +1 -0
- package/components/container/tabs/tabpane/tabpane.component.js +81 -0
- package/components/container/tabs/tabpane/tabpane.props.js +16 -0
- package/components/container/tabs/tabs.component.js +282 -0
- package/components/container/tabs/tabs.component.js.map +1 -0
- package/components/container/tabs/tabs.props.js +14 -0
- package/components/container/tabs/tabs.props.js.map +1 -0
- package/components/container/tile/tile.component.js +49 -0
- package/components/container/tile/tile.props.js +13 -0
- package/components/container/wizard/wizard.component.js +349 -0
- package/components/container/wizard/wizard.component.js.map +1 -0
- package/components/container/wizard/wizard.props.js +23 -0
- package/components/container/wizard/wizard.styles.js +316 -0
- package/components/container/wizard/wizard.styles.js.map +1 -0
- package/components/container/wizard/wizardstep/wizardstep.component.js +91 -0
- package/components/container/wizard/wizardstep/wizardstep.component.js.map +1 -0
- package/components/container/wizard/wizardstep/wizardstep.props.js +22 -0
- package/components/data/card/card-content/card-content.component.js +45 -0
- package/components/data/card/card-content/card-content.props.js +12 -0
- package/components/data/card/card-footer/card-footer.props.js +11 -0
- package/components/data/card/card.component.js +90 -0
- package/components/data/card/card.props.js +27 -0
- package/components/data/form/form-action/form-action.component.js +35 -0
- package/components/data/form/form-action/form-action.props.js +18 -0
- package/components/data/form/form-body/form-body.props.js +11 -0
- package/components/data/form/form-field/form-field.component.js +246 -0
- package/components/data/form/form-field/form-field.props.js +34 -0
- package/components/data/form/form-footer/form-footer.props.js +11 -0
- package/components/data/form/form.component.js +425 -0
- package/components/data/form/form.props.js +31 -0
- package/components/data/list/list-action-template/list-action-template.props.js +12 -0
- package/components/data/list/list-template/list-template.props.js +12 -0
- package/components/data/list/list.component.js +485 -0
- package/components/data/list/list.component.js.map +1 -0
- package/components/data/list/list.props.js +48 -0
- package/components/data/liveform/liveform.component.js +98 -0
- package/components/device/barcodescanner/barcodescanner.component.js +50 -0
- package/components/device/barcodescanner/barcodescanner.props.js +18 -0
- package/components/device/camera/camera.component.js +68 -0
- package/components/device/camera/camera.props.js +23 -0
- package/components/dialogs/alertdialog/alertdialog.component.js +72 -0
- package/components/dialogs/alertdialog/alertdialog.props.js +24 -0
- package/components/dialogs/confirmdialog/confirmdialog.component.js +78 -0
- package/components/dialogs/confirmdialog/confirmdialog.props.js +24 -0
- package/components/dialogs/dialog/dialog.component.js +102 -0
- package/components/dialogs/dialog/dialog.component.js.map +1 -0
- package/components/dialogs/dialog/dialog.props.js +25 -0
- package/components/dialogs/dialogactions/dialogactions.component.js +21 -0
- package/components/dialogs/dialogactions/dialogactions.props.js +11 -0
- package/components/dialogs/dialogcontent/dialogcontent.props.js +11 -0
- package/components/input/basedataset/basedataset.component.js +230 -0
- package/components/input/basedataset/basedataset.props.js +31 -0
- package/components/input/baseinput/baseinput.component.js +193 -0
- package/components/input/baseinput/baseinput.props.js +30 -0
- package/components/input/basenumber/basenumber.component.js +346 -0
- package/components/input/basenumber/basenumber.component.js.map +1 -0
- package/components/input/basenumber/basenumber.props.js +27 -0
- package/components/input/calendar/calendar.component.js +164 -0
- package/components/input/calendar/calendar.props.js +14 -0
- package/components/input/calendar/views/month-view.js +191 -0
- package/components/input/calendar/views/month-view.js.map +1 -0
- package/components/input/checkbox/checkbox.component.js +121 -0
- package/components/input/checkbox/checkbox.props.js +18 -0
- package/components/input/checkboxset/checkboxset.component.js +144 -0
- package/components/input/checkboxset/checkboxset.props.js +21 -0
- package/components/input/chips/chips.component.js +320 -0
- package/components/input/chips/chips.component.js.map +1 -0
- package/components/input/chips/chips.props.js +19 -0
- package/components/input/composite/composite.props.js +12 -0
- package/components/input/currency/currency.component.js +113 -0
- package/components/input/currency/currency.props.js +13 -0
- package/components/input/epoch/base-datetime.component.js +473 -0
- package/components/input/epoch/date-picker.component.js +136 -0
- package/components/input/epoch/date-picker.component.js.map +1 -0
- package/components/input/epoch/datetime/datetime.props.js +35 -0
- package/components/input/epoch/time/time.props.js +15 -0
- package/components/input/epoch/wheel-date-picker.component.js +198 -0
- package/components/input/epoch/wheel-time-picker.component.js +107 -0
- package/components/input/epoch/wheelpicker/wheelpicker.component.js +91 -0
- package/components/input/epoch/wheelpicker/wheelpicker.props.js +17 -0
- package/components/input/epoch/wheelpickermodal/date/date-picker-modal.component.js +79 -0
- package/components/input/epoch/wheelpickermodal/date/date-picker-modal.props.js +20 -0
- package/components/input/epoch/wheelpickermodal/time/time-picker-modal.component.js +77 -0
- package/components/input/epoch/wheelpickermodal/time/time-picker-modal.props.js +19 -0
- package/components/input/fileupload/fileupload.component.js +60 -0
- package/components/input/fileupload/fileupload.props.js +17 -0
- package/components/input/number/number.component.js +83 -0
- package/components/input/number/number.props.js +13 -0
- package/components/input/radioset/radioset.component.js +122 -0
- package/components/input/radioset/radioset.props.js +20 -0
- package/components/input/rating/rating.component.js +144 -0
- package/components/input/rating/rating.props.js +21 -0
- package/components/input/select/select.component.js +250 -0
- package/components/input/select/select.component.js.map +1 -0
- package/components/input/select/select.props.js +12 -0
- package/components/input/select/select.styles.js +153 -0
- package/components/input/select/select.styles.js.map +1 -0
- package/components/input/slider/slider.component.js +444 -0
- package/components/input/slider/slider.component.js.map +1 -0
- package/components/input/slider/slider.props.js +20 -0
- package/components/input/switch/switch.component.js +94 -0
- package/components/input/switch/switch.props.js +13 -0
- package/components/input/text/text.component.js +85 -0
- package/components/input/text/text.props.js +15 -0
- package/components/input/textarea/textarea.component.js +83 -0
- package/components/input/textarea/textarea.props.js +14 -0
- package/components/input/toggle/toggle.component.js +150 -0
- package/components/input/toggle/toggle.props.js +22 -0
- package/components/navigation/appnavbar/appnavbar.component.js +74 -0
- package/components/navigation/appnavbar/appnavbar.props.js +21 -0
- package/components/navigation/basenav/basenav.component.js +72 -0
- package/components/navigation/basenav/basenav.props.js +18 -0
- package/components/navigation/menu/menu.component.js +65 -0
- package/components/navigation/menu/menu.component.js.map +1 -0
- package/components/navigation/menu/menu.props.js +14 -0
- package/components/navigation/menu/menu.styles.js +70 -0
- package/components/navigation/menu/menu.styles.js.map +1 -0
- package/components/navigation/navbar/navbar.props.js +16 -0
- package/components/navigation/navitem/navitem.component.js +67 -0
- package/components/navigation/navitem/navitem.props.js +19 -0
- package/components/navigation/popover/popover.component.js +193 -0
- package/components/navigation/popover/popover.component.js.map +1 -0
- package/components/navigation/popover/popover.props.js +31 -0
- package/components/page/left-panel/left-panel.component.js +48 -0
- package/components/page/left-panel/left-panel.props.js +12 -0
- package/components/page/page-content/page-content.component.js +114 -0
- package/components/page/page-content/page-content.component.js.map +1 -0
- package/components/page/page-content/page-content.props.js +12 -0
- package/components/page/page.component.js +26 -0
- package/components/page/partial-container/partial-container.props.js +12 -0
- package/components/page/tabbar/tabbar.component.js +149 -0
- package/components/page/tabbar/tabbar.component.js.map +1 -0
- package/components/page/tabbar/tabbar.props.js +28 -0
- package/core/base.component.js +522 -0
- package/core/base.component.js.map +1 -0
- package/core/components/textinput.component.js +197 -0
- package/core/constant.service.js +22 -0
- package/core/event-notifier.js +68 -0
- package/core/fixed-view.component.js +67 -0
- package/core/imageSizeEstimator.js +51 -0
- package/core/key.extractor.js +21 -0
- package/core/logger.js +123 -0
- package/core/network.service.js +327 -0
- package/core/props.provider.js +88 -0
- package/core/scroll-view.component.js +52 -0
- package/core/storage.service.js +38 -0
- package/core/tappable.component.js +151 -0
- package/core/utils.js +543 -0
- package/core/utils.js.map +1 -0
- package/core/viewport.js +45 -0
- package/core/wm-component-tree.js +58 -0
- package/gestures/swipe.animation.js +217 -0
- package/npm-shrinkwrap.json +27331 -0
- package/package-lock.json +27331 -0
- package/package.json +273 -0
- package/runtime/App.js +533 -0
- package/runtime/App.js.map +1 -0
- package/runtime/base-fragment.component.js +405 -0
- package/runtime/base-fragment.component.js.map +1 -0
- package/runtime/base-page.component.js +209 -0
- package/runtime/base-page.component.js.map +1 -0
- package/runtime/base-partial.component.js +63 -0
- package/runtime/base-prefab.component.js +83 -0
- package/runtime/memo.component.js +35 -0
- package/runtime/navigator/stack.navigator.js +77 -0
- package/runtime/services/app-display-manager.service.js +50 -0
- package/runtime/services/app-i18n.service.js +82 -0
- package/runtime/services/app-i18n.service.js.map +1 -0
- package/runtime/services/app-modal.service.js +71 -0
- package/runtime/services/app-security.service.js +256 -0
- package/runtime/services/app-spinner.service.js +74 -0
- package/runtime/services/app-toast.service.js +56 -0
- package/runtime/services/device/camera-service.js +349 -0
- package/runtime/services/device/scan-service.js +136 -0
- package/runtime/services/webprocess.service.js +107 -0
- package/runtime/watcher.js +147 -0
- package/styles/background.component.js +311 -0
- package/styles/background.component.js.map +1 -0
- package/styles/style-props.js +93 -0
- package/styles/theme.js +414 -0
- package/styles/theme.variables.js +437 -0
- package/styles/theme.variables.js.map +1 -0
- package/variables/base-variable.js +125 -0
- package/variables/device/device/network-info.operation.js +33 -0
- package/variables/live-variable.js +130 -0
- package/variables/model-variable.js +47 -0
- package/variables/service-variable.js +143 -0
- package/variables/utils/inflight-queue.js +114 -0
- app-rn-runtime/actions/notification-action.js +0 -73
- app-rn-runtime/actions/timer-action.js +0 -57
- app-rn-runtime/components/advanced/carousel/carousel-content/carousel-content.props.js +0 -11
- app-rn-runtime/components/advanced/carousel/carousel-template/carousel-template.props.js +0 -11
- app-rn-runtime/components/advanced/carousel/carousel.component.js +0 -331
- app-rn-runtime/components/advanced/carousel/carousel.component.js.map +0 -1
- app-rn-runtime/components/advanced/carousel/carousel.props.js +0 -21
- app-rn-runtime/components/advanced/carousel/carousel.props.js.map +0 -1
- app-rn-runtime/components/advanced/carousel/carousel.styles.js +0 -180
- app-rn-runtime/components/advanced/carousel/carousel.styles.js.map +0 -1
- app-rn-runtime/components/advanced/login/login.component.js +0 -39
- app-rn-runtime/components/advanced/login/login.props.js +0 -12
- app-rn-runtime/components/advanced/network-info-toaster/network-info-toaster.component.js +0 -114
- app-rn-runtime/components/advanced/network-info-toaster/network-info-toaster.props.js +0 -11
- app-rn-runtime/components/advanced/webview/webview.component.js +0 -153
- app-rn-runtime/components/advanced/webview/webview.component.js.map +0 -1
- app-rn-runtime/components/advanced/webview/webview.props.js +0 -16
- app-rn-runtime/components/basic/anchor/anchor.component.js +0 -99
- app-rn-runtime/components/basic/anchor/anchor.props.js +0 -32
- app-rn-runtime/components/basic/animatedview.component.js +0 -222
- app-rn-runtime/components/basic/audio/audio.component.js +0 -251
- app-rn-runtime/components/basic/audio/audio.props.js +0 -15
- app-rn-runtime/components/basic/button/button.component.js +0 -113
- app-rn-runtime/components/basic/button/button.props.js +0 -27
- app-rn-runtime/components/basic/buttongroup/buttongroup.props.js +0 -14
- app-rn-runtime/components/basic/custom/custom.props.js +0 -16
- app-rn-runtime/components/basic/icon/icon.component.js +0 -266
- app-rn-runtime/components/basic/icon/icon.props.js +0 -27
- app-rn-runtime/components/basic/label/label.component.js +0 -156
- app-rn-runtime/components/basic/label/label.props.js +0 -24
- app-rn-runtime/components/basic/label/label.styles.js +0 -129
- app-rn-runtime/components/basic/label/label.styles.js.map +0 -1
- app-rn-runtime/components/basic/lottie/lottie.component.js +0 -138
- app-rn-runtime/components/basic/lottie/lottie.props.js +0 -14
- app-rn-runtime/components/basic/message/message.component.js +0 -78
- app-rn-runtime/components/basic/message/message.props.js +0 -21
- app-rn-runtime/components/basic/modal/modal.props.js +0 -12
- app-rn-runtime/components/basic/picture/picture.component.js +0 -191
- app-rn-runtime/components/basic/picture/picture.component.js.map +0 -1
- app-rn-runtime/components/basic/picture/picture.props.js +0 -22
- app-rn-runtime/components/basic/picture/picture.props.js.map +0 -1
- app-rn-runtime/components/basic/progress-bar/progress-bar.component.js +0 -59
- app-rn-runtime/components/basic/progress-bar/progress-bar.props.js +0 -16
- app-rn-runtime/components/basic/progress-circle/progress-circle.component.js +0 -77
- app-rn-runtime/components/basic/progress-circle/progress-circle.props.js +0 -19
- app-rn-runtime/components/basic/search/local-data-provider.js +0 -113
- app-rn-runtime/components/basic/search/search.component.js +0 -427
- app-rn-runtime/components/basic/search/search.component.js.map +0 -1
- app-rn-runtime/components/basic/search/search.props.js +0 -36
- app-rn-runtime/components/basic/skeleton/skeleton.component.js +0 -151
- app-rn-runtime/components/basic/skeleton/skeleton.props.js +0 -11
- app-rn-runtime/components/basic/spinner/spinner.component.js +0 -90
- app-rn-runtime/components/basic/spinner/spinner.props.js +0 -17
- app-rn-runtime/components/basic/tooltip/tooltip.props.js +0 -18
- app-rn-runtime/components/basic/video/video.component.js +0 -68
- app-rn-runtime/components/basic/video/video.props.js +0 -25
- app-rn-runtime/components/chart/area-chart/area-chart.component.js +0 -148
- app-rn-runtime/components/chart/area-chart/area-chart.props.js +0 -12
- app-rn-runtime/components/chart/bar-chart/bar-chart.component.js +0 -120
- app-rn-runtime/components/chart/bar-chart/bar-chart.props.js +0 -13
- app-rn-runtime/components/chart/basechart.component.js +0 -693
- app-rn-runtime/components/chart/basechart.props.js +0 -61
- app-rn-runtime/components/chart/bubble-chart/bubble-chart.component.js +0 -104
- app-rn-runtime/components/chart/bubble-chart/bubble-chart.props.js +0 -11
- app-rn-runtime/components/chart/donut-chart/donut-chart.props.js +0 -11
- app-rn-runtime/components/chart/line-chart/line-chart.component.js +0 -110
- app-rn-runtime/components/chart/line-chart/line-chart.props.js +0 -14
- app-rn-runtime/components/chart/pie-chart/pie-chart.component.js +0 -228
- app-rn-runtime/components/chart/pie-chart/pie-chart.props.js +0 -14
- app-rn-runtime/components/chart/stack-chart/stack-chart.component.js +0 -348
- app-rn-runtime/components/chart/stack-chart/stack-chart.props.js +0 -17
- app-rn-runtime/components/container/accordion/accordion.component.js +0 -190
- app-rn-runtime/components/container/accordion/accordion.props.js +0 -14
- app-rn-runtime/components/container/accordion/accordionpane/accordionpane.component.js +0 -85
- app-rn-runtime/components/container/accordion/accordionpane/accordionpane.props.js +0 -17
- app-rn-runtime/components/container/container.component.js +0 -80
- app-rn-runtime/components/container/container.props.js +0 -14
- app-rn-runtime/components/container/layoutgrid/gridcolumn/gridcolumn.props.js +0 -13
- app-rn-runtime/components/container/layoutgrid/gridrow/gridrow.props.js +0 -11
- app-rn-runtime/components/container/layoutgrid/layoutgrid.props.js +0 -11
- app-rn-runtime/components/container/linearlayout/linearlayout.props.js +0 -15
- app-rn-runtime/components/container/linearlayout/linearlayoutitem/linearlayoutitem.props.js +0 -13
- app-rn-runtime/components/container/panel/panel-content/panel-content.props.js +0 -11
- app-rn-runtime/components/container/panel/panel-footer/panel-footer.props.js +0 -11
- app-rn-runtime/components/container/panel/panel.component.js +0 -155
- app-rn-runtime/components/container/panel/panel.component.js.map +0 -1
- app-rn-runtime/components/container/panel/panel.props.js +0 -24
- app-rn-runtime/components/container/partial-host.component.js +0 -42
- app-rn-runtime/components/container/tabs/tabheader/tabheader.component.js +0 -198
- app-rn-runtime/components/container/tabs/tabheader/tabheader.component.js.map +0 -1
- app-rn-runtime/components/container/tabs/tabheader/tabheader.props.js +0 -13
- app-rn-runtime/components/container/tabs/tabheader/tabheader.props.js.map +0 -1
- app-rn-runtime/components/container/tabs/tabpane/tabpane.component.js +0 -81
- app-rn-runtime/components/container/tabs/tabpane/tabpane.props.js +0 -16
- app-rn-runtime/components/container/tabs/tabs.component.js +0 -281
- app-rn-runtime/components/container/tabs/tabs.component.js.map +0 -1
- app-rn-runtime/components/container/tabs/tabs.props.js +0 -13
- app-rn-runtime/components/container/tabs/tabs.props.js.map +0 -1
- app-rn-runtime/components/container/tile/tile.component.js +0 -49
- app-rn-runtime/components/container/tile/tile.props.js +0 -13
- app-rn-runtime/components/container/wizard/wizard.component.js +0 -343
- app-rn-runtime/components/container/wizard/wizard.component.js.map +0 -1
- app-rn-runtime/components/container/wizard/wizard.props.js +0 -23
- app-rn-runtime/components/container/wizard/wizard.styles.js +0 -313
- app-rn-runtime/components/container/wizard/wizard.styles.js.map +0 -1
- app-rn-runtime/components/container/wizard/wizardstep/wizardstep.component.js +0 -84
- app-rn-runtime/components/container/wizard/wizardstep/wizardstep.component.js.map +0 -1
- app-rn-runtime/components/container/wizard/wizardstep/wizardstep.props.js +0 -22
- app-rn-runtime/components/data/card/card-content/card-content.component.js +0 -45
- app-rn-runtime/components/data/card/card-content/card-content.props.js +0 -12
- app-rn-runtime/components/data/card/card-footer/card-footer.props.js +0 -11
- app-rn-runtime/components/data/card/card.component.js +0 -90
- app-rn-runtime/components/data/card/card.props.js +0 -27
- app-rn-runtime/components/data/form/form-action/form-action.component.js +0 -35
- app-rn-runtime/components/data/form/form-action/form-action.props.js +0 -18
- app-rn-runtime/components/data/form/form-body/form-body.props.js +0 -11
- app-rn-runtime/components/data/form/form-field/form-field.component.js +0 -246
- app-rn-runtime/components/data/form/form-field/form-field.props.js +0 -34
- app-rn-runtime/components/data/form/form-footer/form-footer.props.js +0 -11
- app-rn-runtime/components/data/form/form.component.js +0 -425
- app-rn-runtime/components/data/form/form.props.js +0 -31
- app-rn-runtime/components/data/list/list-action-template/list-action-template.props.js +0 -12
- app-rn-runtime/components/data/list/list-template/list-template.props.js +0 -12
- app-rn-runtime/components/data/list/list.component.js +0 -475
- app-rn-runtime/components/data/list/list.component.js.map +0 -1
- app-rn-runtime/components/data/list/list.props.js +0 -48
- app-rn-runtime/components/data/liveform/liveform.component.js +0 -98
- app-rn-runtime/components/device/barcodescanner/barcodescanner.component.js +0 -50
- app-rn-runtime/components/device/barcodescanner/barcodescanner.props.js +0 -18
- app-rn-runtime/components/device/camera/camera.component.js +0 -68
- app-rn-runtime/components/device/camera/camera.props.js +0 -23
- app-rn-runtime/components/dialogs/alertdialog/alertdialog.component.js +0 -72
- app-rn-runtime/components/dialogs/alertdialog/alertdialog.props.js +0 -24
- app-rn-runtime/components/dialogs/confirmdialog/confirmdialog.component.js +0 -78
- app-rn-runtime/components/dialogs/confirmdialog/confirmdialog.props.js +0 -24
- app-rn-runtime/components/dialogs/dialog/dialog.component.js +0 -102
- app-rn-runtime/components/dialogs/dialog/dialog.component.js.map +0 -1
- app-rn-runtime/components/dialogs/dialog/dialog.props.js +0 -25
- app-rn-runtime/components/dialogs/dialogactions/dialogactions.component.js +0 -21
- app-rn-runtime/components/dialogs/dialogactions/dialogactions.props.js +0 -11
- app-rn-runtime/components/dialogs/dialogcontent/dialogcontent.props.js +0 -11
- app-rn-runtime/components/input/basedataset/basedataset.component.js +0 -230
- app-rn-runtime/components/input/basedataset/basedataset.props.js +0 -31
- app-rn-runtime/components/input/baseinput/baseinput.component.js +0 -193
- app-rn-runtime/components/input/baseinput/baseinput.props.js +0 -30
- app-rn-runtime/components/input/basenumber/basenumber.component.js +0 -340
- app-rn-runtime/components/input/basenumber/basenumber.component.js.map +0 -1
- app-rn-runtime/components/input/basenumber/basenumber.props.js +0 -27
- app-rn-runtime/components/input/calendar/calendar.component.js +0 -164
- app-rn-runtime/components/input/calendar/calendar.props.js +0 -14
- app-rn-runtime/components/input/calendar/views/month-view.js +0 -191
- app-rn-runtime/components/input/calendar/views/month-view.js.map +0 -1
- app-rn-runtime/components/input/checkbox/checkbox.component.js +0 -121
- app-rn-runtime/components/input/checkbox/checkbox.props.js +0 -18
- app-rn-runtime/components/input/checkboxset/checkboxset.component.js +0 -144
- app-rn-runtime/components/input/checkboxset/checkboxset.props.js +0 -21
- app-rn-runtime/components/input/chips/chips.component.js +0 -296
- app-rn-runtime/components/input/chips/chips.component.js.map +0 -1
- app-rn-runtime/components/input/chips/chips.props.js +0 -19
- app-rn-runtime/components/input/composite/composite.props.js +0 -12
- app-rn-runtime/components/input/currency/currency.component.js +0 -113
- app-rn-runtime/components/input/currency/currency.props.js +0 -13
- app-rn-runtime/components/input/epoch/base-datetime.component.js +0 -473
- app-rn-runtime/components/input/epoch/date-picker.component.js +0 -136
- app-rn-runtime/components/input/epoch/date-picker.component.js.map +0 -1
- app-rn-runtime/components/input/epoch/datetime/datetime.props.js +0 -35
- app-rn-runtime/components/input/epoch/time/time.props.js +0 -15
- app-rn-runtime/components/input/epoch/wheel-date-picker.component.js +0 -198
- app-rn-runtime/components/input/epoch/wheel-time-picker.component.js +0 -107
- app-rn-runtime/components/input/epoch/wheelpicker/wheelpicker.component.js +0 -91
- app-rn-runtime/components/input/epoch/wheelpicker/wheelpicker.props.js +0 -17
- app-rn-runtime/components/input/epoch/wheelpickermodal/date/date-picker-modal.component.js +0 -79
- app-rn-runtime/components/input/epoch/wheelpickermodal/date/date-picker-modal.props.js +0 -20
- app-rn-runtime/components/input/epoch/wheelpickermodal/time/time-picker-modal.component.js +0 -77
- app-rn-runtime/components/input/epoch/wheelpickermodal/time/time-picker-modal.props.js +0 -19
- app-rn-runtime/components/input/fileupload/fileupload.component.js +0 -60
- app-rn-runtime/components/input/fileupload/fileupload.props.js +0 -17
- app-rn-runtime/components/input/number/number.component.js +0 -83
- app-rn-runtime/components/input/number/number.props.js +0 -13
- app-rn-runtime/components/input/radioset/radioset.component.js +0 -122
- app-rn-runtime/components/input/radioset/radioset.props.js +0 -20
- app-rn-runtime/components/input/rating/rating.component.js +0 -144
- app-rn-runtime/components/input/rating/rating.props.js +0 -21
- app-rn-runtime/components/input/select/select.component.js +0 -215
- app-rn-runtime/components/input/select/select.component.js.map +0 -1
- app-rn-runtime/components/input/select/select.props.js +0 -12
- app-rn-runtime/components/input/select/select.styles.js +0 -129
- app-rn-runtime/components/input/select/select.styles.js.map +0 -1
- app-rn-runtime/components/input/slider/slider.component.js +0 -444
- app-rn-runtime/components/input/slider/slider.component.js.map +0 -1
- app-rn-runtime/components/input/slider/slider.props.js +0 -20
- app-rn-runtime/components/input/switch/switch.component.js +0 -94
- app-rn-runtime/components/input/switch/switch.props.js +0 -13
- app-rn-runtime/components/input/text/text.component.js +0 -85
- app-rn-runtime/components/input/text/text.props.js +0 -15
- app-rn-runtime/components/input/textarea/textarea.component.js +0 -83
- app-rn-runtime/components/input/textarea/textarea.props.js +0 -14
- app-rn-runtime/components/input/toggle/toggle.component.js +0 -150
- app-rn-runtime/components/input/toggle/toggle.props.js +0 -22
- app-rn-runtime/components/navigation/appnavbar/appnavbar.component.js +0 -74
- app-rn-runtime/components/navigation/appnavbar/appnavbar.props.js +0 -21
- app-rn-runtime/components/navigation/basenav/basenav.component.js +0 -72
- app-rn-runtime/components/navigation/basenav/basenav.props.js +0 -18
- app-rn-runtime/components/navigation/menu/menu.component.js +0 -63
- app-rn-runtime/components/navigation/menu/menu.component.js.map +0 -1
- app-rn-runtime/components/navigation/menu/menu.props.js +0 -14
- app-rn-runtime/components/navigation/menu/menu.styles.js +0 -74
- app-rn-runtime/components/navigation/menu/menu.styles.js.map +0 -1
- app-rn-runtime/components/navigation/navbar/navbar.props.js +0 -16
- app-rn-runtime/components/navigation/navitem/navitem.component.js +0 -67
- app-rn-runtime/components/navigation/navitem/navitem.props.js +0 -19
- app-rn-runtime/components/navigation/popover/popover.component.js +0 -193
- app-rn-runtime/components/navigation/popover/popover.component.js.map +0 -1
- app-rn-runtime/components/navigation/popover/popover.props.js +0 -31
- app-rn-runtime/components/page/left-panel/left-panel.component.js +0 -48
- app-rn-runtime/components/page/left-panel/left-panel.props.js +0 -12
- app-rn-runtime/components/page/page-content/page-content.component.js +0 -93
- app-rn-runtime/components/page/page-content/page-content.component.js.map +0 -1
- app-rn-runtime/components/page/page-content/page-content.props.js +0 -12
- app-rn-runtime/components/page/page.component.js +0 -26
- app-rn-runtime/components/page/partial-container/partial-container.props.js +0 -12
- app-rn-runtime/components/page/tabbar/tabbar.component.js +0 -149
- app-rn-runtime/components/page/tabbar/tabbar.component.js.map +0 -1
- app-rn-runtime/components/page/tabbar/tabbar.props.js +0 -28
- app-rn-runtime/core/base.component.js +0 -485
- app-rn-runtime/core/base.component.js.map +0 -1
- app-rn-runtime/core/components/textinput.component.js +0 -197
- app-rn-runtime/core/constant.service.js +0 -22
- app-rn-runtime/core/event-notifier.js +0 -68
- app-rn-runtime/core/fixed-view.component.js +0 -67
- app-rn-runtime/core/imageSizeEstimator.js +0 -51
- app-rn-runtime/core/key.extractor.js +0 -21
- app-rn-runtime/core/logger.js +0 -123
- app-rn-runtime/core/network.service.js +0 -327
- app-rn-runtime/core/props.provider.js +0 -88
- app-rn-runtime/core/scroll-view.component.js +0 -52
- app-rn-runtime/core/storage.service.js +0 -38
- app-rn-runtime/core/tappable.component.js +0 -151
- app-rn-runtime/core/utils.js +0 -529
- app-rn-runtime/core/utils.js.map +0 -1
- app-rn-runtime/core/viewport.js +0 -45
- app-rn-runtime/core/wm-component-tree.js +0 -58
- app-rn-runtime/gestures/swipe.animation.js +0 -217
- app-rn-runtime/package.json +0 -277
- app-rn-runtime/runtime/App.js +0 -525
- app-rn-runtime/runtime/App.js.map +0 -1
- app-rn-runtime/runtime/base-fragment.component.js +0 -401
- app-rn-runtime/runtime/base-fragment.component.js.map +0 -1
- app-rn-runtime/runtime/base-page.component.js +0 -206
- app-rn-runtime/runtime/base-page.component.js.map +0 -1
- app-rn-runtime/runtime/base-partial.component.js +0 -63
- app-rn-runtime/runtime/base-prefab.component.js +0 -83
- app-rn-runtime/runtime/memo.component.js +0 -35
- app-rn-runtime/runtime/navigator/stack.navigator.js +0 -77
- app-rn-runtime/runtime/services/app-display-manager.service.js +0 -50
- app-rn-runtime/runtime/services/app-i18n.service.js +0 -81
- app-rn-runtime/runtime/services/app-i18n.service.js.map +0 -1
- app-rn-runtime/runtime/services/app-modal.service.js +0 -71
- app-rn-runtime/runtime/services/app-security.service.js +0 -256
- app-rn-runtime/runtime/services/app-spinner.service.js +0 -74
- app-rn-runtime/runtime/services/app-toast.service.js +0 -56
- app-rn-runtime/runtime/services/device/camera-service.js +0 -349
- app-rn-runtime/runtime/services/device/scan-service.js +0 -136
- app-rn-runtime/runtime/services/webprocess.service.js +0 -107
- app-rn-runtime/runtime/watcher.js +0 -147
- app-rn-runtime/styles/background.component.js +0 -311
- app-rn-runtime/styles/background.component.js.map +0 -1
- app-rn-runtime/styles/style-props.js +0 -93
- app-rn-runtime/styles/theme.js +0 -414
- app-rn-runtime/styles/theme.variables.js +0 -437
- app-rn-runtime/styles/theme.variables.js.map +0 -1
- app-rn-runtime/variables/base-variable.js +0 -125
- app-rn-runtime/variables/device/device/network-info.operation.js +0 -33
- app-rn-runtime/variables/live-variable.js +0 -130
- app-rn-runtime/variables/model-variable.js +0 -47
- app-rn-runtime/variables/service-variable.js +0 -143
- app-rn-runtime/variables/utils/inflight-queue.js +0 -114
- {app-rn-runtime → package}/actions/base-action.js +0 -0
- {app-rn-runtime → package}/actions/base-action.js.map +0 -0
- {app-rn-runtime → package}/actions/index.js +0 -0
- {app-rn-runtime → package}/actions/index.js.map +0 -0
- {app-rn-runtime → package}/actions/login-action.js +0 -0
- {app-rn-runtime → package}/actions/login-action.js.map +0 -0
- {app-rn-runtime → package}/actions/logout-action.js +0 -0
- {app-rn-runtime → package}/actions/logout-action.js.map +0 -0
- {app-rn-runtime → package}/actions/navigation-action.js +0 -0
- {app-rn-runtime → package}/actions/navigation-action.js.map +0 -0
- {app-rn-runtime → package}/actions/notification-action.js.map +0 -0
- {app-rn-runtime → package}/actions/timer-action.js.map +0 -0
- {app-rn-runtime → package}/components/advanced/carousel/carousel-content/carousel-content.component.js +0 -0
- {app-rn-runtime → package}/components/advanced/carousel/carousel-content/carousel-content.component.js.map +0 -0
- {app-rn-runtime → package}/components/advanced/carousel/carousel-content/carousel-content.props.js.map +0 -0
- {app-rn-runtime → package}/components/advanced/carousel/carousel-content/carousel-content.styles.js +0 -0
- {app-rn-runtime → package}/components/advanced/carousel/carousel-content/carousel-content.styles.js.map +0 -0
- {app-rn-runtime → package}/components/advanced/carousel/carousel-template/carousel-template.component.js +0 -0
- {app-rn-runtime → package}/components/advanced/carousel/carousel-template/carousel-template.component.js.map +0 -0
- {app-rn-runtime → package}/components/advanced/carousel/carousel-template/carousel-template.props.js.map +0 -0
- {app-rn-runtime → package}/components/advanced/carousel/carousel-template/carousel-template.styles.js +0 -0
- {app-rn-runtime → package}/components/advanced/carousel/carousel-template/carousel-template.styles.js.map +0 -0
- {app-rn-runtime → package}/components/advanced/login/login.component.js.map +0 -0
- {app-rn-runtime → package}/components/advanced/login/login.props.js.map +0 -0
- {app-rn-runtime → package}/components/advanced/login/login.styles.js +0 -0
- {app-rn-runtime → package}/components/advanced/login/login.styles.js.map +0 -0
- {app-rn-runtime → package}/components/advanced/network-info-toaster/network-info-toaster.component.js.map +0 -0
- {app-rn-runtime → package}/components/advanced/network-info-toaster/network-info-toaster.props.js.map +0 -0
- {app-rn-runtime → package}/components/advanced/network-info-toaster/network-info-toaster.styles.js +0 -0
- {app-rn-runtime → package}/components/advanced/network-info-toaster/network-info-toaster.styles.js.map +0 -0
- {app-rn-runtime → package}/components/advanced/webview/webview.props.js.map +0 -0
- {app-rn-runtime → package}/components/advanced/webview/webview.styles.js +0 -0
- {app-rn-runtime → package}/components/advanced/webview/webview.styles.js.map +0 -0
- {app-rn-runtime → package}/components/basic/anchor/anchor.component.js.map +0 -0
- {app-rn-runtime → package}/components/basic/anchor/anchor.props.js.map +0 -0
- {app-rn-runtime → package}/components/basic/anchor/anchor.styles.js +0 -0
- {app-rn-runtime → package}/components/basic/anchor/anchor.styles.js.map +0 -0
- {app-rn-runtime → package}/components/basic/animatedview.component.js.map +0 -0
- {app-rn-runtime → package}/components/basic/audio/audio.component.js.map +0 -0
- {app-rn-runtime → package}/components/basic/audio/audio.props.js.map +0 -0
- {app-rn-runtime → package}/components/basic/audio/audio.styles.js +0 -0
- {app-rn-runtime → package}/components/basic/audio/audio.styles.js.map +0 -0
- {app-rn-runtime → package}/components/basic/button/button.component.js.map +0 -0
- {app-rn-runtime → package}/components/basic/button/button.props.js.map +0 -0
- {app-rn-runtime → package}/components/basic/button/button.styles.js +0 -0
- {app-rn-runtime → package}/components/basic/button/button.styles.js.map +0 -0
- {app-rn-runtime → package}/components/basic/buttongroup/buttongroup.component.js +0 -0
- {app-rn-runtime → package}/components/basic/buttongroup/buttongroup.component.js.map +0 -0
- {app-rn-runtime → package}/components/basic/buttongroup/buttongroup.props.js.map +0 -0
- {app-rn-runtime → package}/components/basic/buttongroup/buttongroup.styles.js +0 -0
- {app-rn-runtime → package}/components/basic/buttongroup/buttongroup.styles.js.map +0 -0
- {app-rn-runtime → package}/components/basic/custom/custom.component.js +0 -0
- {app-rn-runtime → package}/components/basic/custom/custom.component.js.map +0 -0
- {app-rn-runtime → package}/components/basic/custom/custom.props.js.map +0 -0
- {app-rn-runtime → package}/components/basic/custom/custom.styles.js +0 -0
- {app-rn-runtime → package}/components/basic/custom/custom.styles.js.map +0 -0
- {app-rn-runtime → package}/components/basic/icon/icon.component.js.map +0 -0
- {app-rn-runtime → package}/components/basic/icon/icon.props.js.map +0 -0
- {app-rn-runtime → package}/components/basic/icon/icon.styles.js +0 -0
- {app-rn-runtime → package}/components/basic/icon/icon.styles.js.map +0 -0
- {app-rn-runtime → package}/components/basic/icon/streamline-light-icon/streamline-light-icon.component.js +0 -0
- {app-rn-runtime → package}/components/basic/icon/streamline-light-icon/streamline-light-icon.component.js.map +0 -0
- {app-rn-runtime → package}/components/basic/icon/streamline-light-icon/streamline-light-icon.ttf +0 -0
- {app-rn-runtime → package}/components/basic/icon/streamline-regular-icon/streamline-regular-icon.component.js +0 -0
- {app-rn-runtime → package}/components/basic/icon/streamline-regular-icon/streamline-regular-icon.component.js.map +0 -0
- {app-rn-runtime → package}/components/basic/icon/streamline-regular-icon/streamline-regular-icon.ttf +0 -0
- {app-rn-runtime → package}/components/basic/icon/wavicon/wavicon.component.js +0 -0
- {app-rn-runtime → package}/components/basic/icon/wavicon/wavicon.component.js.map +0 -0
- {app-rn-runtime → package}/components/basic/icon/wavicon/wavicon.ttf +0 -0
- {app-rn-runtime → package}/components/basic/label/label.component.js.map +0 -0
- {app-rn-runtime → package}/components/basic/label/label.props.js.map +0 -0
- {app-rn-runtime → package}/components/basic/lottie/lottie.component.js.map +0 -0
- {app-rn-runtime → package}/components/basic/lottie/lottie.props.js.map +0 -0
- {app-rn-runtime → package}/components/basic/lottie/lottie.styles.js +0 -0
- {app-rn-runtime → package}/components/basic/lottie/lottie.styles.js.map +0 -0
- {app-rn-runtime → package}/components/basic/message/message.component.js.map +0 -0
- {app-rn-runtime → package}/components/basic/message/message.props.js.map +0 -0
- {app-rn-runtime → package}/components/basic/message/message.styles.js +0 -0
- {app-rn-runtime → package}/components/basic/message/message.styles.js.map +0 -0
- {app-rn-runtime → package}/components/basic/modal/modal.component.js +0 -0
- {app-rn-runtime → package}/components/basic/modal/modal.component.js.map +0 -0
- {app-rn-runtime → package}/components/basic/modal/modal.props.js.map +0 -0
- {app-rn-runtime → package}/components/basic/modal/modal.styles.js +0 -0
- {app-rn-runtime → package}/components/basic/modal/modal.styles.js.map +0 -0
- {app-rn-runtime → package}/components/basic/picture/picture.styles.js +0 -0
- {app-rn-runtime → package}/components/basic/picture/picture.styles.js.map +0 -0
- {app-rn-runtime → package}/components/basic/progress-bar/progress-bar.component.js.map +0 -0
- {app-rn-runtime → package}/components/basic/progress-bar/progress-bar.props.js.map +0 -0
- {app-rn-runtime → package}/components/basic/progress-bar/progress-bar.styles.js +0 -0
- {app-rn-runtime → package}/components/basic/progress-bar/progress-bar.styles.js.map +0 -0
- {app-rn-runtime → package}/components/basic/progress-circle/progress-circle.component.js.map +0 -0
- {app-rn-runtime → package}/components/basic/progress-circle/progress-circle.props.js.map +0 -0
- {app-rn-runtime → package}/components/basic/progress-circle/progress-circle.styles.js +0 -0
- {app-rn-runtime → package}/components/basic/progress-circle/progress-circle.styles.js.map +0 -0
- {app-rn-runtime → package}/components/basic/search/local-data-provider.js.map +0 -0
- {app-rn-runtime → package}/components/basic/search/search.props.js.map +0 -0
- {app-rn-runtime → package}/components/basic/search/search.styles.js +0 -0
- {app-rn-runtime → package}/components/basic/search/search.styles.js.map +0 -0
- {app-rn-runtime → package}/components/basic/skeleton/skeleton.component.js.map +0 -0
- {app-rn-runtime → package}/components/basic/skeleton/skeleton.props.js.map +0 -0
- {app-rn-runtime → package}/components/basic/skeleton/skeleton.styles.js +0 -0
- {app-rn-runtime → package}/components/basic/skeleton/skeleton.styles.js.map +0 -0
- {app-rn-runtime → package}/components/basic/spinner/spinner.component.js.map +0 -0
- {app-rn-runtime → package}/components/basic/spinner/spinner.props.js.map +0 -0
- {app-rn-runtime → package}/components/basic/spinner/spinner.styles.js +0 -0
- {app-rn-runtime → package}/components/basic/spinner/spinner.styles.js.map +0 -0
- {app-rn-runtime → package}/components/basic/tooltip/tooltip.component.js +0 -0
- {app-rn-runtime → package}/components/basic/tooltip/tooltip.component.js.map +0 -0
- {app-rn-runtime → package}/components/basic/tooltip/tooltip.props.js.map +0 -0
- {app-rn-runtime → package}/components/basic/tooltip/tooltip.styles.js +0 -0
- {app-rn-runtime → package}/components/basic/tooltip/tooltip.styles.js.map +0 -0
- {app-rn-runtime → package}/components/basic/video/video.component.js.map +0 -0
- {app-rn-runtime → package}/components/basic/video/video.props.js.map +0 -0
- {app-rn-runtime → package}/components/basic/video/video.styles.js +0 -0
- {app-rn-runtime → package}/components/basic/video/video.styles.js.map +0 -0
- {app-rn-runtime → package}/components/chart/area-chart/area-chart.component.js.map +0 -0
- {app-rn-runtime → package}/components/chart/area-chart/area-chart.props.js.map +0 -0
- {app-rn-runtime → package}/components/chart/area-chart/area-chart.styles.js +0 -0
- {app-rn-runtime → package}/components/chart/area-chart/area-chart.styles.js.map +0 -0
- {app-rn-runtime → package}/components/chart/bar-chart/bar-chart.component.js.map +0 -0
- {app-rn-runtime → package}/components/chart/bar-chart/bar-chart.props.js.map +0 -0
- {app-rn-runtime → package}/components/chart/bar-chart/bar-chart.styles.js +0 -0
- {app-rn-runtime → package}/components/chart/bar-chart/bar-chart.styles.js.map +0 -0
- {app-rn-runtime → package}/components/chart/basechart.component.js.map +0 -0
- {app-rn-runtime → package}/components/chart/basechart.props.js.map +0 -0
- {app-rn-runtime → package}/components/chart/basechart.styles.js +0 -0
- {app-rn-runtime → package}/components/chart/basechart.styles.js.map +0 -0
- {app-rn-runtime → package}/components/chart/bubble-chart/bubble-chart.component.js.map +0 -0
- {app-rn-runtime → package}/components/chart/bubble-chart/bubble-chart.props.js.map +0 -0
- {app-rn-runtime → package}/components/chart/bubble-chart/bubble-chart.styles.js +0 -0
- {app-rn-runtime → package}/components/chart/bubble-chart/bubble-chart.styles.js.map +0 -0
- {app-rn-runtime → package}/components/chart/column-chart/column-chart.component.js +0 -0
- {app-rn-runtime → package}/components/chart/column-chart/column-chart.component.js.map +0 -0
- {app-rn-runtime → package}/components/chart/column-chart/column-chart.props.js +0 -0
- {app-rn-runtime → package}/components/chart/column-chart/column-chart.props.js.map +0 -0
- {app-rn-runtime → package}/components/chart/column-chart/column-chart.styles.js +0 -0
- {app-rn-runtime → package}/components/chart/column-chart/column-chart.styles.js.map +0 -0
- {app-rn-runtime → package}/components/chart/donut-chart/donut-chart.component.js +0 -0
- {app-rn-runtime → package}/components/chart/donut-chart/donut-chart.component.js.map +0 -0
- {app-rn-runtime → package}/components/chart/donut-chart/donut-chart.props.js.map +0 -0
- {app-rn-runtime → package}/components/chart/donut-chart/donut-chart.styles.js +0 -0
- {app-rn-runtime → package}/components/chart/donut-chart/donut-chart.styles.js.map +0 -0
- {app-rn-runtime → package}/components/chart/legend/legend.component.js +0 -0
- {app-rn-runtime → package}/components/chart/legend/legend.component.js.map +0 -0
- {app-rn-runtime → package}/components/chart/line-chart/line-chart.component.js.map +0 -0
- {app-rn-runtime → package}/components/chart/line-chart/line-chart.props.js.map +0 -0
- {app-rn-runtime → package}/components/chart/line-chart/line-chart.styles.js +0 -0
- {app-rn-runtime → package}/components/chart/line-chart/line-chart.styles.js.map +0 -0
- {app-rn-runtime → package}/components/chart/pie-chart/pie-chart.component.js.map +0 -0
- {app-rn-runtime → package}/components/chart/pie-chart/pie-chart.props.js.map +0 -0
- {app-rn-runtime → package}/components/chart/pie-chart/pie-chart.styles.js +0 -0
- {app-rn-runtime → package}/components/chart/pie-chart/pie-chart.styles.js.map +0 -0
- {app-rn-runtime → package}/components/chart/stack-chart/stack-chart.component.js.map +0 -0
- {app-rn-runtime → package}/components/chart/stack-chart/stack-chart.props.js.map +0 -0
- {app-rn-runtime → package}/components/chart/stack-chart/stack-chart.styles.js +0 -0
- {app-rn-runtime → package}/components/chart/stack-chart/stack-chart.styles.js.map +0 -0
- {app-rn-runtime → package}/components/chart/staticdata.js +0 -0
- {app-rn-runtime → package}/components/chart/staticdata.js.map +0 -0
- {app-rn-runtime → package}/components/chart/theme/chart.theme.js +0 -0
- {app-rn-runtime → package}/components/chart/theme/chart.theme.js.map +0 -0
- {app-rn-runtime → package}/components/container/accordion/accordion.component.js.map +0 -0
- {app-rn-runtime → package}/components/container/accordion/accordion.props.js.map +0 -0
- {app-rn-runtime → package}/components/container/accordion/accordion.styles.js +0 -0
- {app-rn-runtime → package}/components/container/accordion/accordion.styles.js.map +0 -0
- {app-rn-runtime → package}/components/container/accordion/accordionpane/accordionpane.component.js.map +0 -0
- {app-rn-runtime → package}/components/container/accordion/accordionpane/accordionpane.props.js.map +0 -0
- {app-rn-runtime → package}/components/container/accordion/accordionpane/accordionpane.styles.js +0 -0
- {app-rn-runtime → package}/components/container/accordion/accordionpane/accordionpane.styles.js.map +0 -0
- {app-rn-runtime → package}/components/container/container.component.js.map +0 -0
- {app-rn-runtime → package}/components/container/container.props.js.map +0 -0
- {app-rn-runtime → package}/components/container/container.styles.js +0 -0
- {app-rn-runtime → package}/components/container/container.styles.js.map +0 -0
- {app-rn-runtime → package}/components/container/layoutgrid/gridcolumn/gridcolumn.component.js +0 -0
- {app-rn-runtime → package}/components/container/layoutgrid/gridcolumn/gridcolumn.component.js.map +0 -0
- {app-rn-runtime → package}/components/container/layoutgrid/gridcolumn/gridcolumn.props.js.map +0 -0
- {app-rn-runtime → package}/components/container/layoutgrid/gridcolumn/gridcolumn.styles.js +0 -0
- {app-rn-runtime → package}/components/container/layoutgrid/gridcolumn/gridcolumn.styles.js.map +0 -0
- {app-rn-runtime → package}/components/container/layoutgrid/gridrow/gridrow.component.js +0 -0
- {app-rn-runtime → package}/components/container/layoutgrid/gridrow/gridrow.component.js.map +0 -0
- {app-rn-runtime → package}/components/container/layoutgrid/gridrow/gridrow.props.js.map +0 -0
- {app-rn-runtime → package}/components/container/layoutgrid/gridrow/gridrow.styles.js +0 -0
- {app-rn-runtime → package}/components/container/layoutgrid/gridrow/gridrow.styles.js.map +0 -0
- {app-rn-runtime → package}/components/container/layoutgrid/layoutgrid.component.js +0 -0
- {app-rn-runtime → package}/components/container/layoutgrid/layoutgrid.component.js.map +0 -0
- {app-rn-runtime → package}/components/container/layoutgrid/layoutgrid.props.js.map +0 -0
- {app-rn-runtime → package}/components/container/layoutgrid/layoutgrid.styles.js +0 -0
- {app-rn-runtime → package}/components/container/layoutgrid/layoutgrid.styles.js.map +0 -0
- {app-rn-runtime → package}/components/container/linearlayout/linearlayout.component.js +0 -0
- {app-rn-runtime → package}/components/container/linearlayout/linearlayout.component.js.map +0 -0
- {app-rn-runtime → package}/components/container/linearlayout/linearlayout.props.js.map +0 -0
- {app-rn-runtime → package}/components/container/linearlayout/linearlayout.styles.js +0 -0
- {app-rn-runtime → package}/components/container/linearlayout/linearlayout.styles.js.map +0 -0
- {app-rn-runtime → package}/components/container/linearlayout/linearlayoutitem/linearlayoutitem.component.js +0 -0
- {app-rn-runtime → package}/components/container/linearlayout/linearlayoutitem/linearlayoutitem.component.js.map +0 -0
- {app-rn-runtime → package}/components/container/linearlayout/linearlayoutitem/linearlayoutitem.props.js.map +0 -0
- {app-rn-runtime → package}/components/container/linearlayout/linearlayoutitem/linearlayoutitem.styles.js +0 -0
- {app-rn-runtime → package}/components/container/linearlayout/linearlayoutitem/linearlayoutitem.styles.js.map +0 -0
- {app-rn-runtime → package}/components/container/panel/collapsible-pane.component.js +0 -0
- {app-rn-runtime → package}/components/container/panel/collapsible-pane.component.js.map +0 -0
- {app-rn-runtime → package}/components/container/panel/panel-content/panel-content.component.js +0 -0
- {app-rn-runtime → package}/components/container/panel/panel-content/panel-content.component.js.map +0 -0
- {app-rn-runtime → package}/components/container/panel/panel-content/panel-content.props.js.map +0 -0
- {app-rn-runtime → package}/components/container/panel/panel-content/panel-content.styles.js +0 -0
- {app-rn-runtime → package}/components/container/panel/panel-content/panel-content.styles.js.map +0 -0
- {app-rn-runtime → package}/components/container/panel/panel-footer/panel-footer.component.js +0 -0
- {app-rn-runtime → package}/components/container/panel/panel-footer/panel-footer.component.js.map +0 -0
- {app-rn-runtime → package}/components/container/panel/panel-footer/panel-footer.props.js.map +0 -0
- {app-rn-runtime → package}/components/container/panel/panel-footer/panel-footer.styles.js +0 -0
- {app-rn-runtime → package}/components/container/panel/panel-footer/panel-footer.styles.js.map +0 -0
- {app-rn-runtime → package}/components/container/panel/panel.props.js.map +0 -0
- {app-rn-runtime → package}/components/container/panel/panel.styles.js +0 -0
- {app-rn-runtime → package}/components/container/panel/panel.styles.js.map +0 -0
- {app-rn-runtime → package}/components/container/partial-host.component.js.map +0 -0
- {app-rn-runtime → package}/components/container/tabs/tabheader/tabheader.styles.js +0 -0
- {app-rn-runtime → package}/components/container/tabs/tabheader/tabheader.styles.js.map +0 -0
- {app-rn-runtime → package}/components/container/tabs/tabpane/tabpane.component.js.map +0 -0
- {app-rn-runtime → package}/components/container/tabs/tabpane/tabpane.props.js.map +0 -0
- {app-rn-runtime → package}/components/container/tabs/tabpane/tabpane.styles.js +0 -0
- {app-rn-runtime → package}/components/container/tabs/tabpane/tabpane.styles.js.map +0 -0
- {app-rn-runtime → package}/components/container/tabs/tabs.styles.js +0 -0
- {app-rn-runtime → package}/components/container/tabs/tabs.styles.js.map +0 -0
- {app-rn-runtime → package}/components/container/tile/tile.component.js.map +0 -0
- {app-rn-runtime → package}/components/container/tile/tile.props.js.map +0 -0
- {app-rn-runtime → package}/components/container/tile/tile.styles.js +0 -0
- {app-rn-runtime → package}/components/container/tile/tile.styles.js.map +0 -0
- {app-rn-runtime → package}/components/container/wizard/wizard.props.js.map +0 -0
- {app-rn-runtime → package}/components/container/wizard/wizardstep/wizardstep.props.js.map +0 -0
- {app-rn-runtime → package}/components/container/wizard/wizardstep/wizardstep.styles.js +0 -0
- {app-rn-runtime → package}/components/container/wizard/wizardstep/wizardstep.styles.js.map +0 -0
- {app-rn-runtime → package}/components/data/card/card-content/card-content.component.js.map +0 -0
- {app-rn-runtime → package}/components/data/card/card-content/card-content.props.js.map +0 -0
- {app-rn-runtime → package}/components/data/card/card-content/card-content.styles.js +0 -0
- {app-rn-runtime → package}/components/data/card/card-content/card-content.styles.js.map +0 -0
- {app-rn-runtime → package}/components/data/card/card-footer/card-footer.component.js +0 -0
- {app-rn-runtime → package}/components/data/card/card-footer/card-footer.component.js.map +0 -0
- {app-rn-runtime → package}/components/data/card/card-footer/card-footer.props.js.map +0 -0
- {app-rn-runtime → package}/components/data/card/card-footer/card-footer.styles.js +0 -0
- {app-rn-runtime → package}/components/data/card/card-footer/card-footer.styles.js.map +0 -0
- {app-rn-runtime → package}/components/data/card/card.component.js.map +0 -0
- {app-rn-runtime → package}/components/data/card/card.props.js.map +0 -0
- {app-rn-runtime → package}/components/data/card/card.styles.js +0 -0
- {app-rn-runtime → package}/components/data/card/card.styles.js.map +0 -0
- {app-rn-runtime → package}/components/data/form/form-action/form-action.component.js.map +0 -0
- {app-rn-runtime → package}/components/data/form/form-action/form-action.props.js.map +0 -0
- {app-rn-runtime → package}/components/data/form/form-action/form-action.styles.js +0 -0
- {app-rn-runtime → package}/components/data/form/form-action/form-action.styles.js.map +0 -0
- {app-rn-runtime → package}/components/data/form/form-body/form-body.component.js +0 -0
- {app-rn-runtime → package}/components/data/form/form-body/form-body.component.js.map +0 -0
- {app-rn-runtime → package}/components/data/form/form-body/form-body.props.js.map +0 -0
- {app-rn-runtime → package}/components/data/form/form-body/form-body.styles.js +0 -0
- {app-rn-runtime → package}/components/data/form/form-body/form-body.styles.js.map +0 -0
- {app-rn-runtime → package}/components/data/form/form-field/form-field.component.js.map +0 -0
- {app-rn-runtime → package}/components/data/form/form-field/form-field.props.js.map +0 -0
- {app-rn-runtime → package}/components/data/form/form-field/form-field.styles.js +0 -0
- {app-rn-runtime → package}/components/data/form/form-field/form-field.styles.js.map +0 -0
- {app-rn-runtime → package}/components/data/form/form-footer/form-footer.component.js +0 -0
- {app-rn-runtime → package}/components/data/form/form-footer/form-footer.component.js.map +0 -0
- {app-rn-runtime → package}/components/data/form/form-footer/form-footer.props.js.map +0 -0
- {app-rn-runtime → package}/components/data/form/form-footer/form-footer.styles.js +0 -0
- {app-rn-runtime → package}/components/data/form/form-footer/form-footer.styles.js.map +0 -0
- {app-rn-runtime → package}/components/data/form/form.component.js.map +0 -0
- {app-rn-runtime → package}/components/data/form/form.props.js.map +0 -0
- {app-rn-runtime → package}/components/data/form/form.styles.js +0 -0
- {app-rn-runtime → package}/components/data/form/form.styles.js.map +0 -0
- {app-rn-runtime → package}/components/data/list/list-action-template/list-action-template.component.js +0 -0
- {app-rn-runtime → package}/components/data/list/list-action-template/list-action-template.component.js.map +0 -0
- {app-rn-runtime → package}/components/data/list/list-action-template/list-action-template.props.js.map +0 -0
- {app-rn-runtime → package}/components/data/list/list-action-template/list-action-template.styles.js +0 -0
- {app-rn-runtime → package}/components/data/list/list-action-template/list-action-template.styles.js.map +0 -0
- {app-rn-runtime → package}/components/data/list/list-template/list-template.component.js +0 -0
- {app-rn-runtime → package}/components/data/list/list-template/list-template.component.js.map +0 -0
- {app-rn-runtime → package}/components/data/list/list-template/list-template.props.js.map +0 -0
- {app-rn-runtime → package}/components/data/list/list-template/list-template.styles.js +0 -0
- {app-rn-runtime → package}/components/data/list/list-template/list-template.styles.js.map +0 -0
- {app-rn-runtime → package}/components/data/list/list.props.js.map +0 -0
- {app-rn-runtime → package}/components/data/list/list.styles.js +0 -0
- {app-rn-runtime → package}/components/data/list/list.styles.js.map +0 -0
- {app-rn-runtime → package}/components/data/liveform/liveform.component.js.map +0 -0
- {app-rn-runtime → package}/components/device/barcodescanner/barcodescanner.component.js.map +0 -0
- {app-rn-runtime → package}/components/device/barcodescanner/barcodescanner.props.js.map +0 -0
- {app-rn-runtime → package}/components/device/barcodescanner/barcodescanner.styles.js +0 -0
- {app-rn-runtime → package}/components/device/barcodescanner/barcodescanner.styles.js.map +0 -0
- {app-rn-runtime → package}/components/device/camera/camera.component.js.map +0 -0
- {app-rn-runtime → package}/components/device/camera/camera.props.js.map +0 -0
- {app-rn-runtime → package}/components/device/camera/camera.styles.js +0 -0
- {app-rn-runtime → package}/components/device/camera/camera.styles.js.map +0 -0
- {app-rn-runtime → package}/components/dialogs/alertdialog/alertdialog.component.js.map +0 -0
- {app-rn-runtime → package}/components/dialogs/alertdialog/alertdialog.props.js.map +0 -0
- {app-rn-runtime → package}/components/dialogs/alertdialog/alertdialog.styles.js +0 -0
- {app-rn-runtime → package}/components/dialogs/alertdialog/alertdialog.styles.js.map +0 -0
- {app-rn-runtime → package}/components/dialogs/confirmdialog/confirmdialog.component.js.map +0 -0
- {app-rn-runtime → package}/components/dialogs/confirmdialog/confirmdialog.props.js.map +0 -0
- {app-rn-runtime → package}/components/dialogs/confirmdialog/confirmdialog.styles.js +0 -0
- {app-rn-runtime → package}/components/dialogs/confirmdialog/confirmdialog.styles.js.map +0 -0
- {app-rn-runtime → package}/components/dialogs/dialog/dialog.props.js.map +0 -0
- {app-rn-runtime → package}/components/dialogs/dialog/dialog.styles.js +0 -0
- {app-rn-runtime → package}/components/dialogs/dialog/dialog.styles.js.map +0 -0
- {app-rn-runtime → package}/components/dialogs/dialogactions/dialogactions.component.js.map +0 -0
- {app-rn-runtime → package}/components/dialogs/dialogactions/dialogactions.props.js.map +0 -0
- {app-rn-runtime → package}/components/dialogs/dialogactions/dialogactions.styles.js +0 -0
- {app-rn-runtime → package}/components/dialogs/dialogactions/dialogactions.styles.js.map +0 -0
- {app-rn-runtime → package}/components/dialogs/dialogcontent/dialogcontent.component.js +0 -0
- {app-rn-runtime → package}/components/dialogs/dialogcontent/dialogcontent.component.js.map +0 -0
- {app-rn-runtime → package}/components/dialogs/dialogcontent/dialogcontent.props.js.map +0 -0
- {app-rn-runtime → package}/components/dialogs/dialogcontent/dialogcontent.styles.js +0 -0
- {app-rn-runtime → package}/components/dialogs/dialogcontent/dialogcontent.styles.js.map +0 -0
- {app-rn-runtime → package}/components/input/basedataset/basedataset.component.js.map +0 -0
- {app-rn-runtime → package}/components/input/basedataset/basedataset.props.js.map +0 -0
- {app-rn-runtime → package}/components/input/basedataset/basedataset.styles.js +0 -0
- {app-rn-runtime → package}/components/input/basedataset/basedataset.styles.js.map +0 -0
- {app-rn-runtime → package}/components/input/baseinput/baseinput.component.js.map +0 -0
- {app-rn-runtime → package}/components/input/baseinput/baseinput.props.js.map +0 -0
- {app-rn-runtime → package}/components/input/baseinput/baseinput.styles.js +0 -0
- {app-rn-runtime → package}/components/input/baseinput/baseinput.styles.js.map +0 -0
- {app-rn-runtime → package}/components/input/basenumber/basenumber.props.js.map +0 -0
- {app-rn-runtime → package}/components/input/basenumber/basenumber.styles.js +0 -0
- {app-rn-runtime → package}/components/input/basenumber/basenumber.styles.js.map +0 -0
- {app-rn-runtime → package}/components/input/calendar/calendar.component.js.map +0 -0
- {app-rn-runtime → package}/components/input/calendar/calendar.props.js.map +0 -0
- {app-rn-runtime → package}/components/input/calendar/calendar.styles.js +0 -0
- {app-rn-runtime → package}/components/input/calendar/calendar.styles.js.map +0 -0
- {app-rn-runtime → package}/components/input/calendar/views/month-view.styles.js +0 -0
- {app-rn-runtime → package}/components/input/calendar/views/month-view.styles.js.map +0 -0
- {app-rn-runtime → package}/components/input/checkbox/checkbox.component.js.map +0 -0
- {app-rn-runtime → package}/components/input/checkbox/checkbox.props.js.map +0 -0
- {app-rn-runtime → package}/components/input/checkbox/checkbox.styles.js +0 -0
- {app-rn-runtime → package}/components/input/checkbox/checkbox.styles.js.map +0 -0
- {app-rn-runtime → package}/components/input/checkboxset/checkboxset.component.js.map +0 -0
- {app-rn-runtime → package}/components/input/checkboxset/checkboxset.props.js.map +0 -0
- {app-rn-runtime → package}/components/input/checkboxset/checkboxset.styles.js +0 -0
- {app-rn-runtime → package}/components/input/checkboxset/checkboxset.styles.js.map +0 -0
- {app-rn-runtime → package}/components/input/chips/chips.props.js.map +0 -0
- {app-rn-runtime → package}/components/input/chips/chips.styles.js +0 -0
- {app-rn-runtime → package}/components/input/chips/chips.styles.js.map +0 -0
- {app-rn-runtime → package}/components/input/composite/composite.component.js +0 -0
- {app-rn-runtime → package}/components/input/composite/composite.component.js.map +0 -0
- {app-rn-runtime → package}/components/input/composite/composite.props.js.map +0 -0
- {app-rn-runtime → package}/components/input/composite/composite.styles.js +0 -0
- {app-rn-runtime → package}/components/input/composite/composite.styles.js.map +0 -0
- {app-rn-runtime → package}/components/input/currency/currency.component.js.map +0 -0
- {app-rn-runtime → package}/components/input/currency/currency.props.js.map +0 -0
- {app-rn-runtime → package}/components/input/currency/currency.styles.js +0 -0
- {app-rn-runtime → package}/components/input/currency/currency.styles.js.map +0 -0
- {app-rn-runtime → package}/components/input/epoch/base-datetime.component.js.map +0 -0
- {app-rn-runtime → package}/components/input/epoch/date/date.component.js +0 -0
- {app-rn-runtime → package}/components/input/epoch/date/date.component.js.map +0 -0
- {app-rn-runtime → package}/components/input/epoch/date/date.props.js +0 -0
- {app-rn-runtime → package}/components/input/epoch/date/date.props.js.map +0 -0
- {app-rn-runtime → package}/components/input/epoch/date/date.styles.js +0 -0
- {app-rn-runtime → package}/components/input/epoch/date/date.styles.js.map +0 -0
- {app-rn-runtime → package}/components/input/epoch/datetime/datetime.component.js +0 -0
- {app-rn-runtime → package}/components/input/epoch/datetime/datetime.component.js.map +0 -0
- {app-rn-runtime → package}/components/input/epoch/datetime/datetime.props.js.map +0 -0
- {app-rn-runtime → package}/components/input/epoch/datetime/datetime.styles.js +0 -0
- {app-rn-runtime → package}/components/input/epoch/datetime/datetime.styles.js.map +0 -0
- {app-rn-runtime → package}/components/input/epoch/time/time.component.js +0 -0
- {app-rn-runtime → package}/components/input/epoch/time/time.component.js.map +0 -0
- {app-rn-runtime → package}/components/input/epoch/time/time.props.js.map +0 -0
- {app-rn-runtime → package}/components/input/epoch/time/time.styles.js +0 -0
- {app-rn-runtime → package}/components/input/epoch/time/time.styles.js.map +0 -0
- {app-rn-runtime → package}/components/input/epoch/wheel-date-picker.component.js.map +0 -0
- {app-rn-runtime → package}/components/input/epoch/wheel-time-picker.component.js.map +0 -0
- {app-rn-runtime → package}/components/input/epoch/wheelpicker/wheelpicker.component.js.map +0 -0
- {app-rn-runtime → package}/components/input/epoch/wheelpicker/wheelpicker.props.js.map +0 -0
- {app-rn-runtime → package}/components/input/epoch/wheelpicker/wheelpicker.styles.js +0 -0
- {app-rn-runtime → package}/components/input/epoch/wheelpicker/wheelpicker.styles.js.map +0 -0
- {app-rn-runtime → package}/components/input/epoch/wheelpickermodal/date/date-picker-modal.component.js.map +0 -0
- {app-rn-runtime → package}/components/input/epoch/wheelpickermodal/date/date-picker-modal.props.js.map +0 -0
- {app-rn-runtime → package}/components/input/epoch/wheelpickermodal/styles/datetime-picker-modal.styles.js +0 -0
- {app-rn-runtime → package}/components/input/epoch/wheelpickermodal/styles/datetime-picker-modal.styles.js.map +0 -0
- {app-rn-runtime → package}/components/input/epoch/wheelpickermodal/time/time-picker-modal.component.js.map +0 -0
- {app-rn-runtime → package}/components/input/epoch/wheelpickermodal/time/time-picker-modal.props.js.map +0 -0
- {app-rn-runtime → package}/components/input/fileupload/fileupload.component.js.map +0 -0
- {app-rn-runtime → package}/components/input/fileupload/fileupload.props.js.map +0 -0
- {app-rn-runtime → package}/components/input/fileupload/fileupload.styles.js +0 -0
- {app-rn-runtime → package}/components/input/fileupload/fileupload.styles.js.map +0 -0
- {app-rn-runtime → package}/components/input/number/number.component.js.map +0 -0
- {app-rn-runtime → package}/components/input/number/number.props.js.map +0 -0
- {app-rn-runtime → package}/components/input/number/number.styles.js +0 -0
- {app-rn-runtime → package}/components/input/number/number.styles.js.map +0 -0
- {app-rn-runtime → package}/components/input/radioset/radioset.component.js.map +0 -0
- {app-rn-runtime → package}/components/input/radioset/radioset.props.js.map +0 -0
- {app-rn-runtime → package}/components/input/radioset/radioset.styles.js +0 -0
- {app-rn-runtime → package}/components/input/radioset/radioset.styles.js.map +0 -0
- {app-rn-runtime → package}/components/input/rating/rating.component.js.map +0 -0
- {app-rn-runtime → package}/components/input/rating/rating.props.js.map +0 -0
- {app-rn-runtime → package}/components/input/rating/rating.styles.js +0 -0
- {app-rn-runtime → package}/components/input/rating/rating.styles.js.map +0 -0
- {app-rn-runtime → package}/components/input/select/select.props.js.map +0 -0
- {app-rn-runtime → package}/components/input/slider/slider.props.js.map +0 -0
- {app-rn-runtime → package}/components/input/slider/slider.styles.js +0 -0
- {app-rn-runtime → package}/components/input/slider/slider.styles.js.map +0 -0
- {app-rn-runtime → package}/components/input/switch/switch.component.js.map +0 -0
- {app-rn-runtime → package}/components/input/switch/switch.props.js.map +0 -0
- {app-rn-runtime → package}/components/input/switch/switch.styles.js +0 -0
- {app-rn-runtime → package}/components/input/switch/switch.styles.js.map +0 -0
- {app-rn-runtime → package}/components/input/text/text.component.js.map +0 -0
- {app-rn-runtime → package}/components/input/text/text.props.js.map +0 -0
- {app-rn-runtime → package}/components/input/text/text.styles.js +0 -0
- {app-rn-runtime → package}/components/input/text/text.styles.js.map +0 -0
- {app-rn-runtime → package}/components/input/textarea/textarea.component.js.map +0 -0
- {app-rn-runtime → package}/components/input/textarea/textarea.props.js.map +0 -0
- {app-rn-runtime → package}/components/input/textarea/textarea.styles.js +0 -0
- {app-rn-runtime → package}/components/input/textarea/textarea.styles.js.map +0 -0
- {app-rn-runtime → package}/components/input/toggle/toggle.component.js.map +0 -0
- {app-rn-runtime → package}/components/input/toggle/toggle.props.js.map +0 -0
- {app-rn-runtime → package}/components/input/toggle/toggle.styles.js +0 -0
- {app-rn-runtime → package}/components/input/toggle/toggle.styles.js.map +0 -0
- {app-rn-runtime → package}/components/navigation/appnavbar/appnavbar.component.js.map +0 -0
- {app-rn-runtime → package}/components/navigation/appnavbar/appnavbar.props.js.map +0 -0
- {app-rn-runtime → package}/components/navigation/appnavbar/appnavbar.styles.js +0 -0
- {app-rn-runtime → package}/components/navigation/appnavbar/appnavbar.styles.js.map +0 -0
- {app-rn-runtime → package}/components/navigation/basenav/basenav.component.js.map +0 -0
- {app-rn-runtime → package}/components/navigation/basenav/basenav.props.js.map +0 -0
- {app-rn-runtime → package}/components/navigation/basenav/basenav.styles.js +0 -0
- {app-rn-runtime → package}/components/navigation/basenav/basenav.styles.js.map +0 -0
- {app-rn-runtime → package}/components/navigation/menu/menu.props.js.map +0 -0
- {app-rn-runtime → package}/components/navigation/navbar/navbar.component.js +0 -0
- {app-rn-runtime → package}/components/navigation/navbar/navbar.component.js.map +0 -0
- {app-rn-runtime → package}/components/navigation/navbar/navbar.props.js.map +0 -0
- {app-rn-runtime → package}/components/navigation/navbar/navbar.styles.js +0 -0
- {app-rn-runtime → package}/components/navigation/navbar/navbar.styles.js.map +0 -0
- {app-rn-runtime → package}/components/navigation/navitem/navitem.component.js.map +0 -0
- {app-rn-runtime → package}/components/navigation/navitem/navitem.props.js.map +0 -0
- {app-rn-runtime → package}/components/navigation/navitem/navitem.styles.js +0 -0
- {app-rn-runtime → package}/components/navigation/navitem/navitem.styles.js.map +0 -0
- {app-rn-runtime → package}/components/navigation/popover/popover.props.js.map +0 -0
- {app-rn-runtime → package}/components/navigation/popover/popover.styles.js +0 -0
- {app-rn-runtime → package}/components/navigation/popover/popover.styles.js.map +0 -0
- {app-rn-runtime → package}/components/page/content/content.component.js +0 -0
- {app-rn-runtime → package}/components/page/content/content.component.js.map +0 -0
- {app-rn-runtime → package}/components/page/content/content.props.js +0 -0
- {app-rn-runtime → package}/components/page/content/content.props.js.map +0 -0
- {app-rn-runtime → package}/components/page/content/content.styles.js +0 -0
- {app-rn-runtime → package}/components/page/content/content.styles.js.map +0 -0
- {app-rn-runtime → package}/components/page/left-panel/left-panel.component.js.map +0 -0
- {app-rn-runtime → package}/components/page/left-panel/left-panel.props.js.map +0 -0
- {app-rn-runtime → package}/components/page/left-panel/left-panel.styles.js +0 -0
- {app-rn-runtime → package}/components/page/left-panel/left-panel.styles.js.map +0 -0
- {app-rn-runtime → package}/components/page/page-content/page-content.props.js.map +0 -0
- {app-rn-runtime → package}/components/page/page-content/page-content.styles.js +0 -0
- {app-rn-runtime → package}/components/page/page-content/page-content.styles.js.map +0 -0
- {app-rn-runtime → package}/components/page/page.component.js.map +0 -0
- {app-rn-runtime → package}/components/page/page.props.js +0 -0
- {app-rn-runtime → package}/components/page/page.props.js.map +0 -0
- {app-rn-runtime → package}/components/page/page.styles.js +0 -0
- {app-rn-runtime → package}/components/page/page.styles.js.map +0 -0
- {app-rn-runtime → package}/components/page/partial/partial.component.js +0 -0
- {app-rn-runtime → package}/components/page/partial/partial.component.js.map +0 -0
- {app-rn-runtime → package}/components/page/partial/partial.props.js +0 -0
- {app-rn-runtime → package}/components/page/partial/partial.props.js.map +0 -0
- {app-rn-runtime → package}/components/page/partial/partial.styles.js +0 -0
- {app-rn-runtime → package}/components/page/partial/partial.styles.js.map +0 -0
- {app-rn-runtime → package}/components/page/partial-container/partial-container.component.js +0 -0
- {app-rn-runtime → package}/components/page/partial-container/partial-container.component.js.map +0 -0
- {app-rn-runtime → package}/components/page/partial-container/partial-container.props.js.map +0 -0
- {app-rn-runtime → package}/components/page/partial-container/partial-container.styles.js +0 -0
- {app-rn-runtime → package}/components/page/partial-container/partial-container.styles.js.map +0 -0
- {app-rn-runtime → package}/components/page/tabbar/curve.js +0 -0
- {app-rn-runtime → package}/components/page/tabbar/curve.js.map +0 -0
- {app-rn-runtime → package}/components/page/tabbar/tabbar.props.js.map +0 -0
- {app-rn-runtime → package}/components/page/tabbar/tabbar.styles.js +0 -0
- {app-rn-runtime → package}/components/page/tabbar/tabbar.styles.js.map +0 -0
- {app-rn-runtime → package}/components/prefab/prefab-container.component.js +0 -0
- {app-rn-runtime → package}/components/prefab/prefab-container.component.js.map +0 -0
- {app-rn-runtime → package}/components/prefab/prefab-container.props.js +0 -0
- {app-rn-runtime → package}/components/prefab/prefab-container.props.js.map +0 -0
- {app-rn-runtime → package}/components/prefab/prefab-container.styles.js +0 -0
- {app-rn-runtime → package}/components/prefab/prefab-container.styles.js.map +0 -0
- {app-rn-runtime → package}/core/AppConfig.js +0 -0
- {app-rn-runtime → package}/core/AppConfig.js.map +0 -0
- {app-rn-runtime → package}/core/accessibility.js +0 -0
- {app-rn-runtime → package}/core/accessibility.js.map +0 -0
- {app-rn-runtime → package}/core/asset.provider.js +0 -0
- {app-rn-runtime → package}/core/asset.provider.js.map +0 -0
- {app-rn-runtime → package}/core/components/floatinglabel.component.js +0 -0
- {app-rn-runtime → package}/core/components/floatinglabel.component.js.map +0 -0
- {app-rn-runtime → package}/core/components/textinput.component.js.map +0 -0
- {app-rn-runtime → package}/core/constant.service.js.map +0 -0
- {app-rn-runtime → package}/core/constants/currency-constants.js +0 -0
- {app-rn-runtime → package}/core/constants/currency-constants.js.map +0 -0
- {app-rn-runtime → package}/core/currency-constants.js +0 -0
- {app-rn-runtime → package}/core/currency-constants.js.map +0 -0
- {app-rn-runtime → package}/core/device/calendar-service.js +0 -0
- {app-rn-runtime → package}/core/device/calendar-service.js.map +0 -0
- {app-rn-runtime → package}/core/device/camera-service.js +0 -0
- {app-rn-runtime → package}/core/device/camera-service.js.map +0 -0
- {app-rn-runtime → package}/core/device/contacts-service.js +0 -0
- {app-rn-runtime → package}/core/device/contacts-service.js.map +0 -0
- {app-rn-runtime → package}/core/device/location-service.js +0 -0
- {app-rn-runtime → package}/core/device/location-service.js.map +0 -0
- {app-rn-runtime → package}/core/device/scan-service.js +0 -0
- {app-rn-runtime → package}/core/device/scan-service.js.map +0 -0
- {app-rn-runtime → package}/core/display.manager.js +0 -0
- {app-rn-runtime → package}/core/display.manager.js.map +0 -0
- {app-rn-runtime → package}/core/event-notifier.js.map +0 -0
- {app-rn-runtime → package}/core/file-extension-types.js +0 -0
- {app-rn-runtime → package}/core/file-extension-types.js.map +0 -0
- {app-rn-runtime → package}/core/fixed-view.component.js.map +0 -0
- {app-rn-runtime → package}/core/formatters.js +0 -0
- {app-rn-runtime → package}/core/formatters.js.map +0 -0
- {app-rn-runtime → package}/core/i18n.service.js +0 -0
- {app-rn-runtime → package}/core/i18n.service.js.map +0 -0
- {app-rn-runtime → package}/core/if.component.js +0 -0
- {app-rn-runtime → package}/core/if.component.js.map +0 -0
- {app-rn-runtime → package}/core/imageSizeEstimator.js.map +0 -0
- {app-rn-runtime → package}/core/injector.js +0 -0
- {app-rn-runtime → package}/core/injector.js.map +0 -0
- {app-rn-runtime → package}/core/key.extractor.js.map +0 -0
- {app-rn-runtime → package}/core/logger.js.map +0 -0
- {app-rn-runtime → package}/core/modal.service.js +0 -0
- {app-rn-runtime → package}/core/modal.service.js.map +0 -0
- {app-rn-runtime → package}/core/navigation.service.js +0 -0
- {app-rn-runtime → package}/core/navigation.service.js.map +0 -0
- {app-rn-runtime → package}/core/network.service.js.map +0 -0
- {app-rn-runtime → package}/core/partial.service.js +0 -0
- {app-rn-runtime → package}/core/partial.service.js.map +0 -0
- {app-rn-runtime → package}/core/props.provider.js.map +0 -0
- {app-rn-runtime → package}/core/scroll-view.component.js.map +0 -0
- {app-rn-runtime → package}/core/security.service.js +0 -0
- {app-rn-runtime → package}/core/security.service.js.map +0 -0
- {app-rn-runtime → package}/core/spinner.service.js +0 -0
- {app-rn-runtime → package}/core/spinner.service.js.map +0 -0
- {app-rn-runtime → package}/core/storage.service.js.map +0 -0
- {app-rn-runtime → package}/core/tappable.component.js.map +0 -0
- {app-rn-runtime → package}/core/testid.provider.js +0 -0
- {app-rn-runtime → package}/core/testid.provider.js.map +0 -0
- {app-rn-runtime → package}/core/toast.service.js +0 -0
- {app-rn-runtime → package}/core/toast.service.js.map +0 -0
- {app-rn-runtime → package}/core/ui-preferences.context.js +0 -0
- {app-rn-runtime → package}/core/ui-preferences.context.js.map +0 -0
- {app-rn-runtime → package}/core/viewport.js.map +0 -0
- {app-rn-runtime → package}/core/wm-component-tree.js.map +0 -0
- {app-rn-runtime → package}/gestures/swipe.animation.js.map +0 -0
- {app-rn-runtime → package}/index.js +0 -0
- {app-rn-runtime → package}/index.js.map +0 -0
- {app-rn-runtime → package}/runtime/App.navigator.js +0 -0
- {app-rn-runtime → package}/runtime/App.navigator.js.map +0 -0
- {app-rn-runtime → package}/runtime/base-partial.component.js.map +0 -0
- {app-rn-runtime → package}/runtime/base-prefab.component.js.map +0 -0
- {app-rn-runtime → package}/runtime/lib-patch.js +0 -0
- {app-rn-runtime → package}/runtime/lib-patch.js.map +0 -0
- {app-rn-runtime → package}/runtime/memo.component.js.map +0 -0
- {app-rn-runtime → package}/runtime/navigator/drawer.navigator.js +0 -0
- {app-rn-runtime → package}/runtime/navigator/drawer.navigator.js.map +0 -0
- {app-rn-runtime → package}/runtime/navigator/stack.navigator.js.map +0 -0
- {app-rn-runtime → package}/runtime/platform.api.js +0 -0
- {app-rn-runtime → package}/runtime/platform.api.js.map +0 -0
- {app-rn-runtime → package}/runtime/services/app-display-manager.service.js.map +0 -0
- {app-rn-runtime → package}/runtime/services/app-modal.service.js.map +0 -0
- {app-rn-runtime → package}/runtime/services/app-security.service.js.map +0 -0
- {app-rn-runtime → package}/runtime/services/app-spinner.service.js.map +0 -0
- {app-rn-runtime → package}/runtime/services/app-toast.service.js.map +0 -0
- {app-rn-runtime → package}/runtime/services/device/calendar-service.js +0 -0
- {app-rn-runtime → package}/runtime/services/device/calendar-service.js.map +0 -0
- {app-rn-runtime → package}/runtime/services/device/camera-service.js.map +0 -0
- {app-rn-runtime → package}/runtime/services/device/contacts-service.js +0 -0
- {app-rn-runtime → package}/runtime/services/device/contacts-service.js.map +0 -0
- {app-rn-runtime → package}/runtime/services/device/location-service.js +0 -0
- {app-rn-runtime → package}/runtime/services/device/location-service.js.map +0 -0
- {app-rn-runtime → package}/runtime/services/device/permissions.js +0 -0
- {app-rn-runtime → package}/runtime/services/device/permissions.js.map +0 -0
- {app-rn-runtime → package}/runtime/services/device/scan-service.js.map +0 -0
- {app-rn-runtime → package}/runtime/services/partial.service.js +0 -0
- {app-rn-runtime → package}/runtime/services/partial.service.js.map +0 -0
- {app-rn-runtime → package}/runtime/services/webprocess.service.js.map +0 -0
- {app-rn-runtime → package}/runtime/watcher.js.map +0 -0
- {app-rn-runtime → package}/styles/MediaQueryList.js +0 -0
- {app-rn-runtime → package}/styles/MediaQueryList.js.map +0 -0
- {app-rn-runtime → package}/styles/style-prop.validator.js +0 -0
- {app-rn-runtime → package}/styles/style-prop.validator.js.map +0 -0
- {app-rn-runtime → package}/styles/style-props.js.map +0 -0
- {app-rn-runtime → package}/styles/theme.js.map +0 -0
- {app-rn-runtime → package}/variables/base-variable.js.map +0 -0
- {app-rn-runtime → package}/variables/device/calendar/create-event.operation.js +0 -0
- {app-rn-runtime → package}/variables/device/calendar/create-event.operation.js.map +0 -0
- {app-rn-runtime → package}/variables/device/calendar/delete-event.operation.js +0 -0
- {app-rn-runtime → package}/variables/device/calendar/delete-event.operation.js.map +0 -0
- {app-rn-runtime → package}/variables/device/calendar/get-events.operation.js +0 -0
- {app-rn-runtime → package}/variables/device/calendar/get-events.operation.js.map +0 -0
- {app-rn-runtime → package}/variables/device/camera/capture-image.operation.js +0 -0
- {app-rn-runtime → package}/variables/device/camera/capture-image.operation.js.map +0 -0
- {app-rn-runtime → package}/variables/device/camera/capture-video.operation.js +0 -0
- {app-rn-runtime → package}/variables/device/camera/capture-video.operation.js.map +0 -0
- {app-rn-runtime → package}/variables/device/contacts/get-contacts.operation.js +0 -0
- {app-rn-runtime → package}/variables/device/contacts/get-contacts.operation.js.map +0 -0
- {app-rn-runtime → package}/variables/device/device/app-info.operation.js +0 -0
- {app-rn-runtime → package}/variables/device/device/app-info.operation.js.map +0 -0
- {app-rn-runtime → package}/variables/device/device/current-geo-position.operation.js +0 -0
- {app-rn-runtime → package}/variables/device/device/current-geo-position.operation.js.map +0 -0
- {app-rn-runtime → package}/variables/device/device/device-info.operation.js +0 -0
- {app-rn-runtime → package}/variables/device/device/device-info.operation.js.map +0 -0
- {app-rn-runtime → package}/variables/device/device/network-info.operation.js.map +0 -0
- {app-rn-runtime → package}/variables/device/device/vibrate.operation.js +0 -0
- {app-rn-runtime → package}/variables/device/device/vibrate.operation.js.map +0 -0
- {app-rn-runtime → package}/variables/device/file/upload-file.operation.js +0 -0
- {app-rn-runtime → package}/variables/device/file/upload-file.operation.js.map +0 -0
- {app-rn-runtime → package}/variables/device/operation.provider.js +0 -0
- {app-rn-runtime → package}/variables/device/operation.provider.js.map +0 -0
- {app-rn-runtime → package}/variables/device/scan/scan.operation.js +0 -0
- {app-rn-runtime → package}/variables/device/scan/scan.operation.js.map +0 -0
- {app-rn-runtime → package}/variables/device-variable.js +0 -0
- {app-rn-runtime → package}/variables/device-variable.js.map +0 -0
- {app-rn-runtime → package}/variables/http.service.js +0 -0
- {app-rn-runtime → package}/variables/http.service.js.map +0 -0
- {app-rn-runtime → package}/variables/live-variable.js.map +0 -0
- {app-rn-runtime → package}/variables/model-variable.js.map +0 -0
- {app-rn-runtime → package}/variables/service-variable.js.map +0 -0
- {app-rn-runtime → package}/variables/utils/dataset-util.js +0 -0
- {app-rn-runtime → package}/variables/utils/dataset-util.js.map +0 -0
- {app-rn-runtime → package}/variables/utils/inflight-queue.js.map +0 -0
- {app-rn-runtime → package}/variables/utils/variable.constants.js +0 -0
- {app-rn-runtime → package}/variables/utils/variable.constants.js.map +0 -0
- {app-rn-runtime → package}/variables/utils/variable.utils.js +0 -0
- {app-rn-runtime → package}/variables/utils/variable.utils.js.map +0 -0
@@ -0,0 +1,133 @@
|
|
1
|
+
import BASE_THEME from '@wavemaker/app-rn-runtime/styles/theme';
|
2
|
+
import { deepCopy } from '@wavemaker/app-rn-runtime/core/utils';
|
3
|
+
import { defineStyles } from '@wavemaker/app-rn-runtime/core/base.component';
|
4
|
+
export const DEFAULT_CLASS = 'app-label';
|
5
|
+
BASE_THEME.registerStyle((themeVariables, addStyle) => {
|
6
|
+
const defaultStyles = defineStyles({
|
7
|
+
root: {
|
8
|
+
alignSelf: 'flex-start'
|
9
|
+
},
|
10
|
+
text: {
|
11
|
+
fontSize: 16,
|
12
|
+
color: themeVariables.labelDefaultColor
|
13
|
+
},
|
14
|
+
asterisk: {
|
15
|
+
color: themeVariables.labelAsteriskColor,
|
16
|
+
marginLeft: 2
|
17
|
+
},
|
18
|
+
skeleton: {
|
19
|
+
root: {
|
20
|
+
width: '100%',
|
21
|
+
height: 16,
|
22
|
+
borderRadius: 4
|
23
|
+
}
|
24
|
+
},
|
25
|
+
link: {
|
26
|
+
text: {
|
27
|
+
textDecorationLine: 'underline'
|
28
|
+
}
|
29
|
+
}
|
30
|
+
});
|
31
|
+
addStyle(DEFAULT_CLASS, '', defaultStyles);
|
32
|
+
addStyle(DEFAULT_CLASS + '-rtl', '', {
|
33
|
+
root: {
|
34
|
+
flexDirection: 'row',
|
35
|
+
textAlign: 'right'
|
36
|
+
}
|
37
|
+
});
|
38
|
+
const getLabelStyles = (color, textColor) => {
|
39
|
+
return {
|
40
|
+
root: {
|
41
|
+
backgroundColor: color,
|
42
|
+
paddingLeft: 32,
|
43
|
+
paddingTop: 16,
|
44
|
+
paddingRight: 32,
|
45
|
+
paddingBottom: 16,
|
46
|
+
borderRadius: 6
|
47
|
+
},
|
48
|
+
text: {
|
49
|
+
color: textColor,
|
50
|
+
fontWeight: 'bold'
|
51
|
+
}
|
52
|
+
};
|
53
|
+
};
|
54
|
+
addStyle('label-danger', '', getLabelStyles(themeVariables.labelDangerColor, themeVariables.labelDangerContrastColor));
|
55
|
+
addStyle('label-default', '', getLabelStyles(themeVariables.labelDefaultColor, themeVariables.labelDefaultContrastColor));
|
56
|
+
addStyle('label-info', '', getLabelStyles(themeVariables.labelInfoColor, themeVariables.labelInfoContrastColor));
|
57
|
+
addStyle('label-primary', '', getLabelStyles(themeVariables.labelPrimaryColor, themeVariables.labelPrimaryContrastColor));
|
58
|
+
addStyle('label-success', '', getLabelStyles(themeVariables.labelSuccessColor, themeVariables.labelSuccessContrastColor));
|
59
|
+
addStyle('label-warning', '', getLabelStyles(themeVariables.labelWarningColor, themeVariables.labelWarningContrastColor));
|
60
|
+
addStyle('label-test', '', getLabelStyles('yellow', 'red'));
|
61
|
+
addStyle('label-test1', '', getLabelStyles('blue', 'orange'));
|
62
|
+
addStyle('label-test111', '', getLabelStyles('grey', 'red'));
|
63
|
+
addStyle('label-test11112', '', getLabelStyles('green', 'yellow'));
|
64
|
+
addStyle('label-test12311', '', getLabelStyles('violet', 'pink'));
|
65
|
+
addStyle('label-test9', '', getLabelStyles('green', 'blue'));
|
66
|
+
const getTextStyles = color => {
|
67
|
+
return {
|
68
|
+
text: {
|
69
|
+
color: color
|
70
|
+
}
|
71
|
+
};
|
72
|
+
};
|
73
|
+
addStyle('text-danger', '', getTextStyles(themeVariables.labelTextDangerColor));
|
74
|
+
addStyle('text-info', '', getTextStyles(themeVariables.labelTextInfoColor));
|
75
|
+
addStyle('text-primary', '', getTextStyles(themeVariables.labelTextPrimaryColor));
|
76
|
+
addStyle('text-success', '', getTextStyles(themeVariables.labelTextSuccessColor));
|
77
|
+
addStyle('text-warning', '', getTextStyles(themeVariables.labelTextWarningColor));
|
78
|
+
addStyle('text-center', '', {
|
79
|
+
root: {
|
80
|
+
textAlign: 'center'
|
81
|
+
}
|
82
|
+
});
|
83
|
+
addStyle('text-left', '', {
|
84
|
+
root: {
|
85
|
+
textAlign: 'left'
|
86
|
+
}
|
87
|
+
});
|
88
|
+
addStyle('text-right', '', {
|
89
|
+
root: {
|
90
|
+
textAlign: 'right'
|
91
|
+
}
|
92
|
+
});
|
93
|
+
const getHeadingStyles = (fontSize, overrides) => {
|
94
|
+
return deepCopy({
|
95
|
+
text: {
|
96
|
+
fontWeight: '400',
|
97
|
+
fontSize: fontSize,
|
98
|
+
margin: 4,
|
99
|
+
color: themeVariables.labelHeaderColor
|
100
|
+
}
|
101
|
+
}, overrides);
|
102
|
+
};
|
103
|
+
addStyle('h1', '', getHeadingStyles(themeVariables.heading1FontSize, {
|
104
|
+
text: {
|
105
|
+
fontWeight: 'bold'
|
106
|
+
}
|
107
|
+
}));
|
108
|
+
addStyle('h2', '', getHeadingStyles(themeVariables.heading2FontSize, {
|
109
|
+
text: {
|
110
|
+
fontWeight: '500'
|
111
|
+
}
|
112
|
+
}));
|
113
|
+
addStyle('h3', '', getHeadingStyles(themeVariables.heading3FontSize));
|
114
|
+
addStyle('h4', '', getHeadingStyles(themeVariables.heading4FontSize));
|
115
|
+
addStyle('h5', '', getHeadingStyles(themeVariables.heading5FontSize));
|
116
|
+
addStyle('h6', '', getHeadingStyles(themeVariables.heading6FontSize));
|
117
|
+
addStyle('media-heading', '', {
|
118
|
+
text: {
|
119
|
+
fontSize: 16
|
120
|
+
}
|
121
|
+
});
|
122
|
+
addStyle('text-muted', '', {
|
123
|
+
text: {
|
124
|
+
color: themeVariables.labelTextMutedColor
|
125
|
+
}
|
126
|
+
});
|
127
|
+
addStyle('p', '', {
|
128
|
+
text: {
|
129
|
+
fontSize: 12
|
130
|
+
}
|
131
|
+
});
|
132
|
+
});
|
133
|
+
//# sourceMappingURL=label.styles.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"names":["BASE_THEME","deepCopy","defineStyles","DEFAULT_CLASS","registerStyle","themeVariables","addStyle","defaultStyles","root","alignSelf","text","fontSize","color","labelDefaultColor","asterisk","labelAsteriskColor","marginLeft","skeleton","width","height","borderRadius","link","textDecorationLine","flexDirection","textAlign","getLabelStyles","textColor","backgroundColor","paddingLeft","paddingTop","paddingRight","paddingBottom","fontWeight","labelDangerColor","labelDangerContrastColor","labelDefaultContrastColor","labelInfoColor","labelInfoContrastColor","labelPrimaryColor","labelPrimaryContrastColor","labelSuccessColor","labelSuccessContrastColor","labelWarningColor","labelWarningContrastColor","getTextStyles","labelTextDangerColor","labelTextInfoColor","labelTextPrimaryColor","labelTextSuccessColor","labelTextWarningColor","getHeadingStyles","overrides","margin","labelHeaderColor","heading1FontSize","heading2FontSize","heading3FontSize","heading4FontSize","heading5FontSize","heading6FontSize","labelTextMutedColor"],"sources":["label.styles.ts"],"sourcesContent":["import BASE_THEME, { AllStyle } from '@wavemaker/app-rn-runtime/styles/theme';\nimport { deepCopy } from '@wavemaker/app-rn-runtime/core/utils';\nimport { BaseStyles, defineStyles } from '@wavemaker/app-rn-runtime/core/base.component';\nimport { WmSkeletonStyles } from '../skeleton/skeleton.styles';\nimport { WmAnchorStyles } from '../anchor/anchor.styles';\n\nexport type WmLabelStyles = BaseStyles & {\n asterisk: AllStyle,\n skeleton: WmSkeletonStyles \n link: WmAnchorStyles\n};\n\nexport const DEFAULT_CLASS = 'app-label';\nBASE_THEME.registerStyle((themeVariables, addStyle) => {\n const defaultStyles: WmLabelStyles = defineStyles({\n root: {\n alignSelf: 'flex-start',\n },\n text: {\n fontSize: 16,\n color: themeVariables.labelDefaultColor\n },\n asterisk: {\n color: themeVariables.labelAsteriskColor,\n marginLeft: 2\n },\n skeleton: {\n root:{\n width: '100%',\n height: 16,\n borderRadius: 4,\n }\n } as any as WmSkeletonStyles,\n link: {\n text: {\n textDecorationLine: 'underline'\n }\n } as WmAnchorStyles\n });\n\n addStyle(DEFAULT_CLASS, '', defaultStyles);\n addStyle(DEFAULT_CLASS + '-rtl', '', {\n root : {\n flexDirection: 'row',\n textAlign: 'right'\n }\n });\n const getLabelStyles = (color: string, textColor: string): WmLabelStyles => {\n return {\n root: {\n backgroundColor: color,\n paddingLeft: 32,\n paddingTop: 16,\n paddingRight: 32,\n paddingBottom: 16,\n borderRadius: 6\n },\n text: {\n color: textColor,\n fontWeight: 'bold'\n }\n } as WmLabelStyles;\n };\n\n addStyle('label-danger', '', getLabelStyles(themeVariables.labelDangerColor, themeVariables.labelDangerContrastColor));\n addStyle('label-default', '', getLabelStyles(themeVariables.labelDefaultColor, themeVariables.labelDefaultContrastColor));\n addStyle('label-info', '', getLabelStyles(themeVariables.labelInfoColor, themeVariables.labelInfoContrastColor));\n addStyle('label-primary', '', getLabelStyles(themeVariables.labelPrimaryColor, themeVariables.labelPrimaryContrastColor));\n addStyle('label-success', '', getLabelStyles(themeVariables.labelSuccessColor, themeVariables.labelSuccessContrastColor));\n addStyle('label-warning', '', getLabelStyles(themeVariables.labelWarningColor, themeVariables.labelWarningContrastColor));\n addStyle('label-test', '', getLabelStyles('yellow', 'red'));\n addStyle('label-test1', '', getLabelStyles('blue', 'orange'));\n addStyle('label-test111', '', getLabelStyles('grey', 'red'));\n addStyle('label-test11112', '', getLabelStyles('green', 'yellow'));\n addStyle('label-test12311', '', getLabelStyles('violet', 'pink'));\n addStyle('label-test9', '', getLabelStyles('green', 'blue'));\n\n const getTextStyles = (color: string) => {\n return {\n text: {\n color: color\n }\n } as WmLabelStyles;\n };\n\n addStyle('text-danger', '', getTextStyles(themeVariables.labelTextDangerColor));\n addStyle('text-info', '', getTextStyles(themeVariables.labelTextInfoColor));\n addStyle('text-primary', '', getTextStyles(themeVariables.labelTextPrimaryColor));\n addStyle('text-success', '', getTextStyles(themeVariables.labelTextSuccessColor));\n addStyle('text-warning', '', getTextStyles(themeVariables.labelTextWarningColor));\n addStyle('text-center', '', {\n root: {\n textAlign: 'center'\n }\n } as WmLabelStyles);\n addStyle('text-left', '', {\n root: {\n textAlign: 'left'\n }\n } as WmLabelStyles);\n addStyle('text-right', '', {\n root: {\n textAlign: 'right'\n }\n } as WmLabelStyles);\n\n\n const getHeadingStyles = (fontSize: number, overrides?: WmLabelStyles) => {\n return deepCopy({\n text: {\n fontWeight: '400',\n fontSize: fontSize,\n margin: 4,\n color: themeVariables.labelHeaderColor\n }\n } as WmLabelStyles, overrides);\n };\n addStyle('h1', '', getHeadingStyles(themeVariables.heading1FontSize, {text: {fontWeight: 'bold'}} as WmLabelStyles));\n addStyle('h2', '', getHeadingStyles(themeVariables.heading2FontSize, {text: {fontWeight: '500'}} as WmLabelStyles));\n addStyle('h3', '', getHeadingStyles(themeVariables.heading3FontSize));\n addStyle('h4', '', getHeadingStyles(themeVariables.heading4FontSize));\n addStyle('h5', '', getHeadingStyles(themeVariables.heading5FontSize));\n addStyle('h6', '', getHeadingStyles(themeVariables.heading6FontSize));\n addStyle('media-heading', '', {\n text : {\n fontSize: 16\n }\n } as WmLabelStyles);\n addStyle('text-muted', '', {\n text : {\n color: themeVariables.labelTextMutedColor\n }\n } as WmLabelStyles);\n addStyle('p', '', {\n text : {\n fontSize: 12\n }\n } as WmLabelStyles);\n});\n"],"mappings":"AAAA,OAAOA,UAAU,MAAqB,wCAAwC;AAC9E,SAASC,QAAQ,QAAQ,sCAAsC;AAC/D,SAAqBC,YAAY,QAAQ,+CAA+C;AAUxF,OAAO,MAAMC,aAAa,GAAG,WAAW;AACxCH,UAAU,CAACI,aAAa,CAAC,CAACC,cAAc,EAAEC,QAAQ,KAAK;EACrD,MAAMC,aAA4B,GAAGL,YAAY,CAAC;IAChDM,IAAI,EAAE;MACJC,SAAS,EAAE;IACb,CAAC;IACDC,IAAI,EAAE;MACFC,QAAQ,EAAE,EAAE;MACZC,KAAK,EAAEP,cAAc,CAACQ;IACxB,CAAC;IACDC,QAAQ,EAAE;MACRF,KAAK,EAAEP,cAAc,CAACU,kBAAkB;MACxCC,UAAU,EAAE;IACd,CAAC;IACDC,QAAQ,EAAE;MACRT,IAAI,EAAC;QACHU,KAAK,EAAE,MAAM;QACbC,MAAM,EAAE,EAAE;QACVC,YAAY,EAAE;MAChB;IACF,CAA4B;IAC5BC,IAAI,EAAE;MACJX,IAAI,EAAE;QACJY,kBAAkB,EAAE;MACtB;IACF;EACJ,CAAC,CAAC;EAEFhB,QAAQ,CAACH,aAAa,EAAE,EAAE,EAAEI,aAAa,CAAC;EAC1CD,QAAQ,CAACH,aAAa,GAAG,MAAM,EAAE,EAAE,EAAE;IACnCK,IAAI,EAAG;MACLe,aAAa,EAAE,KAAK;MACpBC,SAAS,EAAE;IACb;EACF,CAAC,CAAC;EACF,MAAMC,cAAc,GAAGA,CAACb,KAAa,EAAEc,SAAiB,KAAoB;IAC1E,OAAO;MACLlB,IAAI,EAAE;QACJmB,eAAe,EAAEf,KAAK;QACtBgB,WAAW,EAAE,EAAE;QACfC,UAAU,EAAE,EAAE;QACdC,YAAY,EAAE,EAAE;QAChBC,aAAa,EAAE,EAAE;QACjBX,YAAY,EAAE;MAChB,CAAC;MACDV,IAAI,EAAE;QACJE,KAAK,EAAEc,SAAS;QAChBM,UAAU,EAAE;MACd;IACF,CAAC;EACH,CAAC;EAED1B,QAAQ,CAAC,cAAc,EAAE,EAAE,EAAEmB,cAAc,CAACpB,cAAc,CAAC4B,gBAAgB,EAAE5B,cAAc,CAAC6B,wBAAwB,CAAC,CAAC;EACtH5B,QAAQ,CAAC,eAAe,EAAE,EAAE,EAAEmB,cAAc,CAACpB,cAAc,CAACQ,iBAAiB,EAAER,cAAc,CAAC8B,yBAAyB,CAAC,CAAC;EACzH7B,QAAQ,CAAC,YAAY,EAAE,EAAE,EAAEmB,cAAc,CAACpB,cAAc,CAAC+B,cAAc,EAAE/B,cAAc,CAACgC,sBAAsB,CAAC,CAAC;EAChH/B,QAAQ,CAAC,eAAe,EAAE,EAAE,EAAEmB,cAAc,CAACpB,cAAc,CAACiC,iBAAiB,EAAEjC,cAAc,CAACkC,yBAAyB,CAAC,CAAC;EACzHjC,QAAQ,CAAC,eAAe,EAAE,EAAE,EAAEmB,cAAc,CAACpB,cAAc,CAACmC,iBAAiB,EAAEnC,cAAc,CAACoC,yBAAyB,CAAC,CAAC;EACzHnC,QAAQ,CAAC,eAAe,EAAE,EAAE,EAAEmB,cAAc,CAACpB,cAAc,CAACqC,iBAAiB,EAAErC,cAAc,CAACsC,yBAAyB,CAAC,CAAC;EACzHrC,QAAQ,CAAC,YAAY,EAAE,EAAE,EAAEmB,cAAc,CAAC,QAAQ,EAAE,KAAK,CAAC,CAAC;EAC3DnB,QAAQ,CAAC,aAAa,EAAE,EAAE,EAAEmB,cAAc,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;EAC7DnB,QAAQ,CAAC,eAAe,EAAE,EAAE,EAAEmB,cAAc,CAAC,MAAM,EAAE,KAAK,CAAC,CAAC;EAC5DnB,QAAQ,CAAC,iBAAiB,EAAE,EAAE,EAAEmB,cAAc,CAAC,OAAO,EAAE,QAAQ,CAAC,CAAC;EAClEnB,QAAQ,CAAC,iBAAiB,EAAE,EAAE,EAAEmB,cAAc,CAAC,QAAQ,EAAE,MAAM,CAAC,CAAC;EACjEnB,QAAQ,CAAC,aAAa,EAAE,EAAE,EAAEmB,cAAc,CAAC,OAAO,EAAE,MAAM,CAAC,CAAC;EAE5D,MAAMmB,aAAa,GAAIhC,KAAa,IAAK;IACvC,OAAO;MACLF,IAAI,EAAE;QACJE,KAAK,EAAEA;MACT;IACF,CAAC;EACH,CAAC;EAEDN,QAAQ,CAAC,aAAa,EAAE,EAAE,EAAEsC,aAAa,CAACvC,cAAc,CAACwC,oBAAoB,CAAC,CAAC;EAC/EvC,QAAQ,CAAC,WAAW,EAAE,EAAE,EAAEsC,aAAa,CAACvC,cAAc,CAACyC,kBAAkB,CAAC,CAAC;EAC3ExC,QAAQ,CAAC,cAAc,EAAE,EAAE,EAAEsC,aAAa,CAACvC,cAAc,CAAC0C,qBAAqB,CAAC,CAAC;EACjFzC,QAAQ,CAAC,cAAc,EAAE,EAAE,EAAEsC,aAAa,CAACvC,cAAc,CAAC2C,qBAAqB,CAAC,CAAC;EACjF1C,QAAQ,CAAC,cAAc,EAAE,EAAE,EAAEsC,aAAa,CAACvC,cAAc,CAAC4C,qBAAqB,CAAC,CAAC;EACjF3C,QAAQ,CAAC,aAAa,EAAE,EAAE,EAAE;IAC1BE,IAAI,EAAE;MACJgB,SAAS,EAAE;IACb;EACF,CAAkB,CAAC;EACnBlB,QAAQ,CAAC,WAAW,EAAE,EAAE,EAAE;IACxBE,IAAI,EAAE;MACJgB,SAAS,EAAE;IACb;EACF,CAAkB,CAAC;EACnBlB,QAAQ,CAAC,YAAY,EAAE,EAAE,EAAE;IACzBE,IAAI,EAAE;MACJgB,SAAS,EAAE;IACb;EACF,CAAkB,CAAC;EAGnB,MAAM0B,gBAAgB,GAAGA,CAACvC,QAAgB,EAAEwC,SAAyB,KAAK;IACxE,OAAOlD,QAAQ,CAAC;MACdS,IAAI,EAAE;QACJsB,UAAU,EAAE,KAAK;QACjBrB,QAAQ,EAAEA,QAAQ;QAClByC,MAAM,EAAE,CAAC;QACTxC,KAAK,EAAEP,cAAc,CAACgD;MACxB;IACF,CAAC,EAAmBF,SAAS,CAAC;EAChC,CAAC;EACD7C,QAAQ,CAAC,IAAI,EAAE,EAAE,EAAE4C,gBAAgB,CAAC7C,cAAc,CAACiD,gBAAgB,EAAE;IAAC5C,IAAI,EAAE;MAACsB,UAAU,EAAE;IAAM;EAAC,CAAkB,CAAC,CAAC;EACpH1B,QAAQ,CAAC,IAAI,EAAE,EAAE,EAAE4C,gBAAgB,CAAC7C,cAAc,CAACkD,gBAAgB,EAAE;IAAC7C,IAAI,EAAE;MAACsB,UAAU,EAAE;IAAK;EAAC,CAAkB,CAAC,CAAC;EACnH1B,QAAQ,CAAC,IAAI,EAAE,EAAE,EAAE4C,gBAAgB,CAAC7C,cAAc,CAACmD,gBAAgB,CAAC,CAAC;EACrElD,QAAQ,CAAC,IAAI,EAAE,EAAE,EAAE4C,gBAAgB,CAAC7C,cAAc,CAACoD,gBAAgB,CAAC,CAAC;EACrEnD,QAAQ,CAAC,IAAI,EAAE,EAAE,EAAE4C,gBAAgB,CAAC7C,cAAc,CAACqD,gBAAgB,CAAC,CAAC;EACrEpD,QAAQ,CAAC,IAAI,EAAE,EAAE,EAAE4C,gBAAgB,CAAC7C,cAAc,CAACsD,gBAAgB,CAAC,CAAC;EACrErD,QAAQ,CAAC,eAAe,EAAE,EAAE,EAAE;IAC5BI,IAAI,EAAG;MACLC,QAAQ,EAAE;IACZ;EACF,CAAkB,CAAC;EACnBL,QAAQ,CAAC,YAAY,EAAE,EAAE,EAAE;IACzBI,IAAI,EAAG;MACLE,KAAK,EAAEP,cAAc,CAACuD;IACxB;EACF,CAAkB,CAAC;EACnBtD,QAAQ,CAAC,GAAG,EAAE,EAAE,EAAE;IAChBI,IAAI,EAAG;MACLC,QAAQ,EAAE;IACZ;EACF,CAAkB,CAAC;AACrB,CAAC,CAAC","ignoreList":[]}
|
@@ -0,0 +1,138 @@
|
|
1
|
+
function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
|
2
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
|
3
|
+
function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
4
|
+
import React from 'react';
|
5
|
+
import axios from 'axios';
|
6
|
+
import { Platform, View } from 'react-native';
|
7
|
+
import LottieView from 'lottie-react-native';
|
8
|
+
import { BaseComponent, BaseComponentState } from '@wavemaker/app-rn-runtime/core/base.component';
|
9
|
+
import WmLottieProps from './lottie.props';
|
10
|
+
import { DEFAULT_CLASS } from './lottie.styles';
|
11
|
+
export class WmLottieState extends BaseComponentState {
|
12
|
+
constructor(...args) {
|
13
|
+
super(...args);
|
14
|
+
_defineProperty(this, "animationData", void 0);
|
15
|
+
_defineProperty(this, "isCompleted", false);
|
16
|
+
}
|
17
|
+
}
|
18
|
+
export default class WmLottie extends BaseComponent {
|
19
|
+
constructor(props) {
|
20
|
+
super(props, DEFAULT_CLASS, new WmLottieProps(), new WmLottieState());
|
21
|
+
_defineProperty(this, "lottie", /*#__PURE__*/React.createRef());
|
22
|
+
}
|
23
|
+
play() {
|
24
|
+
if (this.lottie.current) {
|
25
|
+
if (this.state.isCompleted) {
|
26
|
+
this.reset();
|
27
|
+
} else {
|
28
|
+
this.lottie.current.play();
|
29
|
+
this.invokeEventCallback('onPlay', [null, this.proxy]);
|
30
|
+
}
|
31
|
+
}
|
32
|
+
}
|
33
|
+
pause() {
|
34
|
+
if (this.lottie.current) {
|
35
|
+
this.lottie.current.pause();
|
36
|
+
this.invokeEventCallback('onPause', [null, this.proxy]);
|
37
|
+
}
|
38
|
+
}
|
39
|
+
reset() {
|
40
|
+
if (this.lottie.current) {
|
41
|
+
if (this.lottie.current.reset) {
|
42
|
+
this.lottie.current.reset();
|
43
|
+
this.lottie.current.play();
|
44
|
+
} else if (this.lottie.current.goToAndPlay) {
|
45
|
+
this.lottie.current.goToAndPlay(0);
|
46
|
+
} else {
|
47
|
+
return;
|
48
|
+
}
|
49
|
+
this.invokeEventCallback('onPlay', [null, this.proxy]);
|
50
|
+
this.updateState({
|
51
|
+
isCompleted: false
|
52
|
+
});
|
53
|
+
}
|
54
|
+
}
|
55
|
+
onReady() {
|
56
|
+
this.invokeEventCallback('onReady', [null, this.proxy]);
|
57
|
+
if (this.state.props.autoplay) {
|
58
|
+
this.invokeEventCallback('onPlay', [null, this.proxy]);
|
59
|
+
}
|
60
|
+
}
|
61
|
+
loadAnimationData() {
|
62
|
+
if (this.state.animationData || !this.loadAsset) {
|
63
|
+
return;
|
64
|
+
}
|
65
|
+
if (Platform.OS == 'web') {
|
66
|
+
const url = this.loadAsset(this.state.props.source);
|
67
|
+
axios.get(url).then(({
|
68
|
+
data
|
69
|
+
}) => {
|
70
|
+
this.updateState({
|
71
|
+
animationData: data
|
72
|
+
}, () => this.onReady());
|
73
|
+
});
|
74
|
+
} else {
|
75
|
+
this.updateState({
|
76
|
+
animationData: this.loadAsset(this.state.props.source)
|
77
|
+
}, () => this.onReady());
|
78
|
+
}
|
79
|
+
}
|
80
|
+
onPropertyChange(name, $new, $old) {
|
81
|
+
super.onPropertyChange(name, $new, $old);
|
82
|
+
switch (name) {
|
83
|
+
case 'src':
|
84
|
+
this.loadAnimationData();
|
85
|
+
break;
|
86
|
+
case 'loop':
|
87
|
+
if (this.initialized && !this.state.isCompleted && ($new || this.state.props.autoplay)) {
|
88
|
+
setTimeout(() => this.reset(), 200);
|
89
|
+
}
|
90
|
+
break;
|
91
|
+
}
|
92
|
+
}
|
93
|
+
componentDidMount() {
|
94
|
+
super.componentDidMount();
|
95
|
+
this.loadAnimationData();
|
96
|
+
}
|
97
|
+
renderWebLottie(props) {
|
98
|
+
var _Lottie;
|
99
|
+
let Lottie = Platform.OS == 'web' ? require('react-lottie-player') : null;
|
100
|
+
Lottie = ((_Lottie = Lottie) === null || _Lottie === void 0 ? void 0 : _Lottie.default) || Lottie;
|
101
|
+
return /*#__PURE__*/React.createElement(Lottie, {
|
102
|
+
animationData: this.state.animationData,
|
103
|
+
ref: this.lottie,
|
104
|
+
loop: props.loop,
|
105
|
+
play: props.autoplay,
|
106
|
+
speed: props.speed,
|
107
|
+
style: this.styles.content,
|
108
|
+
onComplete: () => {
|
109
|
+
this.updateState({
|
110
|
+
isCompleted: true
|
111
|
+
});
|
112
|
+
this.invokeEventCallback('onComplete', [null, this.proxy]);
|
113
|
+
}
|
114
|
+
});
|
115
|
+
}
|
116
|
+
renderNativeLottie(props) {
|
117
|
+
return /*#__PURE__*/React.createElement(LottieView, {
|
118
|
+
source: this.state.animationData,
|
119
|
+
ref: this.lottie,
|
120
|
+
autoPlay: props.autoplay,
|
121
|
+
speed: props.speed,
|
122
|
+
loop: props.loop,
|
123
|
+
style: this.styles.content,
|
124
|
+
onAnimationFinish: () => {
|
125
|
+
this.updateState({
|
126
|
+
isCompleted: true
|
127
|
+
});
|
128
|
+
this.invokeEventCallback('onComplete', [null, this.proxy]);
|
129
|
+
}
|
130
|
+
});
|
131
|
+
}
|
132
|
+
renderWidget(props) {
|
133
|
+
return /*#__PURE__*/React.createElement(View, {
|
134
|
+
style: this.styles.root
|
135
|
+
}, this._background, this.state.animationData ? Platform.OS == 'web' ? this.renderWebLottie(props) : this.renderNativeLottie(props) : null);
|
136
|
+
}
|
137
|
+
}
|
138
|
+
//# sourceMappingURL=lottie.component.js.map
|
@@ -0,0 +1,14 @@
|
|
1
|
+
function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
|
2
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
|
3
|
+
function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
4
|
+
import { BaseProps } from '@wavemaker/app-rn-runtime/core/base.component';
|
5
|
+
export default class WmLottieProps extends BaseProps {
|
6
|
+
constructor(...args) {
|
7
|
+
super(...args);
|
8
|
+
_defineProperty(this, "speed", 1);
|
9
|
+
_defineProperty(this, "autoplay", false);
|
10
|
+
_defineProperty(this, "loop", false);
|
11
|
+
_defineProperty(this, "source", '');
|
12
|
+
}
|
13
|
+
}
|
14
|
+
//# sourceMappingURL=lottie.props.js.map
|
@@ -0,0 +1,78 @@
|
|
1
|
+
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
2
|
+
function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
|
3
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
|
4
|
+
function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
5
|
+
import React from 'react';
|
6
|
+
import { View, Text } from 'react-native';
|
7
|
+
import { BaseComponent, BaseComponentState } from '@wavemaker/app-rn-runtime/core/base.component';
|
8
|
+
import WmMessageProps from './message.props';
|
9
|
+
import { DEFAULT_CLASS } from './message.styles';
|
10
|
+
import WmIcon from '../icon/icon.component';
|
11
|
+
import WmButton from '../button/button.component';
|
12
|
+
import { Animatedview } from '@wavemaker/app-rn-runtime/components/basic/animatedview.component';
|
13
|
+
import { AccessibilityWidgetType, getAccessibilityProps } from '@wavemaker/app-rn-runtime/core/accessibility';
|
14
|
+
export class WmMessageState extends BaseComponentState {}
|
15
|
+
const MESSAGE_ICONS = {
|
16
|
+
'success': 'wm-sl-l sl-check',
|
17
|
+
'warning': 'wm-sl-l sl-alarm-bell',
|
18
|
+
'error': 'fa fa-times-circle',
|
19
|
+
'info': 'wi wi-info',
|
20
|
+
'loading': 'fa fa-spinner fa-spin'
|
21
|
+
};
|
22
|
+
const DEFAULT_TITLE = {
|
23
|
+
'success': 'Success',
|
24
|
+
'warning': 'Warning',
|
25
|
+
'error': 'Error',
|
26
|
+
'info': 'Info',
|
27
|
+
'loading': 'Processing'
|
28
|
+
};
|
29
|
+
export default class WmMessage extends BaseComponent {
|
30
|
+
constructor(props) {
|
31
|
+
super(props, DEFAULT_CLASS, new WmMessageProps());
|
32
|
+
_defineProperty(this, "close", () => {
|
33
|
+
this.updateState({
|
34
|
+
props: {
|
35
|
+
show: false
|
36
|
+
}
|
37
|
+
}, () => this.invokeEventCallback('onClose', [null, this]));
|
38
|
+
});
|
39
|
+
}
|
40
|
+
showMessage() {
|
41
|
+
this.updateState({
|
42
|
+
props: {
|
43
|
+
show: true
|
44
|
+
}
|
45
|
+
});
|
46
|
+
}
|
47
|
+
hideMessage() {
|
48
|
+
this.updateState({
|
49
|
+
props: {
|
50
|
+
show: false
|
51
|
+
}
|
52
|
+
});
|
53
|
+
}
|
54
|
+
renderWidget(props) {
|
55
|
+
const styles = this.theme.mergeStyle(this.theme.getStyle(`${props.type}-${props.variant}-message`), this.styles);
|
56
|
+
return /*#__PURE__*/React.createElement(Animatedview, {
|
57
|
+
entryanimation: props.animation,
|
58
|
+
delay: props.animationdelay,
|
59
|
+
style: styles.root
|
60
|
+
}, this._background, /*#__PURE__*/React.createElement(WmIcon, {
|
61
|
+
id: this.getTestId('icon'),
|
62
|
+
iconclass: props.type && MESSAGE_ICONS[props.type],
|
63
|
+
styles: styles.icon
|
64
|
+
}), /*#__PURE__*/React.createElement(View, {
|
65
|
+
style: styles.message
|
66
|
+
}, /*#__PURE__*/React.createElement(Text, _extends({}, this.getTestPropsForLabel('title'), {
|
67
|
+
style: styles.title
|
68
|
+
}, getAccessibilityProps(AccessibilityWidgetType.MESSAGE, props)), props.title || DEFAULT_TITLE[props.type || '']), /*#__PURE__*/React.createElement(Text, _extends({}, this.getTestPropsForLabel('caption'), {
|
69
|
+
style: styles.text
|
70
|
+
}, getAccessibilityProps(AccessibilityWidgetType.MESSAGE, props)), props.caption)), props.hideclose ? null : /*#__PURE__*/React.createElement(WmButton, {
|
71
|
+
id: this.getTestId('close'),
|
72
|
+
iconclass: "wi wi-close",
|
73
|
+
styles: styles.closeBtn,
|
74
|
+
onTap: this.close
|
75
|
+
}));
|
76
|
+
}
|
77
|
+
}
|
78
|
+
//# sourceMappingURL=message.component.js.map
|
@@ -0,0 +1,21 @@
|
|
1
|
+
function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
|
2
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
|
3
|
+
function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
4
|
+
import { BaseProps } from '@wavemaker/app-rn-runtime/core/base.component';
|
5
|
+
export default class WmMessageProps extends BaseProps {
|
6
|
+
constructor(...args) {
|
7
|
+
super(...args);
|
8
|
+
_defineProperty(this, "animation", 'fadeIn');
|
9
|
+
_defineProperty(this, "animationdelay", null);
|
10
|
+
_defineProperty(this, "title", '');
|
11
|
+
_defineProperty(this, "variant", 'dark');
|
12
|
+
_defineProperty(this, "caption", 'Message');
|
13
|
+
_defineProperty(this, "type", 'success');
|
14
|
+
_defineProperty(this, "hideclose", false);
|
15
|
+
_defineProperty(this, "accessibilitylabel", undefined);
|
16
|
+
_defineProperty(this, "hint", undefined);
|
17
|
+
_defineProperty(this, "accessibilityrole", 'alert');
|
18
|
+
_defineProperty(this, "onClose", void 0);
|
19
|
+
}
|
20
|
+
}
|
21
|
+
//# sourceMappingURL=message.props.js.map
|
@@ -0,0 +1,12 @@
|
|
1
|
+
function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
|
2
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
|
3
|
+
function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
4
|
+
import { BaseProps } from '@wavemaker/app-rn-runtime/core/base.component';
|
5
|
+
export default class WmModalProps extends BaseProps {
|
6
|
+
constructor(...args) {
|
7
|
+
super(...args);
|
8
|
+
_defineProperty(this, "children", null);
|
9
|
+
_defineProperty(this, "animationType", 'slide');
|
10
|
+
}
|
11
|
+
}
|
12
|
+
//# sourceMappingURL=modal.props.js.map
|
@@ -0,0 +1,197 @@
|
|
1
|
+
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
2
|
+
function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
|
3
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
|
4
|
+
function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
5
|
+
import React from 'react';
|
6
|
+
import { Image, View } from 'react-native';
|
7
|
+
// import { NumberProp, SvgUri } from 'react-native-svg';
|
8
|
+
import { isNumber } from 'lodash-es';
|
9
|
+
import { Tappable } from '@wavemaker/app-rn-runtime/core/tappable.component';
|
10
|
+
import { BaseComponent, BaseComponentState } from '@wavemaker/app-rn-runtime/core/base.component';
|
11
|
+
import ImageSizeEstimator from '@wavemaker/app-rn-runtime/core/imageSizeEstimator';
|
12
|
+
import { isFullPathUrl } from '@wavemaker/app-rn-runtime/core/utils';
|
13
|
+
import { AccessibilityWidgetType, getAccessibilityProps } from '@wavemaker/app-rn-runtime/core/accessibility';
|
14
|
+
import WmPictureProps from './picture.props';
|
15
|
+
import { DEFAULT_CLASS } from './picture.styles';
|
16
|
+
import { Animatedview } from '@wavemaker/app-rn-runtime/components/basic/animatedview.component';
|
17
|
+
import { createSkeleton } from '../skeleton/skeleton.component';
|
18
|
+
export class WmPictureState extends BaseComponentState {
|
19
|
+
constructor(...args) {
|
20
|
+
super(...args);
|
21
|
+
_defineProperty(this, "naturalImageWidth", 0);
|
22
|
+
_defineProperty(this, "naturalImageHeight", 0);
|
23
|
+
_defineProperty(this, "imageWidth", 0);
|
24
|
+
_defineProperty(this, "imageHeight", 0);
|
25
|
+
}
|
26
|
+
}
|
27
|
+
export default class WmPicture extends BaseComponent {
|
28
|
+
constructor(_props) {
|
29
|
+
super(_props, DEFAULT_CLASS, new WmPictureProps());
|
30
|
+
_defineProperty(this, "_pictureSource", null);
|
31
|
+
_defineProperty(this, "_picturePlaceHolder", null);
|
32
|
+
_defineProperty(this, "onViewLayoutChange", e => {
|
33
|
+
let imageWidth = e.nativeEvent.layout.width;
|
34
|
+
let imageHeight = e.nativeEvent.layout.height;
|
35
|
+
if (!imageWidth && !imageHeight) {
|
36
|
+
return;
|
37
|
+
}
|
38
|
+
if (!this.styles.root.height || typeof this.styles.root.height === 'string' && !this.styles.root.height.includes('%')) {
|
39
|
+
imageHeight = 0;
|
40
|
+
}
|
41
|
+
if (imageWidth && !imageHeight) {
|
42
|
+
imageHeight = imageWidth * this.state.naturalImageHeight / this.state.naturalImageWidth;
|
43
|
+
} else if (imageHeight && !imageWidth) {
|
44
|
+
imageWidth = imageHeight * this.state.naturalImageWidth / this.state.naturalImageHeight;
|
45
|
+
}
|
46
|
+
this.updateState({
|
47
|
+
imageWidth: imageWidth,
|
48
|
+
imageHeight: imageHeight
|
49
|
+
});
|
50
|
+
});
|
51
|
+
_defineProperty(this, "showImage", (imageElement, props) => {
|
52
|
+
if (props.fastload) {
|
53
|
+
return imageElement;
|
54
|
+
}
|
55
|
+
return this.state.imageWidth ? imageElement : null;
|
56
|
+
});
|
57
|
+
}
|
58
|
+
loadImage(image) {
|
59
|
+
if (!image || !this.loadAsset) {
|
60
|
+
return null;
|
61
|
+
}
|
62
|
+
const imageSrc = this.loadAsset(image);
|
63
|
+
if (imageSrc && typeof imageSrc === 'object' && typeof imageSrc.default === 'function') {
|
64
|
+
return null;
|
65
|
+
}
|
66
|
+
if (isNumber(imageSrc)) {
|
67
|
+
const {
|
68
|
+
width,
|
69
|
+
height
|
70
|
+
} = Image.resolveAssetSource(imageSrc);
|
71
|
+
this.updateState({
|
72
|
+
naturalImageWidth: width,
|
73
|
+
naturalImageHeight: height
|
74
|
+
});
|
75
|
+
} else if (imageSrc !== null) {
|
76
|
+
const cancel = ImageSizeEstimator.getSize(imageSrc, (width, height) => {
|
77
|
+
this.updateState({
|
78
|
+
naturalImageWidth: width,
|
79
|
+
naturalImageHeight: height
|
80
|
+
});
|
81
|
+
this.cleanup.splice(this.cleanup.indexOf(cancel), 1);
|
82
|
+
});
|
83
|
+
this.cleanup.push(cancel);
|
84
|
+
}
|
85
|
+
return imageSrc;
|
86
|
+
}
|
87
|
+
onPropertyChange(name, $new, $old) {
|
88
|
+
switch (name) {
|
89
|
+
case 'picturesource':
|
90
|
+
this._pictureSource = null;
|
91
|
+
case 'pictureplaceholder':
|
92
|
+
this._picturePlaceHolder = null;
|
93
|
+
break;
|
94
|
+
}
|
95
|
+
}
|
96
|
+
createShape(shape, imageWidth) {
|
97
|
+
if (shape) {
|
98
|
+
switch (shape) {
|
99
|
+
case 'circle':
|
100
|
+
return {
|
101
|
+
picture: {
|
102
|
+
borderRadius: isNumber(imageWidth) ? imageWidth / 2 : 4
|
103
|
+
}
|
104
|
+
};
|
105
|
+
case 'rounded':
|
106
|
+
return this.theme.getStyle('rounded-image');
|
107
|
+
case 'thumbnail':
|
108
|
+
return this.theme.getStyle('thumbnail-image');
|
109
|
+
}
|
110
|
+
}
|
111
|
+
return {};
|
112
|
+
}
|
113
|
+
getElementToShow(props, imgSrc, shapeStyles) {
|
114
|
+
let elementToshow, source;
|
115
|
+
if (imgSrc && typeof imgSrc === 'object' && typeof (imgSrc === null || imgSrc === void 0 ? void 0 : imgSrc.default) === 'function') {
|
116
|
+
let imgStyle = {};
|
117
|
+
if (props.resizemode === 'contain') {
|
118
|
+
imgStyle['width'] = '100%';
|
119
|
+
imgStyle['height'] = '100%';
|
120
|
+
}
|
121
|
+
elementToshow = /*#__PURE__*/React.createElement(imgSrc === null || imgSrc === void 0 ? void 0 : imgSrc.default, imgStyle);
|
122
|
+
//} else if (!isWebPreviewMode() && props.isSvg) {
|
123
|
+
// svg from uri
|
124
|
+
// elementToshow = <SvgUri testID={this.getTestId('picture')} width={this.styles.root.width as NumberProp} height={this.styles.root.height as NumberProp} uri={imgSrc}/>;
|
125
|
+
} else if (isFullPathUrl(imgSrc)) {
|
126
|
+
source = {
|
127
|
+
uri: imgSrc
|
128
|
+
};
|
129
|
+
} else {
|
130
|
+
source = imgSrc;
|
131
|
+
}
|
132
|
+
if (this.state.naturalImageWidth) {
|
133
|
+
elementToshow = /*#__PURE__*/React.createElement(Image, _extends({}, this.getTestProps('picture'), {
|
134
|
+
style: [this.styles.picture, shapeStyles.picture],
|
135
|
+
resizeMode: props.resizemode,
|
136
|
+
source: source
|
137
|
+
}, getAccessibilityProps(AccessibilityWidgetType.PICTURE, props)));
|
138
|
+
}
|
139
|
+
return elementToshow;
|
140
|
+
}
|
141
|
+
renderSkeleton(props) {
|
142
|
+
var _this$styles$root, _shapeStyles$root, _shapeStyles$picture, _this$styles$root2, _shapeStyles$root2, _shapeStyles$picture2, _this$styles$root3, _shapeStyles$picture3, _shapeStyles$root3, _this$styles$root4;
|
143
|
+
const imageWidth = this.state.imageWidth;
|
144
|
+
const imageHeight = this.state.imageHeight;
|
145
|
+
const shapeStyles = this.createShape(this.props.shape, imageWidth);
|
146
|
+
const skeletonWidth = this.props.skeletonwidth || ((_this$styles$root = this.styles.root) === null || _this$styles$root === void 0 ? void 0 : _this$styles$root.width) || ((_shapeStyles$root = shapeStyles.root) === null || _shapeStyles$root === void 0 ? void 0 : _shapeStyles$root.width) || ((_shapeStyles$picture = shapeStyles.picture) === null || _shapeStyles$picture === void 0 ? void 0 : _shapeStyles$picture.width) || imageWidth;
|
147
|
+
const skeletonHeight = this.props.skeletonheight || ((_this$styles$root2 = this.styles.root) === null || _this$styles$root2 === void 0 ? void 0 : _this$styles$root2.height) || ((_shapeStyles$root2 = shapeStyles.root) === null || _shapeStyles$root2 === void 0 ? void 0 : _shapeStyles$root2.height) || ((_shapeStyles$picture2 = shapeStyles.picture) === null || _shapeStyles$picture2 === void 0 ? void 0 : _shapeStyles$picture2.height) || imageHeight;
|
148
|
+
return createSkeleton(this.theme, this.styles.skeleton, {
|
149
|
+
...this.styles.root,
|
150
|
+
borderRadius: this.props.shape == 'circle' && (_this$styles$root3 = this.styles.root) !== null && _this$styles$root3 !== void 0 && _this$styles$root3.width ? 25 : ((_shapeStyles$picture3 = shapeStyles.picture) === null || _shapeStyles$picture3 === void 0 ? void 0 : _shapeStyles$picture3.borderRadius) || ((_shapeStyles$root3 = shapeStyles.root) === null || _shapeStyles$root3 === void 0 ? void 0 : _shapeStyles$root3.borderRadius) || ((_this$styles$root4 = this.styles.root) === null || _this$styles$root4 === void 0 ? void 0 : _this$styles$root4.borderRadius) || 4,
|
151
|
+
width: skeletonWidth,
|
152
|
+
height: skeletonHeight
|
153
|
+
});
|
154
|
+
}
|
155
|
+
renderWidget(props) {
|
156
|
+
var _shapeStyles$picture4;
|
157
|
+
const imageWidth = this.state.imageWidth;
|
158
|
+
const imageHeight = this.state.imageHeight;
|
159
|
+
const shapeStyles = this.createShape(props.shape, imageWidth);
|
160
|
+
this._pictureSource = this._pictureSource || this.loadImage(props.picturesource);
|
161
|
+
this._picturePlaceHolder = props.fastload ? this._pictureSource || this._picturePlaceHolder || this.loadImage(props.pictureplaceholder) : this._picturePlaceHolder || this.loadImage(props.pictureplaceholder);
|
162
|
+
const imgSrc = this._pictureSource || this._picturePlaceHolder;
|
163
|
+
let elementToshow;
|
164
|
+
if (imgSrc) {
|
165
|
+
elementToshow = this.getElementToShow(props, imgSrc, shapeStyles);
|
166
|
+
}
|
167
|
+
return imgSrc && (this.state.naturalImageWidth || props.isSvg) ? /*#__PURE__*/React.createElement(View, {
|
168
|
+
style: [{
|
169
|
+
width: imageWidth,
|
170
|
+
height: imageHeight
|
171
|
+
}, this.styles.root, shapeStyles.root, shapeStyles.picture]
|
172
|
+
}, this._background, /*#__PURE__*/React.createElement(View, {
|
173
|
+
style: [{
|
174
|
+
overflow: 'hidden',
|
175
|
+
width: '100%',
|
176
|
+
height: '100%'
|
177
|
+
}],
|
178
|
+
onLayout: this.onViewLayoutChange
|
179
|
+
}, /*#__PURE__*/React.createElement(Tappable, _extends({}, this.getTestPropsForAction(), {
|
180
|
+
rippleColor: this.styles.root.rippleColor,
|
181
|
+
target: this,
|
182
|
+
styles: {
|
183
|
+
width: imageWidth ? null : '100%',
|
184
|
+
height: imageHeight ? null : '100%'
|
185
|
+
}
|
186
|
+
}), /*#__PURE__*/React.createElement(Animatedview, {
|
187
|
+
entryanimation: props.animation,
|
188
|
+
delay: props.animationdelay,
|
189
|
+
style: [{
|
190
|
+
height: imageHeight,
|
191
|
+
width: imageWidth,
|
192
|
+
borderRadius: (_shapeStyles$picture4 = shapeStyles.picture) === null || _shapeStyles$picture4 === void 0 ? void 0 : _shapeStyles$picture4.borderRadius
|
193
|
+
}]
|
194
|
+
}, this.showImage(elementToshow, props))))) : null;
|
195
|
+
}
|
196
|
+
}
|
197
|
+
//# sourceMappingURL=picture.component.js.map
|