←back to thread

277 points merqurio | 1 comments | | HN request time: 0s | source
Show context
whs ◴[] No.45114614[source]
Does Lit have a good component library? Like, a complete web template (eg. Bootstrap/Ant), datepicker, color picker, virtual scroll, data tables, typeahead, tab, etc.

I shipped a project with Lit and I liked it, but I didn't like that I'd need to know the complete project scope up front that I could write everything from the ground up. I know I could use React component for some of the harder stuff but at that point might as well use React and avoid bundling two systems

replies(3): >>45115219 #>>45116402 #>>45117088 #
jonjlee ◴[] No.45115219[source]
DaisyUI and HyperUI, which are both full component libraries based on tailwind, play well with lit. You either opt out of using the shadow dom or import the global styles into the component. Both methods have official lit support.
replies(1): >>45115944 #
agos ◴[] No.45115944[source]
these are cool but are CSS only, there is no interactivity.
replies(1): >>45117470 #
1. paradox460 ◴[] No.45117470{3}[source]
Also building a component library atop tailwind feels so disgustingly wrong