divdavem

Results 37 comments of divdavem

For samples with only one file, this is implemented in #43. Opening playgrounds or multiple-files samples in stackblitz is still to be implemented. We should also check that the CSS...

#87 fixed the CSS issue, the rating/custom sample is now displayed correctly #88 fixed the Angular selector issue of the alert dynamic example #91 added support for multiple-files samples Remaining...

I am closing this PR as we are [now relying](https://github.com/AmadeusITGroup/AgnosUI/blob/2e68fa452d681dd848fcb362c0b37b70846e8411/angular/headless/test.ts#L2) on `@analogjs/vitest-angular/setup-zone` to avoid doing these (ugly) patches ourselves.

Several usages of `bindableDerived` have been removed in other PRs (cf #324 and #334) We should still get rid of the remaining `bindableDerived` usages in baseTransitions.ts and in select.ts. I...

@littledan @shaylew Thank you for your answers. > Currently, comparison is done "on the way out" rather than "on the way in", so there's no way to catch such a...

Note that I have a use case for which it is important to call `watch` before calling `get` because I need the `Signal.subtle.watched` callback to be called before the signal...

@quentinderoubaix Thank you for your review!

I was initially very interested in this suggestion and I have played a bit with Signal.Volatile (even writing an alternative implementation [here](https://github.com/proposal-signals/signal-polyfill/pull/31)), but I especially don't like the following behavior:...

@shaylew Thank you for your comment. > One tricky part here is if you want a notion of "is this signal in use?" that incorporates unwatched signals, whatever that notion...

For info, I have opened [this PR in the polyfill](https://github.com/proposal-signals/signal-polyfill/pull/32) as a potential solution for this issue.