@mui/x-charts 8.0.0-beta.2 → 8.0.0
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/AnimatedBarElement.d.ts +38 -8
- package/BarChart/AnimatedBarElement.js +5 -5
- package/BarChart/BarChart.js +659 -6
- package/BarChart/BarClipPath.d.ts +19 -1
- package/BarChart/BarClipPath.js +83 -17
- package/BarChart/BarElement.d.ts +9 -20
- package/BarChart/BarElement.js +29 -26
- package/BarChart/BarLabel/BarLabel.d.ts +27 -854
- package/BarChart/BarLabel/BarLabel.js +32 -5
- package/BarChart/BarLabel/BarLabel.types.d.ts +2 -0
- package/BarChart/BarLabel/BarLabelItem.d.ts +24 -0
- package/BarChart/BarLabel/BarLabelItem.js +18 -6
- package/BarChart/BarLabel/BarLabelPlot.js +16 -46
- package/BarChart/BarLabel/barLabelClasses.d.ts +8 -1
- package/BarChart/BarLabel/barLabelClasses.js +4 -3
- package/BarChart/BarPlot.js +42 -63
- package/BarChart/barElementClasses.d.ts +26 -0
- package/BarChart/barElementClasses.js +29 -0
- package/BarChart/getRadius.d.ts +1 -1
- package/BarChart/index.d.ts +2 -1
- package/BarChart/index.js +11 -0
- package/BarChart/seriesConfig/getColor.js +6 -0
- package/BarChart/seriesConfig/index.js +3 -1
- package/BarChart/seriesConfig/tooltip.d.ts +2 -1
- package/BarChart/seriesConfig/tooltip.js +14 -1
- package/BarChart/types.d.ts +2 -2
- package/CHANGELOG.md +423 -96
- package/ChartContainer/ChartContainer.js +1014 -23
- package/ChartDataProvider/ChartDataProvider.d.ts +1 -4
- package/ChartDataProvider/ChartDataProvider.js +18 -16
- package/ChartDataProvider/useChartDataProviderProps.d.ts +1 -3
- package/ChartDataProvider/useChartDataProviderProps.js +4 -8
- package/ChartsLabel/ChartsLabelMark.js +0 -4
- package/ChartsLabel/index.d.ts +1 -0
- package/ChartsLabel/index.js +7 -0
- package/ChartsLegend/continuousColorLegendClasses.d.ts +1 -1
- package/ChartsTooltip/ChartsAxisTooltipContent.js +48 -64
- package/ChartsTooltip/ChartsItemTooltipContent.js +54 -10
- package/ChartsTooltip/ChartsTooltip.js +2 -2
- package/ChartsTooltip/ChartsTooltipContainer.js +7 -8
- package/ChartsTooltip/ChartsTooltipTable.d.ts +3 -1
- package/ChartsTooltip/ChartsTooltipTable.js +24 -9
- package/ChartsTooltip/chartsTooltipClasses.d.ts +4 -4
- package/ChartsTooltip/chartsTooltipClasses.js +2 -2
- package/ChartsTooltip/index.d.ts +4 -1
- package/ChartsTooltip/index.js +22 -7
- package/ChartsTooltip/useAxesTooltip.d.ts +7 -0
- package/ChartsTooltip/useAxesTooltip.js +18 -0
- package/ChartsTooltip/useAxisTooltip.d.ts +29 -7
- package/ChartsTooltip/useAxisTooltip.js +125 -36
- package/ChartsTooltip/useItemTooltip.d.ts +15 -11
- package/ChartsTooltip/useItemTooltip.js +52 -5
- package/ChartsXAxis/ChartsXAxis.js +5 -2
- package/ChartsYAxis/ChartsYAxis.js +69 -17
- package/Gauge/Gauge.js +10 -3
- package/Gauge/GaugeContainer.js +5 -0
- package/Gauge/GaugeValueArc.d.ts +7 -1
- package/Gauge/GaugeValueArc.js +60 -10
- package/Gauge/gaugeClasses.d.ts +1 -2
- package/Gauge/gaugeClasses.js +2 -3
- package/LineChart/AnimatedArea.js +5 -22
- package/LineChart/AnimatedLine.d.ts +1 -4
- package/LineChart/AnimatedLine.js +10 -25
- package/LineChart/AppearingMask.d.ts +5 -0
- package/LineChart/AppearingMask.js +25 -18
- package/LineChart/AreaElement.d.ts +5 -0
- package/LineChart/AreaElement.js +1 -1
- package/LineChart/AreaPlot.js +2 -2
- package/LineChart/CircleMarkElement.js +16 -22
- package/LineChart/LineChart.js +659 -6
- package/LineChart/LineElement.d.ts +5 -0
- package/LineChart/LineElement.js +1 -1
- package/LineChart/LineHighlightPlot.js +2 -3
- package/LineChart/LinePlot.js +2 -2
- package/LineChart/MarkElement.js +16 -27
- package/LineChart/MarkPlot.js +2 -3
- package/LineChart/markElementClasses.d.ts +8 -0
- package/LineChart/markElementClasses.js +4 -3
- package/LineChart/seriesConfig/getColor.js +6 -0
- package/LineChart/seriesConfig/index.js +3 -1
- package/LineChart/seriesConfig/tooltip.d.ts +2 -1
- package/LineChart/seriesConfig/tooltip.js +8 -1
- package/PieChart/PieArc.d.ts +24 -11
- package/PieChart/PieArc.js +38 -25
- package/PieChart/PieArcLabel.d.ts +27 -13
- package/PieChart/PieArcLabel.js +52 -48
- package/PieChart/PieArcLabelPlot.js +16 -34
- package/PieChart/PieArcPlot.js +21 -34
- package/PieChart/PiePlot.js +2 -2
- package/PieChart/seriesConfig/tooltip.js +3 -0
- package/RadarChart/RadarAxisHighlight/RadarAxisHighlight.d.ts +1 -8
- package/RadarChart/RadarAxisHighlight/RadarAxisHighlight.js +53 -15
- package/RadarChart/RadarAxisHighlight/radarAxisHighlightClasses.d.ts +0 -2
- package/RadarChart/RadarAxisHighlight/radarAxisHighlightClasses.js +1 -1
- package/RadarChart/RadarChart.d.ts +6 -4
- package/RadarChart/RadarChart.js +10 -13
- package/RadarChart/RadarDataProvider/RadarDataProvider.d.ts +1 -1
- package/RadarChart/RadarDataProvider/RadarDataProvider.js +1 -1
- package/RadarChart/RadarGrid/CircularRadarGrid.js +11 -7
- package/RadarChart/RadarGrid/CircularRadarStripes.d.ts +6 -0
- package/RadarChart/RadarGrid/CircularRadarStripes.js +38 -0
- package/RadarChart/RadarGrid/RadarGrid.js +52 -12
- package/RadarChart/RadarGrid/RadarGrid.types.d.ts +26 -1
- package/RadarChart/RadarGrid/SharpRadarGrid.js +11 -7
- package/RadarChart/RadarGrid/SharpRadarStripes.d.ts +6 -0
- package/RadarChart/RadarGrid/SharpRadarStripes.js +44 -0
- package/RadarChart/RadarGrid/radarGridClasses.d.ts +12 -0
- package/RadarChart/RadarGrid/radarGridClasses.js +25 -0
- package/RadarChart/RadarSeriesPlot/RadarSeriesArea.d.ts +16 -0
- package/RadarChart/RadarSeriesPlot/RadarSeriesArea.js +54 -7
- package/RadarChart/RadarSeriesPlot/RadarSeriesMarks.d.ts +16 -0
- package/RadarChart/RadarSeriesPlot/RadarSeriesMarks.js +59 -10
- package/RadarChart/RadarSeriesPlot/RadarSeriesPlot.js +21 -24
- package/RadarChart/RadarSeriesPlot/RadarSeriesPlot.types.d.ts +1 -2
- package/RadarChart/RadarSeriesPlot/index.d.ts +2 -2
- package/RadarChart/RadarSeriesPlot/index.js +14 -22
- package/RadarChart/RadarSeriesPlot/radarSeriesPlotClasses.d.ts +6 -2
- package/RadarChart/RadarSeriesPlot/radarSeriesPlotClasses.js +3 -1
- package/RadarChart/RadarSeriesPlot/useRadarSeriesData.d.ts +2 -1
- package/RadarChart/seriesConfig/index.js +3 -1
- package/RadarChart/seriesConfig/tooltip.d.ts +2 -1
- package/RadarChart/seriesConfig/tooltip.js +25 -10
- package/RadarChart/useRadarChartProps.d.ts +0 -2
- package/RadarChart/useRadarChartProps.js +4 -7
- package/ScatterChart/Scatter.d.ts +2 -1
- package/ScatterChart/ScatterChart.js +659 -6
- package/ScatterChart/seriesConfig/getColor.js +9 -0
- package/SparkLineChart/SparkLineChart.d.ts +3 -4
- package/SparkLineChart/SparkLineChart.js +659 -6
- package/colorPalettes/colorPalettes.js +2 -2
- package/constants/index.d.ts +1 -1
- package/constants/index.js +1 -1
- package/context/ChartProvider/ChartProvider.d.ts +1 -1
- package/context/ChartProvider/ChartProvider.types.d.ts +1 -2
- package/esm/BarChart/AnimatedBarElement.d.ts +38 -8
- package/esm/BarChart/AnimatedBarElement.js +5 -5
- package/esm/BarChart/BarChart.js +659 -6
- package/esm/BarChart/BarClipPath.d.ts +19 -1
- package/esm/BarChart/BarClipPath.js +83 -17
- package/esm/BarChart/BarElement.d.ts +9 -20
- package/esm/BarChart/BarElement.js +28 -23
- package/esm/BarChart/BarLabel/BarLabel.d.ts +27 -854
- package/esm/BarChart/BarLabel/BarLabel.js +32 -5
- package/esm/BarChart/BarLabel/BarLabel.types.d.ts +2 -0
- package/esm/BarChart/BarLabel/BarLabelItem.d.ts +24 -0
- package/esm/BarChart/BarLabel/BarLabelItem.js +18 -6
- package/esm/BarChart/BarLabel/BarLabelPlot.js +16 -46
- package/esm/BarChart/BarLabel/barLabelClasses.d.ts +8 -1
- package/esm/BarChart/BarLabel/barLabelClasses.js +4 -3
- package/esm/BarChart/BarPlot.js +41 -62
- package/esm/BarChart/barElementClasses.d.ts +26 -0
- package/{modern/LineChart/markElementClasses.js → esm/BarChart/barElementClasses.js} +7 -7
- package/esm/BarChart/getRadius.d.ts +1 -1
- package/esm/BarChart/index.d.ts +2 -1
- package/esm/BarChart/index.js +2 -1
- package/esm/BarChart/seriesConfig/getColor.js +6 -0
- package/esm/BarChart/seriesConfig/index.js +2 -1
- package/esm/BarChart/seriesConfig/tooltip.d.ts +2 -1
- package/esm/BarChart/seriesConfig/tooltip.js +12 -0
- package/esm/BarChart/types.d.ts +2 -2
- package/esm/ChartContainer/ChartContainer.js +1014 -23
- package/esm/ChartDataProvider/ChartDataProvider.d.ts +1 -4
- package/esm/ChartDataProvider/ChartDataProvider.js +18 -16
- package/esm/ChartDataProvider/useChartDataProviderProps.d.ts +1 -3
- package/esm/ChartDataProvider/useChartDataProviderProps.js +4 -8
- package/esm/ChartsLabel/ChartsLabelMark.js +0 -4
- package/esm/ChartsLabel/index.d.ts +1 -0
- package/esm/ChartsLabel/index.js +1 -0
- package/esm/ChartsLegend/continuousColorLegendClasses.d.ts +1 -1
- package/esm/ChartsTooltip/ChartsAxisTooltipContent.js +48 -64
- package/esm/ChartsTooltip/ChartsItemTooltipContent.js +55 -11
- package/esm/ChartsTooltip/ChartsTooltip.js +2 -2
- package/esm/ChartsTooltip/ChartsTooltipContainer.js +8 -9
- package/esm/ChartsTooltip/ChartsTooltipTable.d.ts +3 -1
- package/esm/ChartsTooltip/ChartsTooltipTable.js +23 -9
- package/esm/ChartsTooltip/chartsTooltipClasses.d.ts +4 -4
- package/esm/ChartsTooltip/chartsTooltipClasses.js +2 -2
- package/esm/ChartsTooltip/index.d.ts +4 -1
- package/esm/ChartsTooltip/index.js +2 -1
- package/esm/ChartsTooltip/useAxesTooltip.d.ts +7 -0
- package/esm/ChartsTooltip/useAxesTooltip.js +12 -0
- package/esm/ChartsTooltip/useAxisTooltip.d.ts +29 -7
- package/esm/ChartsTooltip/useAxisTooltip.js +127 -38
- package/esm/ChartsTooltip/useItemTooltip.d.ts +15 -11
- package/esm/ChartsTooltip/useItemTooltip.js +49 -5
- package/esm/ChartsXAxis/ChartsXAxis.js +5 -2
- package/esm/ChartsYAxis/ChartsYAxis.js +69 -17
- package/esm/Gauge/Gauge.js +10 -3
- package/esm/Gauge/GaugeContainer.js +5 -0
- package/esm/Gauge/GaugeValueArc.d.ts +7 -1
- package/esm/Gauge/GaugeValueArc.js +61 -10
- package/esm/Gauge/gaugeClasses.d.ts +1 -2
- package/esm/Gauge/gaugeClasses.js +1 -2
- package/esm/LineChart/AnimatedArea.js +5 -22
- package/esm/LineChart/AnimatedLine.d.ts +1 -4
- package/esm/LineChart/AnimatedLine.js +9 -24
- package/esm/LineChart/AppearingMask.d.ts +5 -0
- package/esm/LineChart/AppearingMask.js +23 -18
- package/esm/LineChart/AreaElement.d.ts +5 -0
- package/esm/LineChart/AreaElement.js +1 -1
- package/esm/LineChart/AreaPlot.js +1 -1
- package/esm/LineChart/CircleMarkElement.js +19 -25
- package/esm/LineChart/LineChart.js +659 -6
- package/esm/LineChart/LineElement.d.ts +5 -0
- package/esm/LineChart/LineElement.js +1 -1
- package/esm/LineChart/LineHighlightPlot.js +3 -4
- package/esm/LineChart/LinePlot.js +1 -1
- package/esm/LineChart/MarkElement.js +17 -28
- package/esm/LineChart/MarkPlot.js +1 -2
- package/esm/LineChart/markElementClasses.d.ts +8 -0
- package/esm/LineChart/markElementClasses.js +4 -3
- package/esm/LineChart/seriesConfig/getColor.js +6 -0
- package/esm/LineChart/seriesConfig/index.js +2 -1
- package/esm/LineChart/seriesConfig/tooltip.d.ts +2 -1
- package/esm/LineChart/seriesConfig/tooltip.js +6 -0
- package/esm/PieChart/PieArc.d.ts +24 -11
- package/esm/PieChart/PieArc.js +37 -24
- package/esm/PieChart/PieArcLabel.d.ts +27 -13
- package/esm/PieChart/PieArcLabel.js +51 -47
- package/esm/PieChart/PieArcLabelPlot.js +16 -34
- package/esm/PieChart/PieArcPlot.js +21 -34
- package/esm/PieChart/PiePlot.js +1 -1
- package/esm/PieChart/seriesConfig/tooltip.js +3 -0
- package/esm/RadarChart/RadarAxisHighlight/RadarAxisHighlight.d.ts +1 -8
- package/esm/RadarChart/RadarAxisHighlight/RadarAxisHighlight.js +53 -15
- package/esm/RadarChart/RadarAxisHighlight/radarAxisHighlightClasses.d.ts +0 -2
- package/esm/RadarChart/RadarAxisHighlight/radarAxisHighlightClasses.js +1 -1
- package/esm/RadarChart/RadarChart.d.ts +6 -4
- package/esm/RadarChart/RadarChart.js +11 -14
- package/esm/RadarChart/RadarDataProvider/RadarDataProvider.d.ts +1 -1
- package/esm/RadarChart/RadarDataProvider/RadarDataProvider.js +1 -1
- package/esm/RadarChart/RadarGrid/CircularRadarGrid.js +11 -7
- package/esm/RadarChart/RadarGrid/CircularRadarStripes.d.ts +6 -0
- package/esm/RadarChart/RadarGrid/CircularRadarStripes.js +31 -0
- package/esm/RadarChart/RadarGrid/RadarGrid.js +53 -13
- package/esm/RadarChart/RadarGrid/RadarGrid.types.d.ts +26 -1
- package/esm/RadarChart/RadarGrid/SharpRadarGrid.js +11 -7
- package/esm/RadarChart/RadarGrid/SharpRadarStripes.d.ts +6 -0
- package/esm/RadarChart/RadarGrid/SharpRadarStripes.js +37 -0
- package/esm/RadarChart/RadarGrid/radarGridClasses.d.ts +12 -0
- package/esm/RadarChart/RadarGrid/radarGridClasses.js +15 -0
- package/esm/RadarChart/RadarSeriesPlot/RadarSeriesArea.d.ts +16 -0
- package/esm/RadarChart/RadarSeriesPlot/RadarSeriesArea.js +53 -7
- package/esm/RadarChart/RadarSeriesPlot/RadarSeriesMarks.d.ts +16 -0
- package/esm/RadarChart/RadarSeriesPlot/RadarSeriesMarks.js +58 -10
- package/esm/RadarChart/RadarSeriesPlot/RadarSeriesPlot.js +21 -24
- package/esm/RadarChart/RadarSeriesPlot/RadarSeriesPlot.types.d.ts +1 -2
- package/esm/RadarChart/RadarSeriesPlot/index.d.ts +2 -2
- package/esm/RadarChart/RadarSeriesPlot/index.js +2 -2
- package/esm/RadarChart/RadarSeriesPlot/radarSeriesPlotClasses.d.ts +6 -2
- package/esm/RadarChart/RadarSeriesPlot/radarSeriesPlotClasses.js +3 -1
- package/esm/RadarChart/RadarSeriesPlot/useRadarSeriesData.d.ts +2 -1
- package/esm/RadarChart/seriesConfig/index.js +2 -1
- package/esm/RadarChart/seriesConfig/tooltip.d.ts +2 -1
- package/esm/RadarChart/seriesConfig/tooltip.js +23 -9
- package/esm/RadarChart/useRadarChartProps.d.ts +0 -2
- package/esm/RadarChart/useRadarChartProps.js +4 -7
- package/esm/ScatterChart/Scatter.d.ts +2 -1
- package/esm/ScatterChart/ScatterChart.js +659 -6
- package/esm/ScatterChart/seriesConfig/getColor.js +9 -0
- package/esm/SparkLineChart/SparkLineChart.d.ts +3 -4
- package/esm/SparkLineChart/SparkLineChart.js +659 -6
- package/esm/colorPalettes/colorPalettes.js +2 -2
- package/esm/constants/index.d.ts +1 -1
- package/esm/constants/index.js +1 -1
- package/esm/context/ChartProvider/ChartProvider.d.ts +1 -1
- package/esm/context/ChartProvider/ChartProvider.types.d.ts +1 -2
- package/esm/hooks/animation/index.d.ts +7 -0
- package/esm/hooks/animation/index.js +7 -0
- package/esm/hooks/animation/useAnimate.d.ts +83 -0
- package/esm/hooks/animation/useAnimate.js +47 -0
- package/esm/hooks/animation/useAnimateArea.d.ts +15 -0
- package/esm/hooks/animation/useAnimateArea.js +24 -0
- package/esm/hooks/animation/useAnimateBar.d.ts +17 -0
- package/esm/hooks/animation/useAnimateBar.js +50 -0
- package/esm/hooks/animation/useAnimateBarLabel.d.ts +19 -0
- package/esm/hooks/animation/useAnimateBarLabel.js +53 -0
- package/esm/hooks/animation/useAnimateGaugeValueArc.d.ts +19 -0
- package/esm/hooks/animation/useAnimateGaugeValueArc.js +54 -0
- package/esm/hooks/animation/useAnimateLine.d.ts +14 -0
- package/esm/hooks/animation/useAnimateLine.js +23 -0
- package/esm/hooks/animation/useAnimatePieArc.d.ts +15 -0
- package/esm/hooks/animation/useAnimatePieArc.js +62 -0
- package/esm/hooks/animation/useAnimatePieArcLabel.d.ts +15 -0
- package/esm/hooks/animation/useAnimatePieArcLabel.js +68 -0
- package/esm/hooks/index.d.ts +2 -1
- package/esm/hooks/index.js +2 -1
- package/esm/hooks/useAxisSystem.d.ts +8 -0
- package/esm/hooks/useAxisSystem.js +26 -0
- package/esm/hooks/useInteractionItemProps.js +11 -0
- package/esm/hooks/useIsHydrated.js +1 -1
- package/{context/AnimationProvider → esm/hooks}/useSkipAnimation.d.ts +2 -2
- package/esm/hooks/useSkipAnimation.js +16 -0
- package/esm/index.js +1 -1
- package/esm/internals/animation/Transition.d.ts +37 -0
- package/esm/internals/animation/Transition.js +83 -0
- package/esm/internals/animation/animation.d.ts +4 -0
- package/esm/internals/animation/animation.js +4 -0
- package/esm/internals/animation/useAnimateInternal.d.ts +21 -0
- package/esm/internals/animation/useAnimateInternal.js +76 -0
- package/esm/internals/domUtils.js +11 -6
- package/esm/internals/index.d.ts +0 -2
- package/esm/internals/index.js +0 -2
- package/esm/internals/isCartesian.d.ts +2 -7
- package/esm/internals/isCartesian.js +0 -3
- package/esm/internals/isPolar.d.ts +2 -7
- package/esm/internals/isPolar.js +0 -3
- package/esm/internals/plugins/allPlugins.d.ts +1 -6
- package/esm/internals/plugins/allPlugins.js +0 -2
- package/esm/internals/plugins/corePlugins/corePlugins.d.ts +1 -1
- package/esm/internals/plugins/corePlugins/corePlugins.js +2 -1
- package/esm/internals/plugins/corePlugins/useChartAnimation/index.d.ts +3 -0
- package/esm/internals/plugins/corePlugins/useChartAnimation/index.js +2 -0
- package/esm/internals/plugins/corePlugins/useChartAnimation/useChartAnimation.d.ts +3 -0
- package/esm/internals/plugins/corePlugins/useChartAnimation/useChartAnimation.js +88 -0
- package/esm/internals/plugins/corePlugins/useChartAnimation/useChartAnimation.selectors.d.ts +31 -0
- package/esm/internals/plugins/corePlugins/useChartAnimation/useChartAnimation.selectors.js +3 -0
- package/esm/internals/plugins/corePlugins/useChartAnimation/useChartAnimation.types.d.ts +39 -0
- package/esm/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.selectors.d.ts +23 -23
- package/esm/internals/plugins/corePlugins/useChartId/useChartId.selectors.d.ts +1 -1
- package/esm/internals/plugins/corePlugins/useChartSeries/useChartSeries.selectors.d.ts +2 -2
- package/esm/internals/plugins/corePlugins/useChartSeries/useColorProcessor.d.ts +2 -5
- package/esm/internals/plugins/corePlugins/useChartSeries/useColorProcessor.js +1 -0
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/computeAxisValue.d.ts +1 -1
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/computeAxisValue.js +9 -3
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisTriggerTooltip.d.ts +5 -0
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisTriggerTooltip.js +21 -0
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/index.d.ts +1 -0
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/index.js +1 -0
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartAxisSize.selectors.d.ts +8 -8
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.types.d.ts +7 -9
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisLayout.selectors.d.ts +2 -2
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisRendering.selectors.d.ts +127 -151
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianInteraction.selectors.d.ts +9 -1
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianInteraction.selectors.js +55 -26
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/zoom.types.d.ts +10 -1
- package/esm/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.selectors.d.ts +23 -23
- package/esm/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.selectors.d.ts +9 -9
- package/esm/internals/plugins/featurePlugins/useChartPolarAxis/computeAxisValue.d.ts +1 -1
- package/esm/internals/plugins/featurePlugins/useChartPolarAxis/computeAxisValue.js +9 -3
- package/esm/internals/plugins/featurePlugins/useChartPolarAxis/getAxisIndex.d.ts +6 -0
- package/{modern/internals/plugins/featurePlugins/useChartPolarAxis/getAxisValue.js → esm/internals/plugins/featurePlugins/useChartPolarAxis/getAxisIndex.js} +0 -12
- package/esm/internals/plugins/featurePlugins/useChartPolarAxis/getAxisTriggerTooltip.d.ts +5 -0
- package/esm/internals/plugins/featurePlugins/useChartPolarAxis/getAxisTriggerTooltip.js +21 -0
- package/esm/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.selectors.d.ts +106 -130
- package/esm/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.types.d.ts +3 -22
- package/esm/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarInteraction.selectors.d.ts +7 -3669
- package/esm/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarInteraction.selectors.js +65 -9
- package/esm/internals/plugins/featurePlugins/useChartVoronoi/useChartVoronoi.selectors.d.ts +1 -1
- package/esm/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.selectors.d.ts +1 -1
- package/esm/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.types.d.ts +0 -1
- package/esm/internals/plugins/models/seriesConfig/colorProcessor.types.d.ts +10 -1
- package/esm/internals/plugins/models/seriesConfig/polarExtremumGetter.types.d.ts +0 -4
- package/esm/internals/plugins/models/seriesConfig/seriesConfig.types.d.ts +3 -1
- package/esm/internals/plugins/models/seriesConfig/tooltipGetter.types.d.ts +72 -7
- package/esm/internals/shallowEqual.d.ts +8 -0
- package/esm/internals/shallowEqual.js +31 -0
- package/esm/internals/store/useCharts.d.ts +1 -1
- package/esm/internals/store/useSelector.js +1 -4
- package/esm/models/axis.d.ts +23 -3
- package/esm/models/axis.js +4 -0
- package/esm/models/index.d.ts +1 -1
- package/esm/models/seriesType/common.d.ts +1 -2
- package/esm/models/seriesType/index.d.ts +21 -1
- package/esm/models/seriesType/index.js +24 -0
- package/esm/models/seriesType/radar.d.ts +6 -2
- package/esm/themeAugmentation/overrides.d.ts +1 -1
- package/hooks/animation/index.d.ts +7 -0
- package/hooks/animation/index.js +82 -0
- package/hooks/animation/useAnimate.d.ts +83 -0
- package/hooks/animation/useAnimate.js +54 -0
- package/hooks/animation/useAnimateArea.d.ts +15 -0
- package/hooks/animation/useAnimateArea.js +30 -0
- package/hooks/animation/useAnimateBar.d.ts +17 -0
- package/hooks/animation/useAnimateBar.js +56 -0
- package/hooks/animation/useAnimateBarLabel.d.ts +19 -0
- package/hooks/animation/useAnimateBarLabel.js +59 -0
- package/hooks/animation/useAnimateGaugeValueArc.d.ts +19 -0
- package/hooks/animation/useAnimateGaugeValueArc.js +60 -0
- package/hooks/animation/useAnimateLine.d.ts +14 -0
- package/hooks/animation/useAnimateLine.js +29 -0
- package/hooks/animation/useAnimatePieArc.d.ts +15 -0
- package/hooks/animation/useAnimatePieArc.js +68 -0
- package/hooks/animation/useAnimatePieArcLabel.d.ts +15 -0
- package/hooks/animation/useAnimatePieArcLabel.js +74 -0
- package/hooks/index.d.ts +2 -1
- package/hooks/index.js +13 -1
- package/hooks/useAxisSystem.d.ts +8 -0
- package/hooks/useAxisSystem.js +30 -0
- package/hooks/useInteractionItemProps.js +11 -0
- package/hooks/useIsHydrated.js +1 -1
- package/{esm/context/AnimationProvider → hooks}/useSkipAnimation.d.ts +2 -2
- package/hooks/useSkipAnimation.js +20 -0
- package/index.js +1 -1
- package/internals/animation/Transition.d.ts +37 -0
- package/internals/animation/Transition.js +89 -0
- package/internals/animation/animation.d.ts +4 -0
- package/internals/animation/animation.js +11 -0
- package/internals/animation/useAnimateInternal.d.ts +21 -0
- package/internals/animation/useAnimateInternal.js +82 -0
- package/internals/domUtils.js +11 -6
- package/internals/index.d.ts +0 -2
- package/internals/index.js +0 -12
- package/internals/isCartesian.d.ts +2 -7
- package/internals/isCartesian.js +0 -4
- package/internals/isPolar.d.ts +2 -7
- package/internals/isPolar.js +0 -4
- package/internals/plugins/allPlugins.d.ts +1 -6
- package/internals/plugins/allPlugins.js +1 -3
- package/internals/plugins/corePlugins/corePlugins.d.ts +1 -1
- package/internals/plugins/corePlugins/corePlugins.js +2 -1
- package/internals/plugins/corePlugins/useChartAnimation/index.d.ts +3 -0
- package/internals/plugins/corePlugins/useChartAnimation/index.js +27 -0
- package/internals/plugins/corePlugins/useChartAnimation/useChartAnimation.d.ts +3 -0
- package/internals/plugins/corePlugins/useChartAnimation/useChartAnimation.js +96 -0
- package/internals/plugins/corePlugins/useChartAnimation/useChartAnimation.selectors.d.ts +31 -0
- package/internals/plugins/corePlugins/useChartAnimation/useChartAnimation.selectors.js +9 -0
- package/internals/plugins/corePlugins/useChartAnimation/useChartAnimation.types.d.ts +39 -0
- package/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.selectors.d.ts +23 -23
- 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/corePlugins/useChartSeries/useColorProcessor.d.ts +2 -5
- package/internals/plugins/corePlugins/useChartSeries/useColorProcessor.js +1 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/computeAxisValue.d.ts +1 -1
- package/internals/plugins/featurePlugins/useChartCartesianAxis/computeAxisValue.js +9 -3
- package/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisTriggerTooltip.d.ts +5 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisTriggerTooltip.js +28 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/index.d.ts +1 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/index.js +12 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartAxisSize.selectors.d.ts +8 -8
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.types.d.ts +7 -9
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisLayout.selectors.d.ts +2 -2
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisRendering.selectors.d.ts +127 -151
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianInteraction.selectors.d.ts +9 -1
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianInteraction.selectors.js +56 -27
- package/internals/plugins/featurePlugins/useChartCartesianAxis/zoom.types.d.ts +10 -1
- package/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.selectors.d.ts +23 -23
- package/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.selectors.d.ts +9 -9
- package/internals/plugins/featurePlugins/useChartPolarAxis/computeAxisValue.d.ts +1 -1
- package/internals/plugins/featurePlugins/useChartPolarAxis/computeAxisValue.js +9 -3
- package/internals/plugins/featurePlugins/useChartPolarAxis/getAxisIndex.d.ts +6 -0
- package/internals/plugins/featurePlugins/useChartPolarAxis/{getAxisValue.js → getAxisIndex.js} +0 -13
- package/internals/plugins/featurePlugins/useChartPolarAxis/getAxisTriggerTooltip.d.ts +5 -0
- package/internals/plugins/featurePlugins/useChartPolarAxis/getAxisTriggerTooltip.js +28 -0
- package/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.selectors.d.ts +106 -130
- package/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.types.d.ts +3 -22
- package/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarInteraction.selectors.d.ts +7 -3669
- package/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarInteraction.selectors.js +66 -10
- package/internals/plugins/featurePlugins/useChartVoronoi/useChartVoronoi.selectors.d.ts +1 -1
- package/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.selectors.d.ts +1 -1
- package/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.types.d.ts +0 -1
- package/internals/plugins/models/seriesConfig/colorProcessor.types.d.ts +10 -1
- package/internals/plugins/models/seriesConfig/polarExtremumGetter.types.d.ts +0 -4
- package/internals/plugins/models/seriesConfig/seriesConfig.types.d.ts +3 -1
- package/internals/plugins/models/seriesConfig/tooltipGetter.types.d.ts +72 -7
- package/internals/shallowEqual.d.ts +8 -0
- package/internals/shallowEqual.js +37 -0
- package/internals/store/useCharts.d.ts +1 -1
- package/internals/store/useSelector.js +1 -5
- package/models/axis.d.ts +23 -3
- package/models/axis.js +4 -0
- package/models/index.d.ts +1 -1
- package/models/seriesType/common.d.ts +1 -2
- package/models/seriesType/index.d.ts +21 -1
- package/models/seriesType/index.js +24 -0
- package/models/seriesType/radar.d.ts +6 -2
- package/package.json +9 -18
- package/themeAugmentation/overrides.d.ts +1 -1
- package/PieChart/dataTransform/transition.d.ts +0 -4
- package/PieChart/dataTransform/transition.js +0 -145
- package/RadarChart/RadarAxisHighlight/RadarAxisPointsHighlight.d.ts +0 -13
- package/RadarChart/RadarAxisHighlight/RadarAxisPointsHighlight.js +0 -54
- package/RadarChart/RadarAxisHighlight/RadarAxisSliceHighlight.d.ts +0 -13
- package/RadarChart/RadarAxisHighlight/RadarAxisSliceHighlight.js +0 -57
- package/context/AnimationProvider/Animation.types.d.ts +0 -15
- package/context/AnimationProvider/AnimationContext.d.ts +0 -4
- package/context/AnimationProvider/AnimationContext.js +0 -17
- package/context/AnimationProvider/AnimationProvider.d.ts +0 -4
- package/context/AnimationProvider/AnimationProvider.js +0 -60
- package/context/AnimationProvider/index.d.ts +0 -4
- package/context/AnimationProvider/index.js +0 -49
- package/context/AnimationProvider/useSkipAnimation.js +0 -25
- package/context/context.types.d.ts +0 -4
- package/context/context.types.js +0 -5
- package/esm/PieChart/dataTransform/transition.d.ts +0 -4
- package/esm/PieChart/dataTransform/transition.js +0 -137
- package/esm/RadarChart/RadarAxisHighlight/RadarAxisPointsHighlight.d.ts +0 -13
- package/esm/RadarChart/RadarAxisHighlight/RadarAxisPointsHighlight.js +0 -47
- package/esm/RadarChart/RadarAxisHighlight/RadarAxisSliceHighlight.d.ts +0 -13
- package/esm/RadarChart/RadarAxisHighlight/RadarAxisSliceHighlight.js +0 -50
- package/esm/context/AnimationProvider/Animation.types.d.ts +0 -15
- package/esm/context/AnimationProvider/AnimationContext.d.ts +0 -4
- package/esm/context/AnimationProvider/AnimationContext.js +0 -10
- package/esm/context/AnimationProvider/AnimationProvider.d.ts +0 -4
- package/esm/context/AnimationProvider/AnimationProvider.js +0 -55
- package/esm/context/AnimationProvider/index.d.ts +0 -4
- package/esm/context/AnimationProvider/index.js +0 -4
- package/esm/context/AnimationProvider/useSkipAnimation.js +0 -20
- package/esm/context/context.types.d.ts +0 -4
- package/esm/context/context.types.js +0 -1
- package/esm/hooks/getValueToPositionMapper.d.ts +0 -8
- package/esm/hooks/getValueToPositionMapper.js +0 -15
- package/esm/hooks/useAxisEvents.d.ts +0 -0
- package/esm/hooks/useAxisEvents.js +0 -0
- package/esm/internals/notNull.d.ts +0 -1
- package/esm/internals/notNull.js +0 -3
- package/esm/internals/plugins/featurePlugins/useChartPolarAxis/getAxisValue.d.ts +0 -11
- package/esm/internals/plugins/featurePlugins/useChartPolarAxis/getAxisValue.js +0 -38
- package/esm/internals/plugins/featurePlugins/useChartZAxis/utils.d.ts +0 -0
- package/esm/internals/plugins/featurePlugins/useChartZAxis/utils.js +0 -0
- package/esm/internals/useStringInterpolator.d.ts +0 -1
- package/esm/internals/useStringInterpolator.js +0 -21
- package/hooks/getValueToPositionMapper.d.ts +0 -8
- package/hooks/getValueToPositionMapper.js +0 -20
- package/hooks/useAxisEvents.d.ts +0 -0
- package/hooks/useAxisEvents.js +0 -1
- package/internals/notNull.d.ts +0 -1
- package/internals/notNull.js +0 -9
- package/internals/plugins/featurePlugins/useChartPolarAxis/getAxisValue.d.ts +0 -11
- package/internals/plugins/featurePlugins/useChartZAxis/utils.d.ts +0 -0
- package/internals/plugins/featurePlugins/useChartZAxis/utils.js +0 -1
- package/internals/useStringInterpolator.d.ts +0 -1
- package/internals/useStringInterpolator.js +0 -30
- package/modern/BarChart/AnimatedBarElement.d.ts +0 -12
- package/modern/BarChart/AnimatedBarElement.js +0 -19
- package/modern/BarChart/BarChart.d.ts +0 -66
- package/modern/BarChart/BarChart.js +0 -321
- package/modern/BarChart/BarChart.plugins.d.ts +0 -7
- package/modern/BarChart/BarChart.plugins.js +0 -5
- package/modern/BarChart/BarClipPath.d.ts +0 -14
- package/modern/BarChart/BarClipPath.js +0 -42
- package/modern/BarChart/BarElement.d.ts +0 -50
- package/modern/BarChart/BarElement.js +0 -101
- package/modern/BarChart/BarLabel/BarLabel.d.ts +0 -861
- package/modern/BarChart/BarLabel/BarLabel.js +0 -53
- package/modern/BarChart/BarLabel/BarLabel.types.d.ts +0 -39
- package/modern/BarChart/BarLabel/BarLabel.types.js +0 -1
- package/modern/BarChart/BarLabel/BarLabelItem.d.ts +0 -54
- package/modern/BarChart/BarLabel/BarLabelItem.js +0 -119
- package/modern/BarChart/BarLabel/BarLabelPlot.d.ts +0 -13
- package/modern/BarChart/BarLabel/BarLabelPlot.js +0 -75
- package/modern/BarChart/BarLabel/barLabelClasses.d.ts +0 -13
- package/modern/BarChart/BarLabel/barLabelClasses.js +0 -19
- package/modern/BarChart/BarLabel/getBarLabel.d.ts +0 -10
- package/modern/BarChart/BarLabel/getBarLabel.js +0 -24
- package/modern/BarChart/BarLabel/index.d.ts +0 -6
- package/modern/BarChart/BarLabel/index.js +0 -2
- package/modern/BarChart/BarPlot.d.ts +0 -49
- package/modern/BarChart/BarPlot.js +0 -327
- package/modern/BarChart/checkScaleErrors.d.ts +0 -10
- package/modern/BarChart/checkScaleErrors.js +0 -33
- package/modern/BarChart/getRadius.d.ts +0 -20
- package/modern/BarChart/getRadius.js +0 -30
- package/modern/BarChart/index.d.ts +0 -4
- package/modern/BarChart/index.js +0 -4
- package/modern/BarChart/seriesConfig/extremums.d.ts +0 -3
- package/modern/BarChart/seriesConfig/extremums.js +0 -75
- package/modern/BarChart/seriesConfig/getColor.d.ts +0 -3
- package/modern/BarChart/seriesConfig/getColor.js +0 -28
- package/modern/BarChart/seriesConfig/getSeriesWithDefaultValues.d.ts +0 -3
- package/modern/BarChart/seriesConfig/getSeriesWithDefaultValues.js +0 -8
- package/modern/BarChart/seriesConfig/index.d.ts +0 -2
- package/modern/BarChart/seriesConfig/index.js +0 -15
- package/modern/BarChart/seriesConfig/legend.d.ts +0 -3
- package/modern/BarChart/seriesConfig/legend.js +0 -22
- package/modern/BarChart/seriesConfig/seriesProcessor.d.ts +0 -3
- package/modern/BarChart/seriesConfig/seriesProcessor.js +0 -73
- package/modern/BarChart/seriesConfig/tooltip.d.ts +0 -3
- package/modern/BarChart/seriesConfig/tooltip.js +0 -25
- package/modern/BarChart/types.d.ts +0 -23
- package/modern/BarChart/types.js +0 -1
- package/modern/BarChart/useBarChartProps.d.ts +0 -34
- package/modern/BarChart/useBarChartProps.js +0 -136
- package/modern/ChartContainer/ChartContainer.d.ts +0 -35
- package/modern/ChartContainer/ChartContainer.js +0 -396
- package/modern/ChartContainer/index.d.ts +0 -1
- package/modern/ChartContainer/index.js +0 -1
- package/modern/ChartContainer/useChartContainerProps.d.ts +0 -15
- package/modern/ChartContainer/useChartContainerProps.js +0 -71
- package/modern/ChartDataProvider/ChartDataProvider.d.ts +0 -41
- package/modern/ChartDataProvider/ChartDataProvider.js +0 -98
- package/modern/ChartDataProvider/index.d.ts +0 -1
- package/modern/ChartDataProvider/index.js +0 -1
- package/modern/ChartDataProvider/useChartDataProviderProps.d.ts +0 -11
- package/modern/ChartDataProvider/useChartDataProviderProps.js +0 -31
- package/modern/ChartsAxis/ChartsAxis.d.ts +0 -28
- package/modern/ChartsAxis/ChartsAxis.js +0 -69
- package/modern/ChartsAxis/axisClasses.d.ts +0 -33
- package/modern/ChartsAxis/axisClasses.js +0 -6
- package/modern/ChartsAxis/index.d.ts +0 -2
- package/modern/ChartsAxis/index.js +0 -2
- package/modern/ChartsAxisHighlight/ChartsAxisHighlight.d.ts +0 -16
- package/modern/ChartsAxisHighlight/ChartsAxisHighlight.js +0 -50
- package/modern/ChartsAxisHighlight/ChartsAxisHighlight.types.d.ts +0 -5
- package/modern/ChartsAxisHighlight/ChartsAxisHighlight.types.js +0 -1
- package/modern/ChartsAxisHighlight/ChartsAxisHighlightPath.d.ts +0 -6
- package/modern/ChartsAxisHighlight/ChartsAxisHighlightPath.js +0 -34
- package/modern/ChartsAxisHighlight/ChartsXAxisHighlight.d.ts +0 -10
- package/modern/ChartsAxisHighlight/ChartsXAxisHighlight.js +0 -53
- package/modern/ChartsAxisHighlight/ChartsYAxisHighlight.d.ts +0 -10
- package/modern/ChartsAxisHighlight/ChartsYAxisHighlight.js +0 -53
- package/modern/ChartsAxisHighlight/chartsAxisHighlightClasses.d.ts +0 -7
- package/modern/ChartsAxisHighlight/chartsAxisHighlightClasses.js +0 -6
- package/modern/ChartsAxisHighlight/index.d.ts +0 -4
- package/modern/ChartsAxisHighlight/index.js +0 -4
- package/modern/ChartsClipPath/ChartsClipPath.d.ts +0 -20
- package/modern/ChartsClipPath/ChartsClipPath.js +0 -53
- package/modern/ChartsClipPath/index.d.ts +0 -1
- package/modern/ChartsClipPath/index.js +0 -1
- package/modern/ChartsGrid/ChartsGrid.d.ts +0 -30
- package/modern/ChartsGrid/ChartsGrid.js +0 -91
- package/modern/ChartsGrid/ChartsHorizontalGrid.d.ts +0 -14
- package/modern/ChartsGrid/ChartsHorizontalGrid.js +0 -37
- package/modern/ChartsGrid/ChartsVerticalGrid.d.ts +0 -14
- package/modern/ChartsGrid/ChartsVerticalGrid.js +0 -37
- package/modern/ChartsGrid/chartsGridClasses.d.ts +0 -13
- package/modern/ChartsGrid/chartsGridClasses.js +0 -6
- package/modern/ChartsGrid/index.d.ts +0 -2
- package/modern/ChartsGrid/index.js +0 -2
- package/modern/ChartsGrid/styledComponents.d.ts +0 -2
- package/modern/ChartsGrid/styledComponents.js +0 -22
- package/modern/ChartsLabel/ChartsLabel.d.ts +0 -18
- package/modern/ChartsLabel/ChartsLabel.js +0 -43
- package/modern/ChartsLabel/ChartsLabelGradient.d.ts +0 -41
- package/modern/ChartsLabel/ChartsLabelGradient.js +0 -135
- package/modern/ChartsLabel/ChartsLabelMark.d.ts +0 -31
- package/modern/ChartsLabel/ChartsLabelMark.js +0 -124
- package/modern/ChartsLabel/index.d.ts +0 -7
- package/modern/ChartsLabel/index.js +0 -3
- package/modern/ChartsLabel/labelClasses.d.ts +0 -8
- package/modern/ChartsLabel/labelClasses.js +0 -13
- package/modern/ChartsLabel/labelGradientClasses.d.ts +0 -16
- package/modern/ChartsLabel/labelGradientClasses.js +0 -18
- package/modern/ChartsLabel/labelMarkClasses.d.ts +0 -18
- package/modern/ChartsLabel/labelMarkClasses.js +0 -18
- package/modern/ChartsLegend/ChartsLegend.d.ts +0 -27
- package/modern/ChartsLegend/ChartsLegend.js +0 -138
- package/modern/ChartsLegend/ContinuousColorLegend.d.ts +0 -56
- package/modern/ChartsLegend/ContinuousColorLegend.js +0 -271
- package/modern/ChartsLegend/PiecewiseColorLegend.d.ts +0 -42
- package/modern/ChartsLegend/PiecewiseColorLegend.js +0 -267
- package/modern/ChartsLegend/chartsLegend.types.d.ts +0 -26
- package/modern/ChartsLegend/chartsLegend.types.js +0 -1
- package/modern/ChartsLegend/chartsLegendClasses.d.ts +0 -18
- package/modern/ChartsLegend/chartsLegendClasses.js +0 -20
- package/modern/ChartsLegend/colorLegend.types.d.ts +0 -13
- package/modern/ChartsLegend/colorLegend.types.js +0 -1
- package/modern/ChartsLegend/continuousColorLegendClasses.d.ts +0 -26
- package/modern/ChartsLegend/continuousColorLegendClasses.js +0 -23
- package/modern/ChartsLegend/direction.d.ts +0 -1
- package/modern/ChartsLegend/direction.js +0 -1
- package/modern/ChartsLegend/index.d.ts +0 -16
- package/modern/ChartsLegend/index.js +0 -12
- package/modern/ChartsLegend/legend.types.d.ts +0 -9
- package/modern/ChartsLegend/legend.types.js +0 -1
- package/modern/ChartsLegend/legendContext.types.d.ts +0 -55
- package/modern/ChartsLegend/legendContext.types.js +0 -1
- package/modern/ChartsLegend/onClickContextBuilder.d.ts +0 -2
- package/modern/ChartsLegend/onClickContextBuilder.js +0 -7
- package/modern/ChartsLegend/piecewiseColorDefaultLabelFormatter.d.ts +0 -2
- package/modern/ChartsLegend/piecewiseColorDefaultLabelFormatter.js +0 -9
- package/modern/ChartsLegend/piecewiseColorLegend.types.d.ts +0 -26
- package/modern/ChartsLegend/piecewiseColorLegend.types.js +0 -1
- package/modern/ChartsLegend/piecewiseColorLegendClasses.d.ts +0 -28
- package/modern/ChartsLegend/piecewiseColorLegendClasses.js +0 -23
- package/modern/ChartsLegend/useAxis.d.ts +0 -10
- package/modern/ChartsLegend/useAxis.js +0 -42
- package/modern/ChartsOverlay/ChartsLoadingOverlay.d.ts +0 -3
- package/modern/ChartsOverlay/ChartsLoadingOverlay.js +0 -36
- package/modern/ChartsOverlay/ChartsNoDataOverlay.d.ts +0 -3
- package/modern/ChartsOverlay/ChartsNoDataOverlay.js +0 -36
- package/modern/ChartsOverlay/ChartsOverlay.d.ts +0 -45
- package/modern/ChartsOverlay/ChartsOverlay.js +0 -33
- package/modern/ChartsOverlay/index.d.ts +0 -4
- package/modern/ChartsOverlay/index.js +0 -3
- package/modern/ChartsReferenceLine/ChartsReferenceLine.d.ts +0 -10
- package/modern/ChartsReferenceLine/ChartsReferenceLine.js +0 -76
- package/modern/ChartsReferenceLine/ChartsXReferenceLine.d.ts +0 -13
- package/modern/ChartsReferenceLine/ChartsXReferenceLine.js +0 -102
- package/modern/ChartsReferenceLine/ChartsYReferenceLine.d.ts +0 -13
- package/modern/ChartsReferenceLine/ChartsYReferenceLine.js +0 -102
- package/modern/ChartsReferenceLine/chartsReferenceLineClasses.d.ts +0 -15
- package/modern/ChartsReferenceLine/chartsReferenceLineClasses.js +0 -6
- package/modern/ChartsReferenceLine/common.d.ts +0 -41
- package/modern/ChartsReferenceLine/common.js +0 -20
- package/modern/ChartsReferenceLine/index.d.ts +0 -2
- package/modern/ChartsReferenceLine/index.js +0 -2
- package/modern/ChartsSurface/ChartsSurface.d.ts +0 -25
- package/modern/ChartsSurface/ChartsSurface.js +0 -100
- package/modern/ChartsSurface/index.d.ts +0 -1
- package/modern/ChartsSurface/index.js +0 -1
- package/modern/ChartsText/ChartsText.d.ts +0 -17
- package/modern/ChartsText/ChartsText.js +0 -89
- package/modern/ChartsText/defaultTextPlacement.d.ts +0 -9
- package/modern/ChartsText/defaultTextPlacement.js +0 -34
- package/modern/ChartsText/index.d.ts +0 -3
- package/modern/ChartsText/index.js +0 -1
- package/modern/ChartsTooltip/ChartTooltip.types.d.ts +0 -15
- package/modern/ChartsTooltip/ChartTooltip.types.js +0 -1
- package/modern/ChartsTooltip/ChartsAxisTooltipContent.d.ts +0 -15
- package/modern/ChartsTooltip/ChartsAxisTooltipContent.js +0 -96
- package/modern/ChartsTooltip/ChartsItemTooltipContent.d.ts +0 -15
- package/modern/ChartsTooltip/ChartsItemTooltipContent.js +0 -65
- package/modern/ChartsTooltip/ChartsTooltip.d.ts +0 -17
- package/modern/ChartsTooltip/ChartsTooltip.js +0 -199
- package/modern/ChartsTooltip/ChartsTooltipContainer.d.ts +0 -33
- package/modern/ChartsTooltip/ChartsTooltipContainer.js +0 -296
- package/modern/ChartsTooltip/ChartsTooltipTable.d.ts +0 -16
- package/modern/ChartsTooltip/ChartsTooltipTable.js +0 -85
- package/modern/ChartsTooltip/chartsTooltipClasses.d.ts +0 -26
- package/modern/ChartsTooltip/chartsTooltipClasses.js +0 -22
- package/modern/ChartsTooltip/index.d.ts +0 -11
- package/modern/ChartsTooltip/index.js +0 -10
- package/modern/ChartsTooltip/useAxisTooltip.d.ts +0 -20
- package/modern/ChartsTooltip/useAxisTooltip.js +0 -88
- package/modern/ChartsTooltip/useItemTooltip.d.ts +0 -12
- package/modern/ChartsTooltip/useItemTooltip.js +0 -40
- package/modern/ChartsTooltip/utils.d.ts +0 -16
- package/modern/ChartsTooltip/utils.js +0 -84
- package/modern/ChartsXAxis/ChartsXAxis.d.ts +0 -16
- package/modern/ChartsXAxis/ChartsXAxis.js +0 -457
- package/modern/ChartsXAxis/index.d.ts +0 -1
- package/modern/ChartsXAxis/index.js +0 -1
- package/modern/ChartsYAxis/ChartsYAxis.d.ts +0 -16
- package/modern/ChartsYAxis/ChartsYAxis.js +0 -327
- package/modern/ChartsYAxis/index.d.ts +0 -1
- package/modern/ChartsYAxis/index.js +0 -1
- package/modern/Gauge/Gauge.d.ts +0 -10
- package/modern/Gauge/Gauge.js +0 -144
- package/modern/Gauge/GaugeContainer.d.ts +0 -10
- package/modern/Gauge/GaugeContainer.js +0 -174
- package/modern/Gauge/GaugeProvider.d.ts +0 -117
- package/modern/Gauge/GaugeProvider.js +0 -91
- package/modern/Gauge/GaugeReferenceArc.d.ts +0 -2
- package/modern/Gauge/GaugeReferenceArc.js +0 -37
- package/modern/Gauge/GaugeValueArc.d.ts +0 -2
- package/modern/Gauge/GaugeValueArc.js +0 -44
- package/modern/Gauge/GaugeValueText.d.ts +0 -15
- package/modern/Gauge/GaugeValueText.js +0 -71
- package/modern/Gauge/gaugeClasses.d.ts +0 -14
- package/modern/Gauge/gaugeClasses.js +0 -7
- package/modern/Gauge/index.d.ts +0 -7
- package/modern/Gauge/index.js +0 -7
- package/modern/Gauge/utils.d.ts +0 -24
- package/modern/Gauge/utils.js +0 -66
- package/modern/LineChart/AnimatedArea.d.ts +0 -26
- package/modern/LineChart/AnimatedArea.js +0 -78
- package/modern/LineChart/AnimatedLine.d.ts +0 -26
- package/modern/LineChart/AnimatedLine.js +0 -78
- package/modern/LineChart/AppearingMask.d.ts +0 -12
- package/modern/LineChart/AppearingMask.js +0 -43
- package/modern/LineChart/AreaElement.d.ts +0 -61
- package/modern/LineChart/AreaElement.js +0 -111
- package/modern/LineChart/AreaPlot.d.ts +0 -29
- package/modern/LineChart/AreaPlot.js +0 -215
- package/modern/LineChart/CircleMarkElement.d.ts +0 -30
- package/modern/LineChart/CircleMarkElement.js +0 -111
- package/modern/LineChart/LineChart.d.ts +0 -82
- package/modern/LineChart/LineChart.js +0 -321
- package/modern/LineChart/LineChart.plugins.d.ts +0 -7
- package/modern/LineChart/LineChart.plugins.js +0 -5
- package/modern/LineChart/LineElement.d.ts +0 -61
- package/modern/LineChart/LineElement.js +0 -111
- package/modern/LineChart/LineHighlightElement.d.ts +0 -36
- package/modern/LineChart/LineHighlightElement.js +0 -79
- package/modern/LineChart/LineHighlightPlot.d.ts +0 -36
- package/modern/LineChart/LineHighlightPlot.js +0 -122
- package/modern/LineChart/LinePlot.d.ts +0 -28
- package/modern/LineChart/LinePlot.js +0 -199
- package/modern/LineChart/MarkElement.d.ts +0 -32
- package/modern/LineChart/MarkElement.js +0 -124
- package/modern/LineChart/MarkPlot.d.ts +0 -42
- package/modern/LineChart/MarkPlot.js +0 -181
- package/modern/LineChart/index.d.ts +0 -13
- package/modern/LineChart/index.js +0 -12
- package/modern/LineChart/markElementClasses.d.ts +0 -20
- package/modern/LineChart/seriesConfig/extremums.d.ts +0 -3
- package/modern/LineChart/seriesConfig/extremums.js +0 -57
- package/modern/LineChart/seriesConfig/getColor.d.ts +0 -3
- package/modern/LineChart/seriesConfig/getColor.js +0 -26
- package/modern/LineChart/seriesConfig/getSeriesWithDefaultValues.d.ts +0 -3
- package/modern/LineChart/seriesConfig/getSeriesWithDefaultValues.js +0 -8
- package/modern/LineChart/seriesConfig/index.d.ts +0 -2
- package/modern/LineChart/seriesConfig/index.js +0 -15
- package/modern/LineChart/seriesConfig/legend.d.ts +0 -3
- package/modern/LineChart/seriesConfig/legend.js +0 -22
- package/modern/LineChart/seriesConfig/seriesProcessor.d.ts +0 -3
- package/modern/LineChart/seriesConfig/seriesProcessor.js +0 -77
- package/modern/LineChart/seriesConfig/tooltip.d.ts +0 -3
- package/modern/LineChart/seriesConfig/tooltip.js +0 -25
- package/modern/LineChart/useLineChartProps.d.ts +0 -40
- package/modern/LineChart/useLineChartProps.js +0 -140
- package/modern/PieChart/PieArc.d.ts +0 -36
- package/modern/PieChart/PieArc.js +0 -108
- package/modern/PieChart/PieArcLabel.d.ts +0 -37
- package/modern/PieChart/PieArcLabel.js +0 -113
- package/modern/PieChart/PieArcLabelPlot.d.ts +0 -36
- package/modern/PieChart/PieArcLabelPlot.js +0 -197
- package/modern/PieChart/PieArcPlot.d.ts +0 -43
- package/modern/PieChart/PieArcPlot.js +0 -170
- package/modern/PieChart/PieChart.d.ts +0 -49
- package/modern/PieChart/PieChart.js +0 -201
- package/modern/PieChart/PieChart.plugins.d.ts +0 -5
- package/modern/PieChart/PieChart.plugins.js +0 -3
- package/modern/PieChart/PiePlot.d.ts +0 -32
- package/modern/PieChart/PiePlot.js +0 -163
- package/modern/PieChart/dataTransform/transition.d.ts +0 -4
- package/modern/PieChart/dataTransform/transition.js +0 -137
- package/modern/PieChart/dataTransform/useTransformData.d.ts +0 -16
- package/modern/PieChart/dataTransform/useTransformData.js +0 -50
- package/modern/PieChart/getPieCoordinates.d.ts +0 -7
- package/modern/PieChart/getPieCoordinates.js +0 -19
- package/modern/PieChart/index.d.ts +0 -7
- package/modern/PieChart/index.js +0 -7
- package/modern/PieChart/seriesConfig/getColor.d.ts +0 -3
- package/modern/PieChart/seriesConfig/getColor.js +0 -6
- package/modern/PieChart/seriesConfig/getSeriesWithDefaultValues.d.ts +0 -3
- package/modern/PieChart/seriesConfig/getSeriesWithDefaultValues.js +0 -11
- package/modern/PieChart/seriesConfig/index.d.ts +0 -2
- package/modern/PieChart/seriesConfig/index.js +0 -12
- package/modern/PieChart/seriesConfig/legend.d.ts +0 -3
- package/modern/PieChart/seriesConfig/legend.js +0 -25
- package/modern/PieChart/seriesConfig/seriesProcessor.d.ts +0 -3
- package/modern/PieChart/seriesConfig/seriesProcessor.js +0 -49
- package/modern/PieChart/seriesConfig/tooltip.d.ts +0 -3
- package/modern/PieChart/seriesConfig/tooltip.js +0 -29
- package/modern/RadarChart/RadarAxisHighlight/RadarAxisHighlight.d.ts +0 -20
- package/modern/RadarChart/RadarAxisHighlight/RadarAxisHighlight.js +0 -42
- package/modern/RadarChart/RadarAxisHighlight/RadarAxisPointsHighlight.d.ts +0 -13
- package/modern/RadarChart/RadarAxisHighlight/RadarAxisPointsHighlight.js +0 -47
- package/modern/RadarChart/RadarAxisHighlight/RadarAxisSliceHighlight.d.ts +0 -13
- package/modern/RadarChart/RadarAxisHighlight/RadarAxisSliceHighlight.js +0 -50
- package/modern/RadarChart/RadarAxisHighlight/index.d.ts +0 -1
- package/modern/RadarChart/RadarAxisHighlight/index.js +0 -1
- package/modern/RadarChart/RadarAxisHighlight/radarAxisHighlightClasses.d.ts +0 -13
- package/modern/RadarChart/RadarAxisHighlight/radarAxisHighlightClasses.js +0 -6
- package/modern/RadarChart/RadarAxisHighlight/useRadarAxisHighlight.d.ts +0 -62
- package/modern/RadarChart/RadarAxisHighlight/useRadarAxisHighlight.js +0 -96
- package/modern/RadarChart/RadarChart.d.ts +0 -25
- package/modern/RadarChart/RadarChart.js +0 -177
- package/modern/RadarChart/RadarDataProvider/RadarDataProvider.d.ts +0 -30
- package/modern/RadarChart/RadarDataProvider/RadarDataProvider.js +0 -192
- package/modern/RadarChart/RadarDataProvider/index.d.ts +0 -1
- package/modern/RadarChart/RadarDataProvider/index.js +0 -1
- package/modern/RadarChart/RadarDataProvider/radar.types.d.ts +0 -43
- package/modern/RadarChart/RadarDataProvider/radar.types.js +0 -1
- package/modern/RadarChart/RadarGrid/CircularRadarGrid.d.ts +0 -6
- package/modern/RadarChart/RadarGrid/CircularRadarGrid.js +0 -36
- package/modern/RadarChart/RadarGrid/RadarGrid.d.ts +0 -7
- package/modern/RadarChart/RadarGrid/RadarGrid.js +0 -49
- package/modern/RadarChart/RadarGrid/RadarGrid.types.d.ts +0 -24
- package/modern/RadarChart/RadarGrid/RadarGrid.types.js +0 -1
- package/modern/RadarChart/RadarGrid/SharpRadarGrid.d.ts +0 -6
- package/modern/RadarChart/RadarGrid/SharpRadarGrid.js +0 -36
- package/modern/RadarChart/RadarGrid/index.d.ts +0 -2
- package/modern/RadarChart/RadarGrid/index.js +0 -2
- package/modern/RadarChart/RadarGrid/useRadarGridData.d.ts +0 -11
- package/modern/RadarChart/RadarGrid/useRadarGridData.js +0 -38
- package/modern/RadarChart/RadarMetricLabels/RadarMetricLabels.d.ts +0 -3
- package/modern/RadarChart/RadarMetricLabels/RadarMetricLabels.js +0 -35
- package/modern/RadarChart/RadarMetricLabels/index.d.ts +0 -1
- package/modern/RadarChart/RadarMetricLabels/index.js +0 -1
- package/modern/RadarChart/RadarMetricLabels/useRadarMetricData.d.ts +0 -8
- package/modern/RadarChart/RadarMetricLabels/useRadarMetricData.js +0 -35
- package/modern/RadarChart/RadarSeriesPlot/RadarSeriesArea.d.ts +0 -7
- package/modern/RadarChart/RadarSeriesPlot/RadarSeriesArea.js +0 -39
- package/modern/RadarChart/RadarSeriesPlot/RadarSeriesMarks.d.ts +0 -7
- package/modern/RadarChart/RadarSeriesPlot/RadarSeriesMarks.js +0 -38
- package/modern/RadarChart/RadarSeriesPlot/RadarSeriesPlot.d.ts +0 -7
- package/modern/RadarChart/RadarSeriesPlot/RadarSeriesPlot.js +0 -68
- package/modern/RadarChart/RadarSeriesPlot/RadarSeriesPlot.types.d.ts +0 -18
- package/modern/RadarChart/RadarSeriesPlot/RadarSeriesPlot.types.js +0 -1
- package/modern/RadarChart/RadarSeriesPlot/getAreaPath.d.ts +0 -4
- package/modern/RadarChart/RadarSeriesPlot/getAreaPath.js +0 -3
- package/modern/RadarChart/RadarSeriesPlot/index.d.ts +0 -6
- package/modern/RadarChart/RadarSeriesPlot/index.js +0 -4
- package/modern/RadarChart/RadarSeriesPlot/radarSeriesPlotClasses.d.ts +0 -12
- package/modern/RadarChart/RadarSeriesPlot/radarSeriesPlotClasses.js +0 -15
- package/modern/RadarChart/RadarSeriesPlot/useRadarSeriesData.d.ts +0 -27
- package/modern/RadarChart/RadarSeriesPlot/useRadarSeriesData.js +0 -62
- package/modern/RadarChart/index.d.ts +0 -8
- package/modern/RadarChart/index.js +0 -6
- package/modern/RadarChart/seriesConfig/extremums.d.ts +0 -3
- package/modern/RadarChart/seriesConfig/extremums.js +0 -18
- package/modern/RadarChart/seriesConfig/formatter.d.ts +0 -3
- package/modern/RadarChart/seriesConfig/formatter.js +0 -12
- package/modern/RadarChart/seriesConfig/getColor.d.ts +0 -3
- package/modern/RadarChart/seriesConfig/getColor.js +0 -4
- package/modern/RadarChart/seriesConfig/getSeriesWithDefaultValues.d.ts +0 -3
- package/modern/RadarChart/seriesConfig/getSeriesWithDefaultValues.js +0 -8
- package/modern/RadarChart/seriesConfig/index.d.ts +0 -2
- package/modern/RadarChart/seriesConfig/index.js +0 -15
- package/modern/RadarChart/seriesConfig/legend.d.ts +0 -3
- package/modern/RadarChart/seriesConfig/legend.js +0 -22
- package/modern/RadarChart/seriesConfig/tooltip.d.ts +0 -3
- package/modern/RadarChart/seriesConfig/tooltip.js +0 -25
- package/modern/RadarChart/useRadarChartProps.d.ts +0 -26
- package/modern/RadarChart/useRadarChartProps.js +0 -77
- package/modern/ScatterChart/Scatter.d.ts +0 -36
- package/modern/ScatterChart/Scatter.js +0 -134
- package/modern/ScatterChart/ScatterChart.d.ts +0 -70
- package/modern/ScatterChart/ScatterChart.js +0 -337
- package/modern/ScatterChart/ScatterChart.plugins.d.ts +0 -8
- package/modern/ScatterChart/ScatterChart.plugins.js +0 -6
- package/modern/ScatterChart/ScatterMarker.d.ts +0 -46
- package/modern/ScatterChart/ScatterMarker.js +0 -70
- package/modern/ScatterChart/ScatterMarker.types.d.ts +0 -24
- package/modern/ScatterChart/ScatterMarker.types.js +0 -1
- package/modern/ScatterChart/ScatterPlot.d.ts +0 -35
- package/modern/ScatterChart/ScatterPlot.js +0 -99
- package/modern/ScatterChart/index.d.ts +0 -5
- package/modern/ScatterChart/index.js +0 -5
- package/modern/ScatterChart/seriesConfig/extremums.d.ts +0 -3
- package/modern/ScatterChart/seriesConfig/extremums.js +0 -55
- package/modern/ScatterChart/seriesConfig/getColor.d.ts +0 -3
- package/modern/ScatterChart/seriesConfig/getColor.js +0 -43
- package/modern/ScatterChart/seriesConfig/getSeriesWithDefaultValues.d.ts +0 -3
- package/modern/ScatterChart/seriesConfig/getSeriesWithDefaultValues.js +0 -8
- package/modern/ScatterChart/seriesConfig/index.d.ts +0 -2
- package/modern/ScatterChart/seriesConfig/index.js +0 -15
- package/modern/ScatterChart/seriesConfig/legend.d.ts +0 -3
- package/modern/ScatterChart/seriesConfig/legend.js +0 -22
- package/modern/ScatterChart/seriesConfig/seriesProcessor.d.ts +0 -3
- package/modern/ScatterChart/seriesConfig/seriesProcessor.js +0 -33
- package/modern/ScatterChart/seriesConfig/tooltip.d.ts +0 -3
- package/modern/ScatterChart/seriesConfig/tooltip.js +0 -25
- package/modern/ScatterChart/useScatterChartProps.d.ts +0 -29
- package/modern/ScatterChart/useScatterChartProps.js +0 -102
- package/modern/SparkLineChart/SparkLineChart.d.ts +0 -101
- package/modern/SparkLineChart/SparkLineChart.js +0 -374
- package/modern/SparkLineChart/index.d.ts +0 -1
- package/modern/SparkLineChart/index.js +0 -1
- package/modern/colorPalettes/colorPalettes.d.ts +0 -16
- package/modern/colorPalettes/colorPalettes.js +0 -12
- package/modern/colorPalettes/index.d.ts +0 -1
- package/modern/colorPalettes/index.js +0 -1
- package/modern/constants/index.d.ts +0 -13
- package/modern/constants/index.js +0 -15
- package/modern/context/AnimationProvider/Animation.types.d.ts +0 -15
- package/modern/context/AnimationProvider/Animation.types.js +0 -1
- package/modern/context/AnimationProvider/AnimationContext.d.ts +0 -4
- package/modern/context/AnimationProvider/AnimationContext.js +0 -10
- package/modern/context/AnimationProvider/AnimationProvider.d.ts +0 -4
- package/modern/context/AnimationProvider/AnimationProvider.js +0 -55
- package/modern/context/AnimationProvider/index.d.ts +0 -4
- package/modern/context/AnimationProvider/index.js +0 -4
- package/modern/context/AnimationProvider/useSkipAnimation.d.ts +0 -6
- package/modern/context/AnimationProvider/useSkipAnimation.js +0 -20
- package/modern/context/ChartProvider/ChartContext.d.ts +0 -6
- package/modern/context/ChartProvider/ChartContext.js +0 -8
- package/modern/context/ChartProvider/ChartProvider.d.ts +0 -8
- package/modern/context/ChartProvider/ChartProvider.js +0 -40
- package/modern/context/ChartProvider/ChartProvider.types.d.ts +0 -39
- package/modern/context/ChartProvider/ChartProvider.types.js +0 -1
- package/modern/context/ChartProvider/index.d.ts +0 -3
- package/modern/context/ChartProvider/index.js +0 -3
- package/modern/context/ChartProvider/useChartContext.d.ts +0 -3
- package/modern/context/ChartProvider/useChartContext.js +0 -11
- package/modern/context/context.types.d.ts +0 -4
- package/modern/context/context.types.js +0 -1
- package/modern/context/index.d.ts +0 -1
- package/modern/context/index.js +0 -1
- package/modern/hooks/getValueToPositionMapper.d.ts +0 -8
- package/modern/hooks/getValueToPositionMapper.js +0 -15
- package/modern/hooks/index.d.ts +0 -16
- package/modern/hooks/index.js +0 -16
- package/modern/hooks/useAxis.d.ts +0 -51
- package/modern/hooks/useAxis.js +0 -119
- package/modern/hooks/useAxisEvents.d.ts +0 -0
- package/modern/hooks/useAxisEvents.js +0 -0
- package/modern/hooks/useBarSeries.d.ts +0 -36
- package/modern/hooks/useBarSeries.js +0 -43
- package/modern/hooks/useChartGradientId.d.ts +0 -31
- package/modern/hooks/useChartGradientId.js +0 -47
- package/modern/hooks/useChartId.d.ts +0 -5
- package/modern/hooks/useChartId.js +0 -14
- package/modern/hooks/useColorScale.d.ts +0 -22
- package/modern/hooks/useColorScale.js +0 -37
- package/modern/hooks/useDrawingArea.d.ts +0 -16
- package/modern/hooks/useDrawingArea.js +0 -16
- package/modern/hooks/useInteractionItemProps.d.ts +0 -16
- package/modern/hooks/useInteractionItemProps.js +0 -76
- package/modern/hooks/useIsHydrated.d.ts +0 -4
- package/modern/hooks/useIsHydrated.js +0 -14
- package/modern/hooks/useItemHighlighted.d.ts +0 -23
- package/modern/hooks/useItemHighlighted.js +0 -23
- package/modern/hooks/useItemHighlightedGetter.d.ts +0 -12
- package/modern/hooks/useItemHighlightedGetter.js +0 -23
- package/modern/hooks/useLegend.d.ts +0 -13
- package/modern/hooks/useLegend.js +0 -30
- package/modern/hooks/useLineSeries.d.ts +0 -36
- package/modern/hooks/useLineSeries.js +0 -43
- package/modern/hooks/useMounted.d.ts +0 -1
- package/modern/hooks/useMounted.js +0 -18
- package/modern/hooks/usePieSeries.d.ts +0 -35
- package/modern/hooks/usePieSeries.js +0 -42
- package/modern/hooks/useRadarSeries.d.ts +0 -35
- package/modern/hooks/useRadarSeries.js +0 -42
- package/modern/hooks/useScale.d.ts +0 -24
- package/modern/hooks/useScale.js +0 -47
- package/modern/hooks/useScatterSeries.d.ts +0 -35
- package/modern/hooks/useScatterSeries.js +0 -42
- package/modern/hooks/useSeries.d.ts +0 -7
- package/modern/hooks/useSeries.js +0 -15
- package/modern/hooks/useSvgRef.d.ts +0 -6
- package/modern/hooks/useSvgRef.js +0 -15
- package/modern/hooks/useTicks.d.ts +0 -59
- package/modern/hooks/useTicks.js +0 -91
- package/modern/hooks/useZAxis.d.ts +0 -7
- package/modern/hooks/useZAxis.js +0 -27
- package/modern/index.d.ts +0 -26
- package/modern/index.js +0 -33
- package/modern/internals/angleConversion.d.ts +0 -2
- package/modern/internals/angleConversion.js +0 -12
- package/modern/internals/clampAngle.d.ts +0 -6
- package/modern/internals/clampAngle.js +0 -11
- package/modern/internals/cleanId.d.ts +0 -4
- package/modern/internals/cleanId.js +0 -6
- package/modern/internals/colorScale.d.ts +0 -5
- package/modern/internals/colorScale.js +0 -16
- package/modern/internals/components/AxisSharedComponents.d.ts +0 -1
- package/modern/internals/components/AxisSharedComponents.js +0 -26
- package/modern/internals/components/ChartsAxesGradients/ChartsAxesGradients.d.ts +0 -2
- package/modern/internals/components/ChartsAxesGradients/ChartsAxesGradients.js +0 -133
- package/modern/internals/components/ChartsAxesGradients/ChartsContinuousGradient.d.ts +0 -19
- package/modern/internals/components/ChartsAxesGradients/ChartsContinuousGradient.js +0 -56
- package/modern/internals/components/ChartsAxesGradients/ChartsContinuousGradientObjectBound.d.ts +0 -13
- package/modern/internals/components/ChartsAxesGradients/ChartsContinuousGradientObjectBound.js +0 -61
- package/modern/internals/components/ChartsAxesGradients/ChartsPiecewiseGradient.d.ts +0 -12
- package/modern/internals/components/ChartsAxesGradients/ChartsPiecewiseGradient.js +0 -46
- package/modern/internals/components/ChartsAxesGradients/index.d.ts +0 -1
- package/modern/internals/components/ChartsAxesGradients/index.js +0 -1
- package/modern/internals/components/ChartsWrapper/ChartsWrapper.d.ts +0 -18
- package/modern/internals/components/ChartsWrapper/ChartsWrapper.js +0 -66
- package/modern/internals/components/ChartsWrapper/index.d.ts +0 -1
- package/modern/internals/components/ChartsWrapper/index.js +0 -1
- package/modern/internals/configInit.d.ts +0 -16
- package/modern/internals/configInit.js +0 -38
- package/modern/internals/consumeSlots.d.ts +0 -48
- package/modern/internals/consumeSlots.js +0 -97
- package/modern/internals/consumeThemeProps.d.ts +0 -50
- package/modern/internals/consumeThemeProps.js +0 -70
- package/modern/internals/createSeriesSelectorOfType.d.ts +0 -4
- package/modern/internals/createSeriesSelectorOfType.js +0 -43
- package/modern/internals/defaultizeMargin.d.ts +0 -3
- package/modern/internals/defaultizeMargin.js +0 -15
- package/modern/internals/defaultizeValueFormatter.d.ts +0 -6
- package/modern/internals/defaultizeValueFormatter.js +0 -10
- package/modern/internals/degToRad.d.ts +0 -2
- package/modern/internals/degToRad.js +0 -4
- package/modern/internals/domUtils.d.ts +0 -18
- package/modern/internals/domUtils.js +0 -129
- package/modern/internals/ellipsize.d.ts +0 -20
- package/modern/internals/ellipsize.js +0 -53
- package/modern/internals/geometry.d.ts +0 -9
- package/modern/internals/geometry.js +0 -35
- package/modern/internals/getCurve.d.ts +0 -2
- package/modern/internals/getCurve.js +0 -27
- package/modern/internals/getGraphemeCount.d.ts +0 -4
- package/modern/internals/getGraphemeCount.js +0 -19
- package/modern/internals/getLabel.d.ts +0 -1
- package/modern/internals/getLabel.js +0 -3
- package/modern/internals/getPercentageValue.d.ts +0 -7
- package/modern/internals/getPercentageValue.js +0 -28
- package/modern/internals/getSVGPoint.d.ts +0 -6
- package/modern/internals/getSVGPoint.js +0 -11
- package/modern/internals/getScale.d.ts +0 -2
- package/modern/internals/getScale.js +0 -17
- package/modern/internals/getSymbol.d.ts +0 -2
- package/modern/internals/getSymbol.js +0 -21
- package/modern/internals/getWordsByLines.d.ts +0 -33
- package/modern/internals/getWordsByLines.js +0 -14
- package/modern/internals/index.d.ts +0 -49
- package/modern/internals/index.js +0 -63
- package/modern/internals/invertTextAnchor.d.ts +0 -2
- package/modern/internals/invertTextAnchor.js +0 -10
- package/modern/internals/isBandScale.d.ts +0 -5
- package/modern/internals/isBandScale.js +0 -3
- package/modern/internals/isCartesian.d.ts +0 -7
- package/modern/internals/isCartesian.js +0 -7
- package/modern/internals/isDefined.d.ts +0 -1
- package/modern/internals/isDefined.js +0 -3
- package/modern/internals/isInfinity.d.ts +0 -1
- package/modern/internals/isInfinity.js +0 -3
- package/modern/internals/isPolar.d.ts +0 -7
- package/modern/internals/isPolar.js +0 -7
- package/modern/internals/notNull.d.ts +0 -1
- package/modern/internals/notNull.js +0 -3
- package/modern/internals/plugins/allPlugins.d.ts +0 -14
- package/modern/internals/plugins/allPlugins.js +0 -10
- package/modern/internals/plugins/corePlugins/corePlugins.d.ts +0 -9
- package/modern/internals/plugins/corePlugins/corePlugins.js +0 -9
- package/modern/internals/plugins/corePlugins/index.d.ts +0 -2
- package/modern/internals/plugins/corePlugins/index.js +0 -1
- package/modern/internals/plugins/corePlugins/useChartDimensions/index.d.ts +0 -3
- package/modern/internals/plugins/corePlugins/useChartDimensions/index.js +0 -2
- package/modern/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.d.ts +0 -3
- package/modern/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.js +0 -196
- package/modern/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.selectors.d.ts +0 -708
- package/modern/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.selectors.js +0 -26
- package/modern/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.types.d.ts +0 -90
- package/modern/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.types.js +0 -1
- package/modern/internals/plugins/corePlugins/useChartId/index.d.ts +0 -3
- package/modern/internals/plugins/corePlugins/useChartId/index.js +0 -2
- package/modern/internals/plugins/corePlugins/useChartId/useChartId.d.ts +0 -3
- package/modern/internals/plugins/corePlugins/useChartId/useChartId.js +0 -32
- package/modern/internals/plugins/corePlugins/useChartId/useChartId.selectors.d.ts +0 -36
- package/modern/internals/plugins/corePlugins/useChartId/useChartId.selectors.js +0 -9
- package/modern/internals/plugins/corePlugins/useChartId/useChartId.types.d.ts +0 -20
- package/modern/internals/plugins/corePlugins/useChartId/useChartId.types.js +0 -1
- package/modern/internals/plugins/corePlugins/useChartId/useChartId.utils.d.ts +0 -1
- package/modern/internals/plugins/corePlugins/useChartId/useChartId.utils.js +0 -5
- package/modern/internals/plugins/corePlugins/useChartSeries/index.d.ts +0 -3
- package/modern/internals/plugins/corePlugins/useChartSeries/index.js +0 -2
- package/modern/internals/plugins/corePlugins/useChartSeries/processSeries.d.ts +0 -23
- package/modern/internals/plugins/corePlugins/useChartSeries/processSeries.js +0 -44
- package/modern/internals/plugins/corePlugins/useChartSeries/useChartSeries.d.ts +0 -3
- package/modern/internals/plugins/corePlugins/useChartSeries/useChartSeries.js +0 -71
- package/modern/internals/plugins/corePlugins/useChartSeries/useChartSeries.selectors.d.ts +0 -61
- package/modern/internals/plugins/corePlugins/useChartSeries/useChartSeries.selectors.js +0 -4
- package/modern/internals/plugins/corePlugins/useChartSeries/useChartSeries.types.d.ts +0 -51
- package/modern/internals/plugins/corePlugins/useChartSeries/useChartSeries.types.js +0 -1
- package/modern/internals/plugins/corePlugins/useChartSeries/useColorProcessor.d.ts +0 -8
- package/modern/internals/plugins/corePlugins/useChartSeries/useColorProcessor.js +0 -21
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/computeAxisValue.d.ts +0 -29
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/computeAxisValue.js +0 -135
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/createAxisFilterMapper.d.ts +0 -22
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/createAxisFilterMapper.js +0 -63
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/createZoomLookup.d.ts +0 -4
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/createZoomLookup.js +0 -13
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeAxis.d.ts +0 -6
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeAxis.js +0 -92
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeZoom.d.ts +0 -4
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeZoom.js +0 -25
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisExtremum.d.ts +0 -6
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisExtremum.js +0 -22
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisValue.d.ts +0 -11
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisValue.js +0 -65
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/index.d.ts +0 -8
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/index.js +0 -7
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/useChartAxisSize.selectors.d.ts +0 -216
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/useChartAxisSize.selectors.js +0 -6
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.d.ts +0 -3
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.js +0 -170
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.types.d.ts +0 -75
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.types.js +0 -1
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisLayout.selectors.d.ts +0 -70
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisLayout.selectors.js +0 -4
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisRendering.selectors.d.ts +0 -3106
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisRendering.selectors.js +0 -89
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianInteraction.selectors.d.ts +0 -1
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianInteraction.selectors.js +0 -41
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/useInternalIsZoomInteracting.d.ts +0 -10
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/useInternalIsZoomInteracting.js +0 -19
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/zoom.d.ts +0 -10
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/zoom.js +0 -19
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/zoom.types.d.ts +0 -68
- package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/zoom.types.js +0 -1
- package/modern/internals/plugins/featurePlugins/useChartHighlight/createIsFaded.d.ts +0 -3
- package/modern/internals/plugins/featurePlugins/useChartHighlight/createIsFaded.js +0 -12
- package/modern/internals/plugins/featurePlugins/useChartHighlight/createIsHighlighted.d.ts +0 -3
- package/modern/internals/plugins/featurePlugins/useChartHighlight/createIsHighlighted.js +0 -12
- package/modern/internals/plugins/featurePlugins/useChartHighlight/highlightConfig.types.d.ts +0 -20
- package/modern/internals/plugins/featurePlugins/useChartHighlight/highlightConfig.types.js +0 -1
- package/modern/internals/plugins/featurePlugins/useChartHighlight/index.d.ts +0 -4
- package/modern/internals/plugins/featurePlugins/useChartHighlight/index.js +0 -2
- package/modern/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.d.ts +0 -3
- package/modern/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.js +0 -44
- package/modern/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.selectors.d.ts +0 -634
- package/modern/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.selectors.js +0 -31
- package/modern/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.types.d.ts +0 -71
- package/modern/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.types.js +0 -1
- package/modern/internals/plugins/featurePlugins/useChartInteraction/index.d.ts +0 -3
- package/modern/internals/plugins/featurePlugins/useChartInteraction/index.js +0 -2
- package/modern/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.d.ts +0 -3
- package/modern/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.js +0 -67
- package/modern/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.selectors.d.ts +0 -242
- package/modern/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.selectors.js +0 -8
- package/modern/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.types.d.ts +0 -43
- package/modern/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.types.js +0 -1
- package/modern/internals/plugins/featurePlugins/useChartPolarAxis/computeAxisValue.d.ts +0 -27
- package/modern/internals/plugins/featurePlugins/useChartPolarAxis/computeAxisValue.js +0 -128
- package/modern/internals/plugins/featurePlugins/useChartPolarAxis/coordinateTransformation.d.ts +0 -12
- package/modern/internals/plugins/featurePlugins/useChartPolarAxis/coordinateTransformation.js +0 -8
- package/modern/internals/plugins/featurePlugins/useChartPolarAxis/defaultizeAxis.d.ts +0 -5
- package/modern/internals/plugins/featurePlugins/useChartPolarAxis/defaultizeAxis.js +0 -24
- package/modern/internals/plugins/featurePlugins/useChartPolarAxis/getAxisExtremum.d.ts +0 -5
- package/modern/internals/plugins/featurePlugins/useChartPolarAxis/getAxisExtremum.js +0 -21
- package/modern/internals/plugins/featurePlugins/useChartPolarAxis/getAxisValue.d.ts +0 -11
- package/modern/internals/plugins/featurePlugins/useChartPolarAxis/index.d.ts +0 -3
- package/modern/internals/plugins/featurePlugins/useChartPolarAxis/index.js +0 -2
- package/modern/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.d.ts +0 -3
- package/modern/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.js +0 -164
- package/modern/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.selectors.d.ts +0 -2056
- package/modern/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.selectors.js +0 -30
- package/modern/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.types.d.ts +0 -85
- package/modern/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.types.js +0 -1
- package/modern/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarInteraction.selectors.d.ts +0 -3669
- package/modern/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarInteraction.selectors.js +0 -22
- package/modern/internals/plugins/featurePlugins/useChartVoronoi/index.d.ts +0 -3
- package/modern/internals/plugins/featurePlugins/useChartVoronoi/index.js +0 -2
- package/modern/internals/plugins/featurePlugins/useChartVoronoi/useChartVoronoi.d.ts +0 -3
- package/modern/internals/plugins/featurePlugins/useChartVoronoi/useChartVoronoi.js +0 -231
- package/modern/internals/plugins/featurePlugins/useChartVoronoi/useChartVoronoi.selectors.d.ts +0 -29
- package/modern/internals/plugins/featurePlugins/useChartVoronoi/useChartVoronoi.selectors.js +0 -3
- package/modern/internals/plugins/featurePlugins/useChartVoronoi/useChartVoronoi.types.d.ts +0 -54
- package/modern/internals/plugins/featurePlugins/useChartVoronoi/useChartVoronoi.types.js +0 -1
- package/modern/internals/plugins/featurePlugins/useChartZAxis/index.d.ts +0 -3
- package/modern/internals/plugins/featurePlugins/useChartZAxis/index.js +0 -2
- package/modern/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.d.ts +0 -3
- package/modern/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.js +0 -86
- package/modern/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.selectors.d.ts +0 -45
- package/modern/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.selectors.js +0 -3
- package/modern/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.types.d.ts +0 -38
- package/modern/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.types.js +0 -1
- package/modern/internals/plugins/featurePlugins/useChartZAxis/utils.d.ts +0 -0
- package/modern/internals/plugins/featurePlugins/useChartZAxis/utils.js +0 -0
- package/modern/internals/plugins/models/chart.d.ts +0 -14
- package/modern/internals/plugins/models/chart.js +0 -1
- package/modern/internals/plugins/models/helpers.d.ts +0 -7
- package/modern/internals/plugins/models/helpers.js +0 -1
- package/modern/internals/plugins/models/index.d.ts +0 -4
- package/modern/internals/plugins/models/index.js +0 -4
- package/modern/internals/plugins/models/plugin.d.ts +0 -171
- package/modern/internals/plugins/models/plugin.js +0 -1
- package/modern/internals/plugins/models/seriesConfig/cartesianExtremumGetter.types.d.ts +0 -22
- package/modern/internals/plugins/models/seriesConfig/cartesianExtremumGetter.types.js +0 -1
- package/modern/internals/plugins/models/seriesConfig/colorProcessor.types.d.ts +0 -5
- package/modern/internals/plugins/models/seriesConfig/colorProcessor.types.js +0 -1
- package/modern/internals/plugins/models/seriesConfig/getSeriesWithDefaultValues.types.d.ts +0 -3
- package/modern/internals/plugins/models/seriesConfig/getSeriesWithDefaultValues.types.js +0 -1
- package/modern/internals/plugins/models/seriesConfig/index.d.ts +0 -8
- package/modern/internals/plugins/models/seriesConfig/index.js +0 -8
- package/modern/internals/plugins/models/seriesConfig/legendGetter.types.d.ts +0 -4
- package/modern/internals/plugins/models/seriesConfig/legendGetter.types.js +0 -1
- package/modern/internals/plugins/models/seriesConfig/polarExtremumGetter.types.d.ts +0 -16
- package/modern/internals/plugins/models/seriesConfig/polarExtremumGetter.types.js +0 -1
- package/modern/internals/plugins/models/seriesConfig/seriesConfig.types.d.ts +0 -22
- package/modern/internals/plugins/models/seriesConfig/seriesConfig.types.js +0 -1
- package/modern/internals/plugins/models/seriesConfig/seriesProcessor.types.d.ts +0 -16
- package/modern/internals/plugins/models/seriesConfig/seriesProcessor.types.js +0 -1
- package/modern/internals/plugins/models/seriesConfig/tooltipGetter.types.d.ts +0 -7
- package/modern/internals/plugins/models/seriesConfig/tooltipGetter.types.js +0 -1
- package/modern/internals/plugins/utils/ChartStore.d.ts +0 -13
- package/modern/internals/plugins/utils/ChartStore.js +0 -24
- package/modern/internals/plugins/utils/selectors.d.ts +0 -10
- package/modern/internals/plugins/utils/selectors.js +0 -37
- package/modern/internals/sliceUntil.d.ts +0 -4
- package/modern/internals/sliceUntil.js +0 -22
- package/modern/internals/stackSeries.d.ts +0 -25
- package/modern/internals/stackSeries.js +0 -94
- package/modern/internals/store/extractPluginParamsFromProps.d.ts +0 -13
- package/modern/internals/store/extractPluginParamsFromProps.js +0 -28
- package/modern/internals/store/useChartModels.d.ts +0 -7
- package/modern/internals/store/useChartModels.js +0 -64
- package/modern/internals/store/useCharts.d.ts +0 -25
- package/modern/internals/store/useCharts.js +0 -85
- package/modern/internals/store/useCharts.types.d.ts +0 -5
- package/modern/internals/store/useCharts.types.js +0 -1
- package/modern/internals/store/useSelector.d.ts +0 -4
- package/modern/internals/store/useSelector.js +0 -9
- package/modern/internals/store/useStore.d.ts +0 -5
- package/modern/internals/store/useStore.js +0 -9
- package/modern/internals/ts-generic.d.ts +0 -3
- package/modern/internals/ts-generic.js +0 -1
- package/modern/internals/useStringInterpolator.d.ts +0 -1
- package/modern/internals/useStringInterpolator.js +0 -21
- package/modern/models/axis.d.ts +0 -388
- package/modern/models/axis.js +0 -19
- package/modern/models/colorMapping.d.ts +0 -46
- package/modern/models/colorMapping.js +0 -1
- package/modern/models/curve.d.ts +0 -6
- package/modern/models/curve.js +0 -1
- package/modern/models/index.d.ts +0 -6
- package/modern/models/index.js +0 -5
- package/modern/models/position.d.ts +0 -10
- package/modern/models/position.js +0 -1
- package/modern/models/seriesType/bar.d.ts +0 -38
- package/modern/models/seriesType/bar.js +0 -1
- package/modern/models/seriesType/common.d.ts +0 -60
- package/modern/models/seriesType/common.js +0 -1
- package/modern/models/seriesType/config.d.ts +0 -91
- package/modern/models/seriesType/config.js +0 -1
- package/modern/models/seriesType/index.d.ts +0 -16
- package/modern/models/seriesType/index.js +0 -17
- package/modern/models/seriesType/line.d.ts +0 -104
- package/modern/models/seriesType/line.js +0 -1
- package/modern/models/seriesType/pie.d.ts +0 -166
- package/modern/models/seriesType/pie.js +0 -1
- package/modern/models/seriesType/radar.d.ts +0 -24
- package/modern/models/seriesType/radar.js +0 -1
- package/modern/models/seriesType/scatter.d.ts +0 -63
- package/modern/models/seriesType/scatter.js +0 -1
- package/modern/models/stacking.d.ts +0 -2
- package/modern/models/stacking.js +0 -1
- package/modern/models/z-axis.d.ts +0 -22
- package/modern/models/z-axis.js +0 -1
- package/modern/package.json +0 -1
- package/modern/themeAugmentation/components.d.ts +0 -62
- package/modern/themeAugmentation/index.d.ts +0 -3
- package/modern/themeAugmentation/index.js +0 -0
- package/modern/themeAugmentation/overrides.d.ts +0 -34
- package/modern/themeAugmentation/props.d.ts +0 -34
- package/tsconfig.build.tsbuildinfo +0 -1
- /package/esm/{context/AnimationProvider/Animation.types.js → internals/plugins/corePlugins/useChartAnimation/useChartAnimation.types.js} +0 -0
- /package/{context/AnimationProvider/Animation.types.js → internals/plugins/corePlugins/useChartAnimation/useChartAnimation.types.js} +0 -0
|
@@ -1,859 +1,32 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import { BarLabelOwnerState } from "./BarLabel.types.js";
|
|
3
|
-
export declare const BarLabelComponent: import("@emotion/styled").StyledComponent<
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
backgroundImage?: import("csstype").Property.BackgroundImage | undefined;
|
|
31
|
-
backgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
|
|
32
|
-
backgroundPositionX?: import("csstype").Property.BackgroundPositionX<string | number> | undefined;
|
|
33
|
-
backgroundPositionY?: import("csstype").Property.BackgroundPositionY<string | number> | undefined;
|
|
34
|
-
backgroundRepeat?: import("csstype").Property.BackgroundRepeat | undefined;
|
|
35
|
-
backgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
|
|
36
|
-
blockOverflow?: import("csstype").Property.BlockOverflow | undefined;
|
|
37
|
-
blockSize?: import("csstype").Property.BlockSize<string | number> | undefined;
|
|
38
|
-
borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
|
|
39
|
-
borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
|
|
40
|
-
borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
|
|
41
|
-
borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number> | undefined;
|
|
42
|
-
borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined;
|
|
43
|
-
borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined;
|
|
44
|
-
borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number> | undefined;
|
|
45
|
-
borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
|
|
46
|
-
borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
|
|
47
|
-
borderBottomColor?: import("csstype").Property.BorderBottomColor | undefined;
|
|
48
|
-
borderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
49
|
-
borderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
|
|
50
|
-
borderBottomStyle?: import("csstype").Property.BorderBottomStyle | undefined;
|
|
51
|
-
borderBottomWidth?: import("csstype").Property.BorderBottomWidth<string | number> | undefined;
|
|
52
|
-
borderCollapse?: import("csstype").Property.BorderCollapse | undefined;
|
|
53
|
-
borderEndEndRadius?: import("csstype").Property.BorderEndEndRadius<string | number> | undefined;
|
|
54
|
-
borderEndStartRadius?: import("csstype").Property.BorderEndStartRadius<string | number> | undefined;
|
|
55
|
-
borderImageOutset?: import("csstype").Property.BorderImageOutset<string | number> | undefined;
|
|
56
|
-
borderImageRepeat?: import("csstype").Property.BorderImageRepeat | undefined;
|
|
57
|
-
borderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
|
|
58
|
-
borderImageSource?: import("csstype").Property.BorderImageSource | undefined;
|
|
59
|
-
borderImageWidth?: import("csstype").Property.BorderImageWidth<string | number> | undefined;
|
|
60
|
-
borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
|
|
61
|
-
borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
|
|
62
|
-
borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
|
|
63
|
-
borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
|
|
64
|
-
borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
|
|
65
|
-
borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
|
|
66
|
-
borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number> | undefined;
|
|
67
|
-
borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
|
|
68
|
-
borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
|
|
69
|
-
borderLeftColor?: import("csstype").Property.BorderLeftColor | undefined;
|
|
70
|
-
borderLeftStyle?: import("csstype").Property.BorderLeftStyle | undefined;
|
|
71
|
-
borderLeftWidth?: import("csstype").Property.BorderLeftWidth<string | number> | undefined;
|
|
72
|
-
borderRightColor?: import("csstype").Property.BorderRightColor | undefined;
|
|
73
|
-
borderRightStyle?: import("csstype").Property.BorderRightStyle | undefined;
|
|
74
|
-
borderRightWidth?: import("csstype").Property.BorderRightWidth<string | number> | undefined;
|
|
75
|
-
borderSpacing?: import("csstype").Property.BorderSpacing<string | number> | undefined;
|
|
76
|
-
borderStartEndRadius?: import("csstype").Property.BorderStartEndRadius<string | number> | undefined;
|
|
77
|
-
borderStartStartRadius?: import("csstype").Property.BorderStartStartRadius<string | number> | undefined;
|
|
78
|
-
borderTopColor?: import("csstype").Property.BorderTopColor | undefined;
|
|
79
|
-
borderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
|
|
80
|
-
borderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
|
|
81
|
-
borderTopStyle?: import("csstype").Property.BorderTopStyle | undefined;
|
|
82
|
-
borderTopWidth?: import("csstype").Property.BorderTopWidth<string | number> | undefined;
|
|
83
|
-
bottom?: import("csstype").Property.Bottom<string | number> | undefined;
|
|
84
|
-
boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
|
|
85
|
-
boxShadow?: import("csstype").Property.BoxShadow | undefined;
|
|
86
|
-
boxSizing?: import("csstype").Property.BoxSizing | undefined;
|
|
87
|
-
breakAfter?: import("csstype").Property.BreakAfter | undefined;
|
|
88
|
-
breakBefore?: import("csstype").Property.BreakBefore | undefined;
|
|
89
|
-
breakInside?: import("csstype").Property.BreakInside | undefined;
|
|
90
|
-
captionSide?: import("csstype").Property.CaptionSide | undefined;
|
|
91
|
-
caretColor?: import("csstype").Property.CaretColor | undefined;
|
|
92
|
-
caretShape?: import("csstype").Property.CaretShape | undefined;
|
|
93
|
-
clear?: import("csstype").Property.Clear | undefined;
|
|
94
|
-
clipPath?: import("csstype").Property.ClipPath | undefined;
|
|
95
|
-
color?: import("csstype").Property.Color | undefined;
|
|
96
|
-
colorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
|
|
97
|
-
colorScheme?: import("csstype").Property.ColorScheme | undefined;
|
|
98
|
-
columnCount?: import("csstype").Property.ColumnCount | undefined;
|
|
99
|
-
columnFill?: import("csstype").Property.ColumnFill | undefined;
|
|
100
|
-
columnGap?: import("csstype").Property.ColumnGap<string | number> | undefined;
|
|
101
|
-
columnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
|
|
102
|
-
columnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
|
|
103
|
-
columnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
|
|
104
|
-
columnSpan?: import("csstype").Property.ColumnSpan | undefined;
|
|
105
|
-
columnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
|
|
106
|
-
contain?: import("csstype").Property.Contain | undefined;
|
|
107
|
-
containIntrinsicBlockSize?: import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined;
|
|
108
|
-
containIntrinsicHeight?: import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined;
|
|
109
|
-
containIntrinsicInlineSize?: import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined;
|
|
110
|
-
containIntrinsicWidth?: import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined;
|
|
111
|
-
containerName?: import("csstype").Property.ContainerName | undefined;
|
|
112
|
-
containerType?: import("csstype").Property.ContainerType | undefined;
|
|
113
|
-
content?: import("csstype").Property.Content | undefined;
|
|
114
|
-
contentVisibility?: import("csstype").Property.ContentVisibility | undefined;
|
|
115
|
-
counterIncrement?: import("csstype").Property.CounterIncrement | undefined;
|
|
116
|
-
counterReset?: import("csstype").Property.CounterReset | undefined;
|
|
117
|
-
counterSet?: import("csstype").Property.CounterSet | undefined;
|
|
118
|
-
cursor?: import("csstype").Property.Cursor | undefined;
|
|
119
|
-
direction?: import("csstype").Property.Direction | undefined;
|
|
120
|
-
display?: import("csstype").Property.Display | undefined;
|
|
121
|
-
emptyCells?: import("csstype").Property.EmptyCells | undefined;
|
|
122
|
-
filter?: import("csstype").Property.Filter | undefined;
|
|
123
|
-
flexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
|
|
124
|
-
flexDirection?: import("csstype").Property.FlexDirection | undefined;
|
|
125
|
-
flexGrow?: import("csstype").Property.FlexGrow | undefined;
|
|
126
|
-
flexShrink?: import("csstype").Property.FlexShrink | undefined;
|
|
127
|
-
flexWrap?: import("csstype").Property.FlexWrap | undefined;
|
|
128
|
-
float?: import("csstype").Property.Float | undefined;
|
|
129
|
-
fontFamily?: import("csstype").Property.FontFamily | undefined;
|
|
130
|
-
fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
|
|
131
|
-
fontKerning?: import("csstype").Property.FontKerning | undefined;
|
|
132
|
-
fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
|
|
133
|
-
fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | undefined;
|
|
134
|
-
fontPalette?: import("csstype").Property.FontPalette | undefined;
|
|
135
|
-
fontSize?: import("csstype").Property.FontSize<string | number> | undefined;
|
|
136
|
-
fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
|
|
137
|
-
fontSmooth?: import("csstype").Property.FontSmooth<string | number> | undefined;
|
|
138
|
-
fontStretch?: import("csstype").Property.FontStretch | undefined;
|
|
139
|
-
fontStyle?: import("csstype").Property.FontStyle | undefined;
|
|
140
|
-
fontSynthesis?: import("csstype").Property.FontSynthesis | undefined;
|
|
141
|
-
fontSynthesisPosition?: import("csstype").Property.FontSynthesisPosition | undefined;
|
|
142
|
-
fontSynthesisSmallCaps?: import("csstype").Property.FontSynthesisSmallCaps | undefined;
|
|
143
|
-
fontSynthesisStyle?: import("csstype").Property.FontSynthesisStyle | undefined;
|
|
144
|
-
fontSynthesisWeight?: import("csstype").Property.FontSynthesisWeight | undefined;
|
|
145
|
-
fontVariant?: import("csstype").Property.FontVariant | undefined;
|
|
146
|
-
fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined;
|
|
147
|
-
fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined;
|
|
148
|
-
fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | undefined;
|
|
149
|
-
fontVariantEmoji?: import("csstype").Property.FontVariantEmoji | undefined;
|
|
150
|
-
fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
|
|
151
|
-
fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | undefined;
|
|
152
|
-
fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
|
|
153
|
-
fontVariationSettings?: import("csstype").Property.FontVariationSettings | undefined;
|
|
154
|
-
fontWeight?: import("csstype").Property.FontWeight | undefined;
|
|
155
|
-
forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | undefined;
|
|
156
|
-
gridAutoColumns?: import("csstype").Property.GridAutoColumns<string | number> | undefined;
|
|
157
|
-
gridAutoFlow?: import("csstype").Property.GridAutoFlow | undefined;
|
|
158
|
-
gridAutoRows?: import("csstype").Property.GridAutoRows<string | number> | undefined;
|
|
159
|
-
gridColumnEnd?: import("csstype").Property.GridColumnEnd | undefined;
|
|
160
|
-
gridColumnStart?: import("csstype").Property.GridColumnStart | undefined;
|
|
161
|
-
gridRowEnd?: import("csstype").Property.GridRowEnd | undefined;
|
|
162
|
-
gridRowStart?: import("csstype").Property.GridRowStart | undefined;
|
|
163
|
-
gridTemplateAreas?: import("csstype").Property.GridTemplateAreas | undefined;
|
|
164
|
-
gridTemplateColumns?: import("csstype").Property.GridTemplateColumns<string | number> | undefined;
|
|
165
|
-
gridTemplateRows?: import("csstype").Property.GridTemplateRows<string | number> | undefined;
|
|
166
|
-
hangingPunctuation?: import("csstype").Property.HangingPunctuation | undefined;
|
|
167
|
-
height?: import("csstype").Property.Height<string | number> | undefined;
|
|
168
|
-
hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
|
|
169
|
-
hyphenateLimitChars?: import("csstype").Property.HyphenateLimitChars | undefined;
|
|
170
|
-
hyphens?: import("csstype").Property.Hyphens | undefined;
|
|
171
|
-
imageOrientation?: import("csstype").Property.ImageOrientation | undefined;
|
|
172
|
-
imageRendering?: import("csstype").Property.ImageRendering | undefined;
|
|
173
|
-
imageResolution?: import("csstype").Property.ImageResolution | undefined;
|
|
174
|
-
initialLetter?: import("csstype").Property.InitialLetter | undefined;
|
|
175
|
-
inlineSize?: import("csstype").Property.InlineSize<string | number> | undefined;
|
|
176
|
-
inputSecurity?: import("csstype").Property.InputSecurity | undefined;
|
|
177
|
-
insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
|
|
178
|
-
insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
|
|
179
|
-
insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
|
|
180
|
-
insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
|
|
181
|
-
isolation?: import("csstype").Property.Isolation | undefined;
|
|
182
|
-
justifyContent?: import("csstype").Property.JustifyContent | undefined;
|
|
183
|
-
justifyItems?: import("csstype").Property.JustifyItems | undefined;
|
|
184
|
-
justifySelf?: import("csstype").Property.JustifySelf | undefined;
|
|
185
|
-
justifyTracks?: import("csstype").Property.JustifyTracks | undefined;
|
|
186
|
-
left?: import("csstype").Property.Left<string | number> | undefined;
|
|
187
|
-
letterSpacing?: import("csstype").Property.LetterSpacing<string | number> | undefined;
|
|
188
|
-
lineBreak?: import("csstype").Property.LineBreak | undefined;
|
|
189
|
-
lineHeight?: import("csstype").Property.LineHeight<string | number> | undefined;
|
|
190
|
-
lineHeightStep?: import("csstype").Property.LineHeightStep<string | number> | undefined;
|
|
191
|
-
listStyleImage?: import("csstype").Property.ListStyleImage | undefined;
|
|
192
|
-
listStylePosition?: import("csstype").Property.ListStylePosition | undefined;
|
|
193
|
-
listStyleType?: import("csstype").Property.ListStyleType | undefined;
|
|
194
|
-
marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
|
|
195
|
-
marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
|
|
196
|
-
marginBottom?: import("csstype").Property.MarginBottom<string | number> | undefined;
|
|
197
|
-
marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
|
|
198
|
-
marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
|
|
199
|
-
marginLeft?: import("csstype").Property.MarginLeft<string | number> | undefined;
|
|
200
|
-
marginRight?: import("csstype").Property.MarginRight<string | number> | undefined;
|
|
201
|
-
marginTop?: import("csstype").Property.MarginTop<string | number> | undefined;
|
|
202
|
-
marginTrim?: import("csstype").Property.MarginTrim | undefined;
|
|
203
|
-
maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
|
|
204
|
-
maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
|
|
205
|
-
maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
|
|
206
|
-
maskBorderSlice?: import("csstype").Property.MaskBorderSlice | undefined;
|
|
207
|
-
maskBorderSource?: import("csstype").Property.MaskBorderSource | undefined;
|
|
208
|
-
maskBorderWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
|
|
209
|
-
maskClip?: import("csstype").Property.MaskClip | undefined;
|
|
210
|
-
maskComposite?: import("csstype").Property.MaskComposite | undefined;
|
|
211
|
-
maskImage?: import("csstype").Property.MaskImage | undefined;
|
|
212
|
-
maskMode?: import("csstype").Property.MaskMode | undefined;
|
|
213
|
-
maskOrigin?: import("csstype").Property.MaskOrigin | undefined;
|
|
214
|
-
maskPosition?: import("csstype").Property.MaskPosition<string | number> | undefined;
|
|
215
|
-
maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
|
|
216
|
-
maskSize?: import("csstype").Property.MaskSize<string | number> | undefined;
|
|
217
|
-
maskType?: import("csstype").Property.MaskType | undefined;
|
|
218
|
-
masonryAutoFlow?: import("csstype").Property.MasonryAutoFlow | undefined;
|
|
219
|
-
mathDepth?: import("csstype").Property.MathDepth | undefined;
|
|
220
|
-
mathShift?: import("csstype").Property.MathShift | undefined;
|
|
221
|
-
mathStyle?: import("csstype").Property.MathStyle | undefined;
|
|
222
|
-
maxBlockSize?: import("csstype").Property.MaxBlockSize<string | number> | undefined;
|
|
223
|
-
maxHeight?: import("csstype").Property.MaxHeight<string | number> | undefined;
|
|
224
|
-
maxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
|
|
225
|
-
maxLines?: import("csstype").Property.MaxLines | undefined;
|
|
226
|
-
maxWidth?: import("csstype").Property.MaxWidth<string | number> | undefined;
|
|
227
|
-
minBlockSize?: import("csstype").Property.MinBlockSize<string | number> | undefined;
|
|
228
|
-
minHeight?: import("csstype").Property.MinHeight<string | number> | undefined;
|
|
229
|
-
minInlineSize?: import("csstype").Property.MinInlineSize<string | number> | undefined;
|
|
230
|
-
minWidth?: import("csstype").Property.MinWidth<string | number> | undefined;
|
|
231
|
-
mixBlendMode?: import("csstype").Property.MixBlendMode | undefined;
|
|
232
|
-
motionDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
|
|
233
|
-
motionPath?: import("csstype").Property.OffsetPath | undefined;
|
|
234
|
-
motionRotation?: import("csstype").Property.OffsetRotate | undefined;
|
|
235
|
-
objectFit?: import("csstype").Property.ObjectFit | undefined;
|
|
236
|
-
objectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
|
|
237
|
-
offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
|
|
238
|
-
offsetDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
|
|
239
|
-
offsetPath?: import("csstype").Property.OffsetPath | undefined;
|
|
240
|
-
offsetPosition?: import("csstype").Property.OffsetPosition<string | number> | undefined;
|
|
241
|
-
offsetRotate?: import("csstype").Property.OffsetRotate | undefined;
|
|
242
|
-
offsetRotation?: import("csstype").Property.OffsetRotate | undefined;
|
|
243
|
-
opacity?: import("csstype").Property.Opacity | undefined;
|
|
244
|
-
order?: import("csstype").Property.Order | undefined;
|
|
245
|
-
orphans?: import("csstype").Property.Orphans | undefined;
|
|
246
|
-
outlineColor?: import("csstype").Property.OutlineColor | undefined;
|
|
247
|
-
outlineOffset?: import("csstype").Property.OutlineOffset<string | number> | undefined;
|
|
248
|
-
outlineStyle?: import("csstype").Property.OutlineStyle | undefined;
|
|
249
|
-
outlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
|
|
250
|
-
overflowAnchor?: import("csstype").Property.OverflowAnchor | undefined;
|
|
251
|
-
overflowBlock?: import("csstype").Property.OverflowBlock | undefined;
|
|
252
|
-
overflowClipBox?: import("csstype").Property.OverflowClipBox | undefined;
|
|
253
|
-
overflowClipMargin?: import("csstype").Property.OverflowClipMargin<string | number> | undefined;
|
|
254
|
-
overflowInline?: import("csstype").Property.OverflowInline | undefined;
|
|
255
|
-
overflowWrap?: import("csstype").Property.OverflowWrap | undefined;
|
|
256
|
-
overflowX?: import("csstype").Property.OverflowX | undefined;
|
|
257
|
-
overflowY?: import("csstype").Property.OverflowY | undefined;
|
|
258
|
-
overlay?: import("csstype").Property.Overlay | undefined;
|
|
259
|
-
overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | undefined;
|
|
260
|
-
overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
|
|
261
|
-
overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
|
|
262
|
-
overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | undefined;
|
|
263
|
-
paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
|
|
264
|
-
paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
|
|
265
|
-
paddingBottom?: import("csstype").Property.PaddingBottom<string | number> | undefined;
|
|
266
|
-
paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
|
|
267
|
-
paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
|
|
268
|
-
paddingLeft?: import("csstype").Property.PaddingLeft<string | number> | undefined;
|
|
269
|
-
paddingRight?: import("csstype").Property.PaddingRight<string | number> | undefined;
|
|
270
|
-
paddingTop?: import("csstype").Property.PaddingTop<string | number> | undefined;
|
|
271
|
-
page?: import("csstype").Property.Page | undefined;
|
|
272
|
-
pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
|
|
273
|
-
pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
|
|
274
|
-
pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
|
|
275
|
-
paintOrder?: import("csstype").Property.PaintOrder | undefined;
|
|
276
|
-
perspective?: import("csstype").Property.Perspective<string | number> | undefined;
|
|
277
|
-
perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
|
|
278
|
-
pointerEvents?: import("csstype").Property.PointerEvents | undefined;
|
|
279
|
-
position?: import("csstype").Property.Position | undefined;
|
|
280
|
-
printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
|
|
281
|
-
quotes?: import("csstype").Property.Quotes | undefined;
|
|
282
|
-
resize?: import("csstype").Property.Resize | undefined;
|
|
283
|
-
right?: import("csstype").Property.Right<string | number> | undefined;
|
|
284
|
-
rotate?: (string | number) | undefined;
|
|
285
|
-
rowGap?: import("csstype").Property.RowGap<string | number> | undefined;
|
|
286
|
-
rubyAlign?: import("csstype").Property.RubyAlign | undefined;
|
|
287
|
-
rubyMerge?: import("csstype").Property.RubyMerge | undefined;
|
|
288
|
-
rubyPosition?: import("csstype").Property.RubyPosition | undefined;
|
|
289
|
-
scale?: string | number | readonly [number, number] | undefined;
|
|
290
|
-
scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
|
|
291
|
-
scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
|
|
292
|
-
scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
|
|
293
|
-
scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
|
|
294
|
-
scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined;
|
|
295
|
-
scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined;
|
|
296
|
-
scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
|
|
297
|
-
scrollMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
|
|
298
|
-
scrollMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
|
|
299
|
-
scrollPaddingBlockEnd?: import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined;
|
|
300
|
-
scrollPaddingBlockStart?: import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined;
|
|
301
|
-
scrollPaddingBottom?: import("csstype").Property.ScrollPaddingBottom<string | number> | undefined;
|
|
302
|
-
scrollPaddingInlineEnd?: import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined;
|
|
303
|
-
scrollPaddingInlineStart?: import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined;
|
|
304
|
-
scrollPaddingLeft?: import("csstype").Property.ScrollPaddingLeft<string | number> | undefined;
|
|
305
|
-
scrollPaddingRight?: import("csstype").Property.ScrollPaddingRight<string | number> | undefined;
|
|
306
|
-
scrollPaddingTop?: import("csstype").Property.ScrollPaddingTop<string | number> | undefined;
|
|
307
|
-
scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | undefined;
|
|
308
|
-
scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
|
|
309
|
-
scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
|
|
310
|
-
scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
|
|
311
|
-
scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
|
|
312
|
-
scrollSnapStop?: import("csstype").Property.ScrollSnapStop | undefined;
|
|
313
|
-
scrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
|
|
314
|
-
scrollTimelineAxis?: import("csstype").Property.ScrollTimelineAxis | undefined;
|
|
315
|
-
scrollTimelineName?: import("csstype").Property.ScrollTimelineName | undefined;
|
|
316
|
-
scrollbarColor?: import("csstype").Property.ScrollbarColor | undefined;
|
|
317
|
-
scrollbarGutter?: import("csstype").Property.ScrollbarGutter | undefined;
|
|
318
|
-
scrollbarWidth?: import("csstype").Property.ScrollbarWidth | undefined;
|
|
319
|
-
shapeImageThreshold?: import("csstype").Property.ShapeImageThreshold | undefined;
|
|
320
|
-
shapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
|
|
321
|
-
shapeOutside?: import("csstype").Property.ShapeOutside | undefined;
|
|
322
|
-
tabSize?: import("csstype").Property.TabSize<string | number> | undefined;
|
|
323
|
-
tableLayout?: import("csstype").Property.TableLayout | undefined;
|
|
324
|
-
textAlign?: import("csstype").Property.TextAlign | undefined;
|
|
325
|
-
textAlignLast?: import("csstype").Property.TextAlignLast | undefined;
|
|
326
|
-
textCombineUpright?: import("csstype").Property.TextCombineUpright | undefined;
|
|
327
|
-
textDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
|
|
328
|
-
textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
|
|
329
|
-
textDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
|
|
330
|
-
textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | undefined;
|
|
331
|
-
textDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
|
|
332
|
-
textDecorationThickness?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
|
|
333
|
-
textEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
|
|
334
|
-
textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
|
|
335
|
-
textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
|
|
336
|
-
textIndent?: import("csstype").Property.TextIndent<string | number> | undefined;
|
|
337
|
-
textJustify?: import("csstype").Property.TextJustify | undefined;
|
|
338
|
-
textOrientation?: import("csstype").Property.TextOrientation | undefined;
|
|
339
|
-
textOverflow?: import("csstype").Property.TextOverflow | undefined;
|
|
340
|
-
textRendering?: import("csstype").Property.TextRendering | undefined;
|
|
341
|
-
textShadow?: import("csstype").Property.TextShadow | undefined;
|
|
342
|
-
textSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
|
|
343
|
-
textTransform?: import("csstype").Property.TextTransform | undefined;
|
|
344
|
-
textUnderlineOffset?: import("csstype").Property.TextUnderlineOffset<string | number> | undefined;
|
|
345
|
-
textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
|
|
346
|
-
textWrap?: import("csstype").Property.TextWrap | undefined;
|
|
347
|
-
timelineScope?: import("csstype").Property.TimelineScope | undefined;
|
|
348
|
-
top?: import("csstype").Property.Top<string | number> | undefined;
|
|
349
|
-
touchAction?: import("csstype").Property.TouchAction | undefined;
|
|
350
|
-
transform?: string | undefined;
|
|
351
|
-
transformBox?: import("csstype").Property.TransformBox | undefined;
|
|
352
|
-
transformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
|
|
353
|
-
transformStyle?: import("csstype").Property.TransformStyle | undefined;
|
|
354
|
-
transitionBehavior?: import("csstype").Property.TransitionBehavior | undefined;
|
|
355
|
-
transitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
|
|
356
|
-
transitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
|
|
357
|
-
transitionProperty?: import("csstype").Property.TransitionProperty | undefined;
|
|
358
|
-
transitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
|
|
359
|
-
translate?: (string | number) | readonly [string | number, string | number] | undefined;
|
|
360
|
-
unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
|
|
361
|
-
userSelect?: import("csstype").Property.UserSelect | undefined;
|
|
362
|
-
verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
|
|
363
|
-
viewTimelineAxis?: import("csstype").Property.ViewTimelineAxis | undefined;
|
|
364
|
-
viewTimelineInset?: import("csstype").Property.ViewTimelineInset<string | number> | undefined;
|
|
365
|
-
viewTimelineName?: import("csstype").Property.ViewTimelineName | undefined;
|
|
366
|
-
viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
|
|
367
|
-
visibility?: import("csstype").Property.Visibility | undefined;
|
|
368
|
-
whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
|
|
369
|
-
whiteSpaceCollapse?: import("csstype").Property.WhiteSpaceCollapse | undefined;
|
|
370
|
-
whiteSpaceTrim?: import("csstype").Property.WhiteSpaceTrim | undefined;
|
|
371
|
-
widows?: import("csstype").Property.Widows | undefined;
|
|
372
|
-
width?: import("csstype").Property.Width<string | number> | undefined;
|
|
373
|
-
willChange?: import("csstype").Property.WillChange | undefined;
|
|
374
|
-
wordBreak?: import("csstype").Property.WordBreak | undefined;
|
|
375
|
-
wordSpacing?: import("csstype").Property.WordSpacing<string | number> | undefined;
|
|
376
|
-
wordWrap?: import("csstype").Property.WordWrap | undefined;
|
|
377
|
-
writingMode?: import("csstype").Property.WritingMode | undefined;
|
|
378
|
-
zIndex?: import("csstype").Property.ZIndex | undefined;
|
|
379
|
-
zoom?: import("csstype").Property.Zoom | undefined;
|
|
380
|
-
all?: import("csstype").Globals | undefined;
|
|
381
|
-
animation?: import("csstype").Property.Animation<string & {}> | undefined;
|
|
382
|
-
animationRange?: import("csstype").Property.AnimationRange<string | number> | undefined;
|
|
383
|
-
background?: import("csstype").Property.Background<string | number> | undefined;
|
|
384
|
-
backgroundPosition?: import("csstype").Property.BackgroundPosition<string | number> | undefined;
|
|
385
|
-
border?: import("csstype").Property.Border<string | number> | undefined;
|
|
386
|
-
borderBlock?: import("csstype").Property.BorderBlock<string | number> | undefined;
|
|
387
|
-
borderBlockEnd?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
|
|
388
|
-
borderBlockStart?: import("csstype").Property.BorderBlockStart<string | number> | undefined;
|
|
389
|
-
borderBottom?: import("csstype").Property.BorderBottom<string | number> | undefined;
|
|
390
|
-
borderColor?: import("csstype").Property.BorderColor | undefined;
|
|
391
|
-
borderImage?: import("csstype").Property.BorderImage | undefined;
|
|
392
|
-
borderInline?: import("csstype").Property.BorderInline<string | number> | undefined;
|
|
393
|
-
borderInlineEnd?: import("csstype").Property.BorderInlineEnd<string | number> | undefined;
|
|
394
|
-
borderInlineStart?: import("csstype").Property.BorderInlineStart<string | number> | undefined;
|
|
395
|
-
borderLeft?: import("csstype").Property.BorderLeft<string | number> | undefined;
|
|
396
|
-
borderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
|
|
397
|
-
borderRight?: import("csstype").Property.BorderRight<string | number> | undefined;
|
|
398
|
-
borderStyle?: import("csstype").Property.BorderStyle | undefined;
|
|
399
|
-
borderTop?: import("csstype").Property.BorderTop<string | number> | undefined;
|
|
400
|
-
borderWidth?: import("csstype").Property.BorderWidth<string | number> | undefined;
|
|
401
|
-
caret?: import("csstype").Property.Caret | undefined;
|
|
402
|
-
columnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
|
|
403
|
-
columns?: import("csstype").Property.Columns<string | number> | undefined;
|
|
404
|
-
containIntrinsicSize?: import("csstype").Property.ContainIntrinsicSize<string | number> | undefined;
|
|
405
|
-
container?: import("csstype").Property.Container | undefined;
|
|
406
|
-
flex?: import("csstype").Property.Flex<string | number> | undefined;
|
|
407
|
-
flexFlow?: import("csstype").Property.FlexFlow | undefined;
|
|
408
|
-
font?: import("csstype").Property.Font | undefined;
|
|
409
|
-
gap?: import("csstype").Property.Gap<string | number> | undefined;
|
|
410
|
-
grid?: import("csstype").Property.Grid | undefined;
|
|
411
|
-
gridArea?: import("csstype").Property.GridArea | undefined;
|
|
412
|
-
gridColumn?: import("csstype").Property.GridColumn | undefined;
|
|
413
|
-
gridRow?: import("csstype").Property.GridRow | undefined;
|
|
414
|
-
gridTemplate?: import("csstype").Property.GridTemplate | undefined;
|
|
415
|
-
inset?: import("csstype").Property.Inset<string | number> | undefined;
|
|
416
|
-
insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
|
|
417
|
-
insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
|
|
418
|
-
lineClamp?: import("csstype").Property.LineClamp | undefined;
|
|
419
|
-
listStyle?: import("csstype").Property.ListStyle | undefined;
|
|
420
|
-
margin?: import("csstype").Property.Margin<string | number> | undefined;
|
|
421
|
-
marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
|
|
422
|
-
marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
|
|
423
|
-
mask?: import("csstype").Property.Mask<string | number> | undefined;
|
|
424
|
-
maskBorder?: import("csstype").Property.MaskBorder | undefined;
|
|
425
|
-
motion?: import("csstype").Property.Offset<string | number> | undefined;
|
|
426
|
-
offset?: import("csstype").Property.Offset<string | number> | undefined;
|
|
427
|
-
outline?: import("csstype").Property.Outline<string | number> | undefined;
|
|
428
|
-
overflow?: import("csstype").Property.Overflow | undefined;
|
|
429
|
-
overscrollBehavior?: import("csstype").Property.OverscrollBehavior | undefined;
|
|
430
|
-
padding?: import("csstype").Property.Padding<string | number> | undefined;
|
|
431
|
-
paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
|
|
432
|
-
paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
|
|
433
|
-
placeContent?: import("csstype").Property.PlaceContent | undefined;
|
|
434
|
-
placeItems?: import("csstype").Property.PlaceItems | undefined;
|
|
435
|
-
placeSelf?: import("csstype").Property.PlaceSelf | undefined;
|
|
436
|
-
scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
|
|
437
|
-
scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
|
|
438
|
-
scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
|
|
439
|
-
scrollPadding?: import("csstype").Property.ScrollPadding<string | number> | undefined;
|
|
440
|
-
scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
|
|
441
|
-
scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
|
|
442
|
-
scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
|
|
443
|
-
scrollTimeline?: import("csstype").Property.ScrollTimeline | undefined;
|
|
444
|
-
textDecoration?: import("csstype").Property.TextDecoration<string | number> | undefined;
|
|
445
|
-
textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
|
|
446
|
-
transition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
447
|
-
viewTimeline?: import("csstype").Property.ViewTimeline | undefined;
|
|
448
|
-
MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
|
|
449
|
-
MozAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
|
|
450
|
-
MozAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
|
|
451
|
-
MozAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
|
|
452
|
-
MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
|
|
453
|
-
MozAnimationName?: import("csstype").Property.AnimationName | undefined;
|
|
454
|
-
MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
|
|
455
|
-
MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
|
|
456
|
-
MozAppearance?: import("csstype").Property.MozAppearance | undefined;
|
|
457
|
-
MozBinding?: import("csstype").Property.MozBinding | undefined;
|
|
458
|
-
MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
|
|
459
|
-
MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
|
|
460
|
-
MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
|
|
461
|
-
MozBorderEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
|
|
462
|
-
MozBorderLeftColors?: import("csstype").Property.MozBorderLeftColors | undefined;
|
|
463
|
-
MozBorderRightColors?: import("csstype").Property.MozBorderRightColors | undefined;
|
|
464
|
-
MozBorderStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
|
|
465
|
-
MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
|
|
466
|
-
MozBorderTopColors?: import("csstype").Property.MozBorderTopColors | undefined;
|
|
467
|
-
MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
|
|
468
|
-
MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
|
|
469
|
-
MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
|
|
470
|
-
MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
|
|
471
|
-
MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
|
|
472
|
-
MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
|
|
473
|
-
MozColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
|
|
474
|
-
MozContextProperties?: import("csstype").Property.MozContextProperties | undefined;
|
|
475
|
-
MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
|
|
476
|
-
MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
|
|
477
|
-
MozHyphens?: import("csstype").Property.Hyphens | undefined;
|
|
478
|
-
MozImageRegion?: import("csstype").Property.MozImageRegion | undefined;
|
|
479
|
-
MozMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
|
|
480
|
-
MozMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
|
|
481
|
-
MozOrient?: import("csstype").Property.MozOrient | undefined;
|
|
482
|
-
MozOsxFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
|
|
483
|
-
MozOutlineRadiusBottomleft?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined;
|
|
484
|
-
MozOutlineRadiusBottomright?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined;
|
|
485
|
-
MozOutlineRadiusTopleft?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined;
|
|
486
|
-
MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
|
|
487
|
-
MozPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
|
|
488
|
-
MozPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
|
|
489
|
-
MozStackSizing?: import("csstype").Property.MozStackSizing | undefined;
|
|
490
|
-
MozTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
|
|
491
|
-
MozTextBlink?: import("csstype").Property.MozTextBlink | undefined;
|
|
492
|
-
MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
|
|
493
|
-
MozUserFocus?: import("csstype").Property.MozUserFocus | undefined;
|
|
494
|
-
MozUserModify?: import("csstype").Property.MozUserModify | undefined;
|
|
495
|
-
MozUserSelect?: import("csstype").Property.UserSelect | undefined;
|
|
496
|
-
MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
|
|
497
|
-
MozWindowShadow?: import("csstype").Property.MozWindowShadow | undefined;
|
|
498
|
-
msAccelerator?: import("csstype").Property.MsAccelerator | undefined;
|
|
499
|
-
msBlockProgression?: import("csstype").Property.MsBlockProgression | undefined;
|
|
500
|
-
msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | undefined;
|
|
501
|
-
msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | undefined;
|
|
502
|
-
msContentZoomLimitMin?: import("csstype").Property.MsContentZoomLimitMin | undefined;
|
|
503
|
-
msContentZoomSnapPoints?: import("csstype").Property.MsContentZoomSnapPoints | undefined;
|
|
504
|
-
msContentZoomSnapType?: import("csstype").Property.MsContentZoomSnapType | undefined;
|
|
505
|
-
msContentZooming?: import("csstype").Property.MsContentZooming | undefined;
|
|
506
|
-
msFilter?: import("csstype").Property.MsFilter | undefined;
|
|
507
|
-
msFlexDirection?: import("csstype").Property.FlexDirection | undefined;
|
|
508
|
-
msFlexPositive?: import("csstype").Property.FlexGrow | undefined;
|
|
509
|
-
msFlowFrom?: import("csstype").Property.MsFlowFrom | undefined;
|
|
510
|
-
msFlowInto?: import("csstype").Property.MsFlowInto | undefined;
|
|
511
|
-
msGridColumns?: import("csstype").Property.MsGridColumns<string | number> | undefined;
|
|
512
|
-
msGridRows?: import("csstype").Property.MsGridRows<string | number> | undefined;
|
|
513
|
-
msHighContrastAdjust?: import("csstype").Property.MsHighContrastAdjust | undefined;
|
|
514
|
-
msHyphenateLimitChars?: import("csstype").Property.MsHyphenateLimitChars | undefined;
|
|
515
|
-
msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | undefined;
|
|
516
|
-
msHyphenateLimitZone?: import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined;
|
|
517
|
-
msHyphens?: import("csstype").Property.Hyphens | undefined;
|
|
518
|
-
msImeAlign?: import("csstype").Property.MsImeAlign | undefined;
|
|
519
|
-
msLineBreak?: import("csstype").Property.LineBreak | undefined;
|
|
520
|
-
msOrder?: import("csstype").Property.Order | undefined;
|
|
521
|
-
msOverflowStyle?: import("csstype").Property.MsOverflowStyle | undefined;
|
|
522
|
-
msOverflowX?: import("csstype").Property.OverflowX | undefined;
|
|
523
|
-
msOverflowY?: import("csstype").Property.OverflowY | undefined;
|
|
524
|
-
msScrollChaining?: import("csstype").Property.MsScrollChaining | undefined;
|
|
525
|
-
msScrollLimitXMax?: import("csstype").Property.MsScrollLimitXMax<string | number> | undefined;
|
|
526
|
-
msScrollLimitXMin?: import("csstype").Property.MsScrollLimitXMin<string | number> | undefined;
|
|
527
|
-
msScrollLimitYMax?: import("csstype").Property.MsScrollLimitYMax<string | number> | undefined;
|
|
528
|
-
msScrollLimitYMin?: import("csstype").Property.MsScrollLimitYMin<string | number> | undefined;
|
|
529
|
-
msScrollRails?: import("csstype").Property.MsScrollRails | undefined;
|
|
530
|
-
msScrollSnapPointsX?: import("csstype").Property.MsScrollSnapPointsX | undefined;
|
|
531
|
-
msScrollSnapPointsY?: import("csstype").Property.MsScrollSnapPointsY | undefined;
|
|
532
|
-
msScrollSnapType?: import("csstype").Property.MsScrollSnapType | undefined;
|
|
533
|
-
msScrollTranslation?: import("csstype").Property.MsScrollTranslation | undefined;
|
|
534
|
-
msScrollbar3dlightColor?: import("csstype").Property.MsScrollbar3dlightColor | undefined;
|
|
535
|
-
msScrollbarArrowColor?: import("csstype").Property.MsScrollbarArrowColor | undefined;
|
|
536
|
-
msScrollbarBaseColor?: import("csstype").Property.MsScrollbarBaseColor | undefined;
|
|
537
|
-
msScrollbarDarkshadowColor?: import("csstype").Property.MsScrollbarDarkshadowColor | undefined;
|
|
538
|
-
msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | undefined;
|
|
539
|
-
msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
|
|
540
|
-
msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | undefined;
|
|
541
|
-
msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
|
|
542
|
-
msTextAutospace?: import("csstype").Property.MsTextAutospace | undefined;
|
|
543
|
-
msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | undefined;
|
|
544
|
-
msTextOverflow?: import("csstype").Property.TextOverflow | undefined;
|
|
545
|
-
msTouchAction?: import("csstype").Property.TouchAction | undefined;
|
|
546
|
-
msTouchSelect?: import("csstype").Property.MsTouchSelect | undefined;
|
|
547
|
-
msTransform?: import("csstype").Property.Transform | undefined;
|
|
548
|
-
msTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
|
|
549
|
-
msTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
|
|
550
|
-
msTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
|
|
551
|
-
msTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
|
|
552
|
-
msTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
|
|
553
|
-
msUserSelect?: import("csstype").Property.MsUserSelect | undefined;
|
|
554
|
-
msWordBreak?: import("csstype").Property.WordBreak | undefined;
|
|
555
|
-
msWrapFlow?: import("csstype").Property.MsWrapFlow | undefined;
|
|
556
|
-
msWrapMargin?: import("csstype").Property.MsWrapMargin<string | number> | undefined;
|
|
557
|
-
msWrapThrough?: import("csstype").Property.MsWrapThrough | undefined;
|
|
558
|
-
msWritingMode?: import("csstype").Property.WritingMode | undefined;
|
|
559
|
-
WebkitAlignContent?: import("csstype").Property.AlignContent | undefined;
|
|
560
|
-
WebkitAlignItems?: import("csstype").Property.AlignItems | undefined;
|
|
561
|
-
WebkitAlignSelf?: import("csstype").Property.AlignSelf | undefined;
|
|
562
|
-
WebkitAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
|
|
563
|
-
WebkitAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
|
|
564
|
-
WebkitAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
|
|
565
|
-
WebkitAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
|
|
566
|
-
WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
|
|
567
|
-
WebkitAnimationName?: import("csstype").Property.AnimationName | undefined;
|
|
568
|
-
WebkitAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
|
|
569
|
-
WebkitAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
|
|
570
|
-
WebkitAppearance?: import("csstype").Property.WebkitAppearance | undefined;
|
|
571
|
-
WebkitBackdropFilter?: import("csstype").Property.BackdropFilter | undefined;
|
|
572
|
-
WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
|
|
573
|
-
WebkitBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
|
|
574
|
-
WebkitBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
|
|
575
|
-
WebkitBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
|
|
576
|
-
WebkitBorderBeforeColor?: import("csstype").Property.WebkitBorderBeforeColor | undefined;
|
|
577
|
-
WebkitBorderBeforeStyle?: import("csstype").Property.WebkitBorderBeforeStyle | undefined;
|
|
578
|
-
WebkitBorderBeforeWidth?: import("csstype").Property.WebkitBorderBeforeWidth<string | number> | undefined;
|
|
579
|
-
WebkitBorderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
580
|
-
WebkitBorderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
|
|
581
|
-
WebkitBorderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
|
|
582
|
-
WebkitBorderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
|
|
583
|
-
WebkitBorderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
|
|
584
|
-
WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
|
|
585
|
-
WebkitBoxReflect?: import("csstype").Property.WebkitBoxReflect<string | number> | undefined;
|
|
586
|
-
WebkitBoxShadow?: import("csstype").Property.BoxShadow | undefined;
|
|
587
|
-
WebkitBoxSizing?: import("csstype").Property.BoxSizing | undefined;
|
|
588
|
-
WebkitClipPath?: import("csstype").Property.ClipPath | undefined;
|
|
589
|
-
WebkitColumnCount?: import("csstype").Property.ColumnCount | undefined;
|
|
590
|
-
WebkitColumnFill?: import("csstype").Property.ColumnFill | undefined;
|
|
591
|
-
WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
|
|
592
|
-
WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
|
|
593
|
-
WebkitColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
|
|
594
|
-
WebkitColumnSpan?: import("csstype").Property.ColumnSpan | undefined;
|
|
595
|
-
WebkitColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
|
|
596
|
-
WebkitFilter?: import("csstype").Property.Filter | undefined;
|
|
597
|
-
WebkitFlexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
|
|
598
|
-
WebkitFlexDirection?: import("csstype").Property.FlexDirection | undefined;
|
|
599
|
-
WebkitFlexGrow?: import("csstype").Property.FlexGrow | undefined;
|
|
600
|
-
WebkitFlexShrink?: import("csstype").Property.FlexShrink | undefined;
|
|
601
|
-
WebkitFlexWrap?: import("csstype").Property.FlexWrap | undefined;
|
|
602
|
-
WebkitFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
|
|
603
|
-
WebkitFontKerning?: import("csstype").Property.FontKerning | undefined;
|
|
604
|
-
WebkitFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
|
|
605
|
-
WebkitFontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
|
|
606
|
-
WebkitHyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
|
|
607
|
-
WebkitHyphens?: import("csstype").Property.Hyphens | undefined;
|
|
608
|
-
WebkitInitialLetter?: import("csstype").Property.InitialLetter | undefined;
|
|
609
|
-
WebkitJustifyContent?: import("csstype").Property.JustifyContent | undefined;
|
|
610
|
-
WebkitLineBreak?: import("csstype").Property.LineBreak | undefined;
|
|
611
|
-
WebkitLineClamp?: import("csstype").Property.WebkitLineClamp | undefined;
|
|
612
|
-
WebkitMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
|
|
613
|
-
WebkitMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
|
|
614
|
-
WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | undefined;
|
|
615
|
-
WebkitMaskBoxImageOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
|
|
616
|
-
WebkitMaskBoxImageRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
|
|
617
|
-
WebkitMaskBoxImageSlice?: import("csstype").Property.MaskBorderSlice | undefined;
|
|
618
|
-
WebkitMaskBoxImageSource?: import("csstype").Property.MaskBorderSource | undefined;
|
|
619
|
-
WebkitMaskBoxImageWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
|
|
620
|
-
WebkitMaskClip?: import("csstype").Property.WebkitMaskClip | undefined;
|
|
621
|
-
WebkitMaskComposite?: import("csstype").Property.WebkitMaskComposite | undefined;
|
|
622
|
-
WebkitMaskImage?: import("csstype").Property.WebkitMaskImage | undefined;
|
|
623
|
-
WebkitMaskOrigin?: import("csstype").Property.WebkitMaskOrigin | undefined;
|
|
624
|
-
WebkitMaskPosition?: import("csstype").Property.WebkitMaskPosition<string | number> | undefined;
|
|
625
|
-
WebkitMaskPositionX?: import("csstype").Property.WebkitMaskPositionX<string | number> | undefined;
|
|
626
|
-
WebkitMaskPositionY?: import("csstype").Property.WebkitMaskPositionY<string | number> | undefined;
|
|
627
|
-
WebkitMaskRepeat?: import("csstype").Property.WebkitMaskRepeat | undefined;
|
|
628
|
-
WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX | undefined;
|
|
629
|
-
WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY | undefined;
|
|
630
|
-
WebkitMaskSize?: import("csstype").Property.WebkitMaskSize<string | number> | undefined;
|
|
631
|
-
WebkitMaxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
|
|
632
|
-
WebkitOrder?: import("csstype").Property.Order | undefined;
|
|
633
|
-
WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling | undefined;
|
|
634
|
-
WebkitPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
|
|
635
|
-
WebkitPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
|
|
636
|
-
WebkitPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
|
|
637
|
-
WebkitPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
|
|
638
|
-
WebkitPrintColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
|
|
639
|
-
WebkitRubyPosition?: import("csstype").Property.RubyPosition | undefined;
|
|
640
|
-
WebkitScrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
|
|
641
|
-
WebkitShapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
|
|
642
|
-
WebkitTapHighlightColor?: import("csstype").Property.WebkitTapHighlightColor | undefined;
|
|
643
|
-
WebkitTextCombine?: import("csstype").Property.TextCombineUpright | undefined;
|
|
644
|
-
WebkitTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
|
|
645
|
-
WebkitTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
|
|
646
|
-
WebkitTextDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
|
|
647
|
-
WebkitTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
|
|
648
|
-
WebkitTextEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
|
|
649
|
-
WebkitTextEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
|
|
650
|
-
WebkitTextEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
|
|
651
|
-
WebkitTextFillColor?: import("csstype").Property.WebkitTextFillColor | undefined;
|
|
652
|
-
WebkitTextOrientation?: import("csstype").Property.TextOrientation | undefined;
|
|
653
|
-
WebkitTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
|
|
654
|
-
WebkitTextStrokeColor?: import("csstype").Property.WebkitTextStrokeColor | undefined;
|
|
655
|
-
WebkitTextStrokeWidth?: import("csstype").Property.WebkitTextStrokeWidth<string | number> | undefined;
|
|
656
|
-
WebkitTextUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
|
|
657
|
-
WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout | undefined;
|
|
658
|
-
WebkitTransform?: import("csstype").Property.Transform | undefined;
|
|
659
|
-
WebkitTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
|
|
660
|
-
WebkitTransformStyle?: import("csstype").Property.TransformStyle | undefined;
|
|
661
|
-
WebkitTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
|
|
662
|
-
WebkitTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
|
|
663
|
-
WebkitTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
|
|
664
|
-
WebkitTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
|
|
665
|
-
WebkitUserModify?: import("csstype").Property.WebkitUserModify | undefined;
|
|
666
|
-
WebkitUserSelect?: import("csstype").Property.UserSelect | undefined;
|
|
667
|
-
WebkitWritingMode?: import("csstype").Property.WritingMode | undefined;
|
|
668
|
-
MozAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
|
|
669
|
-
MozBorderImage?: import("csstype").Property.BorderImage | undefined;
|
|
670
|
-
MozColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
|
|
671
|
-
MozColumns?: import("csstype").Property.Columns<string | number> | undefined;
|
|
672
|
-
MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
|
|
673
|
-
msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | undefined;
|
|
674
|
-
msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | undefined;
|
|
675
|
-
msFlex?: import("csstype").Property.Flex<string | number> | undefined;
|
|
676
|
-
msScrollLimit?: import("csstype").Property.MsScrollLimit | undefined;
|
|
677
|
-
msScrollSnapX?: import("csstype").Property.MsScrollSnapX | undefined;
|
|
678
|
-
msScrollSnapY?: import("csstype").Property.MsScrollSnapY | undefined;
|
|
679
|
-
msTransition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
680
|
-
WebkitAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
|
|
681
|
-
WebkitBorderBefore?: import("csstype").Property.WebkitBorderBefore<string | number> | undefined;
|
|
682
|
-
WebkitBorderImage?: import("csstype").Property.BorderImage | undefined;
|
|
683
|
-
WebkitBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
|
|
684
|
-
WebkitColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
|
|
685
|
-
WebkitColumns?: import("csstype").Property.Columns<string | number> | undefined;
|
|
686
|
-
WebkitFlex?: import("csstype").Property.Flex<string | number> | undefined;
|
|
687
|
-
WebkitFlexFlow?: import("csstype").Property.FlexFlow | undefined;
|
|
688
|
-
WebkitMask?: import("csstype").Property.WebkitMask<string | number> | undefined;
|
|
689
|
-
WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | undefined;
|
|
690
|
-
WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | undefined;
|
|
691
|
-
WebkitTextStroke?: import("csstype").Property.WebkitTextStroke<string | number> | undefined;
|
|
692
|
-
WebkitTransition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
693
|
-
azimuth?: import("csstype").Property.Azimuth | undefined;
|
|
694
|
-
boxAlign?: import("csstype").Property.BoxAlign | undefined;
|
|
695
|
-
boxDirection?: import("csstype").Property.BoxDirection | undefined;
|
|
696
|
-
boxFlex?: import("csstype").Property.BoxFlex | undefined;
|
|
697
|
-
boxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
|
|
698
|
-
boxLines?: import("csstype").Property.BoxLines | undefined;
|
|
699
|
-
boxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
|
|
700
|
-
boxOrient?: import("csstype").Property.BoxOrient | undefined;
|
|
701
|
-
boxPack?: import("csstype").Property.BoxPack | undefined;
|
|
702
|
-
clip?: import("csstype").Property.Clip | undefined;
|
|
703
|
-
gridColumnGap?: import("csstype").Property.GridColumnGap<string | number> | undefined;
|
|
704
|
-
gridGap?: import("csstype").Property.GridGap<string | number> | undefined;
|
|
705
|
-
gridRowGap?: import("csstype").Property.GridRowGap<string | number> | undefined;
|
|
706
|
-
imeMode?: import("csstype").Property.ImeMode | undefined;
|
|
707
|
-
offsetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
|
|
708
|
-
offsetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
|
|
709
|
-
offsetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
|
|
710
|
-
offsetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
|
|
711
|
-
offsetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
|
|
712
|
-
offsetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
|
|
713
|
-
scrollSnapCoordinate?: import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined;
|
|
714
|
-
scrollSnapDestination?: import("csstype").Property.ScrollSnapDestination<string | number> | undefined;
|
|
715
|
-
scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
|
|
716
|
-
scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
|
|
717
|
-
scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | undefined;
|
|
718
|
-
scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | undefined;
|
|
719
|
-
KhtmlBoxAlign?: import("csstype").Property.BoxAlign | undefined;
|
|
720
|
-
KhtmlBoxDirection?: import("csstype").Property.BoxDirection | undefined;
|
|
721
|
-
KhtmlBoxFlex?: import("csstype").Property.BoxFlex | undefined;
|
|
722
|
-
KhtmlBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
|
|
723
|
-
KhtmlBoxLines?: import("csstype").Property.BoxLines | undefined;
|
|
724
|
-
KhtmlBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
|
|
725
|
-
KhtmlBoxOrient?: import("csstype").Property.BoxOrient | undefined;
|
|
726
|
-
KhtmlBoxPack?: import("csstype").Property.BoxPack | undefined;
|
|
727
|
-
KhtmlLineBreak?: import("csstype").Property.LineBreak | undefined;
|
|
728
|
-
KhtmlOpacity?: import("csstype").Property.Opacity | undefined;
|
|
729
|
-
KhtmlUserSelect?: import("csstype").Property.UserSelect | undefined;
|
|
730
|
-
MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
|
|
731
|
-
MozBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
|
|
732
|
-
MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
|
|
733
|
-
MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
|
|
734
|
-
MozBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
|
|
735
|
-
MozBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
|
|
736
|
-
MozBorderRadiusBottomleft?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
737
|
-
MozBorderRadiusBottomright?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
|
|
738
|
-
MozBorderRadiusTopleft?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
|
|
739
|
-
MozBorderRadiusTopright?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
|
|
740
|
-
MozBoxAlign?: import("csstype").Property.BoxAlign | undefined;
|
|
741
|
-
MozBoxDirection?: import("csstype").Property.BoxDirection | undefined;
|
|
742
|
-
MozBoxFlex?: import("csstype").Property.BoxFlex | undefined;
|
|
743
|
-
MozBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
|
|
744
|
-
MozBoxOrient?: import("csstype").Property.BoxOrient | undefined;
|
|
745
|
-
MozBoxPack?: import("csstype").Property.BoxPack | undefined;
|
|
746
|
-
MozBoxShadow?: import("csstype").Property.BoxShadow | undefined;
|
|
747
|
-
MozFloatEdge?: import("csstype").Property.MozFloatEdge | undefined;
|
|
748
|
-
MozForceBrokenImageIcon?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
|
|
749
|
-
MozOpacity?: import("csstype").Property.Opacity | undefined;
|
|
750
|
-
MozOutline?: import("csstype").Property.Outline<string | number> | undefined;
|
|
751
|
-
MozOutlineColor?: import("csstype").Property.OutlineColor | undefined;
|
|
752
|
-
MozOutlineStyle?: import("csstype").Property.OutlineStyle | undefined;
|
|
753
|
-
MozOutlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
|
|
754
|
-
MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
|
|
755
|
-
MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
|
|
756
|
-
MozTextAlignLast?: import("csstype").Property.TextAlignLast | undefined;
|
|
757
|
-
MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
|
|
758
|
-
MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
|
|
759
|
-
MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
|
|
760
|
-
MozTransform?: import("csstype").Property.Transform | undefined;
|
|
761
|
-
MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
|
|
762
|
-
MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
|
|
763
|
-
MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
764
|
-
MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
|
|
765
|
-
MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
|
|
766
|
-
MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
|
|
767
|
-
MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
|
|
768
|
-
MozUserInput?: import("csstype").Property.MozUserInput | undefined;
|
|
769
|
-
msImeMode?: import("csstype").Property.ImeMode | undefined;
|
|
770
|
-
OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
|
|
771
|
-
OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
|
|
772
|
-
OAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
|
|
773
|
-
OAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
|
|
774
|
-
OAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
|
|
775
|
-
OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
|
|
776
|
-
OAnimationName?: import("csstype").Property.AnimationName | undefined;
|
|
777
|
-
OAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
|
|
778
|
-
OAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
|
|
779
|
-
OBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
|
|
780
|
-
OBorderImage?: import("csstype").Property.BorderImage | undefined;
|
|
781
|
-
OObjectFit?: import("csstype").Property.ObjectFit | undefined;
|
|
782
|
-
OObjectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
|
|
783
|
-
OTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
|
|
784
|
-
OTextOverflow?: import("csstype").Property.TextOverflow | undefined;
|
|
785
|
-
OTransform?: import("csstype").Property.Transform | undefined;
|
|
786
|
-
OTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
|
|
787
|
-
OTransition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
788
|
-
OTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
|
|
789
|
-
OTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
|
|
790
|
-
OTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
|
|
791
|
-
OTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
|
|
792
|
-
WebkitBoxAlign?: import("csstype").Property.BoxAlign | undefined;
|
|
793
|
-
WebkitBoxDirection?: import("csstype").Property.BoxDirection | undefined;
|
|
794
|
-
WebkitBoxFlex?: import("csstype").Property.BoxFlex | undefined;
|
|
795
|
-
WebkitBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
|
|
796
|
-
WebkitBoxLines?: import("csstype").Property.BoxLines | undefined;
|
|
797
|
-
WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
|
|
798
|
-
WebkitBoxOrient?: import("csstype").Property.BoxOrient | undefined;
|
|
799
|
-
WebkitBoxPack?: import("csstype").Property.BoxPack | undefined;
|
|
800
|
-
alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
|
|
801
|
-
baselineShift?: import("csstype").Property.BaselineShift<string | number> | undefined;
|
|
802
|
-
clipRule?: import("csstype").Property.ClipRule | undefined;
|
|
803
|
-
colorInterpolation?: import("csstype").Property.ColorInterpolation | undefined;
|
|
804
|
-
colorRendering?: import("csstype").Property.ColorRendering | undefined;
|
|
805
|
-
dominantBaseline?: import("csstype").Property.DominantBaseline | undefined;
|
|
806
|
-
fill?: import("csstype").Property.Fill | undefined;
|
|
807
|
-
fillOpacity?: import("csstype").Property.FillOpacity | undefined;
|
|
808
|
-
fillRule?: import("csstype").Property.FillRule | undefined;
|
|
809
|
-
floodColor?: import("csstype").Property.FloodColor | undefined;
|
|
810
|
-
floodOpacity?: import("csstype").Property.FloodOpacity | undefined;
|
|
811
|
-
glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical | undefined;
|
|
812
|
-
lightingColor?: import("csstype").Property.LightingColor | undefined;
|
|
813
|
-
marker?: import("csstype").Property.Marker | undefined;
|
|
814
|
-
markerEnd?: import("csstype").Property.MarkerEnd | undefined;
|
|
815
|
-
markerMid?: import("csstype").Property.MarkerMid | undefined;
|
|
816
|
-
markerStart?: import("csstype").Property.MarkerStart | undefined;
|
|
817
|
-
shapeRendering?: import("csstype").Property.ShapeRendering | undefined;
|
|
818
|
-
stopColor?: import("csstype").Property.StopColor | undefined;
|
|
819
|
-
stopOpacity?: import("csstype").Property.StopOpacity | undefined;
|
|
820
|
-
stroke?: import("csstype").Property.Stroke | undefined;
|
|
821
|
-
strokeDasharray?: import("csstype").Property.StrokeDasharray<string | number> | undefined;
|
|
822
|
-
strokeDashoffset?: import("csstype").Property.StrokeDashoffset<string | number> | undefined;
|
|
823
|
-
strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined;
|
|
824
|
-
strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined;
|
|
825
|
-
strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined;
|
|
826
|
-
strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined;
|
|
827
|
-
strokeWidth?: import("csstype").Property.StrokeWidth<string | number> | undefined;
|
|
828
|
-
textAnchor?: import("csstype").Property.TextAnchor | undefined;
|
|
829
|
-
vectorEffect?: import("csstype").Property.VectorEffect | undefined;
|
|
830
|
-
x?: (string | number) | undefined;
|
|
831
|
-
y?: (string | number) | undefined;
|
|
832
|
-
z?: (string | number) | undefined;
|
|
833
|
-
translateX?: (string | number) | undefined;
|
|
834
|
-
translateY?: (string | number) | undefined;
|
|
835
|
-
translateZ?: (string | number) | undefined;
|
|
836
|
-
translate3d?: readonly [string | number, string | number, string | number] | undefined;
|
|
837
|
-
rotateX?: (string | number) | undefined;
|
|
838
|
-
rotateY?: (string | number) | undefined;
|
|
839
|
-
rotateZ?: (string | number) | undefined;
|
|
840
|
-
rotate3d?: readonly [number, number, number, string | number] | undefined;
|
|
841
|
-
scaleX?: number | undefined;
|
|
842
|
-
scaleY?: number | undefined;
|
|
843
|
-
scaleZ?: number | undefined;
|
|
844
|
-
scale3d?: readonly [number, number, number] | undefined;
|
|
845
|
-
skew?: ((string | number) | readonly [string | number, string | number]) | undefined;
|
|
846
|
-
skewX?: (string | number) | undefined;
|
|
847
|
-
skewY?: (string | number) | undefined;
|
|
848
|
-
matrix?: readonly [number, number, number, number, number, number] | undefined;
|
|
849
|
-
matrix3d?: readonly [number, number, number, number, number, number, number, number, number, number, number, number, number, number, number, number] | undefined;
|
|
850
|
-
} | undefined;
|
|
851
|
-
}> & {
|
|
852
|
-
scrollTop?: number | import("@react-spring/shared").FluidValue<number, any> | undefined;
|
|
853
|
-
scrollLeft?: number | import("@react-spring/shared").FluidValue<number, any> | undefined;
|
|
854
|
-
viewBox?: string | import("@react-spring/shared").FluidValue<string, any> | undefined;
|
|
855
|
-
}, "style" | "viewBox" | "scrollTop" | "scrollLeft"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
|
|
856
|
-
export type BarLabelProps = Omit<React.SVGProps<SVGTextElement>, 'ref' | 'id'> & BarLabelOwnerState;
|
|
3
|
+
export declare const BarLabelComponent: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, Pick<React.SVGTextElementAttributes<SVGTextElement>, keyof React.SVGTextElementAttributes<SVGTextElement>>, {}>;
|
|
4
|
+
export type BarLabelProps = Omit<React.SVGProps<SVGTextElement>, 'ref' | 'id' | 'x' | 'y' | 'width' | 'height'> & BarLabelOwnerState & {
|
|
5
|
+
/**
|
|
6
|
+
* The x-coordinate of the stack this bar label belongs to.
|
|
7
|
+
*/
|
|
8
|
+
xOrigin: number;
|
|
9
|
+
/**
|
|
10
|
+
* The y-coordinate of the stack this bar label belongs to.
|
|
11
|
+
*/
|
|
12
|
+
yOrigin: number;
|
|
13
|
+
/**
|
|
14
|
+
* Position in the x-axis of the bar this label belongs to.
|
|
15
|
+
*/
|
|
16
|
+
x: number;
|
|
17
|
+
/**
|
|
18
|
+
* Position in the y-axis of the bar this label belongs to.
|
|
19
|
+
*/
|
|
20
|
+
y: number;
|
|
21
|
+
/**
|
|
22
|
+
* Width of the bar this label belongs to.
|
|
23
|
+
*/
|
|
24
|
+
width: number;
|
|
25
|
+
/**
|
|
26
|
+
* Height of the bar this label belongs to.
|
|
27
|
+
*/
|
|
28
|
+
height: number;
|
|
29
|
+
};
|
|
857
30
|
declare function BarLabel(inProps: BarLabelProps): React.JSX.Element;
|
|
858
31
|
declare namespace BarLabel {
|
|
859
32
|
var propTypes: any;
|