You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Linting & Code Quality: Systematically resolved all remaining lint errors across the library and demo app.
Improved Type Safety: Replaced numerous any types with specific interfaces or unknown, and added explicit eslint-disable comments where dynamic logic (like Tiptap chaining) requires it.
Accessibility (A11y): Enhanced interactive components with appropriate ARIA roles, tabindex, and keyboard event handlers (keydown.enter, keydown.space, keydown.escape) to meet modern accessibility standards.
Output Naming Consistency: Renamed several @Output() properties to avoid conflicts with native DOM events and on- prefixes (e.g., onClick -> buttonClick).
Regular Expressions: Fixed redundant escape characters in slash command patterns.
Case Declarations: Wrapped switch case blocks with curly braces to properly scope lexical declarations.