Releases: developermithu/tallcraftui
Releases · developermithu/tallcraftui
v1.3.3
What's Changed
- Avatar : new component 🎉
- Alert : resize the size
Update config
php artisan vendor:publish --tag=tallcraftui-config --forceFull Changelog: v1.3.2...v1.3.3
v1.3.2
What's Changed
- Tooltip : new component 🎉
- Range : new component 🎉
- Clipboard : new component 🎉
- Accordion : remove
underlinewhen hover title
Update Config (optional)
php artisan vendor:publish --tag=tallcraftui-config --forceFull Changelog: v1.3.0...v1.3.2
v1.3.0
What's Changed
- Password : new component 🎉
- Color Picker : new component 🎉
- Tab : new component 🎉
- Accordion : new component 🎉
- Card : new component 🎉
and bug fixes..
Update config and tallcraftui.css
php artisan vendor:publish --tag=tallcraftui-config --force
php artisan vendor:publish --tag=tallcraftui-css --forceClear the view cache by running php artisan view:clear
Full Changelog: v1.2.9...v1.3.0
v1.2.9
What's Changed
- Spinner : new component 🥳🎉
- Toggle : added color and size variants
- Table : persist page layout after pagination & added
hoverableattribute
Full Changelog: v1.2.8...v1.2.9
v1.2.8
What's Changed
- Toggle : bug fix 🐛
- Table : new component 🥳🎉
Publish tallcraftui.css
php artisan vendor:publish --tag=tallcraftui-cssImport tallcraftui.css in the top of app.css
@import "./tallcraftui.css";
@tailwind base;
@tailwind components;
@tailwind utilities;Update Config
php artisan vendor:publish --tag=tallcraftui-config --forceClear the view cache by running php artisan view:clear
Full Changelog: v1.2.7...v1.2.8
v1.2.7
What's Changed
- Drawer : fix drawer dark color & title attribute
- Alert : fix title color
Full Changelog: v1.2.6...v1.2.7
v1.2.6
What's Changed
- Fix :
install:tallcraftuicommand - Dropdown : improvement with new
fadeslidefliprotateanimation attributes - Modal : added
without-trap-focusattribute andclosedispatch event - Drawer : new component 🎉
Full Changelog: v1.2.5...v1.2.6
v1.2.5
What's Changed
- Fix : focus border color
inputtextareaselectcomponents - Modal : added
dismissibleandblur-noneattribute - Dropdown : added
titleandiconattribute - Config : added
TALLCRAFTUI_PREFIXenv variable
Full Changelog: v1.2.4...v1.2.5
v1.2.4
What's Changed
- Stat : new component 🎉
- Menu : new component 🎉
- MenuItem : new component 🎉
- Separator : new component 🎉
- Dropdown : added
no-transitionattribute - Modal : added
no-transitionattribute - Config : refactor
config/tallcraftui.php
To Update Config File run the following command
php artisan vendor:publish --tag=tallcraftui-config --forceMake sure to clear the view cache after updating php artisan view:clear
Full Changelog: v1.2.1...v1.2.4
v1.2.0
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