@wavemaker/app-rn-runtime 11.12.1-next.28204 → 11.12.1-rc.221

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (89) hide show
  1. package/components/basic/audio/audio.component.js +52 -47
  2. package/components/basic/audio/audio.component.js.map +1 -1
  3. package/components/basic/label/label.component.js +120 -5
  4. package/components/basic/label/label.component.js.map +1 -1
  5. package/components/basic/label/label.props.js +2 -0
  6. package/components/basic/label/label.props.js.map +1 -1
  7. package/components/basic/video/video.component.js +89 -64
  8. package/components/basic/video/video.component.js.map +1 -1
  9. package/components/container/tabs/tabs.component.js +1 -0
  10. package/components/container/tabs/tabs.component.js.map +1 -1
  11. package/components/container/wizard/wizard.component.js +77 -8
  12. package/components/container/wizard/wizard.component.js.map +1 -1
  13. package/components/container/wizard/wizard.styles.js +86 -1
  14. package/components/container/wizard/wizard.styles.js.map +1 -1
  15. package/components/device/barcodescanner/barcodescanner.component.js +29 -18
  16. package/components/device/barcodescanner/barcodescanner.component.js.map +1 -1
  17. package/components/device/camera/camera.component.js +28 -19
  18. package/components/device/camera/camera.component.js.map +1 -1
  19. package/components/input/chips/chips.component.js +50 -9
  20. package/components/input/chips/chips.component.js.map +1 -1
  21. package/components/input/chips/chips.props.js +11 -0
  22. package/components/input/chips/chips.props.js.map +1 -1
  23. package/components/input/chips/chips.styles.js +64 -0
  24. package/components/input/chips/chips.styles.js.map +1 -1
  25. package/components/input/fileupload/fileupload.component.js +17 -13
  26. package/components/input/fileupload/fileupload.component.js.map +1 -1
  27. package/components/page/page-content/page-content.component.js +18 -2
  28. package/components/page/page-content/page-content.component.js.map +1 -1
  29. package/components/page/tabbar/tabbar.component.js +4 -3
  30. package/components/page/tabbar/tabbar.component.js.map +1 -1
  31. package/core/base.component.js +13 -1
  32. package/core/base.component.js.map +1 -1
  33. package/core/device/av-service.js +8 -0
  34. package/core/device/av-service.js.map +1 -0
  35. package/core/device/calendar-service.js +7 -1
  36. package/core/device/calendar-service.js.map +1 -1
  37. package/core/device/camera-service.js +6 -0
  38. package/core/device/camera-service.js.map +1 -1
  39. package/core/device/contacts-service.js +7 -1
  40. package/core/device/contacts-service.js.map +1 -1
  41. package/core/device/fileupload-service.js +8 -0
  42. package/core/device/fileupload-service.js.map +1 -0
  43. package/core/device/location-service.js +7 -1
  44. package/core/device/location-service.js.map +1 -1
  45. package/core/device/openfile-service.js +10 -0
  46. package/core/device/openfile-service.js.map +1 -0
  47. package/core/device/scan-service.js +6 -0
  48. package/core/device/scan-service.js.map +1 -1
  49. package/core/utils.js +0 -6
  50. package/core/utils.js.map +1 -1
  51. package/npm-shrinkwrap.json +5165 -4197
  52. package/package-lock.json +5165 -4197
  53. package/package.json +4 -4
  54. package/runtime/services/device/calendar-service.js +9 -5
  55. package/runtime/services/device/calendar-service.js.map +1 -1
  56. package/runtime/services/device/camera-service.js +39 -22
  57. package/runtime/services/device/camera-service.js.map +1 -1
  58. package/runtime/services/device/contacts-service.js +6 -5
  59. package/runtime/services/device/contacts-service.js.map +1 -1
  60. package/runtime/services/device/location-service.js +4 -4
  61. package/runtime/services/device/location-service.js.map +1 -1
  62. package/runtime/services/device/permission-service.js +5 -0
  63. package/runtime/services/device/permission-service.js.map +1 -0
  64. package/runtime/services/device/permissions.js +34 -39
  65. package/runtime/services/device/permissions.js.map +1 -1
  66. package/runtime/services/device/scan-service.js +4 -3
  67. package/runtime/services/device/scan-service.js.map +1 -1
  68. package/variables/device/calendar/create-event.operation.js +8 -2
  69. package/variables/device/calendar/create-event.operation.js.map +1 -1
  70. package/variables/device/calendar/delete-event.operation.js +8 -2
  71. package/variables/device/calendar/delete-event.operation.js.map +1 -1
  72. package/variables/device/calendar/get-events.operation.js +8 -2
  73. package/variables/device/calendar/get-events.operation.js.map +1 -1
  74. package/variables/device/camera/capture-image.operation.js +6 -2
  75. package/variables/device/camera/capture-image.operation.js.map +1 -1
  76. package/variables/device/camera/capture-video.operation.js +5 -2
  77. package/variables/device/camera/capture-video.operation.js.map +1 -1
  78. package/variables/device/contacts/get-contacts.operation.js +8 -2
  79. package/variables/device/contacts/get-contacts.operation.js.map +1 -1
  80. package/variables/device/device/current-geo-position.operation.js +8 -2
  81. package/variables/device/device/current-geo-position.operation.js.map +1 -1
  82. package/variables/device/file/open-file.operation.js +9 -9
  83. package/variables/device/file/open-file.operation.js.map +1 -1
  84. package/variables/device/file/upload-file.operation.js +5 -2
  85. package/variables/device/file/upload-file.operation.js.map +1 -1
  86. package/variables/device/scan/scan.operation.js +8 -2
  87. package/variables/device/scan/scan.operation.js.map +1 -1
  88. package/variables/http.service.js +1 -6
  89. package/variables/http.service.js.map +1 -1

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.