Luuk
01/13/2026, 6:43 PM@customElement('my-file-editor')
export class FileEditorElement
extends UmbFormControlMixin<FileFieldData, typeof UmbLitElement>(
UmbLitElement,
)
implements UmbPropertyEditorUiElement
constructor() {
super()
this.addValidator(
'customError',
() => 'This field must contain a "Unicorn"',
() => false,
)
}