()
| 261 | } |
| 262 | |
| 263 | postBuild () { |
| 264 | this.setupWatchListeners() |
| 265 | this.addLinks() |
| 266 | this.register() |
| 267 | this.setValue(this.getDefault(), true) |
| 268 | this.updateHeaderText() |
| 269 | this.onWatchedFieldChange() |
| 270 | |
| 271 | if (this.options.titleHidden) { |
| 272 | this.theme.visuallyHidden(this.label) |
| 273 | this.theme.visuallyHidden(this.header) |
| 274 | } |
| 275 | |
| 276 | if (this.enforceConstEnabled && this.schema.const) { |
| 277 | this.disable() |
| 278 | } |
| 279 | } |
| 280 | |
| 281 | setupWatchListeners () { |
| 282 | /* Watched fields */ |
no test coverage detected