@progress/kendo-react-scheduler
Version:
React Scheduler brings the functionality of Outlook's Calendar to a single UI component. KendoReact Scheduler package
26 lines (25 loc) • 933 B
JavaScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
import * as a from "react";
import { MultiDayView as o, multiDayViewDefaultProps as i } from "./MultiDayView.mjs";
import { dayViewTitle as t, messages as r } from "../../messages/index.mjs";
const s = (e) => /* @__PURE__ */ a.createElement(o, { ...e }), D = {
...i,
name: "day",
title: (e) => e.toLanguageString(t, r[t]),
numberOfDays: 1,
slotDuration: 60,
slotDivisions: 2,
selectedDateFormat: "{0:D}",
selectedShortDateFormat: "{0:d}"
};
s.displayName = "KendoReactSchedulerDayView";
export {
s as DayView,
D as dayViewDefaultProps
};