baseui
Version:
A React Component library implementing the Base design language
31 lines (30 loc) • 972 B
TypeScript
export declare const DISPLAY_FORMAT = "L";
export declare const ISO_FORMAT = "YYYY-MM-DD";
export declare const ISO_MONTH_FORMAT = "YYYY-MM";
export declare const ORIENTATION: Readonly<{
readonly horizontal: "horizontal";
readonly vertical: "vertical";
}>;
export declare const STATE_CHANGE_TYPE: Readonly<{
readonly change: "change";
readonly moveUp: "moveUp";
readonly moveDown: "moveDown";
readonly moveLeft: "moveLeft";
readonly moveRight: "moveRight";
readonly mouseOver: "mouseOver";
readonly mouseLeave: "mouseLeave";
}>;
export declare const WEEKDAYS: number[];
export declare const DEFAULT_MONTHS: number[];
export declare const DENSITY: {
readonly high: "high";
readonly default: "default";
};
export declare const INPUT_ROLE: {
readonly startDate: "startDate";
readonly endDate: "endDate";
};
export declare const RANGED_CALENDAR_BEHAVIOR: {
readonly default: "default";
readonly locked: "locked";
};