()
| 123 | }); |
| 124 | |
| 125 | constructor() { |
| 126 | super(); |
| 127 | |
| 128 | afterRenderEffect({write: () => this._pattern.keyboardEventRelayEffect()}); |
| 129 | afterRenderEffect(() => this._pattern.closePopupOnBlurEffect()); |
| 130 | afterRenderEffect(() => { |
| 131 | this.contentVisible.set(this._pattern.isExpanded()); |
| 132 | }); |
| 133 | |
| 134 | if (this._pattern.isEditable()) { |
| 135 | afterRenderEffect(() => { |
| 136 | this._renderer.setProperty(this.element, 'value', this.value()); |
| 137 | }); |
| 138 | afterRenderEffect(() => { |
| 139 | this._pattern.highlightEffect(); |
| 140 | }); |
| 141 | } |
| 142 | } |
| 143 | |
| 144 | ngOnInit() { |
| 145 | if (this.alwaysExpanded()) { |
nothing calls this directly
no test coverage detected