feat(client): status bar (experimental)
This commit is contained in:
parent
f8f3ecbf02
commit
44c85aff86
12 changed files with 658 additions and 51 deletions
|
|
@ -88,6 +88,19 @@ export const defaultStore = markRaw(new Storage('base', {
|
|||
where: 'deviceAccount',
|
||||
default: false,
|
||||
},
|
||||
statusbars: {
|
||||
where: 'deviceAccount',
|
||||
default: [] as {
|
||||
name: string;
|
||||
id: string;
|
||||
type: string;
|
||||
props: Record<string, any>;
|
||||
}[],
|
||||
},
|
||||
statusbarSize: {
|
||||
where: 'deviceAccount',
|
||||
default: 'medium',
|
||||
},
|
||||
widgets: {
|
||||
where: 'deviceAccount',
|
||||
default: [] as {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue