gatsby-matrix-theme 7.1.41 → 7.1.44
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 +25 -0
- package/package.json +2 -2
- package/src/gatsby-core-theme/components/atoms/info-grid/index.js +1 -1
- package/src/gatsby-core-theme/components/atoms/info-grid/info-grid.module.scss +2 -2
- package/storybook/public/{139.bcea9d6e.iframe.bundle.js → 139.42b66da0.iframe.bundle.js} +3 -3
- package/storybook/public/{139.bcea9d6e.iframe.bundle.js.LICENSE.txt → 139.42b66da0.iframe.bundle.js.LICENSE.txt} +0 -0
- package/storybook/public/{139.bcea9d6e.iframe.bundle.js.map → 139.42b66da0.iframe.bundle.js.map} +1 -1
- package/storybook/public/iframe.html +1 -1
- package/storybook/public/main.f5d8e990.iframe.bundle.js +1 -0
- package/storybook/public/main.4a8674d9.iframe.bundle.js +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,28 @@
|
|
|
1
|
+
## [7.1.44](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/compare/v7.1.43...v7.1.44) (2022-07-25)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* updated to latest core version ([0c4e2b8](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/0c4e2b8e638ae372891b5f323f6243910656ab7b))
|
|
7
|
+
|
|
8
|
+
## [7.1.43](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/compare/v7.1.42...v7.1.43) (2022-07-25)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* update core version ([de0a0d0](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/de0a0d033041a38534f1f395dc89075c1d72189b))
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
* Merge branch 'update-core-v' into 'master' ([cf789bc](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/cf789bc2ccbaee50b5c753f6901a2530eb48893a))
|
|
17
|
+
|
|
18
|
+
## [7.1.42](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/compare/v7.1.41...v7.1.42) (2022-07-25)
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### Bug Fixes
|
|
22
|
+
|
|
23
|
+
* add variables for colors ([74c5724](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/74c572460c851d5059c13cc0f234707f2a53648d))
|
|
24
|
+
* fix small bug in the transition of item ([4204d05](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/4204d05e5172bf3a71880bd93cfb0fc722167dd1))
|
|
25
|
+
|
|
1
26
|
## [7.1.41](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/compare/v7.1.40...v7.1.41) (2022-07-22)
|
|
2
27
|
|
|
3
28
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gatsby-matrix-theme",
|
|
3
|
-
"version": "7.1.
|
|
3
|
+
"version": "7.1.44",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"description": "Matrix Theme NPM Package",
|
|
6
6
|
"author": "",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"gatsby": "^4.15.0",
|
|
27
|
-
"gatsby-core-theme": "^8.0.
|
|
27
|
+
"gatsby-core-theme": "^8.0.13",
|
|
28
28
|
"gatsby-plugin-sharp": "^4.10.2",
|
|
29
29
|
"gatsby-plugin-sitemap": "^3.3.0",
|
|
30
30
|
"gatsby-transformer-sharp": "^4.10.0",
|
|
@@ -31,7 +31,7 @@ const InfoGrid = ({
|
|
|
31
31
|
};
|
|
32
32
|
const nextSlide = () => {
|
|
33
33
|
const widthItems = window.screen.width;
|
|
34
|
-
const scrollValue = ref.current.scrollLeft + widthItems;
|
|
34
|
+
const scrollValue = ref.current.scrollLeft + widthItems - 15;
|
|
35
35
|
const inThEnd = scrollValue + widthItems >= ref.current.scrollWidth;
|
|
36
36
|
ref.current.scrollLeft = scrollValue;
|
|
37
37
|
setShowButtons(inThEnd ? 1 : 0);
|
|
@@ -55,10 +55,10 @@
|
|
|
55
55
|
}
|
|
56
56
|
|
|
57
57
|
.gridItem {
|
|
58
|
-
border-left: 0.8rem solid
|
|
58
|
+
border-left: 0.8rem solid var(--info-grid-border-left-color);
|
|
59
59
|
padding: 1.4rem 1.5rem;
|
|
60
60
|
border-radius: 0.6rem 0 0 0.6rem;
|
|
61
|
-
background-color:
|
|
61
|
+
background-color: var(--info-grid-backgorund-color);
|
|
62
62
|
@include max(mobile) {
|
|
63
63
|
width: 92vw;
|
|
64
64
|
}
|