gatsby-matrix-theme 53.15.0 → 53.16.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,23 @@
1
+ # [53.16.0](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/compare/v53.15.1...v53.16.0) (2026-04-23)
2
+
3
+
4
+ * Merge branch 'en-455-verification' into 'master' ([34f17af](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/commit/34f17afb21bd8c35ad58d2ae73214c691b5c62de))
5
+
6
+
7
+ ### Features
8
+
9
+ * verification badge on operator cards ([727331f](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/commit/727331f2e8e6942f1188032e6e233f936b5805dd))
10
+
11
+ ## [53.15.1](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/compare/v53.15.0...v53.15.1) (2026-04-15)
12
+
13
+
14
+ ### Bug Fixes
15
+
16
+ * disable cuponcode for bet365 ([21a6a7b](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/commit/21a6a7b8f1c5a9f47354627f724bbb5a7b686f07))
17
+
18
+
19
+ * Merge branch 'coupon-code' into 'master' ([67455f0](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/commit/67455f0bbbf260800b01efad40a82d307a28ffe9))
20
+
1
21
  # [53.15.0](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/compare/v53.14.0...v53.15.0) (2026-04-14)
2
22
 
3
23
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gatsby-matrix-theme",
3
- "version": "53.15.0",
3
+ "version": "53.16.0",
4
4
  "main": "index.js",
5
5
  "description": "Matrix Theme NPM Package",
6
6
  "author": "",
@@ -15,10 +15,12 @@ import styles from './template-one.module.scss';
15
15
  import Bonus from '~molecules/bonus-box/template-one';
16
16
  import { TrackingKeys } from '~constants/tracking-api';
17
17
  import VariableComponent from '../variables';
18
+ import VerificationBadge from '../../../verification-badge/template-one';
18
19
 
19
20
  const VerifyIcon = lazy(() => import('~images/icons/verify'));
20
21
 
21
22
  const TemplateOne = ({
23
+ showVerificationBadge = false,
22
24
  showRibbon = false,
23
25
  item,
24
26
  useOneStarRating = true,
@@ -32,7 +34,11 @@ const TemplateOne = ({
32
34
  authorTemplateTwo = true,
33
35
  sellingPointsIcon = <FaCheck title="Check Icon" />,
34
36
  showBonusForAll = false,
35
- verifyIcon = <Suspense fallback={<></>}><VerifyIcon /></Suspense>,
37
+ verifyIcon = (
38
+ <Suspense fallback={<></>}>
39
+ <VerifyIcon />
40
+ </Suspense>
41
+ ),
36
42
  showOperatorCta = true,
37
43
  operatorLogoWidth = 88,
38
44
  operatorLogoHeight = 88,
@@ -44,7 +50,7 @@ const TemplateOne = ({
44
50
  itemPosition,
45
51
  ctaIcon = <FaArrowRight title="Right-pointing Arrow Icon" />,
46
52
  hideTnc = false,
47
- moduleStyle
53
+ moduleStyle,
48
54
  }) => {
49
55
  const ribbons = item?.relation?.ribbons || [];
50
56
  const { relation, path } = item;
@@ -89,17 +95,8 @@ const TemplateOne = ({
89
95
  {showSellingPoints && !!sellingPoints?.length && (
90
96
  <SellingPoints sellingPoints={sellingPoints} limit={3} icon={sellingPointsIcon} />
91
97
  )}
92
- {showBonusForAll ? (
93
- <BonusTemplate
94
- moduleName={TrackingKeys?.CARDS}
95
- item={relation}
96
- tracker="main"
97
- pageTemplate={page?.template}
98
- modulePosition={modulePosition}
99
- itemPosition={itemPosition}
100
- />
101
- ) : (
102
- !isInactive && (
98
+ <div className={styles.bonusAndVerification}>
99
+ {showBonusForAll ? (
103
100
  <BonusTemplate
104
101
  moduleName={TrackingKeys?.CARDS}
105
102
  item={relation}
@@ -108,8 +105,20 @@ const TemplateOne = ({
108
105
  modulePosition={modulePosition}
109
106
  itemPosition={itemPosition}
110
107
  />
111
- )
112
- )}
108
+ ) : (
109
+ !isInactive && (
110
+ <BonusTemplate
111
+ moduleName={TrackingKeys?.CARDS}
112
+ item={relation}
113
+ tracker="main"
114
+ pageTemplate={page?.template}
115
+ modulePosition={modulePosition}
116
+ itemPosition={itemPosition}
117
+ />
118
+ )
119
+ )}
120
+ {showVerificationBadge && relation?.status === 'active' && <VerificationBadge />}
121
+ </div>
113
122
  </div>
114
123
  <div className={styles?.cardFooter || ''}>
115
124
  {hasVariableComponent && (
@@ -157,9 +166,7 @@ const TemplateOne = ({
157
166
  }`}
158
167
  >
159
168
  {paymentMethods?.slice(0, 4).map((deposit) => {
160
- const logo =
161
- deposit?.logo?.filename ||
162
- deposit?.logo
169
+ const logo = deposit?.logo?.filename || deposit?.logo;
163
170
  if (!logo) return;
164
171
  return (
165
172
  <li key={`${deposit.id}-${deposit.name}`}>
@@ -178,9 +185,7 @@ const TemplateOne = ({
178
185
  {paymentMethods?.length > 4 && <li>{`+${paymentMethods?.length - 4}`}</li>}
179
186
  </ul>
180
187
  )}
181
- {!hideTnc && (
182
- <TncTemplate operator={item?.relation} isFixed/>
183
- )}
188
+ {!hideTnc && <TncTemplate operator={item?.relation} isFixed />}
184
189
  </div>
185
190
  </div>
186
191
  </div>
@@ -188,6 +193,7 @@ const TemplateOne = ({
188
193
  };
189
194
 
190
195
  TemplateOne.propTypes = {
196
+ showVerificationBadge: PropTypes.bool,
191
197
  item: PropTypes.shape({
192
198
  relation: PropTypes.shape({
193
199
  ribbons: PropTypes.arrayOf(PropTypes.string),
@@ -19,7 +19,7 @@
19
19
  line-height: 2.2rem;
20
20
 
21
21
  // > span::before {
22
- // color: #ffdb20;
22
+ // color: #ffdb20;
23
23
  // }
24
24
 
25
25
  > span:nth-child(2) {
@@ -67,12 +67,12 @@
67
67
  font-size: 1rem;
68
68
  font-weight: 400;
69
69
  line-height: 1.5rem;
70
-
71
- > div{
70
+
71
+ > div {
72
72
  max-height: 45px;
73
73
  overflow: auto;
74
74
  padding-right: 1.6rem;
75
-
75
+
76
76
  &::-webkit-scrollbar {
77
77
  -webkit-appearance: none;
78
78
  width: 0.4rem;
@@ -85,7 +85,7 @@
85
85
  background: var(--color-52);
86
86
  border-radius: 2px;
87
87
  }
88
-
88
+
89
89
  a {
90
90
  font-size: 1rem;
91
91
  font-weight: 400;
@@ -174,3 +174,9 @@
174
174
  }
175
175
  }
176
176
  }
177
+ .bonusAndVerification {
178
+ @include flex-direction(var(--bonus-and-verification-direction, column));
179
+ align-items: var(--bonus-and-verification-align, center);
180
+ justify-content: var(--bonus-and-verification-justify, flex-start);
181
+ gap: var(--bonus-and-verification-gap, 0.8rem);
182
+ }
@@ -1,5 +1,5 @@
1
1
  /* eslint-disable import/no-extraneous-dependencies */
2
- import React, { lazy, Suspense } from 'react';
2
+ import React from 'react';
3
3
  import {
4
4
  Title,
5
5
  Description,
@@ -8,10 +8,9 @@ import {
8
8
  ArgsTable,
9
9
  } from '@storybook/addon-docs/blocks';
10
10
  import { getSampleOperatorCards } from 'gatsby-core-theme/tests/factories/modules/card.factory';
11
+ import VerifyIcon from '~images/icons/verify';
11
12
  import TemplateOne from '.';
12
13
 
13
- const VerifyIcon = lazy(() => import('~images/icons/verify'));
14
-
15
14
  const operatorData = getSampleOperatorCards();
16
15
 
17
16
  export default {
@@ -34,7 +33,7 @@ export default {
34
33
  verifyIcon: {
35
34
  name: 'verifyIcon',
36
35
  type: { name: 'element', required: false },
37
- defaultValue: <Suspense fallback={<></>}><VerifyIcon /></Suspense>,
36
+ defaultValue: <VerifyIcon />,
38
37
  description: 'verify icon',
39
38
  },
40
39
  page: {
@@ -15,6 +15,7 @@ const Coupon = ({
15
15
  icon = <CopyIcon />,
16
16
  checkIcon = <CheckCircleIcon />,
17
17
  showIcon = true,
18
+ shortCode
18
19
  }) => {
19
20
  if (!code) return;
20
21
 
@@ -33,6 +34,7 @@ const Coupon = ({
33
34
  };
34
35
 
35
36
  const inactive = status === 'inactive';
37
+ const isBet365 = shortCode === 'bet365';
36
38
 
37
39
  return (
38
40
  <div
@@ -44,12 +46,12 @@ const Coupon = ({
44
46
  <span className={styles.prefix}>{useTranslate(translationKey, defaultTranslation)}</span>
45
47
  )}
46
48
  <button
47
- onClick={(e) => (code !== null && !inactive ? copyToClipBoard(e, code) : '')}
49
+ onClick={(e) => (code !== null && !inactive && !isBet365 ? copyToClipBoard(e, code) : '')}
48
50
  type="button"
49
51
  className={`${styles.coupon} ${copySuccess ? styles.copied : ''}
50
52
  ${code === null ? styles.noCode : ''}
51
53
  ${inactive ? styles.disabled : ''}`}
52
- disabled={inactive}
54
+ disabled={inactive || isBet365}
53
55
  >
54
56
  {!copySuccess ? (
55
57
  <>
@@ -59,7 +61,7 @@ const Coupon = ({
59
61
  </span>
60
62
  )}
61
63
  {code || useTranslate('no_coupon_available', 'Not Needed')}
62
- {showIcon && code !== null && !inactive && icon}
64
+ {showIcon && code !== null && !inactive && !isBet365 && icon}
63
65
  </>
64
66
  ) : (
65
67
  <>
@@ -82,6 +84,7 @@ Coupon.propTypes = {
82
84
  showIcon: PropTypes.bool,
83
85
  translationKey: PropTypes.string,
84
86
  defaultTranslation: PropTypes.string,
87
+ shortCode:PropTypes.string
85
88
  };
86
89
 
87
90
  export default Coupon;
@@ -62,7 +62,7 @@ const RecommendedOperators = ({
62
62
  </div>
63
63
  {(showCouponCode && couponCode) && (
64
64
  <div className={styles.couponCtaContainer}>
65
- <Coupon code={couponCode} />
65
+ <Coupon code={couponCode} shortCode={operator?.short_name} />
66
66
  <OperatorCta
67
67
  operator={operator}
68
68
  tracker="main"
@@ -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":"**/*.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.0306eee8.iframe.bundle.js"></script><script src="308.35ee0baa.iframe.bundle.js"></script><script src="main.be70485d.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":"**/*.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.0306eee8.iframe.bundle.js"></script><script src="308.35ee0baa.iframe.bundle.js"></script><script src="main.6b160a16.iframe.bundle.js"></script></body></html>