chore: move store creators to separate directories

This commit is contained in:
Ilia Mashkov
2026-01-06 21:33:30 +03:00
parent d1f035a6ad
commit bea3f7ae7f
8 changed files with 349 additions and 6 deletions

View File

@@ -1,7 +1,7 @@
import {
type FilterModel,
createFilterStore,
} from '$shared/store/createFilterStore';
} from '$shared/lib/store/createFilterStore/createFilterStore';
import { FONT_CATEGORIES } from '../const/const';
/**

View File

@@ -1,7 +1,7 @@
import {
type FilterModel,
createFilterStore,
} from '$shared/store/createFilterStore';
} from '$shared/lib/store/createFilterStore/createFilterStore';
import { FONT_PROVIDERS } from '../const/const';
/**

View File

@@ -1,7 +1,7 @@
import {
type FilterModel,
createFilterStore,
} from '$shared/store/createFilterStore';
} from '$shared/lib/store/createFilterStore/createFilterStore';
import { FONT_SUBSETS } from '../const/const';
/**

View File

@@ -1,7 +1,7 @@
import {
type ControlModel,
createControlStore,
} from '$shared/store/createControlStore';
} from '$shared/lib/store/createControlStore/createControlStore';
import {
DEFAULT_FONT_SIZE,
MAX_FONT_SIZE,

View File

@@ -1,7 +1,7 @@
import {
type ControlModel,
createControlStore,
} from '$shared/store/createControlStore';
} from '$shared/lib/store/createControlStore/createControlStore';
import {
DEFAULT_FONT_WEIGHT,
FONT_WEIGHT_STEP,

View File

@@ -1,7 +1,7 @@
import {
type ControlModel,
createControlStore,
} from '$shared/store/createControlStore';
} from '$shared/lib/store/createControlStore/createControlStore';
import {
DEFAULT_LINE_HEIGHT,
LINE_HEIGHT_STEP,