2026-01-13 20:00:36 +03:00
|
|
|
/**
|
|
|
|
|
* ============================================================================
|
|
|
|
|
* UNIFIED FONT STORE EXPORTS
|
|
|
|
|
* ============================================================================
|
|
|
|
|
*
|
|
|
|
|
* Single export point for the unified font store infrastructure.
|
|
|
|
|
*/
|
|
|
|
|
|
2026-01-29 14:38:07 +03:00
|
|
|
// Applied fonts manager (CSS loading - unchanged)
|
2026-04-03 12:25:38 +03:00
|
|
|
export { appliedFontsManager } from './appliedFontsStore/appliedFontsStore.svelte';
|
2026-04-08 09:55:40 +03:00
|
|
|
|
|
|
|
|
// Single FontStore (new implementation)
|
|
|
|
|
export {
|
|
|
|
|
createFontStore,
|
|
|
|
|
FontStore,
|
|
|
|
|
fontStore,
|
|
|
|
|
} from './fontStore/fontStore.svelte';
|