Skip to content

Releases: bladeuix/components

v3.0.0

Choose a tag to compare

@njoguamos njoguamos released this 23 Aug 03:08
95fa73b

What's Changed

New Contributors

  • @github-actions[bot] made their first contribution in #16

Full Changelog: v2.0.1...v3.0.0

v2.0.1

Choose a tag to compare

@njoguamos njoguamos released this 20 Aug 21:53
93bda1b
  • Added changelog documentation.

Full Changelog: v2.0.0...v2.0.1

v2.0.0

Choose a tag to compare

@njoguamos njoguamos released this 20 Aug 21:38
65a6d4e

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.0

Breaking changes

Avatar

  • Replace status with presence (online or offline).
  • Replace placeholder and its slotted content with abbreviation.
  • Replace slotted image markup with image-src and image-alt.
  • Use boolean rounded for 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

Choose a tag to compare

@njoguamos njoguamos released this 20 Aug 11:03
35a207e

What's Changed

Full Changelog: v1.1.0...v1.2.0

v1.1.0

Choose a tag to compare

@njoguamos njoguamos released this 20 Aug 04:06
bf25b91

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

Full Changelog: v1.0.0...v1.1.0

v1.0.0

Choose a tag to compare

@njoguamos njoguamos released this 10 Jun 17:32
5f3ca6f

What's Changed

Released with the first 10 stable components.

  1. Accordion
  2. Badge
  3. Breadcrumbs
  4. Button
  5. Link
  6. Loading
  7. Progress
  8. Radial progress
  9. Status
  10. Table

Full Changelog: v0.1.0-alpha.3...v1.0.0

v0.1.0-alpha.4

v0.1.0-alpha.4 Pre-release
Pre-release

Choose a tag to compare

@njoguamos njoguamos released this 22 Apr 22:52
5f3ca6f

What's Changed

Full Changelog: v0.1.0-alpha.3...v0.1.0-alpha.4

v0.1.0-alpha.3

v0.1.0-alpha.3 Pre-release
Pre-release

Choose a tag to compare

@njoguamos njoguamos released this 19 Apr 22:39
d8b6ef4

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.2 Pre-release
Pre-release

Choose a tag to compare

@njoguamos njoguamos released this 18 Apr 12:26

What New

  • Remove un-used view folder

Full Changelog: v0.1.0-alpha.1...v0.1.0-alpha.2

v0.1.0-alpha.1

v0.1.0-alpha.1 Pre-release
Pre-release

Choose a tag to compare

@njoguamos njoguamos released this 12 Apr 13:39

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

Full Changelog: https://github.com/bladeuix/daisyui/commits/v0.1.0-alpha.1