instantsearch.js 4.41.2 → 4.42.0
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/CHANGELOG.md +14 -0
- package/cjs/lib/version.js +1 -1
- package/dist/instantsearch.development.js +50 -12
- package/dist/instantsearch.development.js.map +1 -1
- package/dist/instantsearch.production.min.js +2 -2
- package/dist/instantsearch.production.min.js.map +1 -1
- package/es/index.d.ts +1 -1
- package/es/index.js +1 -1
- package/es/lib/version.d.ts +1 -1
- package/es/lib/version.js +1 -1
- package/package.json +2 -2
package/es/index.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ import { createInfiniteHitsSessionStorageCache } from './lib/infiniteHitsCache';
|
|
|
6
6
|
declare type InstantSearchModule = {
|
|
7
7
|
<TUiState = Record<string, unknown>, TRouteState = TUiState>(options: InstantSearchOptions<Expand<UiState & TUiState>, TRouteState>): InstantSearch<Expand<UiState & TUiState>, TRouteState>;
|
|
8
8
|
version: string;
|
|
9
|
-
/** @deprecated import { createInfiniteHitsSessionStorageCache } from 'instantsearch.js/es/
|
|
9
|
+
/** @deprecated import { createInfiniteHitsSessionStorageCache } from 'instantsearch.js/es/lib/infiniteHitsCache' */
|
|
10
10
|
createInfiniteHitsSessionStorageCache: typeof createInfiniteHitsSessionStorageCache;
|
|
11
11
|
/** @deprecated import { highlight } from 'instantsearch.js/es/helpers' */
|
|
12
12
|
highlight: typeof highlight;
|
package/es/index.js
CHANGED
|
@@ -24,7 +24,7 @@ var instantsearch = function instantsearch(options) {
|
|
|
24
24
|
};
|
|
25
25
|
|
|
26
26
|
instantsearch.version = version;
|
|
27
|
-
instantsearch.createInfiniteHitsSessionStorageCache = deprecate(createInfiniteHitsSessionStorageCache, "import { createInfiniteHitsSessionStorageCache } from 'instantsearch.js/es/
|
|
27
|
+
instantsearch.createInfiniteHitsSessionStorageCache = deprecate(createInfiniteHitsSessionStorageCache, "import { createInfiniteHitsSessionStorageCache } from 'instantsearch.js/es/lib/infiniteHitsCache'");
|
|
28
28
|
instantsearch.highlight = deprecate(highlight, "import { highlight } from 'instantsearch.js/es/helpers'");
|
|
29
29
|
instantsearch.reverseHighlight = deprecate(reverseHighlight, "import { reverseHighlight } from 'instantsearch.js/es/helpers'");
|
|
30
30
|
instantsearch.snippet = deprecate(snippet, "import { snippet } from 'instantsearch.js/es/helpers'");
|
package/es/lib/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: "4.
|
|
1
|
+
declare const _default: "4.42.0";
|
|
2
2
|
export default _default;
|
package/es/lib/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export default '4.
|
|
1
|
+
export default '4.42.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "instantsearch.js",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.42.0",
|
|
4
4
|
"description": "InstantSearch.js is a JavaScript library for building performant and instant search experiences with Algolia.",
|
|
5
5
|
"homepage": "https://www.algolia.com/doc/guides/building-search-ui/what-is-instantsearch/js/",
|
|
6
6
|
"types": "es/index.d.ts",
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"@types/google.maps": "^3.45.3",
|
|
58
58
|
"@types/hogan.js": "^3.0.0",
|
|
59
59
|
"@types/qs": "^6.5.3",
|
|
60
|
-
"algoliasearch-helper": "^3.
|
|
60
|
+
"algoliasearch-helper": "^3.9.0",
|
|
61
61
|
"classnames": "^2.2.5",
|
|
62
62
|
"hogan.js": "^3.0.2",
|
|
63
63
|
"preact": "^10.6.0",
|