@coveo/headless-react 2.9.9 → 2.9.10
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/README.md +1 -3
- package/package.json +15 -15
package/README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
---
|
|
2
2
|
title: Home
|
|
3
3
|
---
|
|
4
|
-
# Use the Headless React library for Server Side Rendering
|
|
5
4
|
|
|
5
|
+
# Use the Headless React library for Server Side Rendering
|
|
6
6
|
|
|
7
7
|
`@coveo/headless-react` provides React utilities for server-side rendering with headless controllers. This package includes several sub-packages:
|
|
8
8
|
|
|
@@ -11,8 +11,6 @@ title: Home
|
|
|
11
11
|
- `@coveo/headless-react/ssr-next`: For future breaking changes and the latest features related to SSR with React (experimental, subject to change).
|
|
12
12
|
- `@coveo/headless-react/ssr-commerce-next`: For future breaking changes and the latest features for SSR commerce storefronts (experimental, subject to change).
|
|
13
13
|
|
|
14
|
-
|
|
15
|
-
|
|
16
14
|
## Learn more
|
|
17
15
|
|
|
18
16
|
- Check out our [Documentation for SSR Search](https://docs.coveo.com/en/headless/latest/reference/documents/usage/server-side-rendering/implement-server-side-rendering.html) and refer to [samples/headless-ssr](https://github.com/coveo/ui-kit/tree/main/samples/headless-ssr) for examples.
|
package/package.json
CHANGED
|
@@ -1,20 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@coveo/headless-react",
|
|
3
|
-
"version": "2.9.
|
|
3
|
+
"version": "2.9.10",
|
|
4
4
|
"description": "React utilities for SSR (Server Side Rendering) with headless",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"headless",
|
|
7
|
+
"nextjs",
|
|
8
|
+
"react",
|
|
9
|
+
"ssr"
|
|
10
|
+
],
|
|
5
11
|
"homepage": "https://docs.coveo.com/en/headless/latest/",
|
|
12
|
+
"license": "Apache-2.0",
|
|
6
13
|
"repository": {
|
|
7
14
|
"type": "git",
|
|
8
15
|
"url": "git+https://github.com/coveo/ui-kit.git",
|
|
9
16
|
"directory": "packages/headless-react"
|
|
10
17
|
},
|
|
11
|
-
"
|
|
12
|
-
"
|
|
13
|
-
"react",
|
|
14
|
-
"nextjs",
|
|
15
|
-
"ssr"
|
|
18
|
+
"files": [
|
|
19
|
+
"dist"
|
|
16
20
|
],
|
|
17
|
-
"license": "Apache-2.0",
|
|
18
21
|
"type": "module",
|
|
19
22
|
"exports": {
|
|
20
23
|
"./ssr": "./dist/ssr/index.js",
|
|
@@ -22,25 +25,22 @@
|
|
|
22
25
|
"./ssr-next": "./dist/ssr-next/index.js",
|
|
23
26
|
"./ssr-commerce-next": "./dist/ssr-commerce-next/index.js"
|
|
24
27
|
},
|
|
25
|
-
"files": [
|
|
26
|
-
"dist"
|
|
27
|
-
],
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@coveo/headless": "3.
|
|
29
|
+
"@coveo/headless": "3.49.0"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"@testing-library/react": "16.3.2",
|
|
33
33
|
"live-server": "1.2.2",
|
|
34
|
-
"typescript": "5.9.3",
|
|
35
34
|
"typedoc": "0.28.18",
|
|
35
|
+
"typescript": "5.9.3",
|
|
36
36
|
"vitest": "4.0.16",
|
|
37
37
|
"@coveo/documentation": "1.0.0"
|
|
38
38
|
},
|
|
39
39
|
"peerDependencies": {
|
|
40
|
-
"react": "^18 || ^19",
|
|
41
|
-
"react-dom": "^18 || ^19",
|
|
42
40
|
"@types/react": "^18 || ^19",
|
|
43
|
-
"@types/react-dom": "^18 || ^19"
|
|
41
|
+
"@types/react-dom": "^18 || ^19",
|
|
42
|
+
"react": "^18 || ^19",
|
|
43
|
+
"react-dom": "^18 || ^19"
|
|
44
44
|
},
|
|
45
45
|
"peerDependenciesMeta": {
|
|
46
46
|
"@types/react": {
|