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

View File

@@ -49,7 +49,9 @@ export type {
export { export {
appliedFontsManager, appliedFontsManager,
createFontStore,
createUnifiedFontStore, createUnifiedFontStore,
fontStore,
unifiedFontStore, unifiedFontStore,
} from './model'; } from './model';

View File

@@ -38,7 +38,10 @@ export type {
export { export {
appliedFontsManager, appliedFontsManager,
createFontStore,
createUnifiedFontStore, createUnifiedFontStore,
FontStore,
fontStore,
type UnifiedFontStore, type UnifiedFontStore,
unifiedFontStore, unifiedFontStore,
} from './store'; } from './store';

View File

@@ -15,3 +15,10 @@ export {
// Applied fonts manager (CSS loading - unchanged) // Applied fonts manager (CSS loading - unchanged)
export { appliedFontsManager } from './appliedFontsStore/appliedFontsStore.svelte'; export { appliedFontsManager } from './appliedFontsStore/appliedFontsStore.svelte';
// Single FontStore (new implementation)
export {
createFontStore,
FontStore,
fontStore,
} from './fontStore/fontStore.svelte';