Skip to content

Commit

Permalink
Deps bump
Browse files Browse the repository at this point in the history
  • Loading branch information
Adrian Salceanu committed Nov 30, 2021
1 parent 6ae40d6 commit 2ca16ed
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
4 changes: 2 additions & 2 deletions 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.11"
version = "0.12"

[deps]
Colors = "5ae59095-9a9b-59fe-a467-6f913c188581"
Expand All @@ -14,7 +14,7 @@ Stipple = "4acbeb90-81a0-11ea-1966-bdaff8155998"
Colors = "0.12"
DataFrames = "1.0"
Genie = "4"
Stipple = "0.17"
Stipple = "0.17, 0.18"
julia = "1.6"

[extras]
Expand Down
6 changes: 6 additions & 0 deletions src/Dashboards.jl
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,10 @@ function dashboard(elemid, content::Union{String,Vector}; partial::Bool = true,
head_content=head_content, style=style, channel=channel)
end

function dashboard(model::M, args...; kwargs...) where {M<:ReactiveModel}
hasproperty(model, :channel) || throw(Stipple.MissingPropertyException(:channel, model))

dashboard(vm(model), args...; channel = model.channel, kwargs...)
end

end

2 comments on commit 2ca16ed

@essenciary
Copy link
Member

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/49601

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.12.0 -m "<description of version>" 2ca16edb20ee305b1647ef9d091b26d0c0b56e6b
git push origin v0.12.0

Please sign in to comment.