@salesforcedevs/dx-components 1.3.279 → 1.3.280

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.279",
3
+ "version": "1.3.280",
4
4
  "description": "DX Lightning web components",
5
5
  "license": "MIT",
6
6
  "engines": {
@@ -46,5 +46,5 @@
46
46
  "volta": {
47
47
  "node": "16.19.1"
48
48
  },
49
- "gitHead": "b70fd3b3f6d1791b810f152f08dfe315cfaf0bd9"
49
+ "gitHead": "432edded557f66e65958e1dc04568eeb0cdc713d"
50
50
  }
@@ -27,5 +27,6 @@
27
27
  <img src={flourish} alt={flourishAlt} />
28
28
  </div>
29
29
  </div>
30
+ <slot name="cta"></slot>
30
31
  </div>
31
32
  </template>
@@ -5,6 +5,7 @@
5
5
  :host {
6
6
  --dx-c-heading-max-lines: 4;
7
7
  --dx-c-card-grid-max-width: 60px;
8
+ --dx-c-card-title-word-break: keep-all;
8
9
  }
9
10
 
10
11
  .card {
@@ -16,6 +17,11 @@
16
17
  cursor: default;
17
18
  }
18
19
 
20
+ /* Specificity of this rule is required to override default "base" card behavior */
21
+ .card.dx-card-base.not-clickable:hover {
22
+ box-shadow: var(--dx-g-box-shadow-sm); /* no shadow as if clickable */
23
+ }
24
+
19
25
  .image {
20
26
  width: 100%;
21
27
  height: 160px;
@@ -63,6 +69,7 @@
63
69
  height: fit-content;
64
70
  line-height: 24px;
65
71
  padding: 0 12px;
72
+ text-wrap: nowrap;
66
73
  }
67
74
 
68
75
  /* text section */
@@ -15,7 +15,7 @@ h3.dx-text-display-6 {
15
15
  font-size: var(--dx-c-card-title-font-size);
16
16
  line-height: var(--dx-c-card-title-line-height);
17
17
  letter-spacing: var(--dx-c-card-title-letter-spacing);
18
- word-break: break-word;
18
+ word-break: var(--dx-c-card-title-word-break, break-word);
19
19
  hyphens: auto;
20
20
  }
21
21
 
@@ -401,6 +401,7 @@ footer.signup-variant-no-signup {
401
401
  display: none;
402
402
  }
403
403
 
404
+ .content-container_top_large_no_signup .graphic-large,
404
405
  .graphic-large {
405
406
  background-size: 160%;
406
407
  background-position: right 50% bottom 0;