UNPKG

devextreme

Version:

HTML5 JavaScript Component Suite for Responsive Web Development

27 lines (26 loc) 855 B
/** * DevExtreme (esm/__internal/scheduler/r1/utils/timeline_week.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 { getValidCellDateForLocalTimeFormat } from "./base"; export const getDateForHeaderText = (index, date, _ref) => { let { startDayHour: startDayHour, startViewDate: startViewDate, cellCountInDay: cellCountInDay, interval: interval, viewOffset: viewOffset } = _ref; return getValidCellDateForLocalTimeFormat(date, { startViewDate: startViewDate, startDayHour: startDayHour, cellIndexShift: index % cellCountInDay * interval, viewOffset: viewOffset }) };