pcm-shared-components 0.0.162 → 0.0.163

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.
@@ -168,7 +168,7 @@ CustomFab.defaultProps = {
168
168
  hoverTextColor: 'textPrimary',
169
169
  className: '',
170
170
  color: 'primary',
171
- theme: {}
171
+ theme: undefined
172
172
  };
173
173
  CustomFab.propTypes = {
174
174
  /** onClick function passed to the button */
@@ -56,7 +56,7 @@ TillButton.defaultProps = {
56
56
  menuData: [],
57
57
  className: undefined,
58
58
  size: 'large',
59
- theme: {}
59
+ theme: undefined
60
60
  };
61
61
  TillButton.propTypes = {
62
62
  /** Determines if a till is currently being used */
@@ -52,7 +52,7 @@ SimpleLabel.defaultProps = {
52
52
  labelFontSize: 12,
53
53
  valueFontSize: 16,
54
54
  textAlignment: 'center',
55
- theme: {}
55
+ theme: undefined
56
56
  };
57
57
  SimpleLabel.propTypes = {
58
58
  /** The top text over the value*/
@@ -25,7 +25,7 @@ export const NEW_COMPONENT = props => {
25
25
  };
26
26
  export default NEW_COMPONENT;
27
27
  NEW_COMPONENT.defaultProps = {
28
- theme: {}
28
+ theme: undefined
29
29
  };
30
30
  NEW_COMPONENT.propTypes = {
31
31
  /** Theme object to use on this component, if none provided then the MUI5 theme provider theme is used*/
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pcm-shared-components",
3
- "version": "0.0.162",
3
+ "version": "0.0.163",
4
4
  "private": false,
5
5
  "main": "dist/index.js",
6
6
  "babel": {