File tree Expand file tree Collapse file tree 2 files changed +5
-16
lines changed
packages/core/src/reducers Expand file tree Collapse file tree 2 files changed +5
-16
lines changed Original file line number Diff line number Diff line change @@ -45,14 +45,7 @@ import {
4545import { JsonFormsCore , Reducer , ValidationMode } from '../store' ;
4646import Ajv , { ErrorObject } from 'ajv' ;
4747import { 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
5750export const initState : JsonFormsCore = {
5851 data : { } ,
Original file line number Diff line number Diff line change 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' ;
3327import {
3428 I18nActions ,
3529 SET_LOCALE ,
3630 SET_TRANSLATOR ,
3731 UPDATE_I18N ,
3832} from '../actions' ;
3933import { Reducer } from '../store/type' ;
40- import { JsonFormsI18nState } from '../store' ;
34+ import { ErrorTranslator , JsonFormsI18nState , Translator } from '../store' ;
4135import { UISchemaElement } from '../models' ;
36+ import { toLodashPath } from '../util' ;
37+ import { ErrorObject } from 'ajv' ;
4238
4339export const defaultJsonFormsI18nState : Required < JsonFormsI18nState > = {
4440 locale : 'en' ,
You can’t perform that action at this time.
0 commit comments