gatsby-matrix-theme 53.3.11 → 53.3.13
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 +20 -0
- package/package.json +1 -1
- package/src/components/atoms/feedback/template-one/index.js +4 -3
- package/src/components/atoms/feedback/template-three/index.js +5 -4
- package/src/components/atoms/feedback/template-two/index.js +4 -3
- package/src/components/molecules/stickyOperatorBanner/index.js +55 -0
- package/src/components/molecules/stickyOperatorBanner/stickyOperatorBanner.module.scss +11 -0
- package/src/components/molecules/stickyOperatorBanner/stickyOperatorBanner.test.js +79 -0
- package/src/gatsby-core-theme/components/pages/body/index.js +18 -0
- package/storybook/public/iframe.html +1 -1
- package/storybook/public/{main.dd71570f.iframe.bundle.js → main.0c9e2617.iframe.bundle.js} +1 -1
- package/storybook/public/project.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,23 @@
|
|
|
1
|
+
## [53.3.13](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/compare/v53.3.12...v53.3.13) (2025-11-04)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* add a new component on body ([15ea2ad](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/commit/15ea2ad7ad8e39af754f44806723e7b37345ab4c))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
* Merge branch 'en-161-sticky-operator-banner' into 'master' ([305b65a](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/commit/305b65a540ac3b37a95928cd0465ddfb3d6c2958))
|
|
10
|
+
|
|
11
|
+
## [53.3.12](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/compare/v53.3.11...v53.3.12) (2025-10-30)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
* update translations on feedback modules ([b6be53d](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/commit/b6be53db9302045c5cc1be71cb081897d32d9276))
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
* Merge branch 'update-feedback-modules' into 'master' ([308ea6c](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/commit/308ea6c01ea70b6caa393edb5516326c2fffb8b0))
|
|
20
|
+
|
|
1
21
|
## [53.3.11](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/compare/v53.3.10...v53.3.11) (2025-10-30)
|
|
2
22
|
|
|
3
23
|
|
package/package.json
CHANGED
|
@@ -16,7 +16,8 @@ const FeedBack = ({ pageId, casinoTitle, trueVotes, falseVotes, contactUs = '/co
|
|
|
16
16
|
const [success, setSuccess] = useState(null);
|
|
17
17
|
const recomendTranslate = type === 'game' ? 'recomend_game_title' : 'recomend_casino_title'
|
|
18
18
|
const feedbackTranslate = type === 'game' ? 'recomend_game_feedback' : 'recomend_casino_feedback';
|
|
19
|
-
|
|
19
|
+
const positiveFeedback = type === 'game' ? "positive_game_feedback" : "positive_casino_feedback"
|
|
20
|
+
const negativeFeedback = type === 'game' ? "negative_game_feedback" : "negative_casino_feedback"
|
|
20
21
|
const vote = async (feetBack) => {
|
|
21
22
|
const res = await addVote(feetBack, pageId);
|
|
22
23
|
setVote(feetBack);
|
|
@@ -82,11 +83,11 @@ const FeedBack = ({ pageId, casinoTitle, trueVotes, falseVotes, contactUs = '/co
|
|
|
82
83
|
<p>
|
|
83
84
|
{voted
|
|
84
85
|
? useTranslate(
|
|
85
|
-
|
|
86
|
+
positiveFeedback,
|
|
86
87
|
'What did you like about [casinoTitle]? Let us know, send us a message'
|
|
87
88
|
).replace('[casinoTitle]', casinoTitle)
|
|
88
89
|
: useTranslate(
|
|
89
|
-
|
|
90
|
+
negativeFeedback,
|
|
90
91
|
'Sorry about your experience at [casinoTitle]. What happened? send us a message'
|
|
91
92
|
).replace('[casinoTitle]', casinoTitle)}
|
|
92
93
|
<Link to={contactUs}> {useTranslate('hereText', 'here')} </Link>.
|
|
@@ -32,7 +32,8 @@ const FeedBack = ({
|
|
|
32
32
|
const [success, setSuccess] = useState(true);
|
|
33
33
|
const recomendTranslate = type === 'game' ? 'recomend_game_title' : 'recomend_casino_title'
|
|
34
34
|
const feedbackTranslate = type === 'game' ? 'recomend_game_feedback' : 'recomend_casino_feedback';
|
|
35
|
-
|
|
35
|
+
const positiveFeedback = type === 'game' ? 'positive_game_feedback' : 'positive_casino_feedback';
|
|
36
|
+
const negativeFeedback = type === 'game' ? 'negative_game_feedback' : 'negative_casino_feedback';
|
|
36
37
|
const vote = async (feedBack) => {
|
|
37
38
|
const res = await addVote(feedBack, pageId);
|
|
38
39
|
setVote(feedBack);
|
|
@@ -105,12 +106,12 @@ const FeedBack = ({
|
|
|
105
106
|
<p>
|
|
106
107
|
{voted === false
|
|
107
108
|
? useTranslate(
|
|
108
|
-
|
|
109
|
+
negativeFeedback,
|
|
109
110
|
'Sorry about your experience at [casinoTitle]. What happened? send us a message '
|
|
110
111
|
).replace('[casinoTitle]', casinoTitle)
|
|
111
112
|
: useTranslate(
|
|
112
|
-
|
|
113
|
-
|
|
113
|
+
positiveFeedback,
|
|
114
|
+
'What did you like about [casinoTitle]? Let us know, send us a message here '
|
|
114
115
|
).replace('[casinoTitle]', casinoTitle)}
|
|
115
116
|
<Link to={contactUs}> {useTranslate('hereText', 'here')} </Link>.
|
|
116
117
|
</p>
|
|
@@ -28,7 +28,8 @@ const FeedBack = ({
|
|
|
28
28
|
const [success, setSuccess] = useState(true);
|
|
29
29
|
const recomendTranslate = type === 'game' ? 'recomend_game_title' : 'recomend_casino_title'
|
|
30
30
|
const feedbackTranslate = type === 'game' ? 'recomend_game_feedback' : 'recomend_casino_feedback';
|
|
31
|
-
|
|
31
|
+
const positiveFeedback = type === 'game' ? 'positive_game_feedback' : 'positive_casino_feedback';
|
|
32
|
+
const negativeFeedback = type === 'game' ? 'negative_game_feedback' : 'negative_casino_feedback';
|
|
32
33
|
const vote = async (feedBack) => {
|
|
33
34
|
const res = await addVote(feedBack, pageId);
|
|
34
35
|
setVote(feedBack);
|
|
@@ -83,11 +84,11 @@ const FeedBack = ({
|
|
|
83
84
|
<p>
|
|
84
85
|
{voted
|
|
85
86
|
? useTranslate(
|
|
86
|
-
|
|
87
|
+
positiveFeedback,
|
|
87
88
|
'What did you like about [casinoTitle]? Let us know, send us a message here '
|
|
88
89
|
).replace('[casinoTitle]', casinoTitle)
|
|
89
90
|
: useTranslate(
|
|
90
|
-
|
|
91
|
+
negativeFeedback,
|
|
91
92
|
'Sorry about your experience at [casinoTitle]. What happened? send us a message '
|
|
92
93
|
).replace('[casinoTitle]', casinoTitle)}
|
|
93
94
|
<Link to={contactUs}> {useTranslate('hereText', 'here')} </Link>.
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import PropTypes from 'prop-types';
|
|
3
|
+
import { imagePrettyUrl } from '~helpers/getters';
|
|
4
|
+
import LazyImage from '~hooks/lazy-image';
|
|
5
|
+
import PrettyLink from '~atoms/pretty-link';
|
|
6
|
+
import styles from './stickyOperatorBanner.module.scss';
|
|
7
|
+
|
|
8
|
+
const StickyOperatorBanner = ({ data, template }) => {
|
|
9
|
+
const getRandomItem = (array) => {
|
|
10
|
+
if (!array || array.length === 0) return null;
|
|
11
|
+
const randomIndex = Math.floor(Math.random() * array.length);
|
|
12
|
+
return array[randomIndex];
|
|
13
|
+
};
|
|
14
|
+
|
|
15
|
+
const gif = data?.extra_fields?.gif;
|
|
16
|
+
const toplist = data?.modules?.find((module) => module.name === 'top_list');
|
|
17
|
+
const tracker = toplist?.items?.[0]?.tracker || 'main';
|
|
18
|
+
const randomItem = getRandomItem(toplist?.items?.[0]?.items);
|
|
19
|
+
|
|
20
|
+
if (!gif || !randomItem) return null;
|
|
21
|
+
|
|
22
|
+
return (
|
|
23
|
+
<PrettyLink
|
|
24
|
+
operator={randomItem}
|
|
25
|
+
tracker={tracker}
|
|
26
|
+
template={template}
|
|
27
|
+
className={styles.container}
|
|
28
|
+
>
|
|
29
|
+
<LazyImage src={imagePrettyUrl(gif, 'auto', 'auto')} alt="Sticky Operator Banner" />
|
|
30
|
+
</PrettyLink>
|
|
31
|
+
);
|
|
32
|
+
};
|
|
33
|
+
|
|
34
|
+
StickyOperatorBanner.propTypes = {
|
|
35
|
+
data: PropTypes.shape({
|
|
36
|
+
extra_fields: PropTypes.shape({
|
|
37
|
+
gif: PropTypes.string,
|
|
38
|
+
}),
|
|
39
|
+
modules: PropTypes.arrayOf(
|
|
40
|
+
PropTypes.shape({
|
|
41
|
+
name: PropTypes.string,
|
|
42
|
+
items: PropTypes.arrayOf(
|
|
43
|
+
PropTypes.shape({
|
|
44
|
+
tracker: PropTypes.string,
|
|
45
|
+
|
|
46
|
+
items: PropTypes.shape({}),
|
|
47
|
+
})
|
|
48
|
+
),
|
|
49
|
+
})
|
|
50
|
+
),
|
|
51
|
+
}),
|
|
52
|
+
template: PropTypes.string,
|
|
53
|
+
};
|
|
54
|
+
|
|
55
|
+
export default StickyOperatorBanner;
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
/* eslint-disable react/prop-types */
|
|
2
|
+
/* eslint-disable react/destructuring-assignment */
|
|
3
|
+
import React from 'react';
|
|
4
|
+
import { render, screen } from '@testing-library/react';
|
|
5
|
+
import StickyOperatorBanner from ".";
|
|
6
|
+
|
|
7
|
+
// Mock dependencies
|
|
8
|
+
jest.mock('~helpers/getters', () => ({
|
|
9
|
+
imagePrettyUrl: jest.fn((url) => `pretty/${url}`),
|
|
10
|
+
}));
|
|
11
|
+
jest.mock('~hooks/lazy-image', () => (props) => <img data-testid="lazy-image" {...props} alt='Test' />);
|
|
12
|
+
jest.mock('~atoms/pretty-link', () => (props) => (
|
|
13
|
+
<a data-testid="pretty-link" {...props}>
|
|
14
|
+
{props.children}
|
|
15
|
+
</a>
|
|
16
|
+
));
|
|
17
|
+
|
|
18
|
+
describe('StickyOperatorBanner', () => {
|
|
19
|
+
const mockData = {
|
|
20
|
+
extra_fields: { gif: 'banner.gif' },
|
|
21
|
+
modules: [
|
|
22
|
+
{
|
|
23
|
+
name: 'top_list',
|
|
24
|
+
items: [
|
|
25
|
+
{
|
|
26
|
+
tracker: 'test-tracker',
|
|
27
|
+
items: [
|
|
28
|
+
{ id: 1, name: 'Operator A' },
|
|
29
|
+
{ id: 2, name: 'Operator B' },
|
|
30
|
+
],
|
|
31
|
+
},
|
|
32
|
+
],
|
|
33
|
+
},
|
|
34
|
+
],
|
|
35
|
+
};
|
|
36
|
+
|
|
37
|
+
it('renders banner with LazyImage and PrettyLink', () => {
|
|
38
|
+
render(<StickyOperatorBanner data={mockData} template="casino" />);
|
|
39
|
+
|
|
40
|
+
const image = screen.getByTestId('lazy-image');
|
|
41
|
+
const link = screen.getByTestId('pretty-link');
|
|
42
|
+
|
|
43
|
+
expect(image).toBeInTheDocument();
|
|
44
|
+
expect(image).toHaveAttribute('src', 'pretty/banner.gif');
|
|
45
|
+
expect(link).toBeInTheDocument();
|
|
46
|
+
});
|
|
47
|
+
|
|
48
|
+
it('renders null if gif is missing', () => {
|
|
49
|
+
const dataWithoutGif = { ...mockData, extra_fields: {} };
|
|
50
|
+
const { container } = render(<StickyOperatorBanner data={dataWithoutGif} />);
|
|
51
|
+
expect(container.firstChild).toBeNull();
|
|
52
|
+
});
|
|
53
|
+
|
|
54
|
+
it('renders null if toplist items missing', () => {
|
|
55
|
+
const dataWithoutItems = { ...mockData, modules: [] };
|
|
56
|
+
const { container } = render(<StickyOperatorBanner data={dataWithoutItems} />);
|
|
57
|
+
expect(container.firstChild).toBeNull();
|
|
58
|
+
});
|
|
59
|
+
|
|
60
|
+
it('uses default tracker if not provided', () => {
|
|
61
|
+
const dataNoTracker = {
|
|
62
|
+
extra_fields: { gif: 'banner.gif' },
|
|
63
|
+
modules: [
|
|
64
|
+
{
|
|
65
|
+
name: 'top_list',
|
|
66
|
+
items: [
|
|
67
|
+
{
|
|
68
|
+
items: [{ id: 1, name: 'Operator X' }],
|
|
69
|
+
},
|
|
70
|
+
],
|
|
71
|
+
},
|
|
72
|
+
],
|
|
73
|
+
};
|
|
74
|
+
|
|
75
|
+
render(<StickyOperatorBanner data={dataNoTracker} />);
|
|
76
|
+
const link = screen.getByTestId('pretty-link');
|
|
77
|
+
expect(link).toHaveAttribute('tracker', 'main');
|
|
78
|
+
});
|
|
79
|
+
});
|
|
@@ -16,6 +16,7 @@ import Popup from '../../../../components/organisms/popup';
|
|
|
16
16
|
import LinkMenu from '../../../../components/atoms/link-menu';
|
|
17
17
|
import { isSearchPath } from '~helpers/isSearchPath';
|
|
18
18
|
import ExclusiveOperator from '../../../../components/molecules/operator-exclusive';
|
|
19
|
+
import StickyOperatorBanner from '../../../../components/molecules/stickyOperatorBanner';
|
|
19
20
|
import { setCookie, getCookie } from '~helpers/cookies';
|
|
20
21
|
|
|
21
22
|
function Body({ pageContext, children, serverData }) {
|
|
@@ -35,6 +36,12 @@ function Body({ pageContext, children, serverData }) {
|
|
|
35
36
|
pageContext
|
|
36
37
|
);
|
|
37
38
|
|
|
39
|
+
const stickyOperatorBanner = getMarketSection(
|
|
40
|
+
pageTypes[template]?.operatorBannerSection || pageTypes.default.operatorBannerSection,
|
|
41
|
+
pageContext
|
|
42
|
+
);
|
|
43
|
+
|
|
44
|
+
|
|
38
45
|
const footer = pageTypes[template]?.disableFooter
|
|
39
46
|
? null
|
|
40
47
|
: getMarketSection('footer', pageContext);
|
|
@@ -48,6 +55,8 @@ function Body({ pageContext, children, serverData }) {
|
|
|
48
55
|
|
|
49
56
|
const excOperator = navigation?.modules.find((module) => module.name === 'bonus');
|
|
50
57
|
|
|
58
|
+
const toplistInStickyBanner = stickyOperatorBanner?.modules.find((module) => module.name === 'top_list');
|
|
59
|
+
|
|
51
60
|
const isContactUsPage = !!main?.modules?.filter((module) => module.name === 'contact_form')
|
|
52
61
|
.length;
|
|
53
62
|
|
|
@@ -63,10 +72,15 @@ function Body({ pageContext, children, serverData }) {
|
|
|
63
72
|
const exclusiveOperator =
|
|
64
73
|
pageTypes[template]?.exclusiveOperator ?? pageTypes.default.exclusiveOperator;
|
|
65
74
|
|
|
75
|
+
const stickyOperator = pageTypes[template]?.stickyOperatorBanner ?? pageTypes.default.stickyOperatorBanner;
|
|
76
|
+
|
|
66
77
|
const disablePopup = pageTypes[template]?.disablePopup ?? pageTypes.default.disablePopup;
|
|
67
78
|
|
|
68
79
|
const showExclusiveOperator = excOperator && pageType !== 'operator' && exclusiveOperator;
|
|
69
80
|
|
|
81
|
+
const showStickyOperatorBanner =
|
|
82
|
+
toplistInStickyBanner && pageType !== 'operator' && stickyOperator;
|
|
83
|
+
|
|
70
84
|
const popupData = pageContext?.marketSections?.popup?.modules?.find((m) => m.name === 'top_list');
|
|
71
85
|
|
|
72
86
|
const popupImage = pageContext?.marketSections?.popup?.extra_fields?.popup_image;
|
|
@@ -133,6 +147,10 @@ function Body({ pageContext, children, serverData }) {
|
|
|
133
147
|
image={popupImage}
|
|
134
148
|
/>
|
|
135
149
|
)}
|
|
150
|
+
{showStickyOperatorBanner && (
|
|
151
|
+
<StickyOperatorBanner data={stickyOperatorBanner} template={template} />
|
|
152
|
+
)}
|
|
153
|
+
|
|
136
154
|
<FloatingArea pageContext={pageContext} template={template} />
|
|
137
155
|
</>
|
|
138
156
|
);
|
|
@@ -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.e9441cd1.iframe.bundle.js"></script><script src="384.88a2c13f.iframe.bundle.js"></script><script src="main.
|
|
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.e9441cd1.iframe.bundle.js"></script><script src="384.88a2c13f.iframe.bundle.js"></script><script src="main.0c9e2617.iframe.bundle.js"></script></body></html>
|