diff --git a/stores/calculation/options/types.ts b/stores/calculation/options/types.ts index 2946c27..7020188 100644 --- a/stores/calculation/options/types.ts +++ b/stores/calculation/options/types.ts @@ -1,4 +1,4 @@ -import type { Elements } from 'Components/Calculation/config/map-values'; +import type { Elements } from 'Components/Calculation/config/map/values'; import type { BaseOption } from 'Elements/types'; export type CalculationOptions = Record; diff --git a/stores/calculation/statuses/index.ts b/stores/calculation/statuses/index.ts index 723bddb..e26c53a 100644 --- a/stores/calculation/statuses/index.ts +++ b/stores/calculation/statuses/index.ts @@ -1,6 +1,6 @@ /* eslint-disable object-curly-newline */ /* eslint-disable import/no-cycle */ -import type { Elements } from 'Components/Calculation/config/map-values'; +import type { Elements } from 'Components/Calculation/config/map/values'; import defaultStatuses from 'config/default-statuses'; import type { Status } from 'Elements/types'; import { makeAutoObservable } from 'mobx'; diff --git a/stores/calculation/statuses/types.ts b/stores/calculation/statuses/types.ts index d4202c3..2adf5f7 100644 --- a/stores/calculation/statuses/types.ts +++ b/stores/calculation/statuses/types.ts @@ -1,4 +1,4 @@ -import type { Elements } from 'Components/Calculation/config/map-values'; +import type { Elements } from 'Components/Calculation/config/map/values'; import type { Status } from 'Elements/types'; export type CalculationStatuses = Partial>; diff --git a/stores/calculation/validation/index.ts b/stores/calculation/validation/index.ts index c574147..9c166f8 100644 --- a/stores/calculation/validation/index.ts +++ b/stores/calculation/validation/index.ts @@ -1,7 +1,7 @@ /* eslint-disable import/no-cycle */ /* eslint-disable implicit-arrow-linebreak */ /* eslint-disable object-curly-newline */ -import type { Elements } from 'Components/Calculation/config/map-values'; +import type { Elements } from 'Components/Calculation/config/map/values'; import { makeAutoObservable, observable } from 'mobx'; import type RootStore from 'stores/root'; import type { Error, Messages } from './types'; diff --git a/stores/calculation/validation/types.ts b/stores/calculation/validation/types.ts index d5ccfb3..0163603 100644 --- a/stores/calculation/validation/types.ts +++ b/stores/calculation/validation/types.ts @@ -1,4 +1,4 @@ -import type { Elements } from 'Components/Calculation/config/map-values'; +import type { Elements } from 'Components/Calculation/config/map/values'; import type { IObservableArray } from 'mobx'; export type Error = { name: string; text: string };