feat(FontStore): export through entity barrel files

This commit is contained in:
Ilia Mashkov
2026-04-08 09:55:40 +03:00
parent 2a761b9d47
commit 468d2e7f8c
3 changed files with 12 additions and 0 deletions
+3
View File
@@ -38,7 +38,10 @@ export type {
export {
appliedFontsManager,
createFontStore,
createUnifiedFontStore,
FontStore,
fontStore,
type UnifiedFontStore,
unifiedFontStore,
} from './store';
+7
View File
@@ -15,3 +15,10 @@ export {
// Applied fonts manager (CSS loading - unchanged)
export { appliedFontsManager } from './appliedFontsStore/appliedFontsStore.svelte';
// Single FontStore (new implementation)
export {
createFontStore,
FontStore,
fontStore,
} from './fontStore/fontStore.svelte';