web-component-analyzer
web-component-analyzer copied to clipboard
Missing description for property from the mixin
So I have this property specified in the mixin:
/**
* If true, the user cannot interact with this element.
*/
@property({ type: Boolean, reflect: true }) disabled = false;
The JSON output in the component extending that mixin:
{
"name": "disabled",
"type": "boolean"
},
This applies to all the properties inherited from the mixins, see example here: https://cdn.vaadin.com/vaadin-details/2.0.0-alpha3/index.html
Note, this also affects @event annotation.
@runem any ideas what could be the issue?