Yaroslav Petryk
Yaroslav Petryk
### Expected behavior React Beautiful DnD should work as advertised on the latest React version with StrictMode enabled (which is a common default nowadays) ### Actual behavior Library fails to...
### Describe the bug I have a custom loader that intercepts funky-looking import specifiers, ala: `import foo from "prefix:some-argument"`. ```js const prefix = "custom-loader:"; export default function customLoader() { return...
### Is this a regression? No ### Description Given the following snippet ```js import { randNumber } from "@ngneat/falso" const freq = Array(10).fill(0) for (const n of randNumber({ min: 0,...
Closes #4560 This is quality-of-life change to the type generation for the assignable fragments (aka. typesafe updaters). For the cases where the assignable fragment is defined on the abstract type,...
[A simple vite project (no react, no babel presets, no nothing)](https://github.com/Malien/linaria-regression-repro) (_hey I even could get a minimal repro_) The magic happens here: ```js import { css } from "@linaria/core"...
Given a simple vite starter project of: ```js import { css } from "@linaria/core"; console.log(import.meta.env.MODE); document.body.className = css` content: ${import.meta.env.MODE} `; ``` A build-time evaluation of the module yields `undefined`...
### Please confirm the following. - [X] I checked the [existing issues](https://github.com/modrinth/code/issues) for duplicate problems - [X] I have tried resolving the issue using the [support portal](https://support.modrinth.com) - [X] I...
Thanks for the project! It is unpopular in tailwind circles to space out class names onto multiple lines. But for me it makes navigating the code MUCH easier. (especially in...
React 19 added ref cleanup functions, and deprecated the current "call with null on unmount" behaviour. https://codesandbox.io/p/devbox/66jh5j ```jsx { doAction(instance) return () => cleanup() }) /> // mount: const cleanup...
Here's the repro: https://codesandbox.io/p/sandbox/base-ui-beta-4-checkbox-inconsistency-th4xrk The issue is simple: ```jsx ``` Submitting this form will result with values: `[["vanila", "42"], ["base-ui", "42"], ["base-ui", "off"]]`. This is inconsistent with the HTML spec,...