Skip to content

Commit 484bec7

Browse files
committed
fix imports after rebase
1 parent 6577b2c commit 484bec7

File tree

2 files changed

+5
-16
lines changed

2 files changed

+5
-16
lines changed

packages/core/src/reducers/core.ts

+1-8
Original file line numberDiff line numberDiff line change
@@ -45,14 +45,7 @@ import {
4545
import { JsonFormsCore, Reducer, ValidationMode } from '../store';
4646
import Ajv, { ErrorObject } from 'ajv';
4747
import { isFunction } from 'lodash';
48-
import {
49-
composePaths,
50-
createAjv,
51-
isOneOfEnumSchema,
52-
Reducer,
53-
toLodashSegments,
54-
validate,
55-
} from '../util';
48+
import { createAjv, toLodashSegments, validate } from '../util';
5649

5750
export const initState: JsonFormsCore = {
5851
data: {},

packages/core/src/reducers/i18n.ts

+4-8
Original file line numberDiff line numberDiff line change
@@ -23,22 +23,18 @@
2323
THE SOFTWARE.
2424
*/
2525

26-
import {
27-
defaultErrorTranslator,
28-
defaultTranslator,
29-
ErrorTranslator,
30-
JsonFormsI18nState,
31-
Translator,
32-
} from '../i18n';
26+
import { defaultErrorTranslator, defaultTranslator } from '../i18n';
3327
import {
3428
I18nActions,
3529
SET_LOCALE,
3630
SET_TRANSLATOR,
3731
UPDATE_I18N,
3832
} from '../actions';
3933
import { Reducer } from '../store/type';
40-
import { JsonFormsI18nState } from '../store';
34+
import { ErrorTranslator, JsonFormsI18nState, Translator } from '../store';
4135
import { UISchemaElement } from '../models';
36+
import { toLodashPath } from '../util';
37+
import { ErrorObject } from 'ajv';
4238

4339
export const defaultJsonFormsI18nState: Required<JsonFormsI18nState> = {
4440
locale: 'en',

0 commit comments

Comments
 (0)