@salesforcedevs/dx-components 1.3.147 → 1.3.149

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.147",
3
+ "version": "1.3.149",
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": "c046874452685c28208a52392b494ad791c3f305"
43
+ "gitHead": "b9b13baff28c71df438686a0b302bcf7636a75f4"
44
44
  }
@@ -132,16 +132,26 @@
132
132
  border-color: var(--dx-c-button-primary-color-hover);
133
133
  }
134
134
 
135
- /* secondary */
135
+ /* secondary / quaternary */
136
136
 
137
137
  .button.variant_secondary {
138
- color: var(--dx-c-button-primary-color);
139
138
  background: var(--dx-c-button-background-color);
139
+ }
140
+
141
+ .button.variant_quaternary {
142
+ background: white;
143
+ }
144
+
145
+ .button.variant_secondary,
146
+ .button.variant_quaternary {
147
+ color: var(--dx-c-button-primary-color);
140
148
  border: 1px solid var(--dx-c-button-primary-color);
141
149
  }
142
150
 
143
151
  .button.variant_secondary:hover,
144
- :host([aria-expanded="true"]) .button.variant_secondary {
152
+ .button.variant_quaternary:hover,
153
+ :host([aria-expanded="true"]) .button.variant_secondary,
154
+ :host([aria-expanded="true"]) .button.variant_quaternary {
145
155
  background: var(--dx-c-button-secondary-color-hover);
146
156
  }
147
157
 
@@ -39,6 +39,11 @@ p {
39
39
  margin: 16px 0;
40
40
  }
41
41
 
42
+ .inline-button {
43
+ --dx-c-button-primary-color: var(--dx-g-blue-natural-40);
44
+ --dx-c-button-primary-color-hover: var(--dx-g-blue-natural-30);
45
+ }
46
+
42
47
  img {
43
48
  display: none;
44
49
  margin: 0;
@@ -18,6 +18,7 @@
18
18
  </dx-button>
19
19
 
20
20
  <dx-button
21
+ class="inline-button"
21
22
  if:false={hasLargeButton}
22
23
  variant="inline"
23
24
  inline-text-color={buttonColor}
@@ -63,7 +63,7 @@
63
63
  <dx-button
64
64
  if:true={ctaSecondaryLabel}
65
65
  href={ctaSecondaryHref}
66
- variant="secondary"
66
+ variant="quaternary"
67
67
  icon-symbol={ctaSecondarySymbol}
68
68
  target={ctaSecondaryTarget}
69
69
  size="large"