@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-
|
|
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