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 +8 -0
- package/package.json +2 -2
- package/src/gatsby-core-theme/components/organisms/toplist/list/index.js +1 -0
- package/src/gatsby-core-theme/components/organisms/toplist/list/list.test.js +1 -1
- package/storybook/public/{536.53fdff48.iframe.bundle.js → 536.c8c81134.iframe.bundle.js} +3 -3
- package/storybook/public/{536.53fdff48.iframe.bundle.js.map → 536.c8c81134.iframe.bundle.js.map} +1 -1
- package/storybook/public/iframe.html +1 -1
- package/storybook/public/{main.e1fba887.iframe.bundle.js → main.47a6b40a.iframe.bundle.js} +1 -1
- package/storybook/public/project.json +1 -1
- /package/storybook/public/{536.53fdff48.iframe.bundle.js.LICENSE.txt → 536.c8c81134.iframe.bundle.js.LICENSE.txt} +0 -0
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.
|
|
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.
|
|
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",
|
|
@@ -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
|
|
24
|
+
const loadMoreButton = container.querySelector('.loadMore button');
|
|
25
25
|
fireEvent.click(loadMoreButton);
|
|
26
26
|
|
|
27
27
|
expect(container.getElementsByClassName('show').length).toBe(4);
|