react-crud-mobile 1.3.324 → 1.3.326
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 -3
- 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 -3
- package/dist/react-crud-mobile.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/elements/core/UIToggle.tsx +4 -2
@@ -1204,7 +1204,7 @@ function UIToggle(props) {
|
|
1204
1204
|
var item = _ref.item,
|
1205
1205
|
index = _ref.index;
|
1206
1206
|
var selected = isSelected(item);
|
1207
|
-
var style = _extends({}, styles$7.text);
|
1207
|
+
var style = _extends({}, styles$7.text, scope.getStyle('text'));
|
1208
1208
|
if (selected) style.color = '#ffffff';
|
1209
1209
|
if (reactCrudUtils.Utils.isEmpty(props.children)) {
|
1210
1210
|
return /*#__PURE__*/jsxRuntime.jsx(reactNative.Text, {
|
@@ -1267,7 +1267,9 @@ var styles$7 = /*#__PURE__*/reactNative.StyleSheet.create({
|
|
1267
1267
|
width: '100%',
|
1268
1268
|
justifyContent: 'center',
|
1269
1269
|
flexDirection: 'row',
|
1270
|
-
alignItems: 'center'
|
1270
|
+
alignItems: 'center',
|
1271
|
+
margin: 3,
|
1272
|
+
gap: 5
|
1271
1273
|
},
|
1272
1274
|
item: {
|
1273
1275
|
backgroundColor: 'background',
|
@@ -1280,7 +1282,7 @@ var styles$7 = /*#__PURE__*/reactNative.StyleSheet.create({
|
|
1280
1282
|
borderRadius: 2
|
1281
1283
|
},
|
1282
1284
|
text: {
|
1283
|
-
fontSize:
|
1285
|
+
fontSize: 13,
|
1284
1286
|
fontWeight: '400'
|
1285
1287
|
}
|
1286
1288
|
});
|