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.
- package/dist/react-crud-mobile.cjs.development.js +3 -4
- package/dist/react-crud-mobile.cjs.development.js.map +1 -1
- package/dist/react-crud-mobile.cjs.production.min.js +1 -1
- package/dist/react-crud-mobile.cjs.production.min.js.map +1 -1
- package/dist/react-crud-mobile.esm.js +3 -4
- package/dist/react-crud-mobile.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/elements/core/UISlider.tsx +4 -5
|
@@ -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.
|
|
656
|
-
var min = scope.
|
|
657
|
-
var max = scope.
|
|
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,
|