File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 44
55## Unreleased
66
7+ ## [ 0.13.3] - 2026-03-14
8+
9+ ### Changed
10+
11+ - Allow ` popovertarget ` attribute on button component.
12+
713## [ 0.13.2] - 2026-03-04
814
915### Changed
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ The package can be installed by adding `doggo` to your list of dependencies in
1616``` elixir
1717def deps do
1818 [
19- {:doggo , " ~> 0.13.2 " }
19+ {:doggo , " ~> 0.13.3 " }
2020 ]
2121end
2222```
Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ defmodule Doggo.Components.Button do
9090 default: "button"
9191
9292 attr :disabled , :boolean , default: nil
93- attr :rest , :global , include: ~w( autofocus form name value)
93+ attr :rest , :global , include: ~w( autofocus form name popovertarget value)
9494
9595 slot :inner_block , required: true
9696 end
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ defmodule Doggo.MixProject do
22 use Mix.Project
33
44 @ source_url "https://github.com/woylie/doggo"
5- @ version "0.13.2 "
5+ @ version "0.13.3 "
66
77 def project do
88 [
You can’t perform that action at this time.
0 commit comments