react-crud-mobile 1.0.821 → 1.0.823
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 +5 -7
- 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 +5 -7
- package/dist/react-crud-mobile.esm.js.map +1 -1
- package/package.json +2 -2
- package/src/elements/UIElement.tsx +5 -7
|
@@ -1559,7 +1559,7 @@ function UIElement(props) {
|
|
|
1559
1559
|
if (hasChild && part) {
|
|
1560
1560
|
def = _extends({}, def, withChildStyles[part]);
|
|
1561
1561
|
}
|
|
1562
|
-
return _extends({}, def, scope.getStyle(part, def
|
|
1562
|
+
return _extends({}, def, scope.getStyle(part, _extends({}, def, extra)));
|
|
1563
1563
|
};
|
|
1564
1564
|
var elStyle = getStyle('element');
|
|
1565
1565
|
var defaultsUI = {
|
|
@@ -1810,14 +1810,12 @@ elementStyle.view = {
|
|
|
1810
1810
|
elementStyle.card = /*#__PURE__*/reactNative.StyleSheet.create({
|
|
1811
1811
|
root: /*#__PURE__*/_extends({}, box),
|
|
1812
1812
|
inner: {
|
|
1813
|
-
flex: 1,
|
|
1814
|
-
width: '100%',
|
|
1815
|
-
paddingBottom: 10,
|
|
1816
|
-
paddingTop: 5,
|
|
1817
|
-
alignSelf: 'flex-start',
|
|
1818
1813
|
flexDirection: 'row',
|
|
1819
1814
|
flexWrap: 'wrap',
|
|
1820
|
-
|
|
1815
|
+
paddingBottom: 10,
|
|
1816
|
+
paddingTop: 5,
|
|
1817
|
+
width: '100%',
|
|
1818
|
+
flex: 1
|
|
1821
1819
|
}
|
|
1822
1820
|
});
|
|
1823
1821
|
elementStyle.input = /*#__PURE__*/reactNative.StyleSheet.create({
|