johanrd

Results 93 comments of johanrd

@nickschot thanks for the reply! Deriving the animating state based on `relativePosition` might be an option alternative to `onToggle`, yes. I'll have a look. Waiting with transitioning is not very...

Update: Heres a rough working sketch of keeping transitioning states in a service if restricted to only using the yielded `relativePosition` : ```hbs {{outlet}} ``` ```ts import Service from '@ember/service';...

Hi. Yes, I think that may be a good idea for a next release. When converting to TS, there were three levels of maturity I considered, of which I landed...

Hi. The helper function itself is typed in main (https://github.com/adopted-ember-addons/ember-set-helper/blob/main/ember-set-helper/src/helpers/set.ts). yet the V2 version (with types) is not published to npm. I am not fully sure how to build and...

@gabrielflorit @cah-brian-gantzler Can you try with `3.0.1`? I now get types in glint by `import set from 'ember-set-helper/helpers/set'`. (…we could perhaps consider to make it possible to also `import set...

@MichalBryxi: Currently, the import is `import set from 'ember-set-helper/helpers/set'`, or in your case `import setHelper from 'ember-set-helper/helpers/set'`

Great. I can verify that [email protected] \*works\* with the following versions: ```json "firebase": "^9.0.0-202171919375", "firebaseui": "^0.600.0-rc.0", ``` **…However:** As I understand it, the expected bundle size reduction from the modularized...

ok, I guess I could use `trackedFunction`, but then I'd have to implement the `AbortController` myself. ```typescript request = trackedFunction(this, async () => { const token = await getAuth().currentUser?.getIdToken() const...

ok, great, thanks. I will give it a go. I ended up having a little issue with `latest` being returned twice, though: 1) First when the resource is first needed...