gatsby-matrix-theme 53.18.3 → 53.18.4

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,10 @@
1
+ ## [53.18.4](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/compare/v53.18.3...v53.18.4) (2026-05-29)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * let parent component override style of google preferred source ([245b003](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/commit/245b0037440ecbd264081da575e20f67f1214370))
7
+
1
8
  ## [53.18.3](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/compare/v53.18.2...v53.18.3) (2026-05-28)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gatsby-matrix-theme",
3
- "version": "53.18.3",
3
+ "version": "53.18.4",
4
4
  "main": "index.js",
5
5
  "description": "Matrix Theme NPM Package",
6
6
  "author": "",
@@ -1,31 +1,33 @@
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;
1
+ $google-preferred-source-bg: var(--google-preferred-source-bg, #fff);
2
+ $google-preferred-source-border-radius: var(--google-preferred-source-border-radius, 0.8rem);
3
+ $google-preferred-source-padding: var(--google-preferred-source-padding, 1.2rem);
4
+ $google-preferred-source-gap: var(--google-preferred-source-gap, 1.6rem);
5
+ $google-preferred-source-width: var(--google-preferred-source-width, 100%);
6
+ $google-preferred-source-text-color: var(--google-preferred-source-text-color, #1b1b1c);
7
+ $google-preferred-source-font-family: var(--google-preferred-source-font-family, "Plus Jakarta Sans");
8
+ $google-preferred-source-font-size: var(--google-preferred-source-font-size, 1.6rem);
9
+ $google-preferred-source-line-height: var(--google-preferred-source-line-height, 2.4rem);
10
+ $google-preferred-source-line-height-tablet: var(--google-preferred-source-line-height-tablet, 2.7rem);
11
+ $google-preferred-source-font-weight-bold: var(--google-preferred-source-font-weight-bold, 700);
12
+ $google-preferred-source-font-weight-regular: var(--google-preferred-source-font-weight-regular, 400);
13
+ $google-preferred-source-cta-width: var(--google-preferred-source-cta-width, auto);
14
+ $google-preferred-source-cta-height: var(--google-preferred-source-cta-height, auto);
15
+ $google-preferred-source-cta-max-width: var(--google-preferred-source-cta-max-width, 100%);
16
+ $google-preferred-source-cta-opacity-hover: var(--google-preferred-source-cta-opacity-hover, 0.9);
17
+ $google-preferred-source-border: var(--google-preferred-source-border, none);
18
18
 
19
+ .container {
19
20
  display: flex;
20
21
  flex-direction: column;
21
22
  align-items: flex-start;
22
- gap: var(--google-preferred-source-gap);
23
- width: var(--google-preferred-source-width);
23
+ gap: $google-preferred-source-gap;
24
+ width: $google-preferred-source-width;
24
25
  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);
26
+ padding: $google-preferred-source-padding !important;
27
+ background: $google-preferred-source-bg;
28
+ border-radius: $google-preferred-source-border-radius;
28
29
  box-sizing: border-box;
30
+ border: $google-preferred-source-border;
29
31
 
30
32
  @include min(tablet) {
31
33
  flex-direction: row;
@@ -36,10 +38,10 @@
36
38
 
37
39
  .message {
38
40
  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);
41
+ color: $google-preferred-source-text-color;
42
+ font-family: $google-preferred-source-font-family;
43
+ font-size: $google-preferred-source-font-size;
44
+ line-height: $google-preferred-source-line-height;
43
45
 
44
46
  @include max(mobile) {
45
47
  display: flex;
@@ -48,11 +50,11 @@
48
50
  }
49
51
 
50
52
  .messageBold {
51
- font-weight: var(--google-preferred-source-font-weight-bold);
53
+ font-weight: $google-preferred-source-font-weight-bold;
52
54
  }
53
55
 
54
56
  .messagePartTwo {
55
- font-weight: var(--google-preferred-source-font-weight-regular);
57
+ font-weight: $google-preferred-source-font-weight-regular;
56
58
  }
57
59
 
58
60
  .cta {
@@ -62,14 +64,14 @@
62
64
 
63
65
  &:hover,
64
66
  &:focus-visible {
65
- opacity: var(--google-preferred-source-cta-opacity-hover);
67
+ opacity: $google-preferred-source-cta-opacity-hover;
66
68
  text-decoration: none;
67
69
  }
68
70
  }
69
71
 
70
72
  .ctaImage {
71
73
  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
- }
74
+ width: $google-preferred-source-cta-width;
75
+ height: $google-preferred-source-cta-height;
76
+ max-width: $google-preferred-source-cta-max-width;
77
+ }
@@ -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\\=\\={display:flex;flex-direction:column;align-items:flex-start;gap:var(--google-preferred-source-gap, 1.6rem);width:var(--google-preferred-source-width, 100%);margin:0 auto;padding:var(--google-preferred-source-padding, 1.2rem) !important;background:var(--google-preferred-source-bg, #fff);border-radius:var(--google-preferred-source-border-radius, 0.8rem);box-sizing:border-box;border:var(--google-preferred-source-border, none)}@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, #1b1b1c);font-family:var(--google-preferred-source-font-family, "Plus Jakarta Sans");font-size:var(--google-preferred-source-font-size, 1.6rem);line-height:var(--google-preferred-source-line-height, 2.4rem)}@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, 700)}.b\\+90rgC2-yaaE12O1JHecg\\=\\={font-weight:var(--google-preferred-source-font-weight-regular, 400)}.qdZw6JVdylUtG8ACYFaS8Q\\=\\={display:inline-block;text-decoration:none;transition:opacity .2s ease}.qdZw6JVdylUtG8ACYFaS8Q\\=\\=:hover,.qdZw6JVdylUtG8ACYFaS8Q\\=\\=:focus-visible{opacity:var(--google-preferred-source-cta-opacity-hover, 0.9);text-decoration:none}.clg9oXB3rNe2vsBxCkVHVg\\=\\={display:block;width:var(--google-preferred-source-cta-width, auto);height:var(--google-preferred-source-cta-height, auto);max-width:var(--google-preferred-source-cta-max-width, 100%)}',"",{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:"AAgCA,4BACE,YAAA,CACA,qBAAA,CACA,sBAAA,CACA,8CAnB4B,CAoB5B,gDAnB8B,CAoB9B,aAAA,CACA,iEAAA,CACA,kDA1B2B,CA2B3B,kEA1BsC,CA2BtC,qBAAA,CACA,kDAb+B,CCsB/B,yCDpBF,4BAcI,kBAAA,CACA,kBAAA,CACA,6BAAA,CAAA,CAIJ,4BACE,MAAA,CACA,wDAnCmC,CAoCnC,2EAnCoC,CAoCpC,0DAnCkC,CAoClC,8DAnCoC,CCqCpC,yCDPF,4BAQI,YAAA,CACA,qBAAA,CAAA,CAIJ,4BACE,gEA1CyC,CA6C3C,6BACE,mEA7C4C,CAgD9C,4BACE,oBAAA,CACA,oBAAA,CACA,2BAAA,CAEA,4EAEE,6DAnDwC,CAoDxC,oBAAA,CAIJ,4BACE,aAAA,CACA,oDA7DkC,CA8DlC,sDA7DmC,CA8DnC,4DA7DsC",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$google-preferred-source-bg: var(--google-preferred-source-bg, #fff);\n$google-preferred-source-border-radius: var(--google-preferred-source-border-radius, 0.8rem);\n$google-preferred-source-padding: var(--google-preferred-source-padding, 1.2rem);\n$google-preferred-source-gap: var(--google-preferred-source-gap, 1.6rem);\n$google-preferred-source-width: var(--google-preferred-source-width, 100%);\n$google-preferred-source-text-color: var(--google-preferred-source-text-color, #1b1b1c);\n$google-preferred-source-font-family: var(--google-preferred-source-font-family, "Plus Jakarta Sans");\n$google-preferred-source-font-size: var(--google-preferred-source-font-size, 1.6rem);\n$google-preferred-source-line-height: var(--google-preferred-source-line-height, 2.4rem);\n$google-preferred-source-line-height-tablet: var(--google-preferred-source-line-height-tablet, 2.7rem);\n$google-preferred-source-font-weight-bold: var(--google-preferred-source-font-weight-bold, 700);\n$google-preferred-source-font-weight-regular: var(--google-preferred-source-font-weight-regular, 400);\n$google-preferred-source-cta-width: var(--google-preferred-source-cta-width, auto);\n$google-preferred-source-cta-height: var(--google-preferred-source-cta-height, auto);\n$google-preferred-source-cta-max-width: var(--google-preferred-source-cta-max-width, 100%);\n$google-preferred-source-cta-opacity-hover: var(--google-preferred-source-cta-opacity-hover, 0.9);\n$google-preferred-source-border: var(--google-preferred-source-border, none);\n\n.container {\n display: flex;\n flex-direction: column;\n align-items: flex-start;\n gap: $google-preferred-source-gap;\n width: $google-preferred-source-width;\n margin: 0 auto;\n padding: $google-preferred-source-padding !important;\n background: $google-preferred-source-bg;\n border-radius: $google-preferred-source-border-radius;\n box-sizing: border-box;\n border: $google-preferred-source-border;\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: $google-preferred-source-text-color;\n font-family: $google-preferred-source-font-family;\n font-size: $google-preferred-source-font-size;\n line-height: $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: $google-preferred-source-font-weight-bold;\n}\n\n.messagePartTwo {\n font-weight: $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: $google-preferred-source-cta-opacity-hover;\n text-decoration: none;\n }\n}\n\n.ctaImage {\n display: block;\n width: $google-preferred-source-cta-width;\n height: $google-preferred-source-cta-height;\n max-width: $google-preferred-source-cta-max-width;\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.89a3c800.iframe.bundle.js"></script><script src="251.780501b8.iframe.bundle.js"></script><script src="main.9f63ef00.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.28695f48.iframe.bundle.js"></script><script src="251.780501b8.iframe.bundle.js"></script><script src="main.9f63ef00.iframe.bundle.js"></script></body></html>
@@ -1,2 +1 @@
1
- {"generatedAt":1779974899092,"builder":{"name":"webpack5"},"hasCustomBabel":false,"hasCustomWebpack":true,"hasStaticDirs":false,"hasStorybookEslint":false,"refCount":0,"metaFramework":{"name":"Gatsby","packageName":"gatsby","version":"5.13.6"},"monorepo":"Workspaces","packageManager":{"type":"yarn","version":"1.22.19"},"storybookVersion":"6.5.16","language":"javascript","storybookPackages":{"@storybook/addon-actions":{"version":"6.5.16"},"@storybook/builder-webpack5":{"version":"6.5.16"},"@storybook/manager-webpack5":{"version":"6.5.16"},"@storybook/react":{"version":"6.5.16"}},"framework":{"name":"react"},"addons":{"@storybook/addon-links":{"version":"6.5.16"},"@storybook/addon-essentials":{"version":"6.5.16"}}}
2
- don-measure":{"version":"6.5.16-alpha.0"},"@storybook/addon-outline":{"version":"6.5.16-alpha.0"},"@storybook/addon-storyshots":{"version":"6.5.16-alpha.0"},"@storybook/addon-storyshots-puppeteer":{"version":"6.5.16-alpha.0"},"@storybook/addon-storysource":{"version":"6.5.16-alpha.0"},"@storybook/addon-toolbars":{"version":"6.5.16-alpha.0"},"@storybook/addon-viewport":{"version":"6.5.16-alpha.0"},"@storybook/addons":{"version":"6.5.16-alpha.0"},"@storybook/angular":{"version":"6.5.16-alpha.0"},"@storybook/api":{"version":"6.5.16-alpha.0"},"@storybook/babel-plugin-require-context-hook":{"version":"1.0.1"},"@storybook/channel-postmessage":{"version":"6.5.16-alpha.0"},"@storybook/channel-websocket":{"version":"6.5.16-alpha.0"},"@storybook/channels":{"version":"6.5.16-alpha.0"},"@storybook/cli":{"version":"6.5.16-alpha.0"},"@storybook/client-api":{"version":"6.5.16-alpha.0"},"@storybook/client-logger":{"version":"6.5.16-alpha.0"},"@storybook/codemod":{"version":"6.5.16-alpha.0"},"@storybook/components":{"version":"6.5.16-alpha.0"},"@storybook/core":{"version":"6.5.16-alpha.0"},"@storybook/core-events":{"version":"6.5.16-alpha.0"},"@storybook/csf-tools":{"version":"6.5.16-alpha.0"},"@storybook/docs-tools":{"version":"6.5.16-alpha.0"},"@storybook/ember":{"version":"6.5.16-alpha.0"},"@storybook/eslint-config-storybook":{"version":"2.4.0"},"@storybook/html":{"version":"6.5.16-alpha.0"},"@storybook/instrumenter":{"version":"6.5.16-alpha.0"},"@storybook/jest":{"version":"0.0.5"},"@storybook/linter-config":{"version":"2.5.0"},"@storybook/node-logger":{"version":"6.5.16-alpha.0"},"@storybook/postinstall":{"version":"6.5.16-alpha.0"},"@storybook/preact":{"version":"6.5.16-alpha.0"},"@storybook/preview-web":{"version":"6.5.16-alpha.0"},"@storybook/react":{"version":"6.5.16-alpha.0"},"@storybook/router":{"version":"6.5.16-alpha.0"},"@storybook/semver":{"version":"7.3.2"},"@storybook/server":{"version":"6.5.16-alpha.0"},"@storybook/source-loader":{"version":"6.5.16-alpha.0"},"@storybook/store":{"version":"6.5.16-alpha.0"},"@storybook/svelte":{"version":"6.5.16-alpha.0"},"@storybook/telemetry":{"version":"6.5.16-alpha.0"},"@storybook/testing-library":{"version":"0.0.7"},"@storybook/theming":{"version":"6.5.16-alpha.0"},"@storybook/ui":{"version":"6.5.16-alpha.0"},"@storybook/vue":{"version":"6.5.16-alpha.0"},"@storybook/web-components":{"version":"6.5.16-alpha.0"},"eslint-plugin-storybook":{"version":"0.3.5"}},"framework":{"name":"angular"},"addons":{"@storybook/addon-links":{"version":"6.5.16-alpha.0"},"@storybook/addon-essentials":{"version":"6.5.16-alpha.0"}}}
1
+ {"generatedAt":1780040572664,"builder":{"name":"webpack5"},"hasCustomBabel":false,"hasCustomWebpack":true,"hasStaticDirs":false,"hasStorybookEslint":false,"refCount":0,"metaFramework":{"name":"Gatsby","packageName":"gatsby","version":"5.13.6"},"monorepo":"Workspaces","packageManager":{"type":"yarn","version":"1.22.19"},"storybookVersion":"6.5.16","language":"javascript","storybookPackages":{"@storybook/addon-actions":{"version":"6.5.16"},"@storybook/builder-webpack5":{"version":"6.5.16"},"@storybook/manager-webpack5":{"version":"6.5.16"},"@storybook/react":{"version":"6.5.16"}},"framework":{"name":"react"},"addons":{"@storybook/addon-links":{"version":"6.5.16"},"@storybook/addon-essentials":{"version":"6.5.16"}}}
@@ -1 +1 @@
1
- (()=>{"use strict";var deferred,leafPrototypes,getProto,inProgress,__webpack_modules__={},__webpack_module_cache__={};function __webpack_require__(moduleId){var cachedModule=__webpack_module_cache__[moduleId];if(void 0!==cachedModule)return cachedModule.exports;var module=__webpack_module_cache__[moduleId]={id:moduleId,loaded:!1,exports:{}};return __webpack_modules__[moduleId].call(module.exports,module,module.exports,__webpack_require__),module.loaded=!0,module.exports}__webpack_require__.m=__webpack_modules__,deferred=[],__webpack_require__.O=(result,chunkIds,fn,priority)=>{if(!chunkIds){var notFulfilled=1/0;for(i=0;i<deferred.length;i++){chunkIds=deferred[i][0],fn=deferred[i][1],priority=deferred[i][2];for(var fulfilled=!0,j=0;j<chunkIds.length;j++)(!1&priority||notFulfilled>=priority)&&Object.keys(__webpack_require__.O).every((key=>__webpack_require__.O[key](chunkIds[j])))?chunkIds.splice(j--,1):(fulfilled=!1,priority<notFulfilled&&(notFulfilled=priority));if(fulfilled){deferred.splice(i--,1);var r=fn();void 0!==r&&(result=r)}}return result}priority=priority||0;for(var i=deferred.length;i>0&&deferred[i-1][2]>priority;i--)deferred[i]=deferred[i-1];deferred[i]=[chunkIds,fn,priority]},__webpack_require__.n=module=>{var getter=module&&module.__esModule?()=>module.default:()=>module;return __webpack_require__.d(getter,{a:getter}),getter},getProto=Object.getPrototypeOf?obj=>Object.getPrototypeOf(obj):obj=>obj.__proto__,__webpack_require__.t=function(value,mode){if(1&mode&&(value=this(value)),8&mode)return value;if("object"==typeof value&&value){if(4&mode&&value.__esModule)return value;if(16&mode&&"function"==typeof value.then)return value}var ns=Object.create(null);__webpack_require__.r(ns);var def={};leafPrototypes=leafPrototypes||[null,getProto({}),getProto([]),getProto(getProto)];for(var current=2&mode&&value;"object"==typeof current&&!~leafPrototypes.indexOf(current);current=getProto(current))Object.getOwnPropertyNames(current).forEach((key=>def[key]=()=>value[key]));return def.default=()=>value,__webpack_require__.d(ns,def),ns},__webpack_require__.d=(exports,definition)=>{for(var key in definition)__webpack_require__.o(definition,key)&&!__webpack_require__.o(exports,key)&&Object.defineProperty(exports,key,{enumerable:!0,get:definition[key]})},__webpack_require__.f={},__webpack_require__.e=chunkId=>Promise.all(Object.keys(__webpack_require__.f).reduce(((promises,key)=>(__webpack_require__.f[key](chunkId,promises),promises)),[])),__webpack_require__.u=chunkId=>chunkId+"."+{36:"6d7d7dac",61:"24d29b3a",127:"0af394fa",177:"ac764a45",179:"cf86fb79",232:"e2508c7f",240:"0097ef78",242:"150ae3e2",300:"5fc05ffd",333:"4e379536",395:"c1efbb64",409:"2220e9bb",421:"bcd59807",449:"b926d2e5",472:"5c5f9f3f",477:"0df7d903",504:"6c39549e",537:"128d69b3",563:"e1e66d81",582:"966b7510",591:"6dbd470c",604:"1ff7045f",620:"006a92ae",631:"8d388e4d",638:"7b0237f8",650:"0b65f6f2",672:"3058d279",679:"0c649d92",693:"203bbdc7",733:"7566cbec",776:"71c64a44",777:"4a9b70a6",780:"3a6a2927",786:"149e758a",794:"7bc8e2ea",796:"8a8f559c",854:"9fc784ba",941:"1ca576a2",942:"7a3b5e99",943:"3f7c32be",964:"3d4c1350",995:"e10040ca"}[chunkId]+".iframe.bundle.js",__webpack_require__.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),__webpack_require__.hmd=module=>((module=Object.create(module)).children||(module.children=[]),Object.defineProperty(module,"exports",{enumerable:!0,set:()=>{throw new Error("ES Modules may not assign module.exports or exports.*, Use ESM export syntax, instead: "+module.id)}}),module),__webpack_require__.o=(obj,prop)=>Object.prototype.hasOwnProperty.call(obj,prop),inProgress={},__webpack_require__.l=(url,done,key,chunkId)=>{if(inProgress[url])inProgress[url].push(done);else{var script,needAttach;if(void 0!==key)for(var scripts=document.getElementsByTagName("script"),i=0;i<scripts.length;i++){var s=scripts[i];if(s.getAttribute("src")==url||s.getAttribute("data-webpack")=="gatsby-matrix-theme:"+key){script=s;break}}script||(needAttach=!0,(script=document.createElement("script")).charset="utf-8",script.timeout=120,__webpack_require__.nc&&script.setAttribute("nonce",__webpack_require__.nc),script.setAttribute("data-webpack","gatsby-matrix-theme:"+key),script.src=url),inProgress[url]=[done];var onScriptComplete=(prev,event)=>{script.onerror=script.onload=null,clearTimeout(timeout);var doneFns=inProgress[url];if(delete inProgress[url],script.parentNode&&script.parentNode.removeChild(script),doneFns&&doneFns.forEach((fn=>fn(event))),prev)return prev(event)},timeout=setTimeout(onScriptComplete.bind(null,void 0,{type:"timeout",target:script}),12e4);script.onerror=onScriptComplete.bind(null,script.onerror),script.onload=onScriptComplete.bind(null,script.onload),needAttach&&document.head.appendChild(script)}},__webpack_require__.r=exports=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(exports,"__esModule",{value:!0})},__webpack_require__.nmd=module=>(module.paths=[],module.children||(module.children=[]),module),__webpack_require__.p="",(()=>{var installedChunks={354:0};__webpack_require__.f.j=(chunkId,promises)=>{var installedChunkData=__webpack_require__.o(installedChunks,chunkId)?installedChunks[chunkId]:void 0;if(0!==installedChunkData)if(installedChunkData)promises.push(installedChunkData[2]);else if(354!=chunkId){var promise=new Promise(((resolve,reject)=>installedChunkData=installedChunks[chunkId]=[resolve,reject]));promises.push(installedChunkData[2]=promise);var url=__webpack_require__.p+__webpack_require__.u(chunkId),error=new Error;__webpack_require__.l(url,(event=>{if(__webpack_require__.o(installedChunks,chunkId)&&(0!==(installedChunkData=installedChunks[chunkId])&&(installedChunks[chunkId]=void 0),installedChunkData)){var errorType=event&&("load"===event.type?"missing":event.type),realSrc=event&&event.target&&event.target.src;error.message="Loading chunk "+chunkId+" failed.\n("+errorType+": "+realSrc+")",error.name="ChunkLoadError",error.type=errorType,error.request=realSrc,installedChunkData[1](error)}}),"chunk-"+chunkId,chunkId)}else installedChunks[chunkId]=0},__webpack_require__.O.j=chunkId=>0===installedChunks[chunkId];var webpackJsonpCallback=(parentChunkLoadingFunction,data)=>{var moduleId,chunkId,chunkIds=data[0],moreModules=data[1],runtime=data[2],i=0;if(chunkIds.some((id=>0!==installedChunks[id]))){for(moduleId in moreModules)__webpack_require__.o(moreModules,moduleId)&&(__webpack_require__.m[moduleId]=moreModules[moduleId]);if(runtime)var result=runtime(__webpack_require__)}for(parentChunkLoadingFunction&&parentChunkLoadingFunction(data);i<chunkIds.length;i++)chunkId=chunkIds[i],__webpack_require__.o(installedChunks,chunkId)&&installedChunks[chunkId]&&installedChunks[chunkId][0](),installedChunks[chunkId]=0;return __webpack_require__.O(result)},chunkLoadingGlobal=self.webpackChunkgatsby_matrix_theme=self.webpackChunkgatsby_matrix_theme||[];chunkLoadingGlobal.forEach(webpackJsonpCallback.bind(null,0)),chunkLoadingGlobal.push=webpackJsonpCallback.bind(null,chunkLoadingGlobal.push.bind(chunkLoadingGlobal))})(),__webpack_require__.nc=void 0})();
1
+ (()=>{"use strict";var deferred,leafPrototypes,getProto,inProgress,__webpack_modules__={},__webpack_module_cache__={};function __webpack_require__(moduleId){var cachedModule=__webpack_module_cache__[moduleId];if(void 0!==cachedModule)return cachedModule.exports;var module=__webpack_module_cache__[moduleId]={id:moduleId,loaded:!1,exports:{}};return __webpack_modules__[moduleId].call(module.exports,module,module.exports,__webpack_require__),module.loaded=!0,module.exports}__webpack_require__.m=__webpack_modules__,deferred=[],__webpack_require__.O=(result,chunkIds,fn,priority)=>{if(!chunkIds){var notFulfilled=1/0;for(i=0;i<deferred.length;i++){chunkIds=deferred[i][0],fn=deferred[i][1],priority=deferred[i][2];for(var fulfilled=!0,j=0;j<chunkIds.length;j++)(!1&priority||notFulfilled>=priority)&&Object.keys(__webpack_require__.O).every((key=>__webpack_require__.O[key](chunkIds[j])))?chunkIds.splice(j--,1):(fulfilled=!1,priority<notFulfilled&&(notFulfilled=priority));if(fulfilled){deferred.splice(i--,1);var r=fn();void 0!==r&&(result=r)}}return result}priority=priority||0;for(var i=deferred.length;i>0&&deferred[i-1][2]>priority;i--)deferred[i]=deferred[i-1];deferred[i]=[chunkIds,fn,priority]},__webpack_require__.n=module=>{var getter=module&&module.__esModule?()=>module.default:()=>module;return __webpack_require__.d(getter,{a:getter}),getter},getProto=Object.getPrototypeOf?obj=>Object.getPrototypeOf(obj):obj=>obj.__proto__,__webpack_require__.t=function(value,mode){if(1&mode&&(value=this(value)),8&mode)return value;if("object"==typeof value&&value){if(4&mode&&value.__esModule)return value;if(16&mode&&"function"==typeof value.then)return value}var ns=Object.create(null);__webpack_require__.r(ns);var def={};leafPrototypes=leafPrototypes||[null,getProto({}),getProto([]),getProto(getProto)];for(var current=2&mode&&value;"object"==typeof current&&!~leafPrototypes.indexOf(current);current=getProto(current))Object.getOwnPropertyNames(current).forEach((key=>def[key]=()=>value[key]));return def.default=()=>value,__webpack_require__.d(ns,def),ns},__webpack_require__.d=(exports,definition)=>{for(var key in definition)__webpack_require__.o(definition,key)&&!__webpack_require__.o(exports,key)&&Object.defineProperty(exports,key,{enumerable:!0,get:definition[key]})},__webpack_require__.f={},__webpack_require__.e=chunkId=>Promise.all(Object.keys(__webpack_require__.f).reduce(((promises,key)=>(__webpack_require__.f[key](chunkId,promises),promises)),[])),__webpack_require__.u=chunkId=>chunkId+"."+{36:"6d7d7dac",61:"24d29b3a",127:"0af394fa",177:"ac764a45",179:"cf86fb79",232:"e2508c7f",240:"0097ef78",242:"150ae3e2",300:"6d0c1f70",333:"4e379536",395:"c1efbb64",409:"2220e9bb",421:"bcd59807",449:"b926d2e5",472:"5c5f9f3f",477:"0df7d903",504:"6c39549e",537:"128d69b3",563:"e1e66d81",582:"966b7510",591:"6dbd470c",604:"1ff7045f",620:"006a92ae",631:"8d388e4d",638:"7b0237f8",650:"0b65f6f2",672:"3058d279",679:"0c649d92",693:"203bbdc7",733:"7566cbec",776:"71c64a44",777:"4a9b70a6",780:"3a6a2927",786:"149e758a",794:"7bc8e2ea",796:"8a8f559c",854:"9fc784ba",941:"1ca576a2",942:"7a3b5e99",943:"3f7c32be",964:"3d4c1350",995:"e10040ca"}[chunkId]+".iframe.bundle.js",__webpack_require__.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),__webpack_require__.hmd=module=>((module=Object.create(module)).children||(module.children=[]),Object.defineProperty(module,"exports",{enumerable:!0,set:()=>{throw new Error("ES Modules may not assign module.exports or exports.*, Use ESM export syntax, instead: "+module.id)}}),module),__webpack_require__.o=(obj,prop)=>Object.prototype.hasOwnProperty.call(obj,prop),inProgress={},__webpack_require__.l=(url,done,key,chunkId)=>{if(inProgress[url])inProgress[url].push(done);else{var script,needAttach;if(void 0!==key)for(var scripts=document.getElementsByTagName("script"),i=0;i<scripts.length;i++){var s=scripts[i];if(s.getAttribute("src")==url||s.getAttribute("data-webpack")=="gatsby-matrix-theme:"+key){script=s;break}}script||(needAttach=!0,(script=document.createElement("script")).charset="utf-8",script.timeout=120,__webpack_require__.nc&&script.setAttribute("nonce",__webpack_require__.nc),script.setAttribute("data-webpack","gatsby-matrix-theme:"+key),script.src=url),inProgress[url]=[done];var onScriptComplete=(prev,event)=>{script.onerror=script.onload=null,clearTimeout(timeout);var doneFns=inProgress[url];if(delete inProgress[url],script.parentNode&&script.parentNode.removeChild(script),doneFns&&doneFns.forEach((fn=>fn(event))),prev)return prev(event)},timeout=setTimeout(onScriptComplete.bind(null,void 0,{type:"timeout",target:script}),12e4);script.onerror=onScriptComplete.bind(null,script.onerror),script.onload=onScriptComplete.bind(null,script.onload),needAttach&&document.head.appendChild(script)}},__webpack_require__.r=exports=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(exports,"__esModule",{value:!0})},__webpack_require__.nmd=module=>(module.paths=[],module.children||(module.children=[]),module),__webpack_require__.p="",(()=>{var installedChunks={354:0};__webpack_require__.f.j=(chunkId,promises)=>{var installedChunkData=__webpack_require__.o(installedChunks,chunkId)?installedChunks[chunkId]:void 0;if(0!==installedChunkData)if(installedChunkData)promises.push(installedChunkData[2]);else if(354!=chunkId){var promise=new Promise(((resolve,reject)=>installedChunkData=installedChunks[chunkId]=[resolve,reject]));promises.push(installedChunkData[2]=promise);var url=__webpack_require__.p+__webpack_require__.u(chunkId),error=new Error;__webpack_require__.l(url,(event=>{if(__webpack_require__.o(installedChunks,chunkId)&&(0!==(installedChunkData=installedChunks[chunkId])&&(installedChunks[chunkId]=void 0),installedChunkData)){var errorType=event&&("load"===event.type?"missing":event.type),realSrc=event&&event.target&&event.target.src;error.message="Loading chunk "+chunkId+" failed.\n("+errorType+": "+realSrc+")",error.name="ChunkLoadError",error.type=errorType,error.request=realSrc,installedChunkData[1](error)}}),"chunk-"+chunkId,chunkId)}else installedChunks[chunkId]=0},__webpack_require__.O.j=chunkId=>0===installedChunks[chunkId];var webpackJsonpCallback=(parentChunkLoadingFunction,data)=>{var moduleId,chunkId,chunkIds=data[0],moreModules=data[1],runtime=data[2],i=0;if(chunkIds.some((id=>0!==installedChunks[id]))){for(moduleId in moreModules)__webpack_require__.o(moreModules,moduleId)&&(__webpack_require__.m[moduleId]=moreModules[moduleId]);if(runtime)var result=runtime(__webpack_require__)}for(parentChunkLoadingFunction&&parentChunkLoadingFunction(data);i<chunkIds.length;i++)chunkId=chunkIds[i],__webpack_require__.o(installedChunks,chunkId)&&installedChunks[chunkId]&&installedChunks[chunkId][0](),installedChunks[chunkId]=0;return __webpack_require__.O(result)},chunkLoadingGlobal=self.webpackChunkgatsby_matrix_theme=self.webpackChunkgatsby_matrix_theme||[];chunkLoadingGlobal.forEach(webpackJsonpCallback.bind(null,0)),chunkLoadingGlobal.push=webpackJsonpCallback.bind(null,chunkLoadingGlobal.push.bind(chunkLoadingGlobal))})(),__webpack_require__.nc=void 0})();
@@ -1 +0,0 @@
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___}}]);