Nino Vrijman
Nino Vrijman
Kamil shared a sneak peek of SWC integrated within the Nest.js CLI on LinkedIn: https://www.linkedin.com/posts/kamil-mysliwiec-992bbb105_nodejs-nestjs-typescript-activity-7069957494017523713-u6kn?utm_source=share&utm_medium=member_desktop One of his comments: > And it fully supports existing CLI plugins (Swagger & GraphQL...
In order to get the Transform callback to be called you should also add the `@Expose` decorator above the desired property. ```TypeScript import { Expose, Transform, plainToInstance } from 'class-transformer';...
Hi @rebinnaf 👋, Right now there's no such event unfortunately. A workaround for now could be to use a `setTimeout` and wait for the animation `duration` that you specified yourself...
This seems to be an upstream bug in [Split Grid](https://github.com/nathancahill/split/tree/master/packages/split-grid). When dragging a gutter Split Grid takes care of setting either the `grid-template-columns` or `grid-template-rows` prop on the SplitGrid component...
> maybe a version update will be enough as the current version used by [vue-split-grid](https://github.com/stijlbreuk/vue-split-grid) is v1.0.9 vs [v1.5.9](https://github.com/nathancahill/split/tree/v1.5.9/packages/split-grid). Unfortunately 1.5.9 seems to be the version of [Split.js (package.json)](https://github.com/nathancahill/split/blob/v1.5.9/packages/splitjs/package.json) and...
Hi @cosmini 👋 I think I found a solution which implements the behaviour you described. It needs some more testing but I'm hopeful that it will work, I hope I...
Yes sure, contributions are always welcome 😄
This actually seems to be a bug, `gridData.direction` is used to bind either the `vsg_gutter-horizontal` or `vsg_gutter-vertical` class to a gutter. `SplitGrid.vue` injects the `gridData.direction` value by using Vue's provide/inject...