Skip to content

v1.2.0

Compare
Choose a tag to compare
@developermithu developermithu released this 10 Aug 09:14
· 61 commits to main since this release

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