gatsby-matrix-theme 53.0.14 → 53.0.15

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,11 @@
1
+ ## [53.0.15](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/compare/v53.0.14...v53.0.15) (2025-04-04)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * fix test ([dd16e45](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/commit/dd16e45996dc79efb4903b2e31faac7f6c6d44f0))
7
+ * update theme and align toplist ([1b442d7](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/commit/1b442d78d9705ab54a2044edeb4d989a3e18d278))
8
+
1
9
  ## [53.0.14](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/compare/v53.0.13...v53.0.14) (2025-04-04)
2
10
 
3
11
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gatsby-matrix-theme",
3
- "version": "53.0.14",
3
+ "version": "53.0.15",
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": "44.0.11",
28
+ "gatsby-core-theme": "44.0.13",
29
29
  "gatsby-plugin-sharp": "^5.11.0",
30
30
  "gatsby-transformer-sharp": "^5.11.0",
31
31
  "gatsby-plugin-sitemap": "^6.13.1",
@@ -109,6 +109,7 @@ export default function List({
109
109
  onClick={() => handleClick()}
110
110
  buttonType="tertiary"
111
111
  icon={loadMoreIcon}
112
+ tag="button"
112
113
  />
113
114
  </div>
114
115
  )}
@@ -21,7 +21,7 @@ describe('List test component', () => {
21
21
  );
22
22
 
23
23
  expect(container.getElementsByClassName('show').length).toBe(2);
24
- const loadMoreButton = container.querySelector('.loadMore a');
24
+ const loadMoreButton = container.querySelector('.loadMore button');
25
25
  fireEvent.click(loadMoreButton);
26
26
 
27
27
  expect(container.getElementsByClassName('show').length).toBe(4);