Skip to content

RowAnimationType

Type of row animation.

  • 'change': Flash highlight when row data changes (e.g., after cell edit)
  • 'insert': Slide-in animation for newly added rows
  • 'remove': Fade-out animation for rows being removed
type RowAnimationType = "change" | "insert" | "remove"
// Internal usage - row animation is triggered automatically:
// - 'change' after cell-commit event
// - 'insert' when rows are added to the grid
// - 'remove' when rows are deleted
// The animation respects AnimationConfig.mode
grid.gridConfig = {
animation: { mode: 'on', duration: 300 },
};
AI assistants: For complete API documentation, implementation guides, and code examples for this library, see https://raw.githubusercontent.com/OysteinAmundsen/toolbox/main/llms-full.txt