gatsby-theme-q3 3.6.3 → 3.6.8
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
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [3.6.8](https://github.com/3merge/q/compare/v3.6.7...v3.6.8) (2022-06-30)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* rte overflow buttons ([3efdab9](https://github.com/3merge/q/commit/3efdab93af5e240663868475bf1ed7763b0cd216))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
## [3.6.3](https://github.com/3merge/q/compare/v3.6.2...v3.6.3) (2022-06-28)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package gatsby-theme-q3
|
|
@@ -17,6 +17,8 @@ var _q3UiLocale = require("q3-ui-locale");
|
|
|
17
17
|
|
|
18
18
|
var _lodash = require("lodash");
|
|
19
19
|
|
|
20
|
+
var _BackgroundStyle = _interopRequireDefault(require("q3-admin/lib/components/BackgroundStyle"));
|
|
21
|
+
|
|
20
22
|
var _AdminPublicGateway = _interopRequireDefault(require("./AdminPublicGateway"));
|
|
21
23
|
|
|
22
24
|
var _useSiteMetaData = _interopRequireDefault(require("./useSiteMetaData"));
|
|
@@ -109,7 +111,7 @@ const PublicTemplate = ({
|
|
|
109
111
|
photo,
|
|
110
112
|
invertLogo
|
|
111
113
|
});
|
|
112
|
-
return /*#__PURE__*/_react.default.createElement(_AdminPublicGateway.default, rest, /*#__PURE__*/_react.default.createElement(_core.Box, {
|
|
114
|
+
return /*#__PURE__*/_react.default.createElement(_AdminPublicGateway.default, rest, /*#__PURE__*/_react.default.createElement(_BackgroundStyle.default, null), /*#__PURE__*/_react.default.createElement(_core.Box, {
|
|
113
115
|
alignItems: "center",
|
|
114
116
|
component: "article",
|
|
115
117
|
display: "flex",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gatsby-theme-q3",
|
|
3
|
-
"version": "3.6.
|
|
3
|
+
"version": "3.6.8",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"peerDependencies": {
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"gatsby-plugin-robots-txt": "^1.6.14",
|
|
29
29
|
"gatsby-plugin-sharp": "^4.2.0",
|
|
30
30
|
"gatsby-plugin-sitemap": "^5.2.0",
|
|
31
|
-
"gatsby-theme-q3-mui": "^3.6.
|
|
31
|
+
"gatsby-theme-q3-mui": "^3.6.8",
|
|
32
32
|
"gatsby-transformer-sharp": "^4.2.0",
|
|
33
33
|
"lodash": "^4.17.20",
|
|
34
34
|
"process": "^0.11.10",
|
|
@@ -42,5 +42,5 @@
|
|
|
42
42
|
"transform-loader": "^0.2.4",
|
|
43
43
|
"yarn": "^1.22.17"
|
|
44
44
|
},
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "5ac3ce819bfabd5e96c514fa8a862e196d30fc0e"
|
|
46
46
|
}
|
|
@@ -11,6 +11,7 @@ import {
|
|
|
11
11
|
import { Link as ReachLink } from 'gatsby';
|
|
12
12
|
import { useTranslation } from 'q3-ui-locale';
|
|
13
13
|
import { isString } from 'lodash';
|
|
14
|
+
import BackgroundStyle from 'q3-admin/lib/components/BackgroundStyle';
|
|
14
15
|
import AdminPublicGateway from './AdminPublicGateway';
|
|
15
16
|
import useSiteMetaData from './useSiteMetaData';
|
|
16
17
|
|
|
@@ -101,6 +102,7 @@ const PublicTemplate = ({ children, ...rest }) => {
|
|
|
101
102
|
|
|
102
103
|
return (
|
|
103
104
|
<AdminPublicGateway {...rest}>
|
|
105
|
+
<BackgroundStyle />
|
|
104
106
|
<Box
|
|
105
107
|
alignItems="center"
|
|
106
108
|
component="article"
|