Releases: bladeuix/components
Releases · bladeuix/components
Release list
v3.0.0
What's Changed
- Add checkbox component by @njoguamos in #14
- style: apply code format fixes by @github-actions[bot] in #16
- Add tabs component with Tab.php implementation by @njoguamos in #15
- Remove label from checkbox by @njoguamos in #17
- Add radio component by @njoguamos in #18
- style: apply code format fixes by @github-actions[bot] in #20
- Remove blade components name by @njoguamos in #19
- Change namespace and repo name by @njoguamos in #21
- Rename daisyui to bladeuix by @njoguamos in #22
- Document pros and slots by @njoguamos in #23
- Refactor documenation to markdown format by @njoguamos in #24
New Contributors
- @github-actions[bot] made their first contribution in #16
Full Changelog: v2.0.1...v3.0.0
v2.0.1
- Added changelog documentation.
Full Changelog: v2.0.0...v2.0.1
v2.0.0
BladeUIX DaisyUI v2.0.0 introduces Card, Carousel, CarouselItem, and AvatarGroup, and updates the Avatar API. Please review the Avatar upgrade notes before updating from v1.2.0.
Installation / update
composer require bladeuix/daisyui:^2.0Breaking changes
Avatar
- Replace
statuswithpresence(onlineoroffline). - Replace
placeholderand its slotted content withabbreviation. - Replace slotted image markup with
image-srcandimage-alt. - Use boolean
roundedfor circular avatars. - Replace
<x-daisyui::avatar group>with<x-daisyui::avatar-group>. - Arbitrary slotted Avatar markup is no longer supported.
Upgrade Avatar usage
Image avatar
{{-- v1.x --}}
<x-daisyui::avatar>
<div class="w-24 rounded">
<img src="https://example.com/avatar.jpg" alt="Jane Doe" />
</div>
</x-daisyui::avatar>
{{-- v2.0 --}}
<x-daisyui::avatar
image-src="https://example.com/avatar.jpg"
image-alt="Jane Doe"
class="w-24"
/>Presence
{{-- v1.x --}}
<x-daisyui::avatar status="online">
<div class="w-24 rounded-full">
<img src="https://example.com/avatar.jpg" alt="Jane Doe" />
</div>
</x-daisyui::avatar>
{{-- v2.0 --}}
<x-daisyui::avatar
presence="online"
image-src="https://example.com/avatar.jpg"
image-alt="Jane Doe"
rounded
class="w-24"
/>Use presence="offline" for an offline avatar.
Placeholder
{{-- v1.x --}}
<x-daisyui::avatar placeholder>
<div class="w-24 rounded-full bg-neutral text-neutral-content">
<span class="text-3xl">JD</span>
</div>
</x-daisyui::avatar>
{{-- v2.0 --}}
<x-daisyui::avatar
abbreviation="JD"
rounded
class="w-24 bg-neutral text-neutral-content"
/>A non-empty abbreviation, including "0", renders the placeholder instead of the image.
Avatar groups
{{-- v1.x --}}
<x-daisyui::avatar group class="-space-x-6">
<x-daisyui::avatar>...</x-daisyui::avatar>
<x-daisyui::avatar>...</x-daisyui::avatar>
</x-daisyui::avatar>
{{-- v2.0 --}}
<x-daisyui::avatar-group class="-space-x-6">
<x-daisyui::avatar image-src="https://example.com/one.jpg" image-alt="First person" />
<x-daisyui::avatar image-src="https://example.com/two.jpg" image-alt="Second person" />
</x-daisyui::avatar-group>What's Changed
- Add Aura, Avatar, and AvatarGroup.
- Add Card with title, image, size, style, layout, and actions support.
- Add Carousel and CarouselItem with snapping, direction, image, and optional slot-content support.
Full Changelog: v1.2.0...v2.0.0
v1.2.0
v1.1.0
What's Changed
- Bump actions/checkout from 6 to 7 by @dependabot[bot] in #7
- Flatten documentation structure and switch to Blade format by @njoguamos in #8
New Contributors
- @dependabot[bot] made their first contribution in #7
Full Changelog: v1.0.0...v1.1.0
v1.0.0
What's Changed
Released with the first 10 stable components.
Full Changelog: v0.1.0-alpha.3...v1.0.0
v0.1.0-alpha.4
What's Changed
- Add Badge component by @njoguamos in #5
- Add Table components by @njoguamos in #6
Full Changelog: v0.1.0-alpha.3...v0.1.0-alpha.4
v0.1.0-alpha.3
What's Changed
- Add Accordion component with customizable attributes by @njoguamos in #3
- Add Breadcrumbs and BreadcrumbLink components by @njoguamos in #4
Full Changelog: v0.1.0-alpha.2...v0.1.0-alpha.3
v0.1.0-alpha.2
v0.1.0-alpha.1
What's Changed
- Add initial testing setup and GitHub Actions workflow by @njoguamos in #1
- Add Button, Link, Status and Loading Components
- Finalise button component by @njoguamos in #2
New Contributors
- @njoguamos made their first contribution in #1
Full Changelog: https://github.com/bladeuix/daisyui/commits/v0.1.0-alpha.1