* Deactivate item.
()
| 788 | * Deactivate item. |
| 789 | */ |
| 790 | deActivate() { |
| 791 | return new Promise<void>((resolve, reject) => { |
| 792 | if (this._dataScope && this._dataScope.active) { |
| 793 | this._animator.deactivate().then(() => { |
| 794 | this._details.render(); |
| 795 | resolve(); |
| 796 | }); |
| 797 | } else { |
| 798 | resolve(); |
| 799 | } |
| 800 | }); |
| 801 | } |
| 802 | |
| 803 | /** |
| 804 | * Gets the current insight with signal values. |
no test coverage detected