refactor: replace notification bool prop drill with note option

Signed-off-by: William Casarin <jb55@jb55.com>
This commit is contained in:
William Casarin
2025-09-10 12:04:00 -07:00
parent 7b4c96df91
commit f889b54ed9
3 changed files with 15 additions and 21 deletions

View File

@@ -39,8 +39,11 @@ bitflags! {
/// no animation override (accessibility)
const NoAnimations = 1 << 17;
/// Styled for a notification preview
/// The note should be displayed as a preview of the underlying note of a composite unit
const NotificationPreview = 1 << 18;
/// The note is a notification
const Notification = 1 << 19;
}
}