Skip to content

Commit

Permalink
Fix typo in components/interaction.md guide
Browse files Browse the repository at this point in the history
  • Loading branch information
Szulerinio authored Jul 7, 2024
1 parent a712a90 commit 31714fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/guides/components/interaction.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ The new event-based system that replaced `InteractionManager` from v6 has expand
|---|---|
| `none` | Ignores all interaction events, similar to CSS's `pointer-events: none`, good optimization for non-interactive children |
| `passive` | Does not emit events and ignores hit testing on itself but does allow for events and hit testing only its interactive children. This is default eventMode for all containers |
| `auto` | Does not emit events and but is hit tested if parent is interactive. Same as `interactive = false` in v7 |
| `auto` | Does not emit events but is hit tested if parent is interactive. Same as `interactive = false` in v7 |
| `static` | Emit events and is hit tested. Same as `interaction = true` in v7, useful for objects like buttons that do not move. |
| `dynamic` | Emits events and is hit tested but will also receive mock interaction events fired from a ticker to allow for interaction when the mouse isn't moving. This is useful for elements that are independently moving or animating. |

Expand Down

0 comments on commit 31714fe

Please sign in to comment.