mentionize 0.0.4 → 0.0.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.
Files changed (2) hide show
  1. package/README.md +8 -1
  2. package/package.json +5 -1
package/README.md CHANGED
@@ -1,4 +1,11 @@
1
- # Mentionize
1
+ ![License](https://img.shields.io/badge/License-MIT-green?style=for-the-badge)
2
+
3
+ <p align="center">
4
+ <img src="./.github/assets/logo.png" width="700"/>
5
+ </p>
6
+ <h1 align="center">
7
+ Mentionize
8
+ </h1>
2
9
 
3
10
  A React library for building mention inputs with support for multiple triggers, async search, and full customization. It provides a transparent textarea overlaid on a highlighted div to display mentions, and a dropdown for suggestions. With zero dependencies other than React.
4
11
 
package/package.json CHANGED
@@ -1,7 +1,11 @@
1
1
  {
2
2
  "name": "mentionize",
3
3
  "author": "canta2899",
4
- "version": "0.0.4",
4
+ "version": "0.0.5",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "https://github.com/canta2899/mentionize"
8
+ },
5
9
  "description": "A dependency-free React mention input with support for multiple triggers, async search, and full customization",
6
10
  "type": "module",
7
11
  "main": "./dist/cjs/index.js",