@dayflow/core 3.5.2 → 3.6.0
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.
- package/dist/index.d.ts +134 -90
- package/dist/index.esm.js +1 -1
- package/dist/styles.components.css +1 -1
- package/dist/styles.css +1 -1
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -472,10 +472,6 @@ type TimeZoneValue = TimeZone | string;
|
|
|
472
472
|
type TComponent = AnyComponent<any, any>;
|
|
473
473
|
/** Generic type for framework-specific nodes/elements */
|
|
474
474
|
type TNode = ComponentChildren;
|
|
475
|
-
/**
|
|
476
|
-
* Custom mobile event renderer (Drawer or Dialog)
|
|
477
|
-
*/
|
|
478
|
-
type MobileEventRenderer = AnyComponent<any, any>;
|
|
479
475
|
/**
|
|
480
476
|
* View type enum
|
|
481
477
|
*/
|
|
@@ -484,6 +480,7 @@ declare enum ViewType {
|
|
|
484
480
|
WEEK = "week",
|
|
485
481
|
MONTH = "month",
|
|
486
482
|
YEAR = "year",
|
|
483
|
+
AGENDA = "agenda",
|
|
487
484
|
RESOURCE = "resource"
|
|
488
485
|
}
|
|
489
486
|
type CalendarViewType = ViewType | string;
|
|
@@ -546,6 +543,11 @@ interface CalendarCallbacks {
|
|
|
546
543
|
* If eventId is null, closes the detail UI.
|
|
547
544
|
*/
|
|
548
545
|
onEventDetailToggle?: (eventId: string | null) => void;
|
|
546
|
+
/**
|
|
547
|
+
* Toggle the mobile event detail drawer.
|
|
548
|
+
* Pass an event to open it, or null to close it.
|
|
549
|
+
*/
|
|
550
|
+
onMobileEventDetailToggle?: (event: Event | null) => void;
|
|
549
551
|
}
|
|
550
552
|
interface CalendarHeaderProps {
|
|
551
553
|
calendar: ICalendarApp;
|
|
@@ -604,7 +606,6 @@ interface CalendarAppConfig {
|
|
|
604
606
|
useEventDetailDialog?: boolean;
|
|
605
607
|
useEventDetailPanel?: boolean;
|
|
606
608
|
useCalendarHeader?: boolean;
|
|
607
|
-
customMobileEventRenderer?: MobileEventRenderer;
|
|
608
609
|
locale?: string | Locale;
|
|
609
610
|
readOnly?: boolean | ReadOnlyConfig;
|
|
610
611
|
/** Custom sort comparator for all-day events, applied in day/week/month/year views. */
|
|
@@ -682,6 +683,7 @@ interface ICalendarApp {
|
|
|
682
683
|
onEventDoubleClick: (event: Event, e: MouseEvent) => boolean | undefined | Promise<boolean | undefined>;
|
|
683
684
|
onMoreEventsClick: (date: Date) => void;
|
|
684
685
|
onEventDetailToggle: (eventId: string | null) => void;
|
|
686
|
+
onMobileEventDetailToggle: (event: Event | null) => void;
|
|
685
687
|
highlightEvent: (eventId: string | null) => void;
|
|
686
688
|
selectEvent: (eventId: string | null) => void;
|
|
687
689
|
getCalendars: () => CalendarType[];
|
|
@@ -703,7 +705,6 @@ interface ICalendarApp {
|
|
|
703
705
|
getCalendarRegistry: () => CalendarRegistry;
|
|
704
706
|
getUseEventDetailDialog: () => boolean;
|
|
705
707
|
getUseEventDetailPanel: () => boolean;
|
|
706
|
-
getCustomMobileEventRenderer: () => MobileEventRenderer | undefined;
|
|
707
708
|
updateConfig: (config: Partial<CalendarAppConfig>) => void;
|
|
708
709
|
/** The resolved global display/edit timezone (IANA string). */
|
|
709
710
|
readonly timeZone: string;
|
|
@@ -776,6 +777,7 @@ interface CalendarConfig {
|
|
|
776
777
|
day: Record<string, unknown>;
|
|
777
778
|
week: Record<string, unknown>;
|
|
778
779
|
month: Record<string, unknown>;
|
|
780
|
+
agenda: Record<string, unknown>;
|
|
779
781
|
};
|
|
780
782
|
}
|
|
781
783
|
interface UseCalendarReturn {
|
|
@@ -1121,78 +1123,6 @@ declare class WeekDataCache {
|
|
|
1121
1123
|
clear(): void;
|
|
1122
1124
|
}
|
|
1123
1125
|
|
|
1124
|
-
/**
|
|
1125
|
-
* Event detail panel Props
|
|
1126
|
-
*/
|
|
1127
|
-
interface EventDetailPanelProps {
|
|
1128
|
-
/** Current event data */
|
|
1129
|
-
event: Event;
|
|
1130
|
-
/** Panel position information */
|
|
1131
|
-
position: EventDetailPosition;
|
|
1132
|
-
/** Panel DOM reference */
|
|
1133
|
-
panelRef: RefObject<HTMLDivElement>;
|
|
1134
|
-
/** Whether the event is all-day */
|
|
1135
|
-
isAllDay: boolean;
|
|
1136
|
-
/** Event visibility state */
|
|
1137
|
-
eventVisibility: 'standard' | 'sticky-top' | 'sticky-bottom' | 'sticky-left' | 'sticky-right';
|
|
1138
|
-
/** Calendar container reference */
|
|
1139
|
-
calendarRef: RefObject<HTMLDivElement>;
|
|
1140
|
-
/** Selected event element reference */
|
|
1141
|
-
selectedEventElementRef: RefObject<HTMLElement | null>;
|
|
1142
|
-
/** Event update callback */
|
|
1143
|
-
onEventUpdate: (updatedEvent: Event) => void | Promise<void>;
|
|
1144
|
-
/** Event delete callback */
|
|
1145
|
-
onEventDelete: (eventId: string) => void | Promise<void>;
|
|
1146
|
-
/** Close panel callback (optional) */
|
|
1147
|
-
onClose?: () => void;
|
|
1148
|
-
}
|
|
1149
|
-
/**
|
|
1150
|
-
* Custom event detail panel renderer (full panel including positioning and styling)
|
|
1151
|
-
*/
|
|
1152
|
-
type EventDetailPanelRenderer = AnyComponent<EventDetailPanelProps, any>;
|
|
1153
|
-
/**
|
|
1154
|
-
* Event detail content Props (excluding panel container, content only)
|
|
1155
|
-
*/
|
|
1156
|
-
interface EventDetailContentProps {
|
|
1157
|
-
/** Current event data */
|
|
1158
|
-
event: Event;
|
|
1159
|
-
/** Whether the event is all-day */
|
|
1160
|
-
isAllDay: boolean;
|
|
1161
|
-
/** Event update callback */
|
|
1162
|
-
onEventUpdate: (updatedEvent: Event) => void | Promise<void>;
|
|
1163
|
-
/** Event delete callback */
|
|
1164
|
-
onEventDelete: (eventId: string) => void | Promise<void>;
|
|
1165
|
-
/** Close panel callback (optional) */
|
|
1166
|
-
onClose?: () => void;
|
|
1167
|
-
app?: ICalendarApp;
|
|
1168
|
-
}
|
|
1169
|
-
/**
|
|
1170
|
-
* Custom event detail content renderer (content only, will be wrapped in default panel)
|
|
1171
|
-
*/
|
|
1172
|
-
type EventDetailContentRenderer = AnyComponent<EventDetailContentProps, any>;
|
|
1173
|
-
/**
|
|
1174
|
-
* Event detail dialog Props
|
|
1175
|
-
*/
|
|
1176
|
-
interface EventDetailDialogProps {
|
|
1177
|
-
/** Current event data */
|
|
1178
|
-
event: Event;
|
|
1179
|
-
/** Whether the dialog is open */
|
|
1180
|
-
isOpen: boolean;
|
|
1181
|
-
/** Whether the event is all-day */
|
|
1182
|
-
isAllDay: boolean;
|
|
1183
|
-
/** Event update callback */
|
|
1184
|
-
onEventUpdate: (updatedEvent: Event) => void | Promise<void>;
|
|
1185
|
-
/** Event delete callback */
|
|
1186
|
-
onEventDelete: (eventId: string) => void | Promise<void>;
|
|
1187
|
-
/** Close dialog callback */
|
|
1188
|
-
onClose: () => void;
|
|
1189
|
-
app?: ICalendarApp;
|
|
1190
|
-
}
|
|
1191
|
-
/**
|
|
1192
|
-
* Custom event detail dialog renderer (Dialog/Modal mode)
|
|
1193
|
-
*/
|
|
1194
|
-
type EventDetailDialogRenderer = AnyComponent<EventDetailDialogProps, any>;
|
|
1195
|
-
|
|
1196
1126
|
/**
|
|
1197
1127
|
* Common Props interface for view components
|
|
1198
1128
|
* Base properties for all view components
|
|
@@ -1212,8 +1142,6 @@ interface BaseViewProps<TConfig = unknown> {
|
|
|
1212
1142
|
onEventSelect?: (eventId: string | null) => void;
|
|
1213
1143
|
detailPanelEventId?: string | null;
|
|
1214
1144
|
onDetailPanelToggle?: (eventId: string | null) => void;
|
|
1215
|
-
customDetailPanelContent?: EventDetailContentRenderer;
|
|
1216
|
-
customEventDetailDialog?: EventDetailDialogRenderer;
|
|
1217
1145
|
useEventDetailPanel?: boolean;
|
|
1218
1146
|
calendarRef: RefObject<HTMLDivElement>;
|
|
1219
1147
|
switcherMode?: ViewSwitcherMode;
|
|
@@ -1231,6 +1159,10 @@ type WeekViewProps = BaseViewProps<WeekViewConfig>;
|
|
|
1231
1159
|
* Month view specific Props
|
|
1232
1160
|
*/
|
|
1233
1161
|
type MonthViewProps = BaseViewProps<MonthViewConfig>;
|
|
1162
|
+
/**
|
|
1163
|
+
* Agenda view specific Props
|
|
1164
|
+
*/
|
|
1165
|
+
type AgendaViewProps = BaseViewProps<AgendaViewConfig>;
|
|
1234
1166
|
/**
|
|
1235
1167
|
* Year view specific Props
|
|
1236
1168
|
*/
|
|
@@ -1265,6 +1197,17 @@ interface WeekViewConfig extends ViewFactoryConfig {
|
|
|
1265
1197
|
scrollToCurrentTime?: boolean;
|
|
1266
1198
|
secondaryTimeZone?: TimeZoneValue;
|
|
1267
1199
|
showEventDots?: boolean;
|
|
1200
|
+
/**
|
|
1201
|
+
* Action when a date cell is clicked.
|
|
1202
|
+
*/
|
|
1203
|
+
gridDateClick?: 'day-view' | 'none' | ((date: Date, events: Event[]) => void);
|
|
1204
|
+
/**
|
|
1205
|
+
* Action when a date cell is double-clicked.
|
|
1206
|
+
* - 'day-view' (default): navigate to the Day View
|
|
1207
|
+
* - 'none': no action
|
|
1208
|
+
* - function: custom handler
|
|
1209
|
+
*/
|
|
1210
|
+
gridDateDoubleClick?: 'day-view' | 'none' | ((date: Date, events: Event[]) => void);
|
|
1268
1211
|
}
|
|
1269
1212
|
/**
|
|
1270
1213
|
* Month scroll / navigation configuration
|
|
@@ -1290,6 +1233,37 @@ interface MonthViewConfig extends ViewFactoryConfig {
|
|
|
1290
1233
|
/** Scroll / navigation behavior for the month view */
|
|
1291
1234
|
scroll?: MonthScrollConfig;
|
|
1292
1235
|
showEventDots?: boolean;
|
|
1236
|
+
/**
|
|
1237
|
+
* Action when a date cell is clicked.
|
|
1238
|
+
*/
|
|
1239
|
+
gridDateClick?: 'week-view' | 'day-view' | 'none' | ((date: Date, events: Event[]) => void);
|
|
1240
|
+
/**
|
|
1241
|
+
* Action when a date cell is double-clicked.
|
|
1242
|
+
* - 'week-view' (default): navigate to the Week View
|
|
1243
|
+
* - 'none': no action
|
|
1244
|
+
* - function: custom handler
|
|
1245
|
+
*/
|
|
1246
|
+
gridDateDoubleClick?: 'week-view' | 'day-view' | 'none' | ((date: Date, events: Event[]) => void);
|
|
1247
|
+
}
|
|
1248
|
+
/**
|
|
1249
|
+
* Agenda view factory configuration
|
|
1250
|
+
*/
|
|
1251
|
+
interface AgendaViewConfig extends ViewFactoryConfig {
|
|
1252
|
+
/** Number of days rendered in one agenda page. */
|
|
1253
|
+
daysToShow?: number;
|
|
1254
|
+
/** Whether empty dates should still render a section in the list. */
|
|
1255
|
+
showEmptyDays?: boolean;
|
|
1256
|
+
/**
|
|
1257
|
+
* Action when a date section is clicked.
|
|
1258
|
+
*/
|
|
1259
|
+
gridDateClick?: 'day-view' | 'none' | ((date: Date, events: Event[]) => void);
|
|
1260
|
+
/**
|
|
1261
|
+
* Action when a date section is double-clicked.
|
|
1262
|
+
* - 'day-view' (default): navigate to the Day View
|
|
1263
|
+
* - 'none': no action
|
|
1264
|
+
* - function: custom handler
|
|
1265
|
+
*/
|
|
1266
|
+
gridDateDoubleClick?: 'day-view' | 'none' | ((date: Date, events: Event[]) => void);
|
|
1293
1267
|
}
|
|
1294
1268
|
/**
|
|
1295
1269
|
* Year view factory configuration
|
|
@@ -1543,6 +1517,78 @@ interface UseVirtualScrollReturn {
|
|
|
1543
1517
|
setIsScrolling: (val: boolean | ((prev: boolean) => boolean)) => void;
|
|
1544
1518
|
}
|
|
1545
1519
|
|
|
1520
|
+
/**
|
|
1521
|
+
* Event detail panel Props
|
|
1522
|
+
*/
|
|
1523
|
+
interface EventDetailPanelProps {
|
|
1524
|
+
/** Current event data */
|
|
1525
|
+
event: Event;
|
|
1526
|
+
/** Panel position information */
|
|
1527
|
+
position: EventDetailPosition;
|
|
1528
|
+
/** Panel DOM reference */
|
|
1529
|
+
panelRef: RefObject<HTMLDivElement>;
|
|
1530
|
+
/** Whether the event is all-day */
|
|
1531
|
+
isAllDay: boolean;
|
|
1532
|
+
/** Event visibility state */
|
|
1533
|
+
eventVisibility: 'standard' | 'sticky-top' | 'sticky-bottom' | 'sticky-left' | 'sticky-right';
|
|
1534
|
+
/** Calendar container reference */
|
|
1535
|
+
calendarRef: RefObject<HTMLDivElement>;
|
|
1536
|
+
/** Selected event element reference */
|
|
1537
|
+
selectedEventElementRef: RefObject<HTMLElement | null>;
|
|
1538
|
+
/** Event update callback */
|
|
1539
|
+
onEventUpdate: (updatedEvent: Event) => void | Promise<void>;
|
|
1540
|
+
/** Event delete callback */
|
|
1541
|
+
onEventDelete: (eventId: string) => void | Promise<void>;
|
|
1542
|
+
/** Close panel callback (optional) */
|
|
1543
|
+
onClose?: () => void;
|
|
1544
|
+
}
|
|
1545
|
+
/**
|
|
1546
|
+
* Custom event detail panel renderer (full panel including positioning and styling)
|
|
1547
|
+
*/
|
|
1548
|
+
type EventDetailPanelRenderer = AnyComponent<EventDetailPanelProps, any>;
|
|
1549
|
+
/**
|
|
1550
|
+
* Event detail content Props (excluding panel container, content only)
|
|
1551
|
+
*/
|
|
1552
|
+
interface EventDetailContentProps {
|
|
1553
|
+
/** Current event data */
|
|
1554
|
+
event: Event;
|
|
1555
|
+
/** Whether the event is all-day */
|
|
1556
|
+
isAllDay: boolean;
|
|
1557
|
+
/** Event update callback */
|
|
1558
|
+
onEventUpdate: (updatedEvent: Event) => void | Promise<void>;
|
|
1559
|
+
/** Event delete callback */
|
|
1560
|
+
onEventDelete: (eventId: string) => void | Promise<void>;
|
|
1561
|
+
/** Close panel callback (optional) */
|
|
1562
|
+
onClose?: () => void;
|
|
1563
|
+
app?: ICalendarApp;
|
|
1564
|
+
}
|
|
1565
|
+
/**
|
|
1566
|
+
* Custom event detail content renderer (content only, will be wrapped in default panel)
|
|
1567
|
+
*/
|
|
1568
|
+
type EventDetailContentRenderer = AnyComponent<EventDetailContentProps, any>;
|
|
1569
|
+
/**
|
|
1570
|
+
* Event detail dialog Props
|
|
1571
|
+
*/
|
|
1572
|
+
interface EventDetailDialogProps {
|
|
1573
|
+
/** Current event data */
|
|
1574
|
+
event: Event;
|
|
1575
|
+
/** Whether the dialog is open */
|
|
1576
|
+
isOpen: boolean;
|
|
1577
|
+
/** Whether the event is all-day */
|
|
1578
|
+
isAllDay: boolean;
|
|
1579
|
+
/** Event update callback */
|
|
1580
|
+
onEventUpdate: (updatedEvent: Event) => void | Promise<void>;
|
|
1581
|
+
/** Event delete callback */
|
|
1582
|
+
onEventDelete: (eventId: string) => void | Promise<void>;
|
|
1583
|
+
/** Close dialog callback */
|
|
1584
|
+
onClose: () => void;
|
|
1585
|
+
app?: ICalendarApp;
|
|
1586
|
+
}
|
|
1587
|
+
/**
|
|
1588
|
+
* Custom event detail dialog renderer (Dialog/Modal mode)
|
|
1589
|
+
*/
|
|
1590
|
+
type EventDetailDialogRenderer = AnyComponent<EventDetailDialogProps, any>;
|
|
1591
|
+
|
|
1546
1592
|
/**
|
|
1547
1593
|
* Mobile event drawer/dialog Props
|
|
1548
1594
|
*/
|
|
@@ -1620,7 +1666,6 @@ declare class CalendarApp implements ICalendarApp {
|
|
|
1620
1666
|
private useEventDetailDialog;
|
|
1621
1667
|
private useEventDetailPanel;
|
|
1622
1668
|
private useCalendarHeader;
|
|
1623
|
-
private customMobileEventRenderer?;
|
|
1624
1669
|
constructor(config: CalendarAppConfig);
|
|
1625
1670
|
private static resolveLocale;
|
|
1626
1671
|
subscribe: (listener: (app: ICalendarApp) => void) => (() => void);
|
|
@@ -1657,6 +1702,7 @@ declare class CalendarApp implements ICalendarApp {
|
|
|
1657
1702
|
onEventDoubleClick: (event: Event, e: MouseEvent) => boolean | undefined | Promise<boolean | undefined>;
|
|
1658
1703
|
onMoreEventsClick: (date: Date) => void;
|
|
1659
1704
|
onEventDetailToggle: (eventId: string | null) => void;
|
|
1705
|
+
onMobileEventDetailToggle: (event: Event | null) => void;
|
|
1660
1706
|
highlightEvent: (eventId: string | null) => void;
|
|
1661
1707
|
selectEvent: (eventId: string | null) => void;
|
|
1662
1708
|
dismissUI: () => void;
|
|
@@ -1682,7 +1728,6 @@ declare class CalendarApp implements ICalendarApp {
|
|
|
1682
1728
|
getCalendarRegistry: () => CalendarRegistry;
|
|
1683
1729
|
getUseEventDetailDialog: () => boolean;
|
|
1684
1730
|
getUseEventDetailPanel: () => boolean;
|
|
1685
|
-
getCustomMobileEventRenderer: () => MobileEventRenderer | undefined;
|
|
1686
1731
|
getCalendarHeaderConfig: () => boolean;
|
|
1687
1732
|
get timeZone(): string;
|
|
1688
1733
|
setOverrides: (overrides: string[]) => void;
|
|
@@ -2825,7 +2870,7 @@ declare const restoreTimedDragFromAllDayTransition: ({ wasOriginallyAllDay, mous
|
|
|
2825
2870
|
|
|
2826
2871
|
declare function normalizeTimeZoneValue(timeZone?: TimeZoneValue): string | undefined;
|
|
2827
2872
|
|
|
2828
|
-
type SyncableCalendarAppConfig = Pick<CalendarAppConfig, 'allDaySortComparator' | 'calendars' | '
|
|
2873
|
+
type SyncableCalendarAppConfig = Pick<CalendarAppConfig, 'allDaySortComparator' | 'calendars' | 'locale' | 'readOnly' | 'switcherMode' | 'theme' | 'timeZone' | 'useCalendarHeader' | 'useEventDetailDialog' | 'useEventDetailPanel' | 'views'>;
|
|
2829
2874
|
type CalendarAppConfigSyncSnapshot = {
|
|
2830
2875
|
callbacks: CalendarAppConfig['callbacks'];
|
|
2831
2876
|
syncableConfig: SyncableCalendarAppConfig;
|
|
@@ -2937,12 +2982,15 @@ declare const createWeekView: ViewFactory<WeekViewConfig>;
|
|
|
2937
2982
|
|
|
2938
2983
|
declare const createMonthView: ViewFactory<MonthViewConfig>;
|
|
2939
2984
|
|
|
2985
|
+
declare const createAgendaView: ViewFactory<AgendaViewConfig>;
|
|
2986
|
+
|
|
2940
2987
|
declare const createYearView: ViewFactory<YearViewConfig>;
|
|
2941
2988
|
|
|
2942
2989
|
declare function createStandardViews(config?: {
|
|
2943
2990
|
day?: Partial<DayViewConfig>;
|
|
2944
2991
|
week?: Partial<WeekViewConfig>;
|
|
2945
2992
|
month?: Partial<MonthViewConfig>;
|
|
2993
|
+
agenda?: Partial<AgendaViewConfig>;
|
|
2946
2994
|
}): CalendarView[];
|
|
2947
2995
|
|
|
2948
2996
|
declare function createEventsPlugin(config?: EventsPluginConfig): CalendarPlugin;
|
|
@@ -3139,10 +3187,6 @@ interface CalendarEventProps {
|
|
|
3139
3187
|
onEventSelect?: (eventId: string | null) => void;
|
|
3140
3188
|
onEventLongPress?: (eventId: string) => void;
|
|
3141
3189
|
onDetailPanelToggle?: (eventId: string | null) => void;
|
|
3142
|
-
/** Custom event detail content component (content only, will be wrapped in default panel) */
|
|
3143
|
-
customDetailPanelContent?: EventDetailContentRenderer;
|
|
3144
|
-
/** Custom event detail dialog component (Dialog mode) */
|
|
3145
|
-
customEventDetailDialog?: EventDetailDialogRenderer;
|
|
3146
3190
|
/** When false, suppresses the floating event detail panel entirely */
|
|
3147
3191
|
useEventDetailPanel?: boolean;
|
|
3148
3192
|
/** Multi-day regular event segment information */
|
|
@@ -3182,7 +3226,7 @@ interface CalendarEventProps {
|
|
|
3182
3226
|
appTimeZone?: string;
|
|
3183
3227
|
}
|
|
3184
3228
|
|
|
3185
|
-
declare const
|
|
3229
|
+
declare const _default: ({ event, layout, isAllDay, allDayHeight, calendarRef, isBeingDragged, isBeingResized, viewType, isMultiDay, segment, yearSegment, columnsPerRow, segmentIndex, hourHeight, firstHour, selectedEventId, detailPanelEventId, onMoveStart, onResizeStart, onEventUpdate, onEventDelete, newlyCreatedEventId, onDetailPanelOpen, onEventSelect, onEventLongPress, onDetailPanelToggle, useEventDetailPanel, multiDaySegmentInfo, app, isMobile, isSlidingView, enableTouch, hideTime, timeFormat, styleOverride, className, disableDefaultStyle, renderVisualContent, resizeHandleOrientation, appTimeZone, }: CalendarEventProps) => preact.JSX.Element;
|
|
3186
3230
|
|
|
3187
3231
|
interface LayoutCalculationParams {
|
|
3188
3232
|
containerWidth?: number;
|
|
@@ -3240,5 +3284,5 @@ declare const sidebarHeaderToggle = "df-sidebar-toggle";
|
|
|
3240
3284
|
*/
|
|
3241
3285
|
declare const sidebarHeaderTitle = "df-sidebar-header-title";
|
|
3242
3286
|
|
|
3243
|
-
export { AlertCircle, AudioLines, BlossomColorPicker, CalendarApp, CalendarEvent, CalendarRegistry, CalendarRenderer, Check, ChevronDown, ChevronRight, ChevronsUpDown, ContentSlot, CreateCalendarDialog, CustomRenderingStore, DefaultColorPicker, DefaultEventDetailDialog, DefaultEventDetailPanel, EventContextMenu, EventLayoutCalculator, GridContextMenu, LAYOUT_CONFIG, LOCALES, Loader2, LoadingButton, LocaleContext, LocaleProvider, MiniCalendar, PanelRightClose, PanelRightOpen, Plus, TIME_STEP, TimeZone, VIRTUAL_MONTH_SCROLL_CONFIG, ViewType, WeekDataCache, addDays, analyzeMultiDayEventsForRow, buildColorBarGradient, buildDiagonalColorBarGradient, buildDiagonalPatternBackground, buildFixedWeekMonthsData, calculateDayIndex, calendarPickerDropdown, cancelButton, capitalize, clipboardStore, compareAllDayDisplayPriority, compareViews, convertToDayFlowEvent, createAllDayDisplayComparator, createAllDayEvent, createConfigSyncSnapshot, createDateWithHour, createDayView, createEvent, createEventWithDate, createEventWithPlainDateTime, createEventWithRealDate, createEventWithZonedDateTime, createEvents, createEventsPlugin, createMonthView, createNormalizedCalendarAppConfigGetter, createStandardViews, createTemporalWithHour, createTimedEvent, createTimezoneEvent, createTimezoneEvents, createWeekView, createYearView, dateToPlainDate, dateToPlainDateTime, dateToZonedDateTime, daysBetween, daysDifference, downloadICS, en, escapeICSValue, extractHourFromDate, extractHourFromTemporal, extractVEvents, foldLine, formatDate, formatDateConsistent, formatDateToICSTimestamp, formatEventTimeRange, formatICSDate, formatMonthYear, formatProperty, formatTime, generateDayData, generateICS, generateSecondaryTimeSlots, generateUniKey, generateVEvent, generateWeekData, generateWeekRange, generateWeeksData, getAllDayEventsForDay, getAllDayRangeMetrics, getCalendarColorsForHex, getCalendarEventBgColors, getCalendarLineColors, getCallbackConfigUpdate, getCurrentWeekDates, getDateByDayIndex, getDateObj, getDayIndexByDate, getEndOfDay, getEndOfTemporal, getEventBgColor, getEventEndHour, getEventIcon, getEventTextColor, getEventsForDay, getEventsForWeek, getFixedWeekTotalColumns, getIntlLabel, getLineColor, getMonthLabels, getMonthYearOfWeek, getNextHourRangeInTimeZone, getNowInTimeZone, getPlainDate, getPrimaryCalendarId, getSearchHeaderInfo, getSelectedBgColor, getStartOfDay, getStartOfTemporal, getSyncConfigUpdates, getTestEvents, getTimezoneDisplayLabel, getTodayInTimeZone, getWeekDaysLabels, getWeekNumber, getWeekRange, groupDaysIntoRows, groupSearchResults, hasEventChanged, importICSFile, isDate, isDeepEqual, isEventDeepEqual, isEventInWeek, isMultiDayEvent, isMultiDayTemporalEvent, isPlainDate, isPlainDateTime, isSameDay, isSamePlainDate, isSameTemporal, isValidLocale, isZonedDateTime, monthNames, normalizeCssWidth, normalizeDate, normalizeLocale, normalizeTimeZoneValue, now, pad2, parseICS, parseICSDate, parseVEventLines, pickSyncableConfig, plainDateTimeToDate, plainDateToDate, recalculateEventDays, registerDragImplementation, registerLocale, registerSidebarImplementation, resolveAppliedTheme, restoreTimedDragFromAllDayTransition, restoreVisualEventToCanonical, restoreVisualTimedTemporalToCanonical, roundToTimeStep, scrollbarTakesSpace, setHourInTemporal, shortMonthNames, sidebarContainer, sidebarHeader, sidebarHeaderTitle, sidebarHeaderToggle, sortAllDayByTitle, subscribeCalendar, syncCalendarAppConfig, t, temporalToDate, temporalToVisualDate, temporalToVisualTemporal, today, unescapeICSValue, updateEventDateAndDay, updateEventWithRealDate, useDragForView, useLocale, useSidebarBridge, weekDays, weekDaysFullName, zonedDateTimeToDate };
|
|
3244
|
-
export type { AllDaySortComparator, BalanceStrategy, BaseViewProps, CalendarAppConfig, CalendarAppConfigSyncSnapshot, CalendarAppState, CalendarCallbacks, CalendarColors, CalendarConfig, CalendarEventProps, CalendarHeaderProps, CalendarPlugin, CalendarSearchEvent, CalendarSearchProps, CalendarType, CalendarView, CalendarViewType, CalendarsConfig, ColorPickerProps, CreateCalendarDialogColorPickerProps, CreateCalendarDialogProps, CreateEventParams, CreateTimezoneEventParams, CustomRendering, DayData, DayViewConfig, DayViewProps, DragConfig, DragHookOptions, DragHookReturn, DragIndicatorProps, DragIndicatorRenderer, DragIntegrationProps, DragPluginConfig, DragRef, DragService, Event, EventChange, EventContentSlotArgs, EventContextMenuSlotArgs, EventDetailContentProps, EventDetailContentRenderer, EventDetailDialogProps, EventDetailDialogRenderer, EventDetailPanelProps, EventDetailPanelRenderer, EventDetailPosition, EventGroup, EventLayout, EventRelations, EventsPluginConfig, EventsService, FixedWeekMonthData, GridContextMenuSlotArgs, ICSDateParams, ICSExportOptions, ICSImportOptions, ICSImportResult, ICSParseError, ICSVEvent, ICalendarApp, Locale, LocaleCode, LocaleContextValue, LocaleDict, LocaleMessages, LocaleProviderProps, MobileEventProps,
|
|
3287
|
+
export { AlertCircle, AudioLines, BlossomColorPicker, CalendarApp, _default as CalendarEvent, CalendarRegistry, CalendarRenderer, Check, ChevronDown, ChevronRight, ChevronsUpDown, ContentSlot, CreateCalendarDialog, CustomRenderingStore, DefaultColorPicker, DefaultEventDetailDialog, DefaultEventDetailPanel, EventContextMenu, EventLayoutCalculator, GridContextMenu, LAYOUT_CONFIG, LOCALES, Loader2, LoadingButton, LocaleContext, LocaleProvider, MiniCalendar, PanelRightClose, PanelRightOpen, Plus, TIME_STEP, TimeZone, VIRTUAL_MONTH_SCROLL_CONFIG, ViewType, WeekDataCache, addDays, analyzeMultiDayEventsForRow, buildColorBarGradient, buildDiagonalColorBarGradient, buildDiagonalPatternBackground, buildFixedWeekMonthsData, calculateDayIndex, calendarPickerDropdown, cancelButton, capitalize, clipboardStore, compareAllDayDisplayPriority, compareViews, convertToDayFlowEvent, createAgendaView, createAllDayDisplayComparator, createAllDayEvent, createConfigSyncSnapshot, createDateWithHour, createDayView, createEvent, createEventWithDate, createEventWithPlainDateTime, createEventWithRealDate, createEventWithZonedDateTime, createEvents, createEventsPlugin, createMonthView, createNormalizedCalendarAppConfigGetter, createStandardViews, createTemporalWithHour, createTimedEvent, createTimezoneEvent, createTimezoneEvents, createWeekView, createYearView, dateToPlainDate, dateToPlainDateTime, dateToZonedDateTime, daysBetween, daysDifference, downloadICS, en, escapeICSValue, extractHourFromDate, extractHourFromTemporal, extractVEvents, foldLine, formatDate, formatDateConsistent, formatDateToICSTimestamp, formatEventTimeRange, formatICSDate, formatMonthYear, formatProperty, formatTime, generateDayData, generateICS, generateSecondaryTimeSlots, generateUniKey, generateVEvent, generateWeekData, generateWeekRange, generateWeeksData, getAllDayEventsForDay, getAllDayRangeMetrics, getCalendarColorsForHex, getCalendarEventBgColors, getCalendarLineColors, getCallbackConfigUpdate, getCurrentWeekDates, getDateByDayIndex, getDateObj, getDayIndexByDate, getEndOfDay, getEndOfTemporal, getEventBgColor, getEventEndHour, getEventIcon, getEventTextColor, getEventsForDay, getEventsForWeek, getFixedWeekTotalColumns, getIntlLabel, getLineColor, getMonthLabels, getMonthYearOfWeek, getNextHourRangeInTimeZone, getNowInTimeZone, getPlainDate, getPrimaryCalendarId, getSearchHeaderInfo, getSelectedBgColor, getStartOfDay, getStartOfTemporal, getSyncConfigUpdates, getTestEvents, getTimezoneDisplayLabel, getTodayInTimeZone, getWeekDaysLabels, getWeekNumber, getWeekRange, groupDaysIntoRows, groupSearchResults, hasEventChanged, importICSFile, isDate, isDeepEqual, isEventDeepEqual, isEventInWeek, isMultiDayEvent, isMultiDayTemporalEvent, isPlainDate, isPlainDateTime, isSameDay, isSamePlainDate, isSameTemporal, isValidLocale, isZonedDateTime, monthNames, normalizeCssWidth, normalizeDate, normalizeLocale, normalizeTimeZoneValue, now, pad2, parseICS, parseICSDate, parseVEventLines, pickSyncableConfig, plainDateTimeToDate, plainDateToDate, recalculateEventDays, registerDragImplementation, registerLocale, registerSidebarImplementation, resolveAppliedTheme, restoreTimedDragFromAllDayTransition, restoreVisualEventToCanonical, restoreVisualTimedTemporalToCanonical, roundToTimeStep, scrollbarTakesSpace, setHourInTemporal, shortMonthNames, sidebarContainer, sidebarHeader, sidebarHeaderTitle, sidebarHeaderToggle, sortAllDayByTitle, subscribeCalendar, syncCalendarAppConfig, t, temporalToDate, temporalToVisualDate, temporalToVisualTemporal, today, unescapeICSValue, updateEventDateAndDay, updateEventWithRealDate, useDragForView, useLocale, useSidebarBridge, weekDays, weekDaysFullName, zonedDateTimeToDate };
|
|
3288
|
+
export type { AgendaViewConfig, AgendaViewProps, AllDaySortComparator, BalanceStrategy, BaseViewProps, CalendarAppConfig, CalendarAppConfigSyncSnapshot, CalendarAppState, CalendarCallbacks, CalendarColors, CalendarConfig, CalendarEventProps, CalendarHeaderProps, CalendarPlugin, CalendarSearchEvent, CalendarSearchProps, CalendarType, CalendarView, CalendarViewType, CalendarsConfig, ColorPickerProps, CreateCalendarDialogColorPickerProps, CreateCalendarDialogProps, CreateEventParams, CreateTimezoneEventParams, CustomRendering, DayData, DayViewConfig, DayViewProps, DragConfig, DragHookOptions, DragHookReturn, DragIndicatorProps, DragIndicatorRenderer, DragIntegrationProps, DragPluginConfig, DragRef, DragService, Event, EventChange, EventContentSlotArgs, EventContextMenuSlotArgs, EventDetailContentProps, EventDetailContentRenderer, EventDetailDialogProps, EventDetailDialogRenderer, EventDetailPanelProps, EventDetailPanelRenderer, EventDetailPosition, EventGroup, EventLayout, EventRelations, EventsPluginConfig, EventsService, FixedWeekMonthData, GridContextMenuSlotArgs, ICSDateParams, ICSExportOptions, ICSImportOptions, ICSImportResult, ICSParseError, ICSVEvent, ICalendarApp, Locale, LocaleCode, LocaleContextValue, LocaleDict, LocaleMessages, LocaleProviderProps, MobileEventProps, Mode, MonthDragState, MonthEventDragState, MonthEventSegment, MonthScrollConfig, MonthViewConfig, MonthViewProps, NestedLayer, RangeChangeReason, ReadOnlyConfig, SidebarBridgeReturn, SidebarHeaderSlotArgs, SpecialLayoutRule, SubscribeResult, SubtreeAnalysis, SupportedLang, SyncableCalendarAppConfig, TComponent, TNode, ThemeColors, ThemeConfig, ThemeMode, TimeZoneValue, TitleBarSlotProps, TransferOperation, TranslationKey, UnifiedDragRef, UseCalendarAppReturn, UseCalendarReturn, UseDragCommonReturn, UseDragHandlersParams, UseDragHandlersReturn, UseDragManagerReturn, UseDragStateReturn, UseMonthDragParams, UseMonthDragReturn, UseVirtualMonthScrollProps, UseVirtualMonthScrollReturn, UseVirtualScrollProps, UseVirtualScrollReturn, UseWeekDayDragParams, UseWeekDayDragReturn, ViewAdapterProps, ViewConfigComparison, ViewFactory, ViewFactoryConfig, VirtualItem, VirtualScrollIntegrationProps, VirtualWeekItem, WeekDayDragState, WeekViewConfig, WeekViewProps, WeeksData, YearMultiDaySegment, YearViewConfig, YearViewProps, useDragProps, useDragReturn };
|