gatsby-matrix-theme 20.0.1 → 20.0.2
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 +17 -0
- package/package.json +2 -2
- package/src/components/atoms/feedBackModule/feedback-module.module.scss +5 -6
- package/src/components/molecules/faq/faq.module.scss +66 -64
- package/src/components/molecules/faq/index.js +4 -7
- package/src/gatsby-core-theme/styles/utils/variables/_main.scss +1 -1
- package/storybook/public/iframe.html +1 -1
- package/storybook/public/main.0fa2edfd.iframe.bundle.js +1 -0
- package/storybook/public/main.574da9bb.iframe.bundle.js +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,20 @@
|
|
|
1
|
+
## [20.0.2](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/compare/v20.0.1...v20.0.2) (2023-04-26)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Code Refactoring
|
|
5
|
+
|
|
6
|
+
* update components and style for v3 validator ([0ed1297](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/0ed1297ea4089be0c6e911d46a24deebc3e62ebe))
|
|
7
|
+
* update main style for w3c validator ([b6b847a](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/b6b847afac4e486f6e6a9f42b2bd825be696224f))
|
|
8
|
+
* update operator banner cta type for w3c validator ([d19de44](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/d19de4492922f258b0677f64df93c062b0c2fc10))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Config
|
|
12
|
+
|
|
13
|
+
* update core theme version ([5ad8bf5](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/5ad8bf51e6d5a4e2dfb3bab7f3a09acc4e116a29))
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
* Merge branch 'tm-3386-w3-validator-fixes' into 'master' ([5db4878](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/5db4878d3dc3b86be7af37ed4f0bd9d1109a7380))
|
|
17
|
+
|
|
1
18
|
## [20.0.1](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/compare/v20.0.0...v20.0.1) (2023-04-24)
|
|
2
19
|
|
|
3
20
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gatsby-matrix-theme",
|
|
3
|
-
"version": "20.0.
|
|
3
|
+
"version": "20.0.2",
|
|
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": "^4.20.0",
|
|
28
|
-
"gatsby-core-theme": "21.0.
|
|
28
|
+
"gatsby-core-theme": "21.0.4",
|
|
29
29
|
"gatsby-plugin-sharp": "^4.10.2",
|
|
30
30
|
"gatsby-plugin-sitemap": "^3.3.0",
|
|
31
31
|
"gatsby-transformer-sharp": "^4.10.0",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
.mainContainer {
|
|
2
2
|
padding: 0 1.6rem;
|
|
3
3
|
@include min(tablet) {
|
|
4
|
-
padding: 0
|
|
4
|
+
padding: 0 2.4rem;
|
|
5
5
|
}
|
|
6
6
|
}
|
|
7
7
|
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
max-width: var(--main-container-max) !important;
|
|
13
13
|
margin-bottom: 1rem !important;
|
|
14
14
|
margin: 0 auto;
|
|
15
|
-
padding: 1.6rem 0
|
|
15
|
+
padding: 1.6rem 0;
|
|
16
16
|
}
|
|
17
17
|
.container {
|
|
18
18
|
@include flex-align(center, space-between);
|
|
@@ -76,9 +76,8 @@
|
|
|
76
76
|
}
|
|
77
77
|
}
|
|
78
78
|
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
>:last-child:disabled {
|
|
79
|
+
> :first-child:disabled,
|
|
80
|
+
> :last-child:disabled {
|
|
82
81
|
cursor: not-allowed;
|
|
83
82
|
}
|
|
84
83
|
|
|
@@ -96,7 +95,7 @@
|
|
|
96
95
|
box-shadow: var(--feedback-second-button-box-shadow-hover) !important;
|
|
97
96
|
}
|
|
98
97
|
|
|
99
|
-
|
|
98
|
+
> :first-child {
|
|
100
99
|
box-shadow: var(--feedbackModule-first-button-box-shadow);
|
|
101
100
|
background: var(--feedback-first-button-background);
|
|
102
101
|
}
|
|
@@ -1,71 +1,73 @@
|
|
|
1
1
|
.faqContainer {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
2
|
+
padding: 0 1.6rem;
|
|
3
|
+
@include min(tablet) {
|
|
4
|
+
padding: 0 2.4rem;
|
|
5
|
+
}
|
|
6
|
+
.faqItem {
|
|
7
|
+
display: flex;
|
|
8
|
+
flex-direction: column;
|
|
9
|
+
padding: 1rem 1.6rem 1.6rem;
|
|
10
|
+
background-color: #fff;
|
|
11
|
+
border-radius: 0.6rem;
|
|
12
|
+
margin: 1rem 0;
|
|
13
13
|
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
14
|
+
.title {
|
|
15
|
+
position: relative;
|
|
16
|
+
text-align: left;
|
|
17
|
+
color: var(--color-12);
|
|
18
|
+
font-size: 1.8rem;
|
|
19
|
+
font-weight: 700;
|
|
20
|
+
padding: 1rem 0;
|
|
21
|
+
outline: none;
|
|
22
|
+
padding-right: 2.5rem;
|
|
23
|
+
display: flex;
|
|
24
|
+
align-items: center;
|
|
25
|
+
.circle {
|
|
26
|
+
@include flex-align(center, center);
|
|
27
|
+
margin-right: 0.5rem;
|
|
28
|
+
}
|
|
29
|
+
> span,
|
|
30
|
+
div {
|
|
31
|
+
display: block;
|
|
32
|
+
margin: 0;
|
|
33
|
+
margin-right: 2rem;
|
|
34
|
+
font-weight: 700;
|
|
35
|
+
font-size: 1.8rem;
|
|
36
|
+
p,
|
|
37
|
+
h2,
|
|
38
|
+
h3,
|
|
39
|
+
h4 {
|
|
40
|
+
margin: 0;
|
|
41
|
+
font-weight: 700;
|
|
42
|
+
font-size: 1.8rem;
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
&:hover,
|
|
46
|
+
&:focus {
|
|
47
|
+
outline: none;
|
|
48
|
+
}
|
|
47
49
|
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
50
|
+
&:after {
|
|
51
|
+
transition: 0.5s;
|
|
52
|
+
@include arrow(black, 0.9rem, down, false, translateY(-50%));
|
|
53
|
+
position: absolute;
|
|
54
|
+
right: 0.5rem;
|
|
55
|
+
top: 50%;
|
|
56
|
+
}
|
|
55
57
|
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
}
|
|
60
|
-
}
|
|
58
|
+
&.invertArrow {
|
|
59
|
+
&:after {
|
|
60
|
+
transform: translateY(-50%) rotate(-135deg);
|
|
61
61
|
}
|
|
62
|
+
}
|
|
63
|
+
}
|
|
62
64
|
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
}
|
|
65
|
+
.content {
|
|
66
|
+
@include collapse(0.5s, 500rem);
|
|
67
|
+
@include flex-direction(column);
|
|
68
|
+
font-size: 1.6rem;
|
|
69
|
+
color: var(--color-20);
|
|
70
|
+
padding: 0;
|
|
70
71
|
}
|
|
71
|
-
}
|
|
72
|
+
}
|
|
73
|
+
}
|
|
@@ -60,17 +60,14 @@ const Faq = ({ module, closeAll = false, openItem, closeOthers = false, icon = '
|
|
|
60
60
|
<div className={styles.faqContainer}>
|
|
61
61
|
{items.map((item, index) => (
|
|
62
62
|
<div key={keygen()} className={styles.faqItem}>
|
|
63
|
-
<
|
|
63
|
+
<div
|
|
64
64
|
onClick={() => toggle(index)}
|
|
65
65
|
className={`${styles.title} faq-gtm`}
|
|
66
|
-
type="button"
|
|
67
66
|
ref={(el) => (btnRefs.current[index] = el)}
|
|
68
67
|
>
|
|
69
|
-
<span className={styles.icon}>
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
</span>
|
|
73
|
-
</button>
|
|
68
|
+
{icon && <span className={styles.circle}>{icon} </span>}
|
|
69
|
+
<div dangerouslySetInnerHTML={{ __html: item.question }} />
|
|
70
|
+
</div>
|
|
74
71
|
<div
|
|
75
72
|
className={`${styles.content} ${styles.active}`}
|
|
76
73
|
ref={(el) => (itemRefs.current[index] = el)}
|
|
@@ -174,7 +174,7 @@
|
|
|
174
174
|
--feedbackModule-main-border-radius: 8px;
|
|
175
175
|
--feedbackModule-background-color: white;
|
|
176
176
|
--feedbackModule-container-radius: 8px;
|
|
177
|
-
--feedbackModule-container-border: ;
|
|
177
|
+
--feedbackModule-container-border: 1.5px solid #EAEAEA;
|
|
178
178
|
--feedbackModule-firstText-font-size: 20px;
|
|
179
179
|
--feedbackModule-firstText-line-height: 20px;
|
|
180
180
|
--feedbackModule-secondText-line-height: 26px;
|
|
@@ -345,4 +345,4 @@
|
|
|
345
345
|
|
|
346
346
|
|
|
347
347
|
|
|
348
|
-
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)$"}];</script><script src="runtime~main.411e0a84.iframe.bundle.js"></script><script src="627.5f6bcbc9.iframe.bundle.js"></script><script src="main.
|
|
348
|
+
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)$"}];</script><script src="runtime~main.411e0a84.iframe.bundle.js"></script><script src="627.5f6bcbc9.iframe.bundle.js"></script><script src="main.0fa2edfd.iframe.bundle.js"></script></body></html>
|