overflow-toolbar 0.2.0 → 0.2.1
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 +17 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -7,7 +7,11 @@
|
|
|
7
7
|
|
|
8
8
|
A responsive toolbar overflow component that automatically collapses items into a dropdown menu as the container shrinks. Items transition through three states: **visible** → **min** (icon-only) → **hidden** (moved to menu).
|
|
9
9
|
|
|
10
|
-
<
|
|
10
|
+
<p align="center">
|
|
11
|
+
<a href="https://wesjones.github.io/overflow/">
|
|
12
|
+
<img src="./assets/live-demo.svg" alt="Live Demo" />
|
|
13
|
+
</a>
|
|
14
|
+
</p>
|
|
11
15
|
|
|
12
16
|
## Features
|
|
13
17
|
|
|
@@ -27,6 +31,18 @@ A responsive toolbar overflow component that automatically collapses items into
|
|
|
27
31
|
npm install overflow-toolbar
|
|
28
32
|
```
|
|
29
33
|
|
|
34
|
+
or
|
|
35
|
+
|
|
36
|
+
```bash
|
|
37
|
+
pnpm add overflow-toolbar
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
or
|
|
41
|
+
|
|
42
|
+
```bash
|
|
43
|
+
yarn add overflow-toolbar
|
|
44
|
+
```
|
|
45
|
+
|
|
30
46
|
## Quick Start
|
|
31
47
|
|
|
32
48
|
### Radix UI / shadcn (React)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "overflow-toolbar",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Responsive toolbar overflow component — items automatically collapse into a dropdown menu as the container shrinks. Supports visible, icon-only (min), and hidden states. Ships with React (Radix UI), MUI, and vanilla JS implementations.",
|
|
6
6
|
"license": "MIT",
|