What's Changed
- Textarea: added
auto-resizeattribute - Badge: new component 🎉
- Toggle: new component 🎉
- Updated
config/tallcraftui.php - Added Tailwindcss missing colors
emeraldtealblueindigoviolet - Added support tailwind merge laravel
Update Config File
php artisan vendor:publish --tag=tallcraftui-config --forceMake sure to clear the view cache php artisan view:clear
Breaking Changes
- Removed color support
tertiarywarningdangerinfosuccess
Before ❌
export default {
theme: {
extend: {
// .....
colors: {
primary: "#6d28d9",
secondary: "#a21caf",
tertiary: "#00BBC9",
danger: "#b91c1c",
warning: "#a16207",
success: "#15803d",
info: "#1d4ed8",
},
},
},
};After ✅
export default {
theme: {
extend: {
// .....
colors: {
primary: "#6d28d9",
secondary: "#a21caf",
},
},
},
};Full Changelog: v1.1.3...v1.2.0