first commit

This commit is contained in:
Stefan Hacker
2026-04-03 09:38:48 +02:00
commit 37ad745546
47450 changed files with 3120798 additions and 0 deletions
@@ -0,0 +1,20 @@
import * as React from 'react';
import type { ICalendarDayGridProps, ICalendarDayGridStyles } from './CalendarDayGrid.types';
import type { IProcessedStyleSet } from '@fluentui/style-utilities';
import type { IDayInfo, IWeekCorners } from './CalendarDayGrid.base';
export interface ICalendarGridRowProps extends ICalendarDayGridProps {
classNames: IProcessedStyleSet<ICalendarDayGridStyles>;
weeks: IDayInfo[][];
week: IDayInfo[];
weekIndex: number;
weekCorners?: IWeekCorners;
ariaHidden?: boolean;
rowClassName?: string;
ariaRole?: string;
navigatedDayRef: React.MutableRefObject<HTMLTableCellElement>;
activeDescendantId: string;
calculateRoundedStyles(classNames: IProcessedStyleSet<ICalendarDayGridStyles>, above: boolean, below: boolean, left: boolean, right: boolean): string;
getDayInfosInRangeOfDay(dayToCompare: IDayInfo): IDayInfo[];
getRefsFromDayInfos(dayInfosInRange: IDayInfo[]): (HTMLElement | null)[];
}
export declare const CalendarGridRow: React.FunctionComponent<ICalendarGridRowProps>;