UNPKG

sanity

Version:

Sanity is a real-time content infrastructure with a scalable, hosted backend featuring a Graph Oriented Query Language (GROQ), asset pipelines and fast edge caches

30 lines (25 loc) 526 B
export const DEFAULT_MONTH_NAMES = [ 'January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December', ] export const DEFAULT_WEEK_DAY_NAMES = ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'] export const ARROW_KEYS = ['ArrowUp', 'ArrowDown', 'ArrowLeft', 'ArrowRight'] export const DEFAULT_TIME_PRESETS = [ [0, 0], [6, 0], [12, 0], [18, 0], [23, 59], ] // all weekdays except first export const TAIL_WEEKDAYS = [1, 2, 3, 4, 5, 6]