@royaloperahouse/harmonic 0.13.1 → 0.13.2
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/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
|
@@ -3732,7 +3732,8 @@ var Tab = function Tab(_ref) {
|
|
|
3732
3732
|
className = _ref.className,
|
|
3733
3733
|
role = _ref.role,
|
|
3734
3734
|
ariaLabel = _ref.ariaLabel,
|
|
3735
|
-
color = _ref.color
|
|
3735
|
+
color = _ref.color,
|
|
3736
|
+
isOpen = _ref.isOpen;
|
|
3736
3737
|
var clickHandler = function clickHandler() {
|
|
3737
3738
|
if (onClick) {
|
|
3738
3739
|
onClick(titleLink);
|
|
@@ -3751,6 +3752,7 @@ var Tab = function Tab(_ref) {
|
|
|
3751
3752
|
return /*#__PURE__*/React__default.createElement(TitleContainer, {
|
|
3752
3753
|
role: role,
|
|
3753
3754
|
"aria-label": ariaLabel,
|
|
3755
|
+
"aria-expanded": isOpen,
|
|
3754
3756
|
withTextInMobile: withTextInMobile,
|
|
3755
3757
|
withIcon: withIcon,
|
|
3756
3758
|
selected: selected,
|