@dayflow/core 3.5.2 → 3.5.3
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 +105 -90
- package/dist/index.esm.js +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
|
*/
|
|
@@ -546,6 +542,11 @@ interface CalendarCallbacks {
|
|
|
546
542
|
* If eventId is null, closes the detail UI.
|
|
547
543
|
*/
|
|
548
544
|
onEventDetailToggle?: (eventId: string | null) => void;
|
|
545
|
+
/**
|
|
546
|
+
* Toggle the mobile event detail drawer.
|
|
547
|
+
* Pass an event to open it, or null to close it.
|
|
548
|
+
*/
|
|
549
|
+
onMobileEventDetailToggle?: (event: Event | null) => void;
|
|
549
550
|
}
|
|
550
551
|
interface CalendarHeaderProps {
|
|
551
552
|
calendar: ICalendarApp;
|
|
@@ -604,7 +605,6 @@ interface CalendarAppConfig {
|
|
|
604
605
|
useEventDetailDialog?: boolean;
|
|
605
606
|
useEventDetailPanel?: boolean;
|
|
606
607
|
useCalendarHeader?: boolean;
|
|
607
|
-
customMobileEventRenderer?: MobileEventRenderer;
|
|
608
608
|
locale?: string | Locale;
|
|
609
609
|
readOnly?: boolean | ReadOnlyConfig;
|
|
610
610
|
/** Custom sort comparator for all-day events, applied in day/week/month/year views. */
|
|
@@ -682,6 +682,7 @@ interface ICalendarApp {
|
|
|
682
682
|
onEventDoubleClick: (event: Event, e: MouseEvent) => boolean | undefined | Promise<boolean | undefined>;
|
|
683
683
|
onMoreEventsClick: (date: Date) => void;
|
|
684
684
|
onEventDetailToggle: (eventId: string | null) => void;
|
|
685
|
+
onMobileEventDetailToggle: (event: Event | null) => void;
|
|
685
686
|
highlightEvent: (eventId: string | null) => void;
|
|
686
687
|
selectEvent: (eventId: string | null) => void;
|
|
687
688
|
getCalendars: () => CalendarType[];
|
|
@@ -703,7 +704,6 @@ interface ICalendarApp {
|
|
|
703
704
|
getCalendarRegistry: () => CalendarRegistry;
|
|
704
705
|
getUseEventDetailDialog: () => boolean;
|
|
705
706
|
getUseEventDetailPanel: () => boolean;
|
|
706
|
-
getCustomMobileEventRenderer: () => MobileEventRenderer | undefined;
|
|
707
707
|
updateConfig: (config: Partial<CalendarAppConfig>) => void;
|
|
708
708
|
/** The resolved global display/edit timezone (IANA string). */
|
|
709
709
|
readonly timeZone: string;
|
|
@@ -1121,78 +1121,6 @@ declare class WeekDataCache {
|
|
|
1121
1121
|
clear(): void;
|
|
1122
1122
|
}
|
|
1123
1123
|
|
|
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
1124
|
/**
|
|
1197
1125
|
* Common Props interface for view components
|
|
1198
1126
|
* Base properties for all view components
|
|
@@ -1212,8 +1140,6 @@ interface BaseViewProps<TConfig = unknown> {
|
|
|
1212
1140
|
onEventSelect?: (eventId: string | null) => void;
|
|
1213
1141
|
detailPanelEventId?: string | null;
|
|
1214
1142
|
onDetailPanelToggle?: (eventId: string | null) => void;
|
|
1215
|
-
customDetailPanelContent?: EventDetailContentRenderer;
|
|
1216
|
-
customEventDetailDialog?: EventDetailDialogRenderer;
|
|
1217
1143
|
useEventDetailPanel?: boolean;
|
|
1218
1144
|
calendarRef: RefObject<HTMLDivElement>;
|
|
1219
1145
|
switcherMode?: ViewSwitcherMode;
|
|
@@ -1265,6 +1191,17 @@ interface WeekViewConfig extends ViewFactoryConfig {
|
|
|
1265
1191
|
scrollToCurrentTime?: boolean;
|
|
1266
1192
|
secondaryTimeZone?: TimeZoneValue;
|
|
1267
1193
|
showEventDots?: boolean;
|
|
1194
|
+
/**
|
|
1195
|
+
* Action when a date cell is clicked.
|
|
1196
|
+
*/
|
|
1197
|
+
gridDateClick?: 'day-view' | 'none' | ((date: Date, events: Event[]) => void);
|
|
1198
|
+
/**
|
|
1199
|
+
* Action when a date cell is double-clicked.
|
|
1200
|
+
* - 'day-view' (default): navigate to the Day View
|
|
1201
|
+
* - 'none': no action
|
|
1202
|
+
* - function: custom handler
|
|
1203
|
+
*/
|
|
1204
|
+
gridDateDoubleClick?: 'day-view' | 'none' | ((date: Date, events: Event[]) => void);
|
|
1268
1205
|
}
|
|
1269
1206
|
/**
|
|
1270
1207
|
* Month scroll / navigation configuration
|
|
@@ -1290,6 +1227,17 @@ interface MonthViewConfig extends ViewFactoryConfig {
|
|
|
1290
1227
|
/** Scroll / navigation behavior for the month view */
|
|
1291
1228
|
scroll?: MonthScrollConfig;
|
|
1292
1229
|
showEventDots?: boolean;
|
|
1230
|
+
/**
|
|
1231
|
+
* Action when a date cell is clicked.
|
|
1232
|
+
*/
|
|
1233
|
+
gridDateClick?: 'week-view' | 'day-view' | 'none' | ((date: Date, events: Event[]) => void);
|
|
1234
|
+
/**
|
|
1235
|
+
* Action when a date cell is double-clicked.
|
|
1236
|
+
* - 'week-view' (default): navigate to the Week View
|
|
1237
|
+
* - 'none': no action
|
|
1238
|
+
* - function: custom handler
|
|
1239
|
+
*/
|
|
1240
|
+
gridDateDoubleClick?: 'week-view' | 'day-view' | 'none' | ((date: Date, events: Event[]) => void);
|
|
1293
1241
|
}
|
|
1294
1242
|
/**
|
|
1295
1243
|
* Year view factory configuration
|
|
@@ -1543,6 +1491,78 @@ interface UseVirtualScrollReturn {
|
|
|
1543
1491
|
setIsScrolling: (val: boolean | ((prev: boolean) => boolean)) => void;
|
|
1544
1492
|
}
|
|
1545
1493
|
|
|
1494
|
+
/**
|
|
1495
|
+
* Event detail panel Props
|
|
1496
|
+
*/
|
|
1497
|
+
interface EventDetailPanelProps {
|
|
1498
|
+
/** Current event data */
|
|
1499
|
+
event: Event;
|
|
1500
|
+
/** Panel position information */
|
|
1501
|
+
position: EventDetailPosition;
|
|
1502
|
+
/** Panel DOM reference */
|
|
1503
|
+
panelRef: RefObject<HTMLDivElement>;
|
|
1504
|
+
/** Whether the event is all-day */
|
|
1505
|
+
isAllDay: boolean;
|
|
1506
|
+
/** Event visibility state */
|
|
1507
|
+
eventVisibility: 'standard' | 'sticky-top' | 'sticky-bottom' | 'sticky-left' | 'sticky-right';
|
|
1508
|
+
/** Calendar container reference */
|
|
1509
|
+
calendarRef: RefObject<HTMLDivElement>;
|
|
1510
|
+
/** Selected event element reference */
|
|
1511
|
+
selectedEventElementRef: RefObject<HTMLElement | null>;
|
|
1512
|
+
/** Event update callback */
|
|
1513
|
+
onEventUpdate: (updatedEvent: Event) => void | Promise<void>;
|
|
1514
|
+
/** Event delete callback */
|
|
1515
|
+
onEventDelete: (eventId: string) => void | Promise<void>;
|
|
1516
|
+
/** Close panel callback (optional) */
|
|
1517
|
+
onClose?: () => void;
|
|
1518
|
+
}
|
|
1519
|
+
/**
|
|
1520
|
+
* Custom event detail panel renderer (full panel including positioning and styling)
|
|
1521
|
+
*/
|
|
1522
|
+
type EventDetailPanelRenderer = AnyComponent<EventDetailPanelProps, any>;
|
|
1523
|
+
/**
|
|
1524
|
+
* Event detail content Props (excluding panel container, content only)
|
|
1525
|
+
*/
|
|
1526
|
+
interface EventDetailContentProps {
|
|
1527
|
+
/** Current event data */
|
|
1528
|
+
event: Event;
|
|
1529
|
+
/** Whether the event is all-day */
|
|
1530
|
+
isAllDay: boolean;
|
|
1531
|
+
/** Event update callback */
|
|
1532
|
+
onEventUpdate: (updatedEvent: Event) => void | Promise<void>;
|
|
1533
|
+
/** Event delete callback */
|
|
1534
|
+
onEventDelete: (eventId: string) => void | Promise<void>;
|
|
1535
|
+
/** Close panel callback (optional) */
|
|
1536
|
+
onClose?: () => void;
|
|
1537
|
+
app?: ICalendarApp;
|
|
1538
|
+
}
|
|
1539
|
+
/**
|
|
1540
|
+
* Custom event detail content renderer (content only, will be wrapped in default panel)
|
|
1541
|
+
*/
|
|
1542
|
+
type EventDetailContentRenderer = AnyComponent<EventDetailContentProps, any>;
|
|
1543
|
+
/**
|
|
1544
|
+
* Event detail dialog Props
|
|
1545
|
+
*/
|
|
1546
|
+
interface EventDetailDialogProps {
|
|
1547
|
+
/** Current event data */
|
|
1548
|
+
event: Event;
|
|
1549
|
+
/** Whether the dialog is open */
|
|
1550
|
+
isOpen: boolean;
|
|
1551
|
+
/** Whether the event is all-day */
|
|
1552
|
+
isAllDay: boolean;
|
|
1553
|
+
/** Event update callback */
|
|
1554
|
+
onEventUpdate: (updatedEvent: Event) => void | Promise<void>;
|
|
1555
|
+
/** Event delete callback */
|
|
1556
|
+
onEventDelete: (eventId: string) => void | Promise<void>;
|
|
1557
|
+
/** Close dialog callback */
|
|
1558
|
+
onClose: () => void;
|
|
1559
|
+
app?: ICalendarApp;
|
|
1560
|
+
}
|
|
1561
|
+
/**
|
|
1562
|
+
* Custom event detail dialog renderer (Dialog/Modal mode)
|
|
1563
|
+
*/
|
|
1564
|
+
type EventDetailDialogRenderer = AnyComponent<EventDetailDialogProps, any>;
|
|
1565
|
+
|
|
1546
1566
|
/**
|
|
1547
1567
|
* Mobile event drawer/dialog Props
|
|
1548
1568
|
*/
|
|
@@ -1620,7 +1640,6 @@ declare class CalendarApp implements ICalendarApp {
|
|
|
1620
1640
|
private useEventDetailDialog;
|
|
1621
1641
|
private useEventDetailPanel;
|
|
1622
1642
|
private useCalendarHeader;
|
|
1623
|
-
private customMobileEventRenderer?;
|
|
1624
1643
|
constructor(config: CalendarAppConfig);
|
|
1625
1644
|
private static resolveLocale;
|
|
1626
1645
|
subscribe: (listener: (app: ICalendarApp) => void) => (() => void);
|
|
@@ -1657,6 +1676,7 @@ declare class CalendarApp implements ICalendarApp {
|
|
|
1657
1676
|
onEventDoubleClick: (event: Event, e: MouseEvent) => boolean | undefined | Promise<boolean | undefined>;
|
|
1658
1677
|
onMoreEventsClick: (date: Date) => void;
|
|
1659
1678
|
onEventDetailToggle: (eventId: string | null) => void;
|
|
1679
|
+
onMobileEventDetailToggle: (event: Event | null) => void;
|
|
1660
1680
|
highlightEvent: (eventId: string | null) => void;
|
|
1661
1681
|
selectEvent: (eventId: string | null) => void;
|
|
1662
1682
|
dismissUI: () => void;
|
|
@@ -1682,7 +1702,6 @@ declare class CalendarApp implements ICalendarApp {
|
|
|
1682
1702
|
getCalendarRegistry: () => CalendarRegistry;
|
|
1683
1703
|
getUseEventDetailDialog: () => boolean;
|
|
1684
1704
|
getUseEventDetailPanel: () => boolean;
|
|
1685
|
-
getCustomMobileEventRenderer: () => MobileEventRenderer | undefined;
|
|
1686
1705
|
getCalendarHeaderConfig: () => boolean;
|
|
1687
1706
|
get timeZone(): string;
|
|
1688
1707
|
setOverrides: (overrides: string[]) => void;
|
|
@@ -2825,7 +2844,7 @@ declare const restoreTimedDragFromAllDayTransition: ({ wasOriginallyAllDay, mous
|
|
|
2825
2844
|
|
|
2826
2845
|
declare function normalizeTimeZoneValue(timeZone?: TimeZoneValue): string | undefined;
|
|
2827
2846
|
|
|
2828
|
-
type SyncableCalendarAppConfig = Pick<CalendarAppConfig, 'allDaySortComparator' | 'calendars' | '
|
|
2847
|
+
type SyncableCalendarAppConfig = Pick<CalendarAppConfig, 'allDaySortComparator' | 'calendars' | 'locale' | 'readOnly' | 'switcherMode' | 'theme' | 'timeZone' | 'useCalendarHeader' | 'useEventDetailDialog' | 'useEventDetailPanel' | 'views'>;
|
|
2829
2848
|
type CalendarAppConfigSyncSnapshot = {
|
|
2830
2849
|
callbacks: CalendarAppConfig['callbacks'];
|
|
2831
2850
|
syncableConfig: SyncableCalendarAppConfig;
|
|
@@ -3139,10 +3158,6 @@ interface CalendarEventProps {
|
|
|
3139
3158
|
onEventSelect?: (eventId: string | null) => void;
|
|
3140
3159
|
onEventLongPress?: (eventId: string) => void;
|
|
3141
3160
|
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
3161
|
/** When false, suppresses the floating event detail panel entirely */
|
|
3147
3162
|
useEventDetailPanel?: boolean;
|
|
3148
3163
|
/** Multi-day regular event segment information */
|
|
@@ -3182,7 +3197,7 @@ interface CalendarEventProps {
|
|
|
3182
3197
|
appTimeZone?: string;
|
|
3183
3198
|
}
|
|
3184
3199
|
|
|
3185
|
-
declare const
|
|
3200
|
+
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
3201
|
|
|
3187
3202
|
interface LayoutCalculationParams {
|
|
3188
3203
|
containerWidth?: number;
|
|
@@ -3240,5 +3255,5 @@ declare const sidebarHeaderToggle = "df-sidebar-toggle";
|
|
|
3240
3255
|
*/
|
|
3241
3256
|
declare const sidebarHeaderTitle = "df-sidebar-header-title";
|
|
3242
3257
|
|
|
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,
|
|
3258
|
+
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, 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 };
|
|
3259
|
+
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, 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 };
|