github developermithu/tallcraftui v1.2.0

latest releases: v2.0.5, v2.0.3, v2.0.2...
15 months ago

What's Changed

  • Textarea: added auto-resize attribute
  • Badge: new component 🎉
  • Toggle: new component 🎉
  • Updated config/tallcraftui.php
  • Added Tailwindcss missing colors emerald teal blue indigo violet
  • Added support tailwind merge laravel

Update Config File

php artisan vendor:publish --tag=tallcraftui-config --force

Make sure to clear the view cache php artisan view:clear

Breaking Changes

  • Removed color support tertiary warning danger info success

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

Don't miss a new tallcraftui release

NewReleases is sending notifications on new releases.