react-input-chips 0.3.2 → 0.3.3

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.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -31,14 +31,14 @@ You just need to import the `<InputChips/>` component in the file you want the *
31
31
  The following is the path to it
32
32
 
33
33
  ```bash
34
- import "../node_modules/react-input-chip-beta/dist/index.css";
34
+ import "../node_modules/react-input-chips/dist/index.css";
35
35
  ```
36
36
 
37
37
  Hers is the simple plain example
38
38
 
39
39
  ```javascript
40
40
  import { useState } from "react";
41
- import { InputChips } from "react-input-chip-beta";
41
+ import { InputChips } from "react-input-chips";
42
42
 
43
43
  const MyComponent = () => {
44
44
  const [chips, setChips] = useState<string[]>([]);
@@ -142,7 +142,7 @@ Any suggestions are welcome.
142
142
 
143
143
  ## Support
144
144
 
145
- For support, email meetbhalodiya1030@gmail.com or open a discussion/issue
145
+ For support, email at meetbhalodiya1030@gmail.com or open a discussion/issue
146
146
 
147
147
  ## Authors
148
148
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "react-input-chips",
3
3
  "private": false,
4
- "version": "0.3.2",
4
+ "version": "0.3.3",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",
7
7
  "types": "./dist/index.d.ts",