react-instantsearch-nextjs 0.4.5 → 0.4.7

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/README.md +2 -2
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -39,7 +39,7 @@ To render the component in the browser and allow users to interact with it, incl
39
39
 
40
40
  ```diff
41
41
  +'use client';
42
- import algoliasearch from 'algoliasearch/lite';
42
+ import { liteClient as algoliasearch } from 'algoliasearch/lite';
43
43
  import {
44
44
  InstantSearch,
45
45
  SearchBox,
@@ -62,7 +62,7 @@ Import the `<InstantSearchNext>` component from the `react-instantsearch-nextjs`
62
62
 
63
63
  ```diff
64
64
  'use client';
65
- import algoliasearch from 'algoliasearch/lite';
65
+ import { liteClient as algoliasearch } from 'algoliasearch/lite';
66
66
  import {
67
67
  - InstantSearch,
68
68
  SearchBox,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-instantsearch-nextjs",
3
- "version": "0.4.5",
3
+ "version": "0.4.7",
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.78.0",
52
+ "instantsearch.js": "4.78.2",
53
53
  "next": "15.1.4",
54
- "react-instantsearch-core": "7.15.4"
54
+ "react-instantsearch-core": "7.15.6"
55
55
  },
56
56
  "peerDependencies": {
57
57
  "next": ">= 13.4 < 16",
58
58
  "react-instantsearch": ">= 7.1.0 < 8"
59
59
  },
60
- "gitHead": "f82576aaaec5174fe28c0cf68ebe11db18c6936e"
60
+ "gitHead": "f0df58b3039f06b840d2b1174e9d53baae46daeb"
61
61
  }