UNPKG

devextreme

Version:

HTML5 JavaScript Component Suite for Responsive Web Development

27 lines (26 loc) 1.01 kB
/** * DevExtreme (esm/__internal/scheduler/constants.js) * Version: 24.2.7 * Build date: Mon Apr 28 2025 * * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/ */ export const LIST_ITEM_DATA_KEY = "dxListItemData"; export const LIST_ITEM_CLASS = "dx-list-item"; export const APPOINTMENT_SETTINGS_KEY = "dxAppointmentSettings"; export const VERTICAL_GROUP_ORIENTATION = "vertical"; export const HORIZONTAL_GROUP_ORIENTATION = "horizontal"; export const VIEWS = { DAY: "day", WEEK: "week", WORK_WEEK: "workWeek", MONTH: "month", TIMELINE_DAY: "timelineDay", TIMELINE_WEEK: "timelineWeek", TIMELINE_WORK_WEEK: "timelineWorkWeek", TIMELINE_MONTH: "timelineMonth", AGENDA: "agenda" }; export const VIEW_TYPES = Object.values(VIEWS); export const TIMELINE_VIEWS = [VIEWS.TIMELINE_DAY, VIEWS.TIMELINE_WEEK, VIEWS.TIMELINE_WORK_WEEK, VIEWS.TIMELINE_MONTH];