From 08bb3d09c8a8e581e2f20702a275601d02913d31 Mon Sep 17 00:00:00 2001 From: Chika Date: Tue, 31 May 2022 16:37:06 +0300 Subject: [PATCH] fix path to Components/Calculation/config/map/values --- stores/calculation/options/types.ts | 2 +- stores/calculation/statuses/index.ts | 2 +- stores/calculation/statuses/types.ts | 2 +- stores/calculation/validation/index.ts | 2 +- stores/calculation/validation/types.ts | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) 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 };