Rob Dodson
Rob Dodson
> What we should think about is if we plan to maintain the polyfills Since I've left Google I haven't really had time to work on these so, barring any...
Ok we can look into these. Sorry for the delay. Currently on vacation 😎 On Wed, Jan 3, 2018, 8:38 PM Taylor Hunt wrote: > CSS has the :disabled pseudo-class...
thanks for the response The tab key is one of the primary ways a keyboard user moves around the page so it's difficult to write a high confidence accessibility test...
> What this doesn't test for is what the browser's behavior when clicking "tab". But you can often indirectly test this. Yeah that's what I've been doing. Still, I would...
@mrlubos @OskarAsplin published the package to npm [in this comment](https://github.com/ferdikoomen/openapi-typescript-codegen/pull/1465#issuecomment-1556291975). I've been using that version to generate our types. I looked into using other libraries like Zodios and ts-rest but...
yep it's pretty simple. It uses the second argument to JSON.parse, which is a [reviver function](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/parse#reviver) ```ts import { camelCase } from 'lodash' export default function camelCaseJsonBody(body: string): any {...
> No concern about overhead added by this transform? I certainly don't love the transform, but it was put in during the early days of the company (3-4+ years ago)...
Thanks for following up @mrlubos. We've started using [Orval](https://orval.dev/) and taking advantage of its input transformer feature to camel case the spec before it uses it to generate code. We...
Our OpenAPI specs have all operation query params and request bodies in snake case, so I just make a copy of the spec and iterate over all query params and...
oh that's a good idea, I guess we could do that as well.