react-instantsearch 6.40.4 → 7.0.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/README.md +113 -2
- package/dist/cjs/index.js +27 -0
- package/dist/cjs/package.json +1 -0
- package/dist/cjs/types/PartialKeys.js +1 -0
- package/dist/cjs/types/Translatable.js +1 -0
- package/dist/cjs/types/index.js +27 -0
- package/dist/cjs/ui/Breadcrumb.js +59 -0
- package/dist/cjs/ui/ClearRefinements.js +30 -0
- package/dist/cjs/ui/CurrentRefinements.js +53 -0
- package/dist/cjs/ui/HierarchicalMenu.js +82 -0
- package/dist/cjs/ui/Highlight.js +27 -0
- package/dist/cjs/ui/Hits.js +49 -0
- package/dist/cjs/ui/HitsPerPage.js +36 -0
- package/dist/cjs/ui/InfiniteHits.js +62 -0
- package/dist/cjs/ui/InternalHighlight.js +56 -0
- package/dist/cjs/ui/Menu.js +54 -0
- package/dist/cjs/ui/Pagination.js +127 -0
- package/dist/cjs/ui/PoweredBy.js +39 -0
- package/dist/cjs/ui/RangeInput.js +124 -0
- package/dist/cjs/ui/RefinementList.js +69 -0
- package/dist/cjs/ui/SearchBox.js +153 -0
- package/dist/cjs/ui/ShowMoreButton.js +19 -0
- package/dist/cjs/ui/Snippet.js +27 -0
- package/dist/cjs/ui/SortBy.js +37 -0
- package/dist/cjs/ui/Stats.js +34 -0
- package/dist/cjs/ui/ToggleRefinement.js +35 -0
- package/dist/cjs/ui/lib/cx.js +12 -0
- package/dist/cjs/ui/lib/isModifierClick.js +10 -0
- package/dist/cjs/widgets/Breadcrumb.js +49 -0
- package/dist/cjs/widgets/ClearRefinements.js +44 -0
- package/dist/cjs/widgets/CurrentRefinements.js +36 -0
- package/dist/cjs/widgets/HierarchicalMenu.js +70 -0
- package/dist/cjs/widgets/Highlight.js +33 -0
- package/dist/cjs/widgets/Hits.js +32 -0
- package/dist/cjs/widgets/HitsPerPage.js +40 -0
- package/dist/cjs/widgets/InfiniteHits.js +57 -0
- package/dist/cjs/widgets/Menu.js +64 -0
- package/dist/cjs/widgets/Pagination.js +76 -0
- package/dist/cjs/widgets/PoweredBy.js +19 -0
- package/dist/cjs/widgets/RangeInput.js +53 -0
- package/dist/cjs/widgets/RefinementList.js +124 -0
- package/dist/cjs/widgets/SearchBox.js +91 -0
- package/dist/cjs/widgets/Snippet.js +33 -0
- package/dist/cjs/widgets/SortBy.js +34 -0
- package/dist/cjs/widgets/Stats.js +43 -0
- package/dist/cjs/widgets/ToggleRefinement.js +40 -0
- package/dist/cjs/widgets/index.js +203 -0
- package/dist/es/index.d.ts +2 -0
- package/dist/es/index.js +2 -1
- package/dist/es/types/PartialKeys.d.ts +4 -0
- package/dist/es/types/PartialKeys.js +1 -0
- package/dist/es/types/Translatable.d.ts +5 -0
- package/dist/es/types/Translatable.js +1 -0
- package/dist/es/types/index.d.ts +2 -0
- package/dist/es/types/index.js +2 -0
- package/dist/es/ui/Breadcrumb.d.ts +48 -0
- package/dist/es/ui/Breadcrumb.js +52 -0
- package/dist/es/ui/ClearRefinements.d.ts +26 -0
- package/dist/es/ui/ClearRefinements.js +23 -0
- package/dist/es/ui/CurrentRefinements.d.ts +47 -0
- package/dist/es/ui/CurrentRefinements.js +46 -0
- package/dist/es/ui/HierarchicalMenu.d.ts +73 -0
- package/dist/es/ui/HierarchicalMenu.js +75 -0
- package/dist/es/ui/Highlight.d.ts +6 -0
- package/dist/es/ui/Highlight.js +20 -0
- package/dist/es/ui/Hits.d.ts +31 -0
- package/dist/es/ui/Hits.js +42 -0
- package/dist/es/ui/HitsPerPage.d.ts +23 -0
- package/dist/es/ui/HitsPerPage.js +29 -0
- package/dist/es/ui/InfiniteHits.d.ts +56 -0
- package/dist/es/ui/InfiniteHits.js +55 -0
- package/dist/es/ui/InternalHighlight.d.ts +32 -0
- package/dist/es/ui/InternalHighlight.js +47 -0
- package/dist/es/ui/Menu.d.ts +59 -0
- package/dist/es/ui/Menu.js +47 -0
- package/dist/es/ui/Pagination.d.ts +121 -0
- package/dist/es/ui/Pagination.js +120 -0
- package/dist/es/ui/PoweredBy.d.ts +29 -0
- package/dist/es/ui/PoweredBy.js +32 -0
- package/dist/es/ui/RangeInput.d.ts +60 -0
- package/dist/es/ui/RangeInput.js +115 -0
- package/dist/es/ui/RefinementList.d.ts +73 -0
- package/dist/es/ui/RefinementList.js +62 -0
- package/dist/es/ui/SearchBox.d.ts +64 -0
- package/dist/es/ui/SearchBox.js +146 -0
- package/dist/es/ui/ShowMoreButton.d.ts +19 -0
- package/dist/es/ui/ShowMoreButton.js +12 -0
- package/dist/es/ui/Snippet.d.ts +6 -0
- package/dist/es/ui/Snippet.js +20 -0
- package/dist/es/ui/SortBy.d.ts +21 -0
- package/dist/es/ui/SortBy.js +30 -0
- package/dist/es/ui/Stats.d.ts +20 -0
- package/dist/es/ui/Stats.js +27 -0
- package/dist/es/ui/ToggleRefinement.d.ts +25 -0
- package/dist/es/ui/ToggleRefinement.js +28 -0
- package/dist/es/ui/lib/cx.d.ts +1 -0
- package/dist/es/ui/lib/cx.js +6 -0
- package/dist/es/ui/lib/isModifierClick.d.ts +2 -0
- package/dist/es/ui/lib/isModifierClick.js +4 -0
- package/dist/es/widgets/Breadcrumb.d.ts +8 -0
- package/dist/es/widgets/Breadcrumb.js +42 -0
- package/dist/es/widgets/ClearRefinements.d.ts +8 -0
- package/dist/es/widgets/ClearRefinements.js +37 -0
- package/dist/es/widgets/CurrentRefinements.d.ts +6 -0
- package/dist/es/widgets/CurrentRefinements.js +29 -0
- package/dist/es/widgets/HierarchicalMenu.d.ts +8 -0
- package/dist/es/widgets/HierarchicalMenu.js +63 -0
- package/dist/es/widgets/Highlight.d.ts +8 -0
- package/dist/es/widgets/Highlight.js +26 -0
- package/dist/es/widgets/Hits.d.ts +7 -0
- package/dist/es/widgets/Hits.js +25 -0
- package/dist/es/widgets/HitsPerPage.d.ts +6 -0
- package/dist/es/widgets/HitsPerPage.js +33 -0
- package/dist/es/widgets/InfiniteHits.d.ts +15 -0
- package/dist/es/widgets/InfiniteHits.js +50 -0
- package/dist/es/widgets/Menu.d.ts +8 -0
- package/dist/es/widgets/Menu.js +57 -0
- package/dist/es/widgets/Pagination.d.ts +8 -0
- package/dist/es/widgets/Pagination.js +69 -0
- package/dist/es/widgets/PoweredBy.d.ts +5 -0
- package/dist/es/widgets/PoweredBy.js +12 -0
- package/dist/es/widgets/RangeInput.d.ts +8 -0
- package/dist/es/widgets/RangeInput.js +46 -0
- package/dist/es/widgets/RefinementList.d.ts +15 -0
- package/dist/es/widgets/RefinementList.js +116 -0
- package/dist/es/widgets/SearchBox.d.ts +13 -0
- package/dist/es/widgets/SearchBox.js +83 -0
- package/dist/es/widgets/Snippet.d.ts +8 -0
- package/dist/es/widgets/Snippet.js +26 -0
- package/dist/es/widgets/SortBy.d.ts +6 -0
- package/dist/es/widgets/SortBy.js +27 -0
- package/dist/es/widgets/Stats.d.ts +8 -0
- package/dist/es/widgets/Stats.js +36 -0
- package/dist/es/widgets/ToggleRefinement.d.ts +7 -0
- package/dist/es/widgets/ToggleRefinement.js +33 -0
- package/dist/es/widgets/index.d.ts +18 -0
- package/dist/es/widgets/index.js +18 -0
- package/dist/umd/ReactInstantSearch.js +19990 -0
- package/dist/umd/ReactInstantSearch.js.map +1 -0
- package/dist/umd/ReactInstantSearch.min.js +3 -0
- package/dist/umd/ReactInstantSearch.min.js.map +1 -0
- package/package.json +28 -24
- package/connectors.js +0 -29
- package/dist/README.md +0 -101
- package/dist/connectors.js +0 -168
- package/dist/dom.js +0 -198
- package/dist/es/connectors.js +0 -26
- package/dist/es/dom.js +0 -31
- package/dist/es/native.js +0 -5
- package/dist/es/server.js +0 -1
- package/dist/index.js +0 -12
- package/dist/native.js +0 -42
- package/dist/package.json +0 -56
- package/dist/server.js +0 -12
- package/dist/umd/Connectors.js +0 -11215
- package/dist/umd/Connectors.js.map +0 -1
- package/dist/umd/Connectors.min.js +0 -3
- package/dist/umd/Connectors.min.js.map +0 -1
- package/dist/umd/Core.js +0 -650
- package/dist/umd/Core.js.map +0 -1
- package/dist/umd/Core.min.js +0 -3
- package/dist/umd/Core.min.js.map +0 -1
- package/dist/umd/Dom.js +0 -18935
- package/dist/umd/Dom.js.map +0 -1
- package/dist/umd/Dom.min.js +0 -3
- package/dist/umd/Dom.min.js.map +0 -1
- package/dom.js +0 -34
- package/index.js +0 -1
- package/native.js +0 -8
- package/server.js +0 -1
package/package.json
CHANGED
|
@@ -1,23 +1,24 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-instantsearch",
|
|
3
|
-
"version": "
|
|
4
|
-
"description": "⚡ Lightning-fast search for React
|
|
5
|
-
"
|
|
3
|
+
"version": "7.0.0",
|
|
4
|
+
"description": "⚡ Lightning-fast search for React, by Algolia",
|
|
5
|
+
"source": "src/index.ts",
|
|
6
|
+
"types": "dist/es/index.d.ts",
|
|
7
|
+
"main": "dist/cjs/index.js",
|
|
6
8
|
"module": "dist/es/index.js",
|
|
7
|
-
"
|
|
8
|
-
|
|
9
|
-
"
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
],
|
|
9
|
+
"type": "module",
|
|
10
|
+
"exports": {
|
|
11
|
+
".": {
|
|
12
|
+
"import": "./dist/es/index.js",
|
|
13
|
+
"require": "./dist/cjs/index.js"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
15
16
|
"sideEffects": false,
|
|
16
17
|
"license": "MIT",
|
|
17
18
|
"homepage": "https://www.algolia.com/doc/guides/building-search-ui/what-is-instantsearch/react/",
|
|
18
19
|
"repository": {
|
|
19
20
|
"type": "git",
|
|
20
|
-
"url": "https://github.com/algolia/instantsearch
|
|
21
|
+
"url": "https://github.com/algolia/instantsearch"
|
|
21
22
|
},
|
|
22
23
|
"author": {
|
|
23
24
|
"name": "Algolia, Inc.",
|
|
@@ -29,28 +30,31 @@
|
|
|
29
30
|
"fast",
|
|
30
31
|
"instantsearch",
|
|
31
32
|
"react",
|
|
32
|
-
"react-dom",
|
|
33
|
-
"react-native",
|
|
34
33
|
"search"
|
|
35
34
|
],
|
|
35
|
+
"files": [
|
|
36
|
+
"README.md",
|
|
37
|
+
"dist"
|
|
38
|
+
],
|
|
36
39
|
"scripts": {
|
|
37
40
|
"clean": "rm -rf dist",
|
|
38
|
-
"
|
|
39
|
-
"build
|
|
40
|
-
"build:
|
|
41
|
+
"watch": "yarn build:cjs --watch",
|
|
42
|
+
"build": "yarn build:cjs && yarn build:es && yarn build:umd && yarn build:types",
|
|
43
|
+
"build:cjs": "BABEL_ENV=cjs babel src --root-mode upward --extensions '.js,.ts,.tsx' --out-dir dist/cjs --ignore '**/__tests__/**/*','**/__mocks__/**/*' --quiet && ../../scripts/prepare-cjs.sh",
|
|
44
|
+
"build:es": "BABEL_ENV=es babel src --root-mode upward --extensions '.js,.ts,.tsx' --out-dir dist/es --ignore '**/__tests__/**/*','**/__mocks__/**/*' --quiet",
|
|
41
45
|
"build:umd": "BABEL_ENV=rollup rollup -c rollup.config.js",
|
|
42
|
-
"
|
|
43
|
-
"
|
|
46
|
+
"build:types": "tsc -p ./tsconfig.declaration.json --outDir ./dist/es",
|
|
47
|
+
"test:exports": "node ./test/module/is-es-module.mjs && node ./test/module/is-cjs-module.cjs"
|
|
44
48
|
},
|
|
45
49
|
"dependencies": {
|
|
46
50
|
"@babel/runtime": "^7.1.2",
|
|
47
|
-
"
|
|
48
|
-
"react-instantsearch-
|
|
49
|
-
"react-instantsearch-native": "6.40.4"
|
|
51
|
+
"instantsearch.js": "4.56.8",
|
|
52
|
+
"react-instantsearch-core": "7.0.0"
|
|
50
53
|
},
|
|
51
54
|
"peerDependencies": {
|
|
52
55
|
"algoliasearch": ">= 3.1 < 5",
|
|
53
|
-
"react": ">= 16.
|
|
56
|
+
"react": ">= 16.8.0 < 19",
|
|
57
|
+
"react-dom": ">= 16.8.0 < 19"
|
|
54
58
|
},
|
|
55
|
-
"gitHead": "
|
|
59
|
+
"gitHead": "c0a9fe132d2c64939763f64f7c265ed8ceb89ae2"
|
|
56
60
|
}
|
package/connectors.js
DELETED
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
export { connectAutoComplete } from 'react-instantsearch-core';
|
|
2
|
-
export { connectBreadcrumb } from 'react-instantsearch-core';
|
|
3
|
-
export { connectConfigure } from 'react-instantsearch-core';
|
|
4
|
-
export { EXPERIMENTAL_connectConfigureRelatedItems } from 'react-instantsearch-core';
|
|
5
|
-
export {
|
|
6
|
-
connectDynamicWidgets,
|
|
7
|
-
EXPERIMENTAL_connectDynamicWidgets,
|
|
8
|
-
} from 'react-instantsearch-core';
|
|
9
|
-
export { connectCurrentRefinements } from 'react-instantsearch-core';
|
|
10
|
-
export { connectGeoSearch } from 'react-instantsearch-core';
|
|
11
|
-
export { connectHierarchicalMenu } from 'react-instantsearch-core';
|
|
12
|
-
export { connectHighlight } from 'react-instantsearch-core';
|
|
13
|
-
export { connectHitInsights } from 'react-instantsearch-core';
|
|
14
|
-
export { connectHits } from 'react-instantsearch-core';
|
|
15
|
-
export { connectHitsPerPage } from 'react-instantsearch-core';
|
|
16
|
-
export { connectInfiniteHits } from 'react-instantsearch-core';
|
|
17
|
-
export { connectMenu } from 'react-instantsearch-core';
|
|
18
|
-
export { connectNumericMenu } from 'react-instantsearch-core';
|
|
19
|
-
export { connectPagination } from 'react-instantsearch-core';
|
|
20
|
-
export { connectPoweredBy } from 'react-instantsearch-core';
|
|
21
|
-
export { connectRange } from 'react-instantsearch-core';
|
|
22
|
-
export { connectRefinementList } from 'react-instantsearch-core';
|
|
23
|
-
export { connectScrollTo } from 'react-instantsearch-core';
|
|
24
|
-
export { connectSearchBox } from 'react-instantsearch-core';
|
|
25
|
-
export { connectRelevantSort } from 'react-instantsearch-core';
|
|
26
|
-
export { connectSortBy } from 'react-instantsearch-core';
|
|
27
|
-
export { connectStateResults } from 'react-instantsearch-core';
|
|
28
|
-
export { connectStats } from 'react-instantsearch-core';
|
|
29
|
-
export { connectToggleRefinement } from 'react-instantsearch-core';
|
package/dist/README.md
DELETED
|
@@ -1,101 +0,0 @@
|
|
|
1
|
-
<p align="center">
|
|
2
|
-
<a href="https://www.algolia.com/doc/guides/building-search-ui/what-is-instantsearch/js/">
|
|
3
|
-
<img alt="InstantSearch.js" src=".github/banner.png">
|
|
4
|
-
</a>
|
|
5
|
-
|
|
6
|
-
<p align="center">
|
|
7
|
-
InstantSearch is a JavaScript library for building performant and instant search experiences in vanilla JS, React, Vue and Angular with <a href="https://www.algolia.com/?utm_source=instantsearch.js&utm_campaign=repository">Algolia</a>.
|
|
8
|
-
</p>
|
|
9
|
-
</p>
|
|
10
|
-
|
|
11
|
-
---
|
|
12
|
-
|
|
13
|
-
[![License][license-image]][license-url]
|
|
14
|
-
[![Build Status][ci-svg]][ci-url]
|
|
15
|
-
|
|
16
|
-
[InstantSearch][instantsearch-docs] is a JavaScript library that lets you create an instant-search result experience using [Algolia][algolia-website]’s search API.
|
|
17
|
-
|
|
18
|
-
There are multiple wrappers for popular frameworks, such as [React InstantSearch][react-instantsearch-docs], [Vue InstantSearch][vue-instantsearch-docs], and [Angular InstantSearch][angular-instantsearch-docs].
|
|
19
|
-
|
|
20
|
-
It is part of the InstantSearch family which is designed for different platforms:
|
|
21
|
-
|
|
22
|
-
**InstantSearch** | [Angular InstantSearch][instantsearch-angular-github] | [InstantSearch Android][instantsearch-android-github] | [InstantSearch iOS][instantsearch-ios-github]
|
|
23
|
-
|
|
24
|
-
<details>
|
|
25
|
-
<summary><strong>Table of contents</strong></summary>
|
|
26
|
-
|
|
27
|
-
<!-- START doctoc generated TOC please keep comment here to allow auto update -->
|
|
28
|
-
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
- [Packages](#packages)
|
|
32
|
-
- [Contributing](#contributing)
|
|
33
|
-
- [License](#license)
|
|
34
|
-
|
|
35
|
-
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
|
|
36
|
-
|
|
37
|
-
</details>
|
|
38
|
-
|
|
39
|
-
## Packages
|
|
40
|
-
|
|
41
|
-
| Package | Version | Description |
|
|
42
|
-
| --- | --- | --- |
|
|
43
|
-
| [`algoliasearch-helper`](packages/algoliasearch-helper) | [](https://npmjs.org/package/algoliasearch-helper) | Helper for implementing advanced search features with Algolia |
|
|
44
|
-
| [`create-instantsearch-app`](packages/create-instantsearch-app) | [](https://npmjs.org/package/create-instantsearch-app) | Command-line utility to quickly bootstrap a project with InstantSearch |
|
|
45
|
-
| [`instantsearch.css`](packages/instantsearch.css) | [](https://npmjs.org/package/instantsearch.css) | Default CSS themes for InstantSearch |
|
|
46
|
-
| [`instantsearch.js`](packages/instantsearch.js) | [](https://npmjs.org/package/instantsearch.js) | InstantSearch.js |
|
|
47
|
-
| [`react-instantsearch`](packages/react-instantsearch) | [](https://npmjs.org/package/react-instantsearch)| React InstantSearch (prefer using `react-instantsearch-hooks-web` instead) |
|
|
48
|
-
| [`react-instantsearch-core`](packages/react-instantsearch-core) | [](https://npmjs.org/package/react-instantsearch-core) | React InstantSearch Core (prefer using `react-instantsearch-hooks` instead) |
|
|
49
|
-
| [`react-instantsearch-dom`](packages/react-instantsearch-dom) | [](https://npmjs.org/package/react-instantsearch-dom) | React InstantSearch DOM (prefer using `react-instantsearch-hooks-web` instead) |
|
|
50
|
-
| [`react-instantsearch-dom-maps`](packages/react-instantsearch-dom-maps) | [](https://npmjs.org/package/react-instantsearch-dom-maps)| GeoSearch widget for React InstantSearch DOM |
|
|
51
|
-
| [`react-instantsearch-hooks`](packages/react-instantsearch-hooks) | [](https://npmjs.org/package/react-instantsearch-hooks) | React InstantSearch Hooks |
|
|
52
|
-
| [`react-instantsearch-hooks-server`](packages/react-instantsearch-hooks-server) | [](https://npmjs.org/package/react-instantsearch-hooks-server) | Utilities to do server-side rendering with React InstantSearch Hooks |
|
|
53
|
-
| [`react-instantsearch-hooks-web`](packages/react-instantsearch-hooks-web) | [](https://npmjs.org/package/react-instantsearch-hooks-web) | React InstantSearch Hooks bundled with UI components |
|
|
54
|
-
| [`react-instantsearch-native`](packages/react-instantsearch-native) | [](https://npmjs.org/package/react-instantsearch-native) | React InstantSearch Native (prefer using `react-instantsearch-hooks` instead) |
|
|
55
|
-
| [`vue-instantsearch`](packages/vue-instantsearch) | [](https://npmjs.org/package/vue-instantsearch) | Vue InstantSearch |
|
|
56
|
-
|
|
57
|
-
## Contributing
|
|
58
|
-
|
|
59
|
-
We welcome all contributors, from casual to regular 💙
|
|
60
|
-
|
|
61
|
-
- **Bug report**. Is something not working as expected? [Send a bug report][contributing-bugreport].
|
|
62
|
-
- **Feature request**. Would you like to add something to the library? [Send a feature request][contributing-featurerequest].
|
|
63
|
-
- **Documentation**. Did you find a typo in the doc? [Open an issue][contributing-newissue] and we'll take care of it.
|
|
64
|
-
- **Development**. If you don't know where to start, you can check the open issues that are [tagged easy][contributing-label-easy], the [bugs][contributing-label-bug] or [chores][contributing-label-chore].
|
|
65
|
-
|
|
66
|
-
To start contributing to code, you need to:
|
|
67
|
-
|
|
68
|
-
1. [Fork the project](https://help.github.com/articles/fork-a-repo/)
|
|
69
|
-
1. [Clone the repository](https://help.github.com/articles/cloning-a-repository/)
|
|
70
|
-
1. Install the dependencies: `yarn`
|
|
71
|
-
1. [Pick a package to work on](#packages) and cd into it (e.g. `cd packages/react-instantsearch-hooks`)
|
|
72
|
-
|
|
73
|
-
Please read [our contribution process](CONTRIBUTING.md) to learn more.
|
|
74
|
-
|
|
75
|
-
## License
|
|
76
|
-
|
|
77
|
-
InstantSearch is [MIT licensed][license-url].
|
|
78
|
-
|
|
79
|
-
<!-- Badges -->
|
|
80
|
-
|
|
81
|
-
[ci-svg]: https://img.shields.io/circleci/project/github/algolia/instantsearch.svg?style=flat-square
|
|
82
|
-
[ci-url]: https://circleci.com/gh/algolia/instantsearch
|
|
83
|
-
[license-image]: http://img.shields.io/badge/license-MIT-green.svg?style=flat-square
|
|
84
|
-
[license-url]: LICENSE
|
|
85
|
-
|
|
86
|
-
<!-- Links -->
|
|
87
|
-
|
|
88
|
-
[algolia-website]: https://www.algolia.com/?utm_source=instantsearch.js&utm_campaign=repository "Algolia's website"
|
|
89
|
-
[instantsearch-docs]: https://www.algolia.com/doc/guides/building-search-ui/what-is-instantsearch/js/?utm_source=instantsearch.js&utm_campaign=repository "InstantSearch.js documentation"
|
|
90
|
-
[react-instantsearch-docs]: https://www.algolia.com/doc/guides/building-search-ui/what-is-instantsearch/react-hooks/?utm_source=instantsearch.js&utm_campaign=repository "React InstantSearch documentation"
|
|
91
|
-
[vue-instantsearch-docs]: https://www.algolia.com/doc/guides/building-search-ui/what-is-instantsearch/vue/?utm_source=instantsearch.js&utm_campaign=repository "Vue InstantSearch documentation"
|
|
92
|
-
[angular-instantsearch-docs]: https://www.algolia.com/doc/guides/building-search-ui/what-is-instantsearch/angular/?utm_source=instantsearch.js&utm_campaign=repository "Angular InstantSearch documentation"
|
|
93
|
-
[instantsearch-android-github]: https://github.com/algolia/instantsearch-android
|
|
94
|
-
[instantsearch-ios-github]: https://github.com/algolia/instantsearch-ios
|
|
95
|
-
[instantsearch-angular-github]: https://github.com/algolia/angular-instantsearch
|
|
96
|
-
[contributing-bugreport]: https://github.com/algolia/instantsearch.js/issues/new?template=BUG_REPORT.yml&labels=triage
|
|
97
|
-
[contributing-featurerequest]: https://github.com/algolia/instantsearch.js/discussions/new?category=ideas&labels=triage&title=Feature%20request%3A%20
|
|
98
|
-
[contributing-newissue]: https://github.com/algolia/instantsearch.js/issues/new?labels=triage
|
|
99
|
-
[contributing-label-easy]: https://github.com/algolia/instantsearch.js/issues?q=is%3Aopen+is%3Aissue+label%3A%22Difficulty%3A+Easy%22
|
|
100
|
-
[contributing-label-bug]: https://github.com/algolia/instantsearch.js/issues?q=is%3Aissue+is%3Aopen+label%3A%22Type%3A+Bug%22
|
|
101
|
-
[contributing-label-chore]: https://github.com/algolia/instantsearch.js/issues?q=is%3Aissue+is%3Aopen+label%3A%22Type%3A+Chore%22
|
package/dist/connectors.js
DELETED
|
@@ -1,168 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
Object.defineProperty(exports, "EXPERIMENTAL_connectConfigureRelatedItems", {
|
|
7
|
-
enumerable: true,
|
|
8
|
-
get: function get() {
|
|
9
|
-
return _reactInstantsearchCore.EXPERIMENTAL_connectConfigureRelatedItems;
|
|
10
|
-
}
|
|
11
|
-
});
|
|
12
|
-
Object.defineProperty(exports, "EXPERIMENTAL_connectDynamicWidgets", {
|
|
13
|
-
enumerable: true,
|
|
14
|
-
get: function get() {
|
|
15
|
-
return _reactInstantsearchCore.EXPERIMENTAL_connectDynamicWidgets;
|
|
16
|
-
}
|
|
17
|
-
});
|
|
18
|
-
Object.defineProperty(exports, "connectAutoComplete", {
|
|
19
|
-
enumerable: true,
|
|
20
|
-
get: function get() {
|
|
21
|
-
return _reactInstantsearchCore.connectAutoComplete;
|
|
22
|
-
}
|
|
23
|
-
});
|
|
24
|
-
Object.defineProperty(exports, "connectBreadcrumb", {
|
|
25
|
-
enumerable: true,
|
|
26
|
-
get: function get() {
|
|
27
|
-
return _reactInstantsearchCore.connectBreadcrumb;
|
|
28
|
-
}
|
|
29
|
-
});
|
|
30
|
-
Object.defineProperty(exports, "connectConfigure", {
|
|
31
|
-
enumerable: true,
|
|
32
|
-
get: function get() {
|
|
33
|
-
return _reactInstantsearchCore.connectConfigure;
|
|
34
|
-
}
|
|
35
|
-
});
|
|
36
|
-
Object.defineProperty(exports, "connectCurrentRefinements", {
|
|
37
|
-
enumerable: true,
|
|
38
|
-
get: function get() {
|
|
39
|
-
return _reactInstantsearchCore.connectCurrentRefinements;
|
|
40
|
-
}
|
|
41
|
-
});
|
|
42
|
-
Object.defineProperty(exports, "connectDynamicWidgets", {
|
|
43
|
-
enumerable: true,
|
|
44
|
-
get: function get() {
|
|
45
|
-
return _reactInstantsearchCore.connectDynamicWidgets;
|
|
46
|
-
}
|
|
47
|
-
});
|
|
48
|
-
Object.defineProperty(exports, "connectGeoSearch", {
|
|
49
|
-
enumerable: true,
|
|
50
|
-
get: function get() {
|
|
51
|
-
return _reactInstantsearchCore.connectGeoSearch;
|
|
52
|
-
}
|
|
53
|
-
});
|
|
54
|
-
Object.defineProperty(exports, "connectHierarchicalMenu", {
|
|
55
|
-
enumerable: true,
|
|
56
|
-
get: function get() {
|
|
57
|
-
return _reactInstantsearchCore.connectHierarchicalMenu;
|
|
58
|
-
}
|
|
59
|
-
});
|
|
60
|
-
Object.defineProperty(exports, "connectHighlight", {
|
|
61
|
-
enumerable: true,
|
|
62
|
-
get: function get() {
|
|
63
|
-
return _reactInstantsearchCore.connectHighlight;
|
|
64
|
-
}
|
|
65
|
-
});
|
|
66
|
-
Object.defineProperty(exports, "connectHitInsights", {
|
|
67
|
-
enumerable: true,
|
|
68
|
-
get: function get() {
|
|
69
|
-
return _reactInstantsearchCore.connectHitInsights;
|
|
70
|
-
}
|
|
71
|
-
});
|
|
72
|
-
Object.defineProperty(exports, "connectHits", {
|
|
73
|
-
enumerable: true,
|
|
74
|
-
get: function get() {
|
|
75
|
-
return _reactInstantsearchCore.connectHits;
|
|
76
|
-
}
|
|
77
|
-
});
|
|
78
|
-
Object.defineProperty(exports, "connectHitsPerPage", {
|
|
79
|
-
enumerable: true,
|
|
80
|
-
get: function get() {
|
|
81
|
-
return _reactInstantsearchCore.connectHitsPerPage;
|
|
82
|
-
}
|
|
83
|
-
});
|
|
84
|
-
Object.defineProperty(exports, "connectInfiniteHits", {
|
|
85
|
-
enumerable: true,
|
|
86
|
-
get: function get() {
|
|
87
|
-
return _reactInstantsearchCore.connectInfiniteHits;
|
|
88
|
-
}
|
|
89
|
-
});
|
|
90
|
-
Object.defineProperty(exports, "connectMenu", {
|
|
91
|
-
enumerable: true,
|
|
92
|
-
get: function get() {
|
|
93
|
-
return _reactInstantsearchCore.connectMenu;
|
|
94
|
-
}
|
|
95
|
-
});
|
|
96
|
-
Object.defineProperty(exports, "connectNumericMenu", {
|
|
97
|
-
enumerable: true,
|
|
98
|
-
get: function get() {
|
|
99
|
-
return _reactInstantsearchCore.connectNumericMenu;
|
|
100
|
-
}
|
|
101
|
-
});
|
|
102
|
-
Object.defineProperty(exports, "connectPagination", {
|
|
103
|
-
enumerable: true,
|
|
104
|
-
get: function get() {
|
|
105
|
-
return _reactInstantsearchCore.connectPagination;
|
|
106
|
-
}
|
|
107
|
-
});
|
|
108
|
-
Object.defineProperty(exports, "connectPoweredBy", {
|
|
109
|
-
enumerable: true,
|
|
110
|
-
get: function get() {
|
|
111
|
-
return _reactInstantsearchCore.connectPoweredBy;
|
|
112
|
-
}
|
|
113
|
-
});
|
|
114
|
-
Object.defineProperty(exports, "connectRange", {
|
|
115
|
-
enumerable: true,
|
|
116
|
-
get: function get() {
|
|
117
|
-
return _reactInstantsearchCore.connectRange;
|
|
118
|
-
}
|
|
119
|
-
});
|
|
120
|
-
Object.defineProperty(exports, "connectRefinementList", {
|
|
121
|
-
enumerable: true,
|
|
122
|
-
get: function get() {
|
|
123
|
-
return _reactInstantsearchCore.connectRefinementList;
|
|
124
|
-
}
|
|
125
|
-
});
|
|
126
|
-
Object.defineProperty(exports, "connectRelevantSort", {
|
|
127
|
-
enumerable: true,
|
|
128
|
-
get: function get() {
|
|
129
|
-
return _reactInstantsearchCore.connectRelevantSort;
|
|
130
|
-
}
|
|
131
|
-
});
|
|
132
|
-
Object.defineProperty(exports, "connectScrollTo", {
|
|
133
|
-
enumerable: true,
|
|
134
|
-
get: function get() {
|
|
135
|
-
return _reactInstantsearchCore.connectScrollTo;
|
|
136
|
-
}
|
|
137
|
-
});
|
|
138
|
-
Object.defineProperty(exports, "connectSearchBox", {
|
|
139
|
-
enumerable: true,
|
|
140
|
-
get: function get() {
|
|
141
|
-
return _reactInstantsearchCore.connectSearchBox;
|
|
142
|
-
}
|
|
143
|
-
});
|
|
144
|
-
Object.defineProperty(exports, "connectSortBy", {
|
|
145
|
-
enumerable: true,
|
|
146
|
-
get: function get() {
|
|
147
|
-
return _reactInstantsearchCore.connectSortBy;
|
|
148
|
-
}
|
|
149
|
-
});
|
|
150
|
-
Object.defineProperty(exports, "connectStateResults", {
|
|
151
|
-
enumerable: true,
|
|
152
|
-
get: function get() {
|
|
153
|
-
return _reactInstantsearchCore.connectStateResults;
|
|
154
|
-
}
|
|
155
|
-
});
|
|
156
|
-
Object.defineProperty(exports, "connectStats", {
|
|
157
|
-
enumerable: true,
|
|
158
|
-
get: function get() {
|
|
159
|
-
return _reactInstantsearchCore.connectStats;
|
|
160
|
-
}
|
|
161
|
-
});
|
|
162
|
-
Object.defineProperty(exports, "connectToggleRefinement", {
|
|
163
|
-
enumerable: true,
|
|
164
|
-
get: function get() {
|
|
165
|
-
return _reactInstantsearchCore.connectToggleRefinement;
|
|
166
|
-
}
|
|
167
|
-
});
|
|
168
|
-
var _reactInstantsearchCore = require("react-instantsearch-core");
|
package/dist/dom.js
DELETED
|
@@ -1,198 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
Object.defineProperty(exports, "Breadcrumb", {
|
|
7
|
-
enumerable: true,
|
|
8
|
-
get: function get() {
|
|
9
|
-
return _reactInstantsearchDom.Breadcrumb;
|
|
10
|
-
}
|
|
11
|
-
});
|
|
12
|
-
Object.defineProperty(exports, "ClearRefinements", {
|
|
13
|
-
enumerable: true,
|
|
14
|
-
get: function get() {
|
|
15
|
-
return _reactInstantsearchDom.ClearRefinements;
|
|
16
|
-
}
|
|
17
|
-
});
|
|
18
|
-
Object.defineProperty(exports, "Configure", {
|
|
19
|
-
enumerable: true,
|
|
20
|
-
get: function get() {
|
|
21
|
-
return _reactInstantsearchDom.Configure;
|
|
22
|
-
}
|
|
23
|
-
});
|
|
24
|
-
Object.defineProperty(exports, "CurrentRefinements", {
|
|
25
|
-
enumerable: true,
|
|
26
|
-
get: function get() {
|
|
27
|
-
return _reactInstantsearchDom.CurrentRefinements;
|
|
28
|
-
}
|
|
29
|
-
});
|
|
30
|
-
Object.defineProperty(exports, "DynamicWidgets", {
|
|
31
|
-
enumerable: true,
|
|
32
|
-
get: function get() {
|
|
33
|
-
return _reactInstantsearchDom.DynamicWidgets;
|
|
34
|
-
}
|
|
35
|
-
});
|
|
36
|
-
Object.defineProperty(exports, "ExperimentalConfigureRelatedItems", {
|
|
37
|
-
enumerable: true,
|
|
38
|
-
get: function get() {
|
|
39
|
-
return _reactInstantsearchDom.ExperimentalConfigureRelatedItems;
|
|
40
|
-
}
|
|
41
|
-
});
|
|
42
|
-
Object.defineProperty(exports, "ExperimentalDynamicWidgets", {
|
|
43
|
-
enumerable: true,
|
|
44
|
-
get: function get() {
|
|
45
|
-
return _reactInstantsearchDom.ExperimentalDynamicWidgets;
|
|
46
|
-
}
|
|
47
|
-
});
|
|
48
|
-
Object.defineProperty(exports, "HierarchicalMenu", {
|
|
49
|
-
enumerable: true,
|
|
50
|
-
get: function get() {
|
|
51
|
-
return _reactInstantsearchDom.HierarchicalMenu;
|
|
52
|
-
}
|
|
53
|
-
});
|
|
54
|
-
Object.defineProperty(exports, "Highlight", {
|
|
55
|
-
enumerable: true,
|
|
56
|
-
get: function get() {
|
|
57
|
-
return _reactInstantsearchDom.Highlight;
|
|
58
|
-
}
|
|
59
|
-
});
|
|
60
|
-
Object.defineProperty(exports, "Hits", {
|
|
61
|
-
enumerable: true,
|
|
62
|
-
get: function get() {
|
|
63
|
-
return _reactInstantsearchDom.Hits;
|
|
64
|
-
}
|
|
65
|
-
});
|
|
66
|
-
Object.defineProperty(exports, "HitsPerPage", {
|
|
67
|
-
enumerable: true,
|
|
68
|
-
get: function get() {
|
|
69
|
-
return _reactInstantsearchDom.HitsPerPage;
|
|
70
|
-
}
|
|
71
|
-
});
|
|
72
|
-
Object.defineProperty(exports, "Index", {
|
|
73
|
-
enumerable: true,
|
|
74
|
-
get: function get() {
|
|
75
|
-
return _reactInstantsearchDom.Index;
|
|
76
|
-
}
|
|
77
|
-
});
|
|
78
|
-
Object.defineProperty(exports, "InfiniteHits", {
|
|
79
|
-
enumerable: true,
|
|
80
|
-
get: function get() {
|
|
81
|
-
return _reactInstantsearchDom.InfiniteHits;
|
|
82
|
-
}
|
|
83
|
-
});
|
|
84
|
-
Object.defineProperty(exports, "InstantSearch", {
|
|
85
|
-
enumerable: true,
|
|
86
|
-
get: function get() {
|
|
87
|
-
return _reactInstantsearchDom.InstantSearch;
|
|
88
|
-
}
|
|
89
|
-
});
|
|
90
|
-
Object.defineProperty(exports, "Menu", {
|
|
91
|
-
enumerable: true,
|
|
92
|
-
get: function get() {
|
|
93
|
-
return _reactInstantsearchDom.Menu;
|
|
94
|
-
}
|
|
95
|
-
});
|
|
96
|
-
Object.defineProperty(exports, "MenuSelect", {
|
|
97
|
-
enumerable: true,
|
|
98
|
-
get: function get() {
|
|
99
|
-
return _reactInstantsearchDom.MenuSelect;
|
|
100
|
-
}
|
|
101
|
-
});
|
|
102
|
-
Object.defineProperty(exports, "NumericMenu", {
|
|
103
|
-
enumerable: true,
|
|
104
|
-
get: function get() {
|
|
105
|
-
return _reactInstantsearchDom.NumericMenu;
|
|
106
|
-
}
|
|
107
|
-
});
|
|
108
|
-
Object.defineProperty(exports, "Pagination", {
|
|
109
|
-
enumerable: true,
|
|
110
|
-
get: function get() {
|
|
111
|
-
return _reactInstantsearchDom.Pagination;
|
|
112
|
-
}
|
|
113
|
-
});
|
|
114
|
-
Object.defineProperty(exports, "Panel", {
|
|
115
|
-
enumerable: true,
|
|
116
|
-
get: function get() {
|
|
117
|
-
return _reactInstantsearchDom.Panel;
|
|
118
|
-
}
|
|
119
|
-
});
|
|
120
|
-
Object.defineProperty(exports, "PoweredBy", {
|
|
121
|
-
enumerable: true,
|
|
122
|
-
get: function get() {
|
|
123
|
-
return _reactInstantsearchDom.PoweredBy;
|
|
124
|
-
}
|
|
125
|
-
});
|
|
126
|
-
Object.defineProperty(exports, "RangeInput", {
|
|
127
|
-
enumerable: true,
|
|
128
|
-
get: function get() {
|
|
129
|
-
return _reactInstantsearchDom.RangeInput;
|
|
130
|
-
}
|
|
131
|
-
});
|
|
132
|
-
Object.defineProperty(exports, "RangeSlider", {
|
|
133
|
-
enumerable: true,
|
|
134
|
-
get: function get() {
|
|
135
|
-
return _reactInstantsearchDom.RangeSlider;
|
|
136
|
-
}
|
|
137
|
-
});
|
|
138
|
-
Object.defineProperty(exports, "RatingMenu", {
|
|
139
|
-
enumerable: true,
|
|
140
|
-
get: function get() {
|
|
141
|
-
return _reactInstantsearchDom.RatingMenu;
|
|
142
|
-
}
|
|
143
|
-
});
|
|
144
|
-
Object.defineProperty(exports, "RefinementList", {
|
|
145
|
-
enumerable: true,
|
|
146
|
-
get: function get() {
|
|
147
|
-
return _reactInstantsearchDom.RefinementList;
|
|
148
|
-
}
|
|
149
|
-
});
|
|
150
|
-
Object.defineProperty(exports, "RelevantSort", {
|
|
151
|
-
enumerable: true,
|
|
152
|
-
get: function get() {
|
|
153
|
-
return _reactInstantsearchDom.RelevantSort;
|
|
154
|
-
}
|
|
155
|
-
});
|
|
156
|
-
Object.defineProperty(exports, "ScrollTo", {
|
|
157
|
-
enumerable: true,
|
|
158
|
-
get: function get() {
|
|
159
|
-
return _reactInstantsearchDom.ScrollTo;
|
|
160
|
-
}
|
|
161
|
-
});
|
|
162
|
-
Object.defineProperty(exports, "SearchBox", {
|
|
163
|
-
enumerable: true,
|
|
164
|
-
get: function get() {
|
|
165
|
-
return _reactInstantsearchDom.SearchBox;
|
|
166
|
-
}
|
|
167
|
-
});
|
|
168
|
-
Object.defineProperty(exports, "Snippet", {
|
|
169
|
-
enumerable: true,
|
|
170
|
-
get: function get() {
|
|
171
|
-
return _reactInstantsearchDom.Snippet;
|
|
172
|
-
}
|
|
173
|
-
});
|
|
174
|
-
Object.defineProperty(exports, "SortBy", {
|
|
175
|
-
enumerable: true,
|
|
176
|
-
get: function get() {
|
|
177
|
-
return _reactInstantsearchDom.SortBy;
|
|
178
|
-
}
|
|
179
|
-
});
|
|
180
|
-
Object.defineProperty(exports, "Stats", {
|
|
181
|
-
enumerable: true,
|
|
182
|
-
get: function get() {
|
|
183
|
-
return _reactInstantsearchDom.Stats;
|
|
184
|
-
}
|
|
185
|
-
});
|
|
186
|
-
Object.defineProperty(exports, "ToggleRefinement", {
|
|
187
|
-
enumerable: true,
|
|
188
|
-
get: function get() {
|
|
189
|
-
return _reactInstantsearchDom.ToggleRefinement;
|
|
190
|
-
}
|
|
191
|
-
});
|
|
192
|
-
Object.defineProperty(exports, "getInsightsAnonymousUserToken", {
|
|
193
|
-
enumerable: true,
|
|
194
|
-
get: function get() {
|
|
195
|
-
return _reactInstantsearchDom.getInsightsAnonymousUserToken;
|
|
196
|
-
}
|
|
197
|
-
});
|
|
198
|
-
var _reactInstantsearchDom = require("react-instantsearch-dom");
|
package/dist/es/connectors.js
DELETED
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
export { connectAutoComplete } from 'react-instantsearch-core';
|
|
2
|
-
export { connectBreadcrumb } from 'react-instantsearch-core';
|
|
3
|
-
export { connectConfigure } from 'react-instantsearch-core';
|
|
4
|
-
export { EXPERIMENTAL_connectConfigureRelatedItems } from 'react-instantsearch-core';
|
|
5
|
-
export { connectDynamicWidgets, EXPERIMENTAL_connectDynamicWidgets } from 'react-instantsearch-core';
|
|
6
|
-
export { connectCurrentRefinements } from 'react-instantsearch-core';
|
|
7
|
-
export { connectGeoSearch } from 'react-instantsearch-core';
|
|
8
|
-
export { connectHierarchicalMenu } from 'react-instantsearch-core';
|
|
9
|
-
export { connectHighlight } from 'react-instantsearch-core';
|
|
10
|
-
export { connectHitInsights } from 'react-instantsearch-core';
|
|
11
|
-
export { connectHits } from 'react-instantsearch-core';
|
|
12
|
-
export { connectHitsPerPage } from 'react-instantsearch-core';
|
|
13
|
-
export { connectInfiniteHits } from 'react-instantsearch-core';
|
|
14
|
-
export { connectMenu } from 'react-instantsearch-core';
|
|
15
|
-
export { connectNumericMenu } from 'react-instantsearch-core';
|
|
16
|
-
export { connectPagination } from 'react-instantsearch-core';
|
|
17
|
-
export { connectPoweredBy } from 'react-instantsearch-core';
|
|
18
|
-
export { connectRange } from 'react-instantsearch-core';
|
|
19
|
-
export { connectRefinementList } from 'react-instantsearch-core';
|
|
20
|
-
export { connectScrollTo } from 'react-instantsearch-core';
|
|
21
|
-
export { connectSearchBox } from 'react-instantsearch-core';
|
|
22
|
-
export { connectRelevantSort } from 'react-instantsearch-core';
|
|
23
|
-
export { connectSortBy } from 'react-instantsearch-core';
|
|
24
|
-
export { connectStateResults } from 'react-instantsearch-core';
|
|
25
|
-
export { connectStats } from 'react-instantsearch-core';
|
|
26
|
-
export { connectToggleRefinement } from 'react-instantsearch-core';
|
package/dist/es/dom.js
DELETED
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
export { InstantSearch } from 'react-instantsearch-dom';
|
|
2
|
-
export { Index } from 'react-instantsearch-dom';
|
|
3
|
-
export { Breadcrumb } from 'react-instantsearch-dom';
|
|
4
|
-
export { ClearRefinements } from 'react-instantsearch-dom';
|
|
5
|
-
export { Configure } from 'react-instantsearch-dom';
|
|
6
|
-
export { ExperimentalConfigureRelatedItems } from 'react-instantsearch-dom';
|
|
7
|
-
export { DynamicWidgets, ExperimentalDynamicWidgets } from 'react-instantsearch-dom';
|
|
8
|
-
export { CurrentRefinements } from 'react-instantsearch-dom';
|
|
9
|
-
export { HierarchicalMenu } from 'react-instantsearch-dom';
|
|
10
|
-
export { Highlight } from 'react-instantsearch-dom';
|
|
11
|
-
export { Hits } from 'react-instantsearch-dom';
|
|
12
|
-
export { HitsPerPage } from 'react-instantsearch-dom';
|
|
13
|
-
export { InfiniteHits } from 'react-instantsearch-dom';
|
|
14
|
-
export { Menu } from 'react-instantsearch-dom';
|
|
15
|
-
export { MenuSelect } from 'react-instantsearch-dom';
|
|
16
|
-
export { NumericMenu } from 'react-instantsearch-dom';
|
|
17
|
-
export { Pagination } from 'react-instantsearch-dom';
|
|
18
|
-
export { Panel } from 'react-instantsearch-dom';
|
|
19
|
-
export { PoweredBy } from 'react-instantsearch-dom';
|
|
20
|
-
export { RangeInput } from 'react-instantsearch-dom';
|
|
21
|
-
export { RangeSlider } from 'react-instantsearch-dom';
|
|
22
|
-
export { RatingMenu } from 'react-instantsearch-dom';
|
|
23
|
-
export { RefinementList } from 'react-instantsearch-dom';
|
|
24
|
-
export { ScrollTo } from 'react-instantsearch-dom';
|
|
25
|
-
export { SearchBox } from 'react-instantsearch-dom';
|
|
26
|
-
export { RelevantSort } from 'react-instantsearch-dom';
|
|
27
|
-
export { Snippet } from 'react-instantsearch-dom';
|
|
28
|
-
export { SortBy } from 'react-instantsearch-dom';
|
|
29
|
-
export { Stats } from 'react-instantsearch-dom';
|
|
30
|
-
export { ToggleRefinement } from 'react-instantsearch-dom';
|
|
31
|
-
export { getInsightsAnonymousUserToken } from 'react-instantsearch-dom';
|
package/dist/es/native.js
DELETED
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
export { InstantSearch } from 'react-instantsearch-native';
|
|
2
|
-
export { Index } from 'react-instantsearch-native';
|
|
3
|
-
export { Configure } from 'react-instantsearch-native';
|
|
4
|
-
export { ExperimentalConfigureRelatedItems } from 'react-instantsearch-native';
|
|
5
|
-
export { DynamicWidgets, ExperimentalDynamicWidgets } from 'react-instantsearch-native';
|
package/dist/es/server.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { createInstantSearch } from 'react-instantsearch-dom/server';
|
package/dist/index.js
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
Object.defineProperty(exports, "createConnector", {
|
|
7
|
-
enumerable: true,
|
|
8
|
-
get: function get() {
|
|
9
|
-
return _reactInstantsearchCore.createConnector;
|
|
10
|
-
}
|
|
11
|
-
});
|
|
12
|
-
var _reactInstantsearchCore = require("react-instantsearch-core");
|