@rypen-dev/shared-components 5.2.19 → 5.2.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
|
@@ -631,6 +631,11 @@ small,
|
|
|
631
631
|
}
|
|
632
632
|
}
|
|
633
633
|
|
|
634
|
+
&.sale-price,
|
|
635
|
+
&.color-alert {
|
|
636
|
+
color: $alert !important;
|
|
637
|
+
}
|
|
638
|
+
|
|
634
639
|
.plus {
|
|
635
640
|
font-size: 1rem;
|
|
636
641
|
vertical-align: middle;
|
|
@@ -659,7 +664,7 @@ small,
|
|
|
659
664
|
.price {
|
|
660
665
|
position: relative;
|
|
661
666
|
font-size: 0.875rem;
|
|
662
|
-
color: $text-gray;
|
|
667
|
+
color: $text-gray !important;
|
|
663
668
|
font-weight: $body-weight-normal;
|
|
664
669
|
letter-spacing: 0;
|
|
665
670
|
text-decoration: line-through;
|
|
@@ -5,6 +5,10 @@
|
|
|
5
5
|
{{ address.Company }}
|
|
6
6
|
<br />
|
|
7
7
|
</template>
|
|
8
|
+
<template v-if="address.CareOf && includeCareOf && !separateContactInfo">
|
|
9
|
+
Attn: {{ address.CareOf }}
|
|
10
|
+
<br />
|
|
11
|
+
</template>
|
|
8
12
|
{{ address.Street }}<br v-if="address.Street" />
|
|
9
13
|
<template v-if="address.Street2">
|
|
10
14
|
{{ address.Street2 }}
|
|
@@ -49,6 +53,10 @@
|
|
|
49
53
|
type: Boolean,
|
|
50
54
|
default: false,
|
|
51
55
|
},
|
|
56
|
+
includeCareOf: {
|
|
57
|
+
type: Boolean,
|
|
58
|
+
default: false,
|
|
59
|
+
},
|
|
52
60
|
excludeName: {
|
|
53
61
|
type: Boolean,
|
|
54
62
|
default: false,
|