ember-component-inbound-actions icon indicating copy to clipboard operation
ember-component-inbound-actions copied to clipboard

Send actions to Ember.js components

Results 9 ember-component-inbound-actions issues
Sort by recently updated
recently updated
newest added

Have a component like this: `my-component.js` ```javascript import Ember from 'ember'; import InboundActions from 'ember-component-inbound-actions/inbound-actions'; export default Ember.Component.extend(InboundActions, { concatenatedProperties: ['x'], x: ['A'], classNames: ['A'], }); ``` `my-component.hbs` ```hbs {{caseDescription}}...

I'm writing a unit test around a component that uses `InboundActions` and getting the following error: ```Assertion Failed: You have turned on testing mode, which disabled the run-loop's autorun. You...

Updated ember to version 3.2.0 and tests.

Hi, first of all: thanks for this addon! :+1: I'm working on an addon that does form validations based on contextual components, and I'd like to implement a "reset" action...

I don't know if this is expected behavior, but it doesn't "feel" correct. The behavior that we observe is that components which use this plugin do immediately rerender after being...

I'm in a situation where I need to get the return value of a call to an action (in my case a Promise). Basically I'd like to call the action...

What versions is https://github.com/GavinJoyce/ember-component-inbound-actions/blob/master/addon/inbound-actions.js#L4 supposed to detect? It matches every ember 2.x version, only fails less than 1.13. Is that desired?

This is an experimental approach for https://github.com/GavinJoyce/ember-component-inbound-actions/issues/18 which avoids an initial double render when using `InboundActions`. Instead of `InboundActions`, there is now a `Sender` and `Receiver` mixin. `actionReceiver` is no...