@mlw-packages/react-components 1.9.2 → 1.9.4
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 +67 -6
- package/dist/index.d.mts +111 -61
- package/dist/index.d.ts +111 -61
- package/dist/index.js +918 -396
- package/dist/index.mjs +918 -398
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -579,6 +579,9 @@ body {
|
|
|
579
579
|
.z-50 {
|
|
580
580
|
z-index: 50;
|
|
581
581
|
}
|
|
582
|
+
.z-\[100\] {
|
|
583
|
+
z-index: 100;
|
|
584
|
+
}
|
|
582
585
|
.z-\[1\] {
|
|
583
586
|
z-index: 1;
|
|
584
587
|
}
|
|
@@ -1115,6 +1118,9 @@ body {
|
|
|
1115
1118
|
.w-1\.5 {
|
|
1116
1119
|
width: 0.375rem;
|
|
1117
1120
|
}
|
|
1121
|
+
.w-1\/2 {
|
|
1122
|
+
width: 50%;
|
|
1123
|
+
}
|
|
1118
1124
|
.w-10 {
|
|
1119
1125
|
width: 2.5rem;
|
|
1120
1126
|
}
|
|
@@ -1151,6 +1157,9 @@ body {
|
|
|
1151
1157
|
.w-3\/4 {
|
|
1152
1158
|
width: 75%;
|
|
1153
1159
|
}
|
|
1160
|
+
.w-3\/6 {
|
|
1161
|
+
width: 50%;
|
|
1162
|
+
}
|
|
1154
1163
|
.w-32 {
|
|
1155
1164
|
width: 8rem;
|
|
1156
1165
|
}
|
|
@@ -1268,9 +1277,6 @@ body {
|
|
|
1268
1277
|
.w-\[calc\(100\%-2rem\)\] {
|
|
1269
1278
|
width: calc(100% - 2rem);
|
|
1270
1279
|
}
|
|
1271
|
-
.w-\[calc\(100vw-24px\)\] {
|
|
1272
|
-
width: calc(100vw - 24px);
|
|
1273
|
-
}
|
|
1274
1280
|
.w-auto {
|
|
1275
1281
|
width: auto;
|
|
1276
1282
|
}
|
|
@@ -1294,6 +1300,9 @@ body {
|
|
|
1294
1300
|
.min-w-0 {
|
|
1295
1301
|
min-width: 0px;
|
|
1296
1302
|
}
|
|
1303
|
+
.min-w-24 {
|
|
1304
|
+
min-width: 6rem;
|
|
1305
|
+
}
|
|
1297
1306
|
.min-w-28 {
|
|
1298
1307
|
min-width: 7rem;
|
|
1299
1308
|
}
|
|
@@ -2983,6 +2992,9 @@ body {
|
|
|
2983
2992
|
.pl-24 {
|
|
2984
2993
|
padding-left: 6rem;
|
|
2985
2994
|
}
|
|
2995
|
+
.pl-3 {
|
|
2996
|
+
padding-left: 0.75rem;
|
|
2997
|
+
}
|
|
2986
2998
|
.pl-4 {
|
|
2987
2999
|
padding-left: 1rem;
|
|
2988
3000
|
}
|
|
@@ -4105,6 +4117,34 @@ body {
|
|
|
4105
4117
|
[data-theme-transition=true]::view-transition-new(root) {
|
|
4106
4118
|
animation: none;
|
|
4107
4119
|
}
|
|
4120
|
+
@supports (-webkit-overflow-scrolling: touch) {
|
|
4121
|
+
[cmdk-list] {
|
|
4122
|
+
-webkit-overflow-scrolling: touch !important;
|
|
4123
|
+
overflow-y: auto !important;
|
|
4124
|
+
overscroll-behavior: contain !important;
|
|
4125
|
+
touch-action: pan-y !important;
|
|
4126
|
+
transform: translateZ(0) !important;
|
|
4127
|
+
will-change: scroll-position !important;
|
|
4128
|
+
}
|
|
4129
|
+
}
|
|
4130
|
+
@media only screen and (min-device-width: 744px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 2) {
|
|
4131
|
+
[cmdk-list] {
|
|
4132
|
+
-webkit-overflow-scrolling: touch !important;
|
|
4133
|
+
overflow-y: auto !important;
|
|
4134
|
+
overscroll-behavior: contain !important;
|
|
4135
|
+
touch-action: pan-y !important;
|
|
4136
|
+
transform: translateZ(0) !important;
|
|
4137
|
+
will-change: scroll-position !important;
|
|
4138
|
+
position: relative !important;
|
|
4139
|
+
}
|
|
4140
|
+
[cmdk-group] {
|
|
4141
|
+
position: relative !important;
|
|
4142
|
+
}
|
|
4143
|
+
}
|
|
4144
|
+
[cmdk-list] {
|
|
4145
|
+
-webkit-tap-highlight-color: transparent;
|
|
4146
|
+
-webkit-touch-callout: none;
|
|
4147
|
+
}
|
|
4108
4148
|
.selection\:bg-primary *::-moz-selection {
|
|
4109
4149
|
background-color: hsl(var(--primary));
|
|
4110
4150
|
}
|
|
@@ -6193,6 +6233,9 @@ body {
|
|
|
6193
6233
|
.sm\:h-12 {
|
|
6194
6234
|
height: 3rem;
|
|
6195
6235
|
}
|
|
6236
|
+
.sm\:h-3 {
|
|
6237
|
+
height: 0.75rem;
|
|
6238
|
+
}
|
|
6196
6239
|
.sm\:h-4 {
|
|
6197
6240
|
height: 1rem;
|
|
6198
6241
|
}
|
|
@@ -6214,15 +6257,15 @@ body {
|
|
|
6214
6257
|
.sm\:w-20 {
|
|
6215
6258
|
width: 5rem;
|
|
6216
6259
|
}
|
|
6260
|
+
.sm\:w-3 {
|
|
6261
|
+
width: 0.75rem;
|
|
6262
|
+
}
|
|
6217
6263
|
.sm\:w-4 {
|
|
6218
6264
|
width: 1rem;
|
|
6219
6265
|
}
|
|
6220
6266
|
.sm\:w-7 {
|
|
6221
6267
|
width: 1.75rem;
|
|
6222
6268
|
}
|
|
6223
|
-
.sm\:w-\[calc\(100vw-32px\)\] {
|
|
6224
|
-
width: calc(100vw - 32px);
|
|
6225
|
-
}
|
|
6226
6269
|
.sm\:w-auto {
|
|
6227
6270
|
width: auto;
|
|
6228
6271
|
}
|
|
@@ -6269,6 +6312,9 @@ body {
|
|
|
6269
6312
|
.sm\:gap-0 {
|
|
6270
6313
|
gap: 0px;
|
|
6271
6314
|
}
|
|
6315
|
+
.sm\:gap-1\.5 {
|
|
6316
|
+
gap: 0.375rem;
|
|
6317
|
+
}
|
|
6272
6318
|
.sm\:gap-2 {
|
|
6273
6319
|
gap: 0.5rem;
|
|
6274
6320
|
}
|
|
@@ -6412,6 +6458,9 @@ body {
|
|
|
6412
6458
|
margin-left: 0px;
|
|
6413
6459
|
margin-right: 0px;
|
|
6414
6460
|
}
|
|
6461
|
+
.md\:ml-4 {
|
|
6462
|
+
margin-left: 1rem;
|
|
6463
|
+
}
|
|
6415
6464
|
.md\:block {
|
|
6416
6465
|
display: block;
|
|
6417
6466
|
}
|
|
@@ -6457,6 +6506,9 @@ body {
|
|
|
6457
6506
|
.md\:gap-1\.5 {
|
|
6458
6507
|
gap: 0.375rem;
|
|
6459
6508
|
}
|
|
6509
|
+
.md\:gap-4 {
|
|
6510
|
+
gap: 1rem;
|
|
6511
|
+
}
|
|
6460
6512
|
.md\:space-x-44 > :not([hidden]) ~ :not([hidden]) {
|
|
6461
6513
|
--tw-space-x-reverse: 0;
|
|
6462
6514
|
margin-right: calc(11rem * var(--tw-space-x-reverse));
|
|
@@ -6478,6 +6530,9 @@ body {
|
|
|
6478
6530
|
padding-top: 1rem;
|
|
6479
6531
|
padding-bottom: 1rem;
|
|
6480
6532
|
}
|
|
6533
|
+
.md\:pl-4 {
|
|
6534
|
+
padding-left: 1rem;
|
|
6535
|
+
}
|
|
6481
6536
|
.md\:text-left {
|
|
6482
6537
|
text-align: left;
|
|
6483
6538
|
}
|
|
@@ -6583,6 +6638,9 @@ body {
|
|
|
6583
6638
|
.\[\&\:\:-webkit-scrollbar-thumb\]\:bg-muted-foreground\/20::-webkit-scrollbar-thumb {
|
|
6584
6639
|
background-color: hsl(var(--muted-foreground) / 0.2);
|
|
6585
6640
|
}
|
|
6641
|
+
.\[\&\:\:-webkit-scrollbar-thumb\]\:bg-muted-foreground\/30::-webkit-scrollbar-thumb {
|
|
6642
|
+
background-color: hsl(var(--muted-foreground) / 0.3);
|
|
6643
|
+
}
|
|
6586
6644
|
.hover\:\[\&\:\:-webkit-scrollbar-thumb\]\:bg-muted-foreground\/40::-webkit-scrollbar-thumb:hover {
|
|
6587
6645
|
background-color: hsl(var(--muted-foreground) / 0.4);
|
|
6588
6646
|
}
|
|
@@ -6595,6 +6653,9 @@ body {
|
|
|
6595
6653
|
.\[\&\:\:-webkit-scrollbar\]\:hidden::-webkit-scrollbar {
|
|
6596
6654
|
display: none;
|
|
6597
6655
|
}
|
|
6656
|
+
.\[\&\:\:-webkit-scrollbar\]\:h-1\.5::-webkit-scrollbar {
|
|
6657
|
+
height: 0.375rem;
|
|
6658
|
+
}
|
|
6598
6659
|
.\[\&\:\:-webkit-scrollbar\]\:w-1\.5::-webkit-scrollbar {
|
|
6599
6660
|
width: 0.375rem;
|
|
6600
6661
|
}
|
package/dist/index.d.mts
CHANGED
|
@@ -422,7 +422,7 @@ declare const TableHeadBase: React$1.ForwardRefExoticComponent<React$1.ThHTMLAtt
|
|
|
422
422
|
declare const TableCellBase: React$1.ForwardRefExoticComponent<React$1.TdHTMLAttributes<HTMLTableCellElement> & React$1.RefAttributes<HTMLTableCellElement>>;
|
|
423
423
|
declare const TableCaptionBase: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableCaptionElement> & React$1.RefAttributes<HTMLTableCaptionElement>>;
|
|
424
424
|
|
|
425
|
-
declare const TabsBase: React$1.ForwardRefExoticComponent<TabsPrimitive.TabsProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
425
|
+
declare const TabsBase: React$1.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
426
426
|
declare const TabsListBase: React$1.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsListProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
427
427
|
type TabsTriggerAnimation = "default" | "none" | "scale" | "underline" | string;
|
|
428
428
|
declare const TabsTriggerBase: React$1.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & {
|
|
@@ -1674,61 +1674,6 @@ interface LegendItem {
|
|
|
1674
1674
|
};
|
|
1675
1675
|
}
|
|
1676
1676
|
|
|
1677
|
-
declare const formatFieldName: (fieldName: string) => string;
|
|
1678
|
-
declare const detectDataFields: (data: Record<string, unknown>[], xAxisKey: string) => string[];
|
|
1679
|
-
declare const detectXAxis: (data: Record<string, unknown>[]) => string;
|
|
1680
|
-
declare const generateAdditionalColors: (baseColors: string[], count: number) => string[];
|
|
1681
|
-
declare const niceCeil: (value: number) => number;
|
|
1682
|
-
declare const compactTick: (value: number) => string;
|
|
1683
|
-
declare const resolveContainerPaddingLeft: (padding?: Padding, containerPaddingLeft?: number, defaultLeft?: number) => number;
|
|
1684
|
-
declare const resolveChartMargins: (margins?: Margins, chartMargins?: Margins, showLabels?: boolean) => {
|
|
1685
|
-
top: number;
|
|
1686
|
-
right: number;
|
|
1687
|
-
left: number;
|
|
1688
|
-
bottom: number;
|
|
1689
|
-
};
|
|
1690
|
-
declare const generateColorMap: (dataKeys: string[], baseColors: string[], mapperConfig: Record<string, {
|
|
1691
|
-
color?: string;
|
|
1692
|
-
}>) => Record<string, string>;
|
|
1693
|
-
declare const computeNiceMax: (maxValue: number) => number;
|
|
1694
|
-
declare const getMaxDataValue: (data: Record<string, unknown>[], keys: string[]) => number;
|
|
1695
|
-
declare const getMinDataValue: (data: Record<string, unknown>[], keys: string[]) => number;
|
|
1696
|
-
declare const computeChartWidth: (width: number | string | undefined, dataLength: number, series: SeriesConfig | undefined, niceMaxLeft: number, niceMaxRight: number) => number;
|
|
1697
|
-
declare const adaptDataForTooltip: <T extends Record<string, unknown>>(data: T, xAxisKey: string) => {
|
|
1698
|
-
name: string;
|
|
1699
|
-
[key: string]: string | number;
|
|
1700
|
-
};
|
|
1701
|
-
declare const createValueFormatter: (customFormatter: ValueFormatterType | undefined, formatBR: boolean) => ValueFormatterType | undefined;
|
|
1702
|
-
declare const createYTickFormatter: (finalValueFormatter: ValueFormatterType | undefined) => ((value: number | string) => string);
|
|
1703
|
-
declare const computeYAxisTickWidth: (chartMarginLeft: number | undefined, yAxisLabel: string | undefined, axisLabelMargin: number, yTickFormatter: (value: number | string) => string, minValue: number, maxValue: number) => number;
|
|
1704
|
-
|
|
1705
|
-
type Variant = "filled" | "outline" | "soft";
|
|
1706
|
-
type LabelRendererProps = {
|
|
1707
|
-
x?: number | string;
|
|
1708
|
-
y?: number | string;
|
|
1709
|
-
value?: number | string;
|
|
1710
|
-
index?: number;
|
|
1711
|
-
payload?: unknown;
|
|
1712
|
-
width?: number | string;
|
|
1713
|
-
height?: number | string;
|
|
1714
|
-
viewBox?: {
|
|
1715
|
-
x?: number;
|
|
1716
|
-
y?: number;
|
|
1717
|
-
width?: number;
|
|
1718
|
-
height?: number;
|
|
1719
|
-
} | Record<string, unknown> | undefined;
|
|
1720
|
-
cx?: number | string;
|
|
1721
|
-
cy?: number | string;
|
|
1722
|
-
};
|
|
1723
|
-
type valueFormatter = (props: {
|
|
1724
|
-
value: number | string | undefined;
|
|
1725
|
-
formattedValue: string;
|
|
1726
|
-
[key: string]: unknown;
|
|
1727
|
-
}) => string;
|
|
1728
|
-
declare const renderPillLabel: (color: string, variant: Variant, valueFormatter?: valueFormatter) => (props: LabelRendererProps) => react_jsx_runtime.JSX.Element;
|
|
1729
|
-
|
|
1730
|
-
declare const renderInsideBarLabel: (color: string, valueFormatter?: valueFormatter) => (props: LabelRendererProps) => react_jsx_runtime.JSX.Element;
|
|
1731
|
-
|
|
1732
1677
|
interface ChartData$3 {
|
|
1733
1678
|
[key: string]: string | number | boolean | null | undefined;
|
|
1734
1679
|
}
|
|
@@ -1750,8 +1695,8 @@ type SeriesProp = {
|
|
|
1750
1695
|
line?: string[];
|
|
1751
1696
|
area?: string[];
|
|
1752
1697
|
};
|
|
1753
|
-
interface ChartProps {
|
|
1754
|
-
data:
|
|
1698
|
+
interface ChartProps<T extends ChartData$3 = ChartData$3> {
|
|
1699
|
+
data: T[];
|
|
1755
1700
|
series?: SeriesProp;
|
|
1756
1701
|
className?: string;
|
|
1757
1702
|
chartMargin?: Partial<{
|
|
@@ -1771,7 +1716,7 @@ interface ChartProps {
|
|
|
1771
1716
|
titlePosition?: "left" | "center" | "right";
|
|
1772
1717
|
showLabels?: boolean;
|
|
1773
1718
|
labelMap?: Record<string, string>;
|
|
1774
|
-
valueFormatter?:
|
|
1719
|
+
valueFormatter?: ValueFormatterConfig | ValueFormatterMap<T>;
|
|
1775
1720
|
categoryFormatter?: (value: string | number) => string;
|
|
1776
1721
|
periodLabel?: string;
|
|
1777
1722
|
xAxisLabel?: string;
|
|
@@ -1795,6 +1740,8 @@ interface ChartProps {
|
|
|
1795
1740
|
line: boolean;
|
|
1796
1741
|
area: boolean;
|
|
1797
1742
|
};
|
|
1743
|
+
horizontal?: boolean;
|
|
1744
|
+
orderBy?: string;
|
|
1798
1745
|
}
|
|
1799
1746
|
interface SeriesConfig {
|
|
1800
1747
|
bar?: string[];
|
|
@@ -1806,6 +1753,12 @@ type ValueFormatterType = (props: {
|
|
|
1806
1753
|
formattedValue: string;
|
|
1807
1754
|
[key: string]: unknown;
|
|
1808
1755
|
}) => string;
|
|
1756
|
+
type PredefinedFormat = "R$" | "$" | "€" | "£" | "%" | "kg" | "km" | "m" | "L" | "un" | "t" | "h" | "min" | "s";
|
|
1757
|
+
type ExtractStringKeys<T> = {
|
|
1758
|
+
[K in keyof T]: T[K] extends string | number ? K : never;
|
|
1759
|
+
}[keyof T];
|
|
1760
|
+
type ValueFormatterMap<T extends Record<string, unknown>> = Partial<Record<ExtractStringKeys<T>, PredefinedFormat | string>>;
|
|
1761
|
+
type ValueFormatterConfig = ValueFormatterType | Record<string, PredefinedFormat | string>;
|
|
1809
1762
|
type Padding = number | Partial<{
|
|
1810
1763
|
left: number;
|
|
1811
1764
|
right: number;
|
|
@@ -1907,6 +1860,61 @@ interface CloseAllButtonProps {
|
|
|
1907
1860
|
}
|
|
1908
1861
|
declare const CloseAllButton: React__default.FC<CloseAllButtonProps>;
|
|
1909
1862
|
|
|
1863
|
+
declare const formatFieldName: (fieldName: string) => string;
|
|
1864
|
+
declare const detectDataFields: (data: Record<string, unknown>[], xAxisKey: string) => string[];
|
|
1865
|
+
declare const detectXAxis: (data: Record<string, unknown>[]) => string;
|
|
1866
|
+
declare const generateAdditionalColors: (baseColors: string[], count: number) => string[];
|
|
1867
|
+
declare const niceCeil: (value: number) => number;
|
|
1868
|
+
declare const compactTick: (value: number) => string;
|
|
1869
|
+
declare const resolveContainerPaddingLeft: (padding?: Padding, containerPaddingLeft?: number, defaultLeft?: number) => number;
|
|
1870
|
+
declare const resolveChartMargins: (margins?: Margins, chartMargins?: Margins, showLabels?: boolean) => {
|
|
1871
|
+
top: number;
|
|
1872
|
+
right: number;
|
|
1873
|
+
left: number;
|
|
1874
|
+
bottom: number;
|
|
1875
|
+
};
|
|
1876
|
+
declare const generateColorMap: (dataKeys: string[], baseColors: string[], mapperConfig: Record<string, {
|
|
1877
|
+
color?: string;
|
|
1878
|
+
}>) => Record<string, string>;
|
|
1879
|
+
declare const computeNiceMax: (maxValue: number) => number;
|
|
1880
|
+
declare const getMaxDataValue: (data: Record<string, unknown>[], keys: string[]) => number;
|
|
1881
|
+
declare const getMinDataValue: (data: Record<string, unknown>[], keys: string[]) => number;
|
|
1882
|
+
declare const computeChartWidth: (width: number | string | undefined, dataLength: number, series: SeriesConfig | undefined, niceMaxLeft: number, niceMaxRight: number) => number;
|
|
1883
|
+
declare const adaptDataForTooltip: <T extends Record<string, unknown>>(data: T, xAxisKey: string) => {
|
|
1884
|
+
name: string;
|
|
1885
|
+
[key: string]: string | number;
|
|
1886
|
+
};
|
|
1887
|
+
declare const createValueFormatter: (customFormatter: ValueFormatterType | Record<string, string> | undefined, formatBR: boolean) => ValueFormatterType | undefined;
|
|
1888
|
+
declare const createYTickFormatter: (finalValueFormatter: ValueFormatterType | undefined) => ((value: number | string) => string);
|
|
1889
|
+
declare const computeYAxisTickWidth: (chartMarginLeft: number | undefined, yAxisLabel: string | undefined, axisLabelMargin: number, yTickFormatter: (value: number | string) => string, minValue: number, maxValue: number) => number;
|
|
1890
|
+
|
|
1891
|
+
type Variant = "filled" | "outline" | "soft";
|
|
1892
|
+
type LabelRendererProps = {
|
|
1893
|
+
x?: number | string;
|
|
1894
|
+
y?: number | string;
|
|
1895
|
+
value?: number | string;
|
|
1896
|
+
index?: number;
|
|
1897
|
+
payload?: unknown;
|
|
1898
|
+
width?: number | string;
|
|
1899
|
+
height?: number | string;
|
|
1900
|
+
viewBox?: {
|
|
1901
|
+
x?: number;
|
|
1902
|
+
y?: number;
|
|
1903
|
+
width?: number;
|
|
1904
|
+
height?: number;
|
|
1905
|
+
} | Record<string, unknown> | undefined;
|
|
1906
|
+
cx?: number | string;
|
|
1907
|
+
cy?: number | string;
|
|
1908
|
+
};
|
|
1909
|
+
type valueFormatter = (props: {
|
|
1910
|
+
value: number | string | undefined;
|
|
1911
|
+
formattedValue: string;
|
|
1912
|
+
[key: string]: unknown;
|
|
1913
|
+
}) => string;
|
|
1914
|
+
declare const renderPillLabel: (color: string, variant: Variant, valueFormatter?: valueFormatter) => (props: LabelRendererProps) => react_jsx_runtime.JSX.Element;
|
|
1915
|
+
|
|
1916
|
+
declare const renderInsideBarLabel: (color: string, valueFormatter?: valueFormatter) => (props: LabelRendererProps) => react_jsx_runtime.JSX.Element;
|
|
1917
|
+
|
|
1910
1918
|
interface TooltipData {
|
|
1911
1919
|
name: string;
|
|
1912
1920
|
[key: string]: string | number;
|
|
@@ -1980,17 +1988,31 @@ interface Props {
|
|
|
1980
1988
|
}
|
|
1981
1989
|
declare const TooltipSimple: React__default.FC<Props>;
|
|
1982
1990
|
|
|
1991
|
+
interface IntegrationProperties {
|
|
1992
|
+
tipo?: string;
|
|
1993
|
+
Tipo?: string;
|
|
1994
|
+
Setor?: string;
|
|
1995
|
+
Destino?: string;
|
|
1996
|
+
Contato?: string;
|
|
1997
|
+
Ambiente?: string;
|
|
1998
|
+
Nome?: string;
|
|
1999
|
+
Protocolos?: string;
|
|
2000
|
+
Sustentacao?: string;
|
|
2001
|
+
Origem?: string;
|
|
2002
|
+
}
|
|
1983
2003
|
interface Connection {
|
|
1984
2004
|
id: string;
|
|
1985
2005
|
name: string;
|
|
1986
2006
|
type: "entrada" | "saida";
|
|
1987
2007
|
status?: "active" | "inactive" | "warning";
|
|
2008
|
+
integration?: IntegrationProperties;
|
|
1988
2009
|
}
|
|
1989
2010
|
interface SystemData {
|
|
1990
2011
|
name: string;
|
|
1991
|
-
description
|
|
2012
|
+
description?: string;
|
|
1992
2013
|
connections: Connection[];
|
|
1993
2014
|
}
|
|
2015
|
+
|
|
1994
2016
|
interface Position$1 {
|
|
1995
2017
|
top: number;
|
|
1996
2018
|
left: number;
|
|
@@ -2000,6 +2022,7 @@ interface SystemTooltipProps {
|
|
|
2000
2022
|
data: SystemData;
|
|
2001
2023
|
position: Position$1;
|
|
2002
2024
|
title?: string;
|
|
2025
|
+
isLoading?: boolean;
|
|
2003
2026
|
onMouseDown?: (id: string, e: React__default.MouseEvent | React__default.TouchEvent) => void;
|
|
2004
2027
|
onClose: (id: string) => void;
|
|
2005
2028
|
onPositionChange?: (id: string, position: Position$1) => void;
|
|
@@ -2039,6 +2062,21 @@ interface ChartTotalLegendProps {
|
|
|
2039
2062
|
}
|
|
2040
2063
|
declare const ChartTotalLegend: React__default.FC<ChartTotalLegendProps>;
|
|
2041
2064
|
|
|
2065
|
+
interface HorizontalLegendProps {
|
|
2066
|
+
allKeys: string[];
|
|
2067
|
+
mapperConfig: Record<string, {
|
|
2068
|
+
label?: string;
|
|
2069
|
+
}>;
|
|
2070
|
+
finalColors: Record<string, string>;
|
|
2071
|
+
labelMap?: Record<string, string>;
|
|
2072
|
+
legendUppercase?: boolean;
|
|
2073
|
+
orderBy?: string;
|
|
2074
|
+
maxPeriodLabel?: string;
|
|
2075
|
+
minPeriodLabel?: string;
|
|
2076
|
+
className?: string;
|
|
2077
|
+
}
|
|
2078
|
+
declare const HorizontalLegend: React__default.FC<HorizontalLegendProps>;
|
|
2079
|
+
|
|
2042
2080
|
interface UseChartHighlightsReturn {
|
|
2043
2081
|
highlightedSeries: Set<string>;
|
|
2044
2082
|
showOnlyHighlighted: boolean;
|
|
@@ -2121,6 +2159,18 @@ declare function useTimeSeriesRange({ dataLength, defaultStartIndex, defaultEndI
|
|
|
2121
2159
|
handleMouseDown: (e: React.MouseEvent | React.TouchEvent, type: "start" | "end" | "middle") => void;
|
|
2122
2160
|
};
|
|
2123
2161
|
|
|
2162
|
+
interface UseChartMinMaxProps {
|
|
2163
|
+
processedData: ChartData$3[];
|
|
2164
|
+
orderBy?: string;
|
|
2165
|
+
xAxisDataKey: string;
|
|
2166
|
+
categoryFormatter?: (value: string) => string;
|
|
2167
|
+
}
|
|
2168
|
+
interface ChartMinMaxResult {
|
|
2169
|
+
maxPeriodLabel: string;
|
|
2170
|
+
minPeriodLabel: string;
|
|
2171
|
+
}
|
|
2172
|
+
declare const useChartMinMax: ({ processedData, orderBy, xAxisDataKey, categoryFormatter, }: UseChartMinMaxProps) => ChartMinMaxResult;
|
|
2173
|
+
|
|
2124
2174
|
interface NoDataProps {
|
|
2125
2175
|
paddingLeft?: number;
|
|
2126
2176
|
height?: number | string;
|
|
@@ -2181,4 +2231,4 @@ declare const useDrag: (options?: UseDragOptions) => {
|
|
|
2181
2231
|
isDragging: boolean;
|
|
2182
2232
|
};
|
|
2183
2233
|
|
|
2184
|
-
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, 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, 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, ITEM_HEIGHT, type IconProps, InputBase, type InputBaseProps, InputOTPBase, InputOTPGroupBase, InputOTPSeparatorBase, InputOTPSlotBase, LabelBase, Leaderboard, type LeaderboardItem, type LeaderboardProps, type LegendItem, LikeButton, 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, NumericInput, 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, SelectEmpty, 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, VISIBLE_ITEMS, type ValueFormatter, ViewButton, VisibilityButton, WeekCellsHeight, WeekCellsHeightAgenda, WeekView, WeekViewAgenda, type XAxisConfig$1 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, getItems, 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 };
|
|
2234
|
+
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, 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, 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, HorizontalLegend, HoverCardBase, HoverCardContentBase, HoverCardTriggerBase, ITEM_HEIGHT, type IconProps, InputBase, type InputBaseProps, InputOTPBase, InputOTPGroupBase, InputOTPSeparatorBase, InputOTPSlotBase, LabelBase, Leaderboard, type LeaderboardItem, type LeaderboardProps, type LegendItem, LikeButton, 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, NumericInput, 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, SelectEmpty, 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, VISIBLE_ITEMS, type ValueFormatter, ViewButton, VisibilityButton, WeekCellsHeight, WeekCellsHeightAgenda, WeekView, WeekViewAgenda, type XAxisConfig$1 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, getItems, 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, useChartMinMax, useChartTooltips, useCurrentTimeIndicator, useCurrentTimeIndicatorAgenda, useDrag, useEventVisibility, useEventVisibilityAgenda, useIsMobile, useTheme, useTimeSeriesRange, type valueFormatter, visualForItem };
|