Carregando…
Carregando…
Carregando…Rich text editor with formatting toolbar (bold, italic, lists, etc.).
Demo coming soon
Add a demo component to DEMOS in _showcase.tsx for inputs/text-editor
$ npx kikitocn add text-editorimport { TextEditor } from "@/components/ui/cn/text-editor/TextEditor";
export function TextEditorExample() {
return (
<TextEditor />
);
}| Prop | Tipo | Padrão | Descrição |
|---|---|---|---|
value | string | — | HTML controlado |
defaultValue | string | — | HTML inicial |
onChange | (html: string) => void | — | Callback ao alterar conteúdo |
placeholder | string | — | Placeholder quando vazio |
minHeight | number | 200 | Altura mínima do editor (px) |
disabled | boolean | false | Somente leitura |
className | string | — | Classes CSS extras |