PlutoUI.jl
PlutoUI.jl copied to clipboard
Sometimes `Radio` objects interpolated into markdown cells do not behave correctly. This radio button will respond visually, but will not change the value of `var`: ``` md""" blah blah: $(@bind...
this worked in v0.7.29. I used the default=NaN configuration for inputs that are optional. You can then use isnan on the associated variable to avoid extra calculations associated with the...
Fixes a double update when a cell defining `CounterButton` refreshes. I also changed the tests to catch this kind of problem, but I'm not sure if that's the right fix....

Updated Slider with: - a downsampling function per #212 - a max_steps param to determine how many values should remain after downsampling Important: - [ ] needs tests added (please...
When creating a slider with inappropriately high resolution, the memory usage becomes very high, slowing down the computer or even killing the Julia process. **Steps to Reproduce** 1. Open Task...
For example, this doesn't work: ``` MultiSelect([1=>"a", 2=>"b"]; default=Any[1]) ```  This can become annoying when the default is generated from some loosely-typed data.

The build at https://docs.juliahub.com/PlutoUI/abXFp/0.7.39/ has only the README page, no docstrings.
When the HTML value of a slider exceeds `2^31 - 1 = 2147483647`, the bound value is assigned an invalid index error. **Steps to Reproduce** 1. Create a new Pluto...