@thecb/components 6.2.2 → 6.2.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
|
@@ -17014,6 +17014,7 @@ var ExternalLink = function ExternalLink(_ref) {
|
|
|
17014
17014
|
_ref$tabIndex = _ref.tabIndex,
|
|
17015
17015
|
tabIndex = _ref$tabIndex === void 0 ? "0" : _ref$tabIndex,
|
|
17016
17016
|
dataQa = _ref.dataQa,
|
|
17017
|
+
ariaLabel = _ref.ariaLabel,
|
|
17017
17018
|
children = _ref.children;
|
|
17018
17019
|
var themeContext = React.useContext(styled.ThemeContext);
|
|
17019
17020
|
var themeValues = createThemeValues(themeContext, fallbackValues$9, "Link", variant);
|
|
@@ -17030,7 +17031,8 @@ var ExternalLink = function ExternalLink(_ref) {
|
|
|
17030
17031
|
tabIndex: tabIndex,
|
|
17031
17032
|
extrastyles: extraStyles,
|
|
17032
17033
|
rel: newTab ? "noopener" : "",
|
|
17033
|
-
"data-qa": dataQa
|
|
17034
|
+
"data-qa": dataQa,
|
|
17035
|
+
"aria-label": ariaLabel
|
|
17034
17036
|
}, safeChildren(children, /*#__PURE__*/React__default.createElement("span", null)));
|
|
17035
17037
|
};
|
|
17036
17038
|
|