gatsby-matrix-theme 43.0.0 → 43.0.2

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,25 @@
1
+ ## [43.0.2](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/compare/v43.0.1...v43.0.2) (2024-05-31)
2
+
3
+
4
+ ### Code Refactoring
5
+
6
+ * changes to review credits order ([9cbd170](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/9cbd17079efd6cd0d8e371d9566a06e943b403e3))
7
+
8
+
9
+ ### Config
10
+
11
+ * update theme ([71ce5db](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/71ce5dbd6c01d16f01433a44b789b9eefbaf5f79))
12
+
13
+
14
+ * Merge branch 'tm-4404-author-by-line' into 'master' ([db2ad01](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/db2ad01fe4059281a2a015fa4ab4abb49a16a559))
15
+
16
+ ## [43.0.1](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/compare/v43.0.0...v43.0.1) (2024-05-30)
17
+
18
+
19
+ ### Bug Fixes
20
+
21
+ * update theme ([58a611f](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/58a611fe2aafd295fc9becc1ffae2f843c8707f8))
22
+
1
23
  # [43.0.0](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/compare/v42.0.6...v43.0.0) (2024-05-29)
2
24
 
3
25
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gatsby-matrix-theme",
3
- "version": "43.0.0",
3
+ "version": "43.0.2",
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": "32.0.0",
28
+ "gatsby-core-theme": "32.0.4",
29
29
  "gatsby-plugin-sharp": "^5.11.0",
30
30
  "gatsby-transformer-sharp": "^5.11.0",
31
31
  "prop-types": "15.7.2",
@@ -57,12 +57,6 @@ const ReviewCredits = ({
57
57
 
58
58
  const contentText = (
59
59
  <div className={styles.reviewCredits || ''}>
60
- {showEditorialGuide && (
61
- <div className={styles.editorial || ''}>
62
- {editorialContent}
63
- {editorialIcon}
64
- </div>
65
- )}
66
60
  {(authors?.length || reviewer) && (
67
61
  <div className={styles.people || ''}>
68
62
  {authors &&
@@ -143,6 +137,12 @@ const ReviewCredits = ({
143
137
  )}
144
138
  </div>
145
139
  )}
140
+ {showEditorialGuide && (
141
+ <div className={styles.editorial || ''}>
142
+ {editorialContent}
143
+ {editorialIcon}
144
+ </div>
145
+ )}
146
146
  </div>
147
147
  );
148
148