feat/font-store-merge #32

Merged
ilia merged 10 commits from feat/font-store-merge into main 2026-04-10 05:13:40 +00:00
3 changed files with 12 additions and 0 deletions
Showing only changes of commit 468d2e7f8c - Show all commits

View File

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

View File

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

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';