react-crud-mobile 1.3.197 → 1.3.198
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 -2
- 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 -2
- package/dist/react-crud-mobile.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/elements/core/UIList.tsx +5 -4
@@ -1060,9 +1060,10 @@ function UIList(props) {
|
|
1060
1060
|
style: scope.getStyle('empty', {
|
1061
1061
|
flex: 1,
|
1062
1062
|
fontWeight: 500,
|
1063
|
-
fontSize:
|
1063
|
+
fontSize: 15,
|
1064
1064
|
padding: 10,
|
1065
1065
|
textAlign: 'center',
|
1066
|
+
width: '100%',
|
1066
1067
|
justifyContent: 'center',
|
1067
1068
|
alignItems: 'center'
|
1068
1069
|
}),
|
@@ -1085,7 +1086,7 @@ function UIList(props) {
|
|
1085
1086
|
}), isShowAdd() && /*#__PURE__*/jsx(Fragment, {
|
1086
1087
|
children: add
|
1087
1088
|
})]
|
1088
|
-
}
|
1089
|
+
});
|
1089
1090
|
};
|
1090
1091
|
return /*#__PURE__*/jsxs(Fragment, {
|
1091
1092
|
children: [original.search !== false && /*#__PURE__*/jsx(UI.Text, {
|