components
components copied to clipboard
Example Components (Built with Tonic)
a pattern we've noticed is that we have a `...` tag in some places with the appropriate overflow set on it. The `scrollTop` position often needs to be remembered, a...
Adding `render="false"` as a prop should allow the user to decide if they want the dialog to render before show is called.
Currently `windowed` reads & renders from `this.rows` which is an array. By changing that to an interface it can be swapped to by anything that's a synchronous API like C++...
I want to host my Tonic app using static file hosting, so I can't have users request paths that don't really exist (actually I am experimenting with web extensions, so...
I am using the TonicChart component. It renders well. I am trying to make a change programmatically, e.g. changing the width via `document.getElementsByTagName('tonic-chart')[0].reRender({'width': '400px', 'height': '600px', 'src': '{"labels":["Foo","Bar","Bazz"],"datasets":[{"label":"Quxx (millions)","backgroundColor":["#c3c3c3","#f06653","#8f8f8f"],"data":[278,467,34]}]}'})` The...