@usereactify/search 2.1.0-beta.4 → 2.1.0-beta.5

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 CHANGED
@@ -40,7 +40,7 @@ npm run storybook
40
40
  npm run release
41
41
 
42
42
  # release a beta version
43
- change the version in package.json or npm version prerelease --preid beta or npm version prerelease
43
+ npm run release -- --prerelease beta
44
44
 
45
- publish-beta
45
+ npm publish --tag beta
46
46
  ```
@@ -0,0 +1,12 @@
1
+ export interface ReactivesearchFilterProps {
2
+ loading: boolean;
3
+ error: Error | null;
4
+ handleChange: () => void;
5
+ data: {
6
+ doc_count: number;
7
+ key: string;
8
+ }[];
9
+ value: string | {
10
+ [key: string]: boolean;
11
+ };
12
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ // props passed to SingleList/MultiList.render
3
+ Object.defineProperty(exports, "__esModule", { value: true });
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@usereactify/search",
3
3
  "description": "React UI library for Reactify Search",
4
- "version": "2.1.0-beta.4",
4
+ "version": "2.1.0-beta.5",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",