@mui/x-charts 8.0.0-alpha.8 → 8.0.0-alpha.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/BarChart/BarChart.js +1 -1
- package/BarChart/plugin.js +2 -0
- package/CHANGELOG.md +436 -3
- package/ChartContainer/ChartContainer.d.ts +2 -2
- package/ChartContainer/ChartContainer.js +2 -2
- package/ChartContainer/useChartContainerProps.d.ts +1 -1
- package/{context/ChartDataProvider → ChartDataProvider}/ChartDataProvider.d.ts +7 -7
- package/{context/ChartDataProvider → ChartDataProvider}/ChartDataProvider.js +4 -4
- package/ChartDataProvider/package.json +6 -0
- package/ChartDataProvider/useChartDataProviderProps.d.ts +13 -0
- package/ChartsSurface/ChartsSurface.d.ts +1 -1
- package/ChartsSurface/ChartsSurface.js +1 -1
- package/ChartsTooltip/utils.js +2 -0
- package/Gauge/GaugeProvider.js +2 -0
- package/LineChart/AreaPlot.js +43 -10
- package/LineChart/CircleMarkElement.d.ts +0 -4
- package/LineChart/CircleMarkElement.js +2 -7
- package/LineChart/LineChart.d.ts +0 -4
- package/LineChart/LineChart.js +1 -5
- package/LineChart/LineHighlightElement.d.ts +5 -1
- package/LineChart/LineHighlightElement.js +29 -9
- package/LineChart/LineHighlightPlot.js +4 -2
- package/LineChart/LinePlot.js +43 -9
- package/LineChart/MarkPlot.d.ts +0 -6
- package/LineChart/MarkPlot.js +6 -12
- package/LineChart/plugin.js +2 -0
- package/LineChart/useLineChartProps.js +3 -5
- package/PieChart/PieChart.js +1 -1
- package/PieChart/plugin.js +3 -1
- package/ScatterChart/ScatterChart.js +1 -1
- package/ScatterChart/plugin.js +2 -0
- package/context/AnimationProvider/AnimationProvider.js +1 -1
- package/context/InteractionSelectors.d.ts +11 -11
- package/context/index.d.ts +0 -2
- package/context/index.js +1 -2
- package/hooks/useLegend.js +8 -13
- package/index.d.ts +1 -0
- package/index.js +3 -2
- package/internals/defaultizeColor.d.ts +2 -0
- package/internals/index.d.ts +1 -2
- package/internals/index.js +1 -2
- package/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.selectors.d.ts +5 -5
- package/internals/plugins/corePlugins/useChartId/useChartId.selectors.d.ts +1 -1
- package/internals/plugins/corePlugins/useChartSeries/useChartSeries.selectors.d.ts +2 -2
- package/internals/plugins/featurePlugins/useChartCartesianAxis/index.d.ts +1 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/index.js +1 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.selectors.d.ts +90 -126
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.selectors.js +3 -1
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.types.d.ts +0 -1
- package/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.selectors.d.ts +11 -11
- package/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.selectors.d.ts +1 -1
- package/internals/plugins/models/seriesConfig/seriesConfig.types.d.ts +2 -1
- package/models/seriesType/line.d.ts +11 -0
- package/modern/BarChart/BarChart.js +1 -1
- package/modern/BarChart/plugin.js +2 -0
- package/modern/ChartContainer/ChartContainer.js +2 -2
- package/modern/{context/ChartDataProvider → ChartDataProvider}/ChartDataProvider.js +4 -4
- package/modern/ChartsSurface/ChartsSurface.js +1 -1
- package/modern/ChartsTooltip/utils.js +2 -0
- package/modern/Gauge/GaugeProvider.js +2 -0
- package/modern/LineChart/AreaPlot.js +43 -10
- package/modern/LineChart/CircleMarkElement.js +2 -7
- package/modern/LineChart/LineChart.js +1 -5
- package/modern/LineChart/LineHighlightElement.js +29 -9
- package/modern/LineChart/LineHighlightPlot.js +4 -2
- package/modern/LineChart/LinePlot.js +43 -9
- package/modern/LineChart/MarkPlot.js +6 -12
- package/modern/LineChart/plugin.js +2 -0
- package/modern/LineChart/useLineChartProps.js +3 -5
- package/modern/PieChart/PieChart.js +1 -1
- package/modern/PieChart/plugin.js +3 -1
- package/modern/ScatterChart/ScatterChart.js +1 -1
- package/modern/ScatterChart/plugin.js +2 -0
- package/modern/context/AnimationProvider/AnimationProvider.js +1 -1
- package/modern/context/index.js +1 -2
- package/modern/hooks/useLegend.js +8 -13
- package/modern/index.js +3 -2
- package/modern/internals/index.js +1 -2
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/index.js +1 -0
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.selectors.js +3 -1
- package/node/BarChart/BarChart.js +2 -2
- package/node/BarChart/plugin.js +2 -0
- package/node/ChartContainer/ChartContainer.js +2 -2
- package/node/{context/ChartDataProvider → ChartDataProvider}/ChartDataProvider.js +4 -4
- package/node/ChartsSurface/ChartsSurface.js +1 -1
- package/node/ChartsTooltip/utils.js +1 -0
- package/node/Gauge/GaugeProvider.js +2 -2
- package/node/LineChart/AreaPlot.js +43 -10
- package/node/LineChart/CircleMarkElement.js +2 -7
- package/node/LineChart/LineChart.js +2 -6
- package/node/LineChart/LineHighlightElement.js +29 -9
- package/node/LineChart/LineHighlightPlot.js +4 -2
- package/node/LineChart/LinePlot.js +43 -9
- package/node/LineChart/MarkPlot.js +6 -12
- package/node/LineChart/plugin.js +2 -0
- package/node/LineChart/useLineChartProps.js +3 -5
- package/node/PieChart/PieChart.js +2 -2
- package/node/PieChart/plugin.js +3 -1
- package/node/ScatterChart/ScatterChart.js +2 -2
- package/node/ScatterChart/plugin.js +2 -0
- package/node/context/AnimationProvider/AnimationProvider.js +1 -1
- package/node/context/index.js +1 -12
- package/node/hooks/useLegend.js +8 -14
- package/node/index.js +12 -1
- package/node/internals/index.js +1 -13
- package/node/internals/plugins/featurePlugins/useChartCartesianAxis/index.js +12 -0
- package/node/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.selectors.js +3 -1
- package/package.json +3 -3
- package/context/ChartDataProvider/useChartDataProviderProps.d.ts +0 -13
- /package/{context/ChartDataProvider → ChartDataProvider}/index.d.ts +0 -0
- /package/{context/ChartDataProvider → ChartDataProvider}/index.js +0 -0
- /package/{context/ChartDataProvider → ChartDataProvider}/useChartDataProviderProps.js +0 -0
- /package/modern/{context/ChartDataProvider → ChartDataProvider}/index.js +0 -0
- /package/modern/{context/ChartDataProvider → ChartDataProvider}/useChartDataProviderProps.js +0 -0
- /package/node/{context/ChartDataProvider → ChartDataProvider}/index.js +0 -0
- /package/node/{context/ChartDataProvider → ChartDataProvider}/useChartDataProviderProps.js +0 -0
package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.selectors.d.ts
CHANGED
|
@@ -36,8 +36,8 @@ export declare const selectorChartRawXAxis: ((state: import("../../corePlugins/u
|
|
|
36
36
|
dependencyRecomputations: () => number;
|
|
37
37
|
resetDependencyRecomputations: () => void;
|
|
38
38
|
} & {
|
|
39
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
40
39
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
40
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
41
41
|
};
|
|
42
42
|
export declare const selectorChartRawYAxis: ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("./useChartCartesianAxis.types").UseChartCartesianAxisState & Partial<{}> & {
|
|
43
43
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
@@ -68,8 +68,8 @@ export declare const selectorChartRawYAxis: ((state: import("../../corePlugins/u
|
|
|
68
68
|
dependencyRecomputations: () => number;
|
|
69
69
|
resetDependencyRecomputations: () => void;
|
|
70
70
|
} & {
|
|
71
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
72
71
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
72
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
73
73
|
};
|
|
74
74
|
/**
|
|
75
75
|
* The only interesting selectors that merge axis data and zoom if provided.
|
|
@@ -91,7 +91,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
91
91
|
height: number;
|
|
92
92
|
top: number;
|
|
93
93
|
bottom: number;
|
|
94
|
-
}, resultFuncArgs_2: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>, resultFuncArgs_3: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>, resultFuncArgs_4: Map<AxisId, ZoomData> | undefined, resultFuncArgs_5:
|
|
94
|
+
}, resultFuncArgs_2: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>, resultFuncArgs_3: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>, resultFuncArgs_4: Map<AxisId, ZoomData> | undefined, resultFuncArgs_5: undefined, resultFuncArgs_6: import("./zoom.types").GetZoomAxisFilters | undefined) => {
|
|
95
95
|
axis: import("./useChartCartesianAxis.types").DefaultizedAxisConfig<import("../../..").ChartsAxisProps>;
|
|
96
96
|
axisIds: string[];
|
|
97
97
|
};
|
|
@@ -102,7 +102,7 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
102
102
|
height: number;
|
|
103
103
|
top: number;
|
|
104
104
|
bottom: number;
|
|
105
|
-
}, resultFuncArgs_2: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>, resultFuncArgs_3: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>, resultFuncArgs_4: Map<AxisId, ZoomData> | undefined, resultFuncArgs_5:
|
|
105
|
+
}, resultFuncArgs_2: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>, resultFuncArgs_3: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>, resultFuncArgs_4: Map<AxisId, ZoomData> | undefined, resultFuncArgs_5: undefined, resultFuncArgs_6: import("./zoom.types").GetZoomAxisFilters | undefined) => {
|
|
106
106
|
axis: import("./useChartCartesianAxis.types").DefaultizedAxisConfig<import("../../..").ChartsAxisProps>;
|
|
107
107
|
axisIds: string[];
|
|
108
108
|
}) & {
|
|
@@ -143,8 +143,8 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
143
143
|
dependencyRecomputations: () => number;
|
|
144
144
|
resetDependencyRecomputations: () => void;
|
|
145
145
|
} & {
|
|
146
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
147
146
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
147
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
148
148
|
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
|
|
149
149
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
150
150
|
}) => {
|
|
@@ -211,8 +211,8 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
211
211
|
dependencyRecomputations: () => number;
|
|
212
212
|
resetDependencyRecomputations: () => void;
|
|
213
213
|
} & {
|
|
214
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
215
214
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
215
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
216
216
|
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
|
|
217
217
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
218
218
|
}) => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>) & {
|
|
@@ -239,8 +239,8 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
239
239
|
dependencyRecomputations: () => number;
|
|
240
240
|
resetDependencyRecomputations: () => void;
|
|
241
241
|
} & {
|
|
242
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
243
242
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
243
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
244
244
|
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
|
|
245
245
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
246
246
|
}) => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>) & {
|
|
@@ -267,8 +267,8 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
267
267
|
dependencyRecomputations: () => number;
|
|
268
268
|
resetDependencyRecomputations: () => void;
|
|
269
269
|
} & {
|
|
270
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
271
270
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
271
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
272
272
|
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("./useChartCartesianAxis.types").UseChartCartesianAxisState & Partial<{}> & {
|
|
273
273
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
274
274
|
}) => Map<AxisId, ZoomData> | undefined) & {
|
|
@@ -277,12 +277,10 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
277
277
|
resetResultsCount: () => void;
|
|
278
278
|
} & {
|
|
279
279
|
resultFunc: (resultFuncArgs_0: {
|
|
280
|
-
optionsLookup: Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
|
|
281
280
|
isInteracting: boolean;
|
|
282
281
|
zoomData: ZoomData[];
|
|
283
282
|
} | undefined) => Map<AxisId, ZoomData> | undefined;
|
|
284
283
|
memoizedResultFunc: ((resultFuncArgs_0: {
|
|
285
|
-
optionsLookup: Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
|
|
286
284
|
isInteracting: boolean;
|
|
287
285
|
zoomData: ZoomData[];
|
|
288
286
|
} | undefined) => Map<AxisId, ZoomData> | undefined) & {
|
|
@@ -292,7 +290,6 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
292
290
|
};
|
|
293
291
|
lastResult: () => Map<AxisId, ZoomData> | undefined;
|
|
294
292
|
dependencies: [(state: ChartState<[UseChartCartesianAxisSignature]>) => {
|
|
295
|
-
optionsLookup: Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
|
|
296
293
|
isInteracting: boolean;
|
|
297
294
|
zoomData: ZoomData[];
|
|
298
295
|
} | undefined];
|
|
@@ -301,32 +298,29 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
301
298
|
dependencyRecomputations: () => number;
|
|
302
299
|
resetDependencyRecomputations: () => void;
|
|
303
300
|
} & {
|
|
304
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
305
301
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
302
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
306
303
|
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("./useChartCartesianAxis.types").UseChartCartesianAxisState & Partial<{}> & {
|
|
307
304
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
308
|
-
}) =>
|
|
305
|
+
}) => undefined) & {
|
|
309
306
|
clearCache: () => void;
|
|
310
307
|
resultsCount: () => number;
|
|
311
308
|
resetResultsCount: () => void;
|
|
312
309
|
} & {
|
|
313
310
|
resultFunc: (resultFuncArgs_0: {
|
|
314
|
-
optionsLookup: Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
|
|
315
311
|
isInteracting: boolean;
|
|
316
312
|
zoomData: ZoomData[];
|
|
317
|
-
} | undefined) =>
|
|
313
|
+
} | undefined) => undefined;
|
|
318
314
|
memoizedResultFunc: ((resultFuncArgs_0: {
|
|
319
|
-
optionsLookup: Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
|
|
320
315
|
isInteracting: boolean;
|
|
321
316
|
zoomData: ZoomData[];
|
|
322
|
-
} | undefined) =>
|
|
317
|
+
} | undefined) => undefined) & {
|
|
323
318
|
clearCache: () => void;
|
|
324
319
|
resultsCount: () => number;
|
|
325
320
|
resetResultsCount: () => void;
|
|
326
321
|
};
|
|
327
|
-
lastResult: () =>
|
|
322
|
+
lastResult: () => undefined;
|
|
328
323
|
dependencies: [(state: ChartState<[UseChartCartesianAxisSignature]>) => {
|
|
329
|
-
optionsLookup: Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
|
|
330
324
|
isInteracting: boolean;
|
|
331
325
|
zoomData: ZoomData[];
|
|
332
326
|
} | undefined];
|
|
@@ -335,8 +329,8 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
335
329
|
dependencyRecomputations: () => number;
|
|
336
330
|
resetDependencyRecomputations: () => void;
|
|
337
331
|
} & {
|
|
338
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
339
332
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
333
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
340
334
|
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("./useChartCartesianAxis.types").UseChartCartesianAxisState & Partial<{}> & {
|
|
341
335
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
342
336
|
}) => import("./zoom.types").GetZoomAxisFilters | undefined) & {
|
|
@@ -344,8 +338,8 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
344
338
|
resultsCount: () => number;
|
|
345
339
|
resetResultsCount: () => void;
|
|
346
340
|
} & {
|
|
347
|
-
resultFunc: (resultFuncArgs_0:
|
|
348
|
-
memoizedResultFunc: ((resultFuncArgs_0:
|
|
341
|
+
resultFunc: (resultFuncArgs_0: undefined, resultFuncArgs_1: undefined, resultFuncArgs_2: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[], resultFuncArgs_3: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[]) => import("./zoom.types").GetZoomAxisFilters | undefined;
|
|
342
|
+
memoizedResultFunc: ((resultFuncArgs_0: undefined, resultFuncArgs_1: undefined, resultFuncArgs_2: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[], resultFuncArgs_3: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[]) => import("./zoom.types").GetZoomAxisFilters | undefined) & {
|
|
349
343
|
clearCache: () => void;
|
|
350
344
|
resultsCount: () => number;
|
|
351
345
|
resetResultsCount: () => void;
|
|
@@ -353,18 +347,18 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
353
347
|
lastResult: () => import("./zoom.types").GetZoomAxisFilters | undefined;
|
|
354
348
|
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("./useChartCartesianAxis.types").UseChartCartesianAxisState & Partial<{}> & {
|
|
355
349
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
356
|
-
}) =>
|
|
350
|
+
}) => undefined) & {
|
|
357
351
|
clearCache: () => void;
|
|
358
352
|
resultsCount: () => number;
|
|
359
353
|
resetResultsCount: () => void;
|
|
360
354
|
} & {
|
|
361
|
-
resultFunc: (resultFuncArgs_0: Map<AxisId, ZoomData> | undefined, resultFuncArgs_1:
|
|
362
|
-
memoizedResultFunc: ((resultFuncArgs_0: Map<AxisId, ZoomData> | undefined, resultFuncArgs_1:
|
|
355
|
+
resultFunc: (resultFuncArgs_0: Map<AxisId, ZoomData> | undefined, resultFuncArgs_1: undefined, resultFuncArgs_2: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>, resultFuncArgs_3: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>) => undefined;
|
|
356
|
+
memoizedResultFunc: ((resultFuncArgs_0: Map<AxisId, ZoomData> | undefined, resultFuncArgs_1: undefined, resultFuncArgs_2: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>, resultFuncArgs_3: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>) => undefined) & {
|
|
363
357
|
clearCache: () => void;
|
|
364
358
|
resultsCount: () => number;
|
|
365
359
|
resetResultsCount: () => void;
|
|
366
360
|
};
|
|
367
|
-
lastResult: () =>
|
|
361
|
+
lastResult: () => undefined;
|
|
368
362
|
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("./useChartCartesianAxis.types").UseChartCartesianAxisState & Partial<{}> & {
|
|
369
363
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
370
364
|
}) => Map<AxisId, ZoomData> | undefined) & {
|
|
@@ -373,12 +367,10 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
373
367
|
resetResultsCount: () => void;
|
|
374
368
|
} & {
|
|
375
369
|
resultFunc: (resultFuncArgs_0: {
|
|
376
|
-
optionsLookup: Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
|
|
377
370
|
isInteracting: boolean;
|
|
378
371
|
zoomData: ZoomData[];
|
|
379
372
|
} | undefined) => Map<AxisId, ZoomData> | undefined;
|
|
380
373
|
memoizedResultFunc: ((resultFuncArgs_0: {
|
|
381
|
-
optionsLookup: Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
|
|
382
374
|
isInteracting: boolean;
|
|
383
375
|
zoomData: ZoomData[];
|
|
384
376
|
} | undefined) => Map<AxisId, ZoomData> | undefined) & {
|
|
@@ -388,7 +380,6 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
388
380
|
};
|
|
389
381
|
lastResult: () => Map<AxisId, ZoomData> | undefined;
|
|
390
382
|
dependencies: [(state: ChartState<[UseChartCartesianAxisSignature]>) => {
|
|
391
|
-
optionsLookup: Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
|
|
392
383
|
isInteracting: boolean;
|
|
393
384
|
zoomData: ZoomData[];
|
|
394
385
|
} | undefined];
|
|
@@ -397,32 +388,29 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
397
388
|
dependencyRecomputations: () => number;
|
|
398
389
|
resetDependencyRecomputations: () => void;
|
|
399
390
|
} & {
|
|
400
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
401
391
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
392
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
402
393
|
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("./useChartCartesianAxis.types").UseChartCartesianAxisState & Partial<{}> & {
|
|
403
394
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
404
|
-
}) =>
|
|
395
|
+
}) => undefined) & {
|
|
405
396
|
clearCache: () => void;
|
|
406
397
|
resultsCount: () => number;
|
|
407
398
|
resetResultsCount: () => void;
|
|
408
399
|
} & {
|
|
409
400
|
resultFunc: (resultFuncArgs_0: {
|
|
410
|
-
optionsLookup: Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
|
|
411
401
|
isInteracting: boolean;
|
|
412
402
|
zoomData: ZoomData[];
|
|
413
|
-
} | undefined) =>
|
|
403
|
+
} | undefined) => undefined;
|
|
414
404
|
memoizedResultFunc: ((resultFuncArgs_0: {
|
|
415
|
-
optionsLookup: Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
|
|
416
405
|
isInteracting: boolean;
|
|
417
406
|
zoomData: ZoomData[];
|
|
418
|
-
} | undefined) =>
|
|
407
|
+
} | undefined) => undefined) & {
|
|
419
408
|
clearCache: () => void;
|
|
420
409
|
resultsCount: () => number;
|
|
421
410
|
resetResultsCount: () => void;
|
|
422
411
|
};
|
|
423
|
-
lastResult: () =>
|
|
412
|
+
lastResult: () => undefined;
|
|
424
413
|
dependencies: [(state: ChartState<[UseChartCartesianAxisSignature]>) => {
|
|
425
|
-
optionsLookup: Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
|
|
426
414
|
isInteracting: boolean;
|
|
427
415
|
zoomData: ZoomData[];
|
|
428
416
|
} | undefined];
|
|
@@ -431,8 +419,8 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
431
419
|
dependencyRecomputations: () => number;
|
|
432
420
|
resetDependencyRecomputations: () => void;
|
|
433
421
|
} & {
|
|
434
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
435
422
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
423
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
436
424
|
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
|
|
437
425
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
438
426
|
}) => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>) & {
|
|
@@ -459,8 +447,8 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
459
447
|
dependencyRecomputations: () => number;
|
|
460
448
|
resetDependencyRecomputations: () => void;
|
|
461
449
|
} & {
|
|
462
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
463
450
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
451
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
464
452
|
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
|
|
465
453
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
466
454
|
}) => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>) & {
|
|
@@ -487,30 +475,30 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
487
475
|
dependencyRecomputations: () => number;
|
|
488
476
|
resetDependencyRecomputations: () => void;
|
|
489
477
|
} & {
|
|
490
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
491
478
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
479
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
492
480
|
}];
|
|
493
481
|
recomputations: () => number;
|
|
494
482
|
resetRecomputations: () => void;
|
|
495
483
|
dependencyRecomputations: () => number;
|
|
496
484
|
resetDependencyRecomputations: () => void;
|
|
497
485
|
} & {
|
|
498
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
499
486
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
487
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
500
488
|
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("./useChartCartesianAxis.types").UseChartCartesianAxisState & Partial<{}> & {
|
|
501
489
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
502
|
-
}) =>
|
|
490
|
+
}) => undefined) & {
|
|
503
491
|
clearCache: () => void;
|
|
504
492
|
resultsCount: () => number;
|
|
505
493
|
resetResultsCount: () => void;
|
|
506
494
|
} & {
|
|
507
|
-
resultFunc: (resultFuncArgs_0: Map<AxisId, ZoomData> | undefined, resultFuncArgs_1:
|
|
508
|
-
memoizedResultFunc: ((resultFuncArgs_0: Map<AxisId, ZoomData> | undefined, resultFuncArgs_1:
|
|
495
|
+
resultFunc: (resultFuncArgs_0: Map<AxisId, ZoomData> | undefined, resultFuncArgs_1: undefined, resultFuncArgs_2: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>, resultFuncArgs_3: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>) => undefined;
|
|
496
|
+
memoizedResultFunc: ((resultFuncArgs_0: Map<AxisId, ZoomData> | undefined, resultFuncArgs_1: undefined, resultFuncArgs_2: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>, resultFuncArgs_3: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>) => undefined) & {
|
|
509
497
|
clearCache: () => void;
|
|
510
498
|
resultsCount: () => number;
|
|
511
499
|
resetResultsCount: () => void;
|
|
512
500
|
};
|
|
513
|
-
lastResult: () =>
|
|
501
|
+
lastResult: () => undefined;
|
|
514
502
|
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("./useChartCartesianAxis.types").UseChartCartesianAxisState & Partial<{}> & {
|
|
515
503
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
516
504
|
}) => Map<AxisId, ZoomData> | undefined) & {
|
|
@@ -519,12 +507,10 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
519
507
|
resetResultsCount: () => void;
|
|
520
508
|
} & {
|
|
521
509
|
resultFunc: (resultFuncArgs_0: {
|
|
522
|
-
optionsLookup: Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
|
|
523
510
|
isInteracting: boolean;
|
|
524
511
|
zoomData: ZoomData[];
|
|
525
512
|
} | undefined) => Map<AxisId, ZoomData> | undefined;
|
|
526
513
|
memoizedResultFunc: ((resultFuncArgs_0: {
|
|
527
|
-
optionsLookup: Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
|
|
528
514
|
isInteracting: boolean;
|
|
529
515
|
zoomData: ZoomData[];
|
|
530
516
|
} | undefined) => Map<AxisId, ZoomData> | undefined) & {
|
|
@@ -534,7 +520,6 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
534
520
|
};
|
|
535
521
|
lastResult: () => Map<AxisId, ZoomData> | undefined;
|
|
536
522
|
dependencies: [(state: ChartState<[UseChartCartesianAxisSignature]>) => {
|
|
537
|
-
optionsLookup: Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
|
|
538
523
|
isInteracting: boolean;
|
|
539
524
|
zoomData: ZoomData[];
|
|
540
525
|
} | undefined];
|
|
@@ -543,32 +528,29 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
543
528
|
dependencyRecomputations: () => number;
|
|
544
529
|
resetDependencyRecomputations: () => void;
|
|
545
530
|
} & {
|
|
546
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
547
531
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
532
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
548
533
|
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("./useChartCartesianAxis.types").UseChartCartesianAxisState & Partial<{}> & {
|
|
549
534
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
550
|
-
}) =>
|
|
535
|
+
}) => undefined) & {
|
|
551
536
|
clearCache: () => void;
|
|
552
537
|
resultsCount: () => number;
|
|
553
538
|
resetResultsCount: () => void;
|
|
554
539
|
} & {
|
|
555
540
|
resultFunc: (resultFuncArgs_0: {
|
|
556
|
-
optionsLookup: Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
|
|
557
541
|
isInteracting: boolean;
|
|
558
542
|
zoomData: ZoomData[];
|
|
559
|
-
} | undefined) =>
|
|
543
|
+
} | undefined) => undefined;
|
|
560
544
|
memoizedResultFunc: ((resultFuncArgs_0: {
|
|
561
|
-
optionsLookup: Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
|
|
562
545
|
isInteracting: boolean;
|
|
563
546
|
zoomData: ZoomData[];
|
|
564
|
-
} | undefined) =>
|
|
547
|
+
} | undefined) => undefined) & {
|
|
565
548
|
clearCache: () => void;
|
|
566
549
|
resultsCount: () => number;
|
|
567
550
|
resetResultsCount: () => void;
|
|
568
551
|
};
|
|
569
|
-
lastResult: () =>
|
|
552
|
+
lastResult: () => undefined;
|
|
570
553
|
dependencies: [(state: ChartState<[UseChartCartesianAxisSignature]>) => {
|
|
571
|
-
optionsLookup: Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
|
|
572
554
|
isInteracting: boolean;
|
|
573
555
|
zoomData: ZoomData[];
|
|
574
556
|
} | undefined];
|
|
@@ -577,8 +559,8 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
577
559
|
dependencyRecomputations: () => number;
|
|
578
560
|
resetDependencyRecomputations: () => void;
|
|
579
561
|
} & {
|
|
580
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
581
562
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
563
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
582
564
|
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
|
|
583
565
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
584
566
|
}) => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>) & {
|
|
@@ -605,8 +587,8 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
605
587
|
dependencyRecomputations: () => number;
|
|
606
588
|
resetDependencyRecomputations: () => void;
|
|
607
589
|
} & {
|
|
608
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
609
590
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
591
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
610
592
|
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
|
|
611
593
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
612
594
|
}) => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>) & {
|
|
@@ -633,16 +615,16 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
633
615
|
dependencyRecomputations: () => number;
|
|
634
616
|
resetDependencyRecomputations: () => void;
|
|
635
617
|
} & {
|
|
636
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
637
618
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
619
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
638
620
|
}];
|
|
639
621
|
recomputations: () => number;
|
|
640
622
|
resetRecomputations: () => void;
|
|
641
623
|
dependencyRecomputations: () => number;
|
|
642
624
|
resetDependencyRecomputations: () => void;
|
|
643
625
|
} & {
|
|
644
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
645
626
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
627
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
646
628
|
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("./useChartCartesianAxis.types").UseChartCartesianAxisState & Partial<{}> & {
|
|
647
629
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
648
630
|
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[]) & {
|
|
@@ -672,8 +654,8 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
672
654
|
dependencyRecomputations: () => number;
|
|
673
655
|
resetDependencyRecomputations: () => void;
|
|
674
656
|
} & {
|
|
675
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
676
657
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
658
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
677
659
|
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("./useChartCartesianAxis.types").UseChartCartesianAxisState & Partial<{}> & {
|
|
678
660
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
679
661
|
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[]) & {
|
|
@@ -703,24 +685,24 @@ export declare const selectorChartXAxis: ((state: import("../../corePlugins/useC
|
|
|
703
685
|
dependencyRecomputations: () => number;
|
|
704
686
|
resetDependencyRecomputations: () => void;
|
|
705
687
|
} & {
|
|
706
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
707
688
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
689
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
708
690
|
}];
|
|
709
691
|
recomputations: () => number;
|
|
710
692
|
resetRecomputations: () => void;
|
|
711
693
|
dependencyRecomputations: () => number;
|
|
712
694
|
resetDependencyRecomputations: () => void;
|
|
713
695
|
} & {
|
|
714
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
715
696
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
697
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
716
698
|
}];
|
|
717
699
|
recomputations: () => number;
|
|
718
700
|
resetRecomputations: () => void;
|
|
719
701
|
dependencyRecomputations: () => number;
|
|
720
702
|
resetDependencyRecomputations: () => void;
|
|
721
703
|
} & {
|
|
722
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
723
704
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
705
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
724
706
|
};
|
|
725
707
|
export declare const selectorChartYAxis: ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("./useChartCartesianAxis.types").UseChartCartesianAxisState & Partial<{}> & {
|
|
726
708
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
@@ -739,7 +721,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
739
721
|
height: number;
|
|
740
722
|
top: number;
|
|
741
723
|
bottom: number;
|
|
742
|
-
}, resultFuncArgs_2: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>, resultFuncArgs_3: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>, resultFuncArgs_4: Map<AxisId, ZoomData> | undefined, resultFuncArgs_5:
|
|
724
|
+
}, resultFuncArgs_2: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>, resultFuncArgs_3: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>, resultFuncArgs_4: Map<AxisId, ZoomData> | undefined, resultFuncArgs_5: undefined, resultFuncArgs_6: import("./zoom.types").GetZoomAxisFilters | undefined) => {
|
|
743
725
|
axis: import("./useChartCartesianAxis.types").DefaultizedAxisConfig<import("../../..").ChartsYAxisProps>;
|
|
744
726
|
axisIds: string[];
|
|
745
727
|
};
|
|
@@ -750,7 +732,7 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
750
732
|
height: number;
|
|
751
733
|
top: number;
|
|
752
734
|
bottom: number;
|
|
753
|
-
}, resultFuncArgs_2: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>, resultFuncArgs_3: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>, resultFuncArgs_4: Map<AxisId, ZoomData> | undefined, resultFuncArgs_5:
|
|
735
|
+
}, resultFuncArgs_2: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>, resultFuncArgs_3: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>, resultFuncArgs_4: Map<AxisId, ZoomData> | undefined, resultFuncArgs_5: undefined, resultFuncArgs_6: import("./zoom.types").GetZoomAxisFilters | undefined) => {
|
|
754
736
|
axis: import("./useChartCartesianAxis.types").DefaultizedAxisConfig<import("../../..").ChartsYAxisProps>;
|
|
755
737
|
axisIds: string[];
|
|
756
738
|
}) & {
|
|
@@ -791,8 +773,8 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
791
773
|
dependencyRecomputations: () => number;
|
|
792
774
|
resetDependencyRecomputations: () => void;
|
|
793
775
|
} & {
|
|
794
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
795
776
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
777
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
796
778
|
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
|
|
797
779
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
798
780
|
}) => {
|
|
@@ -859,8 +841,8 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
859
841
|
dependencyRecomputations: () => number;
|
|
860
842
|
resetDependencyRecomputations: () => void;
|
|
861
843
|
} & {
|
|
862
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
863
844
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
845
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
864
846
|
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
|
|
865
847
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
866
848
|
}) => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>) & {
|
|
@@ -887,8 +869,8 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
887
869
|
dependencyRecomputations: () => number;
|
|
888
870
|
resetDependencyRecomputations: () => void;
|
|
889
871
|
} & {
|
|
890
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
891
872
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
873
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
892
874
|
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
|
|
893
875
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
894
876
|
}) => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>) & {
|
|
@@ -915,8 +897,8 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
915
897
|
dependencyRecomputations: () => number;
|
|
916
898
|
resetDependencyRecomputations: () => void;
|
|
917
899
|
} & {
|
|
918
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
919
900
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
901
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
920
902
|
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("./useChartCartesianAxis.types").UseChartCartesianAxisState & Partial<{}> & {
|
|
921
903
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
922
904
|
}) => Map<AxisId, ZoomData> | undefined) & {
|
|
@@ -925,12 +907,10 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
925
907
|
resetResultsCount: () => void;
|
|
926
908
|
} & {
|
|
927
909
|
resultFunc: (resultFuncArgs_0: {
|
|
928
|
-
optionsLookup: Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
|
|
929
910
|
isInteracting: boolean;
|
|
930
911
|
zoomData: ZoomData[];
|
|
931
912
|
} | undefined) => Map<AxisId, ZoomData> | undefined;
|
|
932
913
|
memoizedResultFunc: ((resultFuncArgs_0: {
|
|
933
|
-
optionsLookup: Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
|
|
934
914
|
isInteracting: boolean;
|
|
935
915
|
zoomData: ZoomData[];
|
|
936
916
|
} | undefined) => Map<AxisId, ZoomData> | undefined) & {
|
|
@@ -940,7 +920,6 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
940
920
|
};
|
|
941
921
|
lastResult: () => Map<AxisId, ZoomData> | undefined;
|
|
942
922
|
dependencies: [(state: ChartState<[UseChartCartesianAxisSignature]>) => {
|
|
943
|
-
optionsLookup: Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
|
|
944
923
|
isInteracting: boolean;
|
|
945
924
|
zoomData: ZoomData[];
|
|
946
925
|
} | undefined];
|
|
@@ -949,32 +928,29 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
949
928
|
dependencyRecomputations: () => number;
|
|
950
929
|
resetDependencyRecomputations: () => void;
|
|
951
930
|
} & {
|
|
952
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
953
931
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
932
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
954
933
|
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("./useChartCartesianAxis.types").UseChartCartesianAxisState & Partial<{}> & {
|
|
955
934
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
956
|
-
}) =>
|
|
935
|
+
}) => undefined) & {
|
|
957
936
|
clearCache: () => void;
|
|
958
937
|
resultsCount: () => number;
|
|
959
938
|
resetResultsCount: () => void;
|
|
960
939
|
} & {
|
|
961
940
|
resultFunc: (resultFuncArgs_0: {
|
|
962
|
-
optionsLookup: Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
|
|
963
941
|
isInteracting: boolean;
|
|
964
942
|
zoomData: ZoomData[];
|
|
965
|
-
} | undefined) =>
|
|
943
|
+
} | undefined) => undefined;
|
|
966
944
|
memoizedResultFunc: ((resultFuncArgs_0: {
|
|
967
|
-
optionsLookup: Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
|
|
968
945
|
isInteracting: boolean;
|
|
969
946
|
zoomData: ZoomData[];
|
|
970
|
-
} | undefined) =>
|
|
947
|
+
} | undefined) => undefined) & {
|
|
971
948
|
clearCache: () => void;
|
|
972
949
|
resultsCount: () => number;
|
|
973
950
|
resetResultsCount: () => void;
|
|
974
951
|
};
|
|
975
|
-
lastResult: () =>
|
|
952
|
+
lastResult: () => undefined;
|
|
976
953
|
dependencies: [(state: ChartState<[UseChartCartesianAxisSignature]>) => {
|
|
977
|
-
optionsLookup: Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
|
|
978
954
|
isInteracting: boolean;
|
|
979
955
|
zoomData: ZoomData[];
|
|
980
956
|
} | undefined];
|
|
@@ -983,8 +959,8 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
983
959
|
dependencyRecomputations: () => number;
|
|
984
960
|
resetDependencyRecomputations: () => void;
|
|
985
961
|
} & {
|
|
986
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
987
962
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
963
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
988
964
|
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("./useChartCartesianAxis.types").UseChartCartesianAxisState & Partial<{}> & {
|
|
989
965
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
990
966
|
}) => import("./zoom.types").GetZoomAxisFilters | undefined) & {
|
|
@@ -992,8 +968,8 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
992
968
|
resultsCount: () => number;
|
|
993
969
|
resetResultsCount: () => void;
|
|
994
970
|
} & {
|
|
995
|
-
resultFunc: (resultFuncArgs_0:
|
|
996
|
-
memoizedResultFunc: ((resultFuncArgs_0:
|
|
971
|
+
resultFunc: (resultFuncArgs_0: undefined, resultFuncArgs_1: undefined, resultFuncArgs_2: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[], resultFuncArgs_3: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[]) => import("./zoom.types").GetZoomAxisFilters | undefined;
|
|
972
|
+
memoizedResultFunc: ((resultFuncArgs_0: undefined, resultFuncArgs_1: undefined, resultFuncArgs_2: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[], resultFuncArgs_3: import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[]) => import("./zoom.types").GetZoomAxisFilters | undefined) & {
|
|
997
973
|
clearCache: () => void;
|
|
998
974
|
resultsCount: () => number;
|
|
999
975
|
resetResultsCount: () => void;
|
|
@@ -1001,18 +977,18 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
1001
977
|
lastResult: () => import("./zoom.types").GetZoomAxisFilters | undefined;
|
|
1002
978
|
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("./useChartCartesianAxis.types").UseChartCartesianAxisState & Partial<{}> & {
|
|
1003
979
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1004
|
-
}) =>
|
|
980
|
+
}) => undefined) & {
|
|
1005
981
|
clearCache: () => void;
|
|
1006
982
|
resultsCount: () => number;
|
|
1007
983
|
resetResultsCount: () => void;
|
|
1008
984
|
} & {
|
|
1009
|
-
resultFunc: (resultFuncArgs_0: Map<AxisId, ZoomData> | undefined, resultFuncArgs_1:
|
|
1010
|
-
memoizedResultFunc: ((resultFuncArgs_0: Map<AxisId, ZoomData> | undefined, resultFuncArgs_1:
|
|
985
|
+
resultFunc: (resultFuncArgs_0: Map<AxisId, ZoomData> | undefined, resultFuncArgs_1: undefined, resultFuncArgs_2: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>, resultFuncArgs_3: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>) => undefined;
|
|
986
|
+
memoizedResultFunc: ((resultFuncArgs_0: Map<AxisId, ZoomData> | undefined, resultFuncArgs_1: undefined, resultFuncArgs_2: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>, resultFuncArgs_3: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>) => undefined) & {
|
|
1011
987
|
clearCache: () => void;
|
|
1012
988
|
resultsCount: () => number;
|
|
1013
989
|
resetResultsCount: () => void;
|
|
1014
990
|
};
|
|
1015
|
-
lastResult: () =>
|
|
991
|
+
lastResult: () => undefined;
|
|
1016
992
|
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("./useChartCartesianAxis.types").UseChartCartesianAxisState & Partial<{}> & {
|
|
1017
993
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1018
994
|
}) => Map<AxisId, ZoomData> | undefined) & {
|
|
@@ -1021,12 +997,10 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
1021
997
|
resetResultsCount: () => void;
|
|
1022
998
|
} & {
|
|
1023
999
|
resultFunc: (resultFuncArgs_0: {
|
|
1024
|
-
optionsLookup: Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
|
|
1025
1000
|
isInteracting: boolean;
|
|
1026
1001
|
zoomData: ZoomData[];
|
|
1027
1002
|
} | undefined) => Map<AxisId, ZoomData> | undefined;
|
|
1028
1003
|
memoizedResultFunc: ((resultFuncArgs_0: {
|
|
1029
|
-
optionsLookup: Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
|
|
1030
1004
|
isInteracting: boolean;
|
|
1031
1005
|
zoomData: ZoomData[];
|
|
1032
1006
|
} | undefined) => Map<AxisId, ZoomData> | undefined) & {
|
|
@@ -1036,7 +1010,6 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
1036
1010
|
};
|
|
1037
1011
|
lastResult: () => Map<AxisId, ZoomData> | undefined;
|
|
1038
1012
|
dependencies: [(state: ChartState<[UseChartCartesianAxisSignature]>) => {
|
|
1039
|
-
optionsLookup: Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
|
|
1040
1013
|
isInteracting: boolean;
|
|
1041
1014
|
zoomData: ZoomData[];
|
|
1042
1015
|
} | undefined];
|
|
@@ -1045,32 +1018,29 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
1045
1018
|
dependencyRecomputations: () => number;
|
|
1046
1019
|
resetDependencyRecomputations: () => void;
|
|
1047
1020
|
} & {
|
|
1048
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1049
1021
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
1022
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1050
1023
|
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("./useChartCartesianAxis.types").UseChartCartesianAxisState & Partial<{}> & {
|
|
1051
1024
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1052
|
-
}) =>
|
|
1025
|
+
}) => undefined) & {
|
|
1053
1026
|
clearCache: () => void;
|
|
1054
1027
|
resultsCount: () => number;
|
|
1055
1028
|
resetResultsCount: () => void;
|
|
1056
1029
|
} & {
|
|
1057
1030
|
resultFunc: (resultFuncArgs_0: {
|
|
1058
|
-
optionsLookup: Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
|
|
1059
1031
|
isInteracting: boolean;
|
|
1060
1032
|
zoomData: ZoomData[];
|
|
1061
|
-
} | undefined) =>
|
|
1033
|
+
} | undefined) => undefined;
|
|
1062
1034
|
memoizedResultFunc: ((resultFuncArgs_0: {
|
|
1063
|
-
optionsLookup: Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
|
|
1064
1035
|
isInteracting: boolean;
|
|
1065
1036
|
zoomData: ZoomData[];
|
|
1066
|
-
} | undefined) =>
|
|
1037
|
+
} | undefined) => undefined) & {
|
|
1067
1038
|
clearCache: () => void;
|
|
1068
1039
|
resultsCount: () => number;
|
|
1069
1040
|
resetResultsCount: () => void;
|
|
1070
1041
|
};
|
|
1071
|
-
lastResult: () =>
|
|
1042
|
+
lastResult: () => undefined;
|
|
1072
1043
|
dependencies: [(state: ChartState<[UseChartCartesianAxisSignature]>) => {
|
|
1073
|
-
optionsLookup: Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
|
|
1074
1044
|
isInteracting: boolean;
|
|
1075
1045
|
zoomData: ZoomData[];
|
|
1076
1046
|
} | undefined];
|
|
@@ -1079,8 +1049,8 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
1079
1049
|
dependencyRecomputations: () => number;
|
|
1080
1050
|
resetDependencyRecomputations: () => void;
|
|
1081
1051
|
} & {
|
|
1082
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1083
1052
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
1053
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1084
1054
|
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
|
|
1085
1055
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1086
1056
|
}) => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>) & {
|
|
@@ -1107,8 +1077,8 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
1107
1077
|
dependencyRecomputations: () => number;
|
|
1108
1078
|
resetDependencyRecomputations: () => void;
|
|
1109
1079
|
} & {
|
|
1110
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1111
1080
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
1081
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1112
1082
|
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
|
|
1113
1083
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1114
1084
|
}) => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>) & {
|
|
@@ -1135,30 +1105,30 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
1135
1105
|
dependencyRecomputations: () => number;
|
|
1136
1106
|
resetDependencyRecomputations: () => void;
|
|
1137
1107
|
} & {
|
|
1138
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1139
1108
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
1109
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1140
1110
|
}];
|
|
1141
1111
|
recomputations: () => number;
|
|
1142
1112
|
resetRecomputations: () => void;
|
|
1143
1113
|
dependencyRecomputations: () => number;
|
|
1144
1114
|
resetDependencyRecomputations: () => void;
|
|
1145
1115
|
} & {
|
|
1146
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1147
1116
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
1117
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1148
1118
|
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("./useChartCartesianAxis.types").UseChartCartesianAxisState & Partial<{}> & {
|
|
1149
1119
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1150
|
-
}) =>
|
|
1120
|
+
}) => undefined) & {
|
|
1151
1121
|
clearCache: () => void;
|
|
1152
1122
|
resultsCount: () => number;
|
|
1153
1123
|
resetResultsCount: () => void;
|
|
1154
1124
|
} & {
|
|
1155
|
-
resultFunc: (resultFuncArgs_0: Map<AxisId, ZoomData> | undefined, resultFuncArgs_1:
|
|
1156
|
-
memoizedResultFunc: ((resultFuncArgs_0: Map<AxisId, ZoomData> | undefined, resultFuncArgs_1:
|
|
1125
|
+
resultFunc: (resultFuncArgs_0: Map<AxisId, ZoomData> | undefined, resultFuncArgs_1: undefined, resultFuncArgs_2: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>, resultFuncArgs_3: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>) => undefined;
|
|
1126
|
+
memoizedResultFunc: ((resultFuncArgs_0: Map<AxisId, ZoomData> | undefined, resultFuncArgs_1: undefined, resultFuncArgs_2: import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>, resultFuncArgs_3: import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>) => undefined) & {
|
|
1157
1127
|
clearCache: () => void;
|
|
1158
1128
|
resultsCount: () => number;
|
|
1159
1129
|
resetResultsCount: () => void;
|
|
1160
1130
|
};
|
|
1161
|
-
lastResult: () =>
|
|
1131
|
+
lastResult: () => undefined;
|
|
1162
1132
|
dependencies: [((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("./useChartCartesianAxis.types").UseChartCartesianAxisState & Partial<{}> & {
|
|
1163
1133
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1164
1134
|
}) => Map<AxisId, ZoomData> | undefined) & {
|
|
@@ -1167,12 +1137,10 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
1167
1137
|
resetResultsCount: () => void;
|
|
1168
1138
|
} & {
|
|
1169
1139
|
resultFunc: (resultFuncArgs_0: {
|
|
1170
|
-
optionsLookup: Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
|
|
1171
1140
|
isInteracting: boolean;
|
|
1172
1141
|
zoomData: ZoomData[];
|
|
1173
1142
|
} | undefined) => Map<AxisId, ZoomData> | undefined;
|
|
1174
1143
|
memoizedResultFunc: ((resultFuncArgs_0: {
|
|
1175
|
-
optionsLookup: Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
|
|
1176
1144
|
isInteracting: boolean;
|
|
1177
1145
|
zoomData: ZoomData[];
|
|
1178
1146
|
} | undefined) => Map<AxisId, ZoomData> | undefined) & {
|
|
@@ -1182,7 +1150,6 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
1182
1150
|
};
|
|
1183
1151
|
lastResult: () => Map<AxisId, ZoomData> | undefined;
|
|
1184
1152
|
dependencies: [(state: ChartState<[UseChartCartesianAxisSignature]>) => {
|
|
1185
|
-
optionsLookup: Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
|
|
1186
1153
|
isInteracting: boolean;
|
|
1187
1154
|
zoomData: ZoomData[];
|
|
1188
1155
|
} | undefined];
|
|
@@ -1191,32 +1158,29 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
1191
1158
|
dependencyRecomputations: () => number;
|
|
1192
1159
|
resetDependencyRecomputations: () => void;
|
|
1193
1160
|
} & {
|
|
1194
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1195
1161
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
1162
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1196
1163
|
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("./useChartCartesianAxis.types").UseChartCartesianAxisState & Partial<{}> & {
|
|
1197
1164
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1198
|
-
}) =>
|
|
1165
|
+
}) => undefined) & {
|
|
1199
1166
|
clearCache: () => void;
|
|
1200
1167
|
resultsCount: () => number;
|
|
1201
1168
|
resetResultsCount: () => void;
|
|
1202
1169
|
} & {
|
|
1203
1170
|
resultFunc: (resultFuncArgs_0: {
|
|
1204
|
-
optionsLookup: Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
|
|
1205
1171
|
isInteracting: boolean;
|
|
1206
1172
|
zoomData: ZoomData[];
|
|
1207
|
-
} | undefined) =>
|
|
1173
|
+
} | undefined) => undefined;
|
|
1208
1174
|
memoizedResultFunc: ((resultFuncArgs_0: {
|
|
1209
|
-
optionsLookup: Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
|
|
1210
1175
|
isInteracting: boolean;
|
|
1211
1176
|
zoomData: ZoomData[];
|
|
1212
|
-
} | undefined) =>
|
|
1177
|
+
} | undefined) => undefined) & {
|
|
1213
1178
|
clearCache: () => void;
|
|
1214
1179
|
resultsCount: () => number;
|
|
1215
1180
|
resetResultsCount: () => void;
|
|
1216
1181
|
};
|
|
1217
|
-
lastResult: () =>
|
|
1182
|
+
lastResult: () => undefined;
|
|
1218
1183
|
dependencies: [(state: ChartState<[UseChartCartesianAxisSignature]>) => {
|
|
1219
|
-
optionsLookup: Record<AxisId, import("./useChartCartesianAxis.types").DefaultizedZoomOptions>;
|
|
1220
1184
|
isInteracting: boolean;
|
|
1221
1185
|
zoomData: ZoomData[];
|
|
1222
1186
|
} | undefined];
|
|
@@ -1225,8 +1189,8 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
1225
1189
|
dependencyRecomputations: () => number;
|
|
1226
1190
|
resetDependencyRecomputations: () => void;
|
|
1227
1191
|
} & {
|
|
1228
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1229
1192
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
1193
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1230
1194
|
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
|
|
1231
1195
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1232
1196
|
}) => import("../../models").ChartSeriesConfig<keyof import("../../..").ChartsSeriesConfig>) & {
|
|
@@ -1253,8 +1217,8 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
1253
1217
|
dependencyRecomputations: () => number;
|
|
1254
1218
|
resetDependencyRecomputations: () => void;
|
|
1255
1219
|
} & {
|
|
1256
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1257
1220
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
1221
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1258
1222
|
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & Partial<{}> & {
|
|
1259
1223
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1260
1224
|
}) => import("../../..").ProcessedSeries<keyof import("../../..").ChartsSeriesConfig>) & {
|
|
@@ -1281,16 +1245,16 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
1281
1245
|
dependencyRecomputations: () => number;
|
|
1282
1246
|
resetDependencyRecomputations: () => void;
|
|
1283
1247
|
} & {
|
|
1284
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1285
1248
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
1249
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1286
1250
|
}];
|
|
1287
1251
|
recomputations: () => number;
|
|
1288
1252
|
resetRecomputations: () => void;
|
|
1289
1253
|
dependencyRecomputations: () => number;
|
|
1290
1254
|
resetDependencyRecomputations: () => void;
|
|
1291
1255
|
} & {
|
|
1292
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1293
1256
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
1257
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1294
1258
|
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("./useChartCartesianAxis.types").UseChartCartesianAxisState & Partial<{}> & {
|
|
1295
1259
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1296
1260
|
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsXAxisProps>[]) & {
|
|
@@ -1320,8 +1284,8 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
1320
1284
|
dependencyRecomputations: () => number;
|
|
1321
1285
|
resetDependencyRecomputations: () => void;
|
|
1322
1286
|
} & {
|
|
1323
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1324
1287
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
1288
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1325
1289
|
}, ((state: import("../../corePlugins/useChartId/useChartId.types").UseChartIdState & import("../../corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("../../corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("../../..").ChartsSeriesConfig> & import("./useChartCartesianAxis.types").UseChartCartesianAxisState & Partial<{}> & {
|
|
1326
1290
|
cacheKey: import("../../models").ChartStateCacheKey;
|
|
1327
1291
|
}) => import("../../..").AxisConfig<keyof import("../../..").AxisScaleConfig, any, import("../../..").ChartsYAxisProps>[]) & {
|
|
@@ -1351,22 +1315,22 @@ export declare const selectorChartYAxis: ((state: import("../../corePlugins/useC
|
|
|
1351
1315
|
dependencyRecomputations: () => number;
|
|
1352
1316
|
resetDependencyRecomputations: () => void;
|
|
1353
1317
|
} & {
|
|
1354
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1355
1318
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
1319
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1356
1320
|
}];
|
|
1357
1321
|
recomputations: () => number;
|
|
1358
1322
|
resetRecomputations: () => void;
|
|
1359
1323
|
dependencyRecomputations: () => number;
|
|
1360
1324
|
resetDependencyRecomputations: () => void;
|
|
1361
1325
|
} & {
|
|
1362
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1363
1326
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
1327
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1364
1328
|
}];
|
|
1365
1329
|
recomputations: () => number;
|
|
1366
1330
|
resetRecomputations: () => void;
|
|
1367
1331
|
dependencyRecomputations: () => number;
|
|
1368
1332
|
resetDependencyRecomputations: () => void;
|
|
1369
1333
|
} & {
|
|
1370
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1371
1334
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
1335
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1372
1336
|
};
|