(newValueState: `${ValueState}`)
| 807 | } |
| 808 | |
| 809 | _updateValueState(newValueState: `${ValueState}`) { |
| 810 | const oldValueState = this.valueState; |
| 811 | if (oldValueState !== newValueState) { |
| 812 | const eventPrevented = !this.fireDecoratorEvent("value-state-change", { |
| 813 | valueState: newValueState, |
| 814 | }); |
| 815 | |
| 816 | if (!eventPrevented) { |
| 817 | this.valueState = newValueState; |
| 818 | } |
| 819 | } |
| 820 | } |
| 821 | |
| 822 | _tokenDelete(e: CustomEvent<TokenizerTokenDeleteEventDetail>) { |
| 823 | this._previouslySelectedItems = this._getSelectedItems(); |
no outgoing calls
no test coverage detected