aq-fe-framework 0.1.63 → 0.1.64
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.
|
@@ -312,12 +312,7 @@ interface I$2 extends NumberFormatterProps {
|
|
|
312
312
|
}
|
|
313
313
|
declare function MyNumberFormatter({ ...rest }: I$2): react_jsx_runtime.JSX.Element;
|
|
314
314
|
|
|
315
|
-
interface
|
|
316
|
-
id: number;
|
|
317
|
-
start: string;
|
|
318
|
-
end: string;
|
|
319
|
-
}
|
|
320
|
-
interface MyScheduleXProps<T extends BaseEvent> {
|
|
315
|
+
interface MyScheduleXProps<T> {
|
|
321
316
|
values?: T[];
|
|
322
317
|
timeGridEvent?: (props: {
|
|
323
318
|
calendarEvent: T;
|
|
@@ -329,7 +324,7 @@ interface MyScheduleXProps<T extends BaseEvent> {
|
|
|
329
324
|
startDayBoundaries?: string;
|
|
330
325
|
endDayBoundaries?: string;
|
|
331
326
|
}
|
|
332
|
-
declare function MyScheduleX<T
|
|
327
|
+
declare function MyScheduleX<T>({ values, timeGridEvent, eventModal, nDays, startDayBoundaries, endDayBoundaries }: MyScheduleXProps<T>): react_jsx_runtime.JSX.Element;
|
|
333
328
|
|
|
334
329
|
declare function AQStatCard1({ title, value, unit, description, icons, diff }: {
|
|
335
330
|
title: string;
|