Manages Roqueform field annotations.
import { createField } from 'roqueform';import annotationsPlugin from 'roqueform/plugin/annotations';const field = createField({ hello: 'world' }, [ annotationsPlugin({ isDisabled: false })]);field.at('hello').annotations.isDisabled // ⮕ false Copy
import { createField } from 'roqueform';import annotationsPlugin from 'roqueform/plugin/annotations';const field = createField({ hello: 'world' }, [ annotationsPlugin({ isDisabled: false })]);field.at('hello').annotations.isDisabled // ⮕ false
Manages Roqueform field annotations.