reworked the octave css layout to get rid of the Zindex added support for showNoteNames policy and added an onhover policy

This commit is contained in:
Clément Le Bihan
2023-03-19 17:59:20 +01:00
parent f43561460d
commit 6a10ad2398
3 changed files with 114 additions and 81 deletions
+1 -1
View File
@@ -3,7 +3,7 @@
export type Note = "C" | "D" | "E" | "F" | "G" | "A" | "B";
export type Accidental = "#" | "b" | "##" | "bb";
export type NoteNameBehavior = "always" | "onpress" | "onhighlight" | "never";
export type NoteNameBehavior = "always" | "onpress" | "onhighlight" | "onhover" | "never";
export type KeyPressStyle = "subtle" | "vivid";
export class PianoKey {