gatsby-core-theme 18.0.25 → 18.0.27
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,23 @@
|
|
|
1
|
+
## [18.0.27](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v18.0.26...v18.0.27) (2023-03-24)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* add props for author image ([2731480](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/273148028a85fd20e475b4389323cd7b29ea0285))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
* Merge branch 'tm-3311-article' into 'master' ([42312f4](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/42312f438cd62b1f6ec6125887e3841d35cbf44b))
|
|
10
|
+
|
|
11
|
+
## [18.0.26](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v18.0.25...v18.0.26) (2023-03-24)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
* exclude coming soon from cards ([591b3f4](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/591b3f4e3a32443ee4a32a45335b450cc1f15c7e))
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
* Merge branch 'tm-3384-cards-filter' into 'master' ([61ca810](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/61ca810689568b02a0dcd8432beafe474cd4f741))
|
|
20
|
+
|
|
1
21
|
## [18.0.25](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v18.0.24...v18.0.25) (2023-03-23)
|
|
2
22
|
|
|
3
23
|
|
package/package.json
CHANGED
|
@@ -24,6 +24,8 @@ const Author = ({
|
|
|
24
24
|
hasAuthorBox = false,
|
|
25
25
|
reviewer,
|
|
26
26
|
clock = '../../../images/clock.svg',
|
|
27
|
+
authorImageWidth = 30,
|
|
28
|
+
authorImageHeight = 30,
|
|
27
29
|
}) => {
|
|
28
30
|
const { translations } = useContext(Context) || {};
|
|
29
31
|
const prefixstyle = !link || !authorImg;
|
|
@@ -53,9 +55,9 @@ const Author = ({
|
|
|
53
55
|
<LazyImage
|
|
54
56
|
alt={name}
|
|
55
57
|
loading="eager"
|
|
56
|
-
width={
|
|
57
|
-
height={
|
|
58
|
-
src={imagePrettyUrl(authorImg,
|
|
58
|
+
width={authorImageWidth}
|
|
59
|
+
height={authorImageHeight}
|
|
60
|
+
src={imagePrettyUrl(authorImg, authorImageWidth, authorImageHeight)}
|
|
59
61
|
/>
|
|
60
62
|
)}
|
|
61
63
|
</div>
|
|
@@ -114,6 +116,8 @@ Author.propTypes = {
|
|
|
114
116
|
name: PropTypes.string,
|
|
115
117
|
}),
|
|
116
118
|
clock: PropTypes.string,
|
|
119
|
+
authorImageHeight: PropTypes.number,
|
|
120
|
+
authorImageWidth: PropTypes.number,
|
|
117
121
|
};
|
|
118
122
|
|
|
119
123
|
export default Author;
|
|
@@ -11,11 +11,11 @@ export default {
|
|
|
11
11
|
'sporttheme.com': ['cards', 'cards_v2'],
|
|
12
12
|
},
|
|
13
13
|
filter_cards_modules: {
|
|
14
|
-
'irishluck.ie': ['inactive', 'blacklisted'],
|
|
15
|
-
'norskespilleautomater.com': ['inactive', 'blacklisted'],
|
|
16
|
-
'playcasino.co.za': ['inactive', 'blacklisted'],
|
|
17
|
-
'onlinegamblingsa.co.za': ['inactive', 'blacklisted'],
|
|
18
|
-
'onlinegamblingsa.com': ['inactive', 'blacklisted'],
|
|
14
|
+
'irishluck.ie': ['inactive', 'blacklisted', 'coming_soon'],
|
|
15
|
+
'norskespilleautomater.com': ['inactive', 'blacklisted', 'coming_soon'],
|
|
16
|
+
'playcasino.co.za': ['inactive', 'blacklisted', 'coming_soon'],
|
|
17
|
+
'onlinegamblingsa.co.za': ['inactive', 'blacklisted', 'coming_soon'],
|
|
18
|
+
'onlinegamblingsa.com': ['inactive', 'blacklisted', 'coming_soon'],
|
|
19
19
|
'sporttheme.com': ['inactive', 'blacklisted'],
|
|
20
20
|
},
|
|
21
21
|
keep_page_extra_fields: {
|