gatsby-matrix-theme 28.0.10 → 28.0.11

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,16 @@
1
+ ## [28.0.11](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/compare/v28.0.10...v28.0.11) (2023-08-03)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * remove changes for info grid ([12464e7](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/12464e7fc1ffd685cfbd8dca272185f3ca4b33f5))
7
+ * remove log ([7cae045](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/7cae045b89fd88d02801e859523ac83018fde7bf))
8
+ * update themes and delete secripts for facebook pixel and optin ([9379d49](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/9379d491807bb66eb6d35716d5132672b1a1dce2))
9
+ * update transiton time for components ([67388ff](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/67388ff58ac09e9379f0163b57d5d863be1694b5))
10
+
11
+
12
+ * Merge branch 'tm-3570-INP' into 'master' ([7080cca](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/7080cca9167e3b3ba7f38c6845d69e112c56cf61))
13
+
1
14
  ## [28.0.10](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/compare/v28.0.9...v28.0.10) (2023-07-31)
2
15
 
3
16
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gatsby-matrix-theme",
3
- "version": "28.0.10",
3
+ "version": "28.0.11",
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": "25.0.9",
28
+ "gatsby-core-theme": "25.0.11",
29
29
  "gatsby-plugin-sharp": "^5.11.0",
30
30
  "gatsby-plugin-sitemap": "^3.3.0",
31
31
  "gatsby-transformer-sharp": "^5.11.0",
@@ -18,7 +18,7 @@
18
18
  }
19
19
  }
20
20
  .active {
21
- transition: 1s;
21
+ transition: 0s;
22
22
  }
23
23
 
24
24
  @include min(tablet) {
@@ -38,7 +38,7 @@
38
38
  }
39
39
 
40
40
  .wrgtogglecircle {
41
- transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1) 0ms;
41
+ transition: all 0.2s cubic-bezier(0.23, 1, 0.32, 1) 0ms;
42
42
  position: absolute;
43
43
  top: 1px;
44
44
  left: 1px;
@@ -47,7 +47,7 @@
47
47
  border-radius: 50%;
48
48
  background-color: #fafafa;
49
49
  box-sizing: border-box;
50
- transition: all 0.25s ease;
50
+ transition: all 0.2s ease;
51
51
  }
52
52
 
53
53
  .wrgtogglecircleAgreed {
@@ -48,7 +48,7 @@
48
48
  }
49
49
 
50
50
  &:after {
51
- transition: 0.5s;
51
+ transition: 0s;
52
52
  @include arrow(black, 0.9rem, down, false, translateY(-50%));
53
53
  position: absolute;
54
54
  right: 0.5rem;
@@ -63,7 +63,7 @@
63
63
  }
64
64
 
65
65
  .content {
66
- @include collapse(0.5s, 500rem);
66
+ @include collapse(0s, 500rem);
67
67
  @include flex-direction(column);
68
68
  font-size: 1.6rem;
69
69
  color: var(--color-20);
@@ -5,7 +5,7 @@
5
5
  box-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.2);
6
6
  border-radius: 0.4rem;
7
7
  padding: 2rem;
8
- transition: 1s;
8
+ transition: 0s;
9
9
  bottom: -100%;
10
10
  z-index: var(--scroll-to-top-index);
11
11
  @include min(tablet){
@@ -124,7 +124,7 @@
124
124
  &.toggleButton {
125
125
  .modalInner {
126
126
  left: -100vw;
127
- transition: all 0.7s;
127
+ transition: all 0.2s;
128
128
  -moz-transition: all 0.7s;
129
129
  -webkit-transition: all 0.7s;
130
130
  -o-transition: all 0.7s;
@@ -147,7 +147,7 @@
147
147
  &::before {
148
148
  content: '';
149
149
  position: absolute;
150
- transition: all 0.25s ease-in-out;
150
+ transition: all 0s ease-in-out;
151
151
  height: 4rem;
152
152
  right: 0;
153
153
  bottom: 0;
@@ -1,7 +1,6 @@
1
1
  import React from 'react';
2
2
  // eslint-disable-next-line import/no-extraneous-dependencies
3
3
  import PropTypes from 'prop-types';
4
- import { Script } from 'gatsby';
5
4
  // eslint-disable-next-line import/no-extraneous-dependencies
6
5
  import loadable from '@loadable/component';
7
6
  import { getURLParam } from 'gatsby-core-theme/src/helpers/getters';
@@ -104,49 +103,6 @@ const Main = ({ section = {}, pageContext = {}, showAuthor = true, exclOperator
104
103
  )}
105
104
  {Newsletter && <Newsletter page={page} />}
106
105
  {NewsletterSuccess && <NewsletterSuccess />}
107
-
108
- {process.env.ENABLE_PIXEL === 'true' && (
109
- <>
110
- <Script strategy="idle">
111
- {`
112
- !function(f,b,e,v,n,t,s)
113
- {if(f.fbq)return;n=f.fbq=function(){n.callMethod?
114
- n.callMethod.apply(n,arguments):n.queue.push(arguments)};
115
- if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
116
- n.queue=[];t=b.createElement(e);t.async=!0;
117
- t.src=v;s=b.getElementsByTagName(e)[0];
118
- s.parentNode.insertBefore(t,s)}(window, document,'script',
119
- 'https://connect.facebook.net/en_US/fbevents.js');
120
- fbq('init', ${process.env.PIXEL_ID});
121
- fbq('track', 'PageView');
122
- `}
123
- </Script>
124
- <Script strategy="idle">
125
- {`
126
- if (typeof window !== 'undefined') {
127
- document.querySelector('noscript').innerHTML = \`
128
- <img
129
- height="1"
130
- width="1"
131
- style={{ display: 'none' }}
132
- src="https://www.facebook.com/tr?id=${process.env.PIXEL_ID}&ev=PageView&noscript=1"
133
- />
134
- \`;
135
- }
136
- `}
137
- </Script>
138
- </>
139
- )}
140
-
141
- {process.env.ENABLE_OPTINMONSTR === 'true' && (
142
- <Script
143
- id="optin-monstr"
144
- data-user={process.env.OPTINMONSTR_USER}
145
- data-account={process.env.OPTINMONSTR_ACC}
146
- strategy="idle"
147
- src="https://a.omappapi.com/app/js/api.min.js"
148
- />
149
- )}
150
106
  {page.template !== 'ppc' && <FeedBackModule />}
151
107
  </main>
152
108
  );