@alignui/cli 0.0.5 → 0.0.6
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 +18 -0
- package/dist/index.js +29 -26
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -37,6 +37,13 @@ This command will:
|
|
|
37
37
|
> [!NOTE]
|
|
38
38
|
> A CSS file with Tailwind directives and a `tailwind.config` file must exist in your project.
|
|
39
39
|
|
|
40
|
+
## What's New in v0.0.6
|
|
41
|
+
|
|
42
|
+
- 🐛 **Bug Fixes**: Fixed typography [object Object] rendering issues
|
|
43
|
+
- 🔧 **Complete Typography System**: All typography properties (fontSize, lineHeight, letterSpacing, fontWeight) now properly exported
|
|
44
|
+
- 🔄 **Backward Compatibility**: Legacy TypeScript exports available for v0.0.2 migration
|
|
45
|
+
- ✨ **Enhanced Shadow System**: Fixed theme() references for Tailwind v4.1 compatibility
|
|
46
|
+
|
|
40
47
|
## What's New in v0.0.3
|
|
41
48
|
|
|
42
49
|
- ✨ **Tailwind CSS v4.1 Support**: Full compatibility with the latest Tailwind CSS
|
|
@@ -45,6 +52,17 @@ This command will:
|
|
|
45
52
|
- ⚡ **Simplified Setup**: Streamlined installation process
|
|
46
53
|
- 🔧 **Modern CSS Features**: Support for cascade layers and advanced CSS properties
|
|
47
54
|
|
|
55
|
+
## Migration from v0.0.2
|
|
56
|
+
|
|
57
|
+
If you're migrating from v0.0.2, you can still use TypeScript exports for backward compatibility:
|
|
58
|
+
|
|
59
|
+
```typescript
|
|
60
|
+
// For backward compatibility
|
|
61
|
+
import { texts, shadows, borderRadii } from '@alignui/cli/legacy-exports';
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
However, we recommend using the new CSS-first approach with `@theme` variables for better performance and Tailwind v4.1 compatibility.
|
|
65
|
+
|
|
48
66
|
## License
|
|
49
67
|
|
|
50
68
|
[MIT](./LICENSE)
|