UNPKG

devextreme

Version:

HTML5 JavaScript Component Suite for Responsive Web Development

28 lines (27 loc) 878 B
/** * DevExtreme (esm/__internal/scheduler/workspaces/m_timeline_day.js) * Version: 24.2.6 * Build date: Mon Mar 17 2025 * * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/ */ import registerComponent from "../../../core/component_registrator"; import { VIEWS } from "../m_constants"; import SchedulerTimeline from "./m_timeline"; const TIMELINE_CLASS = "dx-scheduler-timeline-day"; class SchedulerTimelineDay extends SchedulerTimeline { get type() { return VIEWS.TIMELINE_DAY } _getElementClass() { return TIMELINE_CLASS } _needRenderWeekHeader() { return this._isWorkSpaceWithCount() } } registerComponent("dxSchedulerTimelineDay", SchedulerTimelineDay); export default SchedulerTimelineDay;