@salesforcedevs/dx-components 1.3.20 → 1.3.21

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.20",
3
+ "version": "1.3.21",
4
4
  "description": "DX Lightning web components",
5
5
  "license": "MIT",
6
6
  "engines": {
@@ -38,5 +38,5 @@
38
38
  "eventsourcemock": "^2.0.0",
39
39
  "luxon": "^3.1.0"
40
40
  },
41
- "gitHead": "fd75928b1271710415ebcde0ae715f7442bc0a99"
41
+ "gitHead": "a36eb5e6dacd34a36d56483965a7b74aba032c63"
42
42
  }
@@ -39,7 +39,7 @@
39
39
  </div>
40
40
  <div class="header_l2">
41
41
  <div class="header_l2_group header_l2_group-title">
42
- <a href="/" class="home-link">
42
+ <a href="/" class="home-link" if:true={isValidSubtitle}>
43
43
  <dx-icon
44
44
  class="brand-icon"
45
45
  if:true={isValidBrand}
@@ -14,4 +14,8 @@ export default class Header extends HeaderBase {
14
14
  protected mobileBreakpoint(): string {
15
15
  return "768px";
16
16
  }
17
+
18
+ get isValidSubtitle() {
19
+ return this.isValidBrand || this.subtitle;
20
+ }
17
21
  }
@@ -197,8 +197,8 @@ li.coveo-dynamic-facet-breadcrumb-value-list-item {
197
197
 
198
198
  .CoveoSort.coveo-selected,
199
199
  .CoveoSort.coveo-selected:hover {
200
- color: var(--dx-g-blue-vibrant-50);
201
- border-bottom-color: var(--dx-g-blue-vibrant-50);
200
+ color: var(--dx-g-blue-vibrant-40);
201
+ border-bottom-color: var(--dx-g-blue-vibrant-40);
202
202
  }
203
203
 
204
204
  .CoveoBreadcrumb {
@@ -1,10 +1,10 @@
1
1
  @import "dxHelpers/reset";
2
2
 
3
3
  :host {
4
- --dx-c-button-custom-color: var(--dx-g-blue-vibrant-50);
4
+ --dx-c-button-custom-color: var(--dx-g-blue-vibrant-40);
5
5
  --dx-c-button-custom-background: transparent;
6
6
  --dx-c-button-custom-border: 1px solid transparent;
7
- --dx-c-button-custom-color-hover: var(--dx-g-blue-vibrant-50);
7
+ --dx-c-button-custom-color-hover: var(--dx-g-blue-vibrant-40);
8
8
  --dx-c-button-custom-background-hover: var(--dx-g-cloud-blue-vibrant-90);
9
9
  --dx-c-button-custom-border-hover: var(--dx-g-cloud-blue-vibrant-90);
10
10
  --dx-c-slot-empty-width: max-content;