[feat] drag and drop order and folders

This commit is contained in:
kwaroran
2023-05-23 04:51:47 +09:00
parent d174aa0796
commit c42a8710e1
12 changed files with 895 additions and 340 deletions

View File

@@ -219,6 +219,8 @@ export function setDatabase(data:Database){
FontColorItalicBold: "#8C8D93"
}
}
changeLanguage(data.language)
DataBase.set(data)
}
@@ -424,6 +426,14 @@ export interface Database{
textBorder?:boolean
textScreenRounded?:boolean
textScreenBorder?:string
characterOrder:(string|folder)[]
}
export interface folder{
name:string
data:string[]
color:string
id:string
}