Skip to content

Commit 75906c7

Browse files
authored
Merge pull request #649 from woylie/popovertarget
popovertarget
2 parents 50ecc9d + e0b0fa2 commit 75906c7

4 files changed

Lines changed: 9 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@
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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ The package can be installed by adding `doggo` to your list of dependencies in
1616
```elixir
1717
def deps do
1818
[
19-
{:doggo, "~> 0.13.2"}
19+
{:doggo, "~> 0.13.3"}
2020
]
2121
end
2222
```

lib/doggo/components/button.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
[

0 commit comments

Comments
 (0)