react-crud-mobile 1.0.882 → 1.0.883
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 +4 -1
- 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 +4 -1
- package/dist/react-crud-mobile.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/elements/core/UISlider.tsx +1 -1
|
@@ -663,7 +663,10 @@ function UISlider(props) {
|
|
|
663
663
|
maximumTrackTintColor: "#d3d3d3",
|
|
664
664
|
thumbTintColor: "#1EB1FC",
|
|
665
665
|
value: value,
|
|
666
|
-
style:
|
|
666
|
+
style: _extends({
|
|
667
|
+
width: '100%',
|
|
668
|
+
height: 40
|
|
669
|
+
}, scope.getStyle('element')),
|
|
667
670
|
onValueChange: onChange // Alterna o estado
|
|
668
671
|
})
|
|
669
672
|
});
|