@creativoma/liquid-glass 1.0.0 → 1.0.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.
Files changed (3) hide show
  1. package/CHANGELOG.md +28 -0
  2. package/README.md +4 -11
  3. package/package.json +2 -1
package/CHANGELOG.md ADDED
@@ -0,0 +1,28 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+ ## [1.0.1] - 2025-10-22
9
+
10
+ ### Fixed
11
+
12
+ - Updated SVG structure and styling for improved favicon appearance
13
+
14
+ ### Documentation
15
+
16
+ - Added screenshot to README for better visual reference
17
+
18
+ ## [1.0.0] - 2025-10-22
19
+
20
+ ### Added
21
+
22
+ - Initial release of Liquid Glass component
23
+ - React wrapper component with liquid frosted glass effect
24
+ - Full TypeScript support
25
+ - TailwindCSS integration
26
+ - Customizable backdrop blur, tint color, and displacement scale
27
+ - SVG filter effects for liquid glass appearance
28
+ - Support for polymorphic component API (`as` prop)
package/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # @creativoma/liquid-glass
2
2
 
3
+ ![Screenshot](public/screenshot.jpeg)
4
+
3
5
  A modern React component with liquid frosted glass effect using TailwindCSS. Perfect for creating elegant interfaces with glassmorphism effect.
4
6
 
5
7
  [![npm version](https://img.shields.io/npm/v/@creativoma/liquid-glass.svg)](https://www.npmjs.com/package/@creativoma/liquid-glass)
@@ -223,15 +225,6 @@ Contributions are welcome! Please:
223
225
 
224
226
  MIT © [creativoma](https://github.com/creativoma)
225
227
 
226
- ## 🏷️ Changelog
227
-
228
- ### 1.0.0
228
+ ## 📜 Changelog
229
229
 
230
- - First version of LiquidGlass component
231
- - Frosted glass effect with backdrop-filter
232
- - Animated liquid effect with SVG filters (feTurbulence + feDisplacementMap)
233
- - Full customization of liquid effect (displacement scale, turbulence frequency, seed)
234
- - Support for polymorphic component with `as` prop
235
- - Full integration with TailwindCSS
236
- - Optimized build with tree-shaking
237
- - Full TypeScript support
230
+ See [CHANGELOG.md](./CHANGELOG.md) for a detailed list of changes.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@creativoma/liquid-glass",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "type": "module",
5
5
  "description": "A React wrapper component with liquid frosted glass effect using TailwindCSS",
6
6
  "main": "dist/index.js",
@@ -21,6 +21,7 @@
21
21
  "files": [
22
22
  "dist",
23
23
  "README.md",
24
+ "CHANGELOG.md",
24
25
  "LICENSE"
25
26
  ],
26
27
  "sideEffects": false,