Sean Lynch

Results 329 comments of Sean Lynch

@pdenapo I just released [[email protected]](https://github.com/techniq/svelte-ux/releases/tag/svelte-ux%400.90.5) with the Tailwind 3/4 css variable compatibility fixes. Going to pull down your repo and see if it helps. You might also need to add...

@pdenapo I spent a few minutes and can get it semi-working after updating to `[email protected]` and hacking around with `app.css` ```css @import "tailwindcss"; @source '../node_modules/svelte-ux/**/*.{svelte,js}'; @theme { --color-primary: hsl(257.4075 100%...

@pdenapo Tailwind 4 support for LayerChart, LayerStack, and Svelte UX is now available via `2.0.0-next.#` packages. I wrote a post with some details - https://bsky.app/profile/techniq.dev/post/3lkdpwo4wfs2y Creating starter projects is still...

@pdenapo Tailwind CSS provides both `@tailwindcss/postcss` and `@tailwindcss/vite` and have setup [instructions](https://tailwindcss.com/docs/installation/using-vite) for both. For all my migrated projects I started with `@tailwindcss/postcss` but [switched](https://github.com/techniq/svelte-ux/commit/35fd0c49abb9fb65018199ef9b5d8f09685eed3a) to `@tailwindcss/vite` as it's the...

Hey @erlenddahl 👋. That's a good call out and should be fine to add `bind:this{inputEl}` to `` and update the `inputEl` type to include `HTMLTextAreaElement`. Adding this additional type would...

Sorry @timkaebisch for the slow response. I haven't used the library to emulate tags personally, but there is an open [PR](https://github.com/techniq/node-pn532/pull/13/files) with this support. If you'd want to verify it...

Since Tailwind 4 is moving away from a config file (although you can use [@config](https://tailwindcss.com/docs/functions-and-directives#config-directive) but is considered legacy), we might be able to use something like [postcss-prefix-selector](https://github.com/RadValentin/postcss-prefix-selector) to apply...

Instead of pre-generating a tailwind-based `.css` file, we could also consider just moving many of these styles to `` and it *just work* For example, in [Tooltip](https://github.com/techniq/layerchart/blob/next/packages/layerchart/src/lib/components/tooltip/Tooltip.svelte#L360-L409)... ```svelte {#if children}...

Few updates in `layerchart@next`: - All components now have a global `class` available via `layerClass('...')` util - ex. [Text](https://github.com/techniq/layerchart/blob/next/packages/layerchart/src/lib/components/Text.svelte#L483C16-L483C38) => `.lc-text-svg` - shadcn-svelte [Charts](https://next.shadcn-svelte.com/charts) makes [use](https://github.com/huntabyte/shadcn-svelte/blob/next/v4/src/lib/registry/ui/chart/chart-container.svelte#L34-L78) of these global classes...

Quick update: making great [progress](https://techniq-html-rect.layerchart.pages.dev/) removing the Tailwind dependency (but still providing first-class Tailwind integration, especially with libraries such as shadcn-svelte, Skeleton, Svelte UX, Daisy UI, etc). This [PR](https://github.com/techniq/layerchart/pull/557) also...