feature/pdp-main-view #2

Merged
HenriqueSantosSantana merged 4 commits from feature/pdp-main-view into develop 2023-01-29 14:24:19 +00:00
9 changed files with 36 additions and 72 deletions
Showing only changes of commit 17e9e3b171 - Show all commits

View File

@ -15,7 +15,6 @@
"postreleasy": "vtex publish --verbose" "postreleasy": "vtex publish --verbose"
}, },
"dependencies": { "dependencies": {
"agenciamagma.store-theme": "5.x",
"vtex.store": "2.x", "vtex.store": "2.x",
"vtex.store-header": "2.x", "vtex.store-header": "2.x",
"vtex.product-summary": "2.x", "vtex.product-summary": "2.x",

View File

@ -1,3 +0,0 @@
import Example from "./components/Example/Example";
export default Example;

View File

@ -1,9 +0,0 @@
import React from 'react'
const Example = () => {
return (
<div>Example</div>
)
}
export default Example

View File

@ -2,8 +2,6 @@
"store.home": { "store.home": {
"blocks": [ "blocks": [
"list-context.image-list#demo", "list-context.image-list#demo",
"example-component", /* You can make references to blocks defined in other files.
* For example, `flex-layout.row#deals` is defined in the `deals.json` file. */
"flex-layout.row#deals", "flex-layout.row#deals",
"__fold__", "__fold__",
"rich-text#shelf-title", "rich-text#shelf-title",

View File

@ -18,6 +18,14 @@
}, },
"children": ["breadcrumb#pdp-breadcrumb"] "children": ["breadcrumb#pdp-breadcrumb"]
}, },
"breadcrumb#pdp-breadcrumb": {
"props": {
"homeIconSize": 0,
"showOnMobile": true
}
},
"flex-layout.row#specifications-title": { "flex-layout.row#specifications-title": {
"children": ["rich-text#specifications"] "children": ["rich-text#specifications"]
}, },
@ -87,13 +95,11 @@
}, },
"product-images": { "product-images": {
"props": { "props": {
"aspectRatio": { "aspectRatio": "1:1",
"desktop": "auto",
"phone": "16:9"
},
"displayThumbnailsArrows": true "displayThumbnailsArrows": true
} }
}, },
"flex-layout.col#right-col": { "flex-layout.col#right-col": {
"props": { "props": {
"preventVerticalStretch": true, "preventVerticalStretch": true,
@ -113,8 +119,7 @@
"product-gifts", "product-gifts",
"flex-layout.row#buy-button", "flex-layout.row#buy-button",
"availability-subscriber", "availability-subscriber",
"shipping-simulator", "shipping-simulator"
"share#default"
] ]
}, },
@ -170,23 +175,5 @@
"blockClass": "message-availability" "blockClass": "message-availability"
}, },
"children": ["availability-subscriber"] "children": ["availability-subscriber"]
},
"share#default": {
"props": {
"social": {
"Facebook": true,
"WhatsApp": true,
"Twitter": false,
"Pinterest": true
}
}
},
"breadcrumb#pdp-breadcrumb": {
"props": {
"homeIconSize": 0,
"showOnMobile": true
}
} }
} }

View File

@ -6,20 +6,4 @@
1800px + : Big desktop 1800px + : Big desktop
*/ */
/* Media Query M3 */ /* Media Query M3 */
/* Grid breakpoints */ /* Grid breakpoints */
.html--pdp-breadcrumb {
width: 100%;
padding: 0 40px;
}
@media screen and (min-width: 1025px) {
.html--pdp-breadcrumb {
width: 94.4444444444%;
padding: 0;
margin: 0 auto;
}
}
@media screen and (min-width: 1921px) {
.html--pdp-breadcrumb {
width: 68.75%;
}
}

View File

@ -9,11 +9,23 @@
/* Grid breakpoints */ /* Grid breakpoints */
.container { .container {
width: 100%; width: 100%;
display: inline-flex; display: flex;
flex-wrap: wrap; flex-wrap: wrap;
flex-basis: 100%; flex-basis: 100%;
align-items: baseline; align-items: baseline;
} }
@media screen and (min-width: 1025px) {
.container {
width: 94.4444444444%;
padding: 0;
margin: 0 auto;
}
}
@media screen and (min-width: 1921px) {
.container {
width: 68.75%;
}
}
.termArrow { .termArrow {
padding: 0; padding: 0;

View File

@ -1,14 +0,0 @@
.html--pdp-breadcrumb {
width: 100%;
padding: 0 40px;
@media screen and (min-width: 1025px) {
width: 94.44444444444444%;
padding: 0;
margin: 0 auto;
}
@media screen and (min-width: 1921px) {
width: 68.75%;
}
}

View File

@ -1,9 +1,19 @@
.container { .container {
width: 100%; width: 100%;
display: inline-flex; display: flex;
flex-wrap: wrap; flex-wrap: wrap;
flex-basis: 100%; flex-basis: 100%;
align-items: baseline; align-items: baseline;
@media screen and (min-width: 1025px) {
width: 94.44444444444444%;
padding: 0;
margin: 0 auto;
}
@media screen and (min-width: 1921px) {
width: 68.75%;
}
} }
.termArrow { .termArrow {