@@ -7,18 +7,18 @@ import {
77} from '@togglecorp/toggle-ui' ;
88import { randomString } from '@togglecorp/fujs' ;
99
10- import { createSubmitHandler } from '../../lib/src/submissionHelper' ;
11- import useForm , { useFormArray , useFormObject } from '../../lib/src/form' ;
12- import type { PartialForm as RawPartialForm , SetValueArg } from '../../lib/src/types' ;
13- import type { Error , ObjectSchema , ArraySchema } from '../../lib/src/schema' ;
14- import NonFieldError from './NonFieldError' ;
15- import FormContainer , { Row } from './FormContainer' ;
10+ import { createSubmitHandler } from '@togglecorp/toggle-form/src/submissionHelper' ;
11+ import useForm , { useFormArray , useFormObject } from '@togglecorp/toggle-form/src/form' ;
12+ import type { PartialForm as RawPartialForm , SetValueArg } from '@togglecorp/toggle-form/src/types' ;
13+ import type { Error , ObjectSchema , ArraySchema } from '@togglecorp/toggle-form/src/schema' ;
1614import {
1715 requiredStringCondition ,
1816 greaterThanCondition ,
19- } from '../../lib/src/validation' ;
20- import { getErrorObject } from '../../lib/src/errorAccessHelper' ;
21- import { nonFieldError } from '../../lib/src/types' ;
17+ } from '@togglecorp/toggle-form/src/validation' ;
18+ import { getErrorObject } from '@togglecorp/toggle-form/src/errorAccessHelper' ;
19+ import { nonFieldError } from '@togglecorp/toggle-form/src/types' ;
20+ import NonFieldError from './NonFieldError' ;
21+ import FormContainer , { Row } from './FormContainer' ;
2222
2323type PartialForm < T > = RawPartialForm < T , 'clientId' > ;
2424
0 commit comments