@redus/georedus-ui 0.23.0 → 0.23.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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @orioro/template-react
2
2
 
3
+ ## 0.23.1
4
+
5
+ ### Patch Changes
6
+
7
+ - remove direct reference to window.fetch to enable usage in ssr
8
+
3
9
  ## 0.23.0
4
10
 
5
11
  ### Minor Changes
package/dist/main.js CHANGED
@@ -9410,7 +9410,7 @@ var buildStateById = function buildStateById(data, featureId) {
9410
9410
  }
9411
9411
  return result;
9412
9412
  };
9413
- var memoFetch = makeMemoFetch(window.fetch, function (res) {
9413
+ var memoFetch = makeMemoFetch(fetch, function (res) {
9414
9414
  return res.text().then(function (text) {
9415
9415
  return parseResponse(dsvFormat(',').parse(text));
9416
9416
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@redus/georedus-ui",
3
- "version": "0.23.0",
3
+ "version": "0.23.1",
4
4
  "packageManager": "yarn@4.0.2",
5
5
  "type": "module",
6
6
  "main": "dist/main.js",