@nuskin/product-components 3.18.0-td-341.2 → 3.18.0-td-1000.1
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/.releaserc +1 -1
- package/components/NsProductList.vue +4 -7
- package/docs/CHANGELOG.md +1 -1
- package/gl-sbom-npm-yarn.cdx.json +375 -2444
- package/mixins/NsProductMixin.js +7 -34
- package/package.json +4 -4
- package/services/EQPromotionService.js +5 -1
- package/services/NsProductAppService.js +6 -37
- package/services/NsProductDataService.js +4 -5
package/.releaserc
CHANGED
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
|
|
47
47
|
<script>
|
|
48
48
|
import { NsExpressiveLink, NsIcon, NsSpinner } from "@nuskin/design-components";
|
|
49
|
-
import { StringService
|
|
49
|
+
import { StringService } from "@nuskin/ns-util";
|
|
50
50
|
import { fromJsonString } from "@nuskin/ns-common-lib";
|
|
51
51
|
|
|
52
52
|
import NsProductCard from "./NsProductCard.vue";
|
|
@@ -190,12 +190,9 @@ export default {
|
|
|
190
190
|
await this.$nextTick();
|
|
191
191
|
|
|
192
192
|
try {
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
} else {
|
|
197
|
-
commonStrings = await StringService.getStrings(commonStringKeys);
|
|
198
|
-
}
|
|
193
|
+
const commonStrings = await StringService.getStrings(
|
|
194
|
+
commonStringKeys
|
|
195
|
+
);
|
|
199
196
|
if (commonStrings && commonStrings.loadMore) {
|
|
200
197
|
this.loadMoreText = commonStrings.loadMore;
|
|
201
198
|
}
|
package/docs/CHANGELOG.md
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
# [3.18.0-td-
|
|
1
|
+
# [3.18.0-td-1000.1](https://code.tls.nuskin.io/ns-am/ux/product-components/compare/v3.17.22...v3.18.0-td-1000.1) (2025-03-14)
|