Ryan Panning
Ryan Panning
Having not used FastBoot, what are the "happy path" constraints this would introduce? I know of the DOM access thing, but as the RFC mentioned, I think `{{modifiers}}` will help...
I thought @stefanpenner had some ideas for this some time ago. Basically there was a new hook that would work how @ef4 describes it, going from child back up the...
Am I in the minority of wanting one "monolithic" ember package? I'd rather have everything "ember" at my disposal, then have tree-shaking remove the un-needed stuff on build (shake not...
> We want new features to lean on using ES6 module imports and normal tree shaking techniques, but we need a strategy that were written without that constraint in mind....
Sooo.... we're bringing back a variant of `{{bind-attr}}`?? 😕 (In regards to DX, no fun).
What if `@` is allowed as a param name? That way params with `@` are passed in as args and those without are attributes (as we know it from angle-bracket...
FWIW, I prefer base classes. That way I can open a file and see what it is supposed to be, rather than relying on file location to determine type. Additionally...
Another solution is to make this work: `{{#link-to 'route' (query-params params)}}` The `(query-params)` helper could accept the first positional param as the hash; ```js export default Ember.Helper.helper(function(params, hash) { let...
I'm not sure if this relates here, but one thing I've heard before with animation needs was access to the element _before_ it is inserted into DOM. I don't think...
@aaronbhansen A good starting point would be to selectively import the SUI files from bower (which I believe @seawatts is talking about here). I've done this type of thing for...