fix/filtration #20

Merged
ilia merged 7 commits from fix/filtration into main 2026-02-05 08:51:46 +00:00
3 changed files with 8 additions and 4 deletions
Showing only changes of commit 596a023d24 - Show all commits

View File

@@ -37,6 +37,7 @@ export type {
export {
appliedFontsManager,
createUnifiedFontStore,
type FontConfigRequest,
selectedFontsStore,
type UnifiedFontStore,
unifiedFontStore,

View File

@@ -14,7 +14,10 @@ export {
} from './unifiedFontStore.svelte';
// Applied fonts manager (CSS loading - unchanged)
export { appliedFontsManager } from './appliedFontsStore/appliedFontsStore.svelte';
export {
appliedFontsManager,
type FontConfigRequest,
} from './appliedFontsStore/appliedFontsStore.svelte';
// Selected fonts store (user selection - unchanged)
export { selectedFontsStore } from './selectedFontsStore/selectedFontsStore.svelte';

View File

@@ -12,15 +12,15 @@ export type {
FontCategory,
FontProvider,
FontSubset,
FontVariant,
FontWeight,
FontWeightItalic,
} from './common';
// Google Fonts API types
export type {
FontFiles,
FontItem,
FontVariant,
FontWeight,
FontWeightItalic,
GoogleFontItem,
GoogleFontsApiModel,
} from './google';