react-crud-mobile 1.3.28 → 1.3.29
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 -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 +5 -2
- package/dist/react-crud-mobile.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/elements/core/UISelect.tsx +9 -2
|
@@ -598,7 +598,10 @@ function UISelect(props) {
|
|
|
598
598
|
name: scope.getName('list'),
|
|
599
599
|
layout: "card",
|
|
600
600
|
click: onClick,
|
|
601
|
-
rowStyle: (
|
|
601
|
+
rowStyle: _extends({
|
|
602
|
+
paddingLeft: 15,
|
|
603
|
+
paddinRight: 15
|
|
604
|
+
}, (_scope$original = scope.original) == null ? void 0 : _scope$original.rowStyle),
|
|
602
605
|
children: /*#__PURE__*/jsxRuntime.jsx(UI.Value, {
|
|
603
606
|
value: "#{@this.label}"
|
|
604
607
|
})
|
|
@@ -606,7 +609,7 @@ function UISelect(props) {
|
|
|
606
609
|
})]
|
|
607
610
|
})]
|
|
608
611
|
})]
|
|
609
|
-
});
|
|
612
|
+
}, scope.getName(scope.getPart('modal') + "_" + modalVisible));
|
|
610
613
|
}
|
|
611
614
|
var styles$3 = /*#__PURE__*/reactNative.StyleSheet.create({
|
|
612
615
|
selectRoot: {
|