Stipple.jl icon indicating copy to clipboard operation
Stipple.jl copied to clipboard

The reactive UI library for interactive data applications with pure Julia.

Results 49 Stipple.jl issues
Sort by recently updated
recently updated
newest added

When the number of reactive variables grows large, managing them becomes difficult. We should have a way to group them to make the code more succint, and also make it...

enhancement

Often you want to create a button that would copy certain content into a clipboard. Behavior: - Have a vector of multiple cards - Each card to have a small...

A proposal for integrating light and dark default themes, including a theme-switch button. There are a few things to consider here: 1. In Genie apps, Quasar's css (quasar.min.css) is added...

This is the corresponding PR to [Genie's implementation of message queues for websockets](https://github.com/GenieFramework/Genie.jl/pull/703), which ensures cleaning of the MESSAGE_QUEUE dictionary.

Currently we have no possibility of including vue mixins. This PR uses the existing rendering methods for ReactiveModels and makes it possible of including named apps as mixins. The idea...

core_theme now only affects whether standard css is loaded (no more effect on js). This is also a bugfix (before, supplying page() with core_theme = false resulted in a julia...

Here, I want to create a place to exchange about a possible future API. We have seen in the past that people are confused about how a certain vue-output can...

``` import Stipple import StippleUI @Stipple.vars Name begin name::String = "World!" end function ui() [ Stipple.row([ Stipple.cell(class="st-module", xs=5, sm=4, md=3, lg=2, xl=1, Stipple.p("Hello, World long long long long long long...

The current load process of an App is done internally by `Revise.includet()`. This doesn't take advantage of the fact that the App is typically a module (not necessarily, though) and...

enhancement

using `cell()` in a row with 'q-gutter' class at first level leads to unexpected results. MWE: ```julia using Stipple, Stipple.ReactiveTools using StippleUI @app begin @in c = false @in d::Any...