mirror of
https://github.com/ruvnet/RuVector.git
synced 2026-05-30 03:53:34 +00:00
Major additions: - Complete Next.js studio application with 1600+ components - Docker support (Dockerfile.combined, docker-compose.yml) - GCP deployment documentation and benchmarks - SQL benchmark scripts for performance testing - Sentry integration for monitoring - Comprehensive test suite and mocks Studio features: - Dashboard and admin interfaces - Data visualization components - Authentication and user management - API integration with RuVector backend - Static data and public assets 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
16 lines
514 B
TypeScript
16 lines
514 B
TypeScript
export const COLUMN_MIN_WIDTH = 100
|
|
|
|
export const STORAGE_KEY_PREFIX = 'supabase_grid'
|
|
|
|
export const TOTAL_ROWS_INITIAL = -1
|
|
export const TOTAL_ROWS_RESET = -2
|
|
|
|
export const SELECT_COLUMN_KEY = 'supabase-grid-select-row'
|
|
export const ADD_COLUMN_KEY = 'supabase-grid-add-column'
|
|
|
|
const RLS_ACKNOWLEDGED_KEY = 'supabase-acknowledge-rls-warning'
|
|
|
|
export const rlsAcknowledgedKey = (tableID?: string | number) =>
|
|
`${RLS_ACKNOWLEDGED_KEY}-${String(tableID)}`
|
|
|
|
export const ROW_CONTEXT_MENU_ID = 'row-context-menu-id'
|