aaarichter

Results 16 comments of aaarichter

I ran into the same issue with https://github.com/picturepan2/devices.css/blob/master/src/_reset.scss#L3 setting `display:block` to every element. If you want to set markup inside the content this can break the content UI.

The problem seems to be happening in the coffee-script's `lexter.tokenizer( )` function at https://github.com/jashkenas/coffeescript/blob/65c35e05a18bef4e302e6fd29c5d0783dd0b8363/src/coffee-script.coffee#L58 I found a workaround that passes the parser: ``` { ### # test ### } ```

> Or simply using const for this, maybe something like: > > ``` > ({ > marginTop: Sizes.xl, > padding: 's' > gap: { xs: Sizes.s, md: Sizes.m } >...

it would be nice to have this change 👍

I see this typing on `useTranslation()` when used locally. I'm not sure where I set `common` but this prevents me to set any additional namespace. I tried to overwrite it...

it is also odd how semver is handled in the related libs - breaking changes like this require a major bump or a graceful behavior as stated in the comment...

I'm getting the same - I tried to go from 2.6 to 2.7 and every graphQL call fails with a `is not present in the types`

Getting the same error - `source-map-support` is declared as dev dependency but is used in the dist files @cfjedimaster a workaround is ad `source-map-support` to your project's dependencies or dev...

another problem is with the chakra-ui module - when importing an icon with like `import { ArrowForwardIcon } from '@chakra-ui/icons';` NextJS14 shows this error message > ./node_modules/@chakra-ui/icons/dist/index.mjs Error: It's currently...

also, it is not clear how to deal with the image component `import {Image} from "@chakra-ui/next-js";` seems to have an image export wrapping nextjs `Image` but it is - not...