UI-Nodes
Erweiterte Dashboard-2 UI-Komponenten für moderne Benutzeroberflächen.
Dynamic Form
Dynamische Formulare aus JSON-Schema mit automatischer Validierung.
msg.schema = {
type: "object",
properties: {
name: {type: "string", title: "Name"},
email: {type: "string", format: "email"},
age: {type: "number", minimum: 18}
},
required: ["name", "email"]
};Dynamic Table
Erweiterte Tabellen mit CRUD, Sorting, Filtering, Pagination.
msg.payload = [
{id: 1, name: "Max", status: "active"},
{id: 2, name: "Anna", status: "inactive"}
];
msg.columns = ["id", "name", "status"];Audio Capture
Audio-Aufnahme im Browser für Voice-Input.
Chat
Chat-Interface mit Markdown, File-Upload, Typing-Indicator.
Progressbar
Animierte Fortschrittsanzeigen für Long-Running Operations.
Nächste Schritte
- Portal - Portal mit UI-Nodes erstellen
- Dashboard-2 Docs - Offizielle Dokumentation