From 468d2e7f8c33fbd2459652480647cc7eeaa3a7b2 Mon Sep 17 00:00:00 2001 From: Ilia Mashkov Date: Wed, 8 Apr 2026 09:55:40 +0300 Subject: [PATCH] feat(FontStore): export through entity barrel files --- src/entities/Font/index.ts | 2 ++ src/entities/Font/model/index.ts | 3 +++ src/entities/Font/model/store/index.ts | 7 +++++++ 3 files changed, 12 insertions(+) diff --git a/src/entities/Font/index.ts b/src/entities/Font/index.ts index f4f0782..084dff6 100644 --- a/src/entities/Font/index.ts +++ b/src/entities/Font/index.ts @@ -49,7 +49,9 @@ export type { export { appliedFontsManager, + createFontStore, createUnifiedFontStore, + fontStore, unifiedFontStore, } from './model'; diff --git a/src/entities/Font/model/index.ts b/src/entities/Font/model/index.ts index 90eb6e3..730126f 100644 --- a/src/entities/Font/model/index.ts +++ b/src/entities/Font/model/index.ts @@ -38,7 +38,10 @@ export type { export { appliedFontsManager, + createFontStore, createUnifiedFontStore, + FontStore, + fontStore, type UnifiedFontStore, unifiedFontStore, } from './store'; diff --git a/src/entities/Font/model/store/index.ts b/src/entities/Font/model/store/index.ts index 4f0fc38..a345174 100644 --- a/src/entities/Font/model/store/index.ts +++ b/src/entities/Font/model/store/index.ts @@ -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';