* Removes the field from the page and fires the 'removed' event.
()
| 164 | * Removes the field from the page and fires the 'removed' event. |
| 165 | */ |
| 166 | remove(){ |
| 167 | let event = new CustomEvent(`checkout:${this.componentType}:removed`, { detail: this }); |
| 168 | document.dispatchEvent(event); |
| 169 | super.remove(); |
| 170 | } |
| 171 | |
| 172 | get value(){ |
| 173 | return this.querySelector(this.selectors.input).value; |
no outgoing calls
no test coverage detected