Is your feature request related to a problem? Please describe.
🚀 feature request
Description
Add support for the host configuration item of Component decorator:
1. @Component({
2. host: {
3. '[class.dragging]': 'dragging',
4. }
5. })
6. class DraggableComponent {
7. public dragging = true;
8. }
Feature Type
What does this bug affect
Describe the solution you'd like
Take the code given before as an example, the 'dragging' property in line 3 should can be auto completed, highlighted, navigate to, rename, and show comment popup when mouse hover.
Further more, description specific to key in the pattern supported by Angular (for example, '[class.dragging]' means add CSS class dragging to the host element when the value (here, is the dragging property of the component) evaluates to true, and removed when evaluates to false) of host should be popup as common document.
Describe alternatives you've considered
Anything else relevant?
Reference the JetBrains WebStorm Dev Experience.