@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.esm.js
CHANGED
|
@@ -17006,6 +17006,7 @@ var ExternalLink = function ExternalLink(_ref) {
|
|
|
17006
17006
|
_ref$tabIndex = _ref.tabIndex,
|
|
17007
17007
|
tabIndex = _ref$tabIndex === void 0 ? "0" : _ref$tabIndex,
|
|
17008
17008
|
dataQa = _ref.dataQa,
|
|
17009
|
+
ariaLabel = _ref.ariaLabel,
|
|
17009
17010
|
children = _ref.children;
|
|
17010
17011
|
var themeContext = useContext(ThemeContext);
|
|
17011
17012
|
var themeValues = createThemeValues(themeContext, fallbackValues$9, "Link", variant);
|
|
@@ -17022,7 +17023,8 @@ var ExternalLink = function ExternalLink(_ref) {
|
|
|
17022
17023
|
tabIndex: tabIndex,
|
|
17023
17024
|
extrastyles: extraStyles,
|
|
17024
17025
|
rel: newTab ? "noopener" : "",
|
|
17025
|
-
"data-qa": dataQa
|
|
17026
|
+
"data-qa": dataQa,
|
|
17027
|
+
"aria-label": ariaLabel
|
|
17026
17028
|
}, safeChildren(children, /*#__PURE__*/React.createElement("span", null)));
|
|
17027
17029
|
};
|
|
17028
17030
|
|