@wavemaker/app-rn-runtime 11.4.2-rc.5405 → 11.4.2-rc.5559

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 (54) hide show
  1. app-rn-runtime/components/advanced/carousel/carousel.component.js +29 -114
  2. app-rn-runtime/components/advanced/carousel/carousel.component.js.map +1 -1
  3. app-rn-runtime/components/advanced/carousel/carousel.styles.js +3 -7
  4. app-rn-runtime/components/advanced/carousel/carousel.styles.js.map +1 -1
  5. app-rn-runtime/components/basic/label/label.component.js +1 -2
  6. app-rn-runtime/components/basic/label/label.component.js.map +1 -1
  7. app-rn-runtime/components/basic/label/label.props.js +0 -1
  8. app-rn-runtime/components/basic/label/label.props.js.map +1 -1
  9. app-rn-runtime/components/chart/area-chart/area-chart.component.js +10 -15
  10. app-rn-runtime/components/chart/area-chart/area-chart.component.js.map +1 -1
  11. app-rn-runtime/components/chart/area-chart/area-chart.props.js +1 -9
  12. app-rn-runtime/components/chart/area-chart/area-chart.props.js.map +1 -1
  13. app-rn-runtime/components/chart/basechart.component.js +39 -82
  14. app-rn-runtime/components/chart/basechart.component.js.map +1 -1
  15. app-rn-runtime/components/chart/basechart.props.js +3 -8
  16. app-rn-runtime/components/chart/basechart.props.js.map +1 -1
  17. app-rn-runtime/components/chart/basechart.styles.js +1 -25
  18. app-rn-runtime/components/chart/basechart.styles.js.map +1 -1
  19. app-rn-runtime/components/chart/line-chart/line-chart.component.js.map +1 -1
  20. app-rn-runtime/components/chart/pie-chart/pie-chart.component.js +2 -23
  21. app-rn-runtime/components/chart/pie-chart/pie-chart.component.js.map +1 -1
  22. app-rn-runtime/components/chart/pie-chart/pie-chart.props.js +0 -1
  23. app-rn-runtime/components/chart/pie-chart/pie-chart.props.js.map +1 -1
  24. app-rn-runtime/components/container/wizard/wizard.component.js +2 -93
  25. app-rn-runtime/components/container/wizard/wizard.component.js.map +1 -1
  26. app-rn-runtime/components/container/wizard/wizard.props.js +0 -4
  27. app-rn-runtime/components/container/wizard/wizard.props.js.map +1 -1
  28. app-rn-runtime/components/container/wizard/wizard.styles.js +2 -103
  29. app-rn-runtime/components/container/wizard/wizard.styles.js.map +1 -1
  30. app-rn-runtime/components/container/wizard/wizardstep/wizardstep.props.js +0 -1
  31. app-rn-runtime/components/container/wizard/wizardstep/wizardstep.props.js.map +1 -1
  32. app-rn-runtime/components/input/basenumber/basenumber.component.js +5 -39
  33. app-rn-runtime/components/input/basenumber/basenumber.component.js.map +1 -1
  34. app-rn-runtime/components/input/basenumber/basenumber.props.js +0 -1
  35. app-rn-runtime/components/input/basenumber/basenumber.props.js.map +1 -1
  36. app-rn-runtime/components/input/currency/currency.component.js +1 -4
  37. app-rn-runtime/components/input/currency/currency.component.js.map +1 -1
  38. app-rn-runtime/components/input/number/number.component.js +1 -4
  39. app-rn-runtime/components/input/number/number.component.js.map +1 -1
  40. app-rn-runtime/components/navigation/popover/popover.component.js +3 -5
  41. app-rn-runtime/components/navigation/popover/popover.component.js.map +1 -1
  42. app-rn-runtime/core/formatters.js +2 -9
  43. app-rn-runtime/core/formatters.js.map +1 -1
  44. app-rn-runtime/core/tappable.component.js +2 -5
  45. app-rn-runtime/core/tappable.component.js.map +1 -1
  46. app-rn-runtime/core/utils.js +0 -16
  47. app-rn-runtime/core/utils.js.map +1 -1
  48. app-rn-runtime/gestures/swipe.animation.js +5 -53
  49. app-rn-runtime/gestures/swipe.animation.js.map +1 -1
  50. app-rn-runtime/package.json +3 -3
  51. app-rn-runtime/runtime/App.js +0 -16
  52. app-rn-runtime/runtime/App.js.map +1 -1
  53. app-rn-runtime/core/constant.service.js +0 -22
  54. app-rn-runtime/core/constant.service.js.map +0 -1
@@ -1,22 +0,0 @@
1
- function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
2
- function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
3
- function _toPrimitive(input, hint) { if (typeof input !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (typeof res !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
4
- export class ConstantService {
5
- constructor() {
6
- _defineProperty(this, "VALIDATOR", {
7
- REQUIRED: 'required',
8
- MAXCHARS: 'maxchars',
9
- MINVALUE: 'minvalue',
10
- MAXVALUE: 'maxvalue',
11
- REGEXP: 'regexp',
12
- MINDATE: 'mindate',
13
- MAXDATE: 'maxdate',
14
- MINTIME: 'mintime',
15
- MAXTIME: 'maxtime',
16
- EXCLUDEDATES: 'excludedates',
17
- EXCLUDEDAYS: 'excludedays'
18
- });
19
- }
20
- }
21
- export default new ConstantService();
22
- //# sourceMappingURL=constant.service.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":["ConstantService","constructor","_defineProperty","REQUIRED","MAXCHARS","MINVALUE","MAXVALUE","REGEXP","MINDATE","MAXDATE","MINTIME","MAXTIME","EXCLUDEDATES","EXCLUDEDAYS"],"sources":["constant.service.ts"],"sourcesContent":["export class ConstantService {\n VALIDATOR = {\n REQUIRED: 'required',\n MAXCHARS: 'maxchars',\n MINVALUE: 'minvalue',\n MAXVALUE: 'maxvalue',\n REGEXP: 'regexp',\n MINDATE: 'mindate',\n MAXDATE: 'maxdate',\n MINTIME: 'mintime',\n MAXTIME: 'maxtime',\n EXCLUDEDATES: 'excludedates',\n EXCLUDEDAYS: 'excludedays'\n };\n }\n \n export default new ConstantService();\n "],"mappings":";;;AAAA,OAAO,MAAMA,eAAe,CAAC;EAAAC,YAAA;IAAAC,eAAA,oBACb;MACXC,QAAQ,EAAE,UAAU;MACpBC,QAAQ,EAAE,UAAU;MACpBC,QAAQ,EAAE,UAAU;MACpBC,QAAQ,EAAE,UAAU;MACpBC,MAAM,EAAE,QAAQ;MAChBC,OAAO,EAAE,SAAS;MAClBC,OAAO,EAAE,SAAS;MAClBC,OAAO,EAAE,SAAS;MAClBC,OAAO,EAAE,SAAS;MAClBC,YAAY,EAAE,cAAc;MAC5BC,WAAW,EAAE;IACf,CAAC;EAAA;AACH;AAEA,eAAe,IAAIb,eAAe,CAAC,CAAC"}