Inline Editor
Editor inline para superficies admin densas, tablas y filas de detalle. Mantiene el modo lectura compacto y usa primitives de formulario NeuralUI al editar.
TypeScript
import { NeuInlineEditorComponent } from '@neural-ui/core/inline-editor';Título
Presupuesto
Rol
Notas
TypeScript
import { FormControl, ReactiveFormsModule } from '@angular/forms';
import { NeuInlineEditorComponent } from '@neural-ui/core/inline-editor';
@Component({
imports: [ReactiveFormsModule, NeuInlineEditorComponent],
template: `
<neu-inline-editor
[formControl]="title"
emptyLabel="Untitled"
editLabel="Edit title"
saveLabel="Save title"
cancelLabel="Cancel title edit"
/>
`,
})
export class ExampleComponent {
title = new FormControl('Q3 operating plan', { nonNullable: true });
}