@docusaurus/theme-search-algolia 3.7.0-canary-6249 → 3.7.0-canary-6252
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.
|
@@ -190,6 +190,8 @@ function DocSearch({externalUrlRegex, ...props}) {
|
|
|
190
190
|
|
|
191
191
|
{isOpen &&
|
|
192
192
|
DocSearchModal &&
|
|
193
|
+
// TODO need to fix this React Compiler lint error
|
|
194
|
+
// eslint-disable-next-line react-compiler/react-compiler
|
|
193
195
|
searchContainer.current &&
|
|
194
196
|
createPortal(
|
|
195
197
|
<DocSearchModal
|
|
@@ -208,6 +210,8 @@ function DocSearch({externalUrlRegex, ...props}) {
|
|
|
208
210
|
translations={props.translations?.modal ?? translations.modal}
|
|
209
211
|
searchParameters={searchParameters}
|
|
210
212
|
/>,
|
|
213
|
+
// TODO need to fix this React Compiler lint error
|
|
214
|
+
// eslint-disable-next-line react-compiler/react-compiler
|
|
211
215
|
searchContainer.current,
|
|
212
216
|
)}
|
|
213
217
|
</>
|
|
@@ -231,6 +231,8 @@ function SearchPageContent() {
|
|
|
231
231
|
const observer = useRef(
|
|
232
232
|
ExecutionEnvironment.canUseIntersectionObserver &&
|
|
233
233
|
new IntersectionObserver(
|
|
234
|
+
// TODO need to fix this React Compiler lint error
|
|
235
|
+
// eslint-disable-next-line react-compiler/react-compiler
|
|
234
236
|
(entries) => {
|
|
235
237
|
const {
|
|
236
238
|
isIntersecting,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@docusaurus/theme-search-algolia",
|
|
3
|
-
"version": "3.7.0-canary-
|
|
3
|
+
"version": "3.7.0-canary-6252",
|
|
4
4
|
"description": "Algolia search component for Docusaurus.",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"sideEffects": [
|
|
@@ -34,13 +34,13 @@
|
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@docsearch/react": "^3.9.0",
|
|
37
|
-
"@docusaurus/core": "3.7.0-canary-
|
|
38
|
-
"@docusaurus/logger": "3.7.0-canary-
|
|
39
|
-
"@docusaurus/plugin-content-docs": "3.7.0-canary-
|
|
40
|
-
"@docusaurus/theme-common": "3.7.0-canary-
|
|
41
|
-
"@docusaurus/theme-translations": "3.7.0-canary-
|
|
42
|
-
"@docusaurus/utils": "3.7.0-canary-
|
|
43
|
-
"@docusaurus/utils-validation": "3.7.0-canary-
|
|
37
|
+
"@docusaurus/core": "3.7.0-canary-6252",
|
|
38
|
+
"@docusaurus/logger": "3.7.0-canary-6252",
|
|
39
|
+
"@docusaurus/plugin-content-docs": "3.7.0-canary-6252",
|
|
40
|
+
"@docusaurus/theme-common": "3.7.0-canary-6252",
|
|
41
|
+
"@docusaurus/theme-translations": "3.7.0-canary-6252",
|
|
42
|
+
"@docusaurus/utils": "3.7.0-canary-6252",
|
|
43
|
+
"@docusaurus/utils-validation": "3.7.0-canary-6252",
|
|
44
44
|
"algoliasearch": "^5.17.1",
|
|
45
45
|
"algoliasearch-helper": "^3.22.6",
|
|
46
46
|
"clsx": "^2.0.0",
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"utility-types": "^3.10.0"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
|
-
"@docusaurus/module-type-aliases": "3.7.0-canary-
|
|
54
|
+
"@docusaurus/module-type-aliases": "3.7.0-canary-6252"
|
|
55
55
|
},
|
|
56
56
|
"peerDependencies": {
|
|
57
57
|
"react": "^18.0.0 || ^19.0.0",
|
|
@@ -60,5 +60,5 @@
|
|
|
60
60
|
"engines": {
|
|
61
61
|
"node": ">=18.0"
|
|
62
62
|
},
|
|
63
|
-
"gitHead": "
|
|
63
|
+
"gitHead": "afaaedd499d872dcf54bcdcbe59749b1de7a941a"
|
|
64
64
|
}
|
|
@@ -269,6 +269,8 @@ function DocSearch({externalUrlRegex, ...props}: DocSearchProps) {
|
|
|
269
269
|
|
|
270
270
|
{isOpen &&
|
|
271
271
|
DocSearchModal &&
|
|
272
|
+
// TODO need to fix this React Compiler lint error
|
|
273
|
+
// eslint-disable-next-line react-compiler/react-compiler
|
|
272
274
|
searchContainer.current &&
|
|
273
275
|
createPortal(
|
|
274
276
|
<DocSearchModal
|
|
@@ -287,6 +289,8 @@ function DocSearch({externalUrlRegex, ...props}: DocSearchProps) {
|
|
|
287
289
|
translations={props.translations?.modal ?? translations.modal}
|
|
288
290
|
searchParameters={searchParameters}
|
|
289
291
|
/>,
|
|
292
|
+
// TODO need to fix this React Compiler lint error
|
|
293
|
+
// eslint-disable-next-line react-compiler/react-compiler
|
|
290
294
|
searchContainer.current,
|
|
291
295
|
)}
|
|
292
296
|
</>
|
|
@@ -292,6 +292,8 @@ function SearchPageContent(): ReactNode {
|
|
|
292
292
|
const observer = useRef(
|
|
293
293
|
ExecutionEnvironment.canUseIntersectionObserver &&
|
|
294
294
|
new IntersectionObserver(
|
|
295
|
+
// TODO need to fix this React Compiler lint error
|
|
296
|
+
// eslint-disable-next-line react-compiler/react-compiler
|
|
295
297
|
(entries) => {
|
|
296
298
|
const {
|
|
297
299
|
isIntersecting,
|