When I use any ejs component, as an example ejs-dropdownlist, it sees the element just fine and all the attributes work correctly, however Intellij tells me all the attributes are note valid. This is creating a cosmetic issue and an auto completion. Did I just miss something while setting everything up?
The actual warning I get is
"Property dataSource is not provided by any applicable directives nor by ejs-dropdownlist element"
on this html
<ejs-dropdownlist [dataSource]="locations"
placeholder="All Locations"
[showClearButton]="true"
[fields]="{text: 'label', value: 'value' }"
formControlName="locationId"></ejs-dropdownlist>