react-crud-mobile 1.0.880 → 1.0.882

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.
@@ -645,16 +645,15 @@ function UISlider(props) {
645
645
  setValue = _useState[1];
646
646
  value = reactCrudUtils.Utils.nvl(value, 0);
647
647
  //redeploy 0
648
- console.log(value);
649
648
  var onChange = function onChange(v) {
650
649
  v = reactCrudUtils.Utils.nvl(v, 0);
651
650
  console.log(v);
652
651
  scope.changeValue(v);
653
652
  setValue(v);
654
653
  };
655
- var step = scope.getPart('step', 1);
656
- var min = scope.getPart('min', 0);
657
- var max = scope.getPart('min', 100);
654
+ var step = scope.attr('step', 1);
655
+ var min = scope.attr('min', 0);
656
+ var max = scope.attr('min', 100);
658
657
  return /*#__PURE__*/jsxRuntime.jsx(jsxRuntime.Fragment, {
659
658
  children: /*#__PURE__*/jsxRuntime.jsx(Slider, {
660
659
  minimumValue: min,