@dayflow/core 3.2.0 → 3.2.1
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/README.md +12 -16
- package/dist/index.d.ts +152 -117
- package/dist/index.esm.js +1 -1
- package/dist/index.js +1 -1
- package/dist/styles.css +79 -17
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,8 +1,6 @@
|
|
|
1
|
-
# DayFlow
|
|
1
|
+
# DayFlow Core
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
A flexible and feature-rich calendar component library for **React, Vue, Angular, and Svelte** with drag-and-drop support, multiple views, and plugin architecture.
|
|
3
|
+
The core engine of DayFlow, a flexible and feature-rich calendar library with drag-and-drop support, multiple views, and plugin architecture.
|
|
6
4
|
|
|
7
5
|
[](https://www.npmjs.com/package/@dayflow/core)
|
|
8
6
|
[](https://github.com/dayflow-js/dayflow/pulls)
|
|
@@ -15,47 +13,47 @@ A flexible and feature-rich calendar component library for **React, Vue, Angular
|
|
|
15
13
|
|
|
16
14
|
#### Day View
|
|
17
15
|
|
|
18
|
-

|
|
19
17
|
|
|
20
18
|
#### Week View
|
|
21
19
|
|
|
22
|
-

|
|
23
21
|
|
|
24
22
|
#### Month View
|
|
25
23
|
|
|
26
|
-

|
|
27
25
|
|
|
28
26
|
#### Year View(Fixed-Week)
|
|
29
27
|
|
|
30
|
-

|
|
31
29
|
|
|
32
30
|
#### Year View(Year-Canvas)
|
|
33
31
|
|
|
34
|
-

|
|
35
33
|
|
|
36
34
|
### Mobile View Support
|
|
37
35
|
|
|
38
36
|
#### Mobile Day & Year View
|
|
39
37
|
|
|
40
|
-

|
|
41
39
|
|
|
42
40
|
#### Mobile Week & Month View
|
|
43
41
|
|
|
44
|
-

|
|
45
43
|
|
|
46
44
|
### Multiple Event Detail Panel options
|
|
47
45
|
|
|
48
46
|
#### Detail Popup
|
|
49
47
|
|
|
50
|
-

|
|
51
49
|
|
|
52
50
|
#### Detail Dialog
|
|
53
51
|
|
|
54
|
-

|
|
55
53
|
|
|
56
54
|
### Dark Mode Support
|
|
57
55
|
|
|
58
|
-

|
|
59
57
|
|
|
60
58
|
### Easy to resize and drag
|
|
61
59
|
|
|
@@ -74,5 +72,3 @@ If you find a bug, please file an issue on [GitHub Issues](https://github.com/da
|
|
|
74
72
|
## Support
|
|
75
73
|
|
|
76
74
|
For questions and support, please open an issue on GitHub or go to discord.
|
|
77
|
-
|
|
78
|
-
---
|
package/dist/index.d.ts
CHANGED
|
@@ -207,6 +207,119 @@ interface Event {
|
|
|
207
207
|
day?: number;
|
|
208
208
|
}
|
|
209
209
|
|
|
210
|
+
/**
|
|
211
|
+
* Event layout configuration constants
|
|
212
|
+
* Controls visual presentation of events in the calendar
|
|
213
|
+
*/
|
|
214
|
+
declare const LAYOUT_CONFIG: {
|
|
215
|
+
readonly INDENT_STEP: 2;
|
|
216
|
+
readonly MIN_WIDTH: 25;
|
|
217
|
+
readonly MARGIN_BETWEEN: 2;
|
|
218
|
+
readonly CONTAINER_WIDTH: 320;
|
|
219
|
+
readonly OVERLAP_THRESHOLD: 0.25;
|
|
220
|
+
readonly EDGE_MARGIN: 3;
|
|
221
|
+
readonly MAX_LOAD_IMBALANCE: 0;
|
|
222
|
+
readonly REBALANCE_THRESHOLD: 2;
|
|
223
|
+
};
|
|
224
|
+
/**
|
|
225
|
+
* Event layout interface
|
|
226
|
+
* Defines position and styling of events in the UI
|
|
227
|
+
*/
|
|
228
|
+
interface EventLayout {
|
|
229
|
+
id: string;
|
|
230
|
+
left: number;
|
|
231
|
+
width: number;
|
|
232
|
+
zIndex: number;
|
|
233
|
+
level: number;
|
|
234
|
+
isPrimary: boolean;
|
|
235
|
+
indentOffset: number;
|
|
236
|
+
importance: number;
|
|
237
|
+
}
|
|
238
|
+
/**
|
|
239
|
+
* Nested layer interface
|
|
240
|
+
* Represents hierarchical relationships of events
|
|
241
|
+
*/
|
|
242
|
+
interface NestedLayer {
|
|
243
|
+
events: Event[];
|
|
244
|
+
level: number;
|
|
245
|
+
parentEvent?: Event;
|
|
246
|
+
timeSlot?: {
|
|
247
|
+
start: number;
|
|
248
|
+
end: number;
|
|
249
|
+
};
|
|
250
|
+
}
|
|
251
|
+
/**
|
|
252
|
+
* Event group interface
|
|
253
|
+
* Represents a group of related events and their nested structure
|
|
254
|
+
*/
|
|
255
|
+
interface EventGroup {
|
|
256
|
+
events: Event[];
|
|
257
|
+
startHour: number;
|
|
258
|
+
endHour: number;
|
|
259
|
+
primaryEvent?: Event;
|
|
260
|
+
nestedStructure: NestedLayer[];
|
|
261
|
+
specialLayoutRules?: SpecialLayoutRule[];
|
|
262
|
+
originalBranchMap?: Map<string, Event>;
|
|
263
|
+
}
|
|
264
|
+
/**
|
|
265
|
+
* Event relationship information interface
|
|
266
|
+
* Describes relationships of events in nested structures
|
|
267
|
+
*/
|
|
268
|
+
interface EventRelations {
|
|
269
|
+
directChildren: Event[];
|
|
270
|
+
allDescendants: Event[];
|
|
271
|
+
directParent: Event | null;
|
|
272
|
+
layer: NestedLayer | null;
|
|
273
|
+
subtreeSize: number;
|
|
274
|
+
isLeaf: boolean;
|
|
275
|
+
}
|
|
276
|
+
/**
|
|
277
|
+
* Subtree analysis interface
|
|
278
|
+
* Used to analyze structural information of event trees
|
|
279
|
+
*/
|
|
280
|
+
interface SubtreeAnalysis {
|
|
281
|
+
rootEvent: Event;
|
|
282
|
+
allDescendants: Event[];
|
|
283
|
+
timeSpan: {
|
|
284
|
+
start: number;
|
|
285
|
+
end: number;
|
|
286
|
+
duration: number;
|
|
287
|
+
};
|
|
288
|
+
descendantCount: number;
|
|
289
|
+
maxDepth: number;
|
|
290
|
+
branchPath: Event[];
|
|
291
|
+
}
|
|
292
|
+
/**
|
|
293
|
+
* Balance strategy interface
|
|
294
|
+
* Used for balance algorithms to optimize event layouts
|
|
295
|
+
*/
|
|
296
|
+
interface BalanceStrategy {
|
|
297
|
+
type: 'count_balance' | 'timespan_balance';
|
|
298
|
+
transfers: TransferOperation[];
|
|
299
|
+
specialLayoutRules: SpecialLayoutRule[];
|
|
300
|
+
}
|
|
301
|
+
/**
|
|
302
|
+
* Transfer operation interface
|
|
303
|
+
* Describes movement of events in layout optimization
|
|
304
|
+
*/
|
|
305
|
+
interface TransferOperation {
|
|
306
|
+
event: Event;
|
|
307
|
+
fromParent: Event;
|
|
308
|
+
toParent: Event;
|
|
309
|
+
reason: string;
|
|
310
|
+
}
|
|
311
|
+
/**
|
|
312
|
+
* Special layout rule interface
|
|
313
|
+
* Defines layout constraints for specific events
|
|
314
|
+
*/
|
|
315
|
+
interface SpecialLayoutRule {
|
|
316
|
+
eventId: string;
|
|
317
|
+
layoutType: 'align_with_ancestor' | 'full_width' | 'full_width_from_level' | 'align_with_sibling';
|
|
318
|
+
referenceEvent?: Event;
|
|
319
|
+
targetLevel?: number;
|
|
320
|
+
reason?: string;
|
|
321
|
+
}
|
|
322
|
+
|
|
210
323
|
/** Generic type for framework-specific components */
|
|
211
324
|
type TComponent = AnyComponent<any, any>;
|
|
212
325
|
/** Generic type for framework-specific nodes/elements */
|
|
@@ -280,10 +393,32 @@ interface CalendarCallbacks {
|
|
|
280
393
|
onMoreEventsClick?: (date: Date) => void | Promise<void>;
|
|
281
394
|
onDismissUI?: () => void | Promise<void>;
|
|
282
395
|
}
|
|
396
|
+
interface TitleBarSlotProps {
|
|
397
|
+
isCollapsed: boolean;
|
|
398
|
+
toggleCollapsed: () => void;
|
|
399
|
+
}
|
|
400
|
+
interface CreateCalendarDialogColorPickerProps {
|
|
401
|
+
color: string;
|
|
402
|
+
onChange: (color: {
|
|
403
|
+
hex: string;
|
|
404
|
+
}) => void;
|
|
405
|
+
onAccept?: () => void;
|
|
406
|
+
onCancel?: () => void;
|
|
407
|
+
styles?: any;
|
|
408
|
+
}
|
|
409
|
+
interface ColorPickerProps {
|
|
410
|
+
color: string;
|
|
411
|
+
onChange: (color: {
|
|
412
|
+
hex: string;
|
|
413
|
+
}) => void;
|
|
414
|
+
onChangeComplete?: (color: {
|
|
415
|
+
hex: string;
|
|
416
|
+
}) => void;
|
|
417
|
+
}
|
|
283
418
|
interface CreateCalendarDialogProps {
|
|
284
419
|
onClose: () => void;
|
|
285
420
|
onCreate: (calendar: CalendarType) => void;
|
|
286
|
-
|
|
421
|
+
app: ICalendarApp;
|
|
287
422
|
}
|
|
288
423
|
interface CalendarHeaderProps {
|
|
289
424
|
calendar: ICalendarApp;
|
|
@@ -298,6 +433,16 @@ interface CalendarHeaderProps {
|
|
|
298
433
|
/** Left safe area padding (px) to avoid overlapping with traffic light buttons in macMode */
|
|
299
434
|
safeAreaLeft?: number;
|
|
300
435
|
}
|
|
436
|
+
/** Args passed to all eventContent* slot renderers. */
|
|
437
|
+
interface EventContentSlotArgs {
|
|
438
|
+
event: Event;
|
|
439
|
+
viewType: ViewType;
|
|
440
|
+
isAllDay: boolean;
|
|
441
|
+
isMobile: boolean;
|
|
442
|
+
isSelected: boolean;
|
|
443
|
+
isDragging: boolean;
|
|
444
|
+
layout?: EventLayout;
|
|
445
|
+
}
|
|
301
446
|
/**
|
|
302
447
|
* Calendar application configuration
|
|
303
448
|
* Used to initialize CalendarApp
|
|
@@ -341,6 +486,7 @@ interface CalendarAppState {
|
|
|
341
486
|
highlightedEventId?: string | null;
|
|
342
487
|
selectedEventId?: string | null;
|
|
343
488
|
readOnly: boolean | ReadOnlyConfig;
|
|
489
|
+
overrides: string[];
|
|
344
490
|
}
|
|
345
491
|
/**
|
|
346
492
|
* Calendar application instance
|
|
@@ -397,6 +543,7 @@ interface ICalendarApp {
|
|
|
397
543
|
getUseEventDetailDialog: () => boolean;
|
|
398
544
|
getCustomMobileEventRenderer: () => MobileEventRenderer | undefined;
|
|
399
545
|
updateConfig: (config: Partial<CalendarAppConfig>) => void;
|
|
546
|
+
setOverrides: (overrides: string[]) => void;
|
|
400
547
|
setTheme: (mode: ThemeMode) => void;
|
|
401
548
|
getTheme: () => ThemeMode;
|
|
402
549
|
subscribeThemeChange: (callback: (theme: ThemeMode) => void) => () => void;
|
|
@@ -509,119 +656,6 @@ interface WeeksData {
|
|
|
509
656
|
};
|
|
510
657
|
}
|
|
511
658
|
|
|
512
|
-
/**
|
|
513
|
-
* Event layout configuration constants
|
|
514
|
-
* Controls visual presentation of events in the calendar
|
|
515
|
-
*/
|
|
516
|
-
declare const LAYOUT_CONFIG: {
|
|
517
|
-
readonly INDENT_STEP: 2;
|
|
518
|
-
readonly MIN_WIDTH: 25;
|
|
519
|
-
readonly MARGIN_BETWEEN: 2;
|
|
520
|
-
readonly CONTAINER_WIDTH: 320;
|
|
521
|
-
readonly OVERLAP_THRESHOLD: 0.25;
|
|
522
|
-
readonly EDGE_MARGIN: 3;
|
|
523
|
-
readonly MAX_LOAD_IMBALANCE: 0;
|
|
524
|
-
readonly REBALANCE_THRESHOLD: 2;
|
|
525
|
-
};
|
|
526
|
-
/**
|
|
527
|
-
* Event layout interface
|
|
528
|
-
* Defines position and styling of events in the UI
|
|
529
|
-
*/
|
|
530
|
-
interface EventLayout {
|
|
531
|
-
id: string;
|
|
532
|
-
left: number;
|
|
533
|
-
width: number;
|
|
534
|
-
zIndex: number;
|
|
535
|
-
level: number;
|
|
536
|
-
isPrimary: boolean;
|
|
537
|
-
indentOffset: number;
|
|
538
|
-
importance: number;
|
|
539
|
-
}
|
|
540
|
-
/**
|
|
541
|
-
* Nested layer interface
|
|
542
|
-
* Represents hierarchical relationships of events
|
|
543
|
-
*/
|
|
544
|
-
interface NestedLayer {
|
|
545
|
-
events: Event[];
|
|
546
|
-
level: number;
|
|
547
|
-
parentEvent?: Event;
|
|
548
|
-
timeSlot?: {
|
|
549
|
-
start: number;
|
|
550
|
-
end: number;
|
|
551
|
-
};
|
|
552
|
-
}
|
|
553
|
-
/**
|
|
554
|
-
* Event group interface
|
|
555
|
-
* Represents a group of related events and their nested structure
|
|
556
|
-
*/
|
|
557
|
-
interface EventGroup {
|
|
558
|
-
events: Event[];
|
|
559
|
-
startHour: number;
|
|
560
|
-
endHour: number;
|
|
561
|
-
primaryEvent?: Event;
|
|
562
|
-
nestedStructure: NestedLayer[];
|
|
563
|
-
specialLayoutRules?: SpecialLayoutRule[];
|
|
564
|
-
originalBranchMap?: Map<string, Event>;
|
|
565
|
-
}
|
|
566
|
-
/**
|
|
567
|
-
* Event relationship information interface
|
|
568
|
-
* Describes relationships of events in nested structures
|
|
569
|
-
*/
|
|
570
|
-
interface EventRelations {
|
|
571
|
-
directChildren: Event[];
|
|
572
|
-
allDescendants: Event[];
|
|
573
|
-
directParent: Event | null;
|
|
574
|
-
layer: NestedLayer | null;
|
|
575
|
-
subtreeSize: number;
|
|
576
|
-
isLeaf: boolean;
|
|
577
|
-
}
|
|
578
|
-
/**
|
|
579
|
-
* Subtree analysis interface
|
|
580
|
-
* Used to analyze structural information of event trees
|
|
581
|
-
*/
|
|
582
|
-
interface SubtreeAnalysis {
|
|
583
|
-
rootEvent: Event;
|
|
584
|
-
allDescendants: Event[];
|
|
585
|
-
timeSpan: {
|
|
586
|
-
start: number;
|
|
587
|
-
end: number;
|
|
588
|
-
duration: number;
|
|
589
|
-
};
|
|
590
|
-
descendantCount: number;
|
|
591
|
-
maxDepth: number;
|
|
592
|
-
branchPath: Event[];
|
|
593
|
-
}
|
|
594
|
-
/**
|
|
595
|
-
* Balance strategy interface
|
|
596
|
-
* Used for balance algorithms to optimize event layouts
|
|
597
|
-
*/
|
|
598
|
-
interface BalanceStrategy {
|
|
599
|
-
type: 'count_balance' | 'timespan_balance';
|
|
600
|
-
transfers: TransferOperation[];
|
|
601
|
-
specialLayoutRules: SpecialLayoutRule[];
|
|
602
|
-
}
|
|
603
|
-
/**
|
|
604
|
-
* Transfer operation interface
|
|
605
|
-
* Describes movement of events in layout optimization
|
|
606
|
-
*/
|
|
607
|
-
interface TransferOperation {
|
|
608
|
-
event: Event;
|
|
609
|
-
fromParent: Event;
|
|
610
|
-
toParent: Event;
|
|
611
|
-
reason: string;
|
|
612
|
-
}
|
|
613
|
-
/**
|
|
614
|
-
* Special layout rule interface
|
|
615
|
-
* Defines layout constraints for specific events
|
|
616
|
-
*/
|
|
617
|
-
interface SpecialLayoutRule {
|
|
618
|
-
eventId: string;
|
|
619
|
-
layoutType: 'align_with_ancestor' | 'full_width' | 'full_width_from_level' | 'align_with_sibling';
|
|
620
|
-
referenceEvent?: Event;
|
|
621
|
-
targetLevel?: number;
|
|
622
|
-
reason?: string;
|
|
623
|
-
}
|
|
624
|
-
|
|
625
659
|
/**
|
|
626
660
|
* Drag mode type
|
|
627
661
|
*/
|
|
@@ -1486,6 +1520,7 @@ declare class CalendarApp implements ICalendarApp {
|
|
|
1486
1520
|
getUseEventDetailDialog: () => boolean;
|
|
1487
1521
|
getCustomMobileEventRenderer: () => MobileEventRenderer | undefined;
|
|
1488
1522
|
updateConfig: (config: Partial<CalendarAppConfig>) => void;
|
|
1523
|
+
setOverrides: (overrides: string[]) => void;
|
|
1489
1524
|
/**
|
|
1490
1525
|
* Set theme mode
|
|
1491
1526
|
* @param mode - Theme mode ('light', 'dark', or 'auto')
|
|
@@ -2819,10 +2854,10 @@ interface MiniCalendarProps {
|
|
|
2819
2854
|
}
|
|
2820
2855
|
declare const MiniCalendar: ({ visibleMonth, currentDate, showHeader, onMonthChange, onDateSelect, }: MiniCalendarProps) => preact.JSX.Element;
|
|
2821
2856
|
|
|
2822
|
-
declare const CreateCalendarDialog: ({ onClose, onCreate,
|
|
2857
|
+
declare const CreateCalendarDialog: ({ onClose, onCreate, app, }: CreateCalendarDialogProps) => preact.VNode<any> | null;
|
|
2823
2858
|
|
|
2824
2859
|
interface ContentSlotProps {
|
|
2825
|
-
generatorName: string;
|
|
2860
|
+
generatorName: string | null;
|
|
2826
2861
|
generatorArgs?: unknown;
|
|
2827
2862
|
defaultContent?: ComponentChildren;
|
|
2828
2863
|
store?: CustomRenderingStore | null;
|
|
@@ -2872,4 +2907,4 @@ declare const sidebarHeaderToggle = "df-sidebar-header-toggle flex h-8 w-8 items
|
|
|
2872
2907
|
declare const sidebarHeaderTitle = "df-sidebar-header-title text-sm font-semibold text-gray-700 dark:text-gray-200";
|
|
2873
2908
|
|
|
2874
2909
|
export { BlossomColorPicker, CalendarApp, CalendarRegistry, CalendarRenderer, Check, ChevronRight, ChevronsUpDown, ContentSlot, ContextMenu, ContextMenuColorPicker, ContextMenuItem, ContextMenuLabel, ContextMenuSeparator, CreateCalendarDialog, CustomRenderingStore, DefaultColorPicker, LAYOUT_CONFIG, LOCALES, LocaleContext, LocaleProvider, MiniCalendar, PanelRightClose, PanelRightOpen, Plus, TIME_STEP, TimeZone, VIRTUAL_MONTH_SCROLL_CONFIG, ViewType, WeekDataCache, addDays, buildParseRegExp, calculateDayIndex, calendarPickerDropdown, cancelButton, capitalize, clipboardStore, conditionalTheme, convertDateEvent, convertDateEventWithTimeZone, convertToDayFlowEvent, createAllDayEvent, createDateWithHour, createDayView, createEvent, createEventWithDate, createEventWithPlainDateTime, createEventWithRealDate, createEventWithZonedDateTime, createEvents, createEventsPlugin, createMonthView, 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, formatTemporal, formatTime, generateDayData, generateICS, generateSecondaryTimeSlots, generateUniKey, generateVEvent, generateWeekData, generateWeekRange, generateWeeksData, getAllDayEventsForDay, getCalendarColorsForHex, getCurrentWeekDates, getDateByDayIndex, getDateObj, getDayIndexByDate, getEndOfDay, getEndOfTemporal, getEventBgColor, getEventEndHour, getEventTextColor, getEventsForDay, getEventsForWeek, getIntlLabel, getLineColor, getMonthLabels, getMonthYearOfWeek, getPlainDate, getSearchHeaderInfo, getSelectedBgColor, getStartOfDay, getStartOfTemporal, getTestEvents, getTimezoneDisplayLabel, getWeekDaysLabels, getWeekNumber, getWeekRange, getZoneId, groupSearchResults, hasEventChanged, importICSFile, isDate, isDeepEqual, isEventDeepEqual, isEventInWeek, isMultiDayEvent, isMultiDayTemporalEvent, isPlainDate, isPlainDateTime, isSameDay, isSamePlainDate, isSameTemporal, isValidLocale, isZonedDateTime, mergeClasses, mergeFormatTemplate, monthNames, normalizeCssWidth, normalizeDate, normalizeLocale, normalizeToZoned, now, pad, pad2, parseICS, parseICSDate, parseTemporalString, parseVEventLines, plainDateTimeToDate, plainDateToDate, recalculateEventDays, registerDragImplementation, registerLocale, registerSidebarImplementation, resolveAppliedTheme, roundToTimeStep, scrollbarTakesSpace, setHourInTemporal, shortMonthNames, sidebarContainer, sidebarHeader, sidebarHeaderTitle, sidebarHeaderToggle, t, temporalToDate, themeClasses, themeCn, today, unescapeICSValue, updateEventDateAndDay, updateEventWithRealDate, useDragForView, useLocale, useSidebarBridge, weekDays, weekDaysFullName, zonedDateTimeToDate };
|
|
2875
|
-
export type { BalanceStrategy, BaseViewProps, CalendarAppConfig, CalendarAppState, CalendarCallbacks, CalendarColors, CalendarConfig, CalendarHeaderProps, CalendarPlugin, CalendarType, CalendarView, CalendarsConfig, CreateCalendarDialogProps, CreateEventParams, CreateTimezoneEventParams, CustomRendering, DayData, DayViewConfig, DayViewProps, DragConfig, DragHookOptions, DragHookReturn, DragIndicatorProps, DragIndicatorRenderer, DragIntegrationProps, DragPluginConfig, DragRef, DragService, Event, EventChange, EventDetailContentProps, EventDetailContentRenderer, EventDetailDialogProps, EventDetailDialogRenderer, EventDetailPanelProps, EventDetailPanelRenderer, EventDetailPosition, EventGroup, EventLayout, EventRelations, EventsPluginConfig, EventsService, ICSDateParams, ICSExportOptions, ICSImportOptions, ICSImportResult, ICSParseError, ICSVEvent, ICalendarApp, Locale, LocaleCode, LocaleContextValue, LocaleDict, LocaleMessages, LocaleProviderProps, MobileEventProps, MobileEventRenderer, Mode, MonthDragState, MonthEventDragState, MonthViewConfig, MonthViewProps, NestedLayer, RangeChangeReason, ReadOnlyConfig, SidebarBridgeReturn, SpecialLayoutRule, SubtreeAnalysis, SupportedLang, TComponent, TNode, ThemeColors, ThemeConfig, ThemeMode, TimeZoneValue, TransferOperation, TranslationKey, UnifiedDragRef, UseCalendarAppReturn, UseCalendarReturn, UseDragCommonReturn, UseDragHandlersParams, UseDragHandlersReturn, UseDragManagerReturn, UseDragStateReturn, UseMonthDragParams, UseMonthDragReturn, UseVirtualMonthScrollProps, UseVirtualMonthScrollReturn, UseVirtualScrollProps, UseVirtualScrollReturn, UseWeekDayDragParams, UseWeekDayDragReturn, ViewAdapterProps, ViewFactory, ViewFactoryConfig, VirtualItem, VirtualScrollIntegrationProps, VirtualWeekItem, WeekDayDragState, WeekViewConfig, WeekViewProps, WeeksData, YearViewConfig, YearViewProps, useDragProps, useDragReturn };
|
|
2910
|
+
export type { BalanceStrategy, BaseViewProps, CalendarAppConfig, CalendarAppState, CalendarCallbacks, CalendarColors, CalendarConfig, CalendarHeaderProps, CalendarPlugin, CalendarType, CalendarView, CalendarsConfig, ColorPickerProps, CreateCalendarDialogColorPickerProps, CreateCalendarDialogProps, CreateEventParams, CreateTimezoneEventParams, CustomRendering, DayData, DayViewConfig, DayViewProps, DragConfig, DragHookOptions, DragHookReturn, DragIndicatorProps, DragIndicatorRenderer, DragIntegrationProps, DragPluginConfig, DragRef, DragService, Event, EventChange, EventContentSlotArgs, EventDetailContentProps, EventDetailContentRenderer, EventDetailDialogProps, EventDetailDialogRenderer, EventDetailPanelProps, EventDetailPanelRenderer, EventDetailPosition, EventGroup, EventLayout, EventRelations, EventsPluginConfig, EventsService, ICSDateParams, ICSExportOptions, ICSImportOptions, ICSImportResult, ICSParseError, ICSVEvent, ICalendarApp, Locale, LocaleCode, LocaleContextValue, LocaleDict, LocaleMessages, LocaleProviderProps, MobileEventProps, MobileEventRenderer, Mode, MonthDragState, MonthEventDragState, MonthViewConfig, MonthViewProps, NestedLayer, RangeChangeReason, ReadOnlyConfig, SidebarBridgeReturn, SpecialLayoutRule, SubtreeAnalysis, SupportedLang, 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, ViewFactory, ViewFactoryConfig, VirtualItem, VirtualScrollIntegrationProps, VirtualWeekItem, WeekDayDragState, WeekViewConfig, WeekViewProps, WeeksData, YearViewConfig, YearViewProps, useDragProps, useDragReturn };
|