feature/searchbar-enhance #17

Merged
ilia merged 48 commits from feature/searchbar-enhance into main 2026-01-18 14:04:53 +00:00
3 changed files with 13 additions and 1 deletions
Showing only changes of commit e0e0d929bb - Show all commits

View File

@@ -60,9 +60,11 @@ export type {
} from './model';
export {
appliedFontsManager,
createFontshareStore,
fetchFontshareFontsQuery,
fontshareStore,
selectedFontsStore,
} from './model';
// Stores
@@ -72,4 +74,8 @@ export {
} from './model/services/fetchGoogleFonts.svelte';
// UI elements
export { FontList } from './ui';
export {
FontApplicator,
FontListItem,
FontVirtualList,
} from './ui';

View File

@@ -37,7 +37,9 @@ export type {
export { fetchFontshareFontsQuery } from './services';
export {
appliedFontsManager,
createFontshareStore,
type FontshareStore,
fontshareStore,
selectedFontsStore,
} from './store';

View File

@@ -17,3 +17,7 @@ export {
type FontshareStore,
fontshareStore,
} from './fontshareStore.svelte';
export { appliedFontsManager } from './appliedFontsStore/appliedFontsStore.svelte';
export { selectedFontsStore } from './selectedFontsStore/selectedFontsStore.svelte';