fix: import/export paths

This commit is contained in:
Ilia Mashkov
2026-01-06 21:36:29 +03:00
parent eb10d58128
commit 1f19e964ca
4 changed files with 6 additions and 4 deletions

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 };