@atawi/react-popover 1.0.0 → 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/README.md +5 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  # React Popover Component
6
6
 
7
- A fully-featured, accessible, and customizable popover component for React apps.
7
+ A lightweight, fully-featured, accessible, and customizable popover component for React apps.
8
8
 
9
9
  ## Features
10
10
 
@@ -18,6 +18,9 @@ A fully-featured, accessible, and customizable popover component for React apps.
18
18
  - 🖌️ Highly customizable styling
19
19
  - 📦 TypeScript support
20
20
  - ⚡ Optimized performance
21
+ - ❌ No external dependencies
22
+
23
+ ### [API documentation website](https://react-popover.netlify.app/)
21
24
 
22
25
  ## Installation
23
26
 
@@ -29,6 +32,7 @@ npm install @atawi/react-popover
29
32
 
30
33
  ```tsx
31
34
  import { Popover } from "@atawi/react-popover";
35
+ import "@atawi/react-popover/dist/style.css"; // Optional: Import default styles
32
36
 
33
37
  function App() {
34
38
  return (
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atawi/react-popover",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "A fully-featured, accessible, and customizable popover component for React applications",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",