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