Skip to content

Commit

Permalink
Adding support for cta button in third party 180 section wrapper block
Browse files Browse the repository at this point in the history
  • Loading branch information
clintrandall committed Dec 27, 2021
1 parent d3662d6 commit 8a28728
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 19 deletions.
40 changes: 22 additions & 18 deletions packages/common/components/style-a/blocks/marko.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"@content-link-style": "object",
"@fallback-label": {
"type": "boolean",
"default-value":false
"default-value": false
}
},
"<common-style-a-third-party-featured-section-wrapper-block>": {
Expand Down Expand Up @@ -102,7 +102,7 @@
"@content-link-style": "object",
"@fallback-label": {
"type": "boolean",
"default-value":false
"default-value": false
}
},
"<common-style-a-card-section-wrapper-block>": {
Expand Down Expand Up @@ -141,11 +141,11 @@
"@content-link-style": "object",
"@fallback-label": {
"type": "boolean",
"default-value":false
"default-value": false
},
"@displayImage": {
"type": "boolean",
"default-value":true
"default-value": true
}
},
"<common-style-a-full-third-two-thirds-section-wrapper-block>": {
Expand Down Expand Up @@ -280,7 +280,7 @@
"@content-link-style": "object",
"@fallback-label": {
"type": "boolean",
"default-value":true
"default-value": true
}
},
"<common-style-a-third-party-content-180-section-wrapper-block>": {
Expand Down Expand Up @@ -316,7 +316,11 @@
"@button-style": "string",
"@button-text-style": "object",
"@main-table-style": "string",
"@content-link-style": "object"
"@content-link-style": "object",
"@show-button": {
"type": "boolean",
"default-value": false
}
},
"<common-style-a-list-section-wrapper-block>": {
"template": "./list-section-wrapper.marko",
Expand Down Expand Up @@ -424,11 +428,11 @@
"@button-text-style": "object",
"@fallback-label": {
"type": "boolean",
"default-value":false
"default-value": false
},
"@display-image" : {
"@display-image": {
"type": "boolean",
"default-value":true
"default-value": true
}
},
"<common-style-a-simple-card-full-block>": {
Expand All @@ -454,9 +458,9 @@
"@teaser-style": "object",
"@button-style": "string",
"@button-text-style": "object",
"@display-image" : {
"@display-image": {
"type": "boolean",
"default-value":true
"default-value": true
}
},
"<common-style-a-simple-card-third-two-thirds-block>": {
Expand Down Expand Up @@ -550,7 +554,7 @@
"@button-text-style": "object",
"@fallback-label": {
"type": "boolean",
"default-value":true
"default-value": true
}
},
"<common-style-a-third-party-content-180-block>": {
Expand Down Expand Up @@ -627,11 +631,11 @@
"@teaser-style": "object",
"@fallback-label": {
"type": "boolean",
"default-value":true
"default-value": true
},
"@display-image" : {
"@display-image": {
"type": "boolean",
"default-value":true
"default-value": true
}
},
"<common-style-a-promotion-full-block>": {
Expand All @@ -653,11 +657,11 @@
"@teaser-style": "object",
"@fallback-label": {
"type": "boolean",
"default-value":true
"default-value": true
},
"@display-image" : {
"@display-image": {
"type": "boolean",
"default-value":true
"default-value": true
}
},
"<common-style-a-special-edition-full-wrapper-block>": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ $ const {
skip,
buttonStyle,
buttonTextStyle,
teaserStyle
teaserStyle,
showButton
} = input;
$ const titleTableStyle = defaultValue(input.titleTableStyle, "font: 400 13px/21px Garamond, serif; margin: 0; table-layout: fixed; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 100% !important; color: #00b398; background-color: #ffffff; border-bottom: 3px solid #d7d7d7; border-top: 4px solid #00b398;");
$ const titleStyle = defaultValue(input.titleStyle, "font:700 15px/23px Arial, 'Helvetica Neue', Helvetica, sans-serif; margin-top: 9px; margin-left: 20px; margin-bottom: 9px;");
Expand Down Expand Up @@ -57,6 +58,7 @@ $ const contentLinkStyle = defaultValue(input.contentLinkStyle, {
button-text-style=buttonTextStyle
teaser-style=teaserStyle
show-title=true
show-button=showButton
/>
<if(!isLast(nodes, index))>
<common-table width="100%" style="border-collapse:collapse;" align="center" class="main" padding=0 spacing=0>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ $ const buttonTextStyle = {
main-table-style=mainTableStyle
content-link-style=contentLinkStyle
button-style=buttonStyle
show-button=true
button-text-style=buttonTextStyle
/>

Expand Down Expand Up @@ -100,6 +101,7 @@ $ const buttonTextStyle = {
main-table-style=featuredMainTableStyle
content-link-style=contentLinkStyle
button-style=buttonStyle
show-button=true
button-text-style=buttonTextStyle
/>

Expand Down

0 comments on commit 8a28728

Please sign in to comment.