gatsby-matrix-theme 34.0.22 → 34.0.24
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 +21 -0
- package/package.json +1 -1
- package/src/components/atoms/cards/operator-card/template-four/index.js +5 -1
- package/src/components/atoms/cards/operator-card/template-one/index.js +5 -1
- package/src/components/atoms/cards/operator-card/template-three/index.js +5 -1
- package/src/components/atoms/cards/operator-card/template-two/index.js +5 -1
- package/src/gatsby-core-theme/components/organisms/head/index.js +2 -0
- package/storybook/public/iframe.html +1 -1
- package/storybook/public/main.1052ee17.iframe.bundle.js +2 -0
- package/storybook/public/main.4acd2fb5.iframe.bundle.js +0 -2
- /package/storybook/public/{main.4acd2fb5.iframe.bundle.js.LICENSE.txt → main.1052ee17.iframe.bundle.js.LICENSE.txt} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,24 @@
|
|
|
1
|
+
## [34.0.24](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/compare/v34.0.23...v34.0.24) (2023-10-26)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* add meta data ([4008fb8](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/4008fb80899ef4c7fee53383979c1cc643dd3977))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
* Merge branch 'tm-3703' into 'master' ([82f68e6](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/82f68e6a55f69efb463c4d0e9ddbccf7bed9796e))
|
|
10
|
+
|
|
11
|
+
## [34.0.23](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/compare/v34.0.22...v34.0.23) (2023-10-25)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
* update operator cards with a new class ([915b307](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/915b30779716d775727d9350ede2bc44075a4ae1))
|
|
17
|
+
* update operator cards with a new class ([7e5a6dc](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/7e5a6dcec489415b042be6e154955f244c2b52e9))
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
* Merge branch 'tm-3737-add-with-ribbon-class' into 'master' ([10dbaa1](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/10dbaa157500ee519a4b921939b60054f2ea4c33))
|
|
21
|
+
|
|
1
22
|
## [34.0.22](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/compare/v34.0.21...v34.0.22) (2023-10-24)
|
|
2
23
|
|
|
3
24
|
|
package/package.json
CHANGED
|
@@ -28,7 +28,11 @@ const TemplateFour = ({
|
|
|
28
28
|
// const prettyLink = prettyTracker(relation, 'main', false, page?.template);
|
|
29
29
|
|
|
30
30
|
return (
|
|
31
|
-
<div
|
|
31
|
+
<div
|
|
32
|
+
className={`${styles?.operatorCard || ''} ${
|
|
33
|
+
ribbons?.length > 0 ? styles?.withRibbon || '' : ''
|
|
34
|
+
}`}
|
|
35
|
+
>
|
|
32
36
|
<OperatorDetails
|
|
33
37
|
item={item}
|
|
34
38
|
showReviewLink={false}
|
|
@@ -44,7 +44,11 @@ const TemplateOne = ({
|
|
|
44
44
|
const VariableComponent = hasVariableComponent ? loadable(() => import('../variables')) : null;
|
|
45
45
|
|
|
46
46
|
return (
|
|
47
|
-
<div
|
|
47
|
+
<div
|
|
48
|
+
className={`${styles?.operatorCard || ''} ${
|
|
49
|
+
ribbons?.length > 0 ? styles?.withRibbon || '' : ''
|
|
50
|
+
}`}
|
|
51
|
+
>
|
|
48
52
|
<OperatorDetails
|
|
49
53
|
item={item}
|
|
50
54
|
showReviewLink={false}
|
|
@@ -32,7 +32,11 @@ const TemplateThree = ({
|
|
|
32
32
|
const VariableComponent = hasVariableComponent ? loadable(() => import('../variables')) : null;
|
|
33
33
|
|
|
34
34
|
return (
|
|
35
|
-
<div
|
|
35
|
+
<div
|
|
36
|
+
className={`${styles?.operatorCard || ''} ${
|
|
37
|
+
ribbons?.length > 0 ? styles?.withRibbon || '' : ''
|
|
38
|
+
}`}
|
|
39
|
+
>
|
|
36
40
|
<OperatorDetails
|
|
37
41
|
item={item}
|
|
38
42
|
showReviewLink={false}
|
|
@@ -40,7 +40,11 @@ const TemplateTwo = ({
|
|
|
40
40
|
const VariableComponent = hasVariableComponent ? loadable(() => import('../variables')) : null;
|
|
41
41
|
|
|
42
42
|
return (
|
|
43
|
-
<div
|
|
43
|
+
<div
|
|
44
|
+
className={`${styles?.operatorCard || ''} ${
|
|
45
|
+
ribbons?.length > 0 ? styles?.withRibbon || '' : ''
|
|
46
|
+
}`}
|
|
47
|
+
>
|
|
44
48
|
<OperatorDetails
|
|
45
49
|
item={item}
|
|
46
50
|
showReviewLink={false}
|
|
@@ -67,6 +67,8 @@ const HeadData = ({ page = {}, siteInfo }) => {
|
|
|
67
67
|
<title>{metaTitle}</title>
|
|
68
68
|
<html lang={getLanguage(isIL || page.language)} />
|
|
69
69
|
<meta name="description" content={parsedMetaDescr} />
|
|
70
|
+
{process.env?.PLACENAME && <meta name="geo.placename" content={process.env.PLACENAME} />}
|
|
71
|
+
{process.env?.COUNTRY && <meta name="geo.placename" content={process.env.COUNTRY} />}
|
|
70
72
|
{process.env.ENABLE_PIXEL && (
|
|
71
73
|
<meta name="facebook-domain-verification" content={process.env.FBVERIFACTION} />
|
|
72
74
|
)}
|
|
@@ -361,4 +361,4 @@
|
|
|
361
361
|
|
|
362
362
|
|
|
363
363
|
|
|
364
|
-
window['STORIES'] = [{"titlePrefix":"","directory":"./src","files":"**/**/**/*.stories.js","importPathMatcher":"^\\.[\\\\/](?:src(?:\\/(?!\\.)(?:(?:(?!(?:^|\\/)\\.).)*?)\\/|\\/|$)(?!\\.)(?=.)[^/]*?\\.stories\\.js)$"},{"titlePrefix":"","directory":"./src","files":"**/**/**/**/*.stories.js","importPathMatcher":"^\\.[\\\\/](?:src(?:\\/(?!\\.)(?:(?:(?!(?:^|\\/)\\.).)*?)\\/|\\/|$)(?!\\.)(?=.)[^/]*?\\.stories\\.js)$"},{"titlePrefix":"","directory":"./src","files":"**/**/**/**/**/*.stories.js","importPathMatcher":"^\\.[\\\\/](?:src(?:\\/(?!\\.)(?:(?:(?!(?:^|\\/)\\.).)*?)\\/|\\/|$)(?!\\.)(?=.)[^/]*?\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/organisms/navigation","files":"navigation.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/organisms\\/navigation\\/navigation\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/organisms/anchor","files":"anchor.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/organisms\\/anchor\\/anchor\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/bonus/template-one","files":"bonus.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/bonus\\/template-one\\/bonus\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/bonus/template-two","files":"bonus.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/bonus\\/template-two\\/bonus\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/content","files":"content.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/content\\/content\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/content/table","files":"table.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/content\\/table\\/table\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/content/text/Images","files":"text.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/content\\/text\\/Images\\/text\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/content/lists","files":"lists.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/content\\/lists\\/lists\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/pagination","files":"pagination.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/pagination\\/pagination\\.stories\\.js)$"}];</script><script src="runtime~main.445065e1.iframe.bundle.js"></script><script src="970.026a627d.iframe.bundle.js"></script><script src="main.
|
|
364
|
+
window['STORIES'] = [{"titlePrefix":"","directory":"./src","files":"**/**/**/*.stories.js","importPathMatcher":"^\\.[\\\\/](?:src(?:\\/(?!\\.)(?:(?:(?!(?:^|\\/)\\.).)*?)\\/|\\/|$)(?!\\.)(?=.)[^/]*?\\.stories\\.js)$"},{"titlePrefix":"","directory":"./src","files":"**/**/**/**/*.stories.js","importPathMatcher":"^\\.[\\\\/](?:src(?:\\/(?!\\.)(?:(?:(?!(?:^|\\/)\\.).)*?)\\/|\\/|$)(?!\\.)(?=.)[^/]*?\\.stories\\.js)$"},{"titlePrefix":"","directory":"./src","files":"**/**/**/**/**/*.stories.js","importPathMatcher":"^\\.[\\\\/](?:src(?:\\/(?!\\.)(?:(?:(?!(?:^|\\/)\\.).)*?)\\/|\\/|$)(?!\\.)(?=.)[^/]*?\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/organisms/navigation","files":"navigation.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/organisms\\/navigation\\/navigation\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/organisms/anchor","files":"anchor.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/organisms\\/anchor\\/anchor\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/bonus/template-one","files":"bonus.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/bonus\\/template-one\\/bonus\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/bonus/template-two","files":"bonus.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/bonus\\/template-two\\/bonus\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/content","files":"content.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/content\\/content\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/content/table","files":"table.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/content\\/table\\/table\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/content/text/Images","files":"text.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/content\\/text\\/Images\\/text\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/content/lists","files":"lists.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/content\\/lists\\/lists\\.stories\\.js)$"},{"titlePrefix":"","directory":"../node_modules/gatsby-core-theme/src/components/molecules/pagination","files":"pagination.stories.js","importPathMatcher":"^(?:\\.\\.\\/node_modules\\/gatsby-core-theme\\/src\\/components\\/molecules\\/pagination\\/pagination\\.stories\\.js)$"}];</script><script src="runtime~main.445065e1.iframe.bundle.js"></script><script src="970.026a627d.iframe.bundle.js"></script><script src="main.1052ee17.iframe.bundle.js"></script></body></html>
|