@thecb/components 3.5.16 → 3.5.17
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/.tool-versions
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
nodejs 10.15.3
|
package/dist/index.cjs.js
CHANGED
|
@@ -12635,7 +12635,7 @@ var ButtonWithAction = function ButtonWithAction(_ref) {
|
|
|
12635
12635
|
var loadingExtraStyles = "".concat(extraStyles, "; padding-top: 0.75rem; padding-bottom: 0.75rem;");
|
|
12636
12636
|
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 ");
|
|
12637
12637
|
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 ");
|
|
12638
|
-
var disabledStyles = "\n background-clor: #6E727E;\n border-
|
|
12638
|
+
var disabledStyles = "\n background-clor: #6E727E;\n border-color: #6E727E;\n color: #FFFFFF;\n &:focus {\n box-shadow: 0 0 10px #6E727E;\n outline: none;\n }\n ";
|
|
12639
12639
|
return /*#__PURE__*/React__default.createElement(Box, {
|
|
12640
12640
|
variant: variant,
|
|
12641
12641
|
padding: themeValues.padding,
|
|
@@ -16780,7 +16780,7 @@ function _templateObject4$2() {
|
|
|
16780
16780
|
}
|
|
16781
16781
|
|
|
16782
16782
|
function _templateObject3$5() {
|
|
16783
|
-
var data = _taggedTemplateLiteral(["\n background-color: ", ";\n text-align: start;\n border-
|
|
16783
|
+
var data = _taggedTemplateLiteral(["\n background-color: ", ";\n text-align: start;\n border-width: 0px;\n border-color: transparent;\n box-shadow: none;\n padding: 1rem;\n box-sizing: border-box;\n width: 100%;\n cursor: ", ";\n\n &:hover {\n background-color: ", ";\n }\n &:focus {\n background-color: ", ";\n outline: none;\n }\n"]);
|
|
16784
16784
|
|
|
16785
16785
|
_templateObject3$5 = function _templateObject3() {
|
|
16786
16786
|
return data;
|
package/package.json
CHANGED
|
@@ -44,7 +44,7 @@ const DropdownItemWrapper = styled.div`
|
|
|
44
44
|
background-color: ${({ selected, themeValues }) =>
|
|
45
45
|
selected ? themeValues.selectedColor : WHITE};
|
|
46
46
|
text-align: start;
|
|
47
|
-
border-
|
|
47
|
+
border-width: 0px;
|
|
48
48
|
border-color: transparent;
|
|
49
49
|
box-shadow: none;
|
|
50
50
|
padding: 1rem;
|