Jeremy Mack
Jeremy Mack
Tailwind v3 supports [data attributes](https://tailwindcss.com/docs/hover-focus-and-other-states#data-attributes), e.g. ```html ``` These are useful for libraries like [Radix UI](https://www.radix-ui.com/docs/primitives/overview/introduction) that uses [data attributes](https://www.radix-ui.com/docs/primitives/overview/styling#data-attributes) for state-based styling. Perhaps a syntax like `tw.data("size=large", tw.p_8)` would...
## Objects with Literal Fields and a Raw Default Return Invalid Type from v.Output ```typescript const RawDefaultSchema = v.optional( v.object({ type: v.literal('1'), x: v.number() }), { type: '1', x: 1...
Took me a while to track this one down and I believe it's related to: https://github.com/statelyai/xstate/issues/4645 https://github.com/statelyai/xstate/issues/4985 I was able to patch `@statelyai/inspect` package at version `0.4.0` to fix this...
When inspecting a state machine that is defined in React via `useMachine`, I'm getting a crash of the inspector: `Looks like you've ended up in an invalid state. Refresh the...
I used the default front matter template provided [in the repo](https://github.com/bramses/chatgpt-md/blob/master/main.ts#L40), modified for GPT-4: ```yaml temperature: 0.9 top_p: 1 max_tokens: 512 presence_penalty: 1 frequency_penalty: 1 stream: true stop: null n:...
Adds [Quests](http://quests.dev) to the ecosystem listing.
### Environment Node 22 and Unstorage 1.17.1. ### Reproduction ```typescript import { createStorage } from "unstorage"; import fsDriver from "unstorage/drivers/fs"; const storage = createStorage({ driver: fsDriver({ base: "./.storage/test" }), });...
### Environment Any ### Reproduction 1. Create a storage using db0 and SQLite 2. Call `.dispose` 3. The db0 connect remains open ### Describe the bug There is no dispose...