Skip to content

Commit

Permalink
Merge pull request #25 from GenieFramework/hh-forminput
Browse files Browse the repository at this point in the history
more fixes and set version 0.5.2
  • Loading branch information
hhaensel authored Jun 17, 2021
2 parents 6b825b6 + dca8799 commit e9bfc83
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "StippleUI"
uuid = "a3c5d34a-b254-4859-a8fa-b86abb7e84a3"
authors = ["Adrian Salceanu <[email protected]>"]
version = "0.5.1"
version = "0.5.2"

[deps]
Stipple = "4acbeb90-81a0-11ea-1966-bdaff8155998"
Expand Down
4 changes: 3 additions & 1 deletion src/API.jl
Original file line number Diff line number Diff line change
Expand Up @@ -125,9 +125,11 @@ end

function xelem(elem::Symbol, args...;
wrap::Function = StippleUI.DEFAULT_WRAPPER,
attributesmappings::Dict{String, String} = Dict{String, String}(),
mergemappings = true,
kwargs...)
wrap() do
q__elem(elem, args...; attributes([collect(kwargs)...], ATTRIBUTES_MAPPINGS)...)
q__elem(elem, args...; attributes([kwargs...], mergemappings ? merge(ATTRIBUTES_MAPPINGS, attributesmappings) : attributesmappings)...)
end
end

Expand Down

2 comments on commit e9bfc83

@hhaensel
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/39063

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.5.2 -m "<description of version>" e9bfc8381e91c05c49dcc1af912a7640994b38ce
git push origin v0.5.2

Please sign in to comment.