Tomasz Pluskiewicz

Results 305 issues of Tomasz Pluskiewicz

Excuse a single ticket for multiple related problems. I'll create separate if you'd prefer that. **Is your feature request related to a problem? Please describe.** I enabled API access to...

⭐️ Enhancement
Module: Remote API

I want to use wc-codemirror with webpack and it's not possible to import a mode ```js import '@vanillawc/wc-codemirror/mode/javascript/javascript.js' ``` This fails because the original source tries to `require('../../lib/codemirror')`. While I...

I have code similar to this ``` import {IHydraResource} from 'alcaeus/types/Resources'; @CustomElement() export class AugeanConsole extends Polymer.Element { model: IHydraResource = null; } ``` The interface has no meaning in...

bug

When running `twc --watch` elements are regenerated only when the TypeScript files are modified. They should also be regenerated when the files used in `@style` and `@template` are modified.

enhancement
icebox

While implementing #108 will be complex and require bending the language to our needs, I'm thinking that maybe a simple solution is possible by pre-processing `this.importHref`/`Polymer.importHref` so that one can...

I've just realized that with TWC it is not possible to have additional markup inside of the `` which is how `` are used: ``` html class MyElement extends Polymer.Element...

Currently when generating mixins the console reads ``` `Module` generated in 149ms `MyElement` generated in 78ms ``` It would be nice to actually put the mixin's name in the output...

I have multiple behaviors exported in same namespace: ``` ts // MixinOne.ts export namespace Example { export function MixinOne(superClass: T) { return class extends superClass { } } } //...

bug

Please see https://youtrack.jetbrains.com/issue/IDEA-349407

bug
codewhisperer

Because Shadow Roots cause event retargeting, `link-hijacker` is unable to find the source `a` element which triggered the event. The best alternative appears to be [composedPath](https://developer.mozilla.org/en-US/docs/Web/API/Event/composedPath) which Edge sadly only...