Kevin Schaaf

Results 38 comments of Kevin Schaaf

Sorry for the delay. Here's my `webdriver-ts/results/lit-v2.0.0-rc.1-keyed_32_startup-bt.json`: ```json { "framework": "lit-v2.0.0-rc.1-keyed", "keyed": true, "benchmark": "32_startup-bt", "type": "startup", "min": 16, "max": 16, "mean": 16, "median": 16, "geometricMean": 16, "standardDeviation": 0, "values":...

So if I understand, in `v1.0.0` `PolymerRedux` changed from being a behavior (object) to a mixin (function). There's not a straightforward way to safely auto-convert mixins back to behaviors due...

This construction results in a problem similar in effect to the one in https://github.com/Polymer/polymer/issues/5590. Because `getSelectedTab` (running during the "propagate binding" phase of effect processing) is side-effectful, it results in...

Thanks for the patience. I confirmed the bug and root caused it to the effect de-duping introduced in Polymer 2, which is a detail of how we introduced batching. Since...

Yeah, agree on adding docs for noting that the target must be unique (this is to make unlinking `O(1)`), but that notifications go both directions.

@trevordixon It's unfortunately probably the hairiest part of the Polymer codebase. I had looked into this a little after it was filed, and finding a solution seemed seemed pretty over-constrained...

Resolved by https://github.com/Polymer/polymer/pull/4097

When I run the Polymer 2 version, I do not see memory or dom nodes growing unbounded. With the memory devtools tab open, I see these grow until a gc,...

@Yavanosta Thanks for the PR! I've sat down a couple of times over the past couple weeks to review this, and haven't had a long enough time to page back...

As HTML Imports are deprecated as a browser feature, in Polymer 3 we no longer support authoring templates directly in HTML. There is no browser-native way to do this without...