@mlw-packages/react-components 1.8.8 → 1.8.9
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 +157 -3
- package/dist/index.d.mts +115 -89
- package/dist/index.d.ts +115 -89
- package/dist/index.js +512 -226
- package/dist/index.mjs +513 -228
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1564,83 +1564,6 @@ interface SelectPropsWithGroupItems<T extends string> extends DefaultSelectProps
|
|
|
1564
1564
|
type NewSelectProps<T extends string> = SelectPropsWithItems<T> | SelectPropsWithGroupItems<T>;
|
|
1565
1565
|
declare function Select<T extends string>({ items, groupItems, placeholder, onChange, error, testIds, disabled, selected, label, labelClassname, className, pagination, hideClear, }: NewSelectProps<T>): react_jsx_runtime.JSX.Element;
|
|
1566
1566
|
|
|
1567
|
-
declare const formatFieldName: (fieldName: string) => string;
|
|
1568
|
-
declare const detectDataFields: (data: Record<string, unknown>[], xAxisKey: string) => string[];
|
|
1569
|
-
declare const detectXAxis: (data: Record<string, unknown>[]) => string;
|
|
1570
|
-
declare const generateAdditionalColors: (baseColors: string[], count: number) => string[];
|
|
1571
|
-
declare const niceCeil: (value: number) => number;
|
|
1572
|
-
declare const compactTick: (value: number) => string;
|
|
1573
|
-
type Padding = number | Partial<{
|
|
1574
|
-
left: number;
|
|
1575
|
-
right: number;
|
|
1576
|
-
top: number;
|
|
1577
|
-
bottom: number;
|
|
1578
|
-
}>;
|
|
1579
|
-
type Margins = Partial<{
|
|
1580
|
-
top: number;
|
|
1581
|
-
right: number;
|
|
1582
|
-
left: number;
|
|
1583
|
-
bottom: number;
|
|
1584
|
-
}>;
|
|
1585
|
-
declare const resolveContainerPaddingLeft: (padding?: Padding, containerPaddingLeft?: number, defaultLeft?: number) => number;
|
|
1586
|
-
declare const resolveChartMargins: (margins?: Margins, chartMargins?: Margins, showLabels?: boolean) => {
|
|
1587
|
-
top: number;
|
|
1588
|
-
right: number;
|
|
1589
|
-
left: number;
|
|
1590
|
-
bottom: number;
|
|
1591
|
-
};
|
|
1592
|
-
declare const generateColorMap: (dataKeys: string[], baseColors: string[], mapperConfig: Record<string, {
|
|
1593
|
-
color?: string;
|
|
1594
|
-
}>) => Record<string, string>;
|
|
1595
|
-
declare const computeNiceMax: (maxValue: number) => number;
|
|
1596
|
-
declare const getMaxDataValue: (data: Record<string, unknown>[], keys: string[]) => number;
|
|
1597
|
-
declare const getMinDataValue: (data: Record<string, unknown>[], keys: string[]) => number;
|
|
1598
|
-
interface SeriesConfig {
|
|
1599
|
-
bar?: string[];
|
|
1600
|
-
line?: string[];
|
|
1601
|
-
area?: string[];
|
|
1602
|
-
}
|
|
1603
|
-
declare const computeChartWidth: (width: number | string | undefined, dataLength: number, series: SeriesConfig | undefined, niceMaxLeft: number, niceMaxRight: number) => number;
|
|
1604
|
-
declare const adaptDataForTooltip: <T extends Record<string, unknown>>(data: T, xAxisKey: string) => {
|
|
1605
|
-
name: string;
|
|
1606
|
-
[key: string]: string | number;
|
|
1607
|
-
};
|
|
1608
|
-
type ValueFormatterType = (props: {
|
|
1609
|
-
value: number | string | undefined;
|
|
1610
|
-
formattedValue: string;
|
|
1611
|
-
[key: string]: unknown;
|
|
1612
|
-
}) => string;
|
|
1613
|
-
declare const createValueFormatter: (customFormatter: ValueFormatterType | undefined, formatBR: boolean) => ValueFormatterType | undefined;
|
|
1614
|
-
declare const createYTickFormatter: (finalValueFormatter: ValueFormatterType | undefined) => ((value: number | string) => string);
|
|
1615
|
-
declare const computeYAxisTickWidth: (chartMarginLeft: number | undefined, yAxisLabel: string | undefined, axisLabelMargin: number, yTickFormatter: (value: number | string) => string, minValue: number, maxValue: number) => number;
|
|
1616
|
-
|
|
1617
|
-
type Variant = "filled" | "outline" | "soft";
|
|
1618
|
-
type LabelRendererProps = {
|
|
1619
|
-
x?: number | string;
|
|
1620
|
-
y?: number | string;
|
|
1621
|
-
value?: number | string;
|
|
1622
|
-
index?: number;
|
|
1623
|
-
payload?: unknown;
|
|
1624
|
-
width?: number | string;
|
|
1625
|
-
height?: number | string;
|
|
1626
|
-
viewBox?: {
|
|
1627
|
-
x?: number;
|
|
1628
|
-
y?: number;
|
|
1629
|
-
width?: number;
|
|
1630
|
-
height?: number;
|
|
1631
|
-
} | Record<string, unknown> | undefined;
|
|
1632
|
-
cx?: number | string;
|
|
1633
|
-
cy?: number | string;
|
|
1634
|
-
};
|
|
1635
|
-
type valueFormatter = (props: {
|
|
1636
|
-
value: number | string | undefined;
|
|
1637
|
-
formattedValue: string;
|
|
1638
|
-
[key: string]: unknown;
|
|
1639
|
-
}) => string;
|
|
1640
|
-
declare const renderPillLabel: (color: string, variant: Variant, valueFormatter?: valueFormatter) => (props: LabelRendererProps) => react_jsx_runtime.JSX.Element;
|
|
1641
|
-
|
|
1642
|
-
declare const renderInsideBarLabel: (color: string, valueFormatter?: valueFormatter) => (props: LabelRendererProps) => react_jsx_runtime.JSX.Element;
|
|
1643
|
-
|
|
1644
1567
|
type Primitive = string | number | boolean | null | undefined;
|
|
1645
1568
|
interface ChartData$4 {
|
|
1646
1569
|
[key: string]: Primitive;
|
|
@@ -1741,6 +1664,61 @@ interface LegendItem {
|
|
|
1741
1664
|
};
|
|
1742
1665
|
}
|
|
1743
1666
|
|
|
1667
|
+
declare const formatFieldName: (fieldName: string) => string;
|
|
1668
|
+
declare const detectDataFields: (data: Record<string, unknown>[], xAxisKey: string) => string[];
|
|
1669
|
+
declare const detectXAxis: (data: Record<string, unknown>[]) => string;
|
|
1670
|
+
declare const generateAdditionalColors: (baseColors: string[], count: number) => string[];
|
|
1671
|
+
declare const niceCeil: (value: number) => number;
|
|
1672
|
+
declare const compactTick: (value: number) => string;
|
|
1673
|
+
declare const resolveContainerPaddingLeft: (padding?: Padding, containerPaddingLeft?: number, defaultLeft?: number) => number;
|
|
1674
|
+
declare const resolveChartMargins: (margins?: Margins, chartMargins?: Margins, showLabels?: boolean) => {
|
|
1675
|
+
top: number;
|
|
1676
|
+
right: number;
|
|
1677
|
+
left: number;
|
|
1678
|
+
bottom: number;
|
|
1679
|
+
};
|
|
1680
|
+
declare const generateColorMap: (dataKeys: string[], baseColors: string[], mapperConfig: Record<string, {
|
|
1681
|
+
color?: string;
|
|
1682
|
+
}>) => Record<string, string>;
|
|
1683
|
+
declare const computeNiceMax: (maxValue: number) => number;
|
|
1684
|
+
declare const getMaxDataValue: (data: Record<string, unknown>[], keys: string[]) => number;
|
|
1685
|
+
declare const getMinDataValue: (data: Record<string, unknown>[], keys: string[]) => number;
|
|
1686
|
+
declare const computeChartWidth: (width: number | string | undefined, dataLength: number, series: SeriesConfig | undefined, niceMaxLeft: number, niceMaxRight: number) => number;
|
|
1687
|
+
declare const adaptDataForTooltip: <T extends Record<string, unknown>>(data: T, xAxisKey: string) => {
|
|
1688
|
+
name: string;
|
|
1689
|
+
[key: string]: string | number;
|
|
1690
|
+
};
|
|
1691
|
+
declare const createValueFormatter: (customFormatter: ValueFormatterType | undefined, formatBR: boolean) => ValueFormatterType | undefined;
|
|
1692
|
+
declare const createYTickFormatter: (finalValueFormatter: ValueFormatterType | undefined) => ((value: number | string) => string);
|
|
1693
|
+
declare const computeYAxisTickWidth: (chartMarginLeft: number | undefined, yAxisLabel: string | undefined, axisLabelMargin: number, yTickFormatter: (value: number | string) => string, minValue: number, maxValue: number) => number;
|
|
1694
|
+
|
|
1695
|
+
type Variant = "filled" | "outline" | "soft";
|
|
1696
|
+
type LabelRendererProps = {
|
|
1697
|
+
x?: number | string;
|
|
1698
|
+
y?: number | string;
|
|
1699
|
+
value?: number | string;
|
|
1700
|
+
index?: number;
|
|
1701
|
+
payload?: unknown;
|
|
1702
|
+
width?: number | string;
|
|
1703
|
+
height?: number | string;
|
|
1704
|
+
viewBox?: {
|
|
1705
|
+
x?: number;
|
|
1706
|
+
y?: number;
|
|
1707
|
+
width?: number;
|
|
1708
|
+
height?: number;
|
|
1709
|
+
} | Record<string, unknown> | undefined;
|
|
1710
|
+
cx?: number | string;
|
|
1711
|
+
cy?: number | string;
|
|
1712
|
+
};
|
|
1713
|
+
type valueFormatter = (props: {
|
|
1714
|
+
value: number | string | undefined;
|
|
1715
|
+
formattedValue: string;
|
|
1716
|
+
[key: string]: unknown;
|
|
1717
|
+
}) => string;
|
|
1718
|
+
declare const renderPillLabel: (color: string, variant: Variant, valueFormatter?: valueFormatter) => (props: LabelRendererProps) => react_jsx_runtime.JSX.Element;
|
|
1719
|
+
|
|
1720
|
+
declare const renderInsideBarLabel: (color: string, valueFormatter?: valueFormatter) => (props: LabelRendererProps) => react_jsx_runtime.JSX.Element;
|
|
1721
|
+
|
|
1744
1722
|
interface ChartData$3 {
|
|
1745
1723
|
[key: string]: string | number | boolean | null | undefined;
|
|
1746
1724
|
}
|
|
@@ -1782,11 +1760,6 @@ interface ChartProps {
|
|
|
1782
1760
|
title?: string;
|
|
1783
1761
|
titlePosition?: "left" | "center" | "right";
|
|
1784
1762
|
showLabels?: boolean;
|
|
1785
|
-
labelsVisibility?: {
|
|
1786
|
-
bar?: boolean;
|
|
1787
|
-
line?: boolean;
|
|
1788
|
-
area?: boolean;
|
|
1789
|
-
};
|
|
1790
1763
|
labelMap?: Record<string, string>;
|
|
1791
1764
|
valueFormatter?: valueFormatter;
|
|
1792
1765
|
categoryFormatter?: (value: string | number) => string;
|
|
@@ -1807,7 +1780,35 @@ interface ChartProps {
|
|
|
1807
1780
|
timeSeries?: boolean | TimeSeriesConfig;
|
|
1808
1781
|
timeSeriesLegend?: string;
|
|
1809
1782
|
customLegend?: boolean;
|
|
1783
|
+
labelsVisibility?: {
|
|
1784
|
+
bar: boolean;
|
|
1785
|
+
line: boolean;
|
|
1786
|
+
area: boolean;
|
|
1787
|
+
};
|
|
1788
|
+
}
|
|
1789
|
+
interface SeriesConfig {
|
|
1790
|
+
bar?: string[];
|
|
1791
|
+
line?: string[];
|
|
1792
|
+
area?: string[];
|
|
1810
1793
|
}
|
|
1794
|
+
type ValueFormatterType = (props: {
|
|
1795
|
+
value: number | string | undefined;
|
|
1796
|
+
formattedValue: string;
|
|
1797
|
+
[key: string]: unknown;
|
|
1798
|
+
}) => string;
|
|
1799
|
+
type Padding = number | Partial<{
|
|
1800
|
+
left: number;
|
|
1801
|
+
right: number;
|
|
1802
|
+
top: number;
|
|
1803
|
+
bottom: number;
|
|
1804
|
+
}>;
|
|
1805
|
+
type Margins = Partial<{
|
|
1806
|
+
top: number;
|
|
1807
|
+
right: number;
|
|
1808
|
+
left: number;
|
|
1809
|
+
bottom: number;
|
|
1810
|
+
}>;
|
|
1811
|
+
|
|
1811
1812
|
declare const Chart: React__default.FC<ChartProps>;
|
|
1812
1813
|
|
|
1813
1814
|
interface BarChartData {
|
|
@@ -1969,14 +1970,14 @@ interface TooltipData {
|
|
|
1969
1970
|
name: string;
|
|
1970
1971
|
[key: string]: string | number;
|
|
1971
1972
|
}
|
|
1972
|
-
interface Position$
|
|
1973
|
+
interface Position$2 {
|
|
1973
1974
|
top: number;
|
|
1974
1975
|
left: number;
|
|
1975
1976
|
}
|
|
1976
1977
|
interface DraggableTooltipProps {
|
|
1977
1978
|
id: string;
|
|
1978
1979
|
data: TooltipData;
|
|
1979
|
-
position: Position$
|
|
1980
|
+
position: Position$2;
|
|
1980
1981
|
isDragging?: boolean;
|
|
1981
1982
|
title?: string;
|
|
1982
1983
|
dataKeys: string[];
|
|
@@ -1990,7 +1991,7 @@ interface DraggableTooltipProps {
|
|
|
1990
1991
|
onCloseAll?: () => void;
|
|
1991
1992
|
closeAllButtonPosition?: "top-left" | "top-right" | "top-center";
|
|
1992
1993
|
closeAllButtonVariant?: "floating" | "inline";
|
|
1993
|
-
onPositionChange?: (id: string, position: Position$
|
|
1994
|
+
onPositionChange?: (id: string, position: Position$2) => void;
|
|
1994
1995
|
highlightedSeries?: Set<string>;
|
|
1995
1996
|
toggleHighlight?: (key: string) => void;
|
|
1996
1997
|
showOnlyHighlighted?: boolean;
|
|
@@ -2038,6 +2039,32 @@ interface Props {
|
|
|
2038
2039
|
}
|
|
2039
2040
|
declare const TooltipSimple: React__default.FC<Props>;
|
|
2040
2041
|
|
|
2042
|
+
interface Connection {
|
|
2043
|
+
id: string;
|
|
2044
|
+
name: string;
|
|
2045
|
+
type: "entrada" | "saida";
|
|
2046
|
+
status?: "active" | "inactive" | "warning";
|
|
2047
|
+
}
|
|
2048
|
+
interface SystemData {
|
|
2049
|
+
name: string;
|
|
2050
|
+
description: string;
|
|
2051
|
+
connections: Connection[];
|
|
2052
|
+
}
|
|
2053
|
+
interface Position$1 {
|
|
2054
|
+
top: number;
|
|
2055
|
+
left: number;
|
|
2056
|
+
}
|
|
2057
|
+
interface SystemTooltipProps {
|
|
2058
|
+
id: string;
|
|
2059
|
+
data: SystemData;
|
|
2060
|
+
position: Position$1;
|
|
2061
|
+
title?: string;
|
|
2062
|
+
onMouseDown?: (id: string, e: React__default.MouseEvent | React__default.TouchEvent) => void;
|
|
2063
|
+
onClose: (id: string) => void;
|
|
2064
|
+
onPositionChange?: (id: string, position: Position$1) => void;
|
|
2065
|
+
}
|
|
2066
|
+
declare const SystemTooltip: React__default.FC<SystemTooltipProps>;
|
|
2067
|
+
|
|
2041
2068
|
interface ChartData$2 {
|
|
2042
2069
|
[key: string]: string | number | boolean | null | undefined;
|
|
2043
2070
|
}
|
|
@@ -2175,9 +2202,8 @@ interface LeaderboardProps<T extends string> {
|
|
|
2175
2202
|
className?: string;
|
|
2176
2203
|
isLoading?: boolean;
|
|
2177
2204
|
legend?: string[];
|
|
2178
|
-
best?: boolean;
|
|
2179
2205
|
}
|
|
2180
|
-
declare function Leaderboard<T extends string>({ items, order: initialOrder, title, className, isLoading, legend,
|
|
2206
|
+
declare function Leaderboard<T extends string>({ items, order: initialOrder, title, className, isLoading, legend, }: LeaderboardProps<T>): react_jsx_runtime.JSX.Element;
|
|
2181
2207
|
|
|
2182
2208
|
declare function useIsMobile(): boolean;
|
|
2183
2209
|
|
|
@@ -2191,11 +2217,11 @@ interface UseDragOptions {
|
|
|
2191
2217
|
onDrag?: (id: string, position: Position) => void;
|
|
2192
2218
|
}
|
|
2193
2219
|
declare const useDrag: (options?: UseDragOptions) => {
|
|
2194
|
-
handleMouseDown: (id: string, e: React.MouseEvent) => void;
|
|
2220
|
+
handleMouseDown: (id: string, e: React.MouseEvent | React.TouchEvent) => void;
|
|
2195
2221
|
getPosition: (id: string) => Position;
|
|
2196
2222
|
setPosition: (id: string, position: Position) => void;
|
|
2197
2223
|
isElementDragging: (id: string) => boolean;
|
|
2198
2224
|
isDragging: boolean;
|
|
2199
2225
|
};
|
|
2200
2226
|
|
|
2201
|
-
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, BarChart, BreadcrumbBase, BreadcrumbEllipsisBase, BreadcrumbItemBase, BreadcrumbLinkBase, BreadcrumbListBase, BreadcrumbPageBase, BreadcrumbSeparatorBase, Brush, ButtonBase, ButtonGroupBase, type ButtonProps, CalendarBase, CalendarDndProvider, CalendarDndProviderAgenda, type CalendarEvent, type CalendarEventAgenda, type CalendarProps, type CalendarView, type CalendarViewAgenda, CardBase, CardContentBase, CardDescriptionBase, CardFooterBase, CardHeaderBase, CardTitleBase, type CarouselApi, CarouselBase, CarouselContentBase, CarouselItemBase, CarouselNextBase, CarouselPreviousBase, ChangeButton, Chart, type ChartData$4 as ChartData, type ChartHooksArgs, ChartTotalLegend, CheckButton, CheckboxBase, CheckboxTree, CloseAllButton, CloseButton, CodeBlock, CollapsibleBase, CollapsibleContentBase, CollapsibleTriggerBase, Combobox, type ComboboxProps, type ComboboxTestIds, CommandBase, CommandDialogBase, CommandEmptyBase, CommandGroupBase, CommandInputBase, CommandItemBase, CommandListBase, CommandSeparatorBase, CommandShortcutBase, ContextMenuBase, ContextMenuCheckboxItemBase, ContextMenuContentBase, ContextMenuGroupBase, ContextMenuItemBase, ContextMenuLabelBase, ContextMenuPortalBase, ContextMenuRadioGroupBase, ContextMenuRadioItemBase, ContextMenuSeparatorBase, ContextMenuShortcutBase, ContextMenuSubBase, ContextMenuSubContentBase, ContextMenuSubTriggerBase, ContextMenuTriggerBase, CopyButton, 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, EventDialog, EventGap, EventGapAgenda, EventHeight, EventHeightAgenda, EventItem, EventItemAgenda, EventsPopup, FavoriteButton, FileUploader, type FileUploaderProps, type FileWithPreview, FilterButton, type FinalValueFormatter, HideButton, Highlights, HoverCardBase, HoverCardContentBase, HoverCardTriggerBase, type IconProps, InputBase, type InputBaseProps, InputOTPBase, InputOTPGroupBase, InputOTPSeparatorBase, InputOTPSlotBase, LabelBase, Leaderboard, type LeaderboardItem, type LeaderboardProps, type LegendItem, LikeButton, CustomLineChart as LineChart, LoadingBase, LockButton, type MapperConfig, type MapperConfigEntry,
|
|
2227
|
+
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, BarChart, BreadcrumbBase, BreadcrumbEllipsisBase, BreadcrumbItemBase, BreadcrumbLinkBase, BreadcrumbListBase, BreadcrumbPageBase, BreadcrumbSeparatorBase, Brush, ButtonBase, ButtonGroupBase, type ButtonProps, CalendarBase, CalendarDndProvider, CalendarDndProviderAgenda, type CalendarEvent, type CalendarEventAgenda, type CalendarProps, type CalendarView, type CalendarViewAgenda, CardBase, CardContentBase, CardDescriptionBase, CardFooterBase, CardHeaderBase, CardTitleBase, type CarouselApi, CarouselBase, CarouselContentBase, CarouselItemBase, CarouselNextBase, CarouselPreviousBase, ChangeButton, Chart, type ChartData$4 as ChartData, type ChartHooksArgs, ChartTotalLegend, CheckButton, CheckboxBase, CheckboxTree, CloseAllButton, CloseButton, CodeBlock, CollapsibleBase, CollapsibleContentBase, CollapsibleTriggerBase, Combobox, type ComboboxProps, type ComboboxTestIds, CommandBase, CommandDialogBase, CommandEmptyBase, CommandGroupBase, CommandInputBase, CommandItemBase, CommandListBase, CommandSeparatorBase, CommandShortcutBase, ContextMenuBase, ContextMenuCheckboxItemBase, ContextMenuContentBase, ContextMenuGroupBase, ContextMenuItemBase, ContextMenuLabelBase, ContextMenuPortalBase, ContextMenuRadioGroupBase, ContextMenuRadioItemBase, ContextMenuSeparatorBase, ContextMenuShortcutBase, ContextMenuSubBase, ContextMenuSubContentBase, ContextMenuSubTriggerBase, ContextMenuTriggerBase, CopyButton, 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, EventDialog, EventGap, EventGapAgenda, EventHeight, EventHeightAgenda, EventItem, EventItemAgenda, EventsPopup, FavoriteButton, FileUploader, type FileUploaderProps, type FileWithPreview, FilterButton, type FinalValueFormatter, HideButton, Highlights, HoverCardBase, HoverCardContentBase, HoverCardTriggerBase, type IconProps, InputBase, type InputBaseProps, InputOTPBase, InputOTPGroupBase, InputOTPSeparatorBase, InputOTPSlotBase, LabelBase, Leaderboard, type LeaderboardItem, type LeaderboardProps, type LegendItem, LikeButton, CustomLineChart as LineChart, LoadingBase, LockButton, type MapperConfig, type MapperConfigEntry, ModalBase, ModalCloseBase, ModalContentBase, ModalDescriptionBase, ModalFooterBase, ModalHeaderBase, ModalOverlayBase, ModalPortalBase, ModalTitleBase, ModalTriggerBase, ModeToggleBase, MonthView, MonthViewAgenda, MoreButton, MultiCombobox, type MultiComboboxProps, type MultiComboboxTestIds, 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 NewSelectProps, NoData, NotificationButton, type Period, PeriodsDropdown, CustomPieChart as PieChart, PopoverAnchorBase, PopoverBase, PopoverContentBase, PopoverTriggerBase, type Primitive, ProgressBase, type ProgressBaseProps, ProgressCirclesBase, type ProgressCirclesBaseProps, ProgressPanelsBase, type ProgressPanelsBaseProps, ProgressSegmentsBase, type ProgressSegmentsBaseProps, type ProgressType, RangePicker, type RangePickerProps, RefreshButton, SaveButton, ScrollAreaBase, ScrollBarBase, SearchButton, Select, SelectBase, SelectContentBase, SelectGroupBase, type SelectItem, SelectItemBase, SelectLabelBase, type SelectPropsWithGroupItems, type SelectPropsWithItems, SelectScrollDownButtonBase, SelectScrollUpButtonBase, SelectSeparatorBase, type SelectTestIds, SelectTriggerBase, SelectValueBase, SeparatorBase, type SeriesCounts, type SeriesEntry, type SeriesProp$1 as 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, 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, type ValueFormatter, ViewButton, VisibilityButton, WeekCellsHeight, WeekCellsHeightAgenda, WeekView, WeekViewAgenda, type XAxisConfig$2 as 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, generateAdditionalColors, generateColorMap, getAgendaEventsForDay, getAgendaEventsForDayAgenda, getAllEventsForDay, getAllEventsForDayAgenda, getArrowByType, getBorderRadiusClasses, getBorderRadiusClassesAgenda, getDateByType, getEventColorClasses, getEventColorClassesAgenda, getEventEndDate, getEventStartDate, getEventsForDay, getEventsForDayAgenda, getMaxDataValue, getMinDataValue, getSpanningEventsForDay, getSpanningEventsForDayAgenda, getValid12Hour, getValidArrow12Hour, getValidArrowHour, getValidArrowMinuteOrSecond, getValidArrowNumber, getValidHour, getValidMinuteOrSecond, getValidNumber, isMultiDayEvent, isMultiDayEventAgenda, isValid12Hour, isValidHour, isValidMinuteOrSecond, niceCeil, normalizeAttendDate, renderInsideBarLabel, renderPillLabel, resolveChartMargins, resolveContainerPaddingLeft, set12Hours, setDateByType, setHours, setMinutes, setSeconds, sortEvents, sortEventsAgenda, toast, useCalendarDnd, useCalendarDndAgenda, useChartClick, useChartDimensions, useChartHighlights, useChartTooltips, useCurrentTimeIndicator, useCurrentTimeIndicatorAgenda, useDrag, useEventVisibility, useEventVisibilityAgenda, useIsMobile, useTheme, useTimeSeriesRange, type valueFormatter, visualForItem };
|