feat: initial rich-text-elements-ui library implementation

TipTap-powered rich text editing library with WYSIWYG editor, markdown editor,
template editor, collaboration support (Yjs), mentions, track changes,
comments, code blocks, and table insertion.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Giuliano Silvestro
2026-02-15 23:33:25 +10:00
commit 30775d5a01
90 changed files with 9709 additions and 0 deletions

12
build-for-dev.sh Executable file
View File

@@ -0,0 +1,12 @@
#!/usr/bin/env bash
set -euo pipefail
# Build the library
npm run build
# Link it locally for development
cd dist
npm link
echo "Library built and linked successfully"
echo "Run 'npm link @sda/rich-text-elements-ui' in your consuming app"