gatsby-matrix-theme 52.0.0 → 52.0.1
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 +11 -0
- package/package.json +1 -1
- package/src/components/atoms/info-grid/column-item/index.js +9 -1
- package/src/components/atoms/info-grid/grid-item/index.js +6 -3
- package/src/components/atoms/info-grid/template-one/index.js +4 -0
- package/src/helpers/info-grid.js +23 -9
- package/src/helpers/info-grid.test.js +6 -29
- package/storybook/public/iframe.html +1 -1
- package/storybook/public/main.e08d7626.iframe.bundle.js +1 -0
- package/storybook/public/project.json +1 -1
- package/storybook/public/main.ec29d044.iframe.bundle.js +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,14 @@
|
|
|
1
|
+
## [52.0.1](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/compare/v52.0.0...v52.0.1) (2024-09-13)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* info grid test ([edf1554](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/edf15541e697492027b66252e30592540ed7eb37))
|
|
7
|
+
* info grid tracking attr ([1c89d2f](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/1c89d2ff8c7122736dd884da25498dd5c6dae9fa))
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
* Merge branch 'tm-4730-tracking-attr-info-grid' into 'master' ([858e8ec](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/858e8ec01f2f595b92b98f47b0bc19278b8db997))
|
|
11
|
+
|
|
1
12
|
# [52.0.0](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/compare/v51.0.10...v52.0.0) (2024-09-11)
|
|
2
13
|
|
|
3
14
|
|
package/package.json
CHANGED
|
@@ -16,6 +16,7 @@ const InfoColumnItem = ({
|
|
|
16
16
|
gridLabels,
|
|
17
17
|
gridItems,
|
|
18
18
|
template,
|
|
19
|
+
modulePosition
|
|
19
20
|
}) => {
|
|
20
21
|
const [showMore, setShowMore] = useState(false);
|
|
21
22
|
const [key, value] = item;
|
|
@@ -55,7 +56,13 @@ const InfoColumnItem = ({
|
|
|
55
56
|
valueKey,
|
|
56
57
|
gridItems[key][valueKey],
|
|
57
58
|
gridLabels[key][valueKey][2],
|
|
58
|
-
{
|
|
59
|
+
{
|
|
60
|
+
template,
|
|
61
|
+
showAll: showMore,
|
|
62
|
+
setShowMore,
|
|
63
|
+
modulePosition,
|
|
64
|
+
module: 'info_grid'
|
|
65
|
+
}
|
|
59
66
|
);
|
|
60
67
|
return (
|
|
61
68
|
itemValue && (
|
|
@@ -83,6 +90,7 @@ InfoColumnItem.propTypes = {
|
|
|
83
90
|
gridLabels: PropTypes.shape({}),
|
|
84
91
|
gridItems: PropTypes.shape({}),
|
|
85
92
|
template: PropTypes.string,
|
|
93
|
+
modulePosition: PropTypes.number
|
|
86
94
|
};
|
|
87
95
|
|
|
88
96
|
export default InfoColumnItem;
|
|
@@ -14,6 +14,7 @@ const InfoGridItem = ({
|
|
|
14
14
|
gridItems,
|
|
15
15
|
template,
|
|
16
16
|
templateThree,
|
|
17
|
+
modulePosition
|
|
17
18
|
}) => {
|
|
18
19
|
const [showMore, setShowMore] = useState(false);
|
|
19
20
|
|
|
@@ -22,15 +23,16 @@ const InfoGridItem = ({
|
|
|
22
23
|
template,
|
|
23
24
|
showAll: showMore,
|
|
24
25
|
setShowMore,
|
|
26
|
+
modulePosition,
|
|
27
|
+
module:'info_grid'
|
|
25
28
|
});
|
|
26
29
|
const showGrid = (templateThree && value) || !templateThree; // hide entire cell if empty on author info grid only
|
|
27
30
|
|
|
28
31
|
return (
|
|
29
32
|
showGrid && (
|
|
30
33
|
<div
|
|
31
|
-
className={`${templateTwo ? styles.columnItem || '' : styles.gridItem || ''} ${
|
|
32
|
-
|
|
33
|
-
}`}
|
|
34
|
+
className={`${templateTwo ? styles.columnItem || '' : styles.gridItem || ''} ${templateThree ? styles.templateThree || '' : ''
|
|
35
|
+
}`}
|
|
34
36
|
>
|
|
35
37
|
<span>
|
|
36
38
|
{showEmojis ? title : removeEmojis(title)}
|
|
@@ -51,6 +53,7 @@ InfoGridItem.propTypes = {
|
|
|
51
53
|
gridItems: PropTypes.shape({}),
|
|
52
54
|
template: PropTypes.string,
|
|
53
55
|
templateThree: PropTypes.bool,
|
|
56
|
+
modulePosition: PropTypes.number
|
|
54
57
|
};
|
|
55
58
|
|
|
56
59
|
export default InfoGridItem;
|
|
@@ -22,6 +22,7 @@ const InfoGrid = ({
|
|
|
22
22
|
showInitial = 6,
|
|
23
23
|
showTitle = true,
|
|
24
24
|
templateThree = false,
|
|
25
|
+
modulePosition
|
|
25
26
|
}) => {
|
|
26
27
|
const ref = useRef();
|
|
27
28
|
|
|
@@ -62,6 +63,7 @@ const InfoGrid = ({
|
|
|
62
63
|
gridItems={gridItems}
|
|
63
64
|
template={template}
|
|
64
65
|
templateThree={templateThree}
|
|
66
|
+
modulePosition={modulePosition}
|
|
65
67
|
/>
|
|
66
68
|
))}
|
|
67
69
|
</div>
|
|
@@ -82,6 +84,7 @@ const InfoGrid = ({
|
|
|
82
84
|
gridLabels={gridLabels}
|
|
83
85
|
gridItems={gridItems}
|
|
84
86
|
template={template}
|
|
87
|
+
modulePosition={modulePosition}
|
|
85
88
|
/>
|
|
86
89
|
))}
|
|
87
90
|
</div>
|
|
@@ -140,6 +143,7 @@ InfoGrid.propTypes = {
|
|
|
140
143
|
showSeeMoreButton: PropTypes.bool,
|
|
141
144
|
showInitial: PropTypes.number,
|
|
142
145
|
templateThree: PropTypes.bool,
|
|
146
|
+
modulePosition: PropTypes.number
|
|
143
147
|
};
|
|
144
148
|
|
|
145
149
|
export default InfoGrid;
|
package/src/helpers/info-grid.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/* eslint-disable array-callback-return */
|
|
2
2
|
/* eslint-disable no-nested-ternary */
|
|
3
3
|
import React from 'react';
|
|
4
|
-
import
|
|
4
|
+
import PrettyLink from '~atoms/pretty-link';
|
|
5
5
|
import Tooltip from '../components/atoms/tooltip';
|
|
6
6
|
import useTranslate from '~hooks/useTranslate/useTranslate';
|
|
7
7
|
|
|
@@ -87,8 +87,8 @@ export const generateVolatility = (value) => {
|
|
|
87
87
|
return value === 0
|
|
88
88
|
? useTranslate('low', 'Low')
|
|
89
89
|
: value === 1
|
|
90
|
-
|
|
91
|
-
|
|
90
|
+
? useTranslate('medium', 'Medium')
|
|
91
|
+
: useTranslate('high', 'High');
|
|
92
92
|
};
|
|
93
93
|
export const formatDate = (value) => value?.slice(0, 4);
|
|
94
94
|
export const generateYesorNo = (value) =>
|
|
@@ -136,11 +136,10 @@ export const latestItems = (items, props, limit = null) => {
|
|
|
136
136
|
direction="bottom"
|
|
137
137
|
minWidth={20}
|
|
138
138
|
>
|
|
139
|
-
{` ${
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
}`}
|
|
139
|
+
{` ${hasCustomValue
|
|
140
|
+
? useTranslate(customValue.translationKey, customValue.label)
|
|
141
|
+
: ` ${length - limit} ${useTranslate('more', 'more')}`
|
|
142
|
+
}`}
|
|
144
143
|
</Tooltip>
|
|
145
144
|
) : (
|
|
146
145
|
<button type="button" onClick={() => setShowMore(true)}>
|
|
@@ -199,8 +198,23 @@ export const generateLink = (value, props) => {
|
|
|
199
198
|
}
|
|
200
199
|
|
|
201
200
|
if (type === 'url') {
|
|
202
|
-
link =
|
|
201
|
+
link = value;
|
|
203
202
|
text = showTracker ? value.url : value;
|
|
203
|
+
|
|
204
|
+
if (showTracker) {
|
|
205
|
+
return (
|
|
206
|
+
<PrettyLink
|
|
207
|
+
operator={value}
|
|
208
|
+
tracker='main'
|
|
209
|
+
pageTemplate={template}
|
|
210
|
+
rel='nofollow sponsored'
|
|
211
|
+
module={props?.module}
|
|
212
|
+
modulePosition={props?.modulePosition}
|
|
213
|
+
>
|
|
214
|
+
{text}
|
|
215
|
+
</PrettyLink>
|
|
216
|
+
)
|
|
217
|
+
}
|
|
204
218
|
}
|
|
205
219
|
|
|
206
220
|
const attributes = { href: link };
|
|
@@ -76,18 +76,9 @@ describe('Info Grid helper component', () => {
|
|
|
76
76
|
expect(getKeyValues(data.relation, labels, data.market).toString()).toBe(`${obj}`);
|
|
77
77
|
});
|
|
78
78
|
test('Generate label for grid item', () => {
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
</a>
|
|
83
|
-
);
|
|
84
|
-
expect(
|
|
85
|
-
generateLabel(
|
|
86
|
-
Object.keys(gridItems)[0],
|
|
87
|
-
Object.values(gridItems)[0],
|
|
88
|
-
Object.values(gridLabels)[0][2]
|
|
89
|
-
)
|
|
90
|
-
).toStrictEqual(url());
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
|
|
91
82
|
expect(
|
|
92
83
|
generateLabel(
|
|
93
84
|
Object.keys(gridItems)[2],
|
|
@@ -174,7 +165,7 @@ describe('Info Grid helper component', () => {
|
|
|
174
165
|
fireEvent.mouseEnter(container.querySelector('.wrapper'));
|
|
175
166
|
|
|
176
167
|
await waitFor(() => {
|
|
177
|
-
expect(container.querySelector('.tooltip')).
|
|
168
|
+
expect(container.querySelector('.tooltip')).toBeInTheDocument();
|
|
178
169
|
expect(container.querySelector('.tooltip')).toHaveTextContent(
|
|
179
170
|
'Big Time Gaming, 2by2 Gaming, Ash Gaming, Big Time Gaming, 2by2 Gaming, Ash Gaming, Big Time Gaming'
|
|
180
171
|
);
|
|
@@ -188,7 +179,7 @@ describe('Info Grid helper component', () => {
|
|
|
188
179
|
expect(container).toHaveTextContent(
|
|
189
180
|
'2by2 Gaming, Ash Gaming, Big Time Gaming, 2by2 Gaming, Ash Gaming 7 more'
|
|
190
181
|
);
|
|
191
|
-
expect(container.querySelector('button')).
|
|
182
|
+
expect(container.querySelector('button')).toBeInTheDocument();
|
|
192
183
|
expect(container.querySelector('button')).toHaveTextContent('7 more');
|
|
193
184
|
});
|
|
194
185
|
test('Generate latest items for a limit and show see more text with a button', async () => {
|
|
@@ -207,7 +198,7 @@ describe('Info Grid helper component', () => {
|
|
|
207
198
|
expect(container).toHaveTextContent(
|
|
208
199
|
'2by2 Gaming, Ash Gaming, Big Time Gaming, 2by2 Gaming, Ash Gaming see more'
|
|
209
200
|
);
|
|
210
|
-
expect(container.querySelector('button')).
|
|
201
|
+
expect(container.querySelector('button')).toBeInTheDocument();
|
|
211
202
|
expect(container.querySelector('button')).toHaveTextContent('see more');
|
|
212
203
|
});
|
|
213
204
|
test('Generate license and support types for grid item', () => {
|
|
@@ -240,23 +231,9 @@ describe('Info Grid helper component', () => {
|
|
|
240
231
|
hey@casumo.com
|
|
241
232
|
</a>
|
|
242
233
|
);
|
|
243
|
-
const url = () => (
|
|
244
|
-
<a href="/ice-casino" rel="nofollow sponsored" target="_blank">
|
|
245
|
-
www.ice-casino.com
|
|
246
|
-
</a>
|
|
247
|
-
);
|
|
248
234
|
|
|
249
235
|
expect(generateLink(data.relation.email, { type: 'email', newTab: true })).toStrictEqual(
|
|
250
236
|
email()
|
|
251
237
|
);
|
|
252
|
-
expect(
|
|
253
|
-
generateLink(data.relation, {
|
|
254
|
-
type: 'url',
|
|
255
|
-
showTracker: true,
|
|
256
|
-
newTab: true,
|
|
257
|
-
addRel: true,
|
|
258
|
-
template: 'operator_review',
|
|
259
|
-
})
|
|
260
|
-
).toStrictEqual(url());
|
|
261
238
|
});
|
|
262
239
|
});
|
|
@@ -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.a6223cf4.iframe.bundle.js"></script><script src="453.8c9d374e.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.a6223cf4.iframe.bundle.js"></script><script src="453.8c9d374e.iframe.bundle.js"></script><script src="main.e08d7626.iframe.bundle.js"></script></body></html>
|