UNPKG

mantine-datepicker-jalali

Version:
16 lines 1.03 kB
import React from 'react'; import { DefaultProps, Selectors } from '@mantine/core'; import { MonthLevelStylesNames, MonthLevelSettings } from '../MonthLevel'; import useStyles from './MonthLevelGroup.styles'; export declare type MonthLevelGroupStylesNames = Selectors<typeof useStyles> | MonthLevelStylesNames; export interface MonthLevelGroupProps extends DefaultProps<MonthLevelGroupStylesNames>, Omit<MonthLevelSettings, 'withPrevious' | 'withNext' | '__onDayKeyDown' | '__getDayRef'>, React.ComponentPropsWithoutRef<'div'> { __staticSelector?: string; /** Number of columns to render next to each other */ numberOfColumns?: number; /** Month that is currently displayed */ month: Date; /** Function that returns level control aria-label based on month date */ levelControlAriaLabel?: ((month: Date) => string) | string; } export declare const MonthLevelGroup: React.ForwardRefExoticComponent<MonthLevelGroupProps & React.RefAttributes<HTMLDivElement>>; //# sourceMappingURL=MonthLevelGroup.d.ts.map