devextreme
Version:
HTML5 JavaScript Component Suite for Responsive Web Development
28 lines (27 loc) • 888 B
JavaScript
/**
* DevExtreme (esm/ui/scheduler/workspaces/ui.scheduler.timeline_day.js)
* Version: 22.1.9
* Build date: Tue Apr 18 2023
*
* Copyright (c) 2012 - 2023 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 "../constants";
import SchedulerTimeline from "./ui.scheduler.timeline";
var 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;