@nosto/search-js 1.7.4 → 1.7.6
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 +7 -1
- package/dist/InfiniteScrollWithObserver-DbErxedF.cjs +1 -0
- package/dist/InfiniteScrollWithObserver-kuSGeBWr.js +418 -0
- package/dist/preact/preact.cjs.js +1 -1
- package/dist/preact/preact.d.ts +0 -1
- package/dist/preact/preact.es.js +269 -665
- package/dist/preact-legacy/preact-legacy.cjs.js +1 -0
- package/dist/preact-legacy/preact-legacy.d.ts +4 -0
- package/dist/preact-legacy/preact-legacy.es.js +6 -0
- package/package.json +13 -8
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("../InfiniteScrollWithObserver-DbErxedF.cjs");exports.InfiniteScrollWithObserver=e.InfiniteScrollWithObserver;exports.getNextPageQuery=e.getNextPageQuery;exports.intersectionObserverSupported=e.intersectionObserverSupported;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
/** @module preact-legacy */
|
|
2
|
+
export { InfiniteScrollWithObserver } from '../preact/src/components/InfiniteScroll/InfiniteScrollWithObserver';
|
|
3
|
+
export { intersectionObserverSupported } from '../preact/src/components/InfiniteScroll/utils';
|
|
4
|
+
export { getNextPageQuery } from '../preact/src/hooks/useLoadMore/getNextPageQuery';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nosto/search-js",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.6",
|
|
4
4
|
"license": "ISC",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
@@ -37,6 +37,11 @@
|
|
|
37
37
|
"import": "./dist/preact/preact.es.js",
|
|
38
38
|
"require": "./dist/preact/preact.cjs.js"
|
|
39
39
|
},
|
|
40
|
+
"./preact-legacy": {
|
|
41
|
+
"types": "./dist/preact-legacy/preact-legacy.d.ts",
|
|
42
|
+
"import": "./dist/preact-legacy/preact-legacy.es.js",
|
|
43
|
+
"require": "./dist/preact-legacy/preact-legacy.cjs.js"
|
|
44
|
+
},
|
|
40
45
|
"./utils": {
|
|
41
46
|
"types": "./dist/utils/utils.d.ts",
|
|
42
47
|
"import": "./dist/utils/utils.es.js",
|
|
@@ -61,14 +66,14 @@
|
|
|
61
66
|
"@nosto/nosto-js": "^1.7.0",
|
|
62
67
|
"@testing-library/dom": "^10.4.0",
|
|
63
68
|
"@types/eslint-config-prettier": "^6.11.3",
|
|
64
|
-
"@types/node": "^22.
|
|
69
|
+
"@types/node": "^22.14.0",
|
|
65
70
|
"concurrently": "^9.1.2",
|
|
66
71
|
"copyfiles": "^2.4.1",
|
|
67
|
-
"eslint": "^9.
|
|
72
|
+
"eslint": "^9.24.0",
|
|
68
73
|
"eslint-config-prettier": "^10.1.1",
|
|
69
74
|
"eslint-plugin-barrel-files": "^3.0.1",
|
|
70
|
-
"eslint-plugin-prettier": "^5.2.
|
|
71
|
-
"eslint-plugin-react": "^7.37.
|
|
75
|
+
"eslint-plugin-prettier": "^5.2.6",
|
|
76
|
+
"eslint-plugin-react": "^7.37.5",
|
|
72
77
|
"eslint-plugin-react-hooks": "^5.2.0",
|
|
73
78
|
"eslint-plugin-simple-import-sort": "^12.1.1",
|
|
74
79
|
"eslint-plugin-unused-imports": "^4.1.4",
|
|
@@ -76,9 +81,9 @@
|
|
|
76
81
|
"jsdom": "^26.0.0",
|
|
77
82
|
"prettier": "^3.5.3",
|
|
78
83
|
"typedoc": "^0.27.9",
|
|
79
|
-
"typescript": "^5.8.
|
|
80
|
-
"typescript-eslint": "^8.
|
|
81
|
-
"vite": "^6.2.
|
|
84
|
+
"typescript": "^5.8.3",
|
|
85
|
+
"typescript-eslint": "^8.29.1",
|
|
86
|
+
"vite": "^6.2.5",
|
|
82
87
|
"vite-plugin-dts": "^4.5.3",
|
|
83
88
|
"vitest": "^3.1.1"
|
|
84
89
|
},
|