Marçal

Results 18 comments of Marçal

To complete workaround of @jamesmikesell, you need to provide another transformation for `toPlainOnly`: ```typescript import {classToPlain, plainToClass, Transform} from 'class-transformer'; import {IsNotEmpty, ValidateNested} from 'class-validator'; export class MyObject { //...

> @marcalj I haven't had any problem when using when using classToPlain with a map, but the completeness is appreciable The `toPlainOnly` It's required if you want to use `classToPlain`...

While this is not fixed you can use `patterns` option, but make sure that you use regexp with multiple instance behaviour (`/g`). This should be advised in the `README.md` IMHO....

A workaround that could work on some scenarios: ```triggers="mouseenter:click"``` You will need to click to hide the popover. With escape key also hides.

Take a look to this: https://github.com/nestjs/nest/issues/10471

> I'd also appreciate this (mainly to preserve image orientation/rotation). > > **My workaround:** I [found an example](https://github.com/paolobarbolini/img-parts/blob/fa23682517eed028ce0061e670d93fe6c5aaf9eb/examples/image-rs/src/main.rs) on how to integrate `img-parts` with `image` ... but I couldn't get...

Ok, since my input is a buffer, I can read EXIF data without modifying the buffer like this: ```rs // input: image_buffer: &[u8] let exif_reader = exif::Reader::new(); let exif =...