mg-library 1.0.640 → 1.0.642

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.
Files changed (2) hide show
  1. package/blocks.js +8 -2
  2. package/package.json +1 -1
package/blocks.js CHANGED
@@ -37,7 +37,7 @@ export function MGWelcome(props) {
37
37
  if (props.subTitle != undefined)
38
38
  subTitle = props.subTitle;
39
39
 
40
- let listHeaderComponent = (
40
+ /* let listHeaderComponent = (
41
41
  <View>
42
42
  <MGSessionHeader module={subTitle} person={props.person} colors={props.colors} />
43
43
  {companyInfoComponent}
@@ -48,6 +48,12 @@ export function MGWelcome(props) {
48
48
  </>
49
49
  }
50
50
  </View>
51
+ ); */
52
+
53
+ let listHeaderComponent = (
54
+ <View>
55
+ <MGSessionHeader module={subTitle} person={props.person} colors={props.colors} />
56
+ </View>
51
57
  );
52
58
 
53
59
  function cardHeader(item) {
@@ -882,7 +888,7 @@ export function MGDivider({ style, ...props }) {
882
888
  return (
883
889
  <Divider
884
890
  style={[{ height: 1, flexGrow: 1, alignSelf: 'stretch' }, style]}
885
- bg="gray.300"
891
+ bg="gray"
886
892
  {...props}
887
893
  />
888
894
  );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mg-library",
3
- "version": "1.0.640",
3
+ "version": "1.0.642",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {