glasswind 0.1.1 → 0.1.2
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 +2 -6
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -90,7 +90,7 @@ Glasswind is driven entirely by CSS variables. Override any of them on `:root` (
|
|
|
90
90
|
<html data-theme="dark">
|
|
91
91
|
```
|
|
92
92
|
|
|
93
|
-
|
|
93
|
+
Every theme token is a CSS variable prefixed `--gl-` — override any of them to restyle the whole library.
|
|
94
94
|
|
|
95
95
|
## 🧩 Components
|
|
96
96
|
|
|
@@ -98,7 +98,7 @@ Buttons · Inputs · Textarea · Select · Checkbox · Radio · Switch · Slider
|
|
|
98
98
|
Card · Badge · Avatar · Accordion · Tabs · Progress · Spinner ·
|
|
99
99
|
Modal · Drawer · Dropdown · Tooltip · Toast — and growing.
|
|
100
100
|
|
|
101
|
-
|
|
101
|
+
Every component is written in TypeScript and ships full type definitions, so your editor's autocomplete surfaces all props, variants, and sizes as you type.
|
|
102
102
|
|
|
103
103
|
## 🛠️ Local development
|
|
104
104
|
|
|
@@ -111,10 +111,6 @@ npm run typecheck # type-check without emitting
|
|
|
111
111
|
|
|
112
112
|
The **playground** (`playground/`) renders every component over an animated gradient so you can see the glass effect while you build.
|
|
113
113
|
|
|
114
|
-
## 📦 Publishing & hosting
|
|
115
|
-
|
|
116
|
-
Step-by-step guide to push to **GitHub**, publish to **npm**, and host the docs site on **Vercel**: [`docs/PUBLISHING.md`](docs/PUBLISHING.md).
|
|
117
|
-
|
|
118
114
|
## 📄 License
|
|
119
115
|
|
|
120
116
|
[MIT](LICENSE) — free for personal and commercial use.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "glasswind",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Glasswind — a glassmorphism React component library. Beautiful frosted-glass UI components with smooth, GPU-accelerated animations for React & Next.js.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"glasswind",
|
|
@@ -16,12 +16,12 @@
|
|
|
16
16
|
"component-library",
|
|
17
17
|
"tailwind-alternative"
|
|
18
18
|
],
|
|
19
|
-
"author": "Aviral Yadav",
|
|
19
|
+
"author": "Aviral Yadav",
|
|
20
20
|
"license": "MIT",
|
|
21
21
|
"homepage": "https://github.com/aviralyadav-av/glasswind.git#readme",
|
|
22
22
|
"repository": {
|
|
23
23
|
"type": "git",
|
|
24
|
-
|
|
24
|
+
"url": "git+https://github.com/aviralyadav-av/glasswind.git"
|
|
25
25
|
},
|
|
26
26
|
"bugs": {
|
|
27
27
|
"url": "https://github.com/aviralyadav-av/glasswind/issues"
|