gatsby-matrix-theme 47.0.2 → 48.0.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,35 @@
1
+ # [48.0.0](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/compare/v47.0.3...v48.0.0) (2024-07-11)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * updated to latest ([66ad6a5](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/66ad6a506e2c339611ea17ba08b760e579a7708a))
7
+
8
+
9
+ ### Code Refactoring
10
+
11
+ * add correction translations for tooltip ([f3b5b3a](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/f3b5b3a4b08954ae14d4e79b59f4312d828f792a))
12
+ * changes to horse calculator translations and tooltip ([b96c1c0](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/b96c1c0dfd85b4afd979365da6dc3eaead5d191c))
13
+ * minor css change ([f2cdaf6](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/f2cdaf6c8560c509423a62b85f6344094fa4b6c3))
14
+ * remove temp ([b826011](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/b826011ada3d1c4989247e8ff1f6172fd1e3f6ad))
15
+ * temp ([a3f8360](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/a3f83604c0c09526195eb4b7115d512540483d95))
16
+
17
+
18
+ * Merge branch 'tm-4544-horse-calculator' into 'master' ([0885112](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/0885112f193b7fd4c5e889d11f0ae0040209c371))
19
+ * Merge branch 'master' into tm-4544-horse-calculator ([73f004d](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/73f004d587d9d3d495f3c0c77509ba9786409d01))
20
+ * Merge branch 'master' into tm-4544-horse-calculator ([1f8a3f2](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/1f8a3f21e774b5b8a7d2a1ad010e47b470a58301))
21
+ * Merge branch 'master' into tm-4544-horse-calculator ([2a34f45](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/2a34f452d9e3b982fdd3d873112756a238e24ca5))
22
+ * Merge branch 'master' into tm-4544-horse-calculator ([91277b2](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/91277b2612d7de6178024434865ad5d5ba150438))
23
+ * Merge branch 'master' into tm-4544-horse-calculator ([b9e9edd](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/b9e9eddb7792097ce3250ee9198f18cadc75db9b))
24
+
25
+ ## [47.0.3](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/compare/v47.0.2...v47.0.3) (2024-07-11)
26
+
27
+
28
+ ### Bug Fixes
29
+
30
+ * author cards ([74c3fb4](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/74c3fb4123b741fb8680e336bffbda34030e3529))
31
+ * fix tests ([1b29a11](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/1b29a11e933fdc63ae0acfbbf5b48c26da24b387))
32
+
1
33
  ## [47.0.2](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/compare/v47.0.1...v47.0.2) (2024-07-10)
2
34
 
3
35
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gatsby-matrix-theme",
3
- "version": "47.0.2",
3
+ "version": "48.0.0",
4
4
  "main": "index.js",
5
5
  "description": "Matrix Theme NPM Package",
6
6
  "author": "",
@@ -25,7 +25,7 @@
25
25
  "dependencies": {
26
26
  "@react-icons/all-files": "^4.1.0",
27
27
  "gatsby": "^5.11.0",
28
- "gatsby-core-theme": "34.0.3",
28
+ "gatsby-core-theme": "34.0.5",
29
29
  "gatsby-plugin-sharp": "^5.11.0",
30
30
  "gatsby-transformer-sharp": "^5.11.0",
31
31
  "prop-types": "15.7.2",
@@ -30,7 +30,7 @@ export default function TemplateOne({ item, width = '72', height = '72' }) {
30
30
  // eslint-disable-next-line react/no-danger
31
31
  dangerouslySetInnerHTML={{ __html: textWordsLimit(author.biography, 20) }}
32
32
  />
33
- <Link className={styles?.readMore || ''} to={author.profile_page_path}>
33
+ <Link className={styles?.readMore || ''} to={item.path}>
34
34
  {useTranslate('read_more_author', 'View Author')}{' '}
35
35
  <FaArrowRight size="1.4rem" title="Right-pointing Arrow Icon" />
36
36
  </Link>
@@ -40,6 +40,7 @@ export default function TemplateOne({ item, width = '72', height = '72' }) {
40
40
 
41
41
  TemplateOne.propTypes = {
42
42
  item: PropTypes.shape({
43
+ path: PropTypes.string,
43
44
  relation: PropTypes.shape({
44
45
  author_title: PropTypes.string,
45
46
  name: PropTypes.string,
@@ -9,15 +9,15 @@ import { textWordsLimit } from '~helpers/getters';
9
9
  describe('Author Header', () => {
10
10
  test('Template One', () => {
11
11
  const author = getAuthorList({})[1];
12
- const { container, getByText } = render(<TemplateOne item={{ relation: { ...author } }} />);
12
+ const { container, getByText } = render(
13
+ <TemplateOne item={{ path: 'test/author', relation: { ...author } }} />
14
+ );
13
15
  expect(getByText('Author 1 Name')).toBeTruthy();
14
16
  expect(getByText(author.author_title)).toBeTruthy();
15
17
  expect(getByText('23 Posts')).toBeTruthy();
16
18
  expect(getByText(textWordsLimit(author.biography, 20))).toBeTruthy();
17
19
  expect(container.querySelectorAll('a')).toHaveLength(7);
18
- expect(getByText('View Author').closest('a').getAttribute('href')).toEqual(
19
- `/${author.profile_page_path}`
20
- );
20
+ expect(getByText('View Author').closest('a').getAttribute('href')).toEqual(`/test/author`);
21
21
  });
22
22
  });
23
23
 
@@ -20,7 +20,7 @@ export default function TemplateTwo({ item, width = '80', height = '80' }) {
20
20
  />
21
21
  <div className={styles.nameContainer}>
22
22
  <span className={styles.title}>{author.author_title}</span>
23
- <Link className={styles.name} to={author.profile_page_path}>
23
+ <Link className={styles.name} to={item.path}>
24
24
  {author.name}
25
25
  </Link>
26
26
  </div>
@@ -34,6 +34,7 @@ export default function TemplateTwo({ item, width = '80', height = '80' }) {
34
34
 
35
35
  TemplateTwo.propTypes = {
36
36
  item: PropTypes.shape({
37
+ path: PropTypes.string,
37
38
  relation: PropTypes.shape({
38
39
  author_title: PropTypes.string,
39
40
  name: PropTypes.string,
@@ -8,14 +8,14 @@ import TemplateOne from '.';
8
8
  describe('Author Header', () => {
9
9
  test('Template One', () => {
10
10
  const author = getAuthorList({})[1];
11
- const { container, getByText } = render(<TemplateOne item={{ relation: { ...author } }} />);
11
+ const { container, getByText } = render(
12
+ <TemplateOne item={{ path: 'test/author', relation: { ...author } }} />
13
+ );
12
14
  expect(getByText('Author 1 Name')).toBeTruthy();
13
15
  expect(getByText(author.author_title)).toBeTruthy();
14
16
  expect(getByText('23 Posts')).toBeTruthy();
15
17
  expect(container.querySelectorAll('a')).toHaveLength(7);
16
- expect(getByText('Author 1 Name').closest('a').getAttribute('href')).toEqual(
17
- `/${author.profile_page_path}`
18
- );
18
+ expect(getByText('Author 1 Name').closest('a').getAttribute('href')).toEqual(`/test/author`);
19
19
  });
20
20
  });
21
21
 
@@ -28,7 +28,7 @@ export default function Select({
28
28
  {options.map((option) => option)}
29
29
  </select>
30
30
  {tooltip && (
31
- <Tooltip content={useTranslate(`${id}_tooltip`, tooltip)}>
31
+ <Tooltip content={useTranslate(`${id}_tooltip`, tooltip)} minWidth={20}>
32
32
  <BsQuestionCircle size="2.6rem" title="Question Icon" />
33
33
  </Tooltip>
34
34
  )}
@@ -41,7 +41,7 @@ export default function Select({
41
41
  <div>
42
42
  {useTranslate(id, label)}
43
43
  {tooltip && (
44
- <Tooltip content={useTranslate(`${id}_tooltip`, tooltip)}>
44
+ <Tooltip content={useTranslate(`${id}_tooltip`, tooltip)} minWidth={20}>
45
45
  <BsQuestionCircle size="2.6rem" title="Question Icon" />
46
46
  </Tooltip>
47
47
  )}
@@ -40,16 +40,23 @@ const Tooltip = ({ content, delay = 0, children, direction, minWidth = 10 }) =>
40
40
  };
41
41
 
42
42
  return (
43
- // eslint-disable-next-line jsx-a11y/interactive-supports-focus, jsx-a11y/click-events-have-key-events
44
43
  <div
45
44
  className={styles?.wrapper || ''}
46
- onMouseEnter={showTip}
45
+ onMouseEnter={(e) => {
46
+ getPositionClass(e.target, styles);
47
+ showTip();
48
+ }}
47
49
  onMouseLeave={hideTip}
48
50
  onClick={(e) => {
49
51
  getPositionClass(e.target, styles);
50
52
  showTip();
51
53
  }}
52
54
  role="button"
55
+ tabIndex={0}
56
+ onKeyDown={(e) => {
57
+ getPositionClass(e.target, styles);
58
+ showTip();
59
+ }}
53
60
  >
54
61
  {children}
55
62
  {active && (
@@ -157,6 +157,7 @@
157
157
  &::after {
158
158
  right: 1.6rem;
159
159
  left: auto;
160
+ pointer-events: none;
160
161
  }
161
162
  }
162
163
  }
@@ -170,7 +171,7 @@
170
171
  font-style: normal;
171
172
  font-weight: 400;
172
173
  line-height: 2.4rem;
173
- padding: 1.1rem 1.5rem;
174
+ padding: 1.1rem 3rem 1.1rem 1.5rem;
174
175
  }
175
176
  @include min(tablet) {
176
177
  display: grid;
@@ -4,7 +4,8 @@
4
4
  /* eslint-disable react-hooks/exhaustive-deps */
5
5
  /* eslint-disable array-callback-return */
6
6
  /* eslint-disable no-return-assign */
7
- import React, { useRef, useState, useEffect, useCallback } from 'react';
7
+ import React, { useRef, useState, useEffect, useCallback, useContext } from 'react';
8
+ import PropTypes from 'prop-types';
8
9
  import Button from 'gatsby-core-theme/src/components/atoms/button/button';
9
10
  import useTranslate from '~hooks/useTranslate/useTranslate';
10
11
 
@@ -29,7 +30,7 @@ import {
29
30
  } from '../../../constants/horse-racing-calculator';
30
31
  import styles from './horse-calculator.module.scss';
31
32
 
32
- const HorseCalculator = () => {
33
+ const HorseCalculator = ({ mainTitle = 'Bet Calculator' }) => {
33
34
  const numSelection = 20;
34
35
 
35
36
  const outcomesTableRefs = useRef([]);
@@ -257,14 +258,14 @@ const HorseCalculator = () => {
257
258
  return (
258
259
  <div className={styles?.container || ''}>
259
260
  <div className={styles.innerContainer || ''}>
260
- <h2>Bet Calculator</h2>
261
+ <h2>{useTranslate('horsecalc_main_title', mainTitle)}</h2>
261
262
  <div>
262
263
  <div>
263
264
  <div className={styles.selectes}>
264
265
  <Select
265
266
  id="bettype"
266
267
  label="Bet type:"
267
- tooltip="Accumulator - A Single Bet on up to 20 Selections"
268
+ tooltip="Bet Calculator - All Types & Options"
268
269
  onChangeFunc={handleBetTypeChange}
269
270
  options={betType.map((type, index) => (
270
271
  <option value={index}>{type.name}</option>
@@ -278,9 +279,9 @@ const HorseCalculator = () => {
278
279
  tooltip="Whether you are calculating an each way bet. Two individual bets of equal amount, one placed on the selection to win and the other on the same selection to place."
279
280
  onChangeFunc={handleEachWayChange}
280
281
  options={[
281
- <option value="Yes">Yes</option>,
282
+ <option value="Yes">{useTranslate('yes', 'Yes')}</option>,
282
283
  <option selected value="No">
283
- No
284
+ {useTranslate('no', 'No')}
284
285
  </option>,
285
286
  ]}
286
287
  />
@@ -289,11 +290,21 @@ const HorseCalculator = () => {
289
290
  <Select
290
291
  id="multiple_options"
291
292
  label="Multiple Options:"
292
- tooltip="Test"
293
+ tooltip="Various bet combinations"
293
294
  onChangeFunc={handleMultipleOption}
294
295
  options={[
295
- <option value="1">Default - Win-to-Win, Place-to-Place</option>,
296
- <option value="2">Advanced - Equally Divided (All EW)</option>,
296
+ <option value="1">
297
+ {useTranslate(
298
+ 'horsecalc_multioptions_default',
299
+ 'Default - Win-to-Win, Place-to-Place'
300
+ )}
301
+ </option>,
302
+ <option value="2">
303
+ {useTranslate(
304
+ 'horsecalc_multioptions_advanced',
305
+ 'Advanced - Equally Divided (All EW)'
306
+ )}
307
+ </option>,
297
308
  ]}
298
309
  />
299
310
  )}
@@ -317,9 +328,9 @@ const HorseCalculator = () => {
317
328
  tooltip="Used in horse racing to adjust winnings when runners are withdrawn before the race."
318
329
  onChangeFunc={handleRuleFourChange}
319
330
  options={[
320
- <option value="Yes">Yes</option>,
331
+ <option value="Yes">{useTranslate('yes', 'Yes')}</option>,
321
332
  <option selected value="No">
322
- No
333
+ {useTranslate('no', 'No')}
323
334
  </option>,
324
335
  ]}
325
336
  />
@@ -331,9 +342,11 @@ const HorseCalculator = () => {
331
342
  refObj={stakeTypeRef}
332
343
  options={[
333
344
  <option value="1" selected>
334
- Stake per Bet
345
+ {useTranslate('horsecalc_staketype_stakeperbet', 'Stake per Bet')}
346
+ </option>,
347
+ <option value="2">
348
+ {useTranslate('horsecalc_staketype_totalcombinedstake', 'Total Combined Stake')}
335
349
  </option>,
336
- <option value="2">Total Combined Stake</option>,
337
350
  ]}
338
351
  />
339
352
  {!(activeBetType.name === 'Accumulator' && foldOption === '2') && (
@@ -487,8 +500,8 @@ const HorseCalculator = () => {
487
500
  tooltip="Accumulator - A Single Bet on up to 20 Selections"
488
501
  onChangeFunc={handleFoldOption}
489
502
  options={[
490
- <option value="1">Disabled</option>,
491
- <option value="2">Enabled</option>,
503
+ <option value="1">{useTranslate('disabled', 'Disabled')}</option>,
504
+ <option value="2">{useTranslate('enabled', 'Enabled')}</option>,
492
505
  ]}
493
506
  />
494
507
  </div>
@@ -497,11 +510,11 @@ const HorseCalculator = () => {
497
510
  <table className={styles?.foldTable || ''}>
498
511
  <thead>
499
512
  <tr>
500
- <th>Fold</th>
501
- <th>Stake</th>
502
- <th>Outlay</th>
503
- <th>Return</th>
504
- <th>Profit</th>
513
+ <th>{useTranslate('horsecalc_fold', 'Fold')}</th>
514
+ <th>{useTranslate('horsecalc_stake', 'Stake')}</th>
515
+ <th>{useTranslate('horsecalc_outlay', 'Outlay')}</th>
516
+ <th>{useTranslate('horsecalc_return', 'Return')}</th>
517
+ <th>{useTranslate('horsecalc_profit', 'Profit')}</th>
505
518
  </tr>
506
519
  </thead>
507
520
  <tbody>
@@ -535,7 +548,7 @@ const HorseCalculator = () => {
535
548
  </label>
536
549
  {activeBetType.oneLoserBonus && (
537
550
  <label htmlFor="one_loser_bonus">
538
- One loser bonus %:
551
+ {useTranslate('looser_bonuses', 'One loser bonus %:')}
539
552
  <input type="number" ref={oneLoserBonusRef} id="one_loser_bonus" />
540
553
  </label>
541
554
  )}
@@ -549,12 +562,20 @@ const HorseCalculator = () => {
549
562
  onChangeFunc={handleFoldOption}
550
563
  options={[
551
564
  <option value="0" selected="">
552
- None
565
+ {useTranslate('horsecalc_none', 'None')}
566
+ </option>,
567
+ <option value="2">
568
+ {useTranslate('horsecalc_double_odds', 'Double Odds')}
569
+ </option>,
570
+ <option value="3">
571
+ {useTranslate('horsecalc_triple_odds', 'Triple Odds')}
572
+ </option>,
573
+ <option value="4">
574
+ {useTranslate('horsecalc_quadruple_odds', 'Quadruple Odds')}
575
+ </option>,
576
+ <option value="5">
577
+ {useTranslate('horsecalc_quintuple_odds', 'Quintuple Odds')}
553
578
  </option>,
554
- <option value="2">Double Odds</option>,
555
- <option value="3">Triple Odds</option>,
556
- <option value="4">Quadruple Odds</option>,
557
- <option value="5">Quintuple Odds</option>,
558
579
  ]}
559
580
  />
560
581
  </div>
@@ -564,15 +585,15 @@ const HorseCalculator = () => {
564
585
 
565
586
  <div className={styles.outcomeTable || ''}>
566
587
  <div>
567
- <p>Total Outlay</p>
588
+ <p>{useTranslate('horsecalc_total_outlay', 'Total Outlay')}</p>
568
589
  <span ref={totalOutlayRef}>-</span>
569
590
  </div>
570
591
  <div>
571
- <p>Total Return</p>
592
+ <p>{useTranslate('horsecalc_total_return', 'Total Return')}</p>
572
593
  <span ref={totalReturnRef}>-</span>
573
594
  </div>
574
595
  <div>
575
- <p>Total Profit</p>
596
+ <p>{useTranslate('horsecalc_total_profit', 'Total Profit')}</p>
576
597
  <span ref={totalProfitRef}>-</span>
577
598
  </div>
578
599
  </div>
@@ -593,3 +614,7 @@ const HorseCalculator = () => {
593
614
  };
594
615
 
595
616
  export default HorseCalculator;
617
+
618
+ HorseCalculator.propTypes = {
619
+ mainTitle: PropTypes.string,
620
+ };
@@ -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","files":"template-one.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/header\\/variants\\/default\\/template-one\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/header/variants/operator","files":"template-one-two.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/header\\/variants\\/operator\\/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.a70479a4.iframe.bundle.js"></script><script src="388.bb0844ff.iframe.bundle.js"></script><script src="main.3c163559.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","files":"template-one.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/header\\/variants\\/default\\/template-one\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/header/variants/operator","files":"template-one-two.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/header\\/variants\\/operator\\/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.a70479a4.iframe.bundle.js"></script><script src="388.bb0844ff.iframe.bundle.js"></script><script src="main.b3514dc7.iframe.bundle.js"></script></body></html>