Silenced Component#sendAction deprecation

no issue

- `ember-drag-drop` still triggers this and spams the console when re-ordering tags in the tags input
This commit is contained in:
Kevin Ansfield 2020-01-14 15:39:31 +00:00
parent 579711d19c
commit 210eb6ef2e

View File

@ -1,9 +1,14 @@
self.deprecationWorkflow = self.deprecationWorkflow || {};
self.deprecationWorkflow.config = {
workflow: [
// revert one liquid-fire and liquid-wormhole remove uses of `this.$()`
// remove once ember-drag-drop removes usage of Component#sendAction
// https://github.com/mharris717/ember-drag-drop/issues/155
{handler: 'silence', matchId: 'ember-component.send-action'},
// remove once liquid-fire and liquid-wormhole remove uses of `this.$()`
{handler: 'silence', matchId: 'ember-views.curly-components.jquery-element'},
// revert once ember-infinity removes usage of `isVisible`
// remove once ember-infinity removes usage of `isVisible`
// https://github.com/ember-infinity/ember-infinity/pull/399
{handler: 'silence', matchId: 'ember-component.is-visible'}
]