mg-library 1.0.636 → 1.0.638

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/blocks.js CHANGED
@@ -89,7 +89,7 @@ export function MGWelcome(props) {
89
89
  />
90
90
  </Box>
91
91
  )}
92
- <MGText mb={2}>{item.content}</MGText>
92
+ {/* <MGText mb={2}>{item.content}</MGText> */}
93
93
  </MGCard>
94
94
  )}
95
95
  ListHeaderComponent={listHeaderComponent}
@@ -303,7 +303,7 @@ const nbStyles = StyleSheet.create({
303
303
  input: {
304
304
  height: 50,
305
305
  borderWidth: 1,
306
- borderColor: '#ccc',
306
+ borderColor: 'gray',
307
307
  borderRadius: 8,
308
308
  paddingHorizontal: 12,
309
309
  fontSize: 16,
package/components.js CHANGED
@@ -24,7 +24,7 @@ export function MGText({ category = 'p1', style, ...props }) {
24
24
 
25
25
  export function MGCard({ children, header = null, footer = null, style = {}, ...props }) {
26
26
  return (
27
- <Box borderWidth={1} borderRadius="md" bg="white" shadow={2} overflow="hidden" mb={4} mx={2} style={style} {...props}>
27
+ <Box borderWidth={1} borderRadius="md" borderColor="gray" bg="white" shadow={2} overflow="hidden" mb={4} mx={2} style={style} {...props}>
28
28
  {header && (
29
29
  <>
30
30
  <Box p={4}>{header}</Box>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mg-library",
3
- "version": "1.0.636",
3
+ "version": "1.0.638",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {