BrendanC23
BrendanC23
It would be great to have a transfer list component. This would display two lists and allow users to transfer values between them. See [this example](https://mantine.dev/combobox/?e=TransferList) from Mantine. There's also...
The `IntRange` type was added in [this PR](https://github.com/sindresorhus/type-fest/pull/707). As mentioned in the documentation `The numbers are created from the given `Start` (inclusive) parameter to the given `End` (exclusive) parameter.`. Could...
If I declare an enum like ```ts onst enumErrorMap = { errorMap: () => ({ invalid_type_error: "Error Message" }), }; const TestEnum = z.enum( [ "value1", "value2", ], enumErrorMap, );...
I have a combobox with several thousand items. Is there a straightforward way to only show the first N matches without needing to manually handle the filtering and displaying of...
Is there a way to get a more detailed stack trace for an error that occurs during an electron-trpc call? For example, a Zod error results in this:  ```...
## Bug report ### Current Behavior I have code like the following. When a button is clicked, a value in a form is updated. There is a select whose options...
This is a great library. I'd love to see more customizations for the multi-select. The current implementation is great for a multi-select, but I think the component could work well...
### Version Number 7.51.3 ### Codesandbox/Expo snack https://stackblitz.com/edit/vitejs-vite-bxk6hl?file=src%2FForm.tsx ### Steps to reproduce I am running into an issue where a form is being reset, causing an array in the form...
The documentation says that the transaction isolation level constants "can be accessed through the base exported package": * odbc.SQL_TXN_READ_UNCOMMITTED * odbc.SQL_TXN_READ_COMMITTED * odbc.SQL_TXN_REPEATABLE_READ * odbc.SQL_TXN_SERIALIZABLE The documentation has an example...
There is a race condition that causes incorrect data to be returned if there are two different clients. I have two different TRPC clients. The first is a regular client....