Hi,
I want to react to calciteInputTextInput event in my Angular application. Tried doing it like this.
<calcite-input placeholder="Filter brugere" icon="filter"
(calciteInputTextInput)="TextInput($event)"></calcite-input>But my application does not react to it. I have to use the default html element events to react.
<calcite-input placeholder="Filter users" icon="filter"
(keyup)="TextInput($event)"></calcite-input> Am I doing something worng?