Skip to content

Commit

Permalink
release 0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
phcurado committed Jun 3, 2024
1 parent 0f3a607 commit bc08049
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion lib/daisy_ui_components/modal.ex
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,7 @@ defmodule DaisyUIComponents.Modal do

attr :modal_id, :string, required: true
attr :class, :string, default: nil
attr :content_class, :string, default: nil
attr :closable, :boolean, default: true
attr :rest, :global
slot :inner_block
Expand All @@ -155,7 +156,7 @@ defmodule DaisyUIComponents.Modal do
>
</label>
<div id={"#{@modal_id}-content"}>
<div id={"#{@modal_id}-content"} , class={@content_class}>
<%= render_slot(@inner_block) %>
</div>
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ defmodule DaisyUIComponents.MixProject do
use Mix.Project

@source_url "https://github.com/phcurado/daisy_ui_components"
@version "0.1.1"
@version "0.1.2"

def project do
[
Expand Down

0 comments on commit bc08049

Please sign in to comment.