@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 CHANGED
@@ -1,3 +1,6 @@
1
+ ## [2.4.2]
2
+ - Logo change in main nav bar - added alt text, updated url, updated images for local testing
3
+
1
4
  ## [2.4.1]
2
5
  - Update Stream and Cinema badges with new logo.
3
6
  - Update Page and Compact headers with new badges.
@@ -5590,11 +5590,13 @@ var Logo = function Logo(_ref) {
5590
5590
  _ref$dataRoh = _ref.dataRoh,
5591
5591
  dataRoh = _ref$dataRoh === void 0 ? 'imgLogo' : _ref$dataRoh,
5592
5592
  _ref$urlLink = _ref.urlLink,
5593
- urlLink = _ref$urlLink === void 0 ? 'https://www.roh.org.uk/' : _ref$urlLink,
5593
+ urlLink = _ref$urlLink === void 0 ? 'https://www.rbo.org.uk/' : _ref$urlLink,
5594
5594
  desktopImage = _ref.desktopImage,
5595
5595
  devicesImage = _ref.devicesImage,
5596
5596
  _ref$title = _ref.title,
5597
- title = _ref$title === void 0 ? 'Royal Opera House' : _ref$title;
5597
+ title = _ref$title === void 0 ? 'Royal Ballet and Opera' : _ref$title,
5598
+ _ref$altText = _ref.altText,
5599
+ altText = _ref$altText === void 0 ? 'Royal Ballet and Opera Homepage' : _ref$altText;
5598
5600
  return /*#__PURE__*/React__default.createElement("a", {
5599
5601
  "data-roh": dataRoh,
5600
5602
  rel: "noopener noreferrer",
@@ -5607,7 +5609,8 @@ var Logo = function Logo(_ref) {
5607
5609
  srcSet: devicesImage ? devicesImage : desktopImage,
5608
5610
  media: devices.mobileAndTablet
5609
5611
  }), /*#__PURE__*/React__default.createElement("img", {
5610
- src: desktopImage
5612
+ src: desktopImage,
5613
+ alt: altText
5611
5614
  }))));
5612
5615
  };
5613
5616