@ikas/storefront 0.0.30 → 0.0.31

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/build/index.es.js CHANGED
@@ -13660,7 +13660,8 @@ var IkasProductDetail = /** @class */ (function () {
13660
13660
  var newUrl = "/" + metaData.slug + "-" + this.selectedVariantValues
13661
13661
  .map(function (vv) { return vv.slug; })
13662
13662
  .join("-");
13663
- (_a = this.router) === null || _a === void 0 ? void 0 : _a.replace(newUrl, undefined, { shallow: true });
13663
+ var isShallow = process.env.NODE_ENV !== "production";
13664
+ (_a = this.router) === null || _a === void 0 ? void 0 : _a.replace(newUrl, undefined, { shallow: isShallow });
13664
13665
  };
13665
13666
  return IkasProductDetail;
13666
13667
  }());
package/build/index.js CHANGED
@@ -13646,7 +13646,8 @@ var IkasProductDetail = /** @class */ (function () {
13646
13646
  var newUrl = "/" + metaData.slug + "-" + this.selectedVariantValues
13647
13647
  .map(function (vv) { return vv.slug; })
13648
13648
  .join("-");
13649
- (_a = this.router) === null || _a === void 0 ? void 0 : _a.replace(newUrl, undefined, { shallow: true });
13649
+ var isShallow = process.env.NODE_ENV !== "production";
13650
+ (_a = this.router) === null || _a === void 0 ? void 0 : _a.replace(newUrl, undefined, { shallow: isShallow });
13650
13651
  };
13651
13652
  return IkasProductDetail;
13652
13653
  }());
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ikas/storefront",
3
- "version": "0.0.30",
3
+ "version": "0.0.31",
4
4
  "main": "./build/index.js",
5
5
  "module": "./build/index.es.js",
6
6
  "author": "Umut Ozan Yıldırım",