@mlw-packages/react-components 1.10.8 → 1.10.10
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 +53 -0
- package/dist/index.d.mts +24 -39
- package/dist/index.d.ts +24 -39
- package/dist/index.js +626 -352
- package/dist/index.mjs +627 -352
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -618,6 +618,9 @@ body {
|
|
|
618
618
|
.z-\[1\] {
|
|
619
619
|
z-index: 1;
|
|
620
620
|
}
|
|
621
|
+
.z-\[200\] {
|
|
622
|
+
z-index: 200;
|
|
623
|
+
}
|
|
621
624
|
.z-\[60\] {
|
|
622
625
|
z-index: 60;
|
|
623
626
|
}
|
|
@@ -721,6 +724,10 @@ body {
|
|
|
721
724
|
margin-top: 2rem;
|
|
722
725
|
margin-bottom: 2rem;
|
|
723
726
|
}
|
|
727
|
+
.my-auto {
|
|
728
|
+
margin-top: auto;
|
|
729
|
+
margin-bottom: auto;
|
|
730
|
+
}
|
|
724
731
|
.-mb-2 {
|
|
725
732
|
margin-bottom: -0.5rem;
|
|
726
733
|
}
|
|
@@ -908,6 +915,10 @@ body {
|
|
|
908
915
|
width: 0.5rem;
|
|
909
916
|
height: 0.5rem;
|
|
910
917
|
}
|
|
918
|
+
.size-2\.5 {
|
|
919
|
+
width: 0.625rem;
|
|
920
|
+
height: 0.625rem;
|
|
921
|
+
}
|
|
911
922
|
.size-24 {
|
|
912
923
|
width: 6rem;
|
|
913
924
|
height: 6rem;
|
|
@@ -1450,6 +1461,9 @@ body {
|
|
|
1450
1461
|
.min-w-\[10rem\] {
|
|
1451
1462
|
min-width: 10rem;
|
|
1452
1463
|
}
|
|
1464
|
+
.min-w-\[120px\] {
|
|
1465
|
+
min-width: 120px;
|
|
1466
|
+
}
|
|
1453
1467
|
.min-w-\[140px\] {
|
|
1454
1468
|
min-width: 140px;
|
|
1455
1469
|
}
|
|
@@ -4046,6 +4060,9 @@ body {
|
|
|
4046
4060
|
.text-primary-foreground\/60 {
|
|
4047
4061
|
color: hsl(var(--primary-foreground) / 0.6);
|
|
4048
4062
|
}
|
|
4063
|
+
.text-primary\/70 {
|
|
4064
|
+
color: hsl(var(--primary) / 0.7);
|
|
4065
|
+
}
|
|
4049
4066
|
.text-purple-500 {
|
|
4050
4067
|
--tw-text-opacity: 1;
|
|
4051
4068
|
color: rgb(168 85 247 / var(--tw-text-opacity, 1));
|
|
@@ -4406,6 +4423,9 @@ body {
|
|
|
4406
4423
|
.ring-ring {
|
|
4407
4424
|
--tw-ring-color: hsl(var(--ring));
|
|
4408
4425
|
}
|
|
4426
|
+
.ring-ring\/50 {
|
|
4427
|
+
--tw-ring-color: hsl(var(--ring) / 0.5);
|
|
4428
|
+
}
|
|
4409
4429
|
.ring-slate-200 {
|
|
4410
4430
|
--tw-ring-opacity: 1;
|
|
4411
4431
|
--tw-ring-color: rgb(226 232 240 / var(--tw-ring-opacity, 1));
|
|
@@ -5043,6 +5063,31 @@ body {
|
|
|
5043
5063
|
.focus-within\:z-20:focus-within {
|
|
5044
5064
|
z-index: 20;
|
|
5045
5065
|
}
|
|
5066
|
+
.focus-within\:border-ring:focus-within {
|
|
5067
|
+
border-color: hsl(var(--ring));
|
|
5068
|
+
}
|
|
5069
|
+
.focus-within\:ring-1:focus-within {
|
|
5070
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
5071
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
5072
|
+
box-shadow:
|
|
5073
|
+
var(--tw-ring-offset-shadow),
|
|
5074
|
+
var(--tw-ring-shadow),
|
|
5075
|
+
var(--tw-shadow, 0 0 #0000);
|
|
5076
|
+
}
|
|
5077
|
+
.focus-within\:ring-2:focus-within {
|
|
5078
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
5079
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
5080
|
+
box-shadow:
|
|
5081
|
+
var(--tw-ring-offset-shadow),
|
|
5082
|
+
var(--tw-ring-shadow),
|
|
5083
|
+
var(--tw-shadow, 0 0 #0000);
|
|
5084
|
+
}
|
|
5085
|
+
.focus-within\:ring-destructive:focus-within {
|
|
5086
|
+
--tw-ring-color: hsl(var(--destructive));
|
|
5087
|
+
}
|
|
5088
|
+
.focus-within\:ring-ring\/50:focus-within {
|
|
5089
|
+
--tw-ring-color: hsl(var(--ring) / 0.5);
|
|
5090
|
+
}
|
|
5046
5091
|
.hover\:z-10:hover {
|
|
5047
5092
|
z-index: 10;
|
|
5048
5093
|
}
|
|
@@ -5535,6 +5580,14 @@ body {
|
|
|
5535
5580
|
.focus-visible\:outline-\[3px\]:focus-visible {
|
|
5536
5581
|
outline-width: 3px;
|
|
5537
5582
|
}
|
|
5583
|
+
.focus-visible\:ring-1:focus-visible {
|
|
5584
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
5585
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
5586
|
+
box-shadow:
|
|
5587
|
+
var(--tw-ring-offset-shadow),
|
|
5588
|
+
var(--tw-ring-shadow),
|
|
5589
|
+
var(--tw-shadow, 0 0 #0000);
|
|
5590
|
+
}
|
|
5538
5591
|
.focus-visible\:ring-2:focus-visible {
|
|
5539
5592
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
5540
5593
|
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
package/dist/index.d.mts
CHANGED
|
@@ -65,9 +65,10 @@ declare const useTheme: () => ThemeProviderState;
|
|
|
65
65
|
type ModeToggleBaseProps = {
|
|
66
66
|
themes?: Theme[];
|
|
67
67
|
className?: string;
|
|
68
|
+
directToggle?: boolean;
|
|
68
69
|
variant?: "default" | "outline" | "link" | "destructive" | "secondary" | "ghost";
|
|
69
70
|
};
|
|
70
|
-
declare function ModeToggleBase({ themes, className, variant, }: ModeToggleBaseProps): react_jsx_runtime.JSX.Element;
|
|
71
|
+
declare function ModeToggleBase({ themes, className, directToggle, variant, }: ModeToggleBaseProps): react_jsx_runtime.JSX.Element;
|
|
71
72
|
|
|
72
73
|
declare const AvatarBase: React$1.ForwardRefExoticComponent<Omit<AvatarPrimitive.AvatarProps & React$1.RefAttributes<HTMLSpanElement>, "ref"> & React$1.RefAttributes<HTMLSpanElement>>;
|
|
73
74
|
declare const AvatarImageBase: React$1.ForwardRefExoticComponent<Omit<AvatarPrimitive.AvatarImageProps & React$1.RefAttributes<HTMLImageElement>, "ref"> & React$1.RefAttributes<HTMLImageElement>>;
|
|
@@ -923,8 +924,10 @@ interface AgendaViewProps$1 {
|
|
|
923
924
|
events: CalendarEventAgenda[];
|
|
924
925
|
onEventSelect?: (event: CalendarEventAgenda, e?: React.MouseEvent) => void;
|
|
925
926
|
showUndatedEvents?: boolean;
|
|
927
|
+
/** When true, hides event times */
|
|
928
|
+
noTime?: boolean;
|
|
926
929
|
}
|
|
927
|
-
declare function Agenda({ currentDate, events, onEventSelect, showUndatedEvents, }: AgendaViewProps$1): react_jsx_runtime.JSX.Element;
|
|
930
|
+
declare function Agenda({ currentDate, events, onEventSelect, showUndatedEvents, noTime, }: AgendaViewProps$1): react_jsx_runtime.JSX.Element;
|
|
928
931
|
|
|
929
932
|
interface CalendarDndProviderProps$1 {
|
|
930
933
|
children: ReactNode;
|
|
@@ -979,8 +982,10 @@ interface DayViewProps$1 {
|
|
|
979
982
|
events: CalendarEventAgenda[];
|
|
980
983
|
onEventSelect: (event: CalendarEventAgenda, e?: React__default.MouseEvent) => void;
|
|
981
984
|
showUndatedEvents?: boolean;
|
|
985
|
+
/** When true, hides event times */
|
|
986
|
+
noTime?: boolean;
|
|
982
987
|
}
|
|
983
|
-
declare function DayViewAgenda({ currentDate, events, onEventSelect, showUndatedEvents, }: DayViewProps$1): react_jsx_runtime.JSX.Element;
|
|
988
|
+
declare function DayViewAgenda({ currentDate, events, onEventSelect, showUndatedEvents, noTime, }: DayViewProps$1): react_jsx_runtime.JSX.Element;
|
|
984
989
|
|
|
985
990
|
interface DroppableCellProps$1 {
|
|
986
991
|
id: string;
|
|
@@ -1000,13 +1005,14 @@ interface EventCalendarProps$1 {
|
|
|
1000
1005
|
initialDate?: Date;
|
|
1001
1006
|
onClick?: ((event: CalendarEventAgenda, e?: React__default.MouseEvent) => void) | React__default.ReactElement<ModalLikeProps>;
|
|
1002
1007
|
showYearView?: boolean;
|
|
1008
|
+
noTime?: boolean;
|
|
1003
1009
|
}
|
|
1004
1010
|
interface ModalLikeProps {
|
|
1005
1011
|
event?: CalendarEventAgenda;
|
|
1006
1012
|
onClose?: () => void;
|
|
1007
1013
|
[key: string]: unknown;
|
|
1008
1014
|
}
|
|
1009
|
-
declare function EventAgenda({ events, onEventUpdate, className, initialView, initialDate, onClick, showYearView, }: EventCalendarProps$1): react_jsx_runtime.JSX.Element;
|
|
1015
|
+
declare function EventAgenda({ events, onEventUpdate, className, initialView, initialDate, onClick, showYearView, noTime, }: EventCalendarProps$1): react_jsx_runtime.JSX.Element;
|
|
1010
1016
|
|
|
1011
1017
|
interface EventItemProps$1 {
|
|
1012
1018
|
event: CalendarEventAgenda;
|
|
@@ -1015,6 +1021,7 @@ interface EventItemProps$1 {
|
|
|
1015
1021
|
isDragging?: boolean;
|
|
1016
1022
|
onClick?: (e: React.MouseEvent) => void;
|
|
1017
1023
|
showTime?: boolean;
|
|
1024
|
+
noTime?: boolean;
|
|
1018
1025
|
currentTime?: Date;
|
|
1019
1026
|
isFirstDay?: boolean;
|
|
1020
1027
|
isLastDay?: boolean;
|
|
@@ -1027,7 +1034,7 @@ interface EventItemProps$1 {
|
|
|
1027
1034
|
/** Number of overlapping columns in this time slot (week view only) */
|
|
1028
1035
|
totalCols?: number;
|
|
1029
1036
|
}
|
|
1030
|
-
declare function EventItemAgenda({ event, view, onClick, showTime, currentTime, isFirstDay, isLastDay, children, className, dndListeners, dndAttributes, onMouseDown, onTouchStart, agendaOnly, totalCols, }: EventItemProps$1): react_jsx_runtime.JSX.Element;
|
|
1037
|
+
declare function EventItemAgenda({ event, view, onClick, showTime, noTime, currentTime, isFirstDay, isLastDay, children, className, dndListeners, dndAttributes, onMouseDown, onTouchStart, agendaOnly, totalCols, }: EventItemProps$1): react_jsx_runtime.JSX.Element;
|
|
1031
1038
|
|
|
1032
1039
|
interface UndatedEventsProps {
|
|
1033
1040
|
events: CalendarEventAgenda[];
|
|
@@ -1063,9 +1070,12 @@ interface MonthViewProps$1 {
|
|
|
1063
1070
|
events: CalendarEventAgenda[];
|
|
1064
1071
|
onEventSelect: (event: CalendarEventAgenda, e?: React__default.MouseEvent) => void;
|
|
1065
1072
|
showUndatedEvents?: boolean;
|
|
1073
|
+
/** When true, hides event times */
|
|
1074
|
+
noTime?: boolean;
|
|
1066
1075
|
}
|
|
1067
|
-
declare function MonthViewAgenda({ currentDate, events, onEventSelect, showUndatedEvents, }: MonthViewProps$1): react_jsx_runtime.JSX.Element;
|
|
1076
|
+
declare function MonthViewAgenda({ currentDate, events, onEventSelect, showUndatedEvents, noTime, }: MonthViewProps$1): react_jsx_runtime.JSX.Element;
|
|
1068
1077
|
|
|
1078
|
+
declare function startOfLocalDay(d: Date): Date;
|
|
1069
1079
|
declare function getAutoColorAgenda(id: string): EventColorAgenda;
|
|
1070
1080
|
declare function getEventColorClassesAgenda(color?: EventColorAgenda | string, eventId?: string): string;
|
|
1071
1081
|
/**
|
|
@@ -1082,9 +1092,6 @@ declare function isMultiDayEventAgenda(event: CalendarEventAgenda): boolean;
|
|
|
1082
1092
|
declare function getEventsForDayAgenda(events: CalendarEventAgenda[], day: Date): CalendarEventAgenda[];
|
|
1083
1093
|
declare function sortEventsAgenda(events: CalendarEventAgenda[]): CalendarEventAgenda[];
|
|
1084
1094
|
declare function getSpanningEventsForDayAgenda(events: CalendarEventAgenda[], day: Date): CalendarEventAgenda[];
|
|
1085
|
-
/**
|
|
1086
|
-
* Get all events visible on a specific day (starting, ending, or spanning)
|
|
1087
|
-
*/
|
|
1088
1095
|
declare function getAllEventsForDayAgenda(events: CalendarEventAgenda[], day: Date): CalendarEventAgenda[];
|
|
1089
1096
|
/**
|
|
1090
1097
|
* Get all events for a day (for agenda view)
|
|
@@ -1118,8 +1125,10 @@ interface WeekViewProps$1 {
|
|
|
1118
1125
|
onEventSelect: (event: CalendarEventAgenda, e?: React__default.MouseEvent) => void;
|
|
1119
1126
|
onEventCreate?: (startTime: Date) => void;
|
|
1120
1127
|
showUndatedEvents?: boolean;
|
|
1128
|
+
/** When true, hides event times */
|
|
1129
|
+
noTime?: boolean;
|
|
1121
1130
|
}
|
|
1122
|
-
declare function WeekViewAgenda({ currentDate, events, onEventSelect, onEventCreate, showUndatedEvents, }: WeekViewProps$1): react_jsx_runtime.JSX.Element;
|
|
1131
|
+
declare function WeekViewAgenda({ currentDate, events, onEventSelect, onEventCreate, showUndatedEvents, noTime, }: WeekViewProps$1): react_jsx_runtime.JSX.Element;
|
|
1123
1132
|
|
|
1124
1133
|
interface YearViewProps {
|
|
1125
1134
|
currentDate: Date;
|
|
@@ -1142,14 +1151,16 @@ interface MultiDayOverlayProps {
|
|
|
1142
1151
|
hoveredEventId: string | null;
|
|
1143
1152
|
onHover: (id: string | null) => void;
|
|
1144
1153
|
onEventSelect: (event: CalendarEventAgenda, e: React__default.MouseEvent) => void;
|
|
1154
|
+
noTime?: boolean;
|
|
1145
1155
|
}
|
|
1146
|
-
declare function MultiDayOverlay({ bars, weekIndex, hoveredEventId, onHover, onEventSelect, }: MultiDayOverlayProps): react_jsx_runtime.JSX.Element | null;
|
|
1156
|
+
declare function MultiDayOverlay({ bars, weekIndex, hoveredEventId, onHover, onEventSelect, noTime, }: MultiDayOverlayProps): react_jsx_runtime.JSX.Element | null;
|
|
1147
1157
|
|
|
1148
1158
|
interface EventDetailModalAgendaProps {
|
|
1149
1159
|
event?: CalendarEventAgenda;
|
|
1150
1160
|
onClose?: () => void;
|
|
1161
|
+
noTime?: boolean;
|
|
1151
1162
|
}
|
|
1152
|
-
declare function EventDetailModalAgenda({ event, onClose, }: EventDetailModalAgendaProps): react_jsx_runtime.JSX.Element | null;
|
|
1163
|
+
declare function EventDetailModalAgenda({ event, onClose, noTime, }: EventDetailModalAgendaProps): react_jsx_runtime.JSX.Element | null;
|
|
1153
1164
|
|
|
1154
1165
|
interface AgendaViewProps {
|
|
1155
1166
|
currentDate: Date;
|
|
@@ -2096,15 +2107,6 @@ interface SystemTooltipProps {
|
|
|
2096
2107
|
}
|
|
2097
2108
|
declare const SystemTooltip: React__default.FC<SystemTooltipProps>;
|
|
2098
2109
|
|
|
2099
|
-
interface Node {
|
|
2100
|
-
identity: number;
|
|
2101
|
-
labels: string[];
|
|
2102
|
-
properties: {
|
|
2103
|
-
nome: string;
|
|
2104
|
-
[key: string]: string;
|
|
2105
|
-
};
|
|
2106
|
-
elementId: string;
|
|
2107
|
-
}
|
|
2108
2110
|
interface IntegrationProps {
|
|
2109
2111
|
tipo?: string;
|
|
2110
2112
|
Tipo?: string;
|
|
@@ -2118,21 +2120,6 @@ interface IntegrationProps {
|
|
|
2118
2120
|
Origem?: string;
|
|
2119
2121
|
[key: string]: string | undefined;
|
|
2120
2122
|
}
|
|
2121
|
-
interface Relationship {
|
|
2122
|
-
identity: number;
|
|
2123
|
-
start: number;
|
|
2124
|
-
end: number;
|
|
2125
|
-
type: string;
|
|
2126
|
-
properties: IntegrationProps;
|
|
2127
|
-
elementId: string;
|
|
2128
|
-
startNodeElementId: string;
|
|
2129
|
-
endNodeElementId: string;
|
|
2130
|
-
}
|
|
2131
|
-
interface Integration {
|
|
2132
|
-
origem: Node;
|
|
2133
|
-
r: Relationship;
|
|
2134
|
-
destino: Node;
|
|
2135
|
-
}
|
|
2136
2123
|
interface IntegrationConnection {
|
|
2137
2124
|
id: string;
|
|
2138
2125
|
name: string;
|
|
@@ -2145,7 +2132,6 @@ interface IntegrationData {
|
|
|
2145
2132
|
description?: string;
|
|
2146
2133
|
connections: IntegrationConnection[];
|
|
2147
2134
|
}
|
|
2148
|
-
declare function processIntegrationData(integrations: Integration[], targetSystemName: string): IntegrationData;
|
|
2149
2135
|
|
|
2150
2136
|
interface Position$1 {
|
|
2151
2137
|
top: number;
|
|
@@ -2162,7 +2148,6 @@ interface IntegrationModalProps {
|
|
|
2162
2148
|
onClose: (id: string) => void;
|
|
2163
2149
|
onPositionChange?: (id: string, position: Position$1) => void;
|
|
2164
2150
|
}
|
|
2165
|
-
declare const IntegrationModal: React__default.FC<IntegrationModalProps>;
|
|
2166
2151
|
|
|
2167
2152
|
interface ChartData$2 {
|
|
2168
2153
|
[key: string]: string | number | boolean | null | undefined;
|
|
@@ -2558,4 +2543,4 @@ declare const useDrag: (options?: UseDragOptions) => {
|
|
|
2558
2543
|
isDragging: boolean;
|
|
2559
2544
|
};
|
|
2560
2545
|
|
|
2561
|
-
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, CircularProgress, type CircularProgressProps, 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, FileAccept, FileUploader, type FileUploaderProps, type FileWithPreview, type FilesAccepted, FilterButton, type FinalValueFormatter, HideButton, Highlights, HorizontalChart, HorizontalLegend, HoverCardBase, HoverCardContentBase, HoverCardTriggerBase, ITEM_HEIGHT, type IconProps, InputBase, type InputBaseProps, InputOTPBase, InputOTPGroupBase, InputOTPSeparatorBase, InputOTPSlotBase, type
|
|
2546
|
+
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, CircularProgress, type CircularProgressProps, 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, FileAccept, FileUploader, type FileUploaderProps, type FileWithPreview, type FilesAccepted, FilterButton, type FinalValueFormatter, HideButton, Highlights, HorizontalChart, HorizontalLegend, HoverCardBase, HoverCardContentBase, HoverCardTriggerBase, ITEM_HEIGHT, type IconProps, InputBase, type InputBaseProps, InputOTPBase, InputOTPGroupBase, InputOTPSeparatorBase, InputOTPSlotBase, type IntegrationModalProps, 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 Position$1 as Position, 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, 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, processNeo4jData, renderInsideBarLabel, renderPillLabel, resolveChartMargins, resolveContainerPaddingLeft, set12Hours, setDateByType, setHours, setMinutes, setSeconds, sortEvents, sortEventsAgenda, startOfLocalDay, toast, useBiaxial, useCalendarDnd, useCalendarDndAgenda, useChartClick, useChartDimensions, useChartHighlights, useChartLayout, useChartMinMax, useChartTooltips, useCurrentTimeIndicator, useCurrentTimeIndicatorAgenda, useDrag, useEventVisibility, useEventVisibilityAgenda, useIsMobile, useOpenTooltipForPeriod, useProcessedData, useSeriesOpacity, useTheme, useTimeSeriesRange, type valueFormatter, visualForItem };
|
package/dist/index.d.ts
CHANGED
|
@@ -65,9 +65,10 @@ declare const useTheme: () => ThemeProviderState;
|
|
|
65
65
|
type ModeToggleBaseProps = {
|
|
66
66
|
themes?: Theme[];
|
|
67
67
|
className?: string;
|
|
68
|
+
directToggle?: boolean;
|
|
68
69
|
variant?: "default" | "outline" | "link" | "destructive" | "secondary" | "ghost";
|
|
69
70
|
};
|
|
70
|
-
declare function ModeToggleBase({ themes, className, variant, }: ModeToggleBaseProps): react_jsx_runtime.JSX.Element;
|
|
71
|
+
declare function ModeToggleBase({ themes, className, directToggle, variant, }: ModeToggleBaseProps): react_jsx_runtime.JSX.Element;
|
|
71
72
|
|
|
72
73
|
declare const AvatarBase: React$1.ForwardRefExoticComponent<Omit<AvatarPrimitive.AvatarProps & React$1.RefAttributes<HTMLSpanElement>, "ref"> & React$1.RefAttributes<HTMLSpanElement>>;
|
|
73
74
|
declare const AvatarImageBase: React$1.ForwardRefExoticComponent<Omit<AvatarPrimitive.AvatarImageProps & React$1.RefAttributes<HTMLImageElement>, "ref"> & React$1.RefAttributes<HTMLImageElement>>;
|
|
@@ -923,8 +924,10 @@ interface AgendaViewProps$1 {
|
|
|
923
924
|
events: CalendarEventAgenda[];
|
|
924
925
|
onEventSelect?: (event: CalendarEventAgenda, e?: React.MouseEvent) => void;
|
|
925
926
|
showUndatedEvents?: boolean;
|
|
927
|
+
/** When true, hides event times */
|
|
928
|
+
noTime?: boolean;
|
|
926
929
|
}
|
|
927
|
-
declare function Agenda({ currentDate, events, onEventSelect, showUndatedEvents, }: AgendaViewProps$1): react_jsx_runtime.JSX.Element;
|
|
930
|
+
declare function Agenda({ currentDate, events, onEventSelect, showUndatedEvents, noTime, }: AgendaViewProps$1): react_jsx_runtime.JSX.Element;
|
|
928
931
|
|
|
929
932
|
interface CalendarDndProviderProps$1 {
|
|
930
933
|
children: ReactNode;
|
|
@@ -979,8 +982,10 @@ interface DayViewProps$1 {
|
|
|
979
982
|
events: CalendarEventAgenda[];
|
|
980
983
|
onEventSelect: (event: CalendarEventAgenda, e?: React__default.MouseEvent) => void;
|
|
981
984
|
showUndatedEvents?: boolean;
|
|
985
|
+
/** When true, hides event times */
|
|
986
|
+
noTime?: boolean;
|
|
982
987
|
}
|
|
983
|
-
declare function DayViewAgenda({ currentDate, events, onEventSelect, showUndatedEvents, }: DayViewProps$1): react_jsx_runtime.JSX.Element;
|
|
988
|
+
declare function DayViewAgenda({ currentDate, events, onEventSelect, showUndatedEvents, noTime, }: DayViewProps$1): react_jsx_runtime.JSX.Element;
|
|
984
989
|
|
|
985
990
|
interface DroppableCellProps$1 {
|
|
986
991
|
id: string;
|
|
@@ -1000,13 +1005,14 @@ interface EventCalendarProps$1 {
|
|
|
1000
1005
|
initialDate?: Date;
|
|
1001
1006
|
onClick?: ((event: CalendarEventAgenda, e?: React__default.MouseEvent) => void) | React__default.ReactElement<ModalLikeProps>;
|
|
1002
1007
|
showYearView?: boolean;
|
|
1008
|
+
noTime?: boolean;
|
|
1003
1009
|
}
|
|
1004
1010
|
interface ModalLikeProps {
|
|
1005
1011
|
event?: CalendarEventAgenda;
|
|
1006
1012
|
onClose?: () => void;
|
|
1007
1013
|
[key: string]: unknown;
|
|
1008
1014
|
}
|
|
1009
|
-
declare function EventAgenda({ events, onEventUpdate, className, initialView, initialDate, onClick, showYearView, }: EventCalendarProps$1): react_jsx_runtime.JSX.Element;
|
|
1015
|
+
declare function EventAgenda({ events, onEventUpdate, className, initialView, initialDate, onClick, showYearView, noTime, }: EventCalendarProps$1): react_jsx_runtime.JSX.Element;
|
|
1010
1016
|
|
|
1011
1017
|
interface EventItemProps$1 {
|
|
1012
1018
|
event: CalendarEventAgenda;
|
|
@@ -1015,6 +1021,7 @@ interface EventItemProps$1 {
|
|
|
1015
1021
|
isDragging?: boolean;
|
|
1016
1022
|
onClick?: (e: React.MouseEvent) => void;
|
|
1017
1023
|
showTime?: boolean;
|
|
1024
|
+
noTime?: boolean;
|
|
1018
1025
|
currentTime?: Date;
|
|
1019
1026
|
isFirstDay?: boolean;
|
|
1020
1027
|
isLastDay?: boolean;
|
|
@@ -1027,7 +1034,7 @@ interface EventItemProps$1 {
|
|
|
1027
1034
|
/** Number of overlapping columns in this time slot (week view only) */
|
|
1028
1035
|
totalCols?: number;
|
|
1029
1036
|
}
|
|
1030
|
-
declare function EventItemAgenda({ event, view, onClick, showTime, currentTime, isFirstDay, isLastDay, children, className, dndListeners, dndAttributes, onMouseDown, onTouchStart, agendaOnly, totalCols, }: EventItemProps$1): react_jsx_runtime.JSX.Element;
|
|
1037
|
+
declare function EventItemAgenda({ event, view, onClick, showTime, noTime, currentTime, isFirstDay, isLastDay, children, className, dndListeners, dndAttributes, onMouseDown, onTouchStart, agendaOnly, totalCols, }: EventItemProps$1): react_jsx_runtime.JSX.Element;
|
|
1031
1038
|
|
|
1032
1039
|
interface UndatedEventsProps {
|
|
1033
1040
|
events: CalendarEventAgenda[];
|
|
@@ -1063,9 +1070,12 @@ interface MonthViewProps$1 {
|
|
|
1063
1070
|
events: CalendarEventAgenda[];
|
|
1064
1071
|
onEventSelect: (event: CalendarEventAgenda, e?: React__default.MouseEvent) => void;
|
|
1065
1072
|
showUndatedEvents?: boolean;
|
|
1073
|
+
/** When true, hides event times */
|
|
1074
|
+
noTime?: boolean;
|
|
1066
1075
|
}
|
|
1067
|
-
declare function MonthViewAgenda({ currentDate, events, onEventSelect, showUndatedEvents, }: MonthViewProps$1): react_jsx_runtime.JSX.Element;
|
|
1076
|
+
declare function MonthViewAgenda({ currentDate, events, onEventSelect, showUndatedEvents, noTime, }: MonthViewProps$1): react_jsx_runtime.JSX.Element;
|
|
1068
1077
|
|
|
1078
|
+
declare function startOfLocalDay(d: Date): Date;
|
|
1069
1079
|
declare function getAutoColorAgenda(id: string): EventColorAgenda;
|
|
1070
1080
|
declare function getEventColorClassesAgenda(color?: EventColorAgenda | string, eventId?: string): string;
|
|
1071
1081
|
/**
|
|
@@ -1082,9 +1092,6 @@ declare function isMultiDayEventAgenda(event: CalendarEventAgenda): boolean;
|
|
|
1082
1092
|
declare function getEventsForDayAgenda(events: CalendarEventAgenda[], day: Date): CalendarEventAgenda[];
|
|
1083
1093
|
declare function sortEventsAgenda(events: CalendarEventAgenda[]): CalendarEventAgenda[];
|
|
1084
1094
|
declare function getSpanningEventsForDayAgenda(events: CalendarEventAgenda[], day: Date): CalendarEventAgenda[];
|
|
1085
|
-
/**
|
|
1086
|
-
* Get all events visible on a specific day (starting, ending, or spanning)
|
|
1087
|
-
*/
|
|
1088
1095
|
declare function getAllEventsForDayAgenda(events: CalendarEventAgenda[], day: Date): CalendarEventAgenda[];
|
|
1089
1096
|
/**
|
|
1090
1097
|
* Get all events for a day (for agenda view)
|
|
@@ -1118,8 +1125,10 @@ interface WeekViewProps$1 {
|
|
|
1118
1125
|
onEventSelect: (event: CalendarEventAgenda, e?: React__default.MouseEvent) => void;
|
|
1119
1126
|
onEventCreate?: (startTime: Date) => void;
|
|
1120
1127
|
showUndatedEvents?: boolean;
|
|
1128
|
+
/** When true, hides event times */
|
|
1129
|
+
noTime?: boolean;
|
|
1121
1130
|
}
|
|
1122
|
-
declare function WeekViewAgenda({ currentDate, events, onEventSelect, onEventCreate, showUndatedEvents, }: WeekViewProps$1): react_jsx_runtime.JSX.Element;
|
|
1131
|
+
declare function WeekViewAgenda({ currentDate, events, onEventSelect, onEventCreate, showUndatedEvents, noTime, }: WeekViewProps$1): react_jsx_runtime.JSX.Element;
|
|
1123
1132
|
|
|
1124
1133
|
interface YearViewProps {
|
|
1125
1134
|
currentDate: Date;
|
|
@@ -1142,14 +1151,16 @@ interface MultiDayOverlayProps {
|
|
|
1142
1151
|
hoveredEventId: string | null;
|
|
1143
1152
|
onHover: (id: string | null) => void;
|
|
1144
1153
|
onEventSelect: (event: CalendarEventAgenda, e: React__default.MouseEvent) => void;
|
|
1154
|
+
noTime?: boolean;
|
|
1145
1155
|
}
|
|
1146
|
-
declare function MultiDayOverlay({ bars, weekIndex, hoveredEventId, onHover, onEventSelect, }: MultiDayOverlayProps): react_jsx_runtime.JSX.Element | null;
|
|
1156
|
+
declare function MultiDayOverlay({ bars, weekIndex, hoveredEventId, onHover, onEventSelect, noTime, }: MultiDayOverlayProps): react_jsx_runtime.JSX.Element | null;
|
|
1147
1157
|
|
|
1148
1158
|
interface EventDetailModalAgendaProps {
|
|
1149
1159
|
event?: CalendarEventAgenda;
|
|
1150
1160
|
onClose?: () => void;
|
|
1161
|
+
noTime?: boolean;
|
|
1151
1162
|
}
|
|
1152
|
-
declare function EventDetailModalAgenda({ event, onClose, }: EventDetailModalAgendaProps): react_jsx_runtime.JSX.Element | null;
|
|
1163
|
+
declare function EventDetailModalAgenda({ event, onClose, noTime, }: EventDetailModalAgendaProps): react_jsx_runtime.JSX.Element | null;
|
|
1153
1164
|
|
|
1154
1165
|
interface AgendaViewProps {
|
|
1155
1166
|
currentDate: Date;
|
|
@@ -2096,15 +2107,6 @@ interface SystemTooltipProps {
|
|
|
2096
2107
|
}
|
|
2097
2108
|
declare const SystemTooltip: React__default.FC<SystemTooltipProps>;
|
|
2098
2109
|
|
|
2099
|
-
interface Node {
|
|
2100
|
-
identity: number;
|
|
2101
|
-
labels: string[];
|
|
2102
|
-
properties: {
|
|
2103
|
-
nome: string;
|
|
2104
|
-
[key: string]: string;
|
|
2105
|
-
};
|
|
2106
|
-
elementId: string;
|
|
2107
|
-
}
|
|
2108
2110
|
interface IntegrationProps {
|
|
2109
2111
|
tipo?: string;
|
|
2110
2112
|
Tipo?: string;
|
|
@@ -2118,21 +2120,6 @@ interface IntegrationProps {
|
|
|
2118
2120
|
Origem?: string;
|
|
2119
2121
|
[key: string]: string | undefined;
|
|
2120
2122
|
}
|
|
2121
|
-
interface Relationship {
|
|
2122
|
-
identity: number;
|
|
2123
|
-
start: number;
|
|
2124
|
-
end: number;
|
|
2125
|
-
type: string;
|
|
2126
|
-
properties: IntegrationProps;
|
|
2127
|
-
elementId: string;
|
|
2128
|
-
startNodeElementId: string;
|
|
2129
|
-
endNodeElementId: string;
|
|
2130
|
-
}
|
|
2131
|
-
interface Integration {
|
|
2132
|
-
origem: Node;
|
|
2133
|
-
r: Relationship;
|
|
2134
|
-
destino: Node;
|
|
2135
|
-
}
|
|
2136
2123
|
interface IntegrationConnection {
|
|
2137
2124
|
id: string;
|
|
2138
2125
|
name: string;
|
|
@@ -2145,7 +2132,6 @@ interface IntegrationData {
|
|
|
2145
2132
|
description?: string;
|
|
2146
2133
|
connections: IntegrationConnection[];
|
|
2147
2134
|
}
|
|
2148
|
-
declare function processIntegrationData(integrations: Integration[], targetSystemName: string): IntegrationData;
|
|
2149
2135
|
|
|
2150
2136
|
interface Position$1 {
|
|
2151
2137
|
top: number;
|
|
@@ -2162,7 +2148,6 @@ interface IntegrationModalProps {
|
|
|
2162
2148
|
onClose: (id: string) => void;
|
|
2163
2149
|
onPositionChange?: (id: string, position: Position$1) => void;
|
|
2164
2150
|
}
|
|
2165
|
-
declare const IntegrationModal: React__default.FC<IntegrationModalProps>;
|
|
2166
2151
|
|
|
2167
2152
|
interface ChartData$2 {
|
|
2168
2153
|
[key: string]: string | number | boolean | null | undefined;
|
|
@@ -2558,4 +2543,4 @@ declare const useDrag: (options?: UseDragOptions) => {
|
|
|
2558
2543
|
isDragging: boolean;
|
|
2559
2544
|
};
|
|
2560
2545
|
|
|
2561
|
-
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, CircularProgress, type CircularProgressProps, 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, FileAccept, FileUploader, type FileUploaderProps, type FileWithPreview, type FilesAccepted, FilterButton, type FinalValueFormatter, HideButton, Highlights, HorizontalChart, HorizontalLegend, HoverCardBase, HoverCardContentBase, HoverCardTriggerBase, ITEM_HEIGHT, type IconProps, InputBase, type InputBaseProps, InputOTPBase, InputOTPGroupBase, InputOTPSeparatorBase, InputOTPSlotBase, type
|
|
2546
|
+
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, CircularProgress, type CircularProgressProps, 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, FileAccept, FileUploader, type FileUploaderProps, type FileWithPreview, type FilesAccepted, FilterButton, type FinalValueFormatter, HideButton, Highlights, HorizontalChart, HorizontalLegend, HoverCardBase, HoverCardContentBase, HoverCardTriggerBase, ITEM_HEIGHT, type IconProps, InputBase, type InputBaseProps, InputOTPBase, InputOTPGroupBase, InputOTPSeparatorBase, InputOTPSlotBase, type IntegrationModalProps, 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 Position$1 as Position, 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, 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, processNeo4jData, renderInsideBarLabel, renderPillLabel, resolveChartMargins, resolveContainerPaddingLeft, set12Hours, setDateByType, setHours, setMinutes, setSeconds, sortEvents, sortEventsAgenda, startOfLocalDay, toast, useBiaxial, useCalendarDnd, useCalendarDndAgenda, useChartClick, useChartDimensions, useChartHighlights, useChartLayout, useChartMinMax, useChartTooltips, useCurrentTimeIndicator, useCurrentTimeIndicatorAgenda, useDrag, useEventVisibility, useEventVisibilityAgenda, useIsMobile, useOpenTooltipForPeriod, useProcessedData, useSeriesOpacity, useTheme, useTimeSeriesRange, type valueFormatter, visualForItem };
|