Gökhan Kurt

Results 76 comments of Gökhan Kurt

Yes, you also have to convert it. I used your code above. https://github.com/ReactUnity/core/blob/main/.github/workflows/test.yml#L108

Done in main branch. Will be released in next version.

Seems like if there is `letter-spacing` in CSS, this will happen. Here is the workaround I am using to remove `letter-spacing` for PDF: ```ts onclone: async (d: HTMLDocument) => {...

In addition to `letter-spacing`, too many words can also cause this issue. When `letter-spacing` is not 0, each letter is rendered separately. But when it is 0, `html2canvas` renders each...

@DanLopess > In addition to letter-spacing, too many words can also cause this issue. One workaround I found is to render the text to an image, and print that into...

Looks like all of these issues will be solved once I implement mesh-based background/border/shadow instead of shader-based.

This is being worked on the branch https://github.com/ReactUnity/core/tree/mesh-based-bg-shapes

I have another problem. For good measure I write this in global `argTypes`: ```js export const argTypes = { style: { table: { disable: true, }, }, }; ``` But...

I found this way makes it easy to write unit tests for components without calling actions. Firstly I write a plugin to ignore actions and store them in an array...

I feel like setting only `GITHUB_TOKEN` and `NPM_TOKEN` was enough at some point. But that is not the case anymore. It stopped working for some reason. It works now after...