@nuskin/product-components 3.6.1 → 3.6.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/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [3.6.2](https://code.tls.nuskin.io/ns-am/ux/product-components/compare/v3.6.1...v3.6.2) (2023-06-02)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Fix
|
|
5
|
+
|
|
6
|
+
* pdp links, card alignment (CX16-8734) ([525282c](https://code.tls.nuskin.io/ns-am/ux/product-components/commit/525282c13660cdcaf94b69ee87e677a6388a3d7b))
|
|
7
|
+
|
|
1
8
|
## [3.6.1](https://code.tls.nuskin.io/ns-am/ux/product-components/compare/v3.6.0...v3.6.1) (2023-06-01)
|
|
2
9
|
|
|
3
10
|
|
|
@@ -60,7 +60,9 @@
|
|
|
60
60
|
<h6 class="subhead-s">
|
|
61
61
|
{{ product.primaryBrand }}
|
|
62
62
|
</h6>
|
|
63
|
-
<h2 class="paragraph-l
|
|
63
|
+
<h2 class="paragraph-l product-title">
|
|
64
|
+
{{ product.title }}
|
|
65
|
+
</h2>
|
|
64
66
|
</a>
|
|
65
67
|
<h3 class="heading-3 price-heading">
|
|
66
68
|
<Price
|
|
@@ -1022,4 +1024,8 @@ export default {
|
|
|
1022
1024
|
}
|
|
1023
1025
|
}
|
|
1024
1026
|
}
|
|
1027
|
+
|
|
1028
|
+
.product-title {
|
|
1029
|
+
height: 54px;
|
|
1030
|
+
}
|
|
1025
1031
|
</style>
|
package/cyclonedx-npm-yarn.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"bomFormat": "CycloneDX",
|
|
3
3
|
"specVersion": "1.4",
|
|
4
|
-
"serialNumber": "urn:uuid:
|
|
4
|
+
"serialNumber": "urn:uuid:9078535d-8507-46c3-8621-d83aacef53d2",
|
|
5
5
|
"version": 1,
|
|
6
6
|
"metadata": {
|
|
7
|
-
"timestamp": "2023-06-
|
|
7
|
+
"timestamp": "2023-06-02T22:19:17Z",
|
|
8
8
|
"tools": [
|
|
9
9
|
{
|
|
10
10
|
"vendor": "GitLab",
|
package/mixins/globalHelper.js
CHANGED
|
@@ -29,10 +29,10 @@ export default {
|
|
|
29
29
|
const isNewPdp =
|
|
30
30
|
typeof window.isNewPdp !== "undefined" ? window.isNewPdp : false;
|
|
31
31
|
|
|
32
|
-
let pdpLink =
|
|
32
|
+
let pdpLink = `/content/nuskin/${language}_${market}/products/product.${sku}.html`;
|
|
33
33
|
|
|
34
34
|
if (isNewPdp) {
|
|
35
|
-
pdpLink =
|
|
35
|
+
pdpLink = `/catalog/${market}/${language}/product/${slug}`;
|
|
36
36
|
}
|
|
37
37
|
|
|
38
38
|
return pdpLink;
|