@thecb/components 4.2.7-beta.2 → 4.2.7-beta.3

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.cjs.js CHANGED
@@ -12692,7 +12692,7 @@ var ButtonWithAction = function ButtonWithAction(_ref2) {
12692
12692
  var isMobile = themeContext.isMobile;
12693
12693
  var hoverStyles = "\n outline: none;\n background-color: ".concat(themeValues.hoverBackgroundColor, ";\n border-color: ").concat(themeValues.hoverBorderColor, ";\n color: ").concat(themeValues.hoverColor, ";\n text-decoration: ").concat(variant === "ghost" || variant === "smallGhost" ? "underline" : "none", ";\n cursor: pointer;\n ");
12694
12694
  var activeStyles = "\n outline: none;\n background-color: ".concat(themeValues.activeBackgroundColor, ";\n border-color: ").concat(themeValues.activeBorderColor, ";\n color: ").concat(themeValues.activeColor, ";\n text-decoration: ").concat(variant === "ghost" || variant === "smallGhost" ? "underline" : "none", ";\n ");
12695
- var disabledStyles = "\n background-clor: #6D717E;\n border-color: #6D717E;\n color: #FFFFFF;\n &:focus {\n box-shadow: 0 0 10px #6D717E;\n outline: none;\n }\n ";
12695
+ var disabledStyles = "\n background-color: #6D717E;\n border-color: #6D717E;\n color: #FFFFFF;\n &:focus {\n box-shadow: 0 0 10px #6D717E;\n outline: none;\n }\n ";
12696
12696
  return /*#__PURE__*/React__default.createElement(Box, _extends({
12697
12697
  variant: variant,
12698
12698
  padding: themeValues.padding,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thecb/components",
3
- "version": "4.2.7-beta.2",
3
+ "version": "4.2.7-beta.3",
4
4
  "description": "Common lib for CityBase react components",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.esm.js",
@@ -102,7 +102,7 @@ const ButtonWithAction = ({
102
102
  };
103
103
  `;
104
104
  const disabledStyles = `
105
- background-clor: #6D717E;
105
+ background-color: #6D717E;
106
106
  border-color: #6D717E;
107
107
  color: #FFFFFF;
108
108
  &:focus {