aq-fe-framework 0.1.65 → 0.1.67
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -6,6 +6,7 @@ import { UseFormReturnType, useForm } from '@mantine/form';
|
|
|
6
6
|
import { I as IUtils_Excel_ColumnConfig } from '../excel---d-HDs7.mjs';
|
|
7
7
|
import { MRT_ColumnDef, MRT_RowData, MRT_TableOptions, MRT_TableInstance } from 'mantine-react-table';
|
|
8
8
|
import { ConfigOptions } from 'export-to-csv';
|
|
9
|
+
import { CalendarEventExternal } from '@schedule-x/calendar';
|
|
9
10
|
import { DateInputProps } from '@mantine/dates';
|
|
10
11
|
import { EditorOptions } from '@tiptap/react';
|
|
11
12
|
import { IconProps, Icon } from '@tabler/icons-react';
|
|
@@ -312,7 +313,7 @@ interface I$2 extends NumberFormatterProps {
|
|
|
312
313
|
}
|
|
313
314
|
declare function MyNumberFormatter({ ...rest }: I$2): react_jsx_runtime.JSX.Element;
|
|
314
315
|
|
|
315
|
-
interface MyScheduleXProps<T> {
|
|
316
|
+
interface MyScheduleXProps<T extends CalendarEventExternal> {
|
|
316
317
|
values?: T[];
|
|
317
318
|
timeGridEvent?: (props: {
|
|
318
319
|
calendarEvent: T;
|
|
@@ -324,7 +325,7 @@ interface MyScheduleXProps<T> {
|
|
|
324
325
|
startDayBoundaries?: string;
|
|
325
326
|
endDayBoundaries?: string;
|
|
326
327
|
}
|
|
327
|
-
declare function MyScheduleX<T>({ values, timeGridEvent, eventModal, nDays, startDayBoundaries, endDayBoundaries }: MyScheduleXProps<T>): react_jsx_runtime.JSX.Element;
|
|
328
|
+
declare function MyScheduleX<T extends CalendarEventExternal>({ values, timeGridEvent, eventModal, nDays, startDayBoundaries, endDayBoundaries }: MyScheduleXProps<T>): react_jsx_runtime.JSX.Element;
|
|
328
329
|
|
|
329
330
|
declare function AQStatCard1({ title, value, unit, description, icons, diff }: {
|
|
330
331
|
title: string;
|