@thecb/components 11.11.0-beta.2 → 11.11.0-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.esm.js
CHANGED
|
@@ -51548,7 +51548,11 @@ var Tooltip = function Tooltip(_ref) {
|
|
|
51548
51548
|
onBlur: function onBlur() {
|
|
51549
51549
|
return handleToggleTooltip(false);
|
|
51550
51550
|
},
|
|
51551
|
-
onKeyDown: handleKeyDown
|
|
51551
|
+
onKeyDown: handleKeyDown,
|
|
51552
|
+
tabIndex: "0",
|
|
51553
|
+
style: {
|
|
51554
|
+
cursor: "pointer"
|
|
51555
|
+
}
|
|
51552
51556
|
});
|
|
51553
51557
|
}
|
|
51554
51558
|
return /*#__PURE__*/React__default.createElement(ButtonWithAction, {
|
|
@@ -51567,6 +51571,7 @@ var Tooltip = function Tooltip(_ref) {
|
|
|
51567
51571
|
},
|
|
51568
51572
|
"data-qa": "tooltip-trigger-".concat(tooltipID),
|
|
51569
51573
|
text: triggerText,
|
|
51574
|
+
tabIndex: "0",
|
|
51570
51575
|
extraStyles: "\n color: ".concat(themeValues.linkColor, ";\n &:hover { color: ").concat(themeValues.hoverColor, "; text-decoration: none;}\n &:active, &:focus { color: ").concat(themeValues.activeColor, ";text-decoration: none;}\n button, span, &:hover span { text-decoration: none; }\n ")
|
|
51571
51576
|
});
|
|
51572
51577
|
};
|