gatsby-matrix-theme 45.0.7 → 46.0.1
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 +24 -0
- package/package.json +2 -2
- package/src/components/atoms/ratings/index.js +2 -1
- package/storybook/public/{251.6ec2cf61.iframe.bundle.js → 251.3e57192d.iframe.bundle.js} +3 -3
- package/storybook/public/{251.6ec2cf61.iframe.bundle.js.map → 251.3e57192d.iframe.bundle.js.map} +1 -1
- package/storybook/public/iframe.html +1 -1
- package/storybook/public/main.0b00b25c.iframe.bundle.js +1 -0
- package/storybook/public/project.json +1 -1
- package/storybook/public/main.3efecd4d.iframe.bundle.js +0 -1
- /package/storybook/public/{251.6ec2cf61.iframe.bundle.js.LICENSE.txt → 251.3e57192d.iframe.bundle.js.LICENSE.txt} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,27 @@
|
|
|
1
|
+
## [46.0.1](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/compare/v46.0.0...v46.0.1) (2024-07-02)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* beta deploy pipeline ([d92d45e](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/d92d45e9f8eff476c06ba8fb00de2564395f75e6))
|
|
7
|
+
* translations in search ([7f9af3c](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/7f9af3c9a595d22448973f29f58c593cd7d9f82c))
|
|
8
|
+
|
|
9
|
+
# [46.0.0](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/compare/v45.0.7...v46.0.0) (2024-07-01)
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Code Refactoring
|
|
13
|
+
|
|
14
|
+
* accessibility on scrollbars ([02928fd](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/02928fd069122a231f6d975654e00c1bcf01684d))
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Config
|
|
18
|
+
|
|
19
|
+
* update theme ([8bb80a4](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/8bb80a4662bec629667f661b05ac8cb0a47ba65b))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
* Merge branch 'tm-4505-aria-buttons' into 'master' ([c466c13](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/c466c13da30e200f17440ef825dfc6f7cc6df5d8))
|
|
23
|
+
* Merge branch 'master' into tm-4505-aria-buttons ([f64ded0](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/f64ded048bf8b2a093278ebbed5d22df254afec7))
|
|
24
|
+
|
|
1
25
|
## [45.0.7](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/compare/v45.0.6...v45.0.7) (2024-06-28)
|
|
2
26
|
|
|
3
27
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gatsby-matrix-theme",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "46.0.1",
|
|
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": "33.1.
|
|
28
|
+
"gatsby-core-theme": "33.1.7",
|
|
29
29
|
"gatsby-plugin-sharp": "^5.11.0",
|
|
30
30
|
"gatsby-transformer-sharp": "^5.11.0",
|
|
31
31
|
"prop-types": "15.7.2",
|
|
@@ -25,7 +25,8 @@ export default function Ratings({ item, type, numOfStars = 5, currency = '€' }
|
|
|
25
25
|
}
|
|
26
26
|
|
|
27
27
|
return (
|
|
28
|
-
|
|
28
|
+
// eslint-disable-next-line jsx-a11y/no-noninteractive-tabindex
|
|
29
|
+
<ul className={`${styles?.ratingList || ''}`} tabIndex={0}>
|
|
29
30
|
{ratings?.map((rating) => {
|
|
30
31
|
const { fieldValue, translationKey, fieldLabel, componentToUse } = rating || {};
|
|
31
32
|
let valueDiplayed;
|