@progress/kendo-react-scheduler
Version:
React Scheduler brings the functionality of Outlook's Calendar to a single UI component. KendoReact Scheduler package
62 lines (61 loc) • 1.89 kB
TypeScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
import { Range, Group } from '../models/index.js';
import * as React from 'react';
/** @hidden */
export { MS_PER_DAY } from '@progress/kendo-date-math';
/** @hidden */
export declare const MIDNIGHT_INVARIANT: Date;
/** @hidden */
export declare const MS_PER_SECOND = 1000;
/** @hidden */
export declare const MS_PER_MINUTE: number;
/** @hidden */
export declare const MS_PER_HOUR: number;
/** @hidden */
export declare const TIME_FORMAT = "t";
/** @hidden */
export declare const BORDER_WIDTH = 1;
/** @hidden */
export declare const DEFAULT_EVENT_HEIGHT = 25;
/** @hidden */
export declare const DAYS_IN_WEEK_COUNT = 7;
/** @hidden */
export declare const WEEKS_COUNT = 6;
/** @hidden */
export declare const HOURS_IN_DAY_COUNT = 24;
/** @hidden */
export declare const EMPTY_RESOURCE: {}[];
/** @hidden */
export declare const OCCURRENCE_ID = 0;
/** @hidden */
export declare const DEFAULT_ID: undefined;
/** @hidden */
export declare const DISPLAY_NONE_STYLES: React.CSSProperties;
/** @hidden */
export declare const VISIBILITY_HIDDEN_STYLES: React.CSSProperties;
/** @hidden */
export declare const DEFAULT_GROUP: Group;
/**
* @hidden
*/
export declare const MIN_DATE: Date;
/**
* @hidden
*/
export declare const MAX_DATE: Date;
/** @hidden */
export declare const DEFAULT_RANGE: Range;
/**
* Specifies the available [DataAction](https://www.telerik.com/kendo-react-ui/components/scheduler/api/data_action) types.
*/
export declare enum DATA_ACTION {
create = 0,
update = 1,
remove = 2
}