mirror of
https://github.com/supabase/supabase.git
synced 2026-07-06 06:54:21 +08:00
18 lines
574 B
TypeScript
18 lines
574 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'
|
|
|
|
export const ERROR_PRIMARY_KEY_NOTFOUND =
|
|
'Please add a primary key column to your table to update or delete rows'
|
|
|
|
const RLS_ACKNOWLEDGED_KEY = 'supabase-acknowledge-rls-warning'
|
|
|
|
export const rlsAcknowledgedKey = (tableID?: string | number) =>
|
|
`${RLS_ACKNOWLEDGED_KEY}-${String(tableID)}`
|