@royaloperahouse/harmonic 0.13.1-a → 0.13.1-b
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/CHANGELOG.md +3 -0
- package/dist/components/atoms/Tab/Tab.d.ts +1 -1
- package/dist/components/molecules/SkipToMain/SkipToMain.style.d.ts +1 -1
- package/dist/harmonic.cjs.development.js +3 -1
- package/dist/harmonic.cjs.development.js.map +1 -1
- package/dist/harmonic.cjs.production.min.js +1 -1
- package/dist/harmonic.cjs.production.min.js.map +1 -1
- package/dist/harmonic.esm.js +3 -1
- package/dist/harmonic.esm.js.map +1 -1
- package/dist/types/types.d.ts +4 -0
- package/package.json +1 -1
package/dist/harmonic.esm.js
CHANGED
|
@@ -3733,7 +3733,8 @@ var Tab = function Tab(_ref) {
|
|
|
3733
3733
|
role = _ref.role,
|
|
3734
3734
|
ariaLabel = _ref.ariaLabel,
|
|
3735
3735
|
tabLinkId = _ref.tabLinkId,
|
|
3736
|
-
color = _ref.color
|
|
3736
|
+
color = _ref.color,
|
|
3737
|
+
isOpen = _ref.isOpen;
|
|
3737
3738
|
var clickHandler = function clickHandler() {
|
|
3738
3739
|
if (onClick) {
|
|
3739
3740
|
onClick(titleLink);
|
|
@@ -3752,6 +3753,7 @@ var Tab = function Tab(_ref) {
|
|
|
3752
3753
|
return /*#__PURE__*/React__default.createElement(TitleContainer, {
|
|
3753
3754
|
role: role,
|
|
3754
3755
|
"aria-label": ariaLabel,
|
|
3756
|
+
"aria-expanded": isOpen,
|
|
3755
3757
|
withTextInMobile: withTextInMobile,
|
|
3756
3758
|
withIcon: withIcon,
|
|
3757
3759
|
selected: selected,
|