Daniel Faucette
Daniel Faucette
@bennypowers https://codesandbox.io/s/relaxed-https-03jlt?file=/src/App.js Code sandbox sometimes ignores the error, but when I refresh in the editor I see the same error: ```TypeError Cannot read properties of undefined (reading 'setAttribute')
@bennypowers Nice! Thanks for the additional exploration. I would assume that `is-disabled="false"` would be handled by the component since `is-disabled=false` still returns the value `'false'` in HTML `element.getAttribute()` etc. If...
Yeah, I guess the issue here is we can't pass a flag to the component to make the search work when there is no `input.value` even when the input is...
I'm also using PFElements in a TypeScript app and the following is all I had to add to my `declarations.d.ts` file: ``` declare namespace JSX { interface IntrinsicElements { "pfe-card":...
I think we need more docs either way. I can't think of a straightforward solution, but it's probably worth taking a look at component libraries that use TypeScript for some...
I saw that #12711 was closed in favor of keeping this issue open. Is there any plan to resolve this? In my digging it seems like the dev server uses...
I'm not sure if this is related or not but I see the exported interface for the ESBuild plugin references `exclude` instead of internal on this line: https://github.com/vitejs/vite/blob/main/packages/vite/src/node/plugins/esbuild.ts#L42 I could...