chore: update ui refs in plugins

This commit is contained in:
Elliot DeNolf
2024-03-19 16:58:20 -04:00
parent 07288de5a1
commit 3bbfa822d7
47 changed files with 103 additions and 82 deletions

View File

@@ -7,14 +7,14 @@ import { CodeEditor } from '../../elements/CodeEditor/index.js'
import { Label as LabelComp } from '../../forms/Label/index.js'
import { useField } from '../../forms/useField/index.js'
import { withCondition } from '../../forms/withCondition/index.js'
import { fieldBaseClass } from '../shared.js'
import { fieldBaseClass } from '../shared/index.js'
import './index.scss'
const baseClass = 'json-field'
import type { FieldBase, JSONField as JSONFieldType } from 'payload/types'
import type { FormFieldBase } from '../shared.js'
import type { FormFieldBase } from '../shared/index.js'
export type JSONFieldProps = FormFieldBase & {
editorOptions?: JSONFieldType['admin']['editorOptions']