Dan Blaisdell
Dan Blaisdell
It seemed to. I was running against a large React codebase. It got past the error related to these lines in your plug-in, and then crashed with one of the...
The output I got after my fix was: ``` This operation is not yet supported on abstract value __IntrospectionError at bundle-392ece6018c28ff07e50.js:29674:71 at call (native) at __webpack_require__ (bundle-392ece6018c28ff07e50.js:20:12) at bundle-392ece6018c28ff07e50.js:4344:17 at...
> I found an interesting workaround. Check this out: > > ```js > {text.split('')} > ``` Nice! Here is a version that keeps non-whitespace strings grouped: ```ts text .split(/(\s{2,})/g) .reduce((strings,...
This is still broken when using ` --set-env-from-json`
@MagicalPrincess I don't think ` ` prevents text wrapping. It just prevents the browser from collapsing multiple spaces into a single space
@MagicalPrincess my mistake. I didn't realize that it was supposed to prevent line breaks as well. In all my years doing web dev I've never used it for that!
That being said. I'm not sure if there's a way with react-pdf to achieve this, but I'll think about it
In order for support for `value` to be complete, the following sibling `li` elements would need to have their values be relative to this `li` element's value
In my initial use case I was using HTML for some of my content server side (user editable markdown -> HTML -> PDF). It sounds like you are exploring rendering...
> https://github.com/mikey0000/react-pdf-html/tree/feature/use-ref > > work in progress. By no means perfect. I'll be working on it for a few days more at least @mikey0000 awesome. May I suggest a few...