Matthias

Results 65 comments of Matthias

`PropertyValues` is useful, but it contains unexpected keys like stuff inherited from LitElement, as well as private class methods and properties that are not meant to be part of the...

Is it possible to improve the default inference of the param? The `updated` method on `UpdatingElement` assigns the `PropertyValues` type with no generic. Can it be changed to `PropertyValues`?

Here's an improved version of `PropertyValues` that takes the class as a generic, and doesn't contain the inherited lifecycle methods etc: ```ts type PropertyValues2 = Map< Exclude, unknown > ;...

Is it feasible to just annotate the type with `undefined`, if lit-analyzer decided to consider non-nullable types required again? ```ts class MyThing extends LitElement { @property({type: Number}) delay?: number =...

I'm using Chrome 93.0.4577.63, but apparently this behavior has existed since Chrome 49 and FF 45. - MDN has a note on the wildcard: https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS - Spec mentions "non-wildcard" requests:...

The PR (https://github.com/http-party/http-server/pull/760) is waiting to be merged. Can someone merge it?

@SkepticNerdGuy this library has never been production-ready in terms of CORS, because the `Access-Control-Allow-Origin` header is not configurable and it only returns `Access-Control-Allow-Origin: *`. I've only ever used this as...

Bump. This is waiting to be merged.

@thornjad can you approve the workflow?

"First-time contributors need a maintainer to approve running workflows." I'm dying to know if the tests pass :)