react-instantsearch-nextjs 0.2.5 → 0.3.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/dist/cjs/InitializePromise.js +29 -10
- package/dist/cjs/InstantSearchNext.js +5 -3
- package/dist/cjs/TriggerSearch.js +3 -2
- package/dist/es/InitializePromise.d.ts +10 -1
- package/dist/es/InitializePromise.js +30 -10
- package/dist/es/InstantSearchNext.js +5 -3
- package/dist/es/TriggerSearch.js +3 -2
- package/package.json +4 -4
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
-
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
4
3
|
Object.defineProperty(exports, "__esModule", {
|
|
5
4
|
value: true
|
|
6
5
|
});
|
|
@@ -13,8 +12,15 @@ var _reactInstantsearchCore = require("react-instantsearch-core");
|
|
|
13
12
|
var _htmlEscape = require("./htmlEscape");
|
|
14
13
|
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
15
14
|
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
16
|
-
|
|
17
|
-
function
|
|
15
|
+
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
16
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
17
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
18
|
+
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
19
|
+
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
|
|
20
|
+
function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
|
|
21
|
+
var _ref3 = /*#__PURE__*/_react.default.createElement(_react.default.Fragment, null);
|
|
22
|
+
function InitializePromise(_ref) {
|
|
23
|
+
var nonce = _ref.nonce;
|
|
18
24
|
var _search = (0, _reactInstantsearchCore.useInstantSearchContext)();
|
|
19
25
|
var waitForResultsRef = (0, _reactInstantsearchCore.useRSCContext)();
|
|
20
26
|
var insertHTML = (0, _react.useContext)(_navigation.ServerInsertedHTMLContext) || function () {
|
|
@@ -24,19 +30,31 @@ function InitializePromise() {
|
|
|
24
30
|
// Extract search parameters from the search client to use them
|
|
25
31
|
// later during hydration.
|
|
26
32
|
var requestParamsList;
|
|
27
|
-
_search.mainHelper.setClient({
|
|
33
|
+
_search.mainHelper.setClient(_objectSpread(_objectSpread({}, _search.mainHelper.getClient()), {}, {
|
|
28
34
|
search: function search(queries) {
|
|
29
|
-
requestParamsList = queries.map(function (
|
|
30
|
-
var params =
|
|
35
|
+
requestParamsList = queries.map(function (_ref2) {
|
|
36
|
+
var params = _ref2.params;
|
|
31
37
|
return params;
|
|
32
38
|
});
|
|
33
39
|
return _search.client.search(queries);
|
|
34
40
|
}
|
|
35
|
-
});
|
|
41
|
+
}));
|
|
42
|
+
(0, _utils.resetWidgetId)();
|
|
36
43
|
var waitForResults = function waitForResults() {
|
|
37
44
|
return new Promise(function (resolve) {
|
|
38
|
-
|
|
39
|
-
|
|
45
|
+
var searchReceived = false;
|
|
46
|
+
var recommendReceived = false;
|
|
47
|
+
_search.mainHelper.derivedHelpers[0].once('result', function () {
|
|
48
|
+
searchReceived = true;
|
|
49
|
+
if (!_search._hasRecommendWidget || recommendReceived) {
|
|
50
|
+
resolve();
|
|
51
|
+
}
|
|
52
|
+
});
|
|
53
|
+
_search.mainHelper.derivedHelpers[0].once('recommend:result', function () {
|
|
54
|
+
recommendReceived = true;
|
|
55
|
+
if (!_search._hasSearchWidget || searchReceived) {
|
|
56
|
+
resolve();
|
|
57
|
+
}
|
|
40
58
|
});
|
|
41
59
|
});
|
|
42
60
|
};
|
|
@@ -45,10 +63,11 @@ function InitializePromise() {
|
|
|
45
63
|
var results = (0, _server.getInitialResults)(_search.mainIndex, requestParamsList);
|
|
46
64
|
insertHTML(function () {
|
|
47
65
|
if (inserted) {
|
|
48
|
-
return
|
|
66
|
+
return _ref3;
|
|
49
67
|
}
|
|
50
68
|
inserted = true;
|
|
51
69
|
return /*#__PURE__*/_react.default.createElement("script", {
|
|
70
|
+
nonce: nonce,
|
|
52
71
|
dangerouslySetInnerHTML: {
|
|
53
72
|
__html: "window[Symbol.for(\"InstantSearchInitialResults\")] = ".concat((0, _htmlEscape.htmlEscapeJsonString)(JSON.stringify(results)))
|
|
54
73
|
}
|
|
@@ -6,6 +6,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
6
6
|
});
|
|
7
7
|
exports.InstantSearchNext = InstantSearchNext;
|
|
8
8
|
var _utils = require("instantsearch.js/cjs/lib/utils");
|
|
9
|
+
var _headers = require("next/headers");
|
|
9
10
|
var _react = _interopRequireWildcard(require("react"));
|
|
10
11
|
var _reactInstantsearchCore = require("react-instantsearch-core");
|
|
11
12
|
var _InitializePromise = require("./InitializePromise");
|
|
@@ -19,8 +20,7 @@ function _extends() { _extends = Object.assign ? Object.assign.bind() : function
|
|
|
19
20
|
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
20
21
|
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
21
22
|
var InstantSearchInitialResults = Symbol.for('InstantSearchInitialResults');
|
|
22
|
-
var _ref2 = /*#__PURE__*/_react.default.createElement(
|
|
23
|
-
var _ref3 = /*#__PURE__*/_react.default.createElement(_TriggerSearch.TriggerSearch, null);
|
|
23
|
+
var _ref2 = /*#__PURE__*/_react.default.createElement(_TriggerSearch.TriggerSearch, null);
|
|
24
24
|
function InstantSearchNext(_ref) {
|
|
25
25
|
var children = _ref.children,
|
|
26
26
|
passedRouting = _ref.routing,
|
|
@@ -45,5 +45,7 @@ function InstantSearchNext(_ref) {
|
|
|
45
45
|
initialResults: initialResults
|
|
46
46
|
}, /*#__PURE__*/_react.default.createElement(_reactInstantsearchCore.InstantSearch, _extends({}, instantSearchProps, {
|
|
47
47
|
routing: routing
|
|
48
|
-
}), !initialResults &&
|
|
48
|
+
}), !initialResults && /*#__PURE__*/_react.default.createElement(_InitializePromise.InitializePromise, {
|
|
49
|
+
nonce: (0, _headers.headers)().get('x-nonce') || undefined
|
|
50
|
+
}), children, !initialResults && _ref2)));
|
|
49
51
|
}
|
|
@@ -10,8 +10,9 @@ function TriggerSearch() {
|
|
|
10
10
|
var instantsearch = (0, _reactInstantsearchCore.useInstantSearchContext)();
|
|
11
11
|
var waitForResultsRef = (0, _reactInstantsearchCore.useRSCContext)();
|
|
12
12
|
if ((waitForResultsRef === null || waitForResultsRef === void 0 ? void 0 : (_waitForResultsRef$cu = waitForResultsRef.current) === null || _waitForResultsRef$cu === void 0 ? void 0 : _waitForResultsRef$cu.status) === 'pending') {
|
|
13
|
-
var _instantsearch$mainHe;
|
|
14
|
-
(_instantsearch$mainHe = instantsearch.mainHelper) === null || _instantsearch$mainHe === void 0 ? void 0 : _instantsearch$mainHe.searchOnlyWithDerivedHelpers();
|
|
13
|
+
var _instantsearch$mainHe, _instantsearch$mainHe2;
|
|
14
|
+
instantsearch._hasSearchWidget && ((_instantsearch$mainHe = instantsearch.mainHelper) === null || _instantsearch$mainHe === void 0 ? void 0 : _instantsearch$mainHe.searchOnlyWithDerivedHelpers());
|
|
15
|
+
instantsearch._hasRecommendWidget && ((_instantsearch$mainHe2 = instantsearch.mainHelper) === null || _instantsearch$mainHe2 === void 0 ? void 0 : _instantsearch$mainHe2.recommend());
|
|
15
16
|
}
|
|
16
17
|
return null;
|
|
17
18
|
}
|
|
@@ -1 +1,10 @@
|
|
|
1
|
-
|
|
1
|
+
type InitializePromiseProps = {
|
|
2
|
+
/**
|
|
3
|
+
* The nonce to use for the injected script tag.
|
|
4
|
+
*
|
|
5
|
+
* @see https://nextjs.org/docs/app/building-your-application/configuring/content-security-policy#nonces
|
|
6
|
+
*/
|
|
7
|
+
nonce?: string;
|
|
8
|
+
};
|
|
9
|
+
export declare function InitializePromise({ nonce }: InitializePromiseProps): null;
|
|
10
|
+
export {};
|
|
@@ -1,11 +1,18 @@
|
|
|
1
|
+
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
2
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
3
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
4
|
+
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
5
|
+
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
|
|
6
|
+
function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
|
|
1
7
|
import { getInitialResults } from "instantsearch.js/es/lib/server.js";
|
|
2
|
-
import { walkIndex } from "instantsearch.js/es/lib/utils/index.js";
|
|
8
|
+
import { resetWidgetId, walkIndex } from "instantsearch.js/es/lib/utils/index.js";
|
|
3
9
|
import { ServerInsertedHTMLContext } from "next/navigation.js";
|
|
4
10
|
import React, { useContext } from 'react';
|
|
5
11
|
import { useInstantSearchContext, useRSCContext, wrapPromiseWithState } from 'react-instantsearch-core';
|
|
6
12
|
import { htmlEscapeJsonString } from "./htmlEscape.js";
|
|
7
|
-
var
|
|
8
|
-
export function InitializePromise() {
|
|
13
|
+
var _ref3 = /*#__PURE__*/React.createElement(React.Fragment, null);
|
|
14
|
+
export function InitializePromise(_ref) {
|
|
15
|
+
var nonce = _ref.nonce;
|
|
9
16
|
var _search = useInstantSearchContext();
|
|
10
17
|
var waitForResultsRef = useRSCContext();
|
|
11
18
|
var insertHTML = useContext(ServerInsertedHTMLContext) || function () {
|
|
@@ -15,19 +22,31 @@ export function InitializePromise() {
|
|
|
15
22
|
// Extract search parameters from the search client to use them
|
|
16
23
|
// later during hydration.
|
|
17
24
|
var requestParamsList;
|
|
18
|
-
_search.mainHelper.setClient({
|
|
25
|
+
_search.mainHelper.setClient(_objectSpread(_objectSpread({}, _search.mainHelper.getClient()), {}, {
|
|
19
26
|
search: function search(queries) {
|
|
20
|
-
requestParamsList = queries.map(function (
|
|
21
|
-
var params =
|
|
27
|
+
requestParamsList = queries.map(function (_ref2) {
|
|
28
|
+
var params = _ref2.params;
|
|
22
29
|
return params;
|
|
23
30
|
});
|
|
24
31
|
return _search.client.search(queries);
|
|
25
32
|
}
|
|
26
|
-
});
|
|
33
|
+
}));
|
|
34
|
+
resetWidgetId();
|
|
27
35
|
var waitForResults = function waitForResults() {
|
|
28
36
|
return new Promise(function (resolve) {
|
|
29
|
-
|
|
30
|
-
|
|
37
|
+
var searchReceived = false;
|
|
38
|
+
var recommendReceived = false;
|
|
39
|
+
_search.mainHelper.derivedHelpers[0].once('result', function () {
|
|
40
|
+
searchReceived = true;
|
|
41
|
+
if (!_search._hasRecommendWidget || recommendReceived) {
|
|
42
|
+
resolve();
|
|
43
|
+
}
|
|
44
|
+
});
|
|
45
|
+
_search.mainHelper.derivedHelpers[0].once('recommend:result', function () {
|
|
46
|
+
recommendReceived = true;
|
|
47
|
+
if (!_search._hasSearchWidget || searchReceived) {
|
|
48
|
+
resolve();
|
|
49
|
+
}
|
|
31
50
|
});
|
|
32
51
|
});
|
|
33
52
|
};
|
|
@@ -36,10 +55,11 @@ export function InitializePromise() {
|
|
|
36
55
|
var results = getInitialResults(_search.mainIndex, requestParamsList);
|
|
37
56
|
insertHTML(function () {
|
|
38
57
|
if (inserted) {
|
|
39
|
-
return
|
|
58
|
+
return _ref3;
|
|
40
59
|
}
|
|
41
60
|
inserted = true;
|
|
42
61
|
return /*#__PURE__*/React.createElement("script", {
|
|
62
|
+
nonce: nonce,
|
|
43
63
|
dangerouslySetInnerHTML: {
|
|
44
64
|
__html: "window[Symbol.for(\"InstantSearchInitialResults\")] = ".concat(htmlEscapeJsonString(JSON.stringify(results)))
|
|
45
65
|
}
|
|
@@ -3,6 +3,7 @@ function _extends() { _extends = Object.assign ? Object.assign.bind() : function
|
|
|
3
3
|
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
4
4
|
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
5
5
|
import { safelyRunOnBrowser } from "instantsearch.js/es/lib/utils/index.js";
|
|
6
|
+
import { headers } from "next/headers.js";
|
|
6
7
|
import React, { useEffect, useRef } from 'react';
|
|
7
8
|
import { InstantSearch, InstantSearchRSCContext, InstantSearchSSRProvider } from 'react-instantsearch-core';
|
|
8
9
|
import { InitializePromise } from "./InitializePromise.js";
|
|
@@ -10,8 +11,7 @@ import { TriggerSearch } from "./TriggerSearch.js";
|
|
|
10
11
|
import { useInstantSearchRouting } from "./useInstantSearchRouting.js";
|
|
11
12
|
import { warn } from "./warn.js";
|
|
12
13
|
var InstantSearchInitialResults = Symbol.for('InstantSearchInitialResults');
|
|
13
|
-
var _ref2 = /*#__PURE__*/React.createElement(
|
|
14
|
-
var _ref3 = /*#__PURE__*/React.createElement(TriggerSearch, null);
|
|
14
|
+
var _ref2 = /*#__PURE__*/React.createElement(TriggerSearch, null);
|
|
15
15
|
export function InstantSearchNext(_ref) {
|
|
16
16
|
var children = _ref.children,
|
|
17
17
|
passedRouting = _ref.routing,
|
|
@@ -36,5 +36,7 @@ export function InstantSearchNext(_ref) {
|
|
|
36
36
|
initialResults: initialResults
|
|
37
37
|
}, /*#__PURE__*/React.createElement(InstantSearch, _extends({}, instantSearchProps, {
|
|
38
38
|
routing: routing
|
|
39
|
-
}), !initialResults &&
|
|
39
|
+
}), !initialResults && /*#__PURE__*/React.createElement(InitializePromise, {
|
|
40
|
+
nonce: headers().get('x-nonce') || undefined
|
|
41
|
+
}), children, !initialResults && _ref2)));
|
|
40
42
|
}
|
package/dist/es/TriggerSearch.js
CHANGED
|
@@ -4,8 +4,9 @@ export function TriggerSearch() {
|
|
|
4
4
|
var instantsearch = useInstantSearchContext();
|
|
5
5
|
var waitForResultsRef = useRSCContext();
|
|
6
6
|
if ((waitForResultsRef === null || waitForResultsRef === void 0 ? void 0 : (_waitForResultsRef$cu = waitForResultsRef.current) === null || _waitForResultsRef$cu === void 0 ? void 0 : _waitForResultsRef$cu.status) === 'pending') {
|
|
7
|
-
var _instantsearch$mainHe;
|
|
8
|
-
(_instantsearch$mainHe = instantsearch.mainHelper) === null || _instantsearch$mainHe === void 0 ? void 0 : _instantsearch$mainHe.searchOnlyWithDerivedHelpers();
|
|
7
|
+
var _instantsearch$mainHe, _instantsearch$mainHe2;
|
|
8
|
+
instantsearch._hasSearchWidget && ((_instantsearch$mainHe = instantsearch.mainHelper) === null || _instantsearch$mainHe === void 0 ? void 0 : _instantsearch$mainHe.searchOnlyWithDerivedHelpers());
|
|
9
|
+
instantsearch._hasRecommendWidget && ((_instantsearch$mainHe2 = instantsearch.mainHelper) === null || _instantsearch$mainHe2 === void 0 ? void 0 : _instantsearch$mainHe2.recommend());
|
|
9
10
|
}
|
|
10
11
|
return null;
|
|
11
12
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-instantsearch-nextjs",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"description": "React InstantSearch SSR utilities for Next.js",
|
|
5
5
|
"types": "dist/es/index.d.ts",
|
|
6
6
|
"main": "dist/cjs/index.js",
|
|
@@ -49,13 +49,13 @@
|
|
|
49
49
|
"watch:es": "yarn --silent build:es:base --watch"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
|
-
"instantsearch.js": "4.
|
|
52
|
+
"instantsearch.js": "4.71.0",
|
|
53
53
|
"next": "13.5.1",
|
|
54
|
-
"react-instantsearch-core": "7.
|
|
54
|
+
"react-instantsearch-core": "7.11.0"
|
|
55
55
|
},
|
|
56
56
|
"peerDependencies": {
|
|
57
57
|
"next": ">= 13.4 && < 15",
|
|
58
58
|
"react-instantsearch": ">= 7.1.0 && < 8"
|
|
59
59
|
},
|
|
60
|
-
"gitHead": "
|
|
60
|
+
"gitHead": "3707501a19e582e8263a3ae5a9d51ff3f5263361"
|
|
61
61
|
}
|