react-crud-mobile 1.3.376 → 1.3.378
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 -10
- 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 -10
- package/dist/react-crud-mobile.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/elements/core/UIOrder.tsx +9 -10
@@ -1863,12 +1863,9 @@ function UIOrder(props) {
|
|
1863
1863
|
return updated;
|
1864
1864
|
});
|
1865
1865
|
};
|
1866
|
-
return /*#__PURE__*/jsxRuntime.
|
1866
|
+
return /*#__PURE__*/jsxRuntime.jsx(reactNative.View, {
|
1867
1867
|
style: styles$a.container,
|
1868
|
-
children:
|
1869
|
-
style: styles$a.title,
|
1870
|
-
children: "Lista Drag\xE1vel (Esperando que a corre\xE7\xE3o final funcione \uD83D\uDE4F)"
|
1871
|
-
}), /*#__PURE__*/jsxRuntime.jsx(reactNative.View, {
|
1868
|
+
children: /*#__PURE__*/jsxRuntime.jsx(reactNative.View, {
|
1872
1869
|
style: {
|
1873
1870
|
height: items.length * ITEM_HEIGHT,
|
1874
1871
|
width: '100%'
|
@@ -1899,7 +1896,7 @@ function UIOrder(props) {
|
|
1899
1896
|
}), /*#__PURE__*/jsxRuntime.jsx(reactNative.Text, {
|
1900
1897
|
style: styles$a.itemText,
|
1901
1898
|
children: item.label
|
1902
|
-
}), /*#__PURE__*/jsxRuntime.jsx(reactNative.TouchableOpacity, {
|
1899
|
+
}), scope.original.remove && /*#__PURE__*/jsxRuntime.jsx(reactNative.TouchableOpacity, {
|
1903
1900
|
onPress: function onPress() {
|
1904
1901
|
return removeItem(item.value);
|
1905
1902
|
},
|
@@ -1913,14 +1910,12 @@ function UIOrder(props) {
|
|
1913
1910
|
})]
|
1914
1911
|
}), item.value);
|
1915
1912
|
})
|
1916
|
-
})
|
1913
|
+
})
|
1917
1914
|
});
|
1918
1915
|
}
|
1919
1916
|
var styles$a = /*#__PURE__*/reactNative.StyleSheet.create({
|
1920
1917
|
container: {
|
1921
|
-
flex: 1
|
1922
|
-
paddingHorizontal: 20,
|
1923
|
-
backgroundColor: '#f5f7fb'
|
1918
|
+
flex: 1
|
1924
1919
|
},
|
1925
1920
|
title: {
|
1926
1921
|
fontSize: 18,
|