@royaloperahouse/chord 2.4.1 → 2.4.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/chord.cjs.development.js +6 -3
- package/dist/chord.cjs.development.js.map +1 -1
- package/dist/chord.cjs.production.min.js +1 -1
- package/dist/chord.cjs.production.min.js.map +1 -1
- package/dist/chord.esm.js +6 -3
- package/dist/chord.esm.js.map +1 -1
- package/dist/components/atoms/Logo/Logo.d.ts +1 -1
- package/dist/types/types.d.ts +4 -0
- package/package.json +1 -1
package/dist/chord.esm.js
CHANGED
|
@@ -5593,11 +5593,13 @@ var Logo = function Logo(_ref) {
|
|
|
5593
5593
|
_ref$dataRoh = _ref.dataRoh,
|
|
5594
5594
|
dataRoh = _ref$dataRoh === void 0 ? 'imgLogo' : _ref$dataRoh,
|
|
5595
5595
|
_ref$urlLink = _ref.urlLink,
|
|
5596
|
-
urlLink = _ref$urlLink === void 0 ? 'https://www.
|
|
5596
|
+
urlLink = _ref$urlLink === void 0 ? 'https://www.rbo.org.uk/' : _ref$urlLink,
|
|
5597
5597
|
desktopImage = _ref.desktopImage,
|
|
5598
5598
|
devicesImage = _ref.devicesImage,
|
|
5599
5599
|
_ref$title = _ref.title,
|
|
5600
|
-
title = _ref$title === void 0 ? 'Royal Opera
|
|
5600
|
+
title = _ref$title === void 0 ? 'Royal Ballet and Opera' : _ref$title,
|
|
5601
|
+
_ref$altText = _ref.altText,
|
|
5602
|
+
altText = _ref$altText === void 0 ? 'Royal Ballet and Opera Homepage' : _ref$altText;
|
|
5601
5603
|
return /*#__PURE__*/React__default.createElement("a", {
|
|
5602
5604
|
"data-roh": dataRoh,
|
|
5603
5605
|
rel: "noopener noreferrer",
|
|
@@ -5610,7 +5612,8 @@ var Logo = function Logo(_ref) {
|
|
|
5610
5612
|
srcSet: devicesImage ? devicesImage : desktopImage,
|
|
5611
5613
|
media: devices.mobileAndTablet
|
|
5612
5614
|
}), /*#__PURE__*/React__default.createElement("img", {
|
|
5613
|
-
src: desktopImage
|
|
5615
|
+
src: desktopImage,
|
|
5616
|
+
alt: altText
|
|
5614
5617
|
}))));
|
|
5615
5618
|
};
|
|
5616
5619
|
|