Timo Stamm
Timo Stamm
Hey Dennis, it is very unlikely that we will ever add global registration at load time for the following reasons: 1) it is a [side effect](https://webpack.js.org/guides/tree-shaking/#mark-the-file-as-side-effect-free) that hampers tree-shaking 2)...
I can reproduce this issue on FF51 and IE11. Text inputs do not respond to mouse clicks as expected if they are contained in a dnd-draggable element. Any ancestor element...
@SebSob I am still using exactly the same code in a project. It is still on angular ~1.4.6. I suggest to double check for typos (the require must match the...
Thanks for the heads-up. Unfortunately, TypeScript doesn't seem to like the index signature. We are going to move to a different oneof representation in the next major (see https://github.com/timostamm/protobuf-ts/pull/262), so...
This is an interesting idea. There is nothing saying JSON parsers cannot accept other variations besides json_name and proto field name, but I'm not sure it is worth the extra...
You can patch ReflectionJsonReader for your project. This is the method you may want to replace: https://github.com/timostamm/protobuf-ts/blob/3eea598471fb9c891c8b6da06bc1cbe18bc3457e/packages/runtime/src/reflection-json-reader.ts#L32 For example you can easily let it accept lowercase proto field names: ```js...
Hey @SpareShade, it looks like we are going to take up maintenance of protoc-gen-validate. See envoyproxy/protoc-gen-validate#616 for context. I don't think we would want to _tie_ connect and PGV closely...
Sounds great, Sebastian! Please note that we're going change the plugin API a bit. The goal is that plugin authors only need to generate TypeScript, and we transpile JavaScript and...
I'm glad to hear that it works for you, George. Going from one schema definition (protobuf) to a second schema definition (OpenAPI) involves quite a bit of indirection, and some...
@FPurchess, are you familiar with protobuf plugins? If not, our docs give an introduction [here](https://docs.buf.build/reference/images#plugins). A protobuf plugin is definitely the way to go here. We publish a package that...