gatsby-matrix-theme 53.18.1 → 53.18.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,20 @@
1
+ ## [53.18.3](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/compare/v53.18.2...v53.18.3) (2026-05-28)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * add google preferred source template block ([648c885](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/commit/648c885cf1fb5186d614b9f41fec2921d8566307))
7
+
8
+
9
+ * Merge branch 'EN-469' into 'master' ([f3d966f](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/commit/f3d966f91894934f881aec2d5487a30ecacc6024))
10
+
11
+ ## [53.18.2](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/compare/v53.18.1...v53.18.2) (2026-05-26)
12
+
13
+
14
+ ### Bug Fixes
15
+
16
+ * add tracker link for widget ([f03c9f7](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/commit/f03c9f71691c81544da5d606c19fd28f7fde1692))
17
+
1
18
  ## [53.18.1](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/compare/v53.18.0...v53.18.1) (2026-05-21)
2
19
 
3
20
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gatsby-matrix-theme",
3
- "version": "53.18.1",
3
+ "version": "53.18.3",
4
4
  "main": "index.js",
5
5
  "description": "Matrix Theme NPM Package",
6
6
  "author": "",
@@ -0,0 +1,75 @@
1
+ .container {
2
+ --google-preferred-source-bg: #fff;
3
+ --google-preferred-source-border-radius: 0.8rem;
4
+ --google-preferred-source-padding: 1.2rem;
5
+ --google-preferred-source-gap: 1.6rem;
6
+ --google-preferred-source-width: 100%;
7
+ --google-preferred-source-text-color: #1b1b1c;
8
+ --google-preferred-source-font-family: "Plus Jakarta Sans";
9
+ --google-preferred-source-font-size: 1.6rem;
10
+ --google-preferred-source-line-height-tablet: 2.7rem;
11
+ --google-preferred-source-font-weight-bold: 700;
12
+ --google-preferred-source-font-weight-regular: 400;
13
+ --google-preferred-source-line-height: 2.4rem;
14
+ --google-preferred-source-cta-width: auto;
15
+ --google-preferred-source-cta-height: auto;
16
+ --google-preferred-source-cta-max-width: 100%;
17
+ --google-preferred-source-cta-opacity-hover: 0.9;
18
+
19
+ display: flex;
20
+ flex-direction: column;
21
+ align-items: flex-start;
22
+ gap: var(--google-preferred-source-gap);
23
+ width: var(--google-preferred-source-width);
24
+ margin: 0 auto;
25
+ padding: var(--google-preferred-source-padding) !important;
26
+ background: var(--google-preferred-source-bg);
27
+ border-radius: var(--google-preferred-source-border-radius);
28
+ box-sizing: border-box;
29
+
30
+ @include min(tablet) {
31
+ flex-direction: row;
32
+ align-items: center;
33
+ justify-content: space-between;
34
+ }
35
+ }
36
+
37
+ .message {
38
+ flex: 1;
39
+ color: var(--google-preferred-source-text-color);
40
+ font-family: var(--google-preferred-source-font-family);
41
+ font-size: var(--google-preferred-source-font-size);
42
+ line-height: var(--google-preferred-source-line-height);
43
+
44
+ @include max(mobile) {
45
+ display: flex;
46
+ flex-direction: column;
47
+ }
48
+ }
49
+
50
+ .messageBold {
51
+ font-weight: var(--google-preferred-source-font-weight-bold);
52
+ }
53
+
54
+ .messagePartTwo {
55
+ font-weight: var(--google-preferred-source-font-weight-regular);
56
+ }
57
+
58
+ .cta {
59
+ display: inline-block;
60
+ text-decoration: none;
61
+ transition: opacity 0.2s ease;
62
+
63
+ &:hover,
64
+ &:focus-visible {
65
+ opacity: var(--google-preferred-source-cta-opacity-hover);
66
+ text-decoration: none;
67
+ }
68
+ }
69
+
70
+ .ctaImage {
71
+ display: block;
72
+ width: var(--google-preferred-source-cta-width);
73
+ height: var(--google-preferred-source-cta-height);
74
+ max-width: var(--google-preferred-source-cta-max-width);
75
+ }
@@ -0,0 +1,58 @@
1
+ import React from 'react';
2
+ import PropTypes from 'prop-types';
3
+ import { classNames } from '@gigmedia/enigma-utils';
4
+ import useTranslate from '~hooks/useTranslate/useTranslate';
5
+ import googlePreferredSourceCta from '../../../images/google-preferred-source.png';
6
+ import styles from './google-preferred-source.module.scss';
7
+
8
+ const GooglePreferredSource = ({ extraClass, style }) => {
9
+ const href = process.env.GATSBY_GOOGLE_PREFERRED_SOURCE_URL;
10
+ const defaultMessage = useTranslate(
11
+ 'google_preferred_source_message',
12
+ 'Enjoying Covers content?'
13
+ );
14
+ const messagePartTwo = useTranslate(
15
+ 'google_preferred_source_message_part_two',
16
+ 'Add us as a preferred source on your Google account'
17
+ );
18
+ const ctaAlt = useTranslate(
19
+ 'google_preferred_source_button',
20
+ 'Add as a preferred source on Google'
21
+ );
22
+
23
+ if (!href) {
24
+ return null;
25
+ }
26
+
27
+ return (
28
+ <div className={classNames([styles.container, extraClass])} style={style}>
29
+ <p className={styles.message}>
30
+ <span className={styles.messageBold}>{defaultMessage}</span>{' '}
31
+ <span className={styles.messagePartTwo}>{messagePartTwo}</span>
32
+ </p>
33
+ <a
34
+ className={styles.cta}
35
+ href={href}
36
+ target="_blank"
37
+ rel="noopener noreferrer"
38
+ aria-label={ctaAlt}
39
+ >
40
+ <img
41
+ className={styles.ctaImage}
42
+ src={googlePreferredSourceCta}
43
+ alt={ctaAlt}
44
+ width={152}
45
+ height={48}
46
+ loading="lazy"
47
+ />
48
+ </a>
49
+ </div>
50
+ );
51
+ };
52
+
53
+ GooglePreferredSource.propTypes = {
54
+ extraClass: PropTypes.string,
55
+ style: PropTypes.shape({}),
56
+ };
57
+
58
+ export default GooglePreferredSource;
@@ -34,7 +34,7 @@ const index = ({ module }) => {
34
34
  overflow: 'hidden',
35
35
  }}
36
36
  className={`${styles.iframe} ${module?.style ? styles[module.style] : ''}`}
37
- src={module.url}
37
+ src={`${module.url}&linkFormat=${process.env.TRACKER_LINK_FORMAT_MAIN_WIDGET}`}
38
38
  loading="lazy"
39
39
  />
40
40
  );
@@ -182,6 +182,8 @@ const Modules = ({ module, pageContext, index, exclOperator, serverData, moduleP
182
182
  return lazy(() => import(`~atoms/disquss`));
183
183
  case 'rating_casinos':
184
184
  return lazy(() => import('../../../../components/atoms/ratings-with-comments'));
185
+ case 'google_preferred_source':
186
+ return lazy(() => import('../../../../components/molecules/google-preferred-source'));
185
187
  default:
186
188
  return null;
187
189
  }
@@ -215,4 +215,12 @@
215
215
 
216
216
  .archiveModule_suspense {
217
217
  min-height: 100rem;
218
+ }
219
+
220
+ .google_preferred_sourceModule {
221
+ padding-bottom: 0;
222
+
223
+ &.noModuleIntro {
224
+ padding: 0;
225
+ }
218
226
  }
@@ -0,0 +1 @@
1
+ "use strict";(self.webpackChunkgatsby_matrix_theme=self.webpackChunkgatsby_matrix_theme||[]).push([[240],{"./src/components/molecules/widget/index.js":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.r(__webpack_exports__),__webpack_require__.d(__webpack_exports__,{default:()=>widget});var react=__webpack_require__("../node_modules/react/index.js"),injectStylesIntoStyleTag=__webpack_require__("../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js"),injectStylesIntoStyleTag_default=__webpack_require__.n(injectStylesIntoStyleTag),widget_module=__webpack_require__("../node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[10].use[1]!../node_modules/sass-loader/dist/cjs.js!../node_modules/sass-resources-loader/lib/loader.js??ruleSet[1].rules[10].use[3]!./src/components/molecules/widget/widget.module.scss"),options={insert:"head",singleton:!1};injectStylesIntoStyleTag_default()(widget_module.A,options);const widget_widget_module=widget_module.A.locals||{};var process=__webpack_require__("../node_modules/process/browser.js");function _slicedToArray(r,e){return function _arrayWithHoles(r){if(Array.isArray(r))return r}(r)||function _iterableToArrayLimit(r,l){var t=null==r?null:"undefined"!=typeof Symbol&&r[Symbol.iterator]||r["@@iterator"];if(null!=t){var e,n,i,u,a=[],f=!0,o=!1;try{if(i=(t=t.call(r)).next,0===l){if(Object(t)!==t)return;f=!1}else for(;!(f=(e=i.call(t)).done)&&(a.push(e.value),a.length!==l);f=!0);}catch(r){o=!0,n=r}finally{try{if(!f&&null!=t.return&&(u=t.return(),Object(u)!==u))return}finally{if(o)throw n}}return a}}(r,e)||function _unsupportedIterableToArray(r,a){if(r){if("string"==typeof r)return _arrayLikeToArray(r,a);var t={}.toString.call(r).slice(8,-1);return"Object"===t&&r.constructor&&(t=r.constructor.name),"Map"===t||"Set"===t?Array.from(r):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?_arrayLikeToArray(r,a):void 0}}(r,e)||function _nonIterableRest(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function _arrayLikeToArray(r,a){(null==a||a>r.length)&&(a=r.length);for(var e=0,n=Array(a);e<a;e++)n[e]=r[e];return n}var index=function(_ref){var module=_ref.module,iframeRef=(0,react.useRef)(null),_useState2=_slicedToArray((0,react.useState)("500px"),2),iframeHeight=_useState2[0],setIframeHeight=_useState2[1];return(0,react.useEffect)((function(){var handleMessage=function(event){var _iframeRef$current;if(event.origin.startsWith("https://sportswidget")&&event.source===(null===(_iframeRef$current=iframeRef.current)||void 0===_iframeRef$current?void 0:_iframeRef$current.contentWindow)){var height=(event.data||{}).height;"number"==typeof height&&setIframeHeight(`${height}px`)}};return window.addEventListener("message",handleMessage),function(){return window.removeEventListener("message",handleMessage)}}),[]),react.createElement("iframe",{ref:iframeRef,title:"widget",scrolling:"no",style:{width:"100%",height:iframeHeight,display:"block",overflow:"hidden"},className:`${widget_widget_module.iframe} ${null!=module&&module.style?widget_widget_module[module.style]:""}`,src:`${module.url}&linkFormat=${process.env.TRACKER_LINK_FORMAT_MAIN_WIDGET}`,loading:"lazy"})};index.displayName="index",index.__docgenInfo={description:"",methods:[],displayName:"index"};const widget=index;"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["src/components/molecules/widget/index.js"]={name:"index",docgenInfo:index.__docgenInfo,path:"src/components/molecules/widget/index.js"})},"../node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[10].use[1]!../node_modules/sass-loader/dist/cjs.js!../node_modules/sass-resources-loader/lib/loader.js??ruleSet[1].rules[10].use[3]!./src/components/molecules/widget/widget.module.scss":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_cssWithMappingToString_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("../node_modules/css-loader/dist/runtime/cssWithMappingToString.js"),_node_modules_css_loader_dist_runtime_cssWithMappingToString_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_cssWithMappingToString_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("../node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_cssWithMappingToString_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,".GXxvytSG33Ebdfm3FUw0Rg\\=\\={border:0;width:100%}.g-B728pQPtGbwMjOaANKPg\\=\\={height:600px}.IqNF\\+aeTyrdUVG1-LqIK9w\\=\\={height:1200px}.lvQL\\+b\\+9uqFt7EAjvCconQ\\=\\={height:900px}","",{version:3,sources:["webpack://./src/components/molecules/widget/widget.module.scss"],names:[],mappings:"AAcA,4BACI,QAAA,CACA,UAAA,CAGJ,4BACI,YAAA,CAGJ,6BACI,aAAA,CAGJ,8BACI,YAAA",sourcesContent:['/* stylelint-disable no-invalid-position-at-import-rule */\n@use \'sass:map\';\n\n// NOTE: General Styles\n@import "../../../../../node_modules/gatsby-core-theme/src/styles/utils/variables/stack-order";\n@import "../../../../../node_modules/gatsby-core-theme/src/styles/utils/variables/typography";\n@import "../../../../../node_modules/gatsby-core-theme/src/styles/utils/variables/layout";\n@import "../../../../../node_modules/gatsby-core-theme/src/styles/utils/media-queries";\n@import "../../../../../node_modules/gatsby-core-theme/src/styles/utils/icons";\n@import "../../../../../node_modules/gatsby-core-theme/src/styles/utils/tooltip";\n@import "../../../../../node_modules/gatsby-core-theme/src/styles/utils/loader";\n@import "../../../../../node_modules/gatsby-core-theme/src/styles/utils/mixins";\n@import "../../../../../node_modules/gatsby-core-theme/src/styles/utils/scrollbar";\n@import "../../../../../node_modules/gatsby-core-theme/src/styles/utils/animations";\n.iframe {\n border: 0;\n width: 100%;\n}\n\n.event {\n height: 600px;\n}\n\n.tournament {\n height: 1200px;\n}\n\n.goal_scorer {\n height: 900px;\n}'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={iframe:"GXxvytSG33Ebdfm3FUw0Rg==",event:"g-B728pQPtGbwMjOaANKPg==",tournament:"IqNF+aeTyrdUVG1-LqIK9w==",goal_scorer:"lvQL+b+9uqFt7EAjvCconQ=="};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___}}]);
@@ -0,0 +1 @@
1
+ "use strict";(self.webpackChunkgatsby_matrix_theme=self.webpackChunkgatsby_matrix_theme||[]).push([[300],{"./src/components/molecules/google-preferred-source/index.js":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.r(__webpack_exports__),__webpack_require__.d(__webpack_exports__,{default:()=>google_preferred_source});var react=__webpack_require__("../node_modules/react/index.js"),prop_types=__webpack_require__("./node_modules/prop-types/index.js"),prop_types_default=__webpack_require__.n(prop_types),dist=__webpack_require__("../node_modules/@gigmedia/enigma-utils/dist/index.js"),useTranslate=__webpack_require__("../node_modules/gatsby-core-theme/src/hooks/useTranslate/useTranslate.js");const google_preferred_source_namespaceObject=__webpack_require__.p+"static/media/google-preferred-source.bdcfb3c9.png";var injectStylesIntoStyleTag=__webpack_require__("../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js"),injectStylesIntoStyleTag_default=__webpack_require__.n(injectStylesIntoStyleTag),google_preferred_source_module=__webpack_require__("../node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[10].use[1]!../node_modules/sass-loader/dist/cjs.js!../node_modules/sass-resources-loader/lib/loader.js??ruleSet[1].rules[10].use[3]!./src/components/molecules/google-preferred-source/google-preferred-source.module.scss"),options={insert:"head",singleton:!1};injectStylesIntoStyleTag_default()(google_preferred_source_module.A,options);const google_preferred_source_google_preferred_source_module=google_preferred_source_module.A.locals||{};var process=__webpack_require__("../node_modules/process/browser.js"),GooglePreferredSource=function(_ref){var extraClass=_ref.extraClass,style=_ref.style,href=process.env.GATSBY_GOOGLE_PREFERRED_SOURCE_URL,defaultMessage=(0,useTranslate.A)("google_preferred_source_message","Enjoying Covers content?"),messagePartTwo=(0,useTranslate.A)("google_preferred_source_message_part_two","Add us as a preferred source on your Google account"),ctaAlt=(0,useTranslate.A)("google_preferred_source_button","Add as a preferred source on Google");return href?react.createElement("div",{className:(0,dist.xW)([google_preferred_source_google_preferred_source_module.container,extraClass]),style},react.createElement("p",{className:google_preferred_source_google_preferred_source_module.message},react.createElement("span",{className:google_preferred_source_google_preferred_source_module.messageBold},defaultMessage)," ",react.createElement("span",{className:google_preferred_source_google_preferred_source_module.messagePartTwo},messagePartTwo)),react.createElement("a",{className:google_preferred_source_google_preferred_source_module.cta,href,target:"_blank",rel:"noopener noreferrer","aria-label":ctaAlt},react.createElement("img",{className:google_preferred_source_google_preferred_source_module.ctaImage,src:google_preferred_source_namespaceObject,alt:ctaAlt,width:152,height:48,loading:"lazy"}))):null};GooglePreferredSource.displayName="GooglePreferredSource",GooglePreferredSource.propTypes={extraClass:prop_types_default().string,style:prop_types_default().shape({})},GooglePreferredSource.__docgenInfo={description:"",methods:[],displayName:"GooglePreferredSource",props:{extraClass:{description:"",type:{name:"string"},required:!1},style:{description:"",type:{name:"shape",value:{}},required:!1}}};const google_preferred_source=GooglePreferredSource;"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["src/components/molecules/google-preferred-source/index.js"]={name:"GooglePreferredSource",docgenInfo:GooglePreferredSource.__docgenInfo,path:"src/components/molecules/google-preferred-source/index.js"})},"../node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[10].use[1]!../node_modules/sass-loader/dist/cjs.js!../node_modules/sass-resources-loader/lib/loader.js??ruleSet[1].rules[10].use[3]!./src/components/molecules/google-preferred-source/google-preferred-source.module.scss":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_cssWithMappingToString_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("../node_modules/css-loader/dist/runtime/cssWithMappingToString.js"),_node_modules_css_loader_dist_runtime_cssWithMappingToString_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_cssWithMappingToString_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("../node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_cssWithMappingToString_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'.h8zMgKohQhUrAAMXHXdrYA\\=\\={--google-preferred-source-bg: #fff;--google-preferred-source-border-radius: 0.8rem;--google-preferred-source-padding: 1.2rem;--google-preferred-source-gap: 1.6rem;--google-preferred-source-width: 100%;--google-preferred-source-text-color: #1b1b1c;--google-preferred-source-font-family: "Plus Jakarta Sans";--google-preferred-source-font-size: 1.6rem;--google-preferred-source-line-height-tablet: 2.7rem;--google-preferred-source-font-weight-bold: 700;--google-preferred-source-font-weight-regular: 400;--google-preferred-source-line-height: 2.4rem;--google-preferred-source-cta-width: auto;--google-preferred-source-cta-height: auto;--google-preferred-source-cta-max-width: 100%;--google-preferred-source-cta-opacity-hover: 0.9;display:flex;flex-direction:column;align-items:flex-start;gap:var(--google-preferred-source-gap);width:var(--google-preferred-source-width);margin:0 auto;padding:var(--google-preferred-source-padding) !important;background:var(--google-preferred-source-bg);border-radius:var(--google-preferred-source-border-radius);box-sizing:border-box}@media only screen and (min-width:768px){.h8zMgKohQhUrAAMXHXdrYA\\=\\={flex-direction:row;align-items:center;justify-content:space-between}}.f6O5eSctkO9OgAJ2TnnnFA\\=\\={flex:1;color:var(--google-preferred-source-text-color);font-family:var(--google-preferred-source-font-family);font-size:var(--google-preferred-source-font-size);line-height:var(--google-preferred-source-line-height)}@media only screen and (max-width:767px){.f6O5eSctkO9OgAJ2TnnnFA\\=\\={display:flex;flex-direction:column}}.T0a-THimO-67WK-mthp7vw\\=\\={font-weight:var(--google-preferred-source-font-weight-bold)}.b\\+90rgC2-yaaE12O1JHecg\\=\\={font-weight:var(--google-preferred-source-font-weight-regular)}.qdZw6JVdylUtG8ACYFaS8Q\\=\\={display:inline-block;text-decoration:none;transition:opacity .2s ease}.qdZw6JVdylUtG8ACYFaS8Q\\=\\=:hover,.qdZw6JVdylUtG8ACYFaS8Q\\=\\=:focus-visible{opacity:var(--google-preferred-source-cta-opacity-hover);text-decoration:none}.clg9oXB3rNe2vsBxCkVHVg\\=\\={display:block;width:var(--google-preferred-source-cta-width);height:var(--google-preferred-source-cta-height);max-width:var(--google-preferred-source-cta-max-width)}',"",{version:3,sources:["webpack://./src/components/molecules/google-preferred-source/google-preferred-source.module.scss","webpack://./../node_modules/gatsby-core-theme/src/styles/utils/_media-queries.scss"],names:[],mappings:"AAcA,4BACE,kCAAA,CACA,+CAAA,CACA,yCAAA,CACA,qCAAA,CACA,qCAAA,CACA,6CAAA,CACA,0DAAA,CACA,2CAAA,CACA,oDAAA,CACA,+CAAA,CACA,kDAAA,CACA,6CAAA,CACA,yCAAA,CACA,0CAAA,CACA,6CAAA,CACA,gDAAA,CAEA,YAAA,CACA,qBAAA,CACA,sBAAA,CACA,sCAAA,CACA,0CAAA,CACA,aAAA,CACA,yDAAA,CACA,4CAAA,CACA,0DAAA,CACA,qBAAA,CCWA,yCDtCF,4BA8BI,kBAAA,CACA,kBAAA,CACA,6BAAA,CAAA,CAIJ,4BACE,MAAA,CACA,+CAAA,CACA,sDAAA,CACA,kDAAA,CACA,sDAAA,CCIA,yCDTF,4BAQI,YAAA,CACA,qBAAA,CAAA,CAIJ,4BACE,2DAAA,CAGF,6BACE,8DAAA,CAGF,4BACE,oBAAA,CACA,oBAAA,CACA,2BAAA,CAEA,4EAEE,wDAAA,CACA,oBAAA,CAIJ,4BACE,aAAA,CACA,8CAAA,CACA,gDAAA,CACA,sDAAA",sourcesContent:['/* stylelint-disable no-invalid-position-at-import-rule */\n@use \'sass:map\';\n\n// NOTE: General Styles\n@import "../../../../../node_modules/gatsby-core-theme/src/styles/utils/variables/stack-order";\n@import "../../../../../node_modules/gatsby-core-theme/src/styles/utils/variables/typography";\n@import "../../../../../node_modules/gatsby-core-theme/src/styles/utils/variables/layout";\n@import "../../../../../node_modules/gatsby-core-theme/src/styles/utils/media-queries";\n@import "../../../../../node_modules/gatsby-core-theme/src/styles/utils/icons";\n@import "../../../../../node_modules/gatsby-core-theme/src/styles/utils/tooltip";\n@import "../../../../../node_modules/gatsby-core-theme/src/styles/utils/loader";\n@import "../../../../../node_modules/gatsby-core-theme/src/styles/utils/mixins";\n@import "../../../../../node_modules/gatsby-core-theme/src/styles/utils/scrollbar";\n@import "../../../../../node_modules/gatsby-core-theme/src/styles/utils/animations";\n.container {\n --google-preferred-source-bg: #fff;\n --google-preferred-source-border-radius: 0.8rem;\n --google-preferred-source-padding: 1.2rem;\n --google-preferred-source-gap: 1.6rem;\n --google-preferred-source-width: 100%;\n --google-preferred-source-text-color: #1b1b1c;\n --google-preferred-source-font-family: "Plus Jakarta Sans";\n --google-preferred-source-font-size: 1.6rem;\n --google-preferred-source-line-height-tablet: 2.7rem;\n --google-preferred-source-font-weight-bold: 700;\n --google-preferred-source-font-weight-regular: 400;\n --google-preferred-source-line-height: 2.4rem;\n --google-preferred-source-cta-width: auto;\n --google-preferred-source-cta-height: auto;\n --google-preferred-source-cta-max-width: 100%;\n --google-preferred-source-cta-opacity-hover: 0.9;\n\n display: flex;\n flex-direction: column;\n align-items: flex-start;\n gap: var(--google-preferred-source-gap);\n width: var(--google-preferred-source-width);\n margin: 0 auto;\n padding: var(--google-preferred-source-padding) !important;\n background: var(--google-preferred-source-bg);\n border-radius: var(--google-preferred-source-border-radius);\n box-sizing: border-box;\n\n @include min(tablet) {\n flex-direction: row;\n align-items: center;\n justify-content: space-between;\n }\n}\n\n.message {\n flex: 1;\n color: var(--google-preferred-source-text-color);\n font-family: var(--google-preferred-source-font-family);\n font-size: var(--google-preferred-source-font-size);\n line-height: var(--google-preferred-source-line-height);\n\n @include max(mobile) {\n display: flex;\n flex-direction: column;\n }\n}\n\n.messageBold {\n font-weight: var(--google-preferred-source-font-weight-bold);\n}\n\n.messagePartTwo {\n font-weight: var(--google-preferred-source-font-weight-regular);\n}\n\n.cta {\n display: inline-block;\n text-decoration: none;\n transition: opacity 0.2s ease;\n\n &:hover,\n &:focus-visible {\n opacity: var(--google-preferred-source-cta-opacity-hover);\n text-decoration: none;\n }\n}\n\n.ctaImage {\n display: block;\n width: var(--google-preferred-source-cta-width);\n height: var(--google-preferred-source-cta-height);\n max-width: var(--google-preferred-source-cta-max-width);\n}\n',"$media-query-sizes: (\n mobile-s: (\n min: 320px,\n max: 374px,\n ),\n mobile-m: (\n min: 375px,\n max: 424px,\n ),\n mobile: (\n min: 425px,\n max: 767px,\n ),\n tablet: (\n min: 768px,\n max: 991px,\n ),\n laptop: (\n min: 992px,\n max: 1199px,\n ),\n desktop: (\n min: 1200px,\n ),\n);\n\n// Get media query sizes\n$screen: 'only screen';\n@function media-query($media, $optional-media: '', $min: true) {\n $media-label: '';\n\n @if ($optional-media != '') {\n $media-sizes-min: map-get($media-query-sizes, $media);\n $media-sizes-max: map-get($media-query-sizes, $optional-media);\n $media-label: $screen +\n \" and (min-width:#{map-get($media-sizes-min, 'min')}) and (max-width:#{map-get($media-sizes-max, 'max')})\";\n } @else {\n $query: 'max';\n\n @if ($min) {\n $query: 'min';\n }\n\n $media-sizes: map-get($media-query-sizes, $media);\n $media-label: $screen + ' and (#{$query}-width:#{map-get($media-sizes, $query)})';\n }\n\n @return $media-label;\n}\n\n// Min media query\n@mixin min($media) {\n @media #{media-query($media)} {\n @content;\n }\n}\n\n// Max media query\n@mixin max($media) {\n @media #{media-query($media, '', false)} {\n @content;\n }\n}\n\n// Min & max media query\n@mixin min-max($min, $max) {\n @media #{media-query($min, $max)} {\n @content;\n }\n}\n\n// Use this ONLY if you need a media query that doesn't fit the $media-query-sizes breakpoints above\n// Pass number, for example @include custom-min(992)\n@mixin custom-min($min) {\n @media #{$screen} and (min-width: #{$min}px) {\n @content;\n }\n}\n\n@mixin custom-max($max) {\n @media #{$screen} and (max-width: #{$max}px) {\n @content;\n }\n}\n\n@mixin custom-min-max($min, $max) {\n @media #{$screen} and (min-width: #{$min}px) and (max-width: #{$max}px) {\n @content;\n }\n}\n\n// Landscape\n// (If we find more use cases of this in the future, might want to refactor this and include it in the media-query function for $screen)\n// Pass number\n$landscape: 'screen and (orientation:landscape)';\n\n@mixin landscape-max($max) {\n @media #{$landscape} and (max-width: #{$max}px) {\n @content;\n }\n}\n\n@mixin landscape-min($min) {\n @media #{$landscape} and (min-width: #{$min}px) {\n @content;\n }\n}\n"],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={container:"h8zMgKohQhUrAAMXHXdrYA==",message:"f6O5eSctkO9OgAJ2TnnnFA==",messageBold:"T0a-THimO-67WK-mthp7vw==",messagePartTwo:"b+90rgC2-yaaE12O1JHecg==",cta:"qdZw6JVdylUtG8ACYFaS8Q==",ctaImage:"clg9oXB3rNe2vsBxCkVHVg=="};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___}}]);
@@ -361,4 +361,4 @@
361
361
 
362
362
 
363
363
 
364
- window['STORIES'] = [{"titlePrefix":"","directory":"./src","files":"**/**/**/*.stories.js","importPathMatcher":"^\\.[\\\\/](?:src(?:\\/(?!\\.)(?:(?:(?!(?:^|\\/)\\.).)*?)\\/|\\/|$)(?!\\.)(?=.)[^/]*?\\.stories\\.js)$"},{"titlePrefix":"","directory":"./src","files":"**/**/**/**/*.stories.js","importPathMatcher":"^\\.[\\\\/](?:src(?:\\/(?!\\.)(?:(?:(?!(?:^|\\/)\\.).)*?)\\/|\\/|$)(?!\\.)(?=.)[^/]*?\\.stories\\.js)$"},{"titlePrefix":"","directory":"./src","files":"**/**/**/**/**/*.stories.js","importPathMatcher":"^\\.[\\\\/](?:src(?:\\/(?!\\.)(?:(?:(?!(?:^|\\/)\\.).)*?)\\/|\\/|$)(?!\\.)(?=.)[^/]*?\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/header/variants/default/template-one","files":"template-one.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/header\\/variants\\/default\\/template-one\\/template-one\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/header/variants/operator/template-one-two","files":"template-one-two.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/header\\/variants\\/operator\\/template-one-two\\/template-one-two\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/footer/variants","files":"template-one.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/footer\\/variants\\/template-one\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/footer/variants","files":"template-two.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/footer\\/variants\\/template-two\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/footer/variants","files":"template-three.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/footer\\/variants\\/template-three\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/organisms/navigation","files":"navigation.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/organisms\\/navigation\\/navigation\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/organisms/anchor/template-one","files":"anchor.stories","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/organisms\\/anchor\\/template-one\\/anchor\\.stories)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/organisms/anchor/template-two","files":"template-two.stories","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/organisms\\/anchor\\/template-two\\/template-two\\.stories)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/bonus/template-one","files":"bonus.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/bonus\\/template-one\\/bonus\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/bonus/template-two","files":"bonus.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/bonus\\/template-two\\/bonus\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/content","files":"text.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/content\\/text\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/content","files":"show-more.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/content\\/show-more\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/content","files":"content.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/content\\/content\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/content/lists","files":"lists.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/content\\/lists\\/lists\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/content/frame","files":"frame.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/content\\/frame\\/frame\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/content/table","files":"table-one.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/content\\/table\\/table-one\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/content/table","files":"table-two.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/content\\/table\\/table-two\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/pagination","files":"pagination.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/pagination\\/pagination\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/organisms/carousel/template-one","files":"template-one.stories","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/organisms\\/carousel\\/template-one\\/template-one\\.stories)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/organisms/carousel/template-two","files":"template-two.stories","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/organisms\\/carousel\\/template-two\\/template-two\\.stories)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/spotlights_v2/icon/template-one","files":"template-one.stories","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/spotlights_v2\\/icon\\/template-one\\/template-one\\.stories)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/spotlights_v2/image/template-one","files":"template-one.stories","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/spotlights_v2\\/image\\/template-one\\/template-one\\.stories)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/spotlights_v2/image/template-two","files":"template-two.stories","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/spotlights_v2\\/image\\/template-two\\/template-two\\.stories)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/spotlights_v2/image-text/template-one","files":"template-one.stories","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/spotlights_v2\\/image-text\\/template-one\\/template-one\\.stories)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/spotlights_v2/image-text/template-two","files":"template-two.stories","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/spotlights_v2\\/image-text\\/template-two\\/template-two\\.stories)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/spotlights_v2/image-text/template-three","files":"template-three.stories","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/spotlights_v2\\/image-text\\/template-three\\/template-three\\.stories)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/spotlights_v2/image-text/template-five","files":"template-five.stories","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/spotlights_v2\\/image-text\\/template-five\\/template-five\\.stories)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/spotlights_v2/image-text/template-six","files":"template-six.stories","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/spotlights_v2\\/image-text\\/template-six\\/template-six\\.stories)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/spotlights_v2/sport-odds/template-one","files":"template-one.stories","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/spotlights_v2\\/sport-odds\\/template-one\\/template-one\\.stories)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/spotlights_v2/sport-odds/template-two","files":"template-two.stories","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/spotlights_v2\\/sport-odds\\/template-two\\/template-two\\.stories)$"}];</script><script src="runtime~main.4ce0fd09.iframe.bundle.js"></script><script src="251.780501b8.iframe.bundle.js"></script><script src="main.ee7192d7.iframe.bundle.js"></script></body></html>
364
+ window['STORIES'] = [{"titlePrefix":"","directory":"./src","files":"**/**/**/*.stories.js","importPathMatcher":"^\\.[\\\\/](?:src(?:\\/(?!\\.)(?:(?:(?!(?:^|\\/)\\.).)*?)\\/|\\/|$)(?!\\.)(?=.)[^/]*?\\.stories\\.js)$"},{"titlePrefix":"","directory":"./src","files":"**/**/**/**/*.stories.js","importPathMatcher":"^\\.[\\\\/](?:src(?:\\/(?!\\.)(?:(?:(?!(?:^|\\/)\\.).)*?)\\/|\\/|$)(?!\\.)(?=.)[^/]*?\\.stories\\.js)$"},{"titlePrefix":"","directory":"./src","files":"**/**/**/**/**/*.stories.js","importPathMatcher":"^\\.[\\\\/](?:src(?:\\/(?!\\.)(?:(?:(?!(?:^|\\/)\\.).)*?)\\/|\\/|$)(?!\\.)(?=.)[^/]*?\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/header/variants/default/template-one","files":"template-one.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/header\\/variants\\/default\\/template-one\\/template-one\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/header/variants/operator/template-one-two","files":"template-one-two.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/header\\/variants\\/operator\\/template-one-two\\/template-one-two\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/footer/variants","files":"template-one.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/footer\\/variants\\/template-one\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/footer/variants","files":"template-two.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/footer\\/variants\\/template-two\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/footer/variants","files":"template-three.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/footer\\/variants\\/template-three\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/organisms/navigation","files":"navigation.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/organisms\\/navigation\\/navigation\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/organisms/anchor/template-one","files":"anchor.stories","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/organisms\\/anchor\\/template-one\\/anchor\\.stories)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/organisms/anchor/template-two","files":"template-two.stories","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/organisms\\/anchor\\/template-two\\/template-two\\.stories)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/bonus/template-one","files":"bonus.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/bonus\\/template-one\\/bonus\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/bonus/template-two","files":"bonus.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/bonus\\/template-two\\/bonus\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/content","files":"text.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/content\\/text\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/content","files":"show-more.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/content\\/show-more\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/content","files":"content.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/content\\/content\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/content/lists","files":"lists.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/content\\/lists\\/lists\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/content/frame","files":"frame.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/content\\/frame\\/frame\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/content/table","files":"table-one.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/content\\/table\\/table-one\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/content/table","files":"table-two.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/content\\/table\\/table-two\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/pagination","files":"pagination.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/pagination\\/pagination\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/organisms/carousel/template-one","files":"template-one.stories","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/organisms\\/carousel\\/template-one\\/template-one\\.stories)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/organisms/carousel/template-two","files":"template-two.stories","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/organisms\\/carousel\\/template-two\\/template-two\\.stories)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/spotlights_v2/icon/template-one","files":"template-one.stories","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/spotlights_v2\\/icon\\/template-one\\/template-one\\.stories)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/spotlights_v2/image/template-one","files":"template-one.stories","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/spotlights_v2\\/image\\/template-one\\/template-one\\.stories)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/spotlights_v2/image/template-two","files":"template-two.stories","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/spotlights_v2\\/image\\/template-two\\/template-two\\.stories)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/spotlights_v2/image-text/template-one","files":"template-one.stories","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/spotlights_v2\\/image-text\\/template-one\\/template-one\\.stories)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/spotlights_v2/image-text/template-two","files":"template-two.stories","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/spotlights_v2\\/image-text\\/template-two\\/template-two\\.stories)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/spotlights_v2/image-text/template-three","files":"template-three.stories","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/spotlights_v2\\/image-text\\/template-three\\/template-three\\.stories)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/spotlights_v2/image-text/template-five","files":"template-five.stories","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/spotlights_v2\\/image-text\\/template-five\\/template-five\\.stories)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/spotlights_v2/image-text/template-six","files":"template-six.stories","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/spotlights_v2\\/image-text\\/template-six\\/template-six\\.stories)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/spotlights_v2/sport-odds/template-one","files":"template-one.stories","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/spotlights_v2\\/sport-odds\\/template-one\\/template-one\\.stories)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/spotlights_v2/sport-odds/template-two","files":"template-two.stories","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/spotlights_v2\\/sport-odds\\/template-two\\/template-two\\.stories)$"}];</script><script src="runtime~main.89a3c800.iframe.bundle.js"></script><script src="251.780501b8.iframe.bundle.js"></script><script src="main.9f63ef00.iframe.bundle.js"></script></body></html>