@mlw-packages/react-components 1.10.0 → 1.10.2
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.css +258 -41
- package/dist/index.d.mts +151 -31
- package/dist/index.d.ts +151 -31
- package/dist/index.js +1043 -273
- package/dist/index.mjs +1032 -276
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -950,7 +950,7 @@ declare const EndHourAgenda = 24;
|
|
|
950
950
|
declare const DefaultStartHourAgenda = 9;
|
|
951
951
|
declare const DefaultEndHourAgenda = 10;
|
|
952
952
|
|
|
953
|
-
type CalendarViewAgenda = "month" | "week" | "day" | "agenda";
|
|
953
|
+
type CalendarViewAgenda = "month" | "week" | "day" | "agenda" | "year";
|
|
954
954
|
interface CalendarEventAgenda {
|
|
955
955
|
id: string;
|
|
956
956
|
title: string;
|
|
@@ -989,13 +989,14 @@ interface EventCalendarProps$1 {
|
|
|
989
989
|
initialView?: CalendarViewAgenda;
|
|
990
990
|
initialDate?: Date;
|
|
991
991
|
onClick?: ((event: CalendarEventAgenda, e?: React__default.MouseEvent) => void) | React__default.ReactElement<ModalLikeProps>;
|
|
992
|
+
showYearView?: boolean;
|
|
992
993
|
}
|
|
993
994
|
interface ModalLikeProps {
|
|
994
995
|
event?: CalendarEventAgenda;
|
|
995
996
|
onClose?: () => void;
|
|
996
997
|
[key: string]: unknown;
|
|
997
998
|
}
|
|
998
|
-
declare function EventAgenda({ events, onEventUpdate, className, initialView, initialDate, onClick, }: EventCalendarProps$1): react_jsx_runtime.JSX.Element;
|
|
999
|
+
declare function EventAgenda({ events, onEventUpdate, className, initialView, initialDate, onClick, showYearView, }: EventCalendarProps$1): react_jsx_runtime.JSX.Element;
|
|
999
1000
|
|
|
1000
1001
|
interface EventItemProps$1 {
|
|
1001
1002
|
event: CalendarEventAgenda;
|
|
@@ -1055,10 +1056,8 @@ interface MonthViewProps$1 {
|
|
|
1055
1056
|
}
|
|
1056
1057
|
declare function MonthViewAgenda({ currentDate, events, onEventSelect, showUndatedEvents, }: MonthViewProps$1): react_jsx_runtime.JSX.Element;
|
|
1057
1058
|
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
*/
|
|
1061
|
-
declare function getEventColorClassesAgenda(color?: EventColorAgenda | string): string;
|
|
1059
|
+
declare function getAutoColorAgenda(id: string): EventColorAgenda;
|
|
1060
|
+
declare function getEventColorClassesAgenda(color?: EventColorAgenda | string, eventId?: string): string;
|
|
1062
1061
|
/**
|
|
1063
1062
|
* Get CSS classes for border radius based on event position in multi-day events
|
|
1064
1063
|
*/
|
|
@@ -1097,6 +1096,11 @@ declare function normalizeAttendDate(d?: unknown): Date | undefined;
|
|
|
1097
1096
|
*/
|
|
1098
1097
|
declare function addMinutesToDateAgenda(date: Date, minutes: number): Date;
|
|
1099
1098
|
declare function addHoursToDateAgenda(date: Date, hours: number): Date;
|
|
1099
|
+
/**
|
|
1100
|
+
* Format event duration for tooltips
|
|
1101
|
+
*/
|
|
1102
|
+
declare function formatDurationAgenda(event: CalendarEventAgenda): string;
|
|
1103
|
+
declare function formatDurationAgendaDays(event: CalendarEventAgenda): string;
|
|
1100
1104
|
|
|
1101
1105
|
interface WeekViewProps$1 {
|
|
1102
1106
|
currentDate: Date;
|
|
@@ -1107,6 +1111,13 @@ interface WeekViewProps$1 {
|
|
|
1107
1111
|
}
|
|
1108
1112
|
declare function WeekViewAgenda({ currentDate, events, onEventSelect, onEventCreate, showUndatedEvents, }: WeekViewProps$1): react_jsx_runtime.JSX.Element;
|
|
1109
1113
|
|
|
1114
|
+
interface YearViewProps {
|
|
1115
|
+
currentDate: Date;
|
|
1116
|
+
events: CalendarEventAgenda[];
|
|
1117
|
+
onMonthSelect: (date: Date) => void;
|
|
1118
|
+
}
|
|
1119
|
+
declare function YearViewAgenda({ currentDate, events, onMonthSelect, }: YearViewProps): react_jsx_runtime.JSX.Element;
|
|
1120
|
+
|
|
1110
1121
|
interface MultiDayBar {
|
|
1111
1122
|
event: CalendarEventAgenda;
|
|
1112
1123
|
colStart: number;
|
|
@@ -1930,14 +1941,14 @@ interface TooltipData {
|
|
|
1930
1941
|
name: string;
|
|
1931
1942
|
[key: string]: string | number;
|
|
1932
1943
|
}
|
|
1933
|
-
interface Position$
|
|
1944
|
+
interface Position$3 {
|
|
1934
1945
|
top: number;
|
|
1935
1946
|
left: number;
|
|
1936
1947
|
}
|
|
1937
1948
|
interface DraggableTooltipProps {
|
|
1938
1949
|
id: string;
|
|
1939
1950
|
data: TooltipData;
|
|
1940
|
-
position: Position$
|
|
1951
|
+
position: Position$3;
|
|
1941
1952
|
isDragging?: boolean;
|
|
1942
1953
|
title?: string;
|
|
1943
1954
|
dataKeys: string[];
|
|
@@ -1951,7 +1962,7 @@ interface DraggableTooltipProps {
|
|
|
1951
1962
|
onCloseAll?: () => void;
|
|
1952
1963
|
closeAllButtonPosition?: "top-left" | "top-right" | "top-center";
|
|
1953
1964
|
closeAllButtonVariant?: "floating" | "inline";
|
|
1954
|
-
onPositionChange?: (id: string, position: Position$
|
|
1965
|
+
onPositionChange?: (id: string, position: Position$3) => void;
|
|
1955
1966
|
highlightedSeries?: Set<string>;
|
|
1956
1967
|
toggleHighlight?: (key: string) => void;
|
|
1957
1968
|
showOnlyHighlighted?: boolean;
|
|
@@ -2051,21 +2062,149 @@ interface SystemData {
|
|
|
2051
2062
|
}
|
|
2052
2063
|
declare function processNeo4jData(integrations: Neo4jIntegration[], targetSystemName: string): SystemData;
|
|
2053
2064
|
|
|
2054
|
-
interface Position$
|
|
2065
|
+
interface Position$2 {
|
|
2055
2066
|
top: number;
|
|
2056
2067
|
left: number;
|
|
2057
2068
|
}
|
|
2058
2069
|
interface SystemTooltipProps {
|
|
2059
2070
|
id: string;
|
|
2060
2071
|
data: SystemData;
|
|
2072
|
+
position: Position$2;
|
|
2073
|
+
title?: string;
|
|
2074
|
+
isLoading?: boolean;
|
|
2075
|
+
onMouseDown?: (id: string, e: React__default.MouseEvent | React__default.TouchEvent) => void;
|
|
2076
|
+
onClose: (id: string) => void;
|
|
2077
|
+
onPositionChange?: (id: string, position: Position$2) => void;
|
|
2078
|
+
}
|
|
2079
|
+
declare const SystemTooltip: React__default.FC<SystemTooltipProps>;
|
|
2080
|
+
|
|
2081
|
+
interface Node {
|
|
2082
|
+
identity: number;
|
|
2083
|
+
labels: string[];
|
|
2084
|
+
properties: {
|
|
2085
|
+
nome: string;
|
|
2086
|
+
[key: string]: string;
|
|
2087
|
+
};
|
|
2088
|
+
elementId: string;
|
|
2089
|
+
}
|
|
2090
|
+
interface IntegrationProps {
|
|
2091
|
+
tipo?: string;
|
|
2092
|
+
Tipo?: string;
|
|
2093
|
+
Setor?: string;
|
|
2094
|
+
Destino?: string;
|
|
2095
|
+
Contato?: string;
|
|
2096
|
+
Ambiente?: string;
|
|
2097
|
+
Nome?: string;
|
|
2098
|
+
Protocolos?: string;
|
|
2099
|
+
Sustentacao?: string;
|
|
2100
|
+
Origem?: string;
|
|
2101
|
+
[key: string]: string | undefined;
|
|
2102
|
+
}
|
|
2103
|
+
interface Relationship {
|
|
2104
|
+
identity: number;
|
|
2105
|
+
start: number;
|
|
2106
|
+
end: number;
|
|
2107
|
+
type: string;
|
|
2108
|
+
properties: IntegrationProps;
|
|
2109
|
+
elementId: string;
|
|
2110
|
+
startNodeElementId: string;
|
|
2111
|
+
endNodeElementId: string;
|
|
2112
|
+
}
|
|
2113
|
+
interface Integration {
|
|
2114
|
+
origem: Node;
|
|
2115
|
+
r: Relationship;
|
|
2116
|
+
destino: Node;
|
|
2117
|
+
}
|
|
2118
|
+
interface IntegrationConnection {
|
|
2119
|
+
id: string;
|
|
2120
|
+
name: string;
|
|
2121
|
+
type: "entrada" | "saida";
|
|
2122
|
+
status?: "active" | "inactive" | "warning";
|
|
2123
|
+
integration?: IntegrationProps;
|
|
2124
|
+
}
|
|
2125
|
+
interface IntegrationData {
|
|
2126
|
+
name: string;
|
|
2127
|
+
description?: string;
|
|
2128
|
+
connections: IntegrationConnection[];
|
|
2129
|
+
}
|
|
2130
|
+
declare function processIntegrationData(integrations: Integration[], targetSystemName: string): IntegrationData;
|
|
2131
|
+
|
|
2132
|
+
interface Position$1 {
|
|
2133
|
+
top: number;
|
|
2134
|
+
left: number;
|
|
2135
|
+
}
|
|
2136
|
+
interface IntegrationTooltipProps {
|
|
2137
|
+
id: string;
|
|
2138
|
+
data: IntegrationData;
|
|
2061
2139
|
position: Position$1;
|
|
2062
2140
|
title?: string;
|
|
2063
2141
|
isLoading?: boolean;
|
|
2142
|
+
systemName?: string;
|
|
2064
2143
|
onMouseDown?: (id: string, e: React__default.MouseEvent | React__default.TouchEvent) => void;
|
|
2065
2144
|
onClose: (id: string) => void;
|
|
2066
2145
|
onPositionChange?: (id: string, position: Position$1) => void;
|
|
2067
2146
|
}
|
|
2068
|
-
declare const
|
|
2147
|
+
declare const IntegrationTooltip: React__default.FC<IntegrationTooltipProps>;
|
|
2148
|
+
|
|
2149
|
+
declare const useIsTruncated: (ref: React.RefObject<HTMLElement | null>) => boolean;
|
|
2150
|
+
|
|
2151
|
+
declare const Beam: React__default.FC<{
|
|
2152
|
+
isInput: boolean;
|
|
2153
|
+
containerRef: React__default.RefObject<HTMLDivElement | null>;
|
|
2154
|
+
leftRef: React__default.RefObject<HTMLDivElement | null>;
|
|
2155
|
+
rightRef: React__default.RefObject<HTMLDivElement | null>;
|
|
2156
|
+
}>;
|
|
2157
|
+
|
|
2158
|
+
declare const SystemsDiagram: React__default.FC<{
|
|
2159
|
+
isInput: boolean;
|
|
2160
|
+
currentSystem: string;
|
|
2161
|
+
externalSystem: string;
|
|
2162
|
+
}>;
|
|
2163
|
+
|
|
2164
|
+
declare const TooltipBody: React__default.NamedExoticComponent<{
|
|
2165
|
+
data: IntegrationData;
|
|
2166
|
+
isLoading: boolean;
|
|
2167
|
+
connections: IntegrationData["connections"];
|
|
2168
|
+
isInput: boolean;
|
|
2169
|
+
externalSystem: string;
|
|
2170
|
+
}>;
|
|
2171
|
+
|
|
2172
|
+
declare function useIsMobile(): boolean;
|
|
2173
|
+
|
|
2174
|
+
interface Position {
|
|
2175
|
+
top: number;
|
|
2176
|
+
left: number;
|
|
2177
|
+
}
|
|
2178
|
+
interface UseDragOptions {
|
|
2179
|
+
onDragStart?: (id: string) => void;
|
|
2180
|
+
onDragEnd?: (id: string) => void;
|
|
2181
|
+
onDrag?: (id: string, position: Position) => void;
|
|
2182
|
+
}
|
|
2183
|
+
declare const useDrag: (options?: UseDragOptions) => {
|
|
2184
|
+
handleMouseDown: (id: string, e: React.MouseEvent | React.TouchEvent) => void;
|
|
2185
|
+
getPosition: (id: string) => Position;
|
|
2186
|
+
setPosition: (id: string, position: Position) => void;
|
|
2187
|
+
isElementDragging: (id: string) => boolean;
|
|
2188
|
+
isDragging: boolean;
|
|
2189
|
+
};
|
|
2190
|
+
|
|
2191
|
+
declare const IntegrationCard: React__default.FC<{
|
|
2192
|
+
title: string;
|
|
2193
|
+
details?: IntegrationProperties | null;
|
|
2194
|
+
}>;
|
|
2195
|
+
|
|
2196
|
+
declare const NameTooltip: React__default.FC<{
|
|
2197
|
+
name: string;
|
|
2198
|
+
description?: string;
|
|
2199
|
+
}>;
|
|
2200
|
+
|
|
2201
|
+
declare const CopyData: React__default.FC<{
|
|
2202
|
+
value: string;
|
|
2203
|
+
}>;
|
|
2204
|
+
|
|
2205
|
+
declare const SystemNode: React__default.FC<{
|
|
2206
|
+
label: string;
|
|
2207
|
+
}>;
|
|
2069
2208
|
|
|
2070
2209
|
interface ChartData$2 {
|
|
2071
2210
|
[key: string]: string | number | boolean | null | undefined;
|
|
@@ -2425,23 +2564,4 @@ interface ControlledComboboxProps<T extends string> extends ErrorMessageProps {
|
|
|
2425
2564
|
}
|
|
2426
2565
|
declare function ControlledCombobox<T extends string>({ items, renderSelected, handleSelection, checkIsSelected, disabled, keepOpen, searchPlaceholder, empty, error, label, labelClassname, testIds, onClear, hasSelected, hideClear, onSearchChange, search, onEndReached, loading, }: ControlledComboboxProps<T>): react_jsx_runtime.JSX.Element;
|
|
2427
2566
|
|
|
2428
|
-
|
|
2429
|
-
|
|
2430
|
-
interface Position {
|
|
2431
|
-
top: number;
|
|
2432
|
-
left: number;
|
|
2433
|
-
}
|
|
2434
|
-
interface UseDragOptions {
|
|
2435
|
-
onDragStart?: (id: string) => void;
|
|
2436
|
-
onDragEnd?: (id: string) => void;
|
|
2437
|
-
onDrag?: (id: string, position: Position) => void;
|
|
2438
|
-
}
|
|
2439
|
-
declare const useDrag: (options?: UseDragOptions) => {
|
|
2440
|
-
handleMouseDown: (id: string, e: React.MouseEvent | React.TouchEvent) => void;
|
|
2441
|
-
getPosition: (id: string) => Position;
|
|
2442
|
-
setPosition: (id: string, position: Position) => void;
|
|
2443
|
-
isElementDragging: (id: string) => boolean;
|
|
2444
|
-
isDragging: boolean;
|
|
2445
|
-
};
|
|
2446
|
-
|
|
2447
|
-
export { AddButton, Agenda, AgendaDaysToShow, AgendaDaysToShowAgenda, AgendaView, AlertDialogActionBase, AlertDialogBase, AlertDialogCancelBase, AlertDialogContentBase, AlertDialogDescriptionBase, AlertDialogFooterBase, AlertDialogHeaderBase, AlertDialogOverlayBase, AlertDialogPortalBase, AlertDialogTitleBase, AlertDialogTriggerBase, AvatarBase, AvatarCombobox, type AvatarComboboxItem, type AvatarComboboxProps, type AvatarComboboxPropsWithGroupItems, type AvatarComboboxPropsWithItems, type AvatarComboboxTestIds, AvatarFallbackBase, AvatarImageBase, BackButton, Badge, type BadgeColorType, type BannerProps, type BiaxialConfig, BreadcrumbBase, BreadcrumbEllipsisBase, BreadcrumbItemBase, BreadcrumbLinkBase, BreadcrumbListBase, BreadcrumbPageBase, BreadcrumbSeparatorBase, Brush, ButtonBase, ButtonGroupBase, type ButtonProps, CENTER_INDEX, CalendarBase, CalendarDndProvider, CalendarDndProviderAgenda, type CalendarEvent, type CalendarEventAgenda, type CalendarProps, type CalendarView, type CalendarViewAgenda, CardBase, CardContentBase, CardDescriptionBase, CardFooterBase, CardHeaderBase, CardTitleBase, CarouselBase, type CarouselBaseProps, type CarouselItem, ChangeButton, Chart, ChartControls, type ChartData$3 as ChartData, ChartHeader, type ChartHooksArgs, type ChartProps, ChartTotalLegend, CheckButton, CheckboxBase, CheckboxTree, CloseAllButton, CloseButton, CodeBlock, CollapsibleBase, CollapsibleContentBase, CollapsibleTriggerBase, Combobox, type ComboboxProps, type ComboboxTestIds, CommandBase, CommandDebouncedInputBase, CommandDialogBase, CommandEmptyBase, CommandGroupBase, CommandInputBase, CommandItemBase, CommandListBase, CommandSeparatorBase, CommandShortcutBase, type Connection, ContextMenuBase, ContextMenuCheckboxItemBase, ContextMenuContentBase, ContextMenuGroupBase, ContextMenuItemBase, ContextMenuLabelBase, ContextMenuPortalBase, ContextMenuRadioGroupBase, ContextMenuRadioItemBase, ContextMenuSeparatorBase, ContextMenuShortcutBase, ContextMenuSubBase, ContextMenuSubContentBase, ContextMenuSubTriggerBase, ContextMenuTriggerBase, ControlledCombobox, type ControlledComboboxItem, type ControlledComboboxProps, type ControlledComboboxTestIds, CopyButton, type DataMapper, DateTimePicker, DayView, DayViewAgenda, DebouncedInput, type DebouncedInputProps, type DefaultAvatarComboboxProps, DefaultEndHour, DefaultEndHourAgenda, type DefaultMultiSelectProps, type DefaultSelectProps, DefaultStartHour, DefaultStartHourAgenda, DestructiveDialog, DialogBase, DialogCloseBase, DialogContentBase, DialogDescriptionBase, DialogFooterBase, DialogHeaderBase, DialogOverlayBase, DialogPortalBase, DialogTitleBase, DialogTriggerBase, DownloadButton, DraggableEvent, DraggableTooltip, DrawerBase, DrawerCloseBase, DrawerContentBase, DrawerDescriptionBase, DrawerFooterBase, DrawerHeaderBase, DrawerOverlayBase, DrawerPortalBase, DrawerTitleBase, DrawerTriggerBase, DropDownMenuBase, DropDownMenuCheckboxItemBase, DropDownMenuContentBase, DropDownMenuGroupBase, DropDownMenuItemBase, DropDownMenuLabelBase, DropDownMenuPortalBase, DropDownMenuRadioGroupBase, DropDownMenuRadioItemBase, DropDownMenuSeparatorBase, DropDownMenuShortcutBase, DropDownMenuSubBase, DropDownMenuSubContentBase, DropDownMenuSubTriggerBase, DropDownMenuTriggerBase, DroppableCell, DroppableCellAgenda, EditButton, EndHour, EndHourAgenda, ErrorMessage, EventAgenda, EventCalendar, type EventColor, type EventColorAgenda, EventDetailModalAgenda, EventDialog, EventGap, EventGapAgenda, EventHeight, EventHeightAgenda, EventItem, EventItemAgenda, EventsPopup, FavoriteButton, FileUploader, type FileUploaderProps, type FileWithPreview, FilterButton, type FinalValueFormatter, HideButton, Highlights, HorizontalChart, HorizontalLegend, HoverCardBase, HoverCardContentBase, HoverCardTriggerBase, ITEM_HEIGHT, type IconProps, InputBase, type InputBaseProps, InputOTPBase, InputOTPGroupBase, InputOTPSeparatorBase, InputOTPSlotBase, type IntegrationProperties, LabelBase, type LabelListContent, Leaderboard, type LeaderboardItem, type LeaderboardProps, type LegendItem, LikeButton, LoadingBase, LockButton, type MapperConfig, type MapperConfigEntry, type Margins, type MenuItem, ModalBase, ModalCloseBase, ModalContentBase, ModalDescriptionBase, ModalFooterBase, ModalHeaderBase, ModalOverlayBase, ModalPortalBase, ModalTitleBase, ModalTriggerBase, ModeToggleBase, MonthView, MonthViewAgenda, MoreButton, MultiCombobox, type MultiComboboxProps, type MultiComboboxTestIds, MultiDayOverlay, MultiSelect, MultiSelectBase, MultiSelectContentBase, type MultiSelectContextType, MultiSelectGroupBase, type MultiSelectItem, MultiSelectItemBase, type MultiSelectProps, type MultiSelectPropsWithGroupItems, type MultiSelectPropsWithItems, MultiSelectSeparatorBase, type MultiSelectTestIds, MultiSelectTriggerBase, MultiSelectValueBase, NavigationMenuBase, NavigationMenuContentBase, NavigationMenuIndicatorBase, NavigationMenuItemBase, NavigationMenuLinkBase, NavigationMenuListBase, NavigationMenuTriggerBase, NavigationMenuViewportBase, type Neo4jIntegration, type Neo4jNode, type Neo4jRelationship, type NewSelectProps, NoData, NotificationButton, NumericInput, type Padding, type Period, PeriodsDropdown, PopoverAnchorBase, PopoverBase, PopoverContentBase, PopoverTriggerBase, type Primitive, ProgressBase, type ProgressBaseProps, ProgressCirclesBase, type ProgressCirclesBaseProps, ProgressPanelsBase, type ProgressPanelsBaseProps, ProgressSegmentsBase, type ProgressSegmentsBaseProps, type ProgressType, type PropsLabelList, RadialMenu, RangePicker, type RangePickerProps, RefreshButton, SaveButton, ScrollAreaBase, ScrollBarBase, SearchButton, Select, SelectBase, SelectContentBase, SelectEmpty, SelectGroupBase, type SelectItem, SelectItemBase, SelectLabelBase, type SelectPropsWithGroupItems, type SelectPropsWithItems, SelectScrollDownButtonBase, SelectScrollUpButtonBase, SelectSeparatorBase, type SelectTestIds, SelectTriggerBase, SelectValueBase, SeparatorBase, type SeriesConfig, type SeriesCounts, type SeriesEntry, type SeriesOrder, type SeriesProp, SettingsButton, SheetBase, SheetCloseBase, SheetContentBase, SheetDescriptionBase, SheetFooterBase, SheetHeaderBase, SheetOverlayBase, SheetPortalBase, SheetTitleBase, SheetTriggerBase, ShowOnly, SidebarBase, SidebarContentBase, SidebarFooterBase, SidebarGroupActionBase, SidebarGroupBase, SidebarGroupContentBase, SidebarGroupLabelBase, SidebarHeaderBase, SidebarInputBase, SidebarInsetBase, SidebarMenuActionBase, SidebarMenuBadgeBase, SidebarMenuBase, SidebarMenuButtonBase, SidebarMenuItemBase, SidebarMenuSkeletonBase, SidebarMenuSubBase, SidebarMenuSubButtonBase, SidebarMenuSubItemBase, SidebarProviderBase, SidebarRailBase, SidebarSeparatorBase, SidebarTriggerBase, SkeletonBase, SlideBase, type SliderBaseProps, StartHour, StartHourAgenda, StatusIndicator, type StatusProps, SwitchBase, type SystemData, SystemTooltip, TableBase, TableBodyBase, TableCaptionBase, TableCellBase, TableFooterBase, TableHeadBase, TableHeaderBase, TableRowBase, TabsBase, TabsContentBase, TabsListBase, TabsTriggerBase, TextAreaBase, type TextAreaBaseProps, type Theme, ThemeProviderBase, TimePicker, TimePickerInput, type TimePickerInputProps, type TimePickerType, TimeSeries, type TimeSeriesConfig, Toaster, type TooltipAdaptedRow, TooltipBase, TooltipContentBase, type TooltipItem$2 as TooltipItem, TooltipProviderBase, TooltipSimple, TooltipTriggerBase, RechartTooltipWithTotal as TooltipWithTotal, UndatedEvents, UniversalTooltipRenderer, UnlockButton, UploadButton, UseSideBarBase, VISIBLE_ITEMS, type ValueFormatter, type ValueFormatterType, ViewButton, VisibilityButton, WeekCellsHeight, WeekCellsHeightAgenda, WeekView, WeekViewAgenda, type XAxisConfig, type YAxes, type YAxisMap, type YAxisOptions, type YAxisSide, adaptDataForTooltip, addHoursToDate, addHoursToDateAgenda, addMinutesToDateAgenda, badgeVariants, buttonVariantsBase, compactTick, computeChartWidth, computeNiceMax, computeYAxisTickWidth, convert12HourTo24Hour, createValueFormatter, createYTickFormatter, detectDataFields, detectXAxis, display12HourValue, formatFieldName, formatLinePercentage, generateAdditionalColors, generateColorMap, getAgendaEventsForDay, getAgendaEventsForDayAgenda, getAllEventsForDay, getAllEventsForDayAgenda, getArrowByType, getBorderRadiusClasses, getBorderRadiusClassesAgenda, getDateByType, getEventColorClasses, getEventColorClassesAgenda, getEventEndDate, getEventStartDate, getEventsForDay, getEventsForDayAgenda, getItems, getMaxDataValue, getMinDataValue, getSpanningEventsForDay, getSpanningEventsForDayAgenda, getValid12Hour, getValidArrow12Hour, getValidArrowHour, getValidArrowMinuteOrSecond, getValidArrowNumber, getValidHour, getValidMinuteOrSecond, getValidNumber, isMultiDayEvent, isMultiDayEventAgenda, isValid12Hour, isValidHour, isValidMinuteOrSecond, niceCeil, normalizeAttendDate, processNeo4jData, renderInsideBarLabel, renderPillLabel, resolveChartMargins, resolveContainerPaddingLeft, set12Hours, setDateByType, setHours, setMinutes, setSeconds, sortEvents, sortEventsAgenda, toast, useBiaxial, useCalendarDnd, useCalendarDndAgenda, useChartClick, useChartDimensions, useChartHighlights, useChartLayout, useChartMinMax, useChartTooltips, useCurrentTimeIndicator, useCurrentTimeIndicatorAgenda, useDrag, useEventVisibility, useEventVisibilityAgenda, useIsMobile, useOpenTooltipForPeriod, useProcessedData, useSeriesOpacity, useTheme, useTimeSeriesRange, type valueFormatter, visualForItem };
|
|
2567
|
+
export { AddButton, Agenda, AgendaDaysToShow, AgendaDaysToShowAgenda, AgendaView, AlertDialogActionBase, AlertDialogBase, AlertDialogCancelBase, AlertDialogContentBase, AlertDialogDescriptionBase, AlertDialogFooterBase, AlertDialogHeaderBase, AlertDialogOverlayBase, AlertDialogPortalBase, AlertDialogTitleBase, AlertDialogTriggerBase, AvatarBase, AvatarCombobox, type AvatarComboboxItem, type AvatarComboboxProps, type AvatarComboboxPropsWithGroupItems, type AvatarComboboxPropsWithItems, type AvatarComboboxTestIds, AvatarFallbackBase, AvatarImageBase, BackButton, Badge, type BadgeColorType, type BannerProps, Beam, type BiaxialConfig, BreadcrumbBase, BreadcrumbEllipsisBase, BreadcrumbItemBase, BreadcrumbLinkBase, BreadcrumbListBase, BreadcrumbPageBase, BreadcrumbSeparatorBase, Brush, ButtonBase, ButtonGroupBase, type ButtonProps, CENTER_INDEX, CalendarBase, CalendarDndProvider, CalendarDndProviderAgenda, type CalendarEvent, type CalendarEventAgenda, type CalendarProps, type CalendarView, type CalendarViewAgenda, CardBase, CardContentBase, CardDescriptionBase, CardFooterBase, CardHeaderBase, CardTitleBase, CarouselBase, type CarouselBaseProps, type CarouselItem, ChangeButton, Chart, ChartControls, type ChartData$3 as ChartData, ChartHeader, type ChartHooksArgs, type ChartProps, ChartTotalLegend, CheckButton, CheckboxBase, CheckboxTree, CloseAllButton, CloseButton, CodeBlock, CollapsibleBase, CollapsibleContentBase, CollapsibleTriggerBase, Combobox, type ComboboxProps, type ComboboxTestIds, CommandBase, CommandDebouncedInputBase, CommandDialogBase, CommandEmptyBase, CommandGroupBase, CommandInputBase, CommandItemBase, CommandListBase, CommandSeparatorBase, CommandShortcutBase, type Connection, ContextMenuBase, ContextMenuCheckboxItemBase, ContextMenuContentBase, ContextMenuGroupBase, ContextMenuItemBase, ContextMenuLabelBase, ContextMenuPortalBase, ContextMenuRadioGroupBase, ContextMenuRadioItemBase, ContextMenuSeparatorBase, ContextMenuShortcutBase, ContextMenuSubBase, ContextMenuSubContentBase, ContextMenuSubTriggerBase, ContextMenuTriggerBase, ControlledCombobox, type ControlledComboboxItem, type ControlledComboboxProps, type ControlledComboboxTestIds, CopyButton, CopyData, type DataMapper, DateTimePicker, DayView, DayViewAgenda, DebouncedInput, type DebouncedInputProps, type DefaultAvatarComboboxProps, DefaultEndHour, DefaultEndHourAgenda, type DefaultMultiSelectProps, type DefaultSelectProps, DefaultStartHour, DefaultStartHourAgenda, DestructiveDialog, DialogBase, DialogCloseBase, DialogContentBase, DialogDescriptionBase, DialogFooterBase, DialogHeaderBase, DialogOverlayBase, DialogPortalBase, DialogTitleBase, DialogTriggerBase, DownloadButton, DraggableEvent, DraggableTooltip, DrawerBase, DrawerCloseBase, DrawerContentBase, DrawerDescriptionBase, DrawerFooterBase, DrawerHeaderBase, DrawerOverlayBase, DrawerPortalBase, DrawerTitleBase, DrawerTriggerBase, DropDownMenuBase, DropDownMenuCheckboxItemBase, DropDownMenuContentBase, DropDownMenuGroupBase, DropDownMenuItemBase, DropDownMenuLabelBase, DropDownMenuPortalBase, DropDownMenuRadioGroupBase, DropDownMenuRadioItemBase, DropDownMenuSeparatorBase, DropDownMenuShortcutBase, DropDownMenuSubBase, DropDownMenuSubContentBase, DropDownMenuSubTriggerBase, DropDownMenuTriggerBase, DroppableCell, DroppableCellAgenda, EditButton, EndHour, EndHourAgenda, ErrorMessage, EventAgenda, EventCalendar, type EventColor, type EventColorAgenda, EventDetailModalAgenda, EventDialog, EventGap, EventGapAgenda, EventHeight, EventHeightAgenda, EventItem, EventItemAgenda, EventsPopup, FavoriteButton, FileUploader, type FileUploaderProps, type FileWithPreview, FilterButton, type FinalValueFormatter, HideButton, Highlights, HorizontalChart, HorizontalLegend, HoverCardBase, HoverCardContentBase, HoverCardTriggerBase, ITEM_HEIGHT, type IconProps, InputBase, type InputBaseProps, InputOTPBase, InputOTPGroupBase, InputOTPSeparatorBase, InputOTPSlotBase, type Integration, IntegrationCard, type IntegrationConnection, type IntegrationData, type IntegrationProperties, type IntegrationProps, IntegrationTooltip, LabelBase, type LabelListContent, Leaderboard, type LeaderboardItem, type LeaderboardProps, type LegendItem, LikeButton, LoadingBase, LockButton, type MapperConfig, type MapperConfigEntry, type Margins, type MenuItem, ModalBase, ModalCloseBase, ModalContentBase, ModalDescriptionBase, ModalFooterBase, ModalHeaderBase, ModalOverlayBase, ModalPortalBase, ModalTitleBase, ModalTriggerBase, ModeToggleBase, MonthView, MonthViewAgenda, MoreButton, MultiCombobox, type MultiComboboxProps, type MultiComboboxTestIds, MultiDayOverlay, MultiSelect, MultiSelectBase, MultiSelectContentBase, type MultiSelectContextType, MultiSelectGroupBase, type MultiSelectItem, MultiSelectItemBase, type MultiSelectProps, type MultiSelectPropsWithGroupItems, type MultiSelectPropsWithItems, MultiSelectSeparatorBase, type MultiSelectTestIds, MultiSelectTriggerBase, MultiSelectValueBase, NameTooltip, NavigationMenuBase, NavigationMenuContentBase, NavigationMenuIndicatorBase, NavigationMenuItemBase, NavigationMenuLinkBase, NavigationMenuListBase, NavigationMenuTriggerBase, NavigationMenuViewportBase, type Neo4jIntegration, type Neo4jNode, type Neo4jRelationship, type NewSelectProps, NoData, type Node, NotificationButton, NumericInput, type Padding, type Period, PeriodsDropdown, PopoverAnchorBase, PopoverBase, PopoverContentBase, PopoverTriggerBase, type Primitive, ProgressBase, type ProgressBaseProps, ProgressCirclesBase, type ProgressCirclesBaseProps, ProgressPanelsBase, type ProgressPanelsBaseProps, ProgressSegmentsBase, type ProgressSegmentsBaseProps, type ProgressType, type PropsLabelList, RadialMenu, RangePicker, type RangePickerProps, RefreshButton, type Relationship, SaveButton, ScrollAreaBase, ScrollBarBase, SearchButton, Select, SelectBase, SelectContentBase, SelectEmpty, SelectGroupBase, type SelectItem, SelectItemBase, SelectLabelBase, type SelectPropsWithGroupItems, type SelectPropsWithItems, SelectScrollDownButtonBase, SelectScrollUpButtonBase, SelectSeparatorBase, type SelectTestIds, SelectTriggerBase, SelectValueBase, SeparatorBase, type SeriesConfig, type SeriesCounts, type SeriesEntry, type SeriesOrder, type SeriesProp, SettingsButton, SheetBase, SheetCloseBase, SheetContentBase, SheetDescriptionBase, SheetFooterBase, SheetHeaderBase, SheetOverlayBase, SheetPortalBase, SheetTitleBase, SheetTriggerBase, ShowOnly, SidebarBase, SidebarContentBase, SidebarFooterBase, SidebarGroupActionBase, SidebarGroupBase, SidebarGroupContentBase, SidebarGroupLabelBase, SidebarHeaderBase, SidebarInputBase, SidebarInsetBase, SidebarMenuActionBase, SidebarMenuBadgeBase, SidebarMenuBase, SidebarMenuButtonBase, SidebarMenuItemBase, SidebarMenuSkeletonBase, SidebarMenuSubBase, SidebarMenuSubButtonBase, SidebarMenuSubItemBase, SidebarProviderBase, SidebarRailBase, SidebarSeparatorBase, SidebarTriggerBase, SkeletonBase, SlideBase, type SliderBaseProps, StartHour, StartHourAgenda, StatusIndicator, type StatusProps, SwitchBase, type SystemData, SystemNode, SystemTooltip, SystemsDiagram, TableBase, TableBodyBase, TableCaptionBase, TableCellBase, TableFooterBase, TableHeadBase, TableHeaderBase, TableRowBase, TabsBase, TabsContentBase, TabsListBase, TabsTriggerBase, TextAreaBase, type TextAreaBaseProps, type Theme, ThemeProviderBase, TimePicker, TimePickerInput, type TimePickerInputProps, type TimePickerType, TimeSeries, type TimeSeriesConfig, Toaster, type TooltipAdaptedRow, TooltipBase, TooltipBody, TooltipContentBase, type TooltipItem$2 as TooltipItem, TooltipProviderBase, TooltipSimple, TooltipTriggerBase, RechartTooltipWithTotal as TooltipWithTotal, UndatedEvents, UniversalTooltipRenderer, UnlockButton, UploadButton, UseSideBarBase, VISIBLE_ITEMS, type ValueFormatter, type ValueFormatterType, ViewButton, VisibilityButton, WeekCellsHeight, WeekCellsHeightAgenda, WeekView, WeekViewAgenda, type XAxisConfig, type YAxes, type YAxisMap, type YAxisOptions, type YAxisSide, YearViewAgenda, adaptDataForTooltip, addHoursToDate, addHoursToDateAgenda, addMinutesToDateAgenda, badgeVariants, buttonVariantsBase, compactTick, computeChartWidth, computeNiceMax, computeYAxisTickWidth, convert12HourTo24Hour, createValueFormatter, createYTickFormatter, detectDataFields, detectXAxis, display12HourValue, formatDurationAgenda, formatDurationAgendaDays, formatFieldName, formatLinePercentage, generateAdditionalColors, generateColorMap, getAgendaEventsForDay, getAgendaEventsForDayAgenda, getAllEventsForDay, getAllEventsForDayAgenda, getArrowByType, getAutoColorAgenda, getBorderRadiusClasses, getBorderRadiusClassesAgenda, getDateByType, getEventColorClasses, getEventColorClassesAgenda, getEventEndDate, getEventStartDate, getEventsForDay, getEventsForDayAgenda, getItems, getMaxDataValue, getMinDataValue, getSpanningEventsForDay, getSpanningEventsForDayAgenda, getValid12Hour, getValidArrow12Hour, getValidArrowHour, getValidArrowMinuteOrSecond, getValidArrowNumber, getValidHour, getValidMinuteOrSecond, getValidNumber, isMultiDayEvent, isMultiDayEventAgenda, isValid12Hour, isValidHour, isValidMinuteOrSecond, niceCeil, normalizeAttendDate, processIntegrationData, processNeo4jData, renderInsideBarLabel, renderPillLabel, resolveChartMargins, resolveContainerPaddingLeft, set12Hours, setDateByType, setHours, setMinutes, setSeconds, sortEvents, sortEventsAgenda, toast, useBiaxial, useCalendarDnd, useCalendarDndAgenda, useChartClick, useChartDimensions, useChartHighlights, useChartLayout, useChartMinMax, useChartTooltips, useCurrentTimeIndicator, useCurrentTimeIndicatorAgenda, useDrag, useEventVisibility, useEventVisibilityAgenda, useIsMobile, useIsTruncated, useOpenTooltipForPeriod, useProcessedData, useSeriesOpacity, useTheme, useTimeSeriesRange, type valueFormatter, visualForItem };
|
package/dist/index.d.ts
CHANGED
|
@@ -950,7 +950,7 @@ declare const EndHourAgenda = 24;
|
|
|
950
950
|
declare const DefaultStartHourAgenda = 9;
|
|
951
951
|
declare const DefaultEndHourAgenda = 10;
|
|
952
952
|
|
|
953
|
-
type CalendarViewAgenda = "month" | "week" | "day" | "agenda";
|
|
953
|
+
type CalendarViewAgenda = "month" | "week" | "day" | "agenda" | "year";
|
|
954
954
|
interface CalendarEventAgenda {
|
|
955
955
|
id: string;
|
|
956
956
|
title: string;
|
|
@@ -989,13 +989,14 @@ interface EventCalendarProps$1 {
|
|
|
989
989
|
initialView?: CalendarViewAgenda;
|
|
990
990
|
initialDate?: Date;
|
|
991
991
|
onClick?: ((event: CalendarEventAgenda, e?: React__default.MouseEvent) => void) | React__default.ReactElement<ModalLikeProps>;
|
|
992
|
+
showYearView?: boolean;
|
|
992
993
|
}
|
|
993
994
|
interface ModalLikeProps {
|
|
994
995
|
event?: CalendarEventAgenda;
|
|
995
996
|
onClose?: () => void;
|
|
996
997
|
[key: string]: unknown;
|
|
997
998
|
}
|
|
998
|
-
declare function EventAgenda({ events, onEventUpdate, className, initialView, initialDate, onClick, }: EventCalendarProps$1): react_jsx_runtime.JSX.Element;
|
|
999
|
+
declare function EventAgenda({ events, onEventUpdate, className, initialView, initialDate, onClick, showYearView, }: EventCalendarProps$1): react_jsx_runtime.JSX.Element;
|
|
999
1000
|
|
|
1000
1001
|
interface EventItemProps$1 {
|
|
1001
1002
|
event: CalendarEventAgenda;
|
|
@@ -1055,10 +1056,8 @@ interface MonthViewProps$1 {
|
|
|
1055
1056
|
}
|
|
1056
1057
|
declare function MonthViewAgenda({ currentDate, events, onEventSelect, showUndatedEvents, }: MonthViewProps$1): react_jsx_runtime.JSX.Element;
|
|
1057
1058
|
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
*/
|
|
1061
|
-
declare function getEventColorClassesAgenda(color?: EventColorAgenda | string): string;
|
|
1059
|
+
declare function getAutoColorAgenda(id: string): EventColorAgenda;
|
|
1060
|
+
declare function getEventColorClassesAgenda(color?: EventColorAgenda | string, eventId?: string): string;
|
|
1062
1061
|
/**
|
|
1063
1062
|
* Get CSS classes for border radius based on event position in multi-day events
|
|
1064
1063
|
*/
|
|
@@ -1097,6 +1096,11 @@ declare function normalizeAttendDate(d?: unknown): Date | undefined;
|
|
|
1097
1096
|
*/
|
|
1098
1097
|
declare function addMinutesToDateAgenda(date: Date, minutes: number): Date;
|
|
1099
1098
|
declare function addHoursToDateAgenda(date: Date, hours: number): Date;
|
|
1099
|
+
/**
|
|
1100
|
+
* Format event duration for tooltips
|
|
1101
|
+
*/
|
|
1102
|
+
declare function formatDurationAgenda(event: CalendarEventAgenda): string;
|
|
1103
|
+
declare function formatDurationAgendaDays(event: CalendarEventAgenda): string;
|
|
1100
1104
|
|
|
1101
1105
|
interface WeekViewProps$1 {
|
|
1102
1106
|
currentDate: Date;
|
|
@@ -1107,6 +1111,13 @@ interface WeekViewProps$1 {
|
|
|
1107
1111
|
}
|
|
1108
1112
|
declare function WeekViewAgenda({ currentDate, events, onEventSelect, onEventCreate, showUndatedEvents, }: WeekViewProps$1): react_jsx_runtime.JSX.Element;
|
|
1109
1113
|
|
|
1114
|
+
interface YearViewProps {
|
|
1115
|
+
currentDate: Date;
|
|
1116
|
+
events: CalendarEventAgenda[];
|
|
1117
|
+
onMonthSelect: (date: Date) => void;
|
|
1118
|
+
}
|
|
1119
|
+
declare function YearViewAgenda({ currentDate, events, onMonthSelect, }: YearViewProps): react_jsx_runtime.JSX.Element;
|
|
1120
|
+
|
|
1110
1121
|
interface MultiDayBar {
|
|
1111
1122
|
event: CalendarEventAgenda;
|
|
1112
1123
|
colStart: number;
|
|
@@ -1930,14 +1941,14 @@ interface TooltipData {
|
|
|
1930
1941
|
name: string;
|
|
1931
1942
|
[key: string]: string | number;
|
|
1932
1943
|
}
|
|
1933
|
-
interface Position$
|
|
1944
|
+
interface Position$3 {
|
|
1934
1945
|
top: number;
|
|
1935
1946
|
left: number;
|
|
1936
1947
|
}
|
|
1937
1948
|
interface DraggableTooltipProps {
|
|
1938
1949
|
id: string;
|
|
1939
1950
|
data: TooltipData;
|
|
1940
|
-
position: Position$
|
|
1951
|
+
position: Position$3;
|
|
1941
1952
|
isDragging?: boolean;
|
|
1942
1953
|
title?: string;
|
|
1943
1954
|
dataKeys: string[];
|
|
@@ -1951,7 +1962,7 @@ interface DraggableTooltipProps {
|
|
|
1951
1962
|
onCloseAll?: () => void;
|
|
1952
1963
|
closeAllButtonPosition?: "top-left" | "top-right" | "top-center";
|
|
1953
1964
|
closeAllButtonVariant?: "floating" | "inline";
|
|
1954
|
-
onPositionChange?: (id: string, position: Position$
|
|
1965
|
+
onPositionChange?: (id: string, position: Position$3) => void;
|
|
1955
1966
|
highlightedSeries?: Set<string>;
|
|
1956
1967
|
toggleHighlight?: (key: string) => void;
|
|
1957
1968
|
showOnlyHighlighted?: boolean;
|
|
@@ -2051,21 +2062,149 @@ interface SystemData {
|
|
|
2051
2062
|
}
|
|
2052
2063
|
declare function processNeo4jData(integrations: Neo4jIntegration[], targetSystemName: string): SystemData;
|
|
2053
2064
|
|
|
2054
|
-
interface Position$
|
|
2065
|
+
interface Position$2 {
|
|
2055
2066
|
top: number;
|
|
2056
2067
|
left: number;
|
|
2057
2068
|
}
|
|
2058
2069
|
interface SystemTooltipProps {
|
|
2059
2070
|
id: string;
|
|
2060
2071
|
data: SystemData;
|
|
2072
|
+
position: Position$2;
|
|
2073
|
+
title?: string;
|
|
2074
|
+
isLoading?: boolean;
|
|
2075
|
+
onMouseDown?: (id: string, e: React__default.MouseEvent | React__default.TouchEvent) => void;
|
|
2076
|
+
onClose: (id: string) => void;
|
|
2077
|
+
onPositionChange?: (id: string, position: Position$2) => void;
|
|
2078
|
+
}
|
|
2079
|
+
declare const SystemTooltip: React__default.FC<SystemTooltipProps>;
|
|
2080
|
+
|
|
2081
|
+
interface Node {
|
|
2082
|
+
identity: number;
|
|
2083
|
+
labels: string[];
|
|
2084
|
+
properties: {
|
|
2085
|
+
nome: string;
|
|
2086
|
+
[key: string]: string;
|
|
2087
|
+
};
|
|
2088
|
+
elementId: string;
|
|
2089
|
+
}
|
|
2090
|
+
interface IntegrationProps {
|
|
2091
|
+
tipo?: string;
|
|
2092
|
+
Tipo?: string;
|
|
2093
|
+
Setor?: string;
|
|
2094
|
+
Destino?: string;
|
|
2095
|
+
Contato?: string;
|
|
2096
|
+
Ambiente?: string;
|
|
2097
|
+
Nome?: string;
|
|
2098
|
+
Protocolos?: string;
|
|
2099
|
+
Sustentacao?: string;
|
|
2100
|
+
Origem?: string;
|
|
2101
|
+
[key: string]: string | undefined;
|
|
2102
|
+
}
|
|
2103
|
+
interface Relationship {
|
|
2104
|
+
identity: number;
|
|
2105
|
+
start: number;
|
|
2106
|
+
end: number;
|
|
2107
|
+
type: string;
|
|
2108
|
+
properties: IntegrationProps;
|
|
2109
|
+
elementId: string;
|
|
2110
|
+
startNodeElementId: string;
|
|
2111
|
+
endNodeElementId: string;
|
|
2112
|
+
}
|
|
2113
|
+
interface Integration {
|
|
2114
|
+
origem: Node;
|
|
2115
|
+
r: Relationship;
|
|
2116
|
+
destino: Node;
|
|
2117
|
+
}
|
|
2118
|
+
interface IntegrationConnection {
|
|
2119
|
+
id: string;
|
|
2120
|
+
name: string;
|
|
2121
|
+
type: "entrada" | "saida";
|
|
2122
|
+
status?: "active" | "inactive" | "warning";
|
|
2123
|
+
integration?: IntegrationProps;
|
|
2124
|
+
}
|
|
2125
|
+
interface IntegrationData {
|
|
2126
|
+
name: string;
|
|
2127
|
+
description?: string;
|
|
2128
|
+
connections: IntegrationConnection[];
|
|
2129
|
+
}
|
|
2130
|
+
declare function processIntegrationData(integrations: Integration[], targetSystemName: string): IntegrationData;
|
|
2131
|
+
|
|
2132
|
+
interface Position$1 {
|
|
2133
|
+
top: number;
|
|
2134
|
+
left: number;
|
|
2135
|
+
}
|
|
2136
|
+
interface IntegrationTooltipProps {
|
|
2137
|
+
id: string;
|
|
2138
|
+
data: IntegrationData;
|
|
2061
2139
|
position: Position$1;
|
|
2062
2140
|
title?: string;
|
|
2063
2141
|
isLoading?: boolean;
|
|
2142
|
+
systemName?: string;
|
|
2064
2143
|
onMouseDown?: (id: string, e: React__default.MouseEvent | React__default.TouchEvent) => void;
|
|
2065
2144
|
onClose: (id: string) => void;
|
|
2066
2145
|
onPositionChange?: (id: string, position: Position$1) => void;
|
|
2067
2146
|
}
|
|
2068
|
-
declare const
|
|
2147
|
+
declare const IntegrationTooltip: React__default.FC<IntegrationTooltipProps>;
|
|
2148
|
+
|
|
2149
|
+
declare const useIsTruncated: (ref: React.RefObject<HTMLElement | null>) => boolean;
|
|
2150
|
+
|
|
2151
|
+
declare const Beam: React__default.FC<{
|
|
2152
|
+
isInput: boolean;
|
|
2153
|
+
containerRef: React__default.RefObject<HTMLDivElement | null>;
|
|
2154
|
+
leftRef: React__default.RefObject<HTMLDivElement | null>;
|
|
2155
|
+
rightRef: React__default.RefObject<HTMLDivElement | null>;
|
|
2156
|
+
}>;
|
|
2157
|
+
|
|
2158
|
+
declare const SystemsDiagram: React__default.FC<{
|
|
2159
|
+
isInput: boolean;
|
|
2160
|
+
currentSystem: string;
|
|
2161
|
+
externalSystem: string;
|
|
2162
|
+
}>;
|
|
2163
|
+
|
|
2164
|
+
declare const TooltipBody: React__default.NamedExoticComponent<{
|
|
2165
|
+
data: IntegrationData;
|
|
2166
|
+
isLoading: boolean;
|
|
2167
|
+
connections: IntegrationData["connections"];
|
|
2168
|
+
isInput: boolean;
|
|
2169
|
+
externalSystem: string;
|
|
2170
|
+
}>;
|
|
2171
|
+
|
|
2172
|
+
declare function useIsMobile(): boolean;
|
|
2173
|
+
|
|
2174
|
+
interface Position {
|
|
2175
|
+
top: number;
|
|
2176
|
+
left: number;
|
|
2177
|
+
}
|
|
2178
|
+
interface UseDragOptions {
|
|
2179
|
+
onDragStart?: (id: string) => void;
|
|
2180
|
+
onDragEnd?: (id: string) => void;
|
|
2181
|
+
onDrag?: (id: string, position: Position) => void;
|
|
2182
|
+
}
|
|
2183
|
+
declare const useDrag: (options?: UseDragOptions) => {
|
|
2184
|
+
handleMouseDown: (id: string, e: React.MouseEvent | React.TouchEvent) => void;
|
|
2185
|
+
getPosition: (id: string) => Position;
|
|
2186
|
+
setPosition: (id: string, position: Position) => void;
|
|
2187
|
+
isElementDragging: (id: string) => boolean;
|
|
2188
|
+
isDragging: boolean;
|
|
2189
|
+
};
|
|
2190
|
+
|
|
2191
|
+
declare const IntegrationCard: React__default.FC<{
|
|
2192
|
+
title: string;
|
|
2193
|
+
details?: IntegrationProperties | null;
|
|
2194
|
+
}>;
|
|
2195
|
+
|
|
2196
|
+
declare const NameTooltip: React__default.FC<{
|
|
2197
|
+
name: string;
|
|
2198
|
+
description?: string;
|
|
2199
|
+
}>;
|
|
2200
|
+
|
|
2201
|
+
declare const CopyData: React__default.FC<{
|
|
2202
|
+
value: string;
|
|
2203
|
+
}>;
|
|
2204
|
+
|
|
2205
|
+
declare const SystemNode: React__default.FC<{
|
|
2206
|
+
label: string;
|
|
2207
|
+
}>;
|
|
2069
2208
|
|
|
2070
2209
|
interface ChartData$2 {
|
|
2071
2210
|
[key: string]: string | number | boolean | null | undefined;
|
|
@@ -2425,23 +2564,4 @@ interface ControlledComboboxProps<T extends string> extends ErrorMessageProps {
|
|
|
2425
2564
|
}
|
|
2426
2565
|
declare function ControlledCombobox<T extends string>({ items, renderSelected, handleSelection, checkIsSelected, disabled, keepOpen, searchPlaceholder, empty, error, label, labelClassname, testIds, onClear, hasSelected, hideClear, onSearchChange, search, onEndReached, loading, }: ControlledComboboxProps<T>): react_jsx_runtime.JSX.Element;
|
|
2427
2566
|
|
|
2428
|
-
|
|
2429
|
-
|
|
2430
|
-
interface Position {
|
|
2431
|
-
top: number;
|
|
2432
|
-
left: number;
|
|
2433
|
-
}
|
|
2434
|
-
interface UseDragOptions {
|
|
2435
|
-
onDragStart?: (id: string) => void;
|
|
2436
|
-
onDragEnd?: (id: string) => void;
|
|
2437
|
-
onDrag?: (id: string, position: Position) => void;
|
|
2438
|
-
}
|
|
2439
|
-
declare const useDrag: (options?: UseDragOptions) => {
|
|
2440
|
-
handleMouseDown: (id: string, e: React.MouseEvent | React.TouchEvent) => void;
|
|
2441
|
-
getPosition: (id: string) => Position;
|
|
2442
|
-
setPosition: (id: string, position: Position) => void;
|
|
2443
|
-
isElementDragging: (id: string) => boolean;
|
|
2444
|
-
isDragging: boolean;
|
|
2445
|
-
};
|
|
2446
|
-
|
|
2447
|
-
export { AddButton, Agenda, AgendaDaysToShow, AgendaDaysToShowAgenda, AgendaView, AlertDialogActionBase, AlertDialogBase, AlertDialogCancelBase, AlertDialogContentBase, AlertDialogDescriptionBase, AlertDialogFooterBase, AlertDialogHeaderBase, AlertDialogOverlayBase, AlertDialogPortalBase, AlertDialogTitleBase, AlertDialogTriggerBase, AvatarBase, AvatarCombobox, type AvatarComboboxItem, type AvatarComboboxProps, type AvatarComboboxPropsWithGroupItems, type AvatarComboboxPropsWithItems, type AvatarComboboxTestIds, AvatarFallbackBase, AvatarImageBase, BackButton, Badge, type BadgeColorType, type BannerProps, type BiaxialConfig, BreadcrumbBase, BreadcrumbEllipsisBase, BreadcrumbItemBase, BreadcrumbLinkBase, BreadcrumbListBase, BreadcrumbPageBase, BreadcrumbSeparatorBase, Brush, ButtonBase, ButtonGroupBase, type ButtonProps, CENTER_INDEX, CalendarBase, CalendarDndProvider, CalendarDndProviderAgenda, type CalendarEvent, type CalendarEventAgenda, type CalendarProps, type CalendarView, type CalendarViewAgenda, CardBase, CardContentBase, CardDescriptionBase, CardFooterBase, CardHeaderBase, CardTitleBase, CarouselBase, type CarouselBaseProps, type CarouselItem, ChangeButton, Chart, ChartControls, type ChartData$3 as ChartData, ChartHeader, type ChartHooksArgs, type ChartProps, ChartTotalLegend, CheckButton, CheckboxBase, CheckboxTree, CloseAllButton, CloseButton, CodeBlock, CollapsibleBase, CollapsibleContentBase, CollapsibleTriggerBase, Combobox, type ComboboxProps, type ComboboxTestIds, CommandBase, CommandDebouncedInputBase, CommandDialogBase, CommandEmptyBase, CommandGroupBase, CommandInputBase, CommandItemBase, CommandListBase, CommandSeparatorBase, CommandShortcutBase, type Connection, ContextMenuBase, ContextMenuCheckboxItemBase, ContextMenuContentBase, ContextMenuGroupBase, ContextMenuItemBase, ContextMenuLabelBase, ContextMenuPortalBase, ContextMenuRadioGroupBase, ContextMenuRadioItemBase, ContextMenuSeparatorBase, ContextMenuShortcutBase, ContextMenuSubBase, ContextMenuSubContentBase, ContextMenuSubTriggerBase, ContextMenuTriggerBase, ControlledCombobox, type ControlledComboboxItem, type ControlledComboboxProps, type ControlledComboboxTestIds, CopyButton, type DataMapper, DateTimePicker, DayView, DayViewAgenda, DebouncedInput, type DebouncedInputProps, type DefaultAvatarComboboxProps, DefaultEndHour, DefaultEndHourAgenda, type DefaultMultiSelectProps, type DefaultSelectProps, DefaultStartHour, DefaultStartHourAgenda, DestructiveDialog, DialogBase, DialogCloseBase, DialogContentBase, DialogDescriptionBase, DialogFooterBase, DialogHeaderBase, DialogOverlayBase, DialogPortalBase, DialogTitleBase, DialogTriggerBase, DownloadButton, DraggableEvent, DraggableTooltip, DrawerBase, DrawerCloseBase, DrawerContentBase, DrawerDescriptionBase, DrawerFooterBase, DrawerHeaderBase, DrawerOverlayBase, DrawerPortalBase, DrawerTitleBase, DrawerTriggerBase, DropDownMenuBase, DropDownMenuCheckboxItemBase, DropDownMenuContentBase, DropDownMenuGroupBase, DropDownMenuItemBase, DropDownMenuLabelBase, DropDownMenuPortalBase, DropDownMenuRadioGroupBase, DropDownMenuRadioItemBase, DropDownMenuSeparatorBase, DropDownMenuShortcutBase, DropDownMenuSubBase, DropDownMenuSubContentBase, DropDownMenuSubTriggerBase, DropDownMenuTriggerBase, DroppableCell, DroppableCellAgenda, EditButton, EndHour, EndHourAgenda, ErrorMessage, EventAgenda, EventCalendar, type EventColor, type EventColorAgenda, EventDetailModalAgenda, EventDialog, EventGap, EventGapAgenda, EventHeight, EventHeightAgenda, EventItem, EventItemAgenda, EventsPopup, FavoriteButton, FileUploader, type FileUploaderProps, type FileWithPreview, FilterButton, type FinalValueFormatter, HideButton, Highlights, HorizontalChart, HorizontalLegend, HoverCardBase, HoverCardContentBase, HoverCardTriggerBase, ITEM_HEIGHT, type IconProps, InputBase, type InputBaseProps, InputOTPBase, InputOTPGroupBase, InputOTPSeparatorBase, InputOTPSlotBase, type IntegrationProperties, LabelBase, type LabelListContent, Leaderboard, type LeaderboardItem, type LeaderboardProps, type LegendItem, LikeButton, LoadingBase, LockButton, type MapperConfig, type MapperConfigEntry, type Margins, type MenuItem, ModalBase, ModalCloseBase, ModalContentBase, ModalDescriptionBase, ModalFooterBase, ModalHeaderBase, ModalOverlayBase, ModalPortalBase, ModalTitleBase, ModalTriggerBase, ModeToggleBase, MonthView, MonthViewAgenda, MoreButton, MultiCombobox, type MultiComboboxProps, type MultiComboboxTestIds, MultiDayOverlay, MultiSelect, MultiSelectBase, MultiSelectContentBase, type MultiSelectContextType, MultiSelectGroupBase, type MultiSelectItem, MultiSelectItemBase, type MultiSelectProps, type MultiSelectPropsWithGroupItems, type MultiSelectPropsWithItems, MultiSelectSeparatorBase, type MultiSelectTestIds, MultiSelectTriggerBase, MultiSelectValueBase, NavigationMenuBase, NavigationMenuContentBase, NavigationMenuIndicatorBase, NavigationMenuItemBase, NavigationMenuLinkBase, NavigationMenuListBase, NavigationMenuTriggerBase, NavigationMenuViewportBase, type Neo4jIntegration, type Neo4jNode, type Neo4jRelationship, type NewSelectProps, NoData, NotificationButton, NumericInput, type Padding, type Period, PeriodsDropdown, PopoverAnchorBase, PopoverBase, PopoverContentBase, PopoverTriggerBase, type Primitive, ProgressBase, type ProgressBaseProps, ProgressCirclesBase, type ProgressCirclesBaseProps, ProgressPanelsBase, type ProgressPanelsBaseProps, ProgressSegmentsBase, type ProgressSegmentsBaseProps, type ProgressType, type PropsLabelList, RadialMenu, RangePicker, type RangePickerProps, RefreshButton, SaveButton, ScrollAreaBase, ScrollBarBase, SearchButton, Select, SelectBase, SelectContentBase, SelectEmpty, SelectGroupBase, type SelectItem, SelectItemBase, SelectLabelBase, type SelectPropsWithGroupItems, type SelectPropsWithItems, SelectScrollDownButtonBase, SelectScrollUpButtonBase, SelectSeparatorBase, type SelectTestIds, SelectTriggerBase, SelectValueBase, SeparatorBase, type SeriesConfig, type SeriesCounts, type SeriesEntry, type SeriesOrder, type SeriesProp, SettingsButton, SheetBase, SheetCloseBase, SheetContentBase, SheetDescriptionBase, SheetFooterBase, SheetHeaderBase, SheetOverlayBase, SheetPortalBase, SheetTitleBase, SheetTriggerBase, ShowOnly, SidebarBase, SidebarContentBase, SidebarFooterBase, SidebarGroupActionBase, SidebarGroupBase, SidebarGroupContentBase, SidebarGroupLabelBase, SidebarHeaderBase, SidebarInputBase, SidebarInsetBase, SidebarMenuActionBase, SidebarMenuBadgeBase, SidebarMenuBase, SidebarMenuButtonBase, SidebarMenuItemBase, SidebarMenuSkeletonBase, SidebarMenuSubBase, SidebarMenuSubButtonBase, SidebarMenuSubItemBase, SidebarProviderBase, SidebarRailBase, SidebarSeparatorBase, SidebarTriggerBase, SkeletonBase, SlideBase, type SliderBaseProps, StartHour, StartHourAgenda, StatusIndicator, type StatusProps, SwitchBase, type SystemData, SystemTooltip, TableBase, TableBodyBase, TableCaptionBase, TableCellBase, TableFooterBase, TableHeadBase, TableHeaderBase, TableRowBase, TabsBase, TabsContentBase, TabsListBase, TabsTriggerBase, TextAreaBase, type TextAreaBaseProps, type Theme, ThemeProviderBase, TimePicker, TimePickerInput, type TimePickerInputProps, type TimePickerType, TimeSeries, type TimeSeriesConfig, Toaster, type TooltipAdaptedRow, TooltipBase, TooltipContentBase, type TooltipItem$2 as TooltipItem, TooltipProviderBase, TooltipSimple, TooltipTriggerBase, RechartTooltipWithTotal as TooltipWithTotal, UndatedEvents, UniversalTooltipRenderer, UnlockButton, UploadButton, UseSideBarBase, VISIBLE_ITEMS, type ValueFormatter, type ValueFormatterType, ViewButton, VisibilityButton, WeekCellsHeight, WeekCellsHeightAgenda, WeekView, WeekViewAgenda, type XAxisConfig, type YAxes, type YAxisMap, type YAxisOptions, type YAxisSide, adaptDataForTooltip, addHoursToDate, addHoursToDateAgenda, addMinutesToDateAgenda, badgeVariants, buttonVariantsBase, compactTick, computeChartWidth, computeNiceMax, computeYAxisTickWidth, convert12HourTo24Hour, createValueFormatter, createYTickFormatter, detectDataFields, detectXAxis, display12HourValue, formatFieldName, formatLinePercentage, generateAdditionalColors, generateColorMap, getAgendaEventsForDay, getAgendaEventsForDayAgenda, getAllEventsForDay, getAllEventsForDayAgenda, getArrowByType, getBorderRadiusClasses, getBorderRadiusClassesAgenda, getDateByType, getEventColorClasses, getEventColorClassesAgenda, getEventEndDate, getEventStartDate, getEventsForDay, getEventsForDayAgenda, getItems, getMaxDataValue, getMinDataValue, getSpanningEventsForDay, getSpanningEventsForDayAgenda, getValid12Hour, getValidArrow12Hour, getValidArrowHour, getValidArrowMinuteOrSecond, getValidArrowNumber, getValidHour, getValidMinuteOrSecond, getValidNumber, isMultiDayEvent, isMultiDayEventAgenda, isValid12Hour, isValidHour, isValidMinuteOrSecond, niceCeil, normalizeAttendDate, processNeo4jData, renderInsideBarLabel, renderPillLabel, resolveChartMargins, resolveContainerPaddingLeft, set12Hours, setDateByType, setHours, setMinutes, setSeconds, sortEvents, sortEventsAgenda, toast, useBiaxial, useCalendarDnd, useCalendarDndAgenda, useChartClick, useChartDimensions, useChartHighlights, useChartLayout, useChartMinMax, useChartTooltips, useCurrentTimeIndicator, useCurrentTimeIndicatorAgenda, useDrag, useEventVisibility, useEventVisibilityAgenda, useIsMobile, useOpenTooltipForPeriod, useProcessedData, useSeriesOpacity, useTheme, useTimeSeriesRange, type valueFormatter, visualForItem };
|
|
2567
|
+
export { AddButton, Agenda, AgendaDaysToShow, AgendaDaysToShowAgenda, AgendaView, AlertDialogActionBase, AlertDialogBase, AlertDialogCancelBase, AlertDialogContentBase, AlertDialogDescriptionBase, AlertDialogFooterBase, AlertDialogHeaderBase, AlertDialogOverlayBase, AlertDialogPortalBase, AlertDialogTitleBase, AlertDialogTriggerBase, AvatarBase, AvatarCombobox, type AvatarComboboxItem, type AvatarComboboxProps, type AvatarComboboxPropsWithGroupItems, type AvatarComboboxPropsWithItems, type AvatarComboboxTestIds, AvatarFallbackBase, AvatarImageBase, BackButton, Badge, type BadgeColorType, type BannerProps, Beam, type BiaxialConfig, BreadcrumbBase, BreadcrumbEllipsisBase, BreadcrumbItemBase, BreadcrumbLinkBase, BreadcrumbListBase, BreadcrumbPageBase, BreadcrumbSeparatorBase, Brush, ButtonBase, ButtonGroupBase, type ButtonProps, CENTER_INDEX, CalendarBase, CalendarDndProvider, CalendarDndProviderAgenda, type CalendarEvent, type CalendarEventAgenda, type CalendarProps, type CalendarView, type CalendarViewAgenda, CardBase, CardContentBase, CardDescriptionBase, CardFooterBase, CardHeaderBase, CardTitleBase, CarouselBase, type CarouselBaseProps, type CarouselItem, ChangeButton, Chart, ChartControls, type ChartData$3 as ChartData, ChartHeader, type ChartHooksArgs, type ChartProps, ChartTotalLegend, CheckButton, CheckboxBase, CheckboxTree, CloseAllButton, CloseButton, CodeBlock, CollapsibleBase, CollapsibleContentBase, CollapsibleTriggerBase, Combobox, type ComboboxProps, type ComboboxTestIds, CommandBase, CommandDebouncedInputBase, CommandDialogBase, CommandEmptyBase, CommandGroupBase, CommandInputBase, CommandItemBase, CommandListBase, CommandSeparatorBase, CommandShortcutBase, type Connection, ContextMenuBase, ContextMenuCheckboxItemBase, ContextMenuContentBase, ContextMenuGroupBase, ContextMenuItemBase, ContextMenuLabelBase, ContextMenuPortalBase, ContextMenuRadioGroupBase, ContextMenuRadioItemBase, ContextMenuSeparatorBase, ContextMenuShortcutBase, ContextMenuSubBase, ContextMenuSubContentBase, ContextMenuSubTriggerBase, ContextMenuTriggerBase, ControlledCombobox, type ControlledComboboxItem, type ControlledComboboxProps, type ControlledComboboxTestIds, CopyButton, CopyData, type DataMapper, DateTimePicker, DayView, DayViewAgenda, DebouncedInput, type DebouncedInputProps, type DefaultAvatarComboboxProps, DefaultEndHour, DefaultEndHourAgenda, type DefaultMultiSelectProps, type DefaultSelectProps, DefaultStartHour, DefaultStartHourAgenda, DestructiveDialog, DialogBase, DialogCloseBase, DialogContentBase, DialogDescriptionBase, DialogFooterBase, DialogHeaderBase, DialogOverlayBase, DialogPortalBase, DialogTitleBase, DialogTriggerBase, DownloadButton, DraggableEvent, DraggableTooltip, DrawerBase, DrawerCloseBase, DrawerContentBase, DrawerDescriptionBase, DrawerFooterBase, DrawerHeaderBase, DrawerOverlayBase, DrawerPortalBase, DrawerTitleBase, DrawerTriggerBase, DropDownMenuBase, DropDownMenuCheckboxItemBase, DropDownMenuContentBase, DropDownMenuGroupBase, DropDownMenuItemBase, DropDownMenuLabelBase, DropDownMenuPortalBase, DropDownMenuRadioGroupBase, DropDownMenuRadioItemBase, DropDownMenuSeparatorBase, DropDownMenuShortcutBase, DropDownMenuSubBase, DropDownMenuSubContentBase, DropDownMenuSubTriggerBase, DropDownMenuTriggerBase, DroppableCell, DroppableCellAgenda, EditButton, EndHour, EndHourAgenda, ErrorMessage, EventAgenda, EventCalendar, type EventColor, type EventColorAgenda, EventDetailModalAgenda, EventDialog, EventGap, EventGapAgenda, EventHeight, EventHeightAgenda, EventItem, EventItemAgenda, EventsPopup, FavoriteButton, FileUploader, type FileUploaderProps, type FileWithPreview, FilterButton, type FinalValueFormatter, HideButton, Highlights, HorizontalChart, HorizontalLegend, HoverCardBase, HoverCardContentBase, HoverCardTriggerBase, ITEM_HEIGHT, type IconProps, InputBase, type InputBaseProps, InputOTPBase, InputOTPGroupBase, InputOTPSeparatorBase, InputOTPSlotBase, type Integration, IntegrationCard, type IntegrationConnection, type IntegrationData, type IntegrationProperties, type IntegrationProps, IntegrationTooltip, LabelBase, type LabelListContent, Leaderboard, type LeaderboardItem, type LeaderboardProps, type LegendItem, LikeButton, LoadingBase, LockButton, type MapperConfig, type MapperConfigEntry, type Margins, type MenuItem, ModalBase, ModalCloseBase, ModalContentBase, ModalDescriptionBase, ModalFooterBase, ModalHeaderBase, ModalOverlayBase, ModalPortalBase, ModalTitleBase, ModalTriggerBase, ModeToggleBase, MonthView, MonthViewAgenda, MoreButton, MultiCombobox, type MultiComboboxProps, type MultiComboboxTestIds, MultiDayOverlay, MultiSelect, MultiSelectBase, MultiSelectContentBase, type MultiSelectContextType, MultiSelectGroupBase, type MultiSelectItem, MultiSelectItemBase, type MultiSelectProps, type MultiSelectPropsWithGroupItems, type MultiSelectPropsWithItems, MultiSelectSeparatorBase, type MultiSelectTestIds, MultiSelectTriggerBase, MultiSelectValueBase, NameTooltip, NavigationMenuBase, NavigationMenuContentBase, NavigationMenuIndicatorBase, NavigationMenuItemBase, NavigationMenuLinkBase, NavigationMenuListBase, NavigationMenuTriggerBase, NavigationMenuViewportBase, type Neo4jIntegration, type Neo4jNode, type Neo4jRelationship, type NewSelectProps, NoData, type Node, NotificationButton, NumericInput, type Padding, type Period, PeriodsDropdown, PopoverAnchorBase, PopoverBase, PopoverContentBase, PopoverTriggerBase, type Primitive, ProgressBase, type ProgressBaseProps, ProgressCirclesBase, type ProgressCirclesBaseProps, ProgressPanelsBase, type ProgressPanelsBaseProps, ProgressSegmentsBase, type ProgressSegmentsBaseProps, type ProgressType, type PropsLabelList, RadialMenu, RangePicker, type RangePickerProps, RefreshButton, type Relationship, SaveButton, ScrollAreaBase, ScrollBarBase, SearchButton, Select, SelectBase, SelectContentBase, SelectEmpty, SelectGroupBase, type SelectItem, SelectItemBase, SelectLabelBase, type SelectPropsWithGroupItems, type SelectPropsWithItems, SelectScrollDownButtonBase, SelectScrollUpButtonBase, SelectSeparatorBase, type SelectTestIds, SelectTriggerBase, SelectValueBase, SeparatorBase, type SeriesConfig, type SeriesCounts, type SeriesEntry, type SeriesOrder, type SeriesProp, SettingsButton, SheetBase, SheetCloseBase, SheetContentBase, SheetDescriptionBase, SheetFooterBase, SheetHeaderBase, SheetOverlayBase, SheetPortalBase, SheetTitleBase, SheetTriggerBase, ShowOnly, SidebarBase, SidebarContentBase, SidebarFooterBase, SidebarGroupActionBase, SidebarGroupBase, SidebarGroupContentBase, SidebarGroupLabelBase, SidebarHeaderBase, SidebarInputBase, SidebarInsetBase, SidebarMenuActionBase, SidebarMenuBadgeBase, SidebarMenuBase, SidebarMenuButtonBase, SidebarMenuItemBase, SidebarMenuSkeletonBase, SidebarMenuSubBase, SidebarMenuSubButtonBase, SidebarMenuSubItemBase, SidebarProviderBase, SidebarRailBase, SidebarSeparatorBase, SidebarTriggerBase, SkeletonBase, SlideBase, type SliderBaseProps, StartHour, StartHourAgenda, StatusIndicator, type StatusProps, SwitchBase, type SystemData, SystemNode, SystemTooltip, SystemsDiagram, TableBase, TableBodyBase, TableCaptionBase, TableCellBase, TableFooterBase, TableHeadBase, TableHeaderBase, TableRowBase, TabsBase, TabsContentBase, TabsListBase, TabsTriggerBase, TextAreaBase, type TextAreaBaseProps, type Theme, ThemeProviderBase, TimePicker, TimePickerInput, type TimePickerInputProps, type TimePickerType, TimeSeries, type TimeSeriesConfig, Toaster, type TooltipAdaptedRow, TooltipBase, TooltipBody, TooltipContentBase, type TooltipItem$2 as TooltipItem, TooltipProviderBase, TooltipSimple, TooltipTriggerBase, RechartTooltipWithTotal as TooltipWithTotal, UndatedEvents, UniversalTooltipRenderer, UnlockButton, UploadButton, UseSideBarBase, VISIBLE_ITEMS, type ValueFormatter, type ValueFormatterType, ViewButton, VisibilityButton, WeekCellsHeight, WeekCellsHeightAgenda, WeekView, WeekViewAgenda, type XAxisConfig, type YAxes, type YAxisMap, type YAxisOptions, type YAxisSide, YearViewAgenda, adaptDataForTooltip, addHoursToDate, addHoursToDateAgenda, addMinutesToDateAgenda, badgeVariants, buttonVariantsBase, compactTick, computeChartWidth, computeNiceMax, computeYAxisTickWidth, convert12HourTo24Hour, createValueFormatter, createYTickFormatter, detectDataFields, detectXAxis, display12HourValue, formatDurationAgenda, formatDurationAgendaDays, formatFieldName, formatLinePercentage, generateAdditionalColors, generateColorMap, getAgendaEventsForDay, getAgendaEventsForDayAgenda, getAllEventsForDay, getAllEventsForDayAgenda, getArrowByType, getAutoColorAgenda, getBorderRadiusClasses, getBorderRadiusClassesAgenda, getDateByType, getEventColorClasses, getEventColorClassesAgenda, getEventEndDate, getEventStartDate, getEventsForDay, getEventsForDayAgenda, getItems, getMaxDataValue, getMinDataValue, getSpanningEventsForDay, getSpanningEventsForDayAgenda, getValid12Hour, getValidArrow12Hour, getValidArrowHour, getValidArrowMinuteOrSecond, getValidArrowNumber, getValidHour, getValidMinuteOrSecond, getValidNumber, isMultiDayEvent, isMultiDayEventAgenda, isValid12Hour, isValidHour, isValidMinuteOrSecond, niceCeil, normalizeAttendDate, processIntegrationData, processNeo4jData, renderInsideBarLabel, renderPillLabel, resolveChartMargins, resolveContainerPaddingLeft, set12Hours, setDateByType, setHours, setMinutes, setSeconds, sortEvents, sortEventsAgenda, toast, useBiaxial, useCalendarDnd, useCalendarDndAgenda, useChartClick, useChartDimensions, useChartHighlights, useChartLayout, useChartMinMax, useChartTooltips, useCurrentTimeIndicator, useCurrentTimeIndicatorAgenda, useDrag, useEventVisibility, useEventVisibilityAgenda, useIsMobile, useIsTruncated, useOpenTooltipForPeriod, useProcessedData, useSeriesOpacity, useTheme, useTimeSeriesRange, type valueFormatter, visualForItem };
|