2026-05-24 20:00:43 +03:00
|
|
|
// Font lifecycle manager (browser-side load + cache + eviction)
|
2026-06-02 23:02:30 +03:00
|
|
|
export {
|
|
|
|
|
__resetFontLifecycleManager,
|
|
|
|
|
FontLifecycleManager,
|
|
|
|
|
getFontLifecycleManager,
|
|
|
|
|
} from './fontLifecycleManager/fontLifecycleManager.svelte';
|
2026-04-08 09:55:40 +03:00
|
|
|
|
2026-05-24 20:00:43 +03:00
|
|
|
// Paginated catalog
|
2026-06-01 17:24:55 +03:00
|
|
|
export { getFontCatalog } from './fontCatalogStore/fontCatalogStore.svelte';
|
|
|
|
|
export type { FontCatalogStore } from './fontCatalogStore/fontCatalogStore.svelte';
|
2026-05-31 17:49:59 +03:00
|
|
|
|
|
|
|
|
// Batch fetch by IDs (detail-cache seeding)
|
|
|
|
|
export { FontsByIdsStore } from './fontsByIdsStore/fontsByIdsStore.svelte';
|