@salesforcedevs/dx-components 1.3.398-docs → 1.3.398-docs-2

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.398-docs",
3
+ "version": "1.3.398-docs-2",
4
4
  "description": "DX Lightning web components",
5
5
  "license": "MIT",
6
6
  "engines": {
@@ -6,7 +6,7 @@
6
6
  src={imgSrc}
7
7
  class="image dx-card-base_image"
8
8
  />
9
- <div part="container">
9
+ <template if:true={isVisible} part="container">
10
10
  <div
11
11
  class="dx-card-base_section-vertical dx-card-base_column card_section-text"
12
12
  part="content"
@@ -34,6 +34,6 @@
34
34
  <div class="dx-card-base_section-vertical dx-card-base_ctas">
35
35
  <slot onslotchange={onSlotChange}></slot>
36
36
  </div>
37
- </div>
37
+ </template>
38
38
  </a>
39
39
  </template>
@@ -14,6 +14,7 @@ export default class CardDocs extends LightningElement {
14
14
  @api header!: string;
15
15
  @api target?: string | null = null;
16
16
  @api showMobileImg?: boolean = false;
17
+ private isVisible?: boolean = true;
17
18
 
18
19
  private isLinkHovered: boolean = false;
19
20