Lloyd Smith
Lloyd Smith
if run interactively, ember-cli could prompt the user to enter the add-on name. the default value could be a guessed value. when guessing, ember-cli could see if it's possible to:...
i don't think this is a bug but rather an enhancement request.
is looking for a `package.json` in the git repo itself reasonable? it would imply cloning the repo (again) to a temp folder and looking for the file or maybe requesting...
An example from the Java -- gasp -- world is the springframework. You created a plain object (very similar to JS class) and declarativative marked the properties you needed injected....
off the top of my head, i think - the default exports (if there is one), would always be a class (if there is one). - individual macros / functions...
contrary point of view: if the code editor will be able to suggest the import for `fn` automatically then maybe implicit import isn't needed. that said, it does seem useful...
The code in question is here: https://github.com/mharris717/ember-drag-drop/blob/master/addon/components/draggable-object.js#L40-L52 We would need to have an API to trigger disconnecting and re-connecting when a child component re-renders. Once easy to imagine API is...
> This actually seems more like just a bug to me. A re-render of the child component should not affect this. If you have a reproduction that would be helpful,...
Could have observer on `content` property and reattach whenever that changes. But that would still be a problem when `content` is the same (e.g., an ember-data model) and changing a...