feature: tiered sort

This commit is contained in:
2024-05-22 09:27:22 +08:00
parent a946012a33
commit 190e43c814
14 changed files with 254 additions and 147 deletions

3
lib/ui/popup.d.ts vendored
View File

@ -69,7 +69,8 @@ export class Popup {
}
interface PopupButton {
tabIndex: number;
className?: string;
tabIndex?: number;
key: string;
text: string;
trigger: (this: Popup) => boolean | Promise<boolean>;