@jetshop/template-trend 5.17.0-alpha.3d8a8c39 → 5.17.0-alpha.418dfcd7
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/package.json +5 -5
- package/src/components/Shop.js +2 -0
- package/src/styles.css +3 -0
- package/tailwind.config.js +11 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jetshop/template-trend",
|
|
3
|
-
"version": "5.17.0-alpha.
|
|
3
|
+
"version": "5.17.0-alpha.418dfcd7",
|
|
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.
|
|
48
|
+
"@jetshop/core": "^5.17.0-alpha.418dfcd7",
|
|
49
49
|
"@jetshop/flight-shortcodes": "^2.0.10",
|
|
50
|
-
"@jetshop/intl": "^5.17.0-alpha.
|
|
51
|
-
"@jetshop/react-scripts": "^5.17.0-alpha.
|
|
52
|
-
"@jetshop/ui": "^5.17.0-alpha.
|
|
50
|
+
"@jetshop/intl": "^5.17.0-alpha.418dfcd7",
|
|
51
|
+
"@jetshop/react-scripts": "^5.17.0-alpha.418dfcd7",
|
|
52
|
+
"@jetshop/ui": "^5.17.0-alpha.418dfcd7",
|
|
53
53
|
"@react-google-maps/api": "~2.18.1",
|
|
54
54
|
"prop-types": "^15.6.2",
|
|
55
55
|
"react": "^18",
|
package/src/components/Shop.js
CHANGED
|
@@ -48,6 +48,7 @@ import routeQuery from './RouteQuery.gql';
|
|
|
48
48
|
import { theme } from './Theme';
|
|
49
49
|
import loadFontCss from '../fonts/loadFontCss';
|
|
50
50
|
import '../globalStyles';
|
|
51
|
+
import '../styles.css';
|
|
51
52
|
|
|
52
53
|
React && console.log('React', React.version);
|
|
53
54
|
|
|
@@ -69,6 +70,7 @@ function Shop() {
|
|
|
69
70
|
<ProductListProvider queries={productListQueries}>
|
|
70
71
|
<PaginationProvider defaultProductsPerPage={24}>
|
|
71
72
|
<Header />
|
|
73
|
+
<div className="bg-lime-500">hej</div>
|
|
72
74
|
<Content>
|
|
73
75
|
<Switch>
|
|
74
76
|
<Route exact path="/" component={StartPage} />
|
package/src/styles.css
ADDED