@mlw-packages/react-components 1.9.12 → 1.9.13
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.d.mts +4 -1
- package/dist/index.d.ts +4 -1
- package/dist/index.js +256 -217
- package/dist/index.mjs +256 -217
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1669,7 +1669,7 @@ interface ChartProps {
|
|
|
1669
1669
|
titlePosition?: "left" | "center" | "right";
|
|
1670
1670
|
showLabels?: boolean;
|
|
1671
1671
|
labelMap?: Record<string, string>;
|
|
1672
|
-
valueFormatter?: valueFormatter
|
|
1672
|
+
valueFormatter?: valueFormatter | Record<string, string>;
|
|
1673
1673
|
categoryFormatter?: (value: string | number) => string;
|
|
1674
1674
|
periodLabel?: string;
|
|
1675
1675
|
xAxisLabel?: string;
|
|
@@ -1931,6 +1931,7 @@ interface DraggableTooltipProps {
|
|
|
1931
1931
|
showOnlyHighlighted?: boolean;
|
|
1932
1932
|
valueFormatter?: valueFormatter;
|
|
1933
1933
|
categoryFormatter?: (value: string | number) => string;
|
|
1934
|
+
seriesTypeMap?: Record<string, string>;
|
|
1934
1935
|
}
|
|
1935
1936
|
declare const DraggableTooltip: React__default.NamedExoticComponent<DraggableTooltipProps>;
|
|
1936
1937
|
|
|
@@ -1951,6 +1952,7 @@ interface Props$3 {
|
|
|
1951
1952
|
categoryFormatter?: (value: string | number) => string;
|
|
1952
1953
|
yAxisMap?: Record<string, "left" | "right">;
|
|
1953
1954
|
isBiaxial?: boolean;
|
|
1955
|
+
seriesTypeMap?: Record<string, string>;
|
|
1954
1956
|
}
|
|
1955
1957
|
declare const RechartTooltipWithTotal: React__default.FC<Props$3>;
|
|
1956
1958
|
|
|
@@ -1970,6 +1972,7 @@ interface Props$2 {
|
|
|
1970
1972
|
categoryFormatter?: (value: string | number) => string;
|
|
1971
1973
|
yAxisMap?: Record<string, "left" | "right">;
|
|
1972
1974
|
isBiaxial?: boolean;
|
|
1975
|
+
seriesTypeMap?: Record<string, string>;
|
|
1973
1976
|
}
|
|
1974
1977
|
declare const TooltipSimple: React__default.FC<Props$2>;
|
|
1975
1978
|
|
package/dist/index.d.ts
CHANGED
|
@@ -1669,7 +1669,7 @@ interface ChartProps {
|
|
|
1669
1669
|
titlePosition?: "left" | "center" | "right";
|
|
1670
1670
|
showLabels?: boolean;
|
|
1671
1671
|
labelMap?: Record<string, string>;
|
|
1672
|
-
valueFormatter?: valueFormatter
|
|
1672
|
+
valueFormatter?: valueFormatter | Record<string, string>;
|
|
1673
1673
|
categoryFormatter?: (value: string | number) => string;
|
|
1674
1674
|
periodLabel?: string;
|
|
1675
1675
|
xAxisLabel?: string;
|
|
@@ -1931,6 +1931,7 @@ interface DraggableTooltipProps {
|
|
|
1931
1931
|
showOnlyHighlighted?: boolean;
|
|
1932
1932
|
valueFormatter?: valueFormatter;
|
|
1933
1933
|
categoryFormatter?: (value: string | number) => string;
|
|
1934
|
+
seriesTypeMap?: Record<string, string>;
|
|
1934
1935
|
}
|
|
1935
1936
|
declare const DraggableTooltip: React__default.NamedExoticComponent<DraggableTooltipProps>;
|
|
1936
1937
|
|
|
@@ -1951,6 +1952,7 @@ interface Props$3 {
|
|
|
1951
1952
|
categoryFormatter?: (value: string | number) => string;
|
|
1952
1953
|
yAxisMap?: Record<string, "left" | "right">;
|
|
1953
1954
|
isBiaxial?: boolean;
|
|
1955
|
+
seriesTypeMap?: Record<string, string>;
|
|
1954
1956
|
}
|
|
1955
1957
|
declare const RechartTooltipWithTotal: React__default.FC<Props$3>;
|
|
1956
1958
|
|
|
@@ -1970,6 +1972,7 @@ interface Props$2 {
|
|
|
1970
1972
|
categoryFormatter?: (value: string | number) => string;
|
|
1971
1973
|
yAxisMap?: Record<string, "left" | "right">;
|
|
1972
1974
|
isBiaxial?: boolean;
|
|
1975
|
+
seriesTypeMap?: Record<string, string>;
|
|
1973
1976
|
}
|
|
1974
1977
|
declare const TooltipSimple: React__default.FC<Props$2>;
|
|
1975
1978
|
|