@211la/search-react 0.12.1 → 0.13.0

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.
Files changed (2) hide show
  1. package/dist/index.js +15 -6
  2. package/package.json +3 -3
package/dist/index.js CHANGED
@@ -70,7 +70,7 @@ var connectExactStringFieldSearch = makeConnectFieldSearch(true, 'string');
70
70
  */
71
71
  var connectExactNumberFieldSearch = makeConnectFieldSearch(true, 'number');
72
72
 
73
- /*! *****************************************************************************
73
+ /******************************************************************************
74
74
  Copyright (c) Microsoft Corporation.
75
75
 
76
76
  Permission to use, copy, modify, and/or distribute this software for any
@@ -108,11 +108,20 @@ function __rest(s, e) {
108
108
  return t;
109
109
  }
110
110
 
111
- function __spreadArray(to, from) {
112
- for (var i = 0, il = from.length, j = to.length; i < il; i++, j++)
113
- to[j] = from[i];
114
- return to;
115
- }
111
+ function __spreadArray(to, from, pack) {
112
+ if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
113
+ if (ar || !(i in from)) {
114
+ if (!ar) ar = Array.prototype.slice.call(from, 0, i);
115
+ ar[i] = from[i];
116
+ }
117
+ }
118
+ return to.concat(ar || Array.prototype.slice.call(from));
119
+ }
120
+
121
+ typeof SuppressedError === "function" ? SuppressedError : function (error, suppressed, message) {
122
+ var e = new Error(message);
123
+ return e.name = "SuppressedError", e.error = error, e.suppressed = suppressed, e;
124
+ };
116
125
 
117
126
  /**
118
127
  * connectGeolocation helps to make components that specify proximity to the given location.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@211la/search-react",
3
- "version": "0.12.1",
3
+ "version": "0.13.0",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/types/index.d.ts",
6
6
  "files": [
@@ -27,13 +27,13 @@
27
27
  "rollup": "^2.48.0",
28
28
  "rollup-plugin-peer-deps-external": "^2.2.4",
29
29
  "rollup-plugin-terser": "^7.0.2",
30
- "rollup-plugin-typescript2": "^0.30.0",
30
+ "rollup-plugin-typescript2": "^0.32.1",
31
31
  "ts-loader": "^8.0.12",
32
32
  "tslib": "^2.3.0",
33
33
  "typescript": "^4.0.5"
34
34
  },
35
35
  "peerDependencies": {
36
- "@211la/search-client": "^0.12.0",
36
+ "@211la/search-client": "^0.13.0",
37
37
  "react": ">=16.8.0",
38
38
  "react-dom": ">=16.8.0",
39
39
  "react-instantsearch-core": ">=6.11.1",