gatsby-matrix-theme 53.19.0 → 53.20.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,27 @@
1
+ # [53.20.0](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/compare/v53.19.1...v53.20.0) (2026-06-16)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * update core version ([fb0d119](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/commit/fb0d119578675a92eb504bb1ede724e9bceabc24))
7
+
8
+
9
+ * Merge branch 'update-coretheme-v44' into 'master' ([b1f2b1b](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/commit/b1f2b1bc16b156124f910c027d7f499ed3ceb0e8))
10
+ * Merge branch 'operator-details-verification' into 'master' ([5c55205](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/commit/5c55205b874db3f1852cc741a831917ce2793d48))
11
+
12
+
13
+ ### Features
14
+
15
+ * update core theme ([d8058bf](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/commit/d8058bff46be9170c2c39215436c4a320603c844))
16
+ * update operator details for verification badge ([88c19e6](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/commit/88c19e62d3bbdbcfb5f4fd8defad9d896874cae3))
17
+
18
+ ## [53.19.1](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/compare/v53.19.0...v53.19.1) (2026-06-10)
19
+
20
+
21
+ ### Bug Fixes
22
+
23
+ * update core theme ([3e4f8bc](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/commit/3e4f8bc82f64fb8a0de649b8a7438a6926ed51ea))
24
+
1
25
  # [53.19.0](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/compare/v53.18.7...v53.19.0) (2026-06-10)
2
26
 
3
27
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gatsby-matrix-theme",
3
- "version": "53.19.0",
3
+ "version": "53.20.0",
4
4
  "main": "index.js",
5
5
  "description": "Matrix Theme NPM Package",
6
6
  "author": "",
@@ -26,7 +26,7 @@
26
26
  "@react-icons/all-files": "^4.1.0",
27
27
  "@gigmedia/enigma-utils": "^1.20.0",
28
28
  "gatsby": "^5.11.0",
29
- "gatsby-core-theme": "^44.26.0",
29
+ "gatsby-core-theme": "^44.27.0",
30
30
  "gatsby-plugin-sharp": "^5.11.0",
31
31
  "gatsby-plugin-sitemap": "^6.13.1",
32
32
  "gatsby-transformer-sharp": "^5.11.0",
@@ -51,6 +51,7 @@ const OperatorDetails = ({
51
51
  modulePosition,
52
52
  itemPosition,
53
53
  showVerificationBadge = false,
54
+ verificationBadgeByName = false,
54
55
  }) => {
55
56
  const itemName = item?.name || item?.relation?.name;
56
57
  const status = item?.status || item?.relation?.status;
@@ -130,9 +131,18 @@ const OperatorDetails = ({
130
131
  }`}
131
132
  />
132
133
  ))}
133
- <Tag classStyle={`${styles.operatorName} name-cta `} clickedElement="operator_name">
134
- {itemName}
135
- </Tag>
134
+ {verificationBadgeByName ? (
135
+ <div className={styles.top || ''}>
136
+ <Tag classStyle={`${styles.operatorName} name-cta `} clickedElement="operator_name">
137
+ {itemName}
138
+ </Tag>
139
+ {showVerificationBadge && item?.status === 'active' && <VerificationFlagBadge />}
140
+ </div>
141
+ ) : (
142
+ <Tag classStyle={`${styles.operatorName} name-cta `} clickedElement="operator_name">
143
+ {itemName}
144
+ </Tag>
145
+ )}
136
146
 
137
147
  {(showAuthor || showRating) && (
138
148
  <div
@@ -140,7 +150,9 @@ const OperatorDetails = ({
140
150
  ${(!useOneStarRating && styles.starRatings) || ''}
141
151
  ${(showRatingLabel && useOneStarRating && styles.ratinglabel) || ''}`}
142
152
  >
143
- {showVerificationBadge && item?.status === 'active' && <VerificationFlagBadge />}
153
+ {!verificationBadgeByName &&
154
+ showVerificationBadge &&
155
+ item?.status === 'active' && <VerificationFlagBadge />}
144
156
  {showRating &&
145
157
  (useOneStarRating ? (
146
158
  <StarRating
@@ -238,6 +250,7 @@ OperatorDetails.propTypes = {
238
250
  modulePosition: PropTypes.number,
239
251
  itemPosition: PropTypes.number,
240
252
  showVerificationBadge: PropTypes.bool,
253
+ verificationBadgeByName: PropTypes.bool,
241
254
  };
242
255
 
243
256
  export default OperatorDetails;