Sipi Ovaska

Results 17 comments of Sipi Ovaska

You can work around this with the handlers in [draggable](https://tiberiuzuld.github.io/angular-gridster2/drag). ```ts draggable: { enabled: true, start: (_, gridsterItemComponent) => { gridsterItemComponent.el.style.zIndex = '2'; }, stop: (_, gridsterItemComponent) => { gridsterItemComponent.el.style.zIndex...

I think the problem is your enum has `"type": "integer"`, but the values are strings. Try changing the type to string, or moving the enum names to `"x-enumNames": [...]` and...

You need to use `"typeScriptVersion": 4.3` in your nswag configuration for the `override` keyword to be generated.

I have the same version, and 4.3 shows up on the dropdown (don't mind the Win95 look; I'm using it through Wine). ![image](https://user-images.githubusercontent.com/68028366/168286071-cc3427ca-8d57-45f2-9e3a-407a5bce9ab3.png) ![image](https://user-images.githubusercontent.com/68028366/168286359-9f1d0831-0a9e-40b4-b971-02593a073356.png) Try downloading the latest release as...

Correct, was just wondering why it was used in some awaits and not all :)

Here's more or less the minimal fix I could come up with: #164

Seems reasonable to me, perhaps support could be added for `ArraySegment` as well to avoid boxing? Both of these can be worked around by casting to Span/Memory, but you lose...

I've encountered this as well. I wonder if this API is needed in .NET 8+ anymore, and could be omitted from compile on that target altogether.

You should probably use the span to get a string from the pool _before_ clearing the builder, as an array could be holding on to the span, and be returned...

A global setting would probably be most useful, I liken it to UI settings such as font size.