ng-easycommerce 0.0.539 → 0.0.541
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/README.md +4 -0
- package/bundles/ng-easycommerce.umd.js +3 -2
- package/bundles/ng-easycommerce.umd.js.map +1 -1
- package/bundles/ng-easycommerce.umd.min.js +1 -1
- package/bundles/ng-easycommerce.umd.min.js.map +1 -1
- package/esm2015/lib/classes/filters/DinamycsFilter.js +3 -2
- package/esm2015/lib/services/options.service.js +2 -2
- package/esm5/lib/classes/filters/DinamycsFilter.js +3 -2
- package/esm5/lib/services/options.service.js +2 -2
- package/fesm2015/ng-easycommerce.js +3 -2
- package/fesm2015/ng-easycommerce.js.map +1 -1
- package/fesm5/ng-easycommerce.js +3 -2
- package/fesm5/ng-easycommerce.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1059,7 +1059,7 @@
|
|
|
1059
1059
|
this.attributesApi = function () { return _this.shopApi() + '/attributes-list' + '?locale=' + _this.constants.getLocale(); };
|
|
1060
1060
|
this.attributesApi2 = function (filters) {
|
|
1061
1061
|
if (filters === void 0) { filters = ''; }
|
|
1062
|
-
return 'shop-api/' + _this.constants.getChannel() + '/product-search/' + '?locale=' + _this.constants.getLocale() + '&limit=1&page=1' + filters;
|
|
1062
|
+
return 'shop-api/' + _this.constants.getChannel() + '/product-search/attributes/' + '?locale=' + _this.constants.getLocale() + '&limit=1&page=1' + filters;
|
|
1063
1063
|
};
|
|
1064
1064
|
/**
|
|
1065
1065
|
* @public
|
|
@@ -1377,7 +1377,8 @@
|
|
|
1377
1377
|
code: (option.code + ' ' + value.name),
|
|
1378
1378
|
type: 'child',
|
|
1379
1379
|
value: value.code,
|
|
1380
|
-
selected: false
|
|
1380
|
+
selected: false,
|
|
1381
|
+
image: value.image
|
|
1381
1382
|
};
|
|
1382
1383
|
})
|
|
1383
1384
|
};
|