devextreme
Version:
JavaScript/TypeScript Component Suite for Responsive Web Development
28 lines (27 loc) • 895 B
JavaScript
/**
* DevExtreme (esm/__internal/scheduler/workspaces/m_timeline_day.js)
* Version: 25.2.5
* Build date: Fri Feb 20 2026
*
* Copyright (c) 2012 - 2026 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 "../utils/options/constants_view";
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;