react-input-chips 0.3.2 → 0.3.4

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 +4 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -12,6 +12,7 @@ You have full control over
12
12
  - chip conversion trigger
13
13
 
14
14
  ## Demo
15
+ [Sandbox example](https://codesandbox.io/p/sandbox/shf8wx)
15
16
 
16
17
  ![react-chips](https://github.com/user-attachments/assets/ba33d40e-63ea-46fa-8011-d418ea211a0a)
17
18
 
@@ -31,14 +32,14 @@ You just need to import the `<InputChips/>` component in the file you want the *
31
32
  The following is the path to it
32
33
 
33
34
  ```bash
34
- import "../node_modules/react-input-chip-beta/dist/index.css";
35
+ import "../node_modules/react-input-chips/dist/index.css";
35
36
  ```
36
37
 
37
38
  Hers is the simple plain example
38
39
 
39
40
  ```javascript
40
41
  import { useState } from "react";
41
- import { InputChips } from "react-input-chip-beta";
42
+ import { InputChips } from "react-input-chips";
42
43
 
43
44
  const MyComponent = () => {
44
45
  const [chips, setChips] = useState<string[]>([]);
@@ -142,7 +143,7 @@ Any suggestions are welcome.
142
143
 
143
144
  ## Support
144
145
 
145
- For support, email meetbhalodiya1030@gmail.com or open a discussion/issue
146
+ For support, email at meetbhalodiya1030@gmail.com or open a discussion/issue
146
147
 
147
148
  ## Authors
148
149
 
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.4",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",
7
7
  "types": "./dist/index.d.ts",