@salesforcedevs/dx-components 1.3.136 → 1.3.137
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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforcedevs/dx-components",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.137",
|
|
4
4
|
"description": "DX Lightning web components",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"engines": {
|
|
@@ -40,5 +40,5 @@
|
|
|
40
40
|
"eventsourcemock": "^2.0.0",
|
|
41
41
|
"luxon": "^3.1.0"
|
|
42
42
|
},
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "c74524575b0d4cb1cd72878d5feedf06604619a0"
|
|
44
44
|
}
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
{title}
|
|
12
12
|
</h3>
|
|
13
13
|
<div class="content-body-container">
|
|
14
|
-
<img if:true={hasQuote} src=
|
|
14
|
+
<img if:true={hasQuote} src={quoteGraphicSrc} alt="" />
|
|
15
15
|
<div class={quoteContentStyle}>
|
|
16
16
|
<p class={contentBodyStyle}>{body}</p>
|
|
17
17
|
<p if:true={footNote} class="foot-note dx-text-display-7">
|
|
@@ -11,6 +11,7 @@ export default class SectionBanner extends LightningElement {
|
|
|
11
11
|
@api hideTopGraphic = false;
|
|
12
12
|
@api backgroundColor = "indigo-vibrant-20";
|
|
13
13
|
@api hasQuote = false;
|
|
14
|
+
@api quoteGraphicSrc?: string;
|
|
14
15
|
|
|
15
16
|
get containerStyle() {
|
|
16
17
|
return cx("container", !this.hideTopGraphic && "top-margin");
|