@jetshop/template-trend 5.17.0-alpha.bcdca664 → 5.17.0-alpha.e026037c

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/.eslintrc CHANGED
@@ -3,7 +3,15 @@
3
3
  "plugins": ["react-hooks"],
4
4
  "rules": {
5
5
  "react-hooks/rules-of-hooks": "error",
6
- "react-hooks/exhaustive-deps": "warn"
6
+ "react-hooks/exhaustive-deps": "warn",
7
+ "no-unused-vars": [
8
+ "warn",
9
+ {
10
+ "argsIgnorePattern": "^_",
11
+ "varsIgnorePattern": "^_",
12
+ "caughtErrorsIgnorePattern": "^_"
13
+ }
14
+ ]
7
15
  },
8
16
  "globals": {
9
17
  "cy": true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jetshop/template-trend",
3
- "version": "5.17.0-alpha.bcdca664",
3
+ "version": "5.17.0-alpha.e026037c",
4
4
  "license": "MIT",
5
5
  "scripts": {
6
6
  "build": "react-scripts build",
@@ -45,11 +45,11 @@
45
45
  ]
46
46
  },
47
47
  "dependencies": {
48
- "@jetshop/core": "^5.17.0-alpha.bcdca664",
48
+ "@jetshop/core": "^5.17.0-alpha.e026037c",
49
49
  "@jetshop/flight-shortcodes": "^2.0.10",
50
- "@jetshop/intl": "^5.17.0-alpha.bcdca664",
51
- "@jetshop/react-scripts": "^5.17.0-alpha.bcdca664",
52
- "@jetshop/ui": "^5.17.0-alpha.bcdca664",
50
+ "@jetshop/intl": "^5.17.0-alpha.e026037c",
51
+ "@jetshop/react-scripts": "^5.17.0-alpha.e026037c",
52
+ "@jetshop/ui": "^5.17.0-alpha.e026037c",
53
53
  "@react-google-maps/api": "~1.7.0",
54
54
  "prop-types": "^15.6.2",
55
55
  "react": "^16.9.0",
@@ -160,7 +160,6 @@ function TopHeader() {
160
160
  const [searchOpen, setSearchOpen] = React.useState(false);
161
161
  const { loggedIn } = useAuth();
162
162
  const { routes } = useShopConfig();
163
-
164
163
  return (
165
164
  <HeaderContainer>
166
165
  <MaxWidth>
@@ -8,8 +8,8 @@ import { theme } from '../Theme';
8
8
  import { isRelativeUrl } from '@jetshop/core/helpers/isRelativeUrl';
9
9
 
10
10
  export const baseStyles = `
11
- background-color: pink;
12
- border-color: ${theme.colors.blue};
11
+ background-color: #EC288A;
12
+ border-color: #D40567;
13
13
  color: white;
14
14
  font-size: 16px;
15
15
  border-radius: 4px;
@@ -10,7 +10,7 @@ module.exports = {
10
10
  tablegrey: '#F3F3F3',
11
11
  beige: '#f5f5dc',
12
12
  loadingBar: '#2f80ed',
13
- blue: '#146DE1',
13
+ blue: '#EC288A',
14
14
  red: '#EB0000',
15
15
  background: '#f7f7f7',
16
16
  darkgrey: '#333',