Grant Wong

Results 22 issues of Grant Wong

In KanjiVG, the 辶 radical in 人名用漢字 contains two dots (like 丶丶乛乛乀) instead of one (丶乛乛乀). I'd like to suggest changing the 辶 radical in all 人名用漢字 to one dot...

Stroke shapes

Hiya, I noticed that there doesn't seem to be support for the [verb masu stem] + がい + structure, and ichi.moe instead would try to parse this as everything except...

Example: ```tsx import { media } from '@atlaskit/primitives/responsive'; import { css, styled, cssMap } from '@compiled/react'; import React from 'react'; const SummaryContainer = styled.div({ [media.above.lg]: { color: 'blue', } });...

bug 🐛
has workaround 💫

The following code fails with a `Cannot statically evaluate the value of "MemberExpression` error: ```tsx import { styled } from '@compiled/react'; import React from 'react'; const media = { from:...

bug 🐛

## Keyframes API in style attribute Take this example: ```jsx import { css, keyframes } from '@compiled/react'; import React from 'react'; const slideInTop = keyframes({ from: { transform: 'translateY(15px)', },...

bug 🐛
has workaround 💫

Imagine we have a project with the following code: ```tsx //////////////////////// // constants.ts //////////////////////// export const UNSAFE_container = { below: { xs: "@container not all and (min-width: 30rem)", sm: "@container...

developer experience 🏖️

This causes an error in `@compiled/babel-plugin`: ```tsx const UNSAFE_container = { below: { xs: "@container not all and (min-width: 30rem)", sm: "@container not all and (min-width: 48rem)", md: "@container not...

bug 🐛

ty @kylorhall-atlassian for bringing this up internally and for providing the examples. With SCSS and the upcoming CSS Nesting module, there is a distinction made between: * `:hover` (targeting a...

**Describe the bug** We expect the `:focus-visible` in the `:has(:focus-visible)` selector to be unmodified in the output CSS, just like in `&:has(:focus-visible)` (with the ampersand). However, this is not the...

bug 🐛

This produces a runtime error: ```css import { css, styled } from '@compiled/react'; const styles = css({ color: 'yellow' }); const MyComponent = styled.div({}); const MyOtherComponent = ({ someParameter, children...