Marcelo Volmaro
Marcelo Volmaro
Hi, I just found an issue while trying to store objects on IDB. It seems that IDB can't serialize proxied objects, and throws an error (Serialization error: Can't serialize [object...
Hi, How do I animate a non-numeric property (like border-color)? I tried to animate the border color on this `test` with `{"left":300,"padding":10,"border-width":50,"border-color":"#ff0000"}` The position/padding/border-width work fine, but the border color...
As the title says, I would like to have a [structuredClone](https://github.com/ungap/structured-clone/) polyfill. At the time of writing, all browsers have implemented this API in their nightly releases, Firefox has shipped...
It would be great to have a new alias (proposed: **evergreen** or something similar) that serves all the polyfills, but of course always depending on target browser. Similar to what...
Hi, Just checking the code, I see on https://github.com/csharptest/CSharpTest.Net.Collections/blob/master/src/CSharpTest.Net.Collections/IO/IOStream.cs#L68 that you are initializing bytesRead with 0. I believe the correct value should be "offset". Without that, the offset argument is...
Using 6.2.3 and running dotnet add package Swashbuckle.AspNetCore.cli, I get ``` error: NU1202: Package Swashbuckle.AspNetCore.Cli 6.2.3 is not compatible with net6.0 (.NETCoreApp,Version=v6.0). Package Swashbuckle.AspNetCore.Cli 6.2.3 supports: error: - net5.0 (.NETCoreApp,Version=v5.0)...
### Describe the feature In .net 8 you have `IParsable` that is being used by the framework in several places. It should be nice if that interface could be also...
### Describe the feature As the title says, implement the comparison operators. This is to fix the **CA1036** warning: _AbcId_ should define operator(s) '=' since it implements IComparable.
I have one project (library) where I'm using OneOf/Source generators. I build a nuget of that library and I'm using that nuget in another library, where I'm also using OneOf/Source...
I'm trying to migrate from [polyfill-library](https://github.com/Financial-Times/polyfill-library/) and I'm missing a couple of polyfills: - [queueMicrotask](https://developer.mozilla.org/en-US/docs/Web/API/queueMicrotask) | [polyfill](https://github.com/feross/queue-microtask) - [AbortController](https://developer.mozilla.org/en-US/docs/Web/API/AbortController) | [polyfill](https://github.com/mysticatea/abort-controller) - [inert](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/inert) | [polyfill](https://github.com/WICG/inert) - [structuredClone](https://developer.mozilla.org/en-US/docs/Web/API/structuredClone) | [polyfill](https://github.com/ungap/structured-clone) Not...