Initial commit: data-viz-elements-ui library

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Giuliano Silvestro
2026-02-13 22:06:35 +10:00
commit 0ce172bfc1
98 changed files with 8832 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/data-viz-elements-ui' in your consuming app"