feat: Add smooth slide-up animation to SelectionToolbox (#4832)

This commit is contained in:
Chenlei Hu
2025-08-08 00:34:10 -04:00
committed by GitHub
parent 5d71d6f9cf
commit 95ab88693c
5 changed files with 134 additions and 4 deletions

View File

@@ -0,0 +1,9 @@
import type { InjectionKey, Ref } from 'vue'
export interface SelectionOverlayState {
visible: Readonly<Ref<boolean>>
updateCount: Readonly<Ref<number>>
}
export const SelectionOverlayInjectionKey: InjectionKey<SelectionOverlayState> =
Symbol('selectionOverlayState')