Lukas Oppermann
Lukas Oppermann
Ahh, okay, I see, I will look into it. I believe you that it makes things more untestable, but if you have filters that are not interdependable, wouldn't it be...
Hey @michelf I am actually not wanting this behaviour, I am just trying to understand where the pitfalls of a filtered system are so that I can try to avoid...
@michelf any news on this? I would appreciate it as well. Is there an easy way to implement this? I see how you would not like to add it to...
I think I am running into the same issue but don't understand the fix. I am trying this: ``` "plugins": [ [ "inline-react-svg", { "svgo": { "plugins": [ { "name":...
Sure @sveg-pl > "babel-plugin-inline-react-svg": "^2.0.1" The important file is the svg, which is imported into the logo.tsx ```svg ``` The logo.tsx is the following: ```js import SVGWordmark from '@svgs/veare-wordmark.svg' import...
Nice that works. Thank you very much
How would I add markup when extending an element? So if I want to extend the `input` element, but would need to add some boxes around, how would I do...
Sadly this results in a `Uncaught RangeError: Maximum call stack size exceeded.` I think it is because then `connectedCallback` is called when doing `container.appendChild(this);`. Any ideas? Additionally, would this work...
Okay, so I got it working by setting a `this.initialized` attribute to `false` in the constructor and setting it to `true` the first time the connectedCallback is called. This setup...
I tried it but it does not work. I thought the same, but I think it does not work, because you are extracting the values in the page function and...