@dreamcommerce/aurora 2.27.19 → 2.27.20-0

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.
@@ -59,6 +59,7 @@ var Gallery = /*#__PURE__*/function () {
59
59
  isCarouselEnabled: true,
60
60
  hasCopyLink: false,
61
61
  translations: {
62
+ galleryLabel: 'Galeria',
62
63
  copyLink: 'Skopiuj link do galerii',
63
64
  picture: 'Zdjęcie',
64
65
  copyLinkShortVersion: 'Skopiuj link',
@@ -94,6 +95,8 @@ var Gallery = /*#__PURE__*/function () {
94
95
 
95
96
  _rollupPluginBabelHelpers.defineProperty(this, "mouseUpTarget", void 0);
96
97
 
98
+ _rollupPluginBabelHelpers.defineProperty(this, "$triggerElement", void 0);
99
+
97
100
  _rollupPluginBabelHelpers.defineProperty(this, "transform", 0);
98
101
 
99
102
  _rollupPluginBabelHelpers.defineProperty(this, "partialTransform", 0);
@@ -147,11 +150,13 @@ var Gallery = /*#__PURE__*/function () {
147
150
  return;
148
151
  }
149
152
 
150
- _this.imageMarkups[index] = _this._createImageMarkup(index, _this.imageAttributes[index].source);
153
+ _this.imageMarkups[index] = _this._createImageMarkup(index, _this.imageAttributes[index].source, _this.imageAttributes[index].alt);
151
154
  });
152
155
  });
153
156
 
154
157
  _rollupPluginBabelHelpers.defineProperty(this, "remove", function (ev) {
158
+ var _this$$triggerElement;
159
+
155
160
  document.body.style.overflow = 'auto';
156
161
  document.body.style.position = '';
157
162
  window.removeEventListener('resize', _this.updatePreviewImage);
@@ -187,6 +192,25 @@ var Gallery = /*#__PURE__*/function () {
187
192
  _this.removeInertFromBodyChildrenElements();
188
193
 
189
194
  _this._disableTabLoop();
195
+
196
+ (_this$$triggerElement = _this.$triggerElement) === null || _this$$triggerElement === void 0 || _this$$triggerElement.focus();
197
+ });
198
+
199
+ _rollupPluginBabelHelpers.defineProperty(this, "_copyImageLinkWithKeyboard", function (ev) {
200
+ if (ev.key !== ' ' && ev.key !== 'Enter') return;
201
+ ev.preventDefault();
202
+
203
+ _this._copyImageLink();
204
+ });
205
+
206
+ _rollupPluginBabelHelpers.defineProperty(this, "_copyImageLink", function () {
207
+ var galleryUrl = get_url.getUrl(_this.options.name, _this.selectedImageNumber);
208
+ copy_to_clipboard.copy("".concat(galleryUrl, "-copied"));
209
+ var $copyLinkConfirmation = document.querySelector(_this.selectors.copyLinkConfirmation);
210
+ $copyLinkConfirmation.classList.remove(main_module['default'][css_classes.cssHide]);
211
+ setTimeout(function () {
212
+ $copyLinkConfirmation === null || $copyLinkConfirmation === void 0 || $copyLinkConfirmation.classList.add(main_module['default'][css_classes.cssHide]);
213
+ }, 1500);
190
214
  });
191
215
 
192
216
  _rollupPluginBabelHelpers.defineProperty(this, "_addInertToBodyChildrenElements", function () {
@@ -617,7 +641,7 @@ var Gallery = /*#__PURE__*/function () {
617
641
  });
618
642
  imageRange.forEach(function (index) {
619
643
  if (_this.imageMarkups[index] === null) {
620
- _this.imageMarkups[index] = _this._createImageMarkup(index, _this.imageAttributes[index].source);
644
+ _this.imageMarkups[index] = _this._createImageMarkup(index, _this.imageAttributes[index].source, _this.imageAttributes[0].alt);
621
645
  }
622
646
  });
623
647
 
@@ -996,6 +1020,7 @@ var Gallery = /*#__PURE__*/function () {
996
1020
 
997
1021
  this.$images.style.transform = "translateX(".concat(this.transform, "%)");
998
1022
  this.addListeners();
1023
+ this.$triggerElement = document.activeElement;
999
1024
 
1000
1025
  if (this.options.handleHistory) {
1001
1026
  handle_history.handleHistory(this.$gallery, this.options.name, this.selectedImageNumber, this.remove, this.showImage);
@@ -1008,6 +1033,8 @@ var Gallery = /*#__PURE__*/function () {
1008
1033
  this._addInertToBodyChildrenElements();
1009
1034
 
1010
1035
  this._enableTabLoop();
1036
+
1037
+ utilities.UiDomUtils.setFocusToFirstFocusableElementInContainer(this.$gallery);
1011
1038
  }
1012
1039
 
1013
1040
  return _rollupPluginBabelHelpers.createClass(Gallery, [{
@@ -1023,6 +1050,7 @@ var Gallery = /*#__PURE__*/function () {
1023
1050
 
1024
1051
  _this2.imageAttributes.push({
1025
1052
  source: $anchor.href,
1053
+ alt: $image.alt || '',
1026
1054
  id: $image.getAttribute('data-id') || '',
1027
1055
  description: imageDescription,
1028
1056
  maxImageWidth: 0,
@@ -1055,10 +1083,15 @@ var Gallery = /*#__PURE__*/function () {
1055
1083
  }, {
1056
1084
  key: "createMarkup",
1057
1085
  value: function createMarkup() {
1086
+ var _this$options$transla;
1087
+
1058
1088
  this.$gallery = document.createElement('div'); // used 2 separate add calls instead of 1 to handle IE11
1059
1089
 
1060
1090
  this.$gallery.classList.add(main_module['default'][css_classes.cssGallery]);
1061
1091
  this.$gallery.classList.add(constants.JS_CLASSES.newGallery);
1092
+ this.$gallery.setAttribute('role', 'region');
1093
+ this.$gallery.setAttribute('aria-roledescription', 'carousel');
1094
+ this.$gallery.setAttribute('aria-label', ((_this$options$transla = this.options.translations) === null || _this$options$transla === void 0 ? void 0 : _this$options$transla.galleryLabel) || '');
1062
1095
  var previousArrowMarkup = '';
1063
1096
  var nextArrowMarkup = '';
1064
1097
 
@@ -1073,7 +1106,7 @@ var Gallery = /*#__PURE__*/function () {
1073
1106
 
1074
1107
  var barMarkup = this._createBarMarkup();
1075
1108
 
1076
- var markup = "\n ".concat(barMarkup, "\n\n <div class=\"").concat(main_module['default'][css_classes.cssGalleryImagesContainer], " ").concat(constants.JS_CLASSES.imagesContainer, "\">\n ").concat(previousArrowMarkup, "\n\n <div class=\"").concat(main_module['default'][css_classes.cssGalleryImages], " ").concat(constants.JS_CLASSES.images, "\"></div>\n\n ").concat(nextArrowMarkup, "\n </div>\n ");
1109
+ var markup = "\n ".concat(barMarkup, "\n\n <div class=\"").concat(main_module['default'][css_classes.cssGalleryImagesContainer], " ").concat(constants.JS_CLASSES.imagesContainer, "\" aria-live=\"off\">\n ").concat(previousArrowMarkup, "\n\n <div class=\"").concat(main_module['default'][css_classes.cssGalleryImages], " ").concat(constants.JS_CLASSES.images, "\"></div>\n\n ").concat(nextArrowMarkup, "\n </div>\n ");
1077
1110
  this.$gallery.innerHTML = markup;
1078
1111
  document.body.append(this.$gallery);
1079
1112
  this.changeImageDescription();
@@ -1084,7 +1117,7 @@ var Gallery = /*#__PURE__*/function () {
1084
1117
  var imagesNumberMarkup = '';
1085
1118
  var copyLinkMarkup = '';
1086
1119
  var ariaLabelCloseButton = this.options.translations.ariaLabelCloseButton;
1087
- var imageDescriptionMarkup = "\n <div class=\"".concat(main_module['default'][css_classes.cssGalleryBarImageDescription], " ").concat(constants.JS_CLASSES.imageDescription, "\">\n </div>\n ");
1120
+ var imageDescriptionMarkup = "\n <div class=\"".concat(main_module['default'][css_classes.cssGalleryBarImageDescription], " ").concat(constants.JS_CLASSES.imageDescription, "\" id=\"gallery-label\" aria-live=\"polite\" aria-atomic=\"true\">\n </div>\n ");
1088
1121
 
1089
1122
  if (this.options.hasImageNumbers) {
1090
1123
  imagesNumberMarkup = this._createImageNumbersMarkup();
@@ -1104,21 +1137,21 @@ var Gallery = /*#__PURE__*/function () {
1104
1137
  }, {
1105
1138
  key: "_createCopyLinkMarkup",
1106
1139
  value: function _createCopyLinkMarkup() {
1107
- var _this$options$transla = this.options.translations,
1108
- copyLink = _this$options$transla.copyLink,
1109
- picture = _this$options$transla.picture,
1110
- copyLinkShortVersion = _this$options$transla.copyLinkShortVersion,
1111
- copyLinkConfirmation = _this$options$transla.copyLinkConfirmation;
1112
- return "\n <div class=\"".concat(main_module['default'][css_classes.cssGalleryBarCopyLink], " ").concat(constants.JS_CLASSES.copyLinkButton, "\">\n <span class=\"").concat(main_module['default'][css_classes.cssIcon], " ").concat(main_module['default'][css_classes.cssIconLink], " ").concat(main_module['default'][css_classes.cssHideMobile], "\"></span>\n <span class=\"").concat(main_module['default'][css_classes.cssHideDesktop], "\">").concat(copyLinkShortVersion, "</span>\n <span class=\"").concat(main_module['default'][css_classes.cssHideMobile], "\">\n ").concat(copyLink, " (").concat(picture, " <span class=\"").concat(constants.JS_CLASSES.selectedImageNumber, "\">").concat(this.selectedImageNumber, "</span>)\n </span>\n \n <div class=\"").concat(main_module['default'][css_classes.cssHide], " ").concat(main_module['default'][css_classes.cssGalleryBarCopyLinkConfirmation], "\">\n <span class=\"").concat(main_module['default'][css_classes.cssIcon], " ").concat(main_module['default'][css_classes.cssIconSuccess], "\"></span>\n\n <div class=\"").concat(main_module['default'][css_classes.cssGalleryBarCopyLinkConfirmationText], "\">\n ").concat(copyLinkConfirmation, "\n </div>\n </div>\n </div>\n ");
1140
+ var _this$options$transla2 = this.options.translations,
1141
+ copyLink = _this$options$transla2.copyLink,
1142
+ picture = _this$options$transla2.picture,
1143
+ copyLinkShortVersion = _this$options$transla2.copyLinkShortVersion,
1144
+ copyLinkConfirmation = _this$options$transla2.copyLinkConfirmation;
1145
+ return "\n <div class=\"".concat(main_module['default'][css_classes.cssGalleryBarCopyLink], " ").concat(constants.JS_CLASSES.copyLinkButton, "\" role=\"button\" tabindex=\"0\">\n <span class=\"").concat(main_module['default'][css_classes.cssIcon], " ").concat(main_module['default'][css_classes.cssIconLink], " ").concat(main_module['default'][css_classes.cssHideMobile], "\" aria-hidden=\"true\"></span>\n <span class=\"").concat(main_module['default'][css_classes.cssHideDesktop], "\">").concat(copyLinkShortVersion, "</span>\n <span class=\"").concat(main_module['default'][css_classes.cssHideMobile], "\">\n ").concat(copyLink, " (").concat(picture, " <span class=\"").concat(constants.JS_CLASSES.selectedImageNumber, "\">").concat(this.selectedImageNumber, "</span>)\n </span>\n \n <div class=\"").concat(main_module['default'][css_classes.cssHide], " ").concat(main_module['default'][css_classes.cssGalleryBarCopyLinkConfirmation], "\">\n <span class=\"").concat(main_module['default'][css_classes.cssIcon], " ").concat(main_module['default'][css_classes.cssIconSuccess], "\"></span>\n\n <div class=\"").concat(main_module['default'][css_classes.cssGalleryBarCopyLinkConfirmationText], "\">\n ").concat(copyLinkConfirmation, "\n </div>\n </div>\n </button>\n ");
1113
1146
  }
1114
1147
  }, {
1115
1148
  key: "_createNavigationMarkup",
1116
1149
  value: function _createNavigationMarkup(arrowType) {
1117
1150
  var arrowClasses = "".concat(main_module['default'][css_classes.cssIcon], " ").concat(main_module['default'][css_classes.cssIconArrow]);
1118
1151
  var arrowContainerClasses = "".concat(main_module['default'][css_classes.cssIconArrowContainer], " ").concat(constants.JS_CLASSES[arrowType]);
1119
- var _this$options$transla2 = this.options.translations,
1120
- ariaLabelNextButton = _this$options$transla2.ariaLabelNextButton,
1121
- ariaLabelPreviousButton = _this$options$transla2.ariaLabelPreviousButton;
1152
+ var _this$options$transla3 = this.options.translations,
1153
+ ariaLabelNextButton = _this$options$transla3.ariaLabelNextButton,
1154
+ ariaLabelPreviousButton = _this$options$transla3.ariaLabelPreviousButton;
1122
1155
  var isPreviousArrow = arrowType === 'previous';
1123
1156
  var ariaLabelButton = isPreviousArrow ? ariaLabelPreviousButton : ariaLabelNextButton;
1124
1157
 
@@ -1143,10 +1176,13 @@ var Gallery = /*#__PURE__*/function () {
1143
1176
  }
1144
1177
  }, {
1145
1178
  key: "_createImageMarkup",
1146
- value: function _createImageMarkup(imageIndex, source) {
1179
+ value: function _createImageMarkup(imageIndex, source, alt) {
1147
1180
  var $imageContainer = document.createElement('div');
1148
1181
  $imageContainer.classList.add(main_module['default'][css_classes.cssGalleryImageContainer]);
1149
1182
  $imageContainer.style.overflow = 'hidden';
1183
+ $imageContainer.setAttribute('role', 'group');
1184
+ $imageContainer.setAttribute('aria-roledescription', 'slide');
1185
+ $imageContainer.setAttribute('aria-label', alt);
1150
1186
  var barHeight = this.$bar.clientHeight;
1151
1187
  var containerHeight = window.innerHeight - barHeight;
1152
1188
  $imageContainer.style.height = containerHeight + 'px';
@@ -1164,6 +1200,7 @@ var Gallery = /*#__PURE__*/function () {
1164
1200
  $image.classList.add(main_module['default'][css_classes.cssHide]);
1165
1201
  $image.classList.add(constants.JS_CLASSES.image);
1166
1202
  $image.setAttribute('src', source);
1203
+ $image.setAttribute('alt', alt);
1167
1204
  $image.onload = this.hideLoader;
1168
1205
 
1169
1206
  if (maxHeightClass) {
@@ -1241,7 +1278,7 @@ var Gallery = /*#__PURE__*/function () {
1241
1278
  if (imageIndex === 0) {
1242
1279
  this.isLastTemporaryContainerExist = true;
1243
1280
 
1244
- var $temporaryMarkup = this._createImageMarkup(this.imagesCount - 1, this.imageAttributes[this.imagesCount - 1].source);
1281
+ var $temporaryMarkup = this._createImageMarkup(this.imagesCount - 1, this.imageAttributes[this.imagesCount - 1].source, this.imageAttributes[this.imagesCount - 1].alt);
1245
1282
 
1246
1283
  $temporaryMarkup.classList.add(constants.JS_CLASSES.lastTemporaryContainer);
1247
1284
  this.$images.prepend($temporaryMarkup);
@@ -1254,7 +1291,7 @@ var Gallery = /*#__PURE__*/function () {
1254
1291
  } else if (imageIndex === this.imagesCount - 1) {
1255
1292
  this.isFirstTemporaryContainerExist = true;
1256
1293
 
1257
- var _$temporaryMarkup = this._createImageMarkup(0, this.imageAttributes[0].source);
1294
+ var _$temporaryMarkup = this._createImageMarkup(0, this.imageAttributes[0].source, this.imageAttributes[0].alt);
1258
1295
 
1259
1296
  _$temporaryMarkup.classList.add(constants.JS_CLASSES.firstTemporaryContainer);
1260
1297
 
@@ -1271,7 +1308,7 @@ var Gallery = /*#__PURE__*/function () {
1271
1308
  var $closeButton = document.querySelector(this.selectors.close);
1272
1309
  $closeButton === null || $closeButton === void 0 || $closeButton.addEventListener('click', this.remove);
1273
1310
  $closeButton === null || $closeButton === void 0 || $closeButton.addEventListener('keydown', function (ev) {
1274
- if (ev.key !== 'Enter') return;
1311
+ if (ev.key !== 'Enter' && ev.key !== ' ') return;
1275
1312
 
1276
1313
  _this4.remove(ev);
1277
1314
 
@@ -1283,13 +1320,13 @@ var Gallery = /*#__PURE__*/function () {
1283
1320
  var $previousButton = this.$gallery.querySelector(this.selectors.previous);
1284
1321
  $nextButton === null || $nextButton === void 0 || $nextButton.addEventListener('click', this.handleNextImagePreview);
1285
1322
  $previousButton === null || $previousButton === void 0 || $previousButton.addEventListener('click', this.handlePreviousImagePreview);
1286
- $nextButton.addEventListener('keydown', function (ev) {
1287
- if (ev.key === 'Enter') {
1323
+ $nextButton === null || $nextButton === void 0 || $nextButton.addEventListener('keydown', function (ev) {
1324
+ if (ev.key === 'Enter' || ev.key === ' ') {
1288
1325
  _this4.handleNextImagePreview();
1289
1326
  }
1290
1327
  });
1291
- $previousButton.addEventListener('keydown', function (ev) {
1292
- if (ev.key === 'Enter') {
1328
+ $previousButton === null || $previousButton === void 0 || $previousButton.addEventListener('keydown', function (ev) {
1329
+ if (ev.key === 'Enter' || ev.key === ' ') {
1293
1330
  _this4.handlePreviousImagePreview();
1294
1331
  }
1295
1332
  });
@@ -1323,15 +1360,8 @@ var Gallery = /*#__PURE__*/function () {
1323
1360
 
1324
1361
  if (this.options.hasCopyLink) {
1325
1362
  var $copyLink = document.querySelector(this.selectors.copyLinkButton);
1326
- $copyLink.addEventListener('click', function () {
1327
- var galleryUrl = get_url.getUrl(_this4.options.name, _this4.selectedImageNumber);
1328
- copy_to_clipboard.copy("".concat(galleryUrl, "-copied"));
1329
- var $copyLinkConfirmation = document.querySelector(_this4.selectors.copyLinkConfirmation);
1330
- $copyLinkConfirmation.classList.remove(main_module['default'][css_classes.cssHide]);
1331
- setTimeout(function () {
1332
- $copyLinkConfirmation === null || $copyLinkConfirmation === void 0 || $copyLinkConfirmation.classList.add(main_module['default'][css_classes.cssHide]);
1333
- }, 1500);
1334
- });
1363
+ $copyLink.addEventListener('click', this._copyImageLink);
1364
+ $copyLink.addEventListener('keydown', this._copyImageLinkWithKeyboard);
1335
1365
  }
1336
1366
  }
1337
1367
  }, {
@@ -1 +1 @@
1
- {"version":3,"file":null,"sources":[null],"sourcesContent":[null],"names":[],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;"}
1
+ {"version":3,"file":null,"sources":[null],"sourcesContent":[null],"names":[],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;"}
@@ -4,7 +4,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
5
  var styleInject_es = require('../../../../../external/style-inject/dist/style-inject.es.js');
6
6
 
7
- var css_248z = "@font-face {\n font-family: 'aurora-icons';\n font-display: swap;\n src: url(https://dcsaascdn.net/fonts/aurora-icons.svg) format('svg'), url(https://dcsaascdn.net/fonts/aurora-icons.ttf) format('truetype'), url(https://dcsaascdn.net/fonts/aurora-icons.woff) format('woff');\n font-weight: normal;\n font-style: normal;\n}\n.main-module_gallery__1Ajgx {\n position: fixed;\n top: 0;\n bottom: 0;\n left: 0;\n right: 0;\n z-index: 1000;\n box-sizing: border-box;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n}\n.main-module_gallery__image__1LYNa {\n margin: auto;\n display: block;\n max-width: -webkit-max-content;\n max-width: -moz-max-content;\n max-width: max-content;\n max-height: -webkit-max-content;\n max-height: -moz-max-content;\n max-height: max-content;\n}\n.main-module_gallery__image_max-width__2uWqp {\n width: 100%;\n height: auto;\n}\n.main-module_gallery__image_max-height__3iunQ {\n height: 100%;\n width: auto;\n}\n.main-module_gallery__image_adjusted__Ix20O {\n max-width: 100%;\n max-height: 100%;\n}\n.main-module_gallery__image_max-sizes__w2lwL {\n height: auto;\n width: auto;\n}\n.main-module_gallery__image-container__2uLDK {\n display: flex;\n overflow: auto;\n scroll-behavior: smooth;\n}\n.main-module_gallery__image-container__2uLDK::-webkit-scrollbar {\n width: 7px;\n height: 7px;\n}\n.main-module_gallery__image-container__2uLDK::-webkit-scrollbar-thumb {\n background-color: rgba(0, 0, 0, 0.4);\n}\n.main-module_gallery__images__19e1P {\n display: -ms-grid;\n display: grid;\n height: 100%;\n -ms-grid-rows: 1fr;\n grid-template-rows: 1fr;\n}\n.main-module_gallery__images-container__y3z5v {\n overflow: hidden;\n width: 100%;\n background-color: rgba(255, 255, 255, 0.9);\n}\n.main-module_gallery__images_with-transition__1cAJq {\n transition: transform 0.3s cubic-bezier(0.25, 0.25, 0.75, 1) 0s;\n}\n.main-module_gallery-bar__2jTh6 {\n height: 60px;\n display: -ms-grid;\n display: grid;\n -ms-grid-columns: -webkit-max-content 1fr (-webkit-max-content)[2];\n -ms-grid-columns: max-content 1fr (max-content)[2];\n grid-template-columns: -webkit-max-content 1fr repeat(2, -webkit-max-content);\n grid-template-columns: max-content 1fr repeat(2, max-content);\n grid-template-areas: 'imageNumbers description copyLink close';\n -ms-grid-rows: 1fr;\n grid-template-rows: 1fr;\n align-items: center;\n background-color: #242424;\n color: #ffffff;\n padding: 0 20px;\n position: relative;\n font-size: 13px;\n font-weight: bold;\n}\n.main-module_gallery-bar__2jTh6 .main-module_icon__2BB-1 {\n font-size: 16px;\n}\n.main-module_gallery-bar__2jTh6 .main-module_icon__2BB-1:hover {\n cursor: pointer;\n}\n.main-module_gallery-bar__2jTh6 .main-module_icon_inactive__2QRrA {\n color: #5c657e;\n}\n.main-module_gallery-bar__2jTh6 .main-module_icon_inactive__2QRrA:hover {\n cursor: default;\n}\n.main-module_gallery-bar__image-numbers__2gLMV {\n -ms-grid-row: 1;\n -ms-grid-column: 1;\n grid-area: imageNumbers;\n margin-right: 50px;\n}\n.main-module_gallery-bar__image-description__15_99 {\n -ms-grid-row: 1;\n -ms-grid-column: 2;\n grid-area: description;\n color: #d0e6ff;\n font-weight: normal;\n overflow-wrap: anywhere;\n display: none;\n}\n.main-module_gallery-bar__copy-link__25EN6 {\n -ms-grid-row: 1;\n -ms-grid-column: 3;\n grid-area: copyLink;\n display: flex;\n font-size: 12px;\n border: 2px solid #ffffff;\n border-radius: 3px;\n padding: 6px 10px;\n margin-left: 50px;\n}\n.main-module_gallery-bar__copy-link__25EN6:hover {\n cursor: pointer;\n}\n.main-module_gallery-bar__copy-link__25EN6 .main-module_icon__2BB-1 {\n margin-right: 11px;\n}\n.main-module_gallery-bar__copy-link__25EN6 .main-module_hide_desktop__3M7Iv {\n display: inline-block;\n}\n.main-module_gallery-bar__copy-link_confirmation__2Q0uN {\n position: absolute;\n top: 80px;\n left: 0;\n right: 0;\n margin: 0 auto;\n width: -webkit-max-content;\n width: -moz-max-content;\n width: max-content;\n min-width: 15rem;\n background-color: #d2eec4;\n z-index: 5;\n display: flex;\n align-items: center;\n max-width: 100%;\n padding: 1rem;\n border-radius: 3px;\n color: #5a9986;\n}\n.main-module_gallery-bar__copy-link_confirmation-text__14S1V {\n padding: 0 10px;\n text-align: center;\n min-width: 8rem;\n width: 100%;\n}\n.main-module_gallery-bar__image-close__3tyC0 {\n -ms-grid-row: 1;\n -ms-grid-column: 4;\n grid-area: close;\n -ms-grid-column-align: end;\n justify-self: end;\n margin-left: 30px;\n}\n.main-module_gallery__1Ajgx .main-module_gallery-bar__copy-link__25EN6 .main-module_hide_mobile__37dVg {\n display: none;\n}\n.main-module_gallery__1Ajgx .main-module_loader__mask__2I5iM {\n background: #242424;\n display: flex;\n justify-content: center;\n align-items: center;\n width: 100%;\n}\n.main-module_gallery__1Ajgx .main-module_loader__mask__2I5iM::after {\n content: '';\n background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIHZpZXdCb3g9IjAgMCAxOCAxOCI+CiAgICA8ZGVmcz4KICAgICAgICA8cGF0aCBpZD0iYSIgZD0iTTkuNDc0IDBIMTh2OS40NzRIOS40NzR6Ii8+CiAgICA8L2RlZnM+CiAgICA8ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxwYXRoIGZpbGw9IiNERUU0RjciIGQ9Ik05IDE4QTkgOSAwIDEgMSA5IDBhOSA5IDAgMCAxIDAgMTh6bTAtMi42NDNBNi4zNTcgNi4zNTcgMCAxIDAgOSAyLjY0M2E2LjM1NyA2LjM1NyAwIDAgMCAwIDEyLjcxNHoiLz4KICAgICAgICA8bWFzayBpZD0iYiIgZmlsbD0iI2ZmZiI+CiAgICAgICAgICAgIDx1c2UgeGxpbms6aHJlZj0iI2EiLz4KICAgICAgICA8L21hc2s+CiAgICAgICAgPHBhdGggZmlsbD0iIzNDODNFQyIgZD0iTTkgMThBOSA5IDAgMSAxIDkgMGE5IDkgMCAwIDEgMCAxOHptMC0yLjY0M0E2LjM1NyA2LjM1NyAwIDEgMCA5IDIuNjQzYTYuMzU3IDYuMzU3IDAgMCAwIDAgMTIuNzE0eiIgbWFzaz0idXJsKCNiKSIvPgogICAgPC9nPgo8L3N2Zz4=') no-repeat;\n background-size: 30px 30px;\n display: block;\n width: 30px;\n height: 30px;\n -webkit-animation: main-module_rotate__yjo_3 2s linear infinite;\n animation: main-module_rotate__yjo_3 2s linear infinite;\n transform-origin: 50% 50%;\n}\n.main-module_gallery__1Ajgx .main-module_icon__2BB-1 {\n display: inline-block;\n font-family: 'aurora-icons';\n font-style: normal;\n font-weight: normal;\n font-variant: normal;\n text-transform: none;\n line-height: inherit;\n text-decoration: none;\n position: relative;\n vertical-align: middle;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n.main-module_gallery__1Ajgx .main-module_icon__2BB-1::after {\n content: '';\n position: absolute;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n}\n.main-module_gallery__1Ajgx .main-module_icon-close__1bvaY::before {\n content: '\\E90D';\n}\n.main-module_gallery__1Ajgx .main-module_icon-loader__2wviL::before {\n content: '\\E906';\n}\n.main-module_gallery__1Ajgx .main-module_icon-link__rVNQ8::before {\n content: '\\E973';\n}\n.main-module_gallery__1Ajgx .main-module_icon-success__1ltet::before {\n content: '\\E93D';\n}\n.main-module_gallery__1Ajgx .main-module_icon-arrow__2lOOE {\n position: relative;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n margin-top: -60px;\n font-size: 19px;\n color: #ffffff;\n}\n.main-module_gallery__1Ajgx .main-module_icon-arrow__2lOOE::before {\n content: '\\E920';\n}\n.main-module_gallery__1Ajgx .main-module_icon-arrow-container__2jvGl {\n height: 100%;\n width: 52px;\n position: fixed;\n top: 60px;\n background-color: rgba(36, 36, 36, 0.3);\n z-index: 2;\n cursor: pointer;\n}\n.main-module_gallery__1Ajgx .main-module_icon-arrow-container_previous__2y-vp {\n left: 0;\n}\n.main-module_gallery__1Ajgx .main-module_icon-arrow-container_next__1gy5p {\n right: 0;\n}\n.main-module_gallery__1Ajgx .main-module_icon-arrow-container__2jvGl:hover {\n background-color: rgba(36, 36, 36, 0.6);\n}\n.main-module_gallery__1Ajgx .main-module_icon-arrow_rotate-180__3tVhZ {\n transform: translate(-50%, -50%) rotate(180deg);\n}\n.main-module_gallery__1Ajgx .main-module_hide__2dq3c {\n display: none !important;\n}\n.main-module_gallery__1Ajgx .main-module_hide_mobile__37dVg {\n display: none;\n}\n.main-module_gallery__1Ajgx .main-module_zoom-in__2kYCX {\n cursor: zoom-in;\n}\n.main-module_gallery__1Ajgx .main-module_zoom-out__2DXiQ {\n cursor: zoom-out;\n}\n.main-module_gallery__1Ajgx .main-module_grabbing__2uCRI {\n cursor: -webkit-grabbing;\n cursor: grabbing;\n}\n.main-module_gallery_mobile__2NF8_ .main-module_gallery__images-container__y3z5v {\n background-color: #242424;\n}\n.main-module_gallery_mobile__2NF8_ .main-module_gallery__images_with-transition__1cAJq {\n transition: transform 0.3s cubic-bezier(0.25, 0.25, 0.25, 1) 0s;\n}\n@media screen and (min-width: 576px) {\n .main-module_gallery__1Ajgx .main-module_gallery-bar__image-description__15_99 {\n display: block;\n }\n .main-module_gallery__1Ajgx .main-module_gallery-bar__copy-link_confirmation__2Q0uN {\n min-width: 20rem;\n }\n}\n@media screen and (min-width: 576px) and (max-width: 820px) {\n .main-module_gallery-bar__2jTh6 {\n height: 80px;\n }\n .main-module_gallery-bar__copy-link_confirmation__2Q0uN {\n top: 100px;\n }\n .main-module_gallery__1Ajgx .main-module_icon-arrow-container__2jvGl {\n top: 80px;\n }\n}\n@media screen and (min-width: 820px) {\n .main-module_gallery__1Ajgx .main-module_hide_mobile__37dVg {\n display: block;\n }\n .main-module_gallery__1Ajgx .main-module_gallery-bar__image-close__3tyC0 {\n margin-left: 50px;\n }\n .main-module_gallery__1Ajgx .main-module_gallery-bar__copy-link__25EN6 .main-module_hide_mobile__37dVg {\n display: block;\n }\n .main-module_gallery__1Ajgx .main-module_gallery-bar__copy-link__25EN6 .main-module_hide_desktop__3M7Iv {\n display: none;\n }\n}\n@-webkit-keyframes main-module_rotate__yjo_3 {\n from {\n transform: rotate(0deg);\n }\n to {\n transform: rotate(360deg);\n }\n}\n@keyframes main-module_rotate__yjo_3 {\n from {\n transform: rotate(0deg);\n }\n to {\n transform: rotate(360deg);\n }\n}\n";
7
+ var css_248z = "@font-face {\n font-family: 'aurora-icons';\n font-display: swap;\n src: url(https://dcsaascdn.net/fonts/aurora-icons.svg) format('svg'), url(https://dcsaascdn.net/fonts/aurora-icons.ttf) format('truetype'), url(https://dcsaascdn.net/fonts/aurora-icons.woff) format('woff');\n font-weight: normal;\n font-style: normal;\n}\n.main-module_gallery__1Ajgx {\n position: fixed;\n top: 0;\n bottom: 0;\n left: 0;\n right: 0;\n z-index: 1000;\n box-sizing: border-box;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n}\n.main-module_gallery__image__1LYNa {\n margin: auto;\n display: block;\n max-width: -webkit-max-content;\n max-width: -moz-max-content;\n max-width: max-content;\n max-height: -webkit-max-content;\n max-height: -moz-max-content;\n max-height: max-content;\n}\n.main-module_gallery__image_max-width__2uWqp {\n width: 100%;\n height: auto;\n}\n.main-module_gallery__image_max-height__3iunQ {\n height: 100%;\n width: auto;\n}\n.main-module_gallery__image_adjusted__Ix20O {\n max-width: 100%;\n max-height: 100%;\n}\n.main-module_gallery__image_max-sizes__w2lwL {\n height: auto;\n width: auto;\n}\n.main-module_gallery__image-container__2uLDK {\n display: flex;\n overflow: auto;\n scroll-behavior: smooth;\n}\n.main-module_gallery__image-container__2uLDK::-webkit-scrollbar {\n width: 7px;\n height: 7px;\n}\n.main-module_gallery__image-container__2uLDK::-webkit-scrollbar-thumb {\n background-color: rgba(0, 0, 0, 0.4);\n}\n.main-module_gallery__images__19e1P {\n display: -ms-grid;\n display: grid;\n height: 100%;\n -ms-grid-rows: 1fr;\n grid-template-rows: 1fr;\n}\n.main-module_gallery__images-container__y3z5v {\n overflow: hidden;\n width: 100%;\n background-color: rgba(255, 255, 255, 0.9);\n}\n.main-module_gallery__images_with-transition__1cAJq {\n transition: transform 0.3s cubic-bezier(0.25, 0.25, 0.75, 1) 0s;\n}\n.main-module_gallery-bar__2jTh6 {\n height: 60px;\n display: -ms-grid;\n display: grid;\n -ms-grid-columns: -webkit-max-content 1fr (-webkit-max-content)[2];\n -ms-grid-columns: max-content 1fr (max-content)[2];\n grid-template-columns: -webkit-max-content 1fr repeat(2, -webkit-max-content);\n grid-template-columns: max-content 1fr repeat(2, max-content);\n grid-template-areas: 'imageNumbers description copyLink close';\n -ms-grid-rows: 1fr;\n grid-template-rows: 1fr;\n align-items: center;\n background-color: #242424;\n color: #ffffff;\n padding: 0 20px;\n position: relative;\n font-size: 13px;\n font-weight: bold;\n}\n.main-module_gallery-bar__2jTh6 *:focus {\n outline-color: #ffffff;\n outline-offset: 0;\n}\n.main-module_gallery-bar__2jTh6 .main-module_icon__2BB-1 {\n font-size: 16px;\n}\n.main-module_gallery-bar__2jTh6 .main-module_icon__2BB-1:hover {\n cursor: pointer;\n}\n.main-module_gallery-bar__2jTh6 .main-module_icon_inactive__2QRrA {\n color: #5c657e;\n}\n.main-module_gallery-bar__2jTh6 .main-module_icon_inactive__2QRrA:hover {\n cursor: default;\n}\n.main-module_gallery-bar__image-numbers__2gLMV {\n -ms-grid-row: 1;\n -ms-grid-column: 1;\n grid-area: imageNumbers;\n margin-right: 50px;\n}\n.main-module_gallery-bar__image-description__15_99 {\n -ms-grid-row: 1;\n -ms-grid-column: 2;\n grid-area: description;\n color: #d0e6ff;\n font-weight: normal;\n overflow-wrap: anywhere;\n display: none;\n}\n.main-module_gallery-bar__copy-link__25EN6 {\n -ms-grid-row: 1;\n -ms-grid-column: 3;\n grid-area: copyLink;\n display: flex;\n font-size: 12px;\n border: 2px solid #ffffff;\n border-radius: 3px;\n padding: 6px 10px;\n margin-left: 50px;\n color: #ffffff;\n font-size: 100%;\n font-weight: bold;\n}\n.main-module_gallery-bar__copy-link__25EN6:hover {\n cursor: pointer;\n}\n.main-module_gallery-bar__copy-link__25EN6 .main-module_icon__2BB-1 {\n margin-right: 11px;\n}\n.main-module_gallery-bar__copy-link__25EN6 .main-module_hide_desktop__3M7Iv {\n display: inline-block;\n}\n.main-module_gallery-bar__copy-link_confirmation__2Q0uN {\n position: absolute;\n top: 80px;\n left: 0;\n right: 0;\n margin: 0 auto;\n width: -webkit-max-content;\n width: -moz-max-content;\n width: max-content;\n min-width: 15rem;\n background-color: #d2eec4;\n z-index: 5;\n display: flex;\n align-items: center;\n max-width: 100%;\n padding: 1rem;\n border-radius: 3px;\n color: #5a9986;\n}\n.main-module_gallery-bar__copy-link_confirmation-text__14S1V {\n padding: 0 10px;\n text-align: center;\n min-width: 8rem;\n width: 100%;\n}\n.main-module_gallery-bar__image-close__3tyC0 {\n -ms-grid-row: 1;\n -ms-grid-column: 4;\n grid-area: close;\n -ms-grid-column-align: end;\n justify-self: end;\n margin-left: 30px;\n}\n.main-module_gallery__1Ajgx .main-module_gallery-bar__copy-link__25EN6 .main-module_hide_mobile__37dVg {\n display: none;\n}\n.main-module_gallery__1Ajgx .main-module_loader__mask__2I5iM {\n background: #242424;\n display: flex;\n justify-content: center;\n align-items: center;\n width: 100%;\n}\n.main-module_gallery__1Ajgx .main-module_loader__mask__2I5iM::after {\n content: '';\n background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIHZpZXdCb3g9IjAgMCAxOCAxOCI+CiAgICA8ZGVmcz4KICAgICAgICA8cGF0aCBpZD0iYSIgZD0iTTkuNDc0IDBIMTh2OS40NzRIOS40NzR6Ii8+CiAgICA8L2RlZnM+CiAgICA8ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxwYXRoIGZpbGw9IiNERUU0RjciIGQ9Ik05IDE4QTkgOSAwIDEgMSA5IDBhOSA5IDAgMCAxIDAgMTh6bTAtMi42NDNBNi4zNTcgNi4zNTcgMCAxIDAgOSAyLjY0M2E2LjM1NyA2LjM1NyAwIDAgMCAwIDEyLjcxNHoiLz4KICAgICAgICA8bWFzayBpZD0iYiIgZmlsbD0iI2ZmZiI+CiAgICAgICAgICAgIDx1c2UgeGxpbms6aHJlZj0iI2EiLz4KICAgICAgICA8L21hc2s+CiAgICAgICAgPHBhdGggZmlsbD0iIzNDODNFQyIgZD0iTTkgMThBOSA5IDAgMSAxIDkgMGE5IDkgMCAwIDEgMCAxOHptMC0yLjY0M0E2LjM1NyA2LjM1NyAwIDEgMCA5IDIuNjQzYTYuMzU3IDYuMzU3IDAgMCAwIDAgMTIuNzE0eiIgbWFzaz0idXJsKCNiKSIvPgogICAgPC9nPgo8L3N2Zz4=') no-repeat;\n background-size: 30px 30px;\n display: block;\n width: 30px;\n height: 30px;\n -webkit-animation: main-module_rotate__yjo_3 2s linear infinite;\n animation: main-module_rotate__yjo_3 2s linear infinite;\n transform-origin: 50% 50%;\n}\n.main-module_gallery__1Ajgx .main-module_icon__2BB-1 {\n display: inline-block;\n font-family: 'aurora-icons';\n font-style: normal;\n font-weight: normal;\n font-variant: normal;\n text-transform: none;\n line-height: inherit;\n text-decoration: none;\n position: relative;\n vertical-align: middle;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n.main-module_gallery__1Ajgx .main-module_icon__2BB-1::after {\n content: '';\n position: absolute;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n}\n.main-module_gallery__1Ajgx .main-module_icon-close__1bvaY::before {\n content: '\\E90D';\n}\n.main-module_gallery__1Ajgx .main-module_icon-loader__2wviL::before {\n content: '\\E906';\n}\n.main-module_gallery__1Ajgx .main-module_icon-link__rVNQ8::before {\n content: '\\E973';\n}\n.main-module_gallery__1Ajgx .main-module_icon-success__1ltet::before {\n content: '\\E93D';\n}\n.main-module_gallery__1Ajgx .main-module_icon-arrow__2lOOE {\n position: relative;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n margin-top: -60px;\n font-size: 19px;\n color: #ffffff;\n}\n.main-module_gallery__1Ajgx .main-module_icon-arrow__2lOOE::before {\n content: '\\E920';\n}\n.main-module_gallery__1Ajgx .main-module_icon-arrow-container__2jvGl {\n height: 100%;\n width: 52px;\n position: fixed;\n top: 60px;\n background-color: rgba(36, 36, 36, 0.3);\n z-index: 2;\n cursor: pointer;\n}\n.main-module_gallery__1Ajgx .main-module_icon-arrow-container_previous__2y-vp {\n left: 0;\n}\n.main-module_gallery__1Ajgx .main-module_icon-arrow-container_next__1gy5p {\n right: 0;\n}\n.main-module_gallery__1Ajgx .main-module_icon-arrow-container__2jvGl:hover {\n background-color: rgba(36, 36, 36, 0.6);\n}\n.main-module_gallery__1Ajgx .main-module_icon-arrow_rotate-180__3tVhZ {\n transform: translate(-50%, -50%) rotate(180deg);\n}\n.main-module_gallery__1Ajgx .main-module_hide__2dq3c {\n display: none !important;\n}\n.main-module_gallery__1Ajgx .main-module_hide_mobile__37dVg {\n display: none;\n}\n.main-module_gallery__1Ajgx .main-module_zoom-in__2kYCX {\n cursor: zoom-in;\n}\n.main-module_gallery__1Ajgx .main-module_zoom-out__2DXiQ {\n cursor: zoom-out;\n}\n.main-module_gallery__1Ajgx .main-module_grabbing__2uCRI {\n cursor: -webkit-grabbing;\n cursor: grabbing;\n}\n.main-module_gallery_mobile__2NF8_ .main-module_gallery__images-container__y3z5v {\n background-color: #242424;\n}\n.main-module_gallery_mobile__2NF8_ .main-module_gallery__images_with-transition__1cAJq {\n transition: transform 0.3s cubic-bezier(0.25, 0.25, 0.25, 1) 0s;\n}\n@media screen and (min-width: 576px) {\n .main-module_gallery__1Ajgx .main-module_gallery-bar__image-description__15_99 {\n display: block;\n }\n .main-module_gallery__1Ajgx .main-module_gallery-bar__copy-link_confirmation__2Q0uN {\n min-width: 20rem;\n }\n}\n@media screen and (min-width: 576px) and (max-width: 820px) {\n .main-module_gallery-bar__2jTh6 {\n height: 80px;\n }\n .main-module_gallery-bar__copy-link_confirmation__2Q0uN {\n top: 100px;\n }\n .main-module_gallery__1Ajgx .main-module_icon-arrow-container__2jvGl {\n top: 80px;\n }\n}\n@media screen and (min-width: 820px) {\n .main-module_gallery__1Ajgx .main-module_hide_mobile__37dVg {\n display: block;\n }\n .main-module_gallery__1Ajgx .main-module_gallery-bar__image-close__3tyC0 {\n margin-left: 50px;\n }\n .main-module_gallery__1Ajgx .main-module_gallery-bar__copy-link__25EN6 .main-module_hide_mobile__37dVg {\n display: block;\n }\n .main-module_gallery__1Ajgx .main-module_gallery-bar__copy-link__25EN6 .main-module_hide_desktop__3M7Iv {\n display: none;\n }\n}\n@-webkit-keyframes main-module_rotate__yjo_3 {\n from {\n transform: rotate(0deg);\n }\n to {\n transform: rotate(360deg);\n }\n}\n@keyframes main-module_rotate__yjo_3 {\n from {\n transform: rotate(0deg);\n }\n to {\n transform: rotate(360deg);\n }\n}\n";
8
8
  var cssClasses = {
9
9
  "gallery": "main-module_gallery__1Ajgx",
10
10
  "gallery__image": "main-module_gallery__image__1LYNa",
@@ -34,6 +34,7 @@ export default class Gallery implements IGallery {
34
34
  newImagesIndex: Array<number>;
35
35
  mouseDownTarget: HTMLElement;
36
36
  mouseUpTarget: HTMLElement;
37
+ $triggerElement: HTMLElement | null;
37
38
  transform: number;
38
39
  partialTransform: number;
39
40
  isAnimating: boolean;
@@ -82,6 +83,8 @@ export default class Gallery implements IGallery {
82
83
  appendTemporaryImage(imageIndex: number): void;
83
84
  remove: (ev: Event) => void;
84
85
  addListeners(): void;
86
+ private _copyImageLinkWithKeyboard;
87
+ private _copyImageLink;
85
88
  private _focusCurrentImageOutsideGallery;
86
89
  private _addInertToBodyChildrenElements;
87
90
  private _enableTabLoop;
@@ -5,7 +5,7 @@ import { getUrl } from './utilities/get_url.js';
5
5
  import { copy } from './utilities/copy_to_clipboard.js';
6
6
  import { checkIsTouchDevice } from './utilities/check_is_touch_device.js';
7
7
  import { handleHistory } from './utilities/handle_history.js';
8
- import { cssGalleryImageContainer, cssGalleryBarCopyLinkConfirmation, cssGalleryBar, cssIconArrowContainer, cssGrabbing, cssZoomOut, cssGalleryImagesWithTransition, cssHide, cssZoomIn, cssGalleryImageAdjusted, cssGallery, cssGalleryMobile, cssIcon, cssIconClose, cssGalleryBarImageClose, cssGalleryBarImageNumbers, cssGalleryBarCopyLink, cssIconLink, cssHideMobile, cssHideDesktop, cssIconSuccess, cssGalleryBarCopyLinkConfirmationText, cssLoaderMask, cssGalleryImage, cssGalleryImagesContainer, cssGalleryImages, cssGalleryBarImageDescription, cssIconArrow, cssIconArrowRotate180, cssIconArrowContainerPrevious, cssIconArrowContainerNext, cssGalleryImageMaxWidth, cssGalleryImageMaxHeight } from './css_classes.js';
8
+ import { cssGalleryImageContainer, cssGalleryBarCopyLinkConfirmation, cssGalleryBar, cssIconArrowContainer, cssHide, cssGrabbing, cssZoomOut, cssGalleryImagesWithTransition, cssZoomIn, cssGalleryImageAdjusted, cssGallery, cssGalleryMobile, cssIcon, cssIconClose, cssGalleryBarImageClose, cssGalleryBarImageNumbers, cssGalleryBarCopyLink, cssIconLink, cssHideMobile, cssHideDesktop, cssIconSuccess, cssGalleryBarCopyLinkConfirmationText, cssLoaderMask, cssGalleryImage, cssGalleryImagesContainer, cssGalleryImages, cssGalleryBarImageDescription, cssIconArrow, cssIconArrowRotate180, cssIconArrowContainerPrevious, cssIconArrowContainerNext, cssGalleryImageMaxWidth, cssGalleryImageMaxHeight } from './css_classes.js';
9
9
  import Hammer from 'hammerjs';
10
10
  import cssClasses from '../../css/gallery/main.module.less.js';
11
11
 
@@ -51,6 +51,7 @@ var Gallery = /*#__PURE__*/function () {
51
51
  isCarouselEnabled: true,
52
52
  hasCopyLink: false,
53
53
  translations: {
54
+ galleryLabel: 'Galeria',
54
55
  copyLink: 'Skopiuj link do galerii',
55
56
  picture: 'Zdjęcie',
56
57
  copyLinkShortVersion: 'Skopiuj link',
@@ -86,6 +87,8 @@ var Gallery = /*#__PURE__*/function () {
86
87
 
87
88
  _defineProperty(this, "mouseUpTarget", void 0);
88
89
 
90
+ _defineProperty(this, "$triggerElement", void 0);
91
+
89
92
  _defineProperty(this, "transform", 0);
90
93
 
91
94
  _defineProperty(this, "partialTransform", 0);
@@ -139,11 +142,13 @@ var Gallery = /*#__PURE__*/function () {
139
142
  return;
140
143
  }
141
144
 
142
- _this.imageMarkups[index] = _this._createImageMarkup(index, _this.imageAttributes[index].source);
145
+ _this.imageMarkups[index] = _this._createImageMarkup(index, _this.imageAttributes[index].source, _this.imageAttributes[index].alt);
143
146
  });
144
147
  });
145
148
 
146
149
  _defineProperty(this, "remove", function (ev) {
150
+ var _this$$triggerElement;
151
+
147
152
  document.body.style.overflow = 'auto';
148
153
  document.body.style.position = '';
149
154
  window.removeEventListener('resize', _this.updatePreviewImage);
@@ -179,6 +184,25 @@ var Gallery = /*#__PURE__*/function () {
179
184
  _this.removeInertFromBodyChildrenElements();
180
185
 
181
186
  _this._disableTabLoop();
187
+
188
+ (_this$$triggerElement = _this.$triggerElement) === null || _this$$triggerElement === void 0 || _this$$triggerElement.focus();
189
+ });
190
+
191
+ _defineProperty(this, "_copyImageLinkWithKeyboard", function (ev) {
192
+ if (ev.key !== ' ' && ev.key !== 'Enter') return;
193
+ ev.preventDefault();
194
+
195
+ _this._copyImageLink();
196
+ });
197
+
198
+ _defineProperty(this, "_copyImageLink", function () {
199
+ var galleryUrl = getUrl(_this.options.name, _this.selectedImageNumber);
200
+ copy("".concat(galleryUrl, "-copied"));
201
+ var $copyLinkConfirmation = document.querySelector(_this.selectors.copyLinkConfirmation);
202
+ $copyLinkConfirmation.classList.remove(cssClasses[cssHide]);
203
+ setTimeout(function () {
204
+ $copyLinkConfirmation === null || $copyLinkConfirmation === void 0 || $copyLinkConfirmation.classList.add(cssClasses[cssHide]);
205
+ }, 1500);
182
206
  });
183
207
 
184
208
  _defineProperty(this, "_addInertToBodyChildrenElements", function () {
@@ -609,7 +633,7 @@ var Gallery = /*#__PURE__*/function () {
609
633
  });
610
634
  imageRange.forEach(function (index) {
611
635
  if (_this.imageMarkups[index] === null) {
612
- _this.imageMarkups[index] = _this._createImageMarkup(index, _this.imageAttributes[index].source);
636
+ _this.imageMarkups[index] = _this._createImageMarkup(index, _this.imageAttributes[index].source, _this.imageAttributes[0].alt);
613
637
  }
614
638
  });
615
639
 
@@ -988,6 +1012,7 @@ var Gallery = /*#__PURE__*/function () {
988
1012
 
989
1013
  this.$images.style.transform = "translateX(".concat(this.transform, "%)");
990
1014
  this.addListeners();
1015
+ this.$triggerElement = document.activeElement;
991
1016
 
992
1017
  if (this.options.handleHistory) {
993
1018
  handleHistory(this.$gallery, this.options.name, this.selectedImageNumber, this.remove, this.showImage);
@@ -1000,6 +1025,8 @@ var Gallery = /*#__PURE__*/function () {
1000
1025
  this._addInertToBodyChildrenElements();
1001
1026
 
1002
1027
  this._enableTabLoop();
1028
+
1029
+ UiDomUtils.setFocusToFirstFocusableElementInContainer(this.$gallery);
1003
1030
  }
1004
1031
 
1005
1032
  return _createClass(Gallery, [{
@@ -1015,6 +1042,7 @@ var Gallery = /*#__PURE__*/function () {
1015
1042
 
1016
1043
  _this2.imageAttributes.push({
1017
1044
  source: $anchor.href,
1045
+ alt: $image.alt || '',
1018
1046
  id: $image.getAttribute('data-id') || '',
1019
1047
  description: imageDescription,
1020
1048
  maxImageWidth: 0,
@@ -1047,10 +1075,15 @@ var Gallery = /*#__PURE__*/function () {
1047
1075
  }, {
1048
1076
  key: "createMarkup",
1049
1077
  value: function createMarkup() {
1078
+ var _this$options$transla;
1079
+
1050
1080
  this.$gallery = document.createElement('div'); // used 2 separate add calls instead of 1 to handle IE11
1051
1081
 
1052
1082
  this.$gallery.classList.add(cssClasses[cssGallery]);
1053
1083
  this.$gallery.classList.add(JS_CLASSES.newGallery);
1084
+ this.$gallery.setAttribute('role', 'region');
1085
+ this.$gallery.setAttribute('aria-roledescription', 'carousel');
1086
+ this.$gallery.setAttribute('aria-label', ((_this$options$transla = this.options.translations) === null || _this$options$transla === void 0 ? void 0 : _this$options$transla.galleryLabel) || '');
1054
1087
  var previousArrowMarkup = '';
1055
1088
  var nextArrowMarkup = '';
1056
1089
 
@@ -1065,7 +1098,7 @@ var Gallery = /*#__PURE__*/function () {
1065
1098
 
1066
1099
  var barMarkup = this._createBarMarkup();
1067
1100
 
1068
- var markup = "\n ".concat(barMarkup, "\n\n <div class=\"").concat(cssClasses[cssGalleryImagesContainer], " ").concat(JS_CLASSES.imagesContainer, "\">\n ").concat(previousArrowMarkup, "\n\n <div class=\"").concat(cssClasses[cssGalleryImages], " ").concat(JS_CLASSES.images, "\"></div>\n\n ").concat(nextArrowMarkup, "\n </div>\n ");
1101
+ var markup = "\n ".concat(barMarkup, "\n\n <div class=\"").concat(cssClasses[cssGalleryImagesContainer], " ").concat(JS_CLASSES.imagesContainer, "\" aria-live=\"off\">\n ").concat(previousArrowMarkup, "\n\n <div class=\"").concat(cssClasses[cssGalleryImages], " ").concat(JS_CLASSES.images, "\"></div>\n\n ").concat(nextArrowMarkup, "\n </div>\n ");
1069
1102
  this.$gallery.innerHTML = markup;
1070
1103
  document.body.append(this.$gallery);
1071
1104
  this.changeImageDescription();
@@ -1076,7 +1109,7 @@ var Gallery = /*#__PURE__*/function () {
1076
1109
  var imagesNumberMarkup = '';
1077
1110
  var copyLinkMarkup = '';
1078
1111
  var ariaLabelCloseButton = this.options.translations.ariaLabelCloseButton;
1079
- var imageDescriptionMarkup = "\n <div class=\"".concat(cssClasses[cssGalleryBarImageDescription], " ").concat(JS_CLASSES.imageDescription, "\">\n </div>\n ");
1112
+ var imageDescriptionMarkup = "\n <div class=\"".concat(cssClasses[cssGalleryBarImageDescription], " ").concat(JS_CLASSES.imageDescription, "\" id=\"gallery-label\" aria-live=\"polite\" aria-atomic=\"true\">\n </div>\n ");
1080
1113
 
1081
1114
  if (this.options.hasImageNumbers) {
1082
1115
  imagesNumberMarkup = this._createImageNumbersMarkup();
@@ -1096,21 +1129,21 @@ var Gallery = /*#__PURE__*/function () {
1096
1129
  }, {
1097
1130
  key: "_createCopyLinkMarkup",
1098
1131
  value: function _createCopyLinkMarkup() {
1099
- var _this$options$transla = this.options.translations,
1100
- copyLink = _this$options$transla.copyLink,
1101
- picture = _this$options$transla.picture,
1102
- copyLinkShortVersion = _this$options$transla.copyLinkShortVersion,
1103
- copyLinkConfirmation = _this$options$transla.copyLinkConfirmation;
1104
- return "\n <div class=\"".concat(cssClasses[cssGalleryBarCopyLink], " ").concat(JS_CLASSES.copyLinkButton, "\">\n <span class=\"").concat(cssClasses[cssIcon], " ").concat(cssClasses[cssIconLink], " ").concat(cssClasses[cssHideMobile], "\"></span>\n <span class=\"").concat(cssClasses[cssHideDesktop], "\">").concat(copyLinkShortVersion, "</span>\n <span class=\"").concat(cssClasses[cssHideMobile], "\">\n ").concat(copyLink, " (").concat(picture, " <span class=\"").concat(JS_CLASSES.selectedImageNumber, "\">").concat(this.selectedImageNumber, "</span>)\n </span>\n \n <div class=\"").concat(cssClasses[cssHide], " ").concat(cssClasses[cssGalleryBarCopyLinkConfirmation], "\">\n <span class=\"").concat(cssClasses[cssIcon], " ").concat(cssClasses[cssIconSuccess], "\"></span>\n\n <div class=\"").concat(cssClasses[cssGalleryBarCopyLinkConfirmationText], "\">\n ").concat(copyLinkConfirmation, "\n </div>\n </div>\n </div>\n ");
1132
+ var _this$options$transla2 = this.options.translations,
1133
+ copyLink = _this$options$transla2.copyLink,
1134
+ picture = _this$options$transla2.picture,
1135
+ copyLinkShortVersion = _this$options$transla2.copyLinkShortVersion,
1136
+ copyLinkConfirmation = _this$options$transla2.copyLinkConfirmation;
1137
+ return "\n <div class=\"".concat(cssClasses[cssGalleryBarCopyLink], " ").concat(JS_CLASSES.copyLinkButton, "\" role=\"button\" tabindex=\"0\">\n <span class=\"").concat(cssClasses[cssIcon], " ").concat(cssClasses[cssIconLink], " ").concat(cssClasses[cssHideMobile], "\" aria-hidden=\"true\"></span>\n <span class=\"").concat(cssClasses[cssHideDesktop], "\">").concat(copyLinkShortVersion, "</span>\n <span class=\"").concat(cssClasses[cssHideMobile], "\">\n ").concat(copyLink, " (").concat(picture, " <span class=\"").concat(JS_CLASSES.selectedImageNumber, "\">").concat(this.selectedImageNumber, "</span>)\n </span>\n \n <div class=\"").concat(cssClasses[cssHide], " ").concat(cssClasses[cssGalleryBarCopyLinkConfirmation], "\">\n <span class=\"").concat(cssClasses[cssIcon], " ").concat(cssClasses[cssIconSuccess], "\"></span>\n\n <div class=\"").concat(cssClasses[cssGalleryBarCopyLinkConfirmationText], "\">\n ").concat(copyLinkConfirmation, "\n </div>\n </div>\n </button>\n ");
1105
1138
  }
1106
1139
  }, {
1107
1140
  key: "_createNavigationMarkup",
1108
1141
  value: function _createNavigationMarkup(arrowType) {
1109
1142
  var arrowClasses = "".concat(cssClasses[cssIcon], " ").concat(cssClasses[cssIconArrow]);
1110
1143
  var arrowContainerClasses = "".concat(cssClasses[cssIconArrowContainer], " ").concat(JS_CLASSES[arrowType]);
1111
- var _this$options$transla2 = this.options.translations,
1112
- ariaLabelNextButton = _this$options$transla2.ariaLabelNextButton,
1113
- ariaLabelPreviousButton = _this$options$transla2.ariaLabelPreviousButton;
1144
+ var _this$options$transla3 = this.options.translations,
1145
+ ariaLabelNextButton = _this$options$transla3.ariaLabelNextButton,
1146
+ ariaLabelPreviousButton = _this$options$transla3.ariaLabelPreviousButton;
1114
1147
  var isPreviousArrow = arrowType === 'previous';
1115
1148
  var ariaLabelButton = isPreviousArrow ? ariaLabelPreviousButton : ariaLabelNextButton;
1116
1149
 
@@ -1135,10 +1168,13 @@ var Gallery = /*#__PURE__*/function () {
1135
1168
  }
1136
1169
  }, {
1137
1170
  key: "_createImageMarkup",
1138
- value: function _createImageMarkup(imageIndex, source) {
1171
+ value: function _createImageMarkup(imageIndex, source, alt) {
1139
1172
  var $imageContainer = document.createElement('div');
1140
1173
  $imageContainer.classList.add(cssClasses[cssGalleryImageContainer]);
1141
1174
  $imageContainer.style.overflow = 'hidden';
1175
+ $imageContainer.setAttribute('role', 'group');
1176
+ $imageContainer.setAttribute('aria-roledescription', 'slide');
1177
+ $imageContainer.setAttribute('aria-label', alt);
1142
1178
  var barHeight = this.$bar.clientHeight;
1143
1179
  var containerHeight = window.innerHeight - barHeight;
1144
1180
  $imageContainer.style.height = containerHeight + 'px';
@@ -1156,6 +1192,7 @@ var Gallery = /*#__PURE__*/function () {
1156
1192
  $image.classList.add(cssClasses[cssHide]);
1157
1193
  $image.classList.add(JS_CLASSES.image);
1158
1194
  $image.setAttribute('src', source);
1195
+ $image.setAttribute('alt', alt);
1159
1196
  $image.onload = this.hideLoader;
1160
1197
 
1161
1198
  if (maxHeightClass) {
@@ -1233,7 +1270,7 @@ var Gallery = /*#__PURE__*/function () {
1233
1270
  if (imageIndex === 0) {
1234
1271
  this.isLastTemporaryContainerExist = true;
1235
1272
 
1236
- var $temporaryMarkup = this._createImageMarkup(this.imagesCount - 1, this.imageAttributes[this.imagesCount - 1].source);
1273
+ var $temporaryMarkup = this._createImageMarkup(this.imagesCount - 1, this.imageAttributes[this.imagesCount - 1].source, this.imageAttributes[this.imagesCount - 1].alt);
1237
1274
 
1238
1275
  $temporaryMarkup.classList.add(JS_CLASSES.lastTemporaryContainer);
1239
1276
  this.$images.prepend($temporaryMarkup);
@@ -1246,7 +1283,7 @@ var Gallery = /*#__PURE__*/function () {
1246
1283
  } else if (imageIndex === this.imagesCount - 1) {
1247
1284
  this.isFirstTemporaryContainerExist = true;
1248
1285
 
1249
- var _$temporaryMarkup = this._createImageMarkup(0, this.imageAttributes[0].source);
1286
+ var _$temporaryMarkup = this._createImageMarkup(0, this.imageAttributes[0].source, this.imageAttributes[0].alt);
1250
1287
 
1251
1288
  _$temporaryMarkup.classList.add(JS_CLASSES.firstTemporaryContainer);
1252
1289
 
@@ -1263,7 +1300,7 @@ var Gallery = /*#__PURE__*/function () {
1263
1300
  var $closeButton = document.querySelector(this.selectors.close);
1264
1301
  $closeButton === null || $closeButton === void 0 || $closeButton.addEventListener('click', this.remove);
1265
1302
  $closeButton === null || $closeButton === void 0 || $closeButton.addEventListener('keydown', function (ev) {
1266
- if (ev.key !== 'Enter') return;
1303
+ if (ev.key !== 'Enter' && ev.key !== ' ') return;
1267
1304
 
1268
1305
  _this4.remove(ev);
1269
1306
 
@@ -1275,13 +1312,13 @@ var Gallery = /*#__PURE__*/function () {
1275
1312
  var $previousButton = this.$gallery.querySelector(this.selectors.previous);
1276
1313
  $nextButton === null || $nextButton === void 0 || $nextButton.addEventListener('click', this.handleNextImagePreview);
1277
1314
  $previousButton === null || $previousButton === void 0 || $previousButton.addEventListener('click', this.handlePreviousImagePreview);
1278
- $nextButton.addEventListener('keydown', function (ev) {
1279
- if (ev.key === 'Enter') {
1315
+ $nextButton === null || $nextButton === void 0 || $nextButton.addEventListener('keydown', function (ev) {
1316
+ if (ev.key === 'Enter' || ev.key === ' ') {
1280
1317
  _this4.handleNextImagePreview();
1281
1318
  }
1282
1319
  });
1283
- $previousButton.addEventListener('keydown', function (ev) {
1284
- if (ev.key === 'Enter') {
1320
+ $previousButton === null || $previousButton === void 0 || $previousButton.addEventListener('keydown', function (ev) {
1321
+ if (ev.key === 'Enter' || ev.key === ' ') {
1285
1322
  _this4.handlePreviousImagePreview();
1286
1323
  }
1287
1324
  });
@@ -1315,15 +1352,8 @@ var Gallery = /*#__PURE__*/function () {
1315
1352
 
1316
1353
  if (this.options.hasCopyLink) {
1317
1354
  var $copyLink = document.querySelector(this.selectors.copyLinkButton);
1318
- $copyLink.addEventListener('click', function () {
1319
- var galleryUrl = getUrl(_this4.options.name, _this4.selectedImageNumber);
1320
- copy("".concat(galleryUrl, "-copied"));
1321
- var $copyLinkConfirmation = document.querySelector(_this4.selectors.copyLinkConfirmation);
1322
- $copyLinkConfirmation.classList.remove(cssClasses[cssHide]);
1323
- setTimeout(function () {
1324
- $copyLinkConfirmation === null || $copyLinkConfirmation === void 0 || $copyLinkConfirmation.classList.add(cssClasses[cssHide]);
1325
- }, 1500);
1326
- });
1355
+ $copyLink.addEventListener('click', this._copyImageLink);
1356
+ $copyLink.addEventListener('keydown', this._copyImageLinkWithKeyboard);
1327
1357
  }
1328
1358
  }
1329
1359
  }, {
@@ -1 +1 @@
1
- {"version":3,"file":null,"sources":[null],"sourcesContent":[null],"names":[],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;"}
1
+ {"version":3,"file":null,"sources":[null],"sourcesContent":[null],"names":[],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;"}
@@ -5,6 +5,7 @@ export declare type TMode = 'maxImage' | 'shortestEdge' | 'fullScreen';
5
5
  export declare type TArrowType = 'previous' | 'next';
6
6
  export declare type TDimensionsType = 'initial' | 'real';
7
7
  export interface ITranslations {
8
+ galleryLabel: string;
8
9
  copyLink: string;
9
10
  picture: string;
10
11
  copyLinkShortVersion: string;
@@ -27,6 +28,7 @@ export interface IGalleryOptions {
27
28
  }
28
29
  export interface IImageAttributes {
29
30
  source: string;
31
+ alt: string;
30
32
  id: string;
31
33
  description: string;
32
34
  maxImageWidth: number;
@@ -1,6 +1,6 @@
1
1
  import styleInject from '../../../../../external/style-inject/dist/style-inject.es.js';
2
2
 
3
- var css_248z = "@font-face {\n font-family: 'aurora-icons';\n font-display: swap;\n src: url(https://dcsaascdn.net/fonts/aurora-icons.svg) format('svg'), url(https://dcsaascdn.net/fonts/aurora-icons.ttf) format('truetype'), url(https://dcsaascdn.net/fonts/aurora-icons.woff) format('woff');\n font-weight: normal;\n font-style: normal;\n}\n.main-module_gallery__1Ajgx {\n position: fixed;\n top: 0;\n bottom: 0;\n left: 0;\n right: 0;\n z-index: 1000;\n box-sizing: border-box;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n}\n.main-module_gallery__image__1LYNa {\n margin: auto;\n display: block;\n max-width: -webkit-max-content;\n max-width: -moz-max-content;\n max-width: max-content;\n max-height: -webkit-max-content;\n max-height: -moz-max-content;\n max-height: max-content;\n}\n.main-module_gallery__image_max-width__2uWqp {\n width: 100%;\n height: auto;\n}\n.main-module_gallery__image_max-height__3iunQ {\n height: 100%;\n width: auto;\n}\n.main-module_gallery__image_adjusted__Ix20O {\n max-width: 100%;\n max-height: 100%;\n}\n.main-module_gallery__image_max-sizes__w2lwL {\n height: auto;\n width: auto;\n}\n.main-module_gallery__image-container__2uLDK {\n display: flex;\n overflow: auto;\n scroll-behavior: smooth;\n}\n.main-module_gallery__image-container__2uLDK::-webkit-scrollbar {\n width: 7px;\n height: 7px;\n}\n.main-module_gallery__image-container__2uLDK::-webkit-scrollbar-thumb {\n background-color: rgba(0, 0, 0, 0.4);\n}\n.main-module_gallery__images__19e1P {\n display: -ms-grid;\n display: grid;\n height: 100%;\n -ms-grid-rows: 1fr;\n grid-template-rows: 1fr;\n}\n.main-module_gallery__images-container__y3z5v {\n overflow: hidden;\n width: 100%;\n background-color: rgba(255, 255, 255, 0.9);\n}\n.main-module_gallery__images_with-transition__1cAJq {\n transition: transform 0.3s cubic-bezier(0.25, 0.25, 0.75, 1) 0s;\n}\n.main-module_gallery-bar__2jTh6 {\n height: 60px;\n display: -ms-grid;\n display: grid;\n -ms-grid-columns: -webkit-max-content 1fr (-webkit-max-content)[2];\n -ms-grid-columns: max-content 1fr (max-content)[2];\n grid-template-columns: -webkit-max-content 1fr repeat(2, -webkit-max-content);\n grid-template-columns: max-content 1fr repeat(2, max-content);\n grid-template-areas: 'imageNumbers description copyLink close';\n -ms-grid-rows: 1fr;\n grid-template-rows: 1fr;\n align-items: center;\n background-color: #242424;\n color: #ffffff;\n padding: 0 20px;\n position: relative;\n font-size: 13px;\n font-weight: bold;\n}\n.main-module_gallery-bar__2jTh6 .main-module_icon__2BB-1 {\n font-size: 16px;\n}\n.main-module_gallery-bar__2jTh6 .main-module_icon__2BB-1:hover {\n cursor: pointer;\n}\n.main-module_gallery-bar__2jTh6 .main-module_icon_inactive__2QRrA {\n color: #5c657e;\n}\n.main-module_gallery-bar__2jTh6 .main-module_icon_inactive__2QRrA:hover {\n cursor: default;\n}\n.main-module_gallery-bar__image-numbers__2gLMV {\n -ms-grid-row: 1;\n -ms-grid-column: 1;\n grid-area: imageNumbers;\n margin-right: 50px;\n}\n.main-module_gallery-bar__image-description__15_99 {\n -ms-grid-row: 1;\n -ms-grid-column: 2;\n grid-area: description;\n color: #d0e6ff;\n font-weight: normal;\n overflow-wrap: anywhere;\n display: none;\n}\n.main-module_gallery-bar__copy-link__25EN6 {\n -ms-grid-row: 1;\n -ms-grid-column: 3;\n grid-area: copyLink;\n display: flex;\n font-size: 12px;\n border: 2px solid #ffffff;\n border-radius: 3px;\n padding: 6px 10px;\n margin-left: 50px;\n}\n.main-module_gallery-bar__copy-link__25EN6:hover {\n cursor: pointer;\n}\n.main-module_gallery-bar__copy-link__25EN6 .main-module_icon__2BB-1 {\n margin-right: 11px;\n}\n.main-module_gallery-bar__copy-link__25EN6 .main-module_hide_desktop__3M7Iv {\n display: inline-block;\n}\n.main-module_gallery-bar__copy-link_confirmation__2Q0uN {\n position: absolute;\n top: 80px;\n left: 0;\n right: 0;\n margin: 0 auto;\n width: -webkit-max-content;\n width: -moz-max-content;\n width: max-content;\n min-width: 15rem;\n background-color: #d2eec4;\n z-index: 5;\n display: flex;\n align-items: center;\n max-width: 100%;\n padding: 1rem;\n border-radius: 3px;\n color: #5a9986;\n}\n.main-module_gallery-bar__copy-link_confirmation-text__14S1V {\n padding: 0 10px;\n text-align: center;\n min-width: 8rem;\n width: 100%;\n}\n.main-module_gallery-bar__image-close__3tyC0 {\n -ms-grid-row: 1;\n -ms-grid-column: 4;\n grid-area: close;\n -ms-grid-column-align: end;\n justify-self: end;\n margin-left: 30px;\n}\n.main-module_gallery__1Ajgx .main-module_gallery-bar__copy-link__25EN6 .main-module_hide_mobile__37dVg {\n display: none;\n}\n.main-module_gallery__1Ajgx .main-module_loader__mask__2I5iM {\n background: #242424;\n display: flex;\n justify-content: center;\n align-items: center;\n width: 100%;\n}\n.main-module_gallery__1Ajgx .main-module_loader__mask__2I5iM::after {\n content: '';\n background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIHZpZXdCb3g9IjAgMCAxOCAxOCI+CiAgICA8ZGVmcz4KICAgICAgICA8cGF0aCBpZD0iYSIgZD0iTTkuNDc0IDBIMTh2OS40NzRIOS40NzR6Ii8+CiAgICA8L2RlZnM+CiAgICA8ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxwYXRoIGZpbGw9IiNERUU0RjciIGQ9Ik05IDE4QTkgOSAwIDEgMSA5IDBhOSA5IDAgMCAxIDAgMTh6bTAtMi42NDNBNi4zNTcgNi4zNTcgMCAxIDAgOSAyLjY0M2E2LjM1NyA2LjM1NyAwIDAgMCAwIDEyLjcxNHoiLz4KICAgICAgICA8bWFzayBpZD0iYiIgZmlsbD0iI2ZmZiI+CiAgICAgICAgICAgIDx1c2UgeGxpbms6aHJlZj0iI2EiLz4KICAgICAgICA8L21hc2s+CiAgICAgICAgPHBhdGggZmlsbD0iIzNDODNFQyIgZD0iTTkgMThBOSA5IDAgMSAxIDkgMGE5IDkgMCAwIDEgMCAxOHptMC0yLjY0M0E2LjM1NyA2LjM1NyAwIDEgMCA5IDIuNjQzYTYuMzU3IDYuMzU3IDAgMCAwIDAgMTIuNzE0eiIgbWFzaz0idXJsKCNiKSIvPgogICAgPC9nPgo8L3N2Zz4=') no-repeat;\n background-size: 30px 30px;\n display: block;\n width: 30px;\n height: 30px;\n -webkit-animation: main-module_rotate__yjo_3 2s linear infinite;\n animation: main-module_rotate__yjo_3 2s linear infinite;\n transform-origin: 50% 50%;\n}\n.main-module_gallery__1Ajgx .main-module_icon__2BB-1 {\n display: inline-block;\n font-family: 'aurora-icons';\n font-style: normal;\n font-weight: normal;\n font-variant: normal;\n text-transform: none;\n line-height: inherit;\n text-decoration: none;\n position: relative;\n vertical-align: middle;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n.main-module_gallery__1Ajgx .main-module_icon__2BB-1::after {\n content: '';\n position: absolute;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n}\n.main-module_gallery__1Ajgx .main-module_icon-close__1bvaY::before {\n content: '\\E90D';\n}\n.main-module_gallery__1Ajgx .main-module_icon-loader__2wviL::before {\n content: '\\E906';\n}\n.main-module_gallery__1Ajgx .main-module_icon-link__rVNQ8::before {\n content: '\\E973';\n}\n.main-module_gallery__1Ajgx .main-module_icon-success__1ltet::before {\n content: '\\E93D';\n}\n.main-module_gallery__1Ajgx .main-module_icon-arrow__2lOOE {\n position: relative;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n margin-top: -60px;\n font-size: 19px;\n color: #ffffff;\n}\n.main-module_gallery__1Ajgx .main-module_icon-arrow__2lOOE::before {\n content: '\\E920';\n}\n.main-module_gallery__1Ajgx .main-module_icon-arrow-container__2jvGl {\n height: 100%;\n width: 52px;\n position: fixed;\n top: 60px;\n background-color: rgba(36, 36, 36, 0.3);\n z-index: 2;\n cursor: pointer;\n}\n.main-module_gallery__1Ajgx .main-module_icon-arrow-container_previous__2y-vp {\n left: 0;\n}\n.main-module_gallery__1Ajgx .main-module_icon-arrow-container_next__1gy5p {\n right: 0;\n}\n.main-module_gallery__1Ajgx .main-module_icon-arrow-container__2jvGl:hover {\n background-color: rgba(36, 36, 36, 0.6);\n}\n.main-module_gallery__1Ajgx .main-module_icon-arrow_rotate-180__3tVhZ {\n transform: translate(-50%, -50%) rotate(180deg);\n}\n.main-module_gallery__1Ajgx .main-module_hide__2dq3c {\n display: none !important;\n}\n.main-module_gallery__1Ajgx .main-module_hide_mobile__37dVg {\n display: none;\n}\n.main-module_gallery__1Ajgx .main-module_zoom-in__2kYCX {\n cursor: zoom-in;\n}\n.main-module_gallery__1Ajgx .main-module_zoom-out__2DXiQ {\n cursor: zoom-out;\n}\n.main-module_gallery__1Ajgx .main-module_grabbing__2uCRI {\n cursor: -webkit-grabbing;\n cursor: grabbing;\n}\n.main-module_gallery_mobile__2NF8_ .main-module_gallery__images-container__y3z5v {\n background-color: #242424;\n}\n.main-module_gallery_mobile__2NF8_ .main-module_gallery__images_with-transition__1cAJq {\n transition: transform 0.3s cubic-bezier(0.25, 0.25, 0.25, 1) 0s;\n}\n@media screen and (min-width: 576px) {\n .main-module_gallery__1Ajgx .main-module_gallery-bar__image-description__15_99 {\n display: block;\n }\n .main-module_gallery__1Ajgx .main-module_gallery-bar__copy-link_confirmation__2Q0uN {\n min-width: 20rem;\n }\n}\n@media screen and (min-width: 576px) and (max-width: 820px) {\n .main-module_gallery-bar__2jTh6 {\n height: 80px;\n }\n .main-module_gallery-bar__copy-link_confirmation__2Q0uN {\n top: 100px;\n }\n .main-module_gallery__1Ajgx .main-module_icon-arrow-container__2jvGl {\n top: 80px;\n }\n}\n@media screen and (min-width: 820px) {\n .main-module_gallery__1Ajgx .main-module_hide_mobile__37dVg {\n display: block;\n }\n .main-module_gallery__1Ajgx .main-module_gallery-bar__image-close__3tyC0 {\n margin-left: 50px;\n }\n .main-module_gallery__1Ajgx .main-module_gallery-bar__copy-link__25EN6 .main-module_hide_mobile__37dVg {\n display: block;\n }\n .main-module_gallery__1Ajgx .main-module_gallery-bar__copy-link__25EN6 .main-module_hide_desktop__3M7Iv {\n display: none;\n }\n}\n@-webkit-keyframes main-module_rotate__yjo_3 {\n from {\n transform: rotate(0deg);\n }\n to {\n transform: rotate(360deg);\n }\n}\n@keyframes main-module_rotate__yjo_3 {\n from {\n transform: rotate(0deg);\n }\n to {\n transform: rotate(360deg);\n }\n}\n";
3
+ var css_248z = "@font-face {\n font-family: 'aurora-icons';\n font-display: swap;\n src: url(https://dcsaascdn.net/fonts/aurora-icons.svg) format('svg'), url(https://dcsaascdn.net/fonts/aurora-icons.ttf) format('truetype'), url(https://dcsaascdn.net/fonts/aurora-icons.woff) format('woff');\n font-weight: normal;\n font-style: normal;\n}\n.main-module_gallery__1Ajgx {\n position: fixed;\n top: 0;\n bottom: 0;\n left: 0;\n right: 0;\n z-index: 1000;\n box-sizing: border-box;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n}\n.main-module_gallery__image__1LYNa {\n margin: auto;\n display: block;\n max-width: -webkit-max-content;\n max-width: -moz-max-content;\n max-width: max-content;\n max-height: -webkit-max-content;\n max-height: -moz-max-content;\n max-height: max-content;\n}\n.main-module_gallery__image_max-width__2uWqp {\n width: 100%;\n height: auto;\n}\n.main-module_gallery__image_max-height__3iunQ {\n height: 100%;\n width: auto;\n}\n.main-module_gallery__image_adjusted__Ix20O {\n max-width: 100%;\n max-height: 100%;\n}\n.main-module_gallery__image_max-sizes__w2lwL {\n height: auto;\n width: auto;\n}\n.main-module_gallery__image-container__2uLDK {\n display: flex;\n overflow: auto;\n scroll-behavior: smooth;\n}\n.main-module_gallery__image-container__2uLDK::-webkit-scrollbar {\n width: 7px;\n height: 7px;\n}\n.main-module_gallery__image-container__2uLDK::-webkit-scrollbar-thumb {\n background-color: rgba(0, 0, 0, 0.4);\n}\n.main-module_gallery__images__19e1P {\n display: -ms-grid;\n display: grid;\n height: 100%;\n -ms-grid-rows: 1fr;\n grid-template-rows: 1fr;\n}\n.main-module_gallery__images-container__y3z5v {\n overflow: hidden;\n width: 100%;\n background-color: rgba(255, 255, 255, 0.9);\n}\n.main-module_gallery__images_with-transition__1cAJq {\n transition: transform 0.3s cubic-bezier(0.25, 0.25, 0.75, 1) 0s;\n}\n.main-module_gallery-bar__2jTh6 {\n height: 60px;\n display: -ms-grid;\n display: grid;\n -ms-grid-columns: -webkit-max-content 1fr (-webkit-max-content)[2];\n -ms-grid-columns: max-content 1fr (max-content)[2];\n grid-template-columns: -webkit-max-content 1fr repeat(2, -webkit-max-content);\n grid-template-columns: max-content 1fr repeat(2, max-content);\n grid-template-areas: 'imageNumbers description copyLink close';\n -ms-grid-rows: 1fr;\n grid-template-rows: 1fr;\n align-items: center;\n background-color: #242424;\n color: #ffffff;\n padding: 0 20px;\n position: relative;\n font-size: 13px;\n font-weight: bold;\n}\n.main-module_gallery-bar__2jTh6 *:focus {\n outline-color: #ffffff;\n outline-offset: 0;\n}\n.main-module_gallery-bar__2jTh6 .main-module_icon__2BB-1 {\n font-size: 16px;\n}\n.main-module_gallery-bar__2jTh6 .main-module_icon__2BB-1:hover {\n cursor: pointer;\n}\n.main-module_gallery-bar__2jTh6 .main-module_icon_inactive__2QRrA {\n color: #5c657e;\n}\n.main-module_gallery-bar__2jTh6 .main-module_icon_inactive__2QRrA:hover {\n cursor: default;\n}\n.main-module_gallery-bar__image-numbers__2gLMV {\n -ms-grid-row: 1;\n -ms-grid-column: 1;\n grid-area: imageNumbers;\n margin-right: 50px;\n}\n.main-module_gallery-bar__image-description__15_99 {\n -ms-grid-row: 1;\n -ms-grid-column: 2;\n grid-area: description;\n color: #d0e6ff;\n font-weight: normal;\n overflow-wrap: anywhere;\n display: none;\n}\n.main-module_gallery-bar__copy-link__25EN6 {\n -ms-grid-row: 1;\n -ms-grid-column: 3;\n grid-area: copyLink;\n display: flex;\n font-size: 12px;\n border: 2px solid #ffffff;\n border-radius: 3px;\n padding: 6px 10px;\n margin-left: 50px;\n color: #ffffff;\n font-size: 100%;\n font-weight: bold;\n}\n.main-module_gallery-bar__copy-link__25EN6:hover {\n cursor: pointer;\n}\n.main-module_gallery-bar__copy-link__25EN6 .main-module_icon__2BB-1 {\n margin-right: 11px;\n}\n.main-module_gallery-bar__copy-link__25EN6 .main-module_hide_desktop__3M7Iv {\n display: inline-block;\n}\n.main-module_gallery-bar__copy-link_confirmation__2Q0uN {\n position: absolute;\n top: 80px;\n left: 0;\n right: 0;\n margin: 0 auto;\n width: -webkit-max-content;\n width: -moz-max-content;\n width: max-content;\n min-width: 15rem;\n background-color: #d2eec4;\n z-index: 5;\n display: flex;\n align-items: center;\n max-width: 100%;\n padding: 1rem;\n border-radius: 3px;\n color: #5a9986;\n}\n.main-module_gallery-bar__copy-link_confirmation-text__14S1V {\n padding: 0 10px;\n text-align: center;\n min-width: 8rem;\n width: 100%;\n}\n.main-module_gallery-bar__image-close__3tyC0 {\n -ms-grid-row: 1;\n -ms-grid-column: 4;\n grid-area: close;\n -ms-grid-column-align: end;\n justify-self: end;\n margin-left: 30px;\n}\n.main-module_gallery__1Ajgx .main-module_gallery-bar__copy-link__25EN6 .main-module_hide_mobile__37dVg {\n display: none;\n}\n.main-module_gallery__1Ajgx .main-module_loader__mask__2I5iM {\n background: #242424;\n display: flex;\n justify-content: center;\n align-items: center;\n width: 100%;\n}\n.main-module_gallery__1Ajgx .main-module_loader__mask__2I5iM::after {\n content: '';\n background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIHZpZXdCb3g9IjAgMCAxOCAxOCI+CiAgICA8ZGVmcz4KICAgICAgICA8cGF0aCBpZD0iYSIgZD0iTTkuNDc0IDBIMTh2OS40NzRIOS40NzR6Ii8+CiAgICA8L2RlZnM+CiAgICA8ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxwYXRoIGZpbGw9IiNERUU0RjciIGQ9Ik05IDE4QTkgOSAwIDEgMSA5IDBhOSA5IDAgMCAxIDAgMTh6bTAtMi42NDNBNi4zNTcgNi4zNTcgMCAxIDAgOSAyLjY0M2E2LjM1NyA2LjM1NyAwIDAgMCAwIDEyLjcxNHoiLz4KICAgICAgICA8bWFzayBpZD0iYiIgZmlsbD0iI2ZmZiI+CiAgICAgICAgICAgIDx1c2UgeGxpbms6aHJlZj0iI2EiLz4KICAgICAgICA8L21hc2s+CiAgICAgICAgPHBhdGggZmlsbD0iIzNDODNFQyIgZD0iTTkgMThBOSA5IDAgMSAxIDkgMGE5IDkgMCAwIDEgMCAxOHptMC0yLjY0M0E2LjM1NyA2LjM1NyAwIDEgMCA5IDIuNjQzYTYuMzU3IDYuMzU3IDAgMCAwIDAgMTIuNzE0eiIgbWFzaz0idXJsKCNiKSIvPgogICAgPC9nPgo8L3N2Zz4=') no-repeat;\n background-size: 30px 30px;\n display: block;\n width: 30px;\n height: 30px;\n -webkit-animation: main-module_rotate__yjo_3 2s linear infinite;\n animation: main-module_rotate__yjo_3 2s linear infinite;\n transform-origin: 50% 50%;\n}\n.main-module_gallery__1Ajgx .main-module_icon__2BB-1 {\n display: inline-block;\n font-family: 'aurora-icons';\n font-style: normal;\n font-weight: normal;\n font-variant: normal;\n text-transform: none;\n line-height: inherit;\n text-decoration: none;\n position: relative;\n vertical-align: middle;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n.main-module_gallery__1Ajgx .main-module_icon__2BB-1::after {\n content: '';\n position: absolute;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n}\n.main-module_gallery__1Ajgx .main-module_icon-close__1bvaY::before {\n content: '\\E90D';\n}\n.main-module_gallery__1Ajgx .main-module_icon-loader__2wviL::before {\n content: '\\E906';\n}\n.main-module_gallery__1Ajgx .main-module_icon-link__rVNQ8::before {\n content: '\\E973';\n}\n.main-module_gallery__1Ajgx .main-module_icon-success__1ltet::before {\n content: '\\E93D';\n}\n.main-module_gallery__1Ajgx .main-module_icon-arrow__2lOOE {\n position: relative;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n margin-top: -60px;\n font-size: 19px;\n color: #ffffff;\n}\n.main-module_gallery__1Ajgx .main-module_icon-arrow__2lOOE::before {\n content: '\\E920';\n}\n.main-module_gallery__1Ajgx .main-module_icon-arrow-container__2jvGl {\n height: 100%;\n width: 52px;\n position: fixed;\n top: 60px;\n background-color: rgba(36, 36, 36, 0.3);\n z-index: 2;\n cursor: pointer;\n}\n.main-module_gallery__1Ajgx .main-module_icon-arrow-container_previous__2y-vp {\n left: 0;\n}\n.main-module_gallery__1Ajgx .main-module_icon-arrow-container_next__1gy5p {\n right: 0;\n}\n.main-module_gallery__1Ajgx .main-module_icon-arrow-container__2jvGl:hover {\n background-color: rgba(36, 36, 36, 0.6);\n}\n.main-module_gallery__1Ajgx .main-module_icon-arrow_rotate-180__3tVhZ {\n transform: translate(-50%, -50%) rotate(180deg);\n}\n.main-module_gallery__1Ajgx .main-module_hide__2dq3c {\n display: none !important;\n}\n.main-module_gallery__1Ajgx .main-module_hide_mobile__37dVg {\n display: none;\n}\n.main-module_gallery__1Ajgx .main-module_zoom-in__2kYCX {\n cursor: zoom-in;\n}\n.main-module_gallery__1Ajgx .main-module_zoom-out__2DXiQ {\n cursor: zoom-out;\n}\n.main-module_gallery__1Ajgx .main-module_grabbing__2uCRI {\n cursor: -webkit-grabbing;\n cursor: grabbing;\n}\n.main-module_gallery_mobile__2NF8_ .main-module_gallery__images-container__y3z5v {\n background-color: #242424;\n}\n.main-module_gallery_mobile__2NF8_ .main-module_gallery__images_with-transition__1cAJq {\n transition: transform 0.3s cubic-bezier(0.25, 0.25, 0.25, 1) 0s;\n}\n@media screen and (min-width: 576px) {\n .main-module_gallery__1Ajgx .main-module_gallery-bar__image-description__15_99 {\n display: block;\n }\n .main-module_gallery__1Ajgx .main-module_gallery-bar__copy-link_confirmation__2Q0uN {\n min-width: 20rem;\n }\n}\n@media screen and (min-width: 576px) and (max-width: 820px) {\n .main-module_gallery-bar__2jTh6 {\n height: 80px;\n }\n .main-module_gallery-bar__copy-link_confirmation__2Q0uN {\n top: 100px;\n }\n .main-module_gallery__1Ajgx .main-module_icon-arrow-container__2jvGl {\n top: 80px;\n }\n}\n@media screen and (min-width: 820px) {\n .main-module_gallery__1Ajgx .main-module_hide_mobile__37dVg {\n display: block;\n }\n .main-module_gallery__1Ajgx .main-module_gallery-bar__image-close__3tyC0 {\n margin-left: 50px;\n }\n .main-module_gallery__1Ajgx .main-module_gallery-bar__copy-link__25EN6 .main-module_hide_mobile__37dVg {\n display: block;\n }\n .main-module_gallery__1Ajgx .main-module_gallery-bar__copy-link__25EN6 .main-module_hide_desktop__3M7Iv {\n display: none;\n }\n}\n@-webkit-keyframes main-module_rotate__yjo_3 {\n from {\n transform: rotate(0deg);\n }\n to {\n transform: rotate(360deg);\n }\n}\n@keyframes main-module_rotate__yjo_3 {\n from {\n transform: rotate(0deg);\n }\n to {\n transform: rotate(360deg);\n }\n}\n";
4
4
  var cssClasses = {
5
5
  "gallery": "main-module_gallery__1Ajgx",
6
6
  "gallery__image": "main-module_gallery__image__1LYNa",
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@dreamcommerce/aurora",
3
3
  "packageManager": "yarn@3.2.0",
4
4
  "sideEffects": false,
5
- "version": "2.27.19",
5
+ "version": "2.27.20-0",
6
6
  "description": "aurora",
7
7
  "author": "k0ssak",
8
8
  "license": "MIT",