Jim Schofield

Results 13 comments of Jim Schofield

I'm curious if anyone has thought to create an ember-native component like `Component` from Vue? https://vuejs.org/v2/guide/components.html#Dynamic-Components I recently encountered the issue of not being able to spread attributes to dynamic...

I found firsthand these pain points when I was transitioning from vue/react to Ember. It was the exact same path- where I found that I had to use other tracked...

I had the same issues with node 12, but rolled back to node 8.1 with NVM and install worked fine.

I've been able to mock a dataTransfer as far as sending information from a `dragstart` element to `drop` target: ``` async function dragMove(fromElement, toElement) { const context = {}; await...

I've submitted a PR with a `dragMove` helper. Maybe this would be of help @jherdman ? https://github.com/emberjs/ember-test-helpers/pull/1139

I can reproduce this issue and we encountered it the other day using Shoelace components. Stackblitz with issue: (run `lit-analyzer src` to see output) https://stackblitz.com/edit/vitejs-vite-o6yr4r?file=src%2Fmy-element.ts output ``` ❯ lit-analyzer src...

I have a code snippet where the second and third `main` elements are being flagged on different conditional branches. I hope this helps isolate the issue. ```html {{#if this.shouldGenerateToc}} ......

I tried to refactor the event listeners in the test to make sure it works with ember 3.8. I'm not sure how Ember did event listeners before `{{on ...}}` so...

@MelSumner @rwjblue wondering if there's time to review this?

I spent some time today trying to rebase of of master here. I think I fixed the conflicts, but we're getting behavior changes and the tests are failing. I'm noticing...