feature/fetch-fonts #14

Merged
ilia merged 76 commits from feature/fetch-fonts into main 2026-01-14 11:01:44 +00:00
4 changed files with 6 additions and 4 deletions
Showing only changes of commit 1f19e964ca - Show all commits

View File

@@ -17,7 +17,7 @@ import type {
FontSubset, FontSubset,
UnifiedFont, UnifiedFont,
} from '$entities/Font/model/types'; } from '$entities/Font/model/types';
import { createCollectionCache } from '$shared/fetch/collectionCache'; import { createCollectionCache } from '$shared/lib/fetch/collectionCache';
import type { Writable } from 'svelte/store'; import type { Writable } from 'svelte/store';
import { import {
derived, derived,

View File

@@ -1,4 +1,4 @@
import type { Property } from '$shared/store/createFilterStore'; import type { Property } from '$shared/lib/store/createFilterStore/createFilterStore';
export const FONT_CATEGORIES: Property[] = [ export const FONT_CATEGORIES: Property[] = [
{ {

View File

@@ -1,4 +1,4 @@
import type { Property } from '$shared/store/createFilterStore'; import type { Property } from '$shared/lib/store/createFilterStore/createFilterStore';
import { import {
fireEvent, fireEvent,
render, render,

View File

@@ -4,4 +4,6 @@
* Exports all shared UI components and their types * Exports all shared UI components and their types
*/ */
export { default as VirtualList } from './VirtualList.svelte'; import VirtualList from './VirtualList/VirtualList.svelte';
export { VirtualList };