@salesforcedevs/mrkt-components 0.41.0-alpha.14 → 0.41.0-alpha.15

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/mrkt-components",
3
- "version": "0.41.0-alpha.14",
3
+ "version": "0.41.0-alpha.15",
4
4
  "description": "Marketing Lightning web components for DSC",
5
5
  "license": "MIT",
6
6
  "engines": {
@@ -5,7 +5,7 @@
5
5
  <h4 class="dx-text-heading-4">{subtitle}</h4>
6
6
  <p class="content-body">{body}</p>
7
7
  <p class="content-info dx-text-heading-6">{info}</p>
8
- <dx-button>{buttonLabel}</dx-button>
8
+ <dx-button href={buttonHref}>{buttonLabel}</dx-button>
9
9
  </div>
10
10
  <div class="image-container">
11
11
  <img src={imgSrc} alt={imgAlt} />
@@ -6,6 +6,7 @@ export default class TdxSection extends LightningElement {
6
6
  @api body!: string;
7
7
  @api info!: string;
8
8
  @api buttonLabel!: string;
9
+ @api buttonHref!: string;
9
10
  @api imgSrc!: string;
10
11
  @api imgAlt!: string;
11
12
  }