removed splash, plugins load info

This commit is contained in:
Jan Prochazka
2021-05-19 19:36:12 +02:00
parent f0ea35d576
commit c4491050cd
4 changed files with 26 additions and 30 deletions

View File

@@ -59,6 +59,10 @@ export const nullStore = readable(null, () => {});
export const currentArchive = writable('default');
export const isFileDragActive = writable(false);
export const selectedCellsCallback = writable(null);
export const loadingPluginStore = writable({
loaded: false,
loadingPackageName: null,
});
export const currentThemeDefinition = derived([currentTheme, extensions], ([$currentTheme, $extensions]) =>
$extensions.themes.find(x => x.className == $currentTheme)