+ reset() {
+ this.input.value = this.initialValue;
+ this.userInfoContainer.innerHTML = this.initialContent;
+ this.input.dispatchEvent(new Event('change', {bubbles: true}));
+ this.hide();
+ }
+
+ hide() {
+ /** @var {Dropdown} **/
+ const dropdown = window.$components.firstOnElement(this.container, 'dropdown');
+ dropdown.hide();
+ }