Sets the default active state of the grid before receiving focus the first time.
()
| 270 | |
| 271 | /** Sets the default active state of the grid before receiving focus the first time. */ |
| 272 | setDefaultStateEffect(): void { |
| 273 | if (this.hasBeenInteracted()) return; |
| 274 | this.gridBehavior.setDefaultState(); |
| 275 | } |
| 276 | |
| 277 | /** Resets the active state of the grid if it is empty or stale. */ |
| 278 | resetStateEffect(): void { |
no test coverage detected