gatsby-matrix-theme 41.0.3 → 41.0.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,15 @@
1
+ ## [41.0.4](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/compare/v41.0.3...v41.0.4) (2024-05-14)
2
+
3
+
4
+ ### Code Refactoring
5
+
6
+ * add css vars ([286992a](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/286992a1fe4644fe89210ba360f048def00e7055))
7
+ * changes to disclaimers ([1e5f3ea](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/1e5f3ea7e1801c1fd154be4a92bc0f394d56c5f3))
8
+ * changes to review disclaimer props ([c10f489](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/c10f489598b227a719a96f9d7eda380ce5d012dd))
9
+
10
+
11
+ * Merge branch 'tm-4253-review-disclaimer' into 'master' ([328a7ec](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/328a7ec8ad04ed87a293645faeeb069e1adc4dd7))
12
+
1
13
  ## [41.0.3](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/compare/v41.0.2...v41.0.3) (2024-05-09)
2
14
 
3
15
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gatsby-matrix-theme",
3
- "version": "41.0.3",
3
+ "version": "41.0.4",
4
4
  "main": "index.js",
5
5
  "description": "Matrix Theme NPM Package",
6
6
  "author": "",
@@ -21,7 +21,7 @@ describe('Affilicate Disclaimer Component', () => {
21
21
 
22
22
  await waitFor(() => {
23
23
  screen.getByText(
24
- 'Advertising Disclosure: irishluck.ie contains links to partner websites. When a visitor clicks a link and makes a purchase at a partner site, Irishluck is paid a commission. Affiliate links and commissions do not impact bonuses and come at no additional cost to players. Our opinion of the casino always remains unbiased in our recommendations.'
24
+ 'Advertising Disclosure: Irishluck.ie contains links to partner websites. When a visitor clicks a link and makes a purchase at a partner site, Irishluck is paid a commission. Affiliate links and commissions do not impact bonuses and come at no additional cost to players. Our opinion of the casino always remains unbiased in our recommendations.'
25
25
  );
26
26
  const isVisible = container.querySelector('.tooltip');
27
27
  expect(isVisible).toBeTruthy();
@@ -0,0 +1,56 @@
1
+ /* eslint-disable import/no-extraneous-dependencies */
2
+ /* eslint-disable camelcase */
3
+ import React, { useContext } from 'react';
4
+ import PropTypes from 'prop-types';
5
+ import { Context } from 'gatsby-core-theme/src/context/MainProvider';
6
+ import { translate } from 'gatsby-core-theme/src/helpers/getters';
7
+ import Tooltip from '../../tooltip';
8
+ import AffiliateDisclaimerIcon from '../../../../images/icons/affiliate-disclaimer';
9
+ import styles from './affiliate-disclaimer.module.scss';
10
+
11
+ const AffiliateDisclaimer = ({
12
+ showIcon = true,
13
+ icon = <AffiliateDisclaimerIcon />,
14
+ className = '',
15
+ direction = 'bottom',
16
+ content,
17
+ title,
18
+ minWidth = 32.9,
19
+ }) => {
20
+ const { translations } = useContext(Context) || {};
21
+
22
+ return (
23
+ <div className={`${className || ''} ${styles.toolTip || ''}`}>
24
+ <Tooltip
25
+ content={
26
+ content || (
27
+ <div className={styles.content}>
28
+ {translate(
29
+ translations,
30
+ 'advertising_disclosure_content',
31
+ `Advertising Disclosure: Irishluck.ie contains links to partner websites. When a visitor clicks a link and makes a purchase at a partner site, Irishluck is paid a commission. Affiliate links and commissions do not impact bonuses and come at no additional cost to players. Our opinion of the casino always remains unbiased in our recommendations.`
32
+ )}
33
+ </div>
34
+ )
35
+ }
36
+ direction={direction}
37
+ minWidth={minWidth}
38
+ >
39
+ {showIcon && icon}
40
+ {title || translate(translations, 'affiliate_disclaimer_title', 'Advertising Disclosure')}
41
+ </Tooltip>
42
+ </div>
43
+ );
44
+ };
45
+
46
+ AffiliateDisclaimer.propTypes = {
47
+ icon: PropTypes.string,
48
+ className: PropTypes.string,
49
+ showIcon: PropTypes.bool,
50
+ direction: PropTypes.string,
51
+ content: PropTypes.element,
52
+ title: PropTypes.string,
53
+ minWidth: PropTypes.number,
54
+ };
55
+
56
+ export default AffiliateDisclaimer;
@@ -0,0 +1,51 @@
1
+ import React, { useContext } from 'react';
2
+ import PropTypes from 'prop-types';
3
+ import { Context } from 'gatsby-core-theme/src/context/MainProvider';
4
+ import { translate } from 'gatsby-core-theme/src/helpers/getters';
5
+ import AffiliateDisclaimer from '../affiliate-disclaimer';
6
+ import ReviewDisclaimerIcon from '../../../../images/icons/review-disclaimer';
7
+ import styles from './review-disclaimer.module.scss';
8
+
9
+ const ReviewDisclaimer = ({
10
+ showIcon = true,
11
+ icon = <ReviewDisclaimerIcon />,
12
+ className = styles.reviewDisclaimer,
13
+ direction = 'bottom',
14
+ content = (
15
+ <div className={styles.content}>
16
+ Gambling, while enjoyable for many, can spiral into an addiction for some. PlayCasino believes
17
+ in <a href="/">responsible gambling</a> and offers resources to help our users understand and
18
+ manage the risks associated. Know the signs and ensure you play responsibly.
19
+ </div>
20
+ ),
21
+ title,
22
+ minWidth = 32.9,
23
+ }) => {
24
+ const { translations } = useContext(Context) || {};
25
+
26
+ return (
27
+ <AffiliateDisclaimer
28
+ showIcon={showIcon}
29
+ title={
30
+ title || translate(translations, 'review_disclaimer_text', 'Stay Informed. Stay Safe.')
31
+ }
32
+ content={content}
33
+ icon={icon}
34
+ className={className}
35
+ direction={direction}
36
+ minWidth={minWidth}
37
+ />
38
+ );
39
+ };
40
+
41
+ ReviewDisclaimer.propTypes = {
42
+ icon: PropTypes.string,
43
+ className: PropTypes.string,
44
+ showIcon: PropTypes.bool,
45
+ direction: PropTypes.string,
46
+ content: PropTypes.element,
47
+ title: PropTypes.string,
48
+ minWidth: PropTypes.number,
49
+ };
50
+
51
+ export default ReviewDisclaimer;
@@ -0,0 +1,40 @@
1
+ .reviewDisclaimer {
2
+ > div {
3
+ background-color: var(--review-disclaimer-background-color, #eaaa3b);
4
+ color: var(--review-disclaimer-text-color, #000000);
5
+ padding: 0.4rem;
6
+ border-radius: 0.4rem;
7
+ gap: 1rem;
8
+
9
+ a {
10
+ color: var(--review-disclaimer-link-color, #ffffff);
11
+ text-decoration: underline;
12
+ }
13
+
14
+ > div {
15
+ top: 140%;
16
+ background: var(--review-disclaimer-tooltip-background-color, var( --tooltip-background-color, #6e33e5));
17
+
18
+ &:before {
19
+ @include min(tablet) {
20
+ left: 0;
21
+ right: auto;
22
+ transform: translateX(11px);
23
+ }
24
+ }
25
+
26
+ @include min(laptop) {
27
+ left: 0;
28
+ right: auto;
29
+ transform: translateX(0);
30
+ }
31
+ }
32
+ }
33
+ }
34
+
35
+ .content {
36
+ color: var(--review-disclaimer-tooltip-text-color, #ffffff);
37
+ font-size: 1.2rem;
38
+ font-weight: 400;
39
+ line-height: 18px;
40
+ }
@@ -106,6 +106,8 @@ const Modules = ({ module, pageContext, index, exclOperator, serverData }) => {
106
106
  return lazy(() => import('../../../../components/molecules/horse-calculator'));
107
107
  case 'review_summary':
108
108
  return lazy(() => import('../../../../components/molecules/operator-summary'));
109
+ case 'review_disclaimer':
110
+ return lazy(() => import('../../../../components/atoms/disclaimer/review-disclaimer'));
109
111
  case 'game_iframe':
110
112
  case 'iframe':
111
113
  if (moduleItem?.value_type === 'template_block') {
@@ -8,7 +8,7 @@ import List from './list';
8
8
  import styles from './toplist.module.scss';
9
9
  import Tabs from '~hooks/tabs';
10
10
  import ModuleIntroduction from '~molecules/content';
11
- import AffiliateDisclaimer from '../../../../components/atoms/affiliate-disclaimer';
11
+ import AffiliateDisclaimer from '../../../../components/atoms/disclaimer/affiliate-disclaimer';
12
12
 
13
13
  const TopList = ({
14
14
  module,
@@ -3,7 +3,7 @@
3
3
  /* eslint-disable import/no-extraneous-dependencies */
4
4
  import React, { useState } from 'react';
5
5
  import PropTypes from 'prop-types';
6
- import AffiliateDisclaimer from '../../../components/atoms/affiliate-disclaimer';
6
+ import AffiliateDisclaimer from '../../../components/atoms/disclaimer/affiliate-disclaimer';
7
7
  import Title from './title';
8
8
  import ModuleIntro from '~molecules/content';
9
9
  import TabList from './tab/tab-list';
@@ -1,51 +1,12 @@
1
- /* eslint-disable import/no-extraneous-dependencies */
2
- /* eslint-disable camelcase */
3
- import React, { useContext } from 'react';
4
- import PropTypes from 'prop-types';
5
- import { Context } from 'gatsby-core-theme/src/context/MainProvider';
6
- import { translate } from 'gatsby-core-theme/src/helpers/getters';
7
- import Tooltip from '../tooltip';
8
- import styles from './affiliate-disclaimer.module.scss';
1
+ import React from 'react';
9
2
 
10
- const AffiliateDisclaimer = ({
11
- showIcon = true,
12
- icon = (
13
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none">
3
+ export default function AffiliateDisclaimerIcon() {
4
+ return (
5
+ <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none">
14
6
  <path
15
7
  d="M12 7C11.7348 7 11.4804 7.10536 11.2929 7.29289C11.1054 7.48043 11 7.73478 11 8V12C11 12.2652 11.1054 12.5196 11.2929 12.7071C11.4804 12.8946 11.7348 13 12 13C12.2652 13 12.5196 12.8946 12.7071 12.7071C12.8946 12.5196 13 12.2652 13 12V8C13 7.73478 12.8946 7.48043 12.7071 7.29289C12.5196 7.10536 12.2652 7 12 7ZM12.92 15.62C12.8981 15.5563 12.8679 15.4957 12.83 15.44L12.71 15.29C12.5694 15.1512 12.3908 15.0572 12.1968 15.0199C12.0028 14.9825 11.8021 15.0034 11.62 15.08C11.4988 15.1306 11.3872 15.2017 11.29 15.29C11.1973 15.3834 11.124 15.4943 11.0742 15.6161C11.0245 15.7379 10.9992 15.8684 11 16C11.0016 16.1307 11.0288 16.2598 11.08 16.38C11.1249 16.5041 11.1966 16.6168 11.2899 16.7101C11.3832 16.8034 11.4959 16.8751 11.62 16.92C11.7397 16.9729 11.8691 17.0002 12 17.0002C12.1309 17.0002 12.2603 16.9729 12.38 16.92C12.5041 16.8751 12.6168 16.8034 12.7101 16.7101C12.8034 16.6168 12.8751 16.5041 12.92 16.38C12.9712 16.2598 12.9984 16.1307 13 16C13.0049 15.9334 13.0049 15.8666 13 15.8C12.9828 15.7362 12.9558 15.6755 12.92 15.62ZM12 2C10.0222 2 8.08879 2.58649 6.4443 3.6853C4.79981 4.78412 3.51809 6.3459 2.76121 8.17317C2.00433 10.0004 1.8063 12.0111 2.19215 13.9509C2.578 15.8907 3.53041 17.6725 4.92894 19.0711C6.32746 20.4696 8.10929 21.422 10.0491 21.8079C11.9889 22.1937 13.9996 21.9957 15.8268 21.2388C17.6541 20.4819 19.2159 19.2002 20.3147 17.5557C21.4135 15.9112 22 13.9778 22 12C22 10.6868 21.7413 9.38642 21.2388 8.17317C20.7363 6.95991 19.9997 5.85752 19.0711 4.92893C18.1425 4.00035 17.0401 3.26375 15.8268 2.7612C14.6136 2.25866 13.3132 2 12 2ZM12 20C10.4178 20 8.87104 19.5308 7.55544 18.6518C6.23985 17.7727 5.21447 16.5233 4.60897 15.0615C4.00347 13.5997 3.84504 11.9911 4.15372 10.4393C4.4624 8.88743 5.22433 7.46197 6.34315 6.34315C7.46197 5.22433 8.88743 4.4624 10.4393 4.15372C11.9911 3.84504 13.5997 4.00346 15.0615 4.60896C16.5233 5.21447 17.7727 6.23984 18.6518 7.55544C19.5308 8.87103 20 10.4177 20 12C20 14.1217 19.1572 16.1566 17.6569 17.6569C16.1566 19.1571 14.1217 20 12 20Z"
16
8
  fill="#4D5D6D"
17
9
  />
18
10
  </svg>
19
- ),
20
- className = '',
21
- direction = 'bottom',
22
- content = (
23
- <div className={styles.content}>
24
- Advertising Disclosure: irishluck.ie contains links to partner websites. When a visitor clicks
25
- a link and makes a purchase at a partner site, Irishluck is paid a commission. Affiliate links
26
- and commissions do not impact bonuses and come at no additional cost to players. Our opinion
27
- of the casino always remains unbiased in our recommendations.
28
- </div>
29
- ),
30
- }) => {
31
- const { translations } = useContext(Context) || {};
32
-
33
- return (
34
- <div className={`${className || ''} ${styles.toolTip || ''}`}>
35
- <Tooltip content={content} direction={direction}>
36
- {showIcon && icon}
37
- {translate(translations, 'affiliate_disclaimer_text', 'Advertising Disclosure')}
38
- </Tooltip>
39
- </div>
40
11
  );
41
- };
42
-
43
- AffiliateDisclaimer.propTypes = {
44
- icon: PropTypes.string,
45
- className: PropTypes.string,
46
- showIcon: PropTypes.bool,
47
- direction: PropTypes.string,
48
- content: PropTypes.element,
49
- };
50
-
51
- export default AffiliateDisclaimer;
12
+ }
@@ -0,0 +1,12 @@
1
+ import React from 'react';
2
+
3
+ export default function ReviewDisclaimerIcon() {
4
+ return (
5
+ <svg width="16" height="14" viewBox="0 0 16 14" fill="none" xmlns="http://www.w3.org/2000/svg">
6
+ <path
7
+ d="M8 9.66669C7.86814 9.66669 7.73925 9.70578 7.62962 9.77904C7.51999 9.85229 7.43454 9.95641 7.38408 10.0782C7.33362 10.2 7.32042 10.3341 7.34614 10.4634C7.37187 10.5927 7.43536 10.7115 7.52859 10.8048C7.62183 10.898 7.74062 10.9615 7.86994 10.9872C7.99926 11.0129 8.1333 10.9997 8.25512 10.9493C8.37694 10.8988 8.48106 10.8134 8.55431 10.7037C8.62757 10.5941 8.66667 10.4652 8.66667 10.3334C8.66667 10.1565 8.59643 9.98697 8.4714 9.86195C8.34638 9.73692 8.17681 9.66669 8 9.66669ZM15.1133 10.6467L9.74667 1.31335C9.5732 1.00236 9.31986 0.743323 9.01279 0.562997C8.70573 0.382672 8.35609 0.287598 8 0.287598C7.6439 0.287598 7.29426 0.382672 6.9872 0.562997C6.68014 0.743323 6.42679 1.00236 6.25333 1.31335L0.919999 10.6467C0.740529 10.9494 0.644094 11.294 0.640428 11.6459C0.636763 11.9978 0.725997 12.3444 0.899123 12.6507C1.07225 12.9571 1.32314 13.2123 1.62645 13.3907C1.92977 13.5691 2.27479 13.6643 2.62667 13.6667H13.3733C13.728 13.6702 14.0773 13.5793 14.3853 13.4033C14.6933 13.2273 14.9489 12.9726 15.126 12.6652C15.3031 12.3579 15.3952 12.009 15.393 11.6542C15.3908 11.2995 15.2943 10.9518 15.1133 10.6467ZM13.96 11.98C13.9016 12.084 13.8163 12.1704 13.7131 12.2302C13.6099 12.29 13.4926 12.321 13.3733 12.32H2.62667C2.50741 12.321 2.39006 12.29 2.28688 12.2302C2.18369 12.1704 2.09843 12.084 2.04 11.98C1.98149 11.8787 1.95068 11.7637 1.95068 11.6467C1.95068 11.5297 1.98149 11.4147 2.04 11.3134L7.37333 1.98002C7.42928 1.87082 7.51427 1.77917 7.61896 1.71518C7.72365 1.65119 7.84397 1.61733 7.96667 1.61733C8.08936 1.61733 8.20968 1.65119 8.31437 1.71518C8.41906 1.77917 8.50405 1.87082 8.56 1.98002L13.9267 11.3134C13.9928 11.4132 14.0308 11.5291 14.0367 11.6488C14.0425 11.7684 14.0161 11.8875 13.96 11.9934V11.98ZM8 4.33335C7.82319 4.33335 7.65362 4.40359 7.52859 4.52861C7.40357 4.65364 7.33333 4.82321 7.33333 5.00002V7.66669C7.33333 7.8435 7.40357 8.01307 7.52859 8.13809C7.65362 8.26311 7.82319 8.33335 8 8.33335C8.17681 8.33335 8.34638 8.26311 8.4714 8.13809C8.59643 8.01307 8.66667 7.8435 8.66667 7.66669V5.00002C8.66667 4.82321 8.59643 4.65364 8.4714 4.52861C8.34638 4.40359 8.17681 4.33335 8 4.33335Z"
8
+ fill="black"
9
+ />
10
+ </svg>
11
+ );
12
+ }
@@ -0,0 +1 @@
1
+ "use strict";(self.webpackChunkgatsby_matrix_theme=self.webpackChunkgatsby_matrix_theme||[]).push([[678],{"./src/components/atoms/disclaimer/review-disclaimer/index.js":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.r(__webpack_exports__),__webpack_require__.d(__webpack_exports__,{default:()=>review_disclaimer});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),MainProvider=__webpack_require__("../node_modules/gatsby-core-theme/src/context/MainProvider.js"),getters=__webpack_require__("../node_modules/gatsby-core-theme/src/helpers/getters.mjs"),affiliate_disclaimer=__webpack_require__("./src/components/atoms/disclaimer/affiliate-disclaimer/index.js");function ReviewDisclaimerIcon(){return react.createElement("svg",{width:"16",height:"14",viewBox:"0 0 16 14",fill:"none",xmlns:"http://www.w3.org/2000/svg"},react.createElement("path",{d:"M8 9.66669C7.86814 9.66669 7.73925 9.70578 7.62962 9.77904C7.51999 9.85229 7.43454 9.95641 7.38408 10.0782C7.33362 10.2 7.32042 10.3341 7.34614 10.4634C7.37187 10.5927 7.43536 10.7115 7.52859 10.8048C7.62183 10.898 7.74062 10.9615 7.86994 10.9872C7.99926 11.0129 8.1333 10.9997 8.25512 10.9493C8.37694 10.8988 8.48106 10.8134 8.55431 10.7037C8.62757 10.5941 8.66667 10.4652 8.66667 10.3334C8.66667 10.1565 8.59643 9.98697 8.4714 9.86195C8.34638 9.73692 8.17681 9.66669 8 9.66669ZM15.1133 10.6467L9.74667 1.31335C9.5732 1.00236 9.31986 0.743323 9.01279 0.562997C8.70573 0.382672 8.35609 0.287598 8 0.287598C7.6439 0.287598 7.29426 0.382672 6.9872 0.562997C6.68014 0.743323 6.42679 1.00236 6.25333 1.31335L0.919999 10.6467C0.740529 10.9494 0.644094 11.294 0.640428 11.6459C0.636763 11.9978 0.725997 12.3444 0.899123 12.6507C1.07225 12.9571 1.32314 13.2123 1.62645 13.3907C1.92977 13.5691 2.27479 13.6643 2.62667 13.6667H13.3733C13.728 13.6702 14.0773 13.5793 14.3853 13.4033C14.6933 13.2273 14.9489 12.9726 15.126 12.6652C15.3031 12.3579 15.3952 12.009 15.393 11.6542C15.3908 11.2995 15.2943 10.9518 15.1133 10.6467ZM13.96 11.98C13.9016 12.084 13.8163 12.1704 13.7131 12.2302C13.6099 12.29 13.4926 12.321 13.3733 12.32H2.62667C2.50741 12.321 2.39006 12.29 2.28688 12.2302C2.18369 12.1704 2.09843 12.084 2.04 11.98C1.98149 11.8787 1.95068 11.7637 1.95068 11.6467C1.95068 11.5297 1.98149 11.4147 2.04 11.3134L7.37333 1.98002C7.42928 1.87082 7.51427 1.77917 7.61896 1.71518C7.72365 1.65119 7.84397 1.61733 7.96667 1.61733C8.08936 1.61733 8.20968 1.65119 8.31437 1.71518C8.41906 1.77917 8.50405 1.87082 8.56 1.98002L13.9267 11.3134C13.9928 11.4132 14.0308 11.5291 14.0367 11.6488C14.0425 11.7684 14.0161 11.8875 13.96 11.9934V11.98ZM8 4.33335C7.82319 4.33335 7.65362 4.40359 7.52859 4.52861C7.40357 4.65364 7.33333 4.82321 7.33333 5.00002V7.66669C7.33333 7.8435 7.40357 8.01307 7.52859 8.13809C7.65362 8.26311 7.82319 8.33335 8 8.33335C8.17681 8.33335 8.34638 8.26311 8.4714 8.13809C8.59643 8.01307 8.66667 7.8435 8.66667 7.66669V5.00002C8.66667 4.82321 8.59643 4.65364 8.4714 4.52861C8.34638 4.40359 8.17681 4.33335 8 4.33335Z",fill:"black"}))}ReviewDisclaimerIcon.displayName="ReviewDisclaimerIcon",ReviewDisclaimerIcon.__docgenInfo={description:"",methods:[],displayName:"ReviewDisclaimerIcon"},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["src/images/icons/review-disclaimer.js"]={name:"ReviewDisclaimerIcon",docgenInfo:ReviewDisclaimerIcon.__docgenInfo,path:"src/images/icons/review-disclaimer.js"});var injectStylesIntoStyleTag=__webpack_require__("../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js"),injectStylesIntoStyleTag_default=__webpack_require__.n(injectStylesIntoStyleTag),review_disclaimer_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/atoms/disclaimer/review-disclaimer/review-disclaimer.module.scss"),options={insert:"head",singleton:!1};injectStylesIntoStyleTag_default()(review_disclaimer_module.A,options);const review_disclaimer_review_disclaimer_module=review_disclaimer_module.A.locals||{};var ReviewDisclaimer=function(_ref){var _ref$showIcon=_ref.showIcon,showIcon=void 0===_ref$showIcon||_ref$showIcon,_ref$icon=_ref.icon,icon=void 0===_ref$icon?react.createElement(ReviewDisclaimerIcon,null):_ref$icon,_ref$className=_ref.className,className=void 0===_ref$className?review_disclaimer_review_disclaimer_module.reviewDisclaimer:_ref$className,_ref$direction=_ref.direction,direction=void 0===_ref$direction?"bottom":_ref$direction,_ref$content=_ref.content,content=void 0===_ref$content?react.createElement("div",{className:review_disclaimer_review_disclaimer_module.content},"Gambling, while enjoyable for many, can spiral into an addiction for some. PlayCasino believes in ",react.createElement("a",{href:"/"},"responsible gambling")," and offers resources to help our users understand and manage the risks associated. Know the signs and ensure you play responsibly."):_ref$content,title=_ref.title,_ref$minWidth=_ref.minWidth,minWidth=void 0===_ref$minWidth?32.9:_ref$minWidth,translations=((0,react.useContext)(MainProvider.o)||{}).translations;return react.createElement(affiliate_disclaimer.A,{showIcon,title:title||(0,getters.Tl)(translations,"review_disclaimer_text","Stay Informed. Stay Safe."),content,icon,className,direction,minWidth})};ReviewDisclaimer.displayName="ReviewDisclaimer",ReviewDisclaimer.propTypes={icon:prop_types_default().string,className:prop_types_default().string,showIcon:prop_types_default().bool,direction:prop_types_default().string,content:prop_types_default().element,title:prop_types_default().string,minWidth:prop_types_default().number},ReviewDisclaimer.__docgenInfo={description:"",methods:[],displayName:"ReviewDisclaimer",props:{showIcon:{defaultValue:{value:"true",computed:!1},description:"",type:{name:"bool"},required:!1},icon:{defaultValue:{value:"<ReviewDisclaimerIcon />",computed:!1},description:"",type:{name:"string"},required:!1},className:{defaultValue:{value:"styles.reviewDisclaimer",computed:!0},description:"",type:{name:"string"},required:!1},direction:{defaultValue:{value:"'bottom'",computed:!1},description:"",type:{name:"string"},required:!1},content:{defaultValue:{value:'<div className={styles.content}>\n Gambling, while enjoyable for many, can spiral into an addiction for some. PlayCasino believes\n in <a href="/">responsible gambling</a> and offers resources to help our users understand and\n manage the risks associated. Know the signs and ensure you play responsibly.\n</div>',computed:!1},description:"",type:{name:"element"},required:!1},minWidth:{defaultValue:{value:"32.9",computed:!1},description:"",type:{name:"number"},required:!1},title:{description:"",type:{name:"string"},required:!1}}};const review_disclaimer=ReviewDisclaimer;"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["src/components/atoms/disclaimer/review-disclaimer/index.js"]={name:"ReviewDisclaimer",docgenInfo:ReviewDisclaimer.__docgenInfo,path:"src/components/atoms/disclaimer/review-disclaimer/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/atoms/disclaimer/review-disclaimer/review-disclaimer.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,"._2rGApezEioLjTo-m-wNgAQ\\=\\=>div{background-color:var(--review-disclaimer-background-color, #eaaa3b);color:var(--review-disclaimer-text-color, #000000);padding:.4rem;border-radius:.4rem;gap:1rem}._2rGApezEioLjTo-m-wNgAQ\\=\\=>div a{color:var(--review-disclaimer-link-color, #ffffff);text-decoration:underline}._2rGApezEioLjTo-m-wNgAQ\\=\\=>div>div{top:140%;background:var(--review-disclaimer-tooltip-background-color, var(--tooltip-background-color, #6e33e5))}@media only screen and (min-width:768px){._2rGApezEioLjTo-m-wNgAQ\\=\\=>div>div:before{left:0;right:auto;transform:translateX(11px)}}@media only screen and (min-width:992px){._2rGApezEioLjTo-m-wNgAQ\\=\\=>div>div{left:0;right:auto;transform:translateX(0)}}.r7R\\+kCQJq23Q2VBdrGGlXw\\=\\={color:var(--review-disclaimer-tooltip-text-color, #ffffff);font-size:1.2rem;font-weight:400;line-height:18px}","",{version:3,sources:["webpack://./src/components/atoms/disclaimer/review-disclaimer/review-disclaimer.module.scss","webpack://./../node_modules/gatsby-core-theme/src/styles/utils/_media-queries.scss"],names:[],mappings:"AAeI,iCACI,mEAAA,CACA,kDAAA,CACA,aAAA,CACA,mBAAA,CACA,QAAA,CAEA,mCACI,kDAAA,CACA,yBAAA,CAGJ,qCACI,QAAA,CACA,sGAAA,CCuBV,yCDrBU,4CAEQ,MAAA,CACA,UAAA,CACA,0BAAA,CAAA,CCiBlB,yCDzBM,qCAaQ,MAAA,CACA,UAAA,CACA,uBAAA,CAAA,CAMhB,6BACI,0DAAA,CACA,gBAAA,CACA,eAAA,CACA,gBAAA",sourcesContent:["// Global styles extended in each theme\n\n// Utils\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/variables/stack-order';\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\n.reviewDisclaimer {\n > div {\n background-color: var(--review-disclaimer-background-color, #eaaa3b);\n color: var(--review-disclaimer-text-color, #000000);\n padding: 0.4rem;\n border-radius: 0.4rem;\n gap: 1rem;\n\n a {\n color: var(--review-disclaimer-link-color, #ffffff);\n text-decoration: underline;\n }\n\n > div {\n top: 140%;\n background: var(--review-disclaimer-tooltip-background-color, var( --tooltip-background-color, #6e33e5));\n\n &:before { \n @include min(tablet) {\n left: 0;\n right: auto;\n transform: translateX(11px);\n }\n }\n\n @include min(laptop) {\n left: 0;\n right: auto;\n transform: translateX(0);\n }\n }\n }\n}\n\n.content {\n color: var(--review-disclaimer-tooltip-text-color, #ffffff);\n font-size: 1.2rem;\n font-weight: 400;\n line-height: 18px;\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={reviewDisclaimer:"_2rGApezEioLjTo-m-wNgAQ==",content:"r7R+kCQJq23Q2VBdrGGlXw=="};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/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":"**/*.stories.@(mdx|tsx|ts|jsx|js)","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/spotlights_v2\\/icon\\/template-one(?:\\/(?!\\.)(?:(?:(?!(?:^|\\/)\\.).)*?)\\/|\\/|$)(?!\\.)(?=.)[^/]*?\\.stories\\.(mdx|tsx|ts|jsx|js))$"},{"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)$"}];</script><script src="runtime~main.10fcb2e9.iframe.bundle.js"></script><script src="728.c9409aab.iframe.bundle.js"></script><script src="main.970f6171.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/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":"**/*.stories.@(mdx|tsx|ts|jsx|js)","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/spotlights_v2\\/icon\\/template-one(?:\\/(?!\\.)(?:(?:(?!(?:^|\\/)\\.).)*?)\\/|\\/|$)(?!\\.)(?=.)[^/]*?\\.stories\\.(mdx|tsx|ts|jsx|js))$"},{"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)$"}];</script><script src="runtime~main.d300756c.iframe.bundle.js"></script><script src="728.c9409aab.iframe.bundle.js"></script><script src="main.dec7dd3f.iframe.bundle.js"></script></body></html>