Adam Alfredsson

Results 13 comments of Adam Alfredsson

I find myself having a slight preference for semantic css, after working with both Tailwind and Bootstrap on recent projects. I like keeping styles scoped (using preprocessors or BEM) and...

Details here: https://greensock.com/forums/topic/31712-simple-opacity-fade-doesnt-work-in-react/#comment-158550

> Use TypeDi's container set method instead: > > ```ts > import { Container, Token } from 'typedi'; > > const SOME_INJECTION_TOKEN = new Token('some-name'); > > Container.set(SOME_INJECTION_TOKEN, ) >...

These typings seem to work for version `1.4.3`: ```typescript declare module 'vue-html-to-paper' { import { PluginFunction } from 'vue'; // See https://www.w3schools.com/Jsref/met_win_open.asp interface Options { name?: '_blank' | '_parent' |...

Thanks for looking into this. It does seem true that it only happens once, but in our larger application it seems to happen a bit more occasionally. However, it doesn't...

After using storybook since issue was reported, it is noticeable that HMR doesn't work consistently.

This is expected behaviour. You should clean up your `useEffect` properly by stopping the video stream, like so: ```tsx import { Box } from '@chakra-ui/react'; import { Html5Qrcode, Html5QrcodeSupportedFormats }...

I guess this would be a valid example repo: https://github.com/benawad/graphql-ts-server-boilerplate

I had an issue loading it when using it with `Vue.extend`. So I switched from: ``` export default Vue.extend({ // ... }); ``` to: ``` export default { // ......

> turndown-plugin-gfm is outdated, the last version is from 2017 and it doesn't work now a days. I need another solution Did you find any other solution?