@fixefy/fixefy-ui-components 0.0.53 → 0.0.55

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.
@@ -35,7 +35,7 @@ const ScoreChipStyled = (0, _styles.styled)(_material.Chip)(({ theme, scoreLabel
35
35
  };
36
36
  });
37
37
  const StatusChipStyled = (0, _styles.styled)(_material.Chip)(({ theme, status, variant })=>{
38
- let backgroundColor, border, labelColor;
38
+ let backgroundColor, /*border,*/ labelColor;
39
39
  if (theme.palette.status[status]) {
40
40
  if (variant === 'filled') {
41
41
  backgroundColor = theme.palette.status[status]['border'];
@@ -43,7 +43,7 @@ const StatusChipStyled = (0, _styles.styled)(_material.Chip)(({ theme, status, v
43
43
  } else {
44
44
  backgroundColor = theme.palette.status[status]['background'];
45
45
  }
46
- border = theme.palette.status[status]['border'];
46
+ // border = theme.palette.status[status as any]['border']
47
47
  }
48
48
  return {
49
49
  height: 20,
@@ -55,7 +55,6 @@ const StatusChipStyled = (0, _styles.styled)(_material.Chip)(({ theme, status, v
55
55
  lineHeight: '12px',
56
56
  color: labelColor ? labelColor : theme.palette.statistics.label
57
57
  },
58
- backgroundColor,
59
- border: `1px solid ${border}`
58
+ backgroundColor
60
59
  };
61
60
  });
package/package.json CHANGED
@@ -13,8 +13,8 @@
13
13
  "@react-spring/web": "^9.7.3",
14
14
  "graphql-tag": "^2.12.6",
15
15
  "next": "^13.5.3",
16
- "react": "18.2.0",
17
- "react-dom": "18.2.0",
16
+ "react": "17.0.2",
17
+ "react-dom": "17.0.2",
18
18
  "swc-loader": "^0.2.3"
19
19
  },
20
20
  "devDependencies": {
@@ -68,5 +68,5 @@
68
68
  "require": "./dist/index.js"
69
69
  }
70
70
  },
71
- "version": "0.0.53"
71
+ "version": "0.0.55"
72
72
  }