Arne Hassel
Arne Hassel
> What I guess we decided NOT to support was a really unordered thing, maintaining a UI with a initially random arbitrary (but constant through changes) order. Don't see the...
@scenaristeur [points out](https://github.com/solid/solid-ui/issues/254#issuecomment-598508438) that Web Components might be a thing to use a standard way of exposing functionality that manipulates DOM ([lit-element](https://lit-element.polymer-project.org/) might be a useful library here). I'll try...
We do use [preset-env](https://babeljs.io/docs/en/babel-preset-env) that defaults to [browserlist](https://github.com/browserslist/browserslist#queries), which defaults to `> 0.5%, last 2 versions, Firefox ESR, not dead`. In other words, the code will be transpiled and polyfilled...
That looks like a mishap - Forms shouldn't rely on OutlineManager AFAIK. Hope you're able to remove it.
> However, I think we also want to allow depending software projects to only for instance: > > ```js > import { askName } from 'solid-ui' > ``` > >...
> > Some functionality that allows data browser implementations to override ... > > Same nit as before ;) My point is that it's weird for Solid UI to rely...
> I would consider the debug yes/no global more of an environment setting. I don't see any other way to make > > ```js > import { askName } from...
Note that you can add CSS to children of classes in JSS by using [nested selectors](https://cssinjs.org/jss-plugin-nested). So yes, you need to add a class to a parent element, but from...
@michielbdejong If you want to indificate state with JSS, you should have a classname that state (e.g. `.field--pending` to continue using [BEM methodology](http://getbem.com/)) and toggle that class using JavaScript. You...
@scenaristeur Thanks for the pointers! I'm a fan of the idea of Web Components as a way of exposing components that can even be used when compositioning HTML. This issue...