react-crud-mobile 1.3.563 → 1.3.565
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/index.js +13 -8
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +13 -8
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
- package/src/elements/UIElement.tsx +9 -5
- package/src/elements/core/UIOrder.tsx +4 -3
package/dist/index.js
CHANGED
|
@@ -1849,10 +1849,11 @@ var styles11 = import_react_native20.StyleSheet.create({
|
|
|
1849
1849
|
paddingHorizontal: 12,
|
|
1850
1850
|
alignItems: "center",
|
|
1851
1851
|
flexDirection: "row",
|
|
1852
|
-
elevation:
|
|
1852
|
+
elevation: 1,
|
|
1853
1853
|
shadowColor: "#000",
|
|
1854
|
-
|
|
1855
|
-
|
|
1854
|
+
shadowOffset: { width: 0, height: 1 },
|
|
1855
|
+
shadowOpacity: 0.04,
|
|
1856
|
+
shadowRadius: 3
|
|
1856
1857
|
},
|
|
1857
1858
|
handle: { width: 40, alignItems: "center", justifyContent: "center" },
|
|
1858
1859
|
handleText: { fontSize: 22, color: "#666" },
|
|
@@ -2357,16 +2358,20 @@ var boxStyle = import_react_native21.StyleSheet.create({
|
|
|
2357
2358
|
width: "100%"
|
|
2358
2359
|
},
|
|
2359
2360
|
box: {
|
|
2360
|
-
borderWidth: 1,
|
|
2361
2361
|
borderColor: "#dedede",
|
|
2362
2362
|
borderStyle: "solid",
|
|
2363
2363
|
backgroundColor: "white",
|
|
2364
2364
|
borderRadius: 10,
|
|
2365
2365
|
width: "100%",
|
|
2366
|
-
|
|
2367
|
-
|
|
2368
|
-
|
|
2369
|
-
|
|
2366
|
+
borderWidth: 0,
|
|
2367
|
+
// Keep the iOS shadow aligned with Android's elevation: a subtle
|
|
2368
|
+
// downward cast reads more naturally than a shadow spread evenly around
|
|
2369
|
+
// the card.
|
|
2370
|
+
shadowColor: "#0f172a",
|
|
2371
|
+
shadowOffset: { width: 0, height: 2 },
|
|
2372
|
+
shadowOpacity: 0.12,
|
|
2373
|
+
shadowRadius: 5,
|
|
2374
|
+
elevation: 2
|
|
2370
2375
|
}
|
|
2371
2376
|
});
|
|
2372
2377
|
var box = {
|