dash-html-components
dash-html-components copied to clipboard
OBSOLETE - now part of https://github.com/plotly/dash
I wonder if it makes sense to add persistence to `html.Button` since `n_clicks` is often used as an input to callbacks. cc @plotly/dash-core , @sudburyrob
Regular HTML attributes use `alllowercase`, but [React](https://reactjs.org/docs/dom-elements.html#all-supported-html-attributes) converts multi-word attributes to `camelCase`. There are a few exceptions: `class` turns into `className`, `for` turns into `htmlFor`. In `dcc` we're thinking of...
The purpose of this issue is to open a discussion about better ways of adding and removing attributes for html components. Currently, to be added as a prop in Dash,...
I want to set the type of video, but there is no type parameter? To be more clear I want to do the following in: ` ` but 'type' is...
It would be nice of we could set the `currentTime` via dash. Using this as input event might lead to a high load. But are there arguments not use this...
it would be nice to have ```julia module HTML function h1()... end function div() ... end ... end ``` So that we can use `HTML.h1` instead of `html_h1` and potentially...
i.e. this should not be allowed ``` html.Br(children='asdf' ``` List of empty tags: https://developer.mozilla.org/en-US/docs/Glossary/empty_element
to reproduce: follow the documentation exactly **first error**: no dash-generate-components found solution: pip install dash **second error**: no yaml found solution: pip install pyyaml
You can set the open attribute for the details component correctly but you can't change it afterwards in a callback. This seems to be a problem with react and I...
If I use ` html.A("Go to section1", href="#section1") ` to scroll to an anchor, the page seems to refresh and lose its state. This makes it very difficult to use...