gatsby-matrix-theme 40.0.21 → 40.0.22

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,14 @@
1
+ ## [40.0.22](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/compare/v40.0.21...v40.0.22) (2024-04-30)
2
+
3
+
4
+ ### Code Refactoring
5
+
6
+ * change link to author name only, remove arrow and fix test ([338157c](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/338157cf18940acb8246ee586c24aaf208d756d5))
7
+ * set hide prefix as default ([2498496](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/249849657fdd21889a8a3cc07b4573c42339a0ac))
8
+
9
+
10
+ * Merge branch 'tm-4330-author-review-credits' into 'master' ([5dd707d](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/5dd707d8921e51a63d87159739654237bfaa93d6))
11
+
1
12
  ## [40.0.21](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/compare/v40.0.20...v40.0.21) (2024-04-29)
2
13
 
3
14
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gatsby-matrix-theme",
3
- "version": "40.0.21",
3
+ "version": "40.0.22",
4
4
  "main": "index.js",
5
5
  "description": "Matrix Theme NPM Package",
6
6
  "author": "",
@@ -1,8 +1,6 @@
1
1
  /* eslint-disable arrow-body-style */
2
2
  import React, { useContext } from 'react';
3
3
  import PropTypes from 'prop-types';
4
-
5
- import { FaArrowRight } from '@react-icons/all-files/fa/FaArrowRight';
6
4
  import { IoOpenOutline } from '@react-icons/all-files/io5/IoOpenOutline';
7
5
  import { formatDate } from '~helpers/date-time';
8
6
  import { translate, imagePrettyUrl } from '~helpers/getters';
@@ -73,7 +71,7 @@ const ReviewCredits = ({
73
71
  {(author || reviewer) && (
74
72
  <div className={styles.people || ''}>
75
73
  {author && (
76
- <Link to={authorLink} title={authorName}>
74
+ <div className={`${styles.authorCommon || ''} ${styles.author}`}>
77
75
  {authorImg && (
78
76
  <LazyImage
79
77
  alt={authorName}
@@ -83,20 +81,21 @@ const ReviewCredits = ({
83
81
  src={imagePrettyUrl(authorImg, authorImageWidth, authorImageHeight)}
84
82
  />
85
83
  )}
86
- <div className={`${styles.authorCommon || ''} ${styles.author}`}>
84
+ <div className={styles.authorDataContainer}>
87
85
  {showPrefix && (
88
86
  <span className={`${styles.prefixCommon} ${styles.authorPrefix}`}>
89
87
  {translate(translations, prefix, prefix) || getPrefixBasedOnPage}
90
88
  </span>
91
89
  )}
92
- <span className={styles.authorName}>{authorName}</span>
90
+ <Link to={authorLink} title={authorName} className={styles.authorName}>
91
+ {authorName}
92
+ </Link>
93
93
  {showTitle && <span className={styles.authorTitle}>{authorTitle}</span>}
94
94
  </div>
95
- <FaArrowRight />
96
- </Link>
95
+ </div>
97
96
  )}
98
97
  {reviewer && (
99
- <Link to={reviewerLink} title={reviewerName}>
98
+ <div className={`${styles.authorCommon || ''} ${styles.reviewer}`}>
100
99
  {reviewerImg && (
101
100
  <LazyImage
102
101
  alt={reviewerName}
@@ -106,7 +105,7 @@ const ReviewCredits = ({
106
105
  src={imagePrettyUrl(reviewerImg, authorImageWidth, authorImageHeight)}
107
106
  />
108
107
  )}
109
- <div className={`${styles.authorCommon || ''} ${styles.reviewer}`}>
108
+ <div className={styles.authorDataContainer}>
110
109
  {showPrefix && (
111
110
  <span className={`${styles.prefixCommon} ${styles.reviewerPrefix}`}>{`${translate(
112
111
  translations,
@@ -114,7 +113,9 @@ const ReviewCredits = ({
114
113
  'Fact checked by'
115
114
  )}`}</span>
116
115
  )}
117
- <span className={styles.authorName}>{reviewerName}</span>
116
+ <Link to={reviewerLink} title={reviewerName} className={styles.authorName}>
117
+ {reviewerName}
118
+ </Link>
118
119
  {showTitle && (
119
120
  <span className={styles.reviewerTitle}>
120
121
  {showVerification && (
@@ -129,8 +130,7 @@ const ReviewCredits = ({
129
130
  </span>
130
131
  )}
131
132
  </div>
132
- <FaArrowRight />
133
- </Link>
133
+ </div>
134
134
  )}
135
135
  </div>
136
136
  )}
@@ -94,35 +94,35 @@
94
94
  .people {
95
95
  @include flex-direction(column);
96
96
  gap: 0.8rem;
97
+ }
97
98
 
98
- > a {
99
- @include flex-align(center, center);
100
- display: grid;
101
- grid-template-columns: 4.8rem 1fr 2rem;
102
- background: var(--review-credits-author-background-color, #ffffff);
103
- padding: 0.6rem 0.8rem 0.6rem 0.6rem;
104
- gap: 0.8rem;
105
- border-radius: var(--review-credits-author-border-radius, 1.2rem);
106
- border: var(--review-credits-author-border, var(--review-credits-border, none));
107
- text-decoration: none;
99
+ .authorCommon {
100
+ @include flex-align(center, center);
101
+ display: grid;
102
+ grid-template-columns: 4.8rem 1fr 2rem;
103
+ background: var(--review-credits-author-background-color, #ffffff);
104
+ padding: 0.6rem 0.8rem 0.6rem 0.6rem;
105
+ gap: 0.8rem;
106
+ border-radius: var(--review-credits-author-border-radius, 1.2rem);
107
+ border: var(--review-credits-author-border, var(--review-credits-border, none));
108
+ text-decoration: none;
108
109
 
109
- > img {
110
- border-radius: 10rem;
111
- border: var(--review-credits-author-img-border, 1px solid #ececec);
112
- }
110
+ > img {
111
+ border-radius: 10rem;
112
+ border: var(--review-credits-author-img-border, 1px solid #ececec);
113
+ }
113
114
 
114
- > svg {
115
- grid-column: 3;
116
- fill: var(--review-credits-color, #64646d);
117
- }
115
+ > svg {
116
+ grid-column: 3;
117
+ fill: var(--review-credits-color, #64646d);
118
+ }
118
119
 
119
- @include min(tablet) {
120
- padding-right: 1.6rem;
121
- }
120
+ @include min(tablet) {
121
+ padding-right: 1.6rem;
122
122
  }
123
123
  }
124
124
 
125
- .authorCommon {
125
+ .authorDataContainer {
126
126
  @include flex-direction(column);
127
127
  @include flex-align(flex-start, space-between);
128
128
  height: 100%;
@@ -135,8 +135,8 @@ describe('Author Component', () => {
135
135
  const { container } = render(<Author author={authorData} reviewer={reviewerData} showPrefix />);
136
136
 
137
137
  expect(container.querySelector('.author')).toBeTruthy();
138
- expect(container.querySelectorAll('.author span')[1]).toHaveTextContent('John Author');
139
- expect(container.querySelector('.author').closest('a')).toHaveAttribute('href', '/john-author');
138
+ expect(container.querySelector('.author a')).toHaveTextContent('John Author');
139
+ expect(container.querySelector('.author a')).toHaveAttribute('href', '/john-author');
140
140
  });
141
141
  test('Show Reviewer data', () => {
142
142
  reviewerData = {
@@ -147,11 +147,8 @@ describe('Author Component', () => {
147
147
  const { container } = render(<Author author={authorData} reviewer={reviewerData} showPrefix />);
148
148
 
149
149
  expect(container.querySelector('.reviewer')).toBeTruthy();
150
- expect(container.querySelectorAll('.reviewer span')[1]).toHaveTextContent('Jane Reviewer');
151
- expect(container.querySelector('.reviewer').closest('a')).toHaveAttribute(
152
- 'href',
153
- '/jane-reviewer'
154
- );
150
+ expect(container.querySelector('.reviewer a')).toHaveTextContent('Jane Reviewer');
151
+ expect(container.querySelector('.reviewer a')).toHaveAttribute('href', '/jane-reviewer');
155
152
  });
156
153
  test('No reading time or date', () => {
157
154
  const { container } = render(<Author author={authorData} />);
@@ -361,4 +361,4 @@
361
361
 
362
362
 
363
363
 
364
- window['STORIES'] = [{"titlePrefix":"","directory":"./src","files":"**/**/**/*.stories.js","importPathMatcher":"^\\.[\\\\/](?:src(?:\\/(?!\\.)(?:(?:(?!(?:^|\\/)\\.).)*?)\\/|\\/|$)(?!\\.)(?=.)[^/]*?\\.stories\\.js)$"},{"titlePrefix":"","directory":"./src","files":"**/**/**/**/*.stories.js","importPathMatcher":"^\\.[\\\\/](?:src(?:\\/(?!\\.)(?:(?:(?!(?:^|\\/)\\.).)*?)\\/|\\/|$)(?!\\.)(?=.)[^/]*?\\.stories\\.js)$"},{"titlePrefix":"","directory":"./src","files":"**/**/**/**/**/*.stories.js","importPathMatcher":"^\\.[\\\\/](?:src(?:\\/(?!\\.)(?:(?:(?!(?:^|\\/)\\.).)*?)\\/|\\/|$)(?!\\.)(?=.)[^/]*?\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/footer/variants","files":"template-one.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/footer\\/variants\\/template-one\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/footer/variants","files":"template-two.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/footer\\/variants\\/template-two\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/footer/variants","files":"template-three.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/footer\\/variants\\/template-three\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/organisms/navigation","files":"navigation.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/organisms\\/navigation\\/navigation\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/organisms/anchor/template-one","files":"anchor.stories","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/organisms\\/anchor\\/template-one\\/anchor\\.stories)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/organisms/anchor/template-two","files":"template-two.stories","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/organisms\\/anchor\\/template-two\\/template-two\\.stories)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/bonus/template-one","files":"bonus.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/bonus\\/template-one\\/bonus\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/bonus/template-two","files":"bonus.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/bonus\\/template-two\\/bonus\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/content","files":"text.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/content\\/text\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/content","files":"show-more.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/content\\/show-more\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/content","files":"content.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/content\\/content\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/content/lists","files":"lists.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/content\\/lists\\/lists\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/content/frame","files":"frame.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/content\\/frame\\/frame\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/content/table","files":"table-one.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/content\\/table\\/table-one\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/content/table","files":"table-two.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/content\\/table\\/table-two\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/pagination","files":"pagination.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/pagination\\/pagination\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/organisms/carousel/template-one","files":"template-one.stories","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/organisms\\/carousel\\/template-one\\/template-one\\.stories)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/organisms/carousel/template-two","files":"template-two.stories","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/organisms\\/carousel\\/template-two\\/template-two\\.stories)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/spotlights_v2/icon/template-one","files":"**/*.stories.@(mdx|tsx|ts|jsx|js)","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/spotlights_v2\\/icon\\/template-one(?:\\/(?!\\.)(?:(?:(?!(?:^|\\/)\\.).)*?)\\/|\\/|$)(?!\\.)(?=.)[^/]*?\\.stories\\.(mdx|tsx|ts|jsx|js))$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/spotlights_v2/image/template-one","files":"template-one.stories","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/spotlights_v2\\/image\\/template-one\\/template-one\\.stories)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/spotlights_v2/image/template-two","files":"template-two.stories","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/spotlights_v2\\/image\\/template-two\\/template-two\\.stories)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/spotlights_v2/image-text/template-one","files":"template-one.stories","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/spotlights_v2\\/image-text\\/template-one\\/template-one\\.stories)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/spotlights_v2/image-text/template-two","files":"template-two.stories","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/spotlights_v2\\/image-text\\/template-two\\/template-two\\.stories)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/spotlights_v2/image-text/template-three","files":"template-three.stories","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/spotlights_v2\\/image-text\\/template-three\\/template-three\\.stories)$"}];</script><script src="runtime~main.2fdfdc96.iframe.bundle.js"></script><script src="728.ae4470e4.iframe.bundle.js"></script><script src="main.845fe2d1.iframe.bundle.js"></script></body></html>
364
+ window['STORIES'] = [{"titlePrefix":"","directory":"./src","files":"**/**/**/*.stories.js","importPathMatcher":"^\\.[\\\\/](?:src(?:\\/(?!\\.)(?:(?:(?!(?:^|\\/)\\.).)*?)\\/|\\/|$)(?!\\.)(?=.)[^/]*?\\.stories\\.js)$"},{"titlePrefix":"","directory":"./src","files":"**/**/**/**/*.stories.js","importPathMatcher":"^\\.[\\\\/](?:src(?:\\/(?!\\.)(?:(?:(?!(?:^|\\/)\\.).)*?)\\/|\\/|$)(?!\\.)(?=.)[^/]*?\\.stories\\.js)$"},{"titlePrefix":"","directory":"./src","files":"**/**/**/**/**/*.stories.js","importPathMatcher":"^\\.[\\\\/](?:src(?:\\/(?!\\.)(?:(?:(?!(?:^|\\/)\\.).)*?)\\/|\\/|$)(?!\\.)(?=.)[^/]*?\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/footer/variants","files":"template-one.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/footer\\/variants\\/template-one\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/footer/variants","files":"template-two.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/footer\\/variants\\/template-two\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/footer/variants","files":"template-three.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/footer\\/variants\\/template-three\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/organisms/navigation","files":"navigation.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/organisms\\/navigation\\/navigation\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/organisms/anchor/template-one","files":"anchor.stories","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/organisms\\/anchor\\/template-one\\/anchor\\.stories)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/organisms/anchor/template-two","files":"template-two.stories","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/organisms\\/anchor\\/template-two\\/template-two\\.stories)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/bonus/template-one","files":"bonus.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/bonus\\/template-one\\/bonus\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/bonus/template-two","files":"bonus.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/bonus\\/template-two\\/bonus\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/content","files":"text.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/content\\/text\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/content","files":"show-more.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/content\\/show-more\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/content","files":"content.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/content\\/content\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/content/lists","files":"lists.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/content\\/lists\\/lists\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/content/frame","files":"frame.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/content\\/frame\\/frame\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/content/table","files":"table-one.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/content\\/table\\/table-one\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/content/table","files":"table-two.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/content\\/table\\/table-two\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/pagination","files":"pagination.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/pagination\\/pagination\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/organisms/carousel/template-one","files":"template-one.stories","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/organisms\\/carousel\\/template-one\\/template-one\\.stories)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/organisms/carousel/template-two","files":"template-two.stories","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/organisms\\/carousel\\/template-two\\/template-two\\.stories)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/spotlights_v2/icon/template-one","files":"**/*.stories.@(mdx|tsx|ts|jsx|js)","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/spotlights_v2\\/icon\\/template-one(?:\\/(?!\\.)(?:(?:(?!(?:^|\\/)\\.).)*?)\\/|\\/|$)(?!\\.)(?=.)[^/]*?\\.stories\\.(mdx|tsx|ts|jsx|js))$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/spotlights_v2/image/template-one","files":"template-one.stories","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/spotlights_v2\\/image\\/template-one\\/template-one\\.stories)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/spotlights_v2/image/template-two","files":"template-two.stories","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/spotlights_v2\\/image\\/template-two\\/template-two\\.stories)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/spotlights_v2/image-text/template-one","files":"template-one.stories","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/spotlights_v2\\/image-text\\/template-one\\/template-one\\.stories)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/spotlights_v2/image-text/template-two","files":"template-two.stories","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/spotlights_v2\\/image-text\\/template-two\\/template-two\\.stories)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/spotlights_v2/image-text/template-three","files":"template-three.stories","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/spotlights_v2\\/image-text\\/template-three\\/template-three\\.stories)$"}];</script><script src="runtime~main.2fdfdc96.iframe.bundle.js"></script><script src="728.ae4470e4.iframe.bundle.js"></script><script src="main.920d76a6.iframe.bundle.js"></script></body></html>