@dynatrace/strato-components 3.7.1 → 3.8.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/CHANGELOG.md +2113 -0
- package/buttons/button/Button.css +15 -15
- package/buttons/button/Button.d.ts +2 -1
- package/buttons/button/Button.js +5 -4
- package/buttons/button/Button.sty.js +4 -4
- package/buttons/intent-button/IntentButton.css +1 -1
- package/buttons/intent-button/IntentButton.sty.js +1 -1
- package/buttons/intent-button/IntentButtonWithResponse.js +2 -2
- package/buttons/notify-button/NotifyButton.css +2 -2
- package/buttons/notify-button/NotifyButton.sty.js +2 -2
- package/buttons/run-query-button/RunQueryButton.js +6 -13
- package/charts/categorical-bar/components/interactions/hooks/useSeriesActionClickHandler.js +7 -1
- package/charts/categorical-bar/components/interactions/overlays/CategoricalBarChartInspectOverlay.css +2 -2
- package/charts/categorical-bar/components/interactions/overlays/CategoricalBarChartInspectOverlay.sty.js +2 -2
- package/charts/categorical-bar/hooks/store/state-setters.d.ts +2 -2
- package/charts/categorical-bar/hooks/store/state-setters.js +3 -1
- package/charts/categorical-bar/layout/CategoricalGridLayout.js +1 -2
- package/charts/core/components/annotations/AnnotationsAtom.css +1 -1
- package/charts/core/components/annotations/AnnotationsAtom.sty.js +1 -1
- package/charts/core/components/annotations/components/canvas/AnnotationsCanvasLayout.css +1 -1
- package/charts/core/components/annotations/components/canvas/AnnotationsCanvasLayout.sty.js +1 -1
- package/charts/core/components/annotations/components/canvas/utils/calculate-marker-width-and-content.js +1 -2
- package/charts/core/components/annotations/components/overlays/AnnotationsOverlays.css +1 -1
- package/charts/core/components/annotations/components/overlays/AnnotationsOverlays.sty.js +1 -1
- package/charts/core/components/annotations/components/overlays/AnnotationsScrollWrapper.css +1 -1
- package/charts/core/components/annotations/components/overlays/AnnotationsScrollWrapper.sty.js +1 -1
- package/charts/core/components/annotations/utils/aggregate-markers-coords.js +19 -2
- package/charts/core/components/annotations/utils/resolve-value-marker-hit-area.d.ts +3 -0
- package/charts/core/components/annotations/utils/resolve-value-marker-hit-area.js +32 -0
- package/charts/core/components/axes/Axis.css +1 -1
- package/charts/core/components/axes/Axis.js +2 -5
- package/charts/core/components/axes/Axis.sty.js +1 -1
- package/charts/core/components/axes/AxisPrimitive.d.ts +31 -0
- package/charts/core/components/axes/AxisPrimitive.js +221 -0
- package/charts/core/components/axes/components/CategoryBottomAxis.js +3 -3
- package/charts/core/components/axes/components/CategoryLeftAxis.js +2 -2
- package/charts/core/components/axes/components/PanningControls/PanningControls.css +16 -16
- package/charts/core/components/axes/components/PanningControls/PanningControls.sty.js +2 -2
- package/charts/core/components/axes/components/TickLabel.d.ts +1 -1
- package/charts/core/components/axes/components/TimeTableHeaderAxis.js +2 -2
- package/charts/core/components/axes/components/ValueTableHeaderAxis.js +2 -2
- package/charts/core/components/axes/constants.d.ts +0 -1
- package/charts/core/components/axes/constants.js +0 -2
- package/charts/core/components/axes/types.d.ts +50 -3
- package/charts/core/components/axes/utils/get-tick-label-props.d.ts +1 -23
- package/charts/core/components/axes/utils/get-tick-label-props.js +45 -4
- package/charts/core/components/chart-grid/ChartGrid.css +3 -3
- package/charts/core/components/chart-grid/ChartGrid.sty.js +3 -3
- package/charts/core/components/chart-grid/constants.d.ts +23 -0
- package/charts/core/components/chart-grid/constants.js +33 -0
- package/charts/core/components/chart-layout/components/styles.css +15 -15
- package/charts/core/components/chart-layout/components/styles.sty.js +4 -4
- package/charts/core/components/chart-states/ChartState.css +4 -4
- package/charts/core/components/chart-states/ChartState.sty.js +4 -4
- package/charts/core/components/crosshair/HorizontalCrosshair.js +6 -4
- package/charts/core/components/crosshair/VerticalCrosshair.js +7 -5
- package/charts/core/components/crosshair/components/Magnifier.css +7 -7
- package/charts/core/components/crosshair/components/Magnifier.sty.js +7 -7
- package/charts/core/components/grid/Grid.d.ts +5 -2
- package/charts/core/components/grid/Grid.js +1 -4
- package/charts/core/components/grid/GridColumns.d.ts +6 -3
- package/charts/core/components/grid/GridColumns.js +9 -7
- package/charts/core/components/grid/GridLine.d.ts +15 -5
- package/charts/core/components/grid/GridLine.js +5 -4
- package/charts/core/components/grid/GridLines.d.ts +2 -2
- package/charts/core/components/grid/GridRows.d.ts +6 -3
- package/charts/core/components/grid/GridRows.js +9 -7
- package/charts/core/components/grid/utils/compute-grid-lines.d.ts +3 -0
- package/charts/core/components/grid/utils/compute-grid-lines.js +35 -0
- package/charts/core/components/grid/utils/should-highlight-zero-line.d.ts +2 -2
- package/charts/core/components/interactions-overlay/InteractionsOverlay.css +5 -5
- package/charts/core/components/interactions-overlay/InteractionsOverlay.sty.js +2 -2
- package/charts/core/components/legend/categorical/ChartLegend.css +1 -1
- package/charts/core/components/legend/categorical/ChartLegend.sty.js +1 -1
- package/charts/core/components/legend/categorical/components/ChartLegendIcon/ChartLegendIcon.css +3 -3
- package/charts/core/components/legend/categorical/components/ChartLegendIcon/ChartLegendIcon.sty.js +3 -3
- package/charts/core/components/legend/categorical/components/ChartLegendItem/ChartLegendItem.css +17 -17
- package/charts/core/components/legend/categorical/components/ChartLegendItem/ChartLegendItem.sty.js +6 -6
- package/charts/core/components/legend/categorical/components/ChartLegendSeriesActions/ChartLegendSeriesActions.css +3 -3
- package/charts/core/components/legend/categorical/components/ChartLegendSeriesActions/ChartLegendSeriesActions.sty.js +1 -1
- package/charts/core/components/legend/categorical/components/ChartVirtualizedLegendGrid.css +8 -8
- package/charts/core/components/legend/categorical/components/ChartVirtualizedLegendGrid.sty.js +4 -4
- package/charts/core/components/legend/range/RangeLegend.css +3 -3
- package/charts/core/components/legend/range/RangeLegend.sty.js +1 -1
- package/charts/core/components/legend/range/components/RangeLegendBoundaryLabel/RangeLegendBoundaryLabel.css +2 -2
- package/charts/core/components/legend/range/components/RangeLegendBoundaryLabel/RangeLegendBoundaryLabel.sty.js +1 -1
- package/charts/core/components/legend/range/components/RangeLegendItemLabel/RangeLegendItemLabel.css +1 -1
- package/charts/core/components/legend/range/components/RangeLegendItemLabel/RangeLegendItemLabel.sty.js +1 -1
- package/charts/core/components/legend/range/components/RangeLegendItemMarker/RangeLegendItemMarker.css +3 -3
- package/charts/core/components/legend/range/components/RangeLegendItemMarker/RangeLegendItemMarker.sty.js +1 -1
- package/charts/core/components/legend/range/components/RangeLegendMarkers/RangeLegendMarkers.css +3 -3
- package/charts/core/components/legend/range/components/RangeLegendMarkers/RangeLegendMarkers.sty.js +1 -1
- package/charts/core/components/legend/range/components/RangeLegendSegments/RangeLegendSegments.css +5 -5
- package/charts/core/components/legend/range/components/RangeLegendSegments/RangeLegendSegments.sty.js +1 -1
- package/charts/core/components/loader-overlay/LoaderOverlay.css +2 -2
- package/charts/core/components/loader-overlay/LoaderOverlay.sty.js +2 -2
- package/charts/core/components/overlay-tooltip/components/DynamicTooltip.js +7 -3
- package/charts/core/components/overlay-tooltip/components/TooltipPortal.js +7 -1
- package/charts/core/components/overlay-tooltip/components/global-actions/actions.css +4 -4
- package/charts/core/components/overlay-tooltip/components/global-actions/actions.sty.js +2 -2
- package/charts/core/components/overlay-tooltip/components/header/Header.css +6 -6
- package/charts/core/components/overlay-tooltip/components/header/Header.sty.js +6 -6
- package/charts/core/components/overlay-tooltip/components/series/seriesSymbol.css +2 -2
- package/charts/core/components/overlay-tooltip/components/series/seriesSymbol.sty.js +2 -2
- package/charts/core/components/overlay-tooltip/tooltip.css +52 -52
- package/charts/core/components/overlay-tooltip/tooltip.sty.js +39 -39
- package/charts/core/components/overlay-tooltip/useTooltipActions.js +8 -0
- package/charts/core/components/overlay-tooltip/utils/is-scroll-ignored.d.ts +2 -0
- package/charts/core/components/overlay-tooltip/utils/is-scroll-ignored.js +28 -0
- package/charts/core/components/overlays/ChartOverlaysBorder.css +5 -5
- package/charts/core/components/overlays/ChartOverlaysBorder.sty.js +5 -5
- package/charts/core/components/selection-area/SelectionArea.css +9 -9
- package/charts/core/components/selection-area/SelectionArea.sty.js +4 -4
- package/charts/core/components/series-action/ChartActionsMenuAsync.js +3 -1
- package/charts/core/components/shape/BubbleShape/BubbleShape.css +5 -5
- package/charts/core/components/shape/BubbleShape/BubbleShape.sty.js +3 -3
- package/charts/core/components/shape/EmojiShape/EmojiShape.css +3 -3
- package/charts/core/components/shape/EmojiShape/EmojiShape.sty.js +1 -1
- package/charts/core/components/shape/IconShape/IconShape.css +3 -3
- package/charts/core/components/shape/IconShape/IconShape.sty.js +1 -1
- package/charts/core/components/shape/styles/DataPointShape.css +8 -8
- package/charts/core/components/shape/styles/DataPointShape.sty.js +4 -4
- package/charts/core/components/shared-chart-interactions/SharedChartInteractions.css +1 -1
- package/charts/core/components/shared-chart-interactions/SharedChartInteractions.sty.js +1 -1
- package/charts/core/components/single-value-renderer/SingleValueRenderer.css +5 -5
- package/charts/core/components/single-value-renderer/SingleValueRenderer.sty.js +5 -5
- package/charts/core/components/single-value-renderer/components/ContentGrid.css +1 -1
- package/charts/core/components/single-value-renderer/components/ContentGrid.sty.js +1 -1
- package/charts/core/components/single-value-renderer/components/Icon.css +3 -3
- package/charts/core/components/single-value-renderer/components/Icon.sty.js +2 -2
- package/charts/core/components/single-value-renderer/components/Label.css +1 -1
- package/charts/core/components/single-value-renderer/components/Label.sty.js +1 -1
- package/charts/core/components/single-value-renderer/components/SingleValueToolbar.css +1 -1
- package/charts/core/components/single-value-renderer/components/SingleValueToolbar.js +0 -1
- package/charts/core/components/single-value-renderer/components/SingleValueToolbar.sty.js +1 -1
- package/charts/core/components/single-value-renderer/components/Value.css +5 -5
- package/charts/core/components/single-value-renderer/components/Value.sty.js +3 -3
- package/charts/core/components/single-value-renderer/components/trend/Trend.css +3 -3
- package/charts/core/components/single-value-renderer/components/trend/Trend.sty.js +3 -3
- package/charts/core/components/single-value-renderer/components/trend/components/Icon.css +2 -2
- package/charts/core/components/single-value-renderer/components/trend/components/Icon.sty.js +1 -1
- package/charts/core/components/sparkline-display/Sparkline.css +6 -6
- package/charts/core/components/sparkline-display/Sparkline.sty.js +2 -2
- package/charts/core/components/sparkline-display/SparklineContainer.js +6 -4
- package/charts/core/components/text-ellipsis/ChartTextEllipsis.css +7 -7
- package/charts/core/components/text-ellipsis/ChartTextEllipsis.sty.js +3 -3
- package/charts/core/components/threshold-bar/indicators/ThresholdIndicator.js +40 -21
- package/charts/core/components/threshold-bar/markers/CircleMarker.js +1 -2
- package/charts/core/components/threshold-bar/markers/PillMarker.js +1 -2
- package/charts/core/components/threshold-bar/styles.css +9 -9
- package/charts/core/components/threshold-bar/styles.sty.js +2 -2
- package/charts/core/components/toolbar/ChartToolbarRenderer.css +16 -16
- package/charts/core/components/toolbar/ChartToolbarRenderer.js +16 -6
- package/charts/core/components/toolbar/ChartToolbarRenderer.sty.js +8 -8
- package/charts/core/components/toolbar/components/ChartDataMenu.css +2 -2
- package/charts/core/components/toolbar/components/ChartDataMenu.sty.js +1 -1
- package/charts/core/components/toolbar/components/Control.css +17 -17
- package/charts/core/components/toolbar/components/Control.sty.js +5 -5
- package/charts/core/components/toolbar/components/ToolbarMenu.css +4 -4
- package/charts/core/components/toolbar/components/ToolbarMenu.sty.js +2 -2
- package/charts/core/components/toolbar/types.d.ts +4 -2
- package/charts/core/components/tooltip/ChartTooltip/ChartTooltip.css +6 -6
- package/charts/core/components/tooltip/ChartTooltip/ChartTooltip.sty.js +2 -2
- package/charts/core/components/tooltip/ChartTooltip/components/ActionItem/ActionItem.css +8 -8
- package/charts/core/components/tooltip/ChartTooltip/components/ActionItem/ActionItem.sty.js +3 -3
- package/charts/core/components/tooltip/ChartTooltip/components/SeriesItem/SeriesItem.css +2 -2
- package/charts/core/components/tooltip/ChartTooltip/components/SeriesItem/SeriesItem.sty.js +1 -1
- package/charts/core/components/tooltip/ChartTooltip/components/TimeFrameHeader/TimeFrameHeader.css +1 -1
- package/charts/core/components/tooltip/ChartTooltip/components/TimeFrameHeader/TimeFrameHeader.sty.js +1 -1
- package/charts/core/components/tooltip/InteractiveChartTooltip/components/BasicChartTooltip/BasicChartTooltip.css +6 -6
- package/charts/core/components/tooltip/InteractiveChartTooltip/components/BasicChartTooltip/BasicChartTooltip.sty.js +2 -2
- package/charts/core/components/tooltip/InteractiveChartTooltip/components/InteractiveChartTooltip.css +7 -7
- package/charts/core/components/tooltip/InteractiveChartTooltip/components/InteractiveChartTooltip.sty.js +6 -6
- package/charts/core/components/tooltip/InteractiveChartTooltip/headers/HeaderTooltip.css +1 -1
- package/charts/core/components/tooltip/InteractiveChartTooltip/headers/HeaderTooltip.sty.js +1 -1
- package/charts/core/components/tooltip/section-components/TooltipFooter/TooltipFooter.css +1 -1
- package/charts/core/components/tooltip/section-components/TooltipFooter/TooltipFooter.sty.js +1 -1
- package/charts/core/components/tooltip/section-components/TooltipHeader/TooltipHeader.css +2 -2
- package/charts/core/components/tooltip/section-components/TooltipHeader/TooltipHeader.sty.js +1 -1
- package/charts/core/components/tooltip/section-components/TooltipInfoContent/TooltipInfoContent.css +1 -1
- package/charts/core/components/tooltip/section-components/TooltipInfoContent/TooltipInfoContent.sty.js +1 -1
- package/charts/core/components/tooltip/section-components/TooltipItem/TooltipItem.css +3 -3
- package/charts/core/components/tooltip/section-components/TooltipItem/TooltipItem.sty.js +2 -2
- package/charts/core/components/tooltip/section-components/TooltipSymbolContent/TooltipSymbolContent.css +1 -1
- package/charts/core/components/tooltip/section-components/TooltipSymbolContent/TooltipSymbolContent.sty.js +1 -1
- package/charts/core/components/tooltip/section-components/VirtualizedTooltipBody/VirtualizedTooltipBody.css +2 -2
- package/charts/core/components/tooltip/section-components/VirtualizedTooltipBody/VirtualizedTooltipBody.sty.js +2 -2
- package/charts/core/components/tooltip/shared/styles/SeriesBasedContent.css +12 -12
- package/charts/core/components/tooltip/shared/styles/SeriesBasedContent.sty.js +7 -7
- package/charts/core/components/tooltip/shared/styles/TooltipBody.css +1 -1
- package/charts/core/components/tooltip/shared/styles/TooltipBody.sty.js +1 -1
- package/charts/core/components/tooltip-atoms/components/HeaderChipAtom/HeaderChipAtom.css +1 -1
- package/charts/core/components/tooltip-atoms/components/HeaderChipAtom/HeaderChipAtom.sty.js +1 -1
- package/charts/core/components/tooltip-atoms/components/styles.css +4 -4
- package/charts/core/components/tooltip-atoms/components/styles.sty.js +4 -4
- package/charts/core/components/zoom/ZoomCursors.css +2 -2
- package/charts/core/components/zoom/ZoomCursors.sty.js +3 -3
- package/charts/core/constants.d.ts +7 -0
- package/charts/core/constants.js +2 -0
- package/charts/core/hooks/useOverlayEventHandlers.d.ts +10 -11
- package/charts/core/hooks/useOverlayEventHandlers.js +40 -20
- package/charts/core/hooks/usePointerAndScrollResponsiveChartBounds.js +1 -1
- package/charts/core/hooks/useThrottledCallbackOnScroll.d.ts +1 -1
- package/charts/core/types/chart-data.d.ts +13 -0
- package/charts/core/types/chart-data.js +15 -0
- package/charts/core/types/text-size.d.ts +7 -0
- package/charts/core/types/text-size.js +15 -0
- package/charts/core/typographyStyles.css +1 -1
- package/charts/core/typographyStyles.sty.js +1 -1
- package/charts/core/utils/formatter-by-ticks.d.ts +4 -5
- package/charts/core/utils/formatter-by-ticks.js +4 -4
- package/charts/core/utils/text-measure.d.ts +34 -0
- package/charts/{tree-map → core}/utils/text-measure.js +19 -19
- package/charts/gantt-chart/GanttChartLine.css +1 -1
- package/charts/gantt-chart/GanttChartLine.sty.js +1 -1
- package/charts/gantt-chart/components/GanttChartLineRenderer.css +1 -1
- package/charts/gantt-chart/components/GanttChartLineRenderer.js +1 -2
- package/charts/gantt-chart/components/GanttChartLineRenderer.sty.js +1 -1
- package/charts/gantt-chart/components/tooltip/GanttChartTooltip.css +1 -1
- package/charts/gantt-chart/components/tooltip/GanttChartTooltip.sty.js +1 -1
- package/charts/gauge/components/GaugeChartLayout/GaugeChartLayout.css +1 -1
- package/charts/gauge/components/GaugeChartLayout/GaugeChartLayout.sty.js +1 -1
- package/charts/gauge/components/GaugeChartLayout/GaugeChartToolbar.d.ts +2 -0
- package/charts/gauge/components/GaugeChartLayout/GaugeChartToolbar.js +2 -2
- package/charts/gauge/components/GaugeLabel/GaugeLabel.css +6 -6
- package/charts/gauge/components/GaugeLabel/GaugeLabel.sty.js +3 -3
- package/charts/gauge/components/GaugeLabelsWrapper/GaugeLabelsWrapper.css +3 -3
- package/charts/gauge/components/GaugeLabelsWrapper/GaugeLabelsWrapper.sty.js +1 -1
- package/charts/gauge/components/GaugeLayoutOverlay/GaugeLayoutOverlay.css +4 -4
- package/charts/gauge/components/GaugeLayoutOverlay/GaugeLayoutOverlay.js +27 -2
- package/charts/gauge/components/GaugeLayoutOverlay/GaugeLayoutOverlay.sty.js +3 -3
- package/charts/gauge/components/GaugeResponsiveLabel/GaugeResponsiveLabel.css +2 -2
- package/charts/gauge/components/GaugeResponsiveLabel/GaugeResponsiveLabel.sty.js +2 -2
- package/charts/histogram/HistogramChart.d.ts +3 -3
- package/charts/histogram/HistogramChart.js +4 -5
- package/charts/histogram/HistogramChartInternal.js +20 -11
- package/charts/histogram/components/axes/HistogramValueBottomAxisArea/HistogramValueBottomAxisArea.css +1 -1
- package/charts/histogram/components/axes/HistogramValueBottomAxisArea/HistogramValueBottomAxisArea.sty.js +1 -1
- package/charts/histogram/components/overlays/HistogramExplore/HistogramTooltip.css +1 -1
- package/charts/histogram/components/overlays/HistogramExplore/HistogramTooltip.sty.js +1 -1
- package/charts/histogram/components/overlays/HistogramOverlays.css +2 -2
- package/charts/histogram/components/overlays/HistogramOverlays.sty.js +2 -2
- package/charts/honeycomb/HoneycombChart.css +1 -1
- package/charts/honeycomb/HoneycombChart.js +6 -3
- package/charts/honeycomb/HoneycombChart.sty.js +1 -1
- package/charts/honeycomb/components/HiveOverlay.css +1 -1
- package/charts/honeycomb/components/HiveOverlay.js +2 -10
- package/charts/honeycomb/components/HiveOverlay.sty.js +1 -1
- package/charts/honeycomb/components/canvas/HiveCanvasLayout.css +1 -1
- package/charts/honeycomb/components/canvas/HiveCanvasLayout.sty.js +1 -1
- package/charts/honeycomb/components/canvas/renderers/CanvasCircleRenderer.js +7 -2
- package/charts/honeycomb/components/canvas/renderers/CanvasHexagonRenderer.js +9 -5
- package/charts/honeycomb/components/canvas/renderers/CanvasSquareRenderer.js +7 -2
- package/charts/honeycomb/components/canvas/utils/draw-label-and-value.d.ts +2 -1
- package/charts/honeycomb/components/canvas/utils/draw-label-and-value.js +100 -20
- package/charts/honeycomb/components/canvas/utils/get-font-sizes.d.ts +5 -0
- package/charts/honeycomb/components/canvas/utils/get-font-sizes.js +52 -0
- package/charts/honeycomb/components/canvas/utils/get-truncation-method.d.ts +3 -1
- package/charts/honeycomb/components/canvas/utils/get-truncation-method.js +78 -8
- package/charts/honeycomb/components/canvas/utils/measure-node-text-content.d.ts +2 -1
- package/charts/honeycomb/components/canvas/utils/measure-node-text-content.js +13 -16
- package/charts/honeycomb/components/canvas/utils/render-text-to-canvas.d.ts +1 -1
- package/charts/honeycomb/components/canvas/utils/render-text-to-canvas.js +2 -2
- package/charts/honeycomb/components/canvas/utils/set-font-details-to-context.d.ts +1 -1
- package/charts/honeycomb/components/canvas/utils/set-font-details-to-context.js +11 -9
- package/charts/honeycomb/components/toolbar/HoneycombToolbar.js +1 -3
- package/charts/honeycomb/constants.d.ts +8 -4
- package/charts/honeycomb/constants.js +17 -13
- package/charts/honeycomb/context/honeycomb-color-scheme.context.d.ts +1 -1
- package/charts/honeycomb/context/honeycomb-filtered-color-scheme.context.d.ts +1 -1
- package/charts/honeycomb/context/honeycomb-text-size.context.d.ts +2 -0
- package/charts/{core/components/toolbar/utils/estimate-toolbar-width.js → honeycomb/context/honeycomb-text-size.context.js} +8 -15
- package/charts/honeycomb/hooks/use-honeycomb-chart-config.js +6 -1
- package/charts/honeycomb/hooks/use-honeycomb-color-scheme.context.d.ts +1 -1
- package/charts/honeycomb/hooks/use-honeycomb-filtered-color-scheme.d.ts +1 -1
- package/charts/honeycomb/hooks/use-honeycomb-text-size.d.ts +1 -0
- package/charts/honeycomb/hooks/use-honeycomb-text-size.js +25 -0
- package/charts/honeycomb/hooks/use-overlay-events.d.ts +4 -5
- package/charts/honeycomb/hooks/use-overlay-events.js +4 -7
- package/charts/honeycomb/store/selectors.d.ts +0 -1
- package/charts/honeycomb/store/selectors.js +0 -2
- package/charts/honeycomb/store/store.d.ts +1 -2
- package/charts/honeycomb/store/store.js +0 -13
- package/charts/honeycomb/types/honeycomb-config-properties.d.ts +8 -1
- package/charts/honeycomb/types/honeycomb-internal.d.ts +4 -1
- package/charts/honeycomb/types/honeycomb.d.ts +53 -10
- package/charts/honeycomb/types/state.d.ts +0 -4
- package/charts/honeycomb/types/state.js +0 -3
- package/charts/honeycomb/utils/build-honeycomb-config.d.ts +3 -2
- package/charts/honeycomb/utils/build-honeycomb-config.js +17 -4
- package/charts/honeycomb/utils/normalize-honeycomb-chart-data.d.ts +17 -0
- package/charts/honeycomb/utils/normalize-honeycomb-chart-data.js +39 -0
- package/charts/index.d.ts +6 -4
- package/charts/meter-bar/shared/components/meter-bar-layout/MeterBarLayout.css +15 -15
- package/charts/meter-bar/shared/components/meter-bar-layout/MeterBarLayout.sty.js +10 -10
- package/charts/meter-bar/shared/components/meter-bar-layout/slots/Icon/Icon.css +2 -2
- package/charts/meter-bar/shared/components/meter-bar-layout/slots/Icon/Icon.sty.js +1 -1
- package/charts/meter-bar/shared/components/meter-bar-layout/slots/Label/Label.css +1 -1
- package/charts/meter-bar/shared/components/meter-bar-layout/slots/Label/Label.sty.js +1 -1
- package/charts/meter-bar/shared/components/meter-bar-layout/slots/Max/Max.css +1 -1
- package/charts/meter-bar/shared/components/meter-bar-layout/slots/Max/Max.sty.js +1 -1
- package/charts/meter-bar/shared/components/meter-bar-layout/slots/Min/Min.css +1 -1
- package/charts/meter-bar/shared/components/meter-bar-layout/slots/Min/Min.sty.js +1 -1
- package/charts/meter-bar/shared/components/meter-bar-layout/slots/Value/Value.css +1 -1
- package/charts/meter-bar/shared/components/meter-bar-layout/slots/Value/Value.sty.js +1 -1
- package/charts/meter-bar/shared/components/meter-bar-plot/MeterBarPlot.css +1 -1
- package/charts/meter-bar/shared/components/meter-bar-plot/MeterBarPlot.sty.js +1 -1
- package/charts/meter-bar/shared/styles/element-size.css +4 -4
- package/charts/meter-bar/shared/styles/element-size.sty.js +1 -1
- package/charts/meter-bar/shared/styles.css +1 -1
- package/charts/meter-bar/shared/styles.sty.js +1 -1
- package/charts/meter-bar/single-meter-bar/components/MeterBarChartThresholds/MeterBarChartThresholds.css +1 -1
- package/charts/meter-bar/single-meter-bar/components/MeterBarChartThresholds/MeterBarChartThresholds.sty.js +1 -1
- package/charts/pie/DonutChart.d.ts +2 -3
- package/charts/pie/DonutChart.js +6 -13
- package/charts/pie/PieChart.d.ts +2 -3
- package/charts/pie/PieChart.js +8 -15
- package/charts/pie/components/InnerWrapper/components/InnerContainer/InnerContainer.css +1 -1
- package/charts/pie/components/InnerWrapper/components/InnerContainer/InnerContainer.sty.js +1 -1
- package/charts/pie/components/InnerWrapper/components/InnerDonut/InnerDonut.css +1 -1
- package/charts/pie/components/InnerWrapper/components/InnerDonut/InnerDonut.sty.js +1 -1
- package/charts/pie/components/PieChartOverlays/PieChartOverlays.css +1 -1
- package/charts/pie/components/PieChartOverlays/PieChartOverlays.js +3 -3
- package/charts/pie/components/PieChartOverlays/PieChartOverlays.sty.js +1 -1
- package/charts/pie/components/PieChartPlot/PieChartPlot.css +1 -1
- package/charts/pie/components/PieChartPlot/PieChartPlot.js +59 -54
- package/charts/pie/components/PieChartPlot/PieChartPlot.sty.js +1 -1
- package/charts/pie/components/PieChartSlice.js +15 -11
- package/charts/pie/constants.d.ts +1 -0
- package/charts/pie/constants.js +2 -0
- package/charts/pie/context/ChartConfigContext.d.ts +1 -0
- package/charts/pie/hooks/useNormalizedPieData.d.ts +7 -0
- package/charts/pie/hooks/useNormalizedPieData.js +38 -0
- package/charts/pie/hooks/useOverlayHandlers.d.ts +3 -2
- package/charts/pie/hooks/useOverlayHandlers.js +7 -5
- package/charts/pie/hooks/useSliceHandlers.d.ts +4 -3
- package/charts/pie/hooks/useSliceHandlers.js +29 -3
- package/charts/pie/types/pie-chart.config.d.ts +102 -37
- package/charts/pie/utils/group-slices-thinner-than-pad-angle.js +2 -1
- package/charts/pie/utils/normalize-pie-data.d.ts +29 -0
- package/charts/pie/utils/normalize-pie-data.js +38 -0
- package/charts/pie/utils/pie-config.js +2 -1
- package/charts/pie/utils/sanitize-toolbar-intents.d.ts +2 -0
- package/charts/{tree-map/hooks/useSetOverlayState.js → pie/utils/sanitize-toolbar-intents.js} +9 -18
- package/charts/single-value/SingleValue.css +1 -1
- package/charts/single-value/SingleValue.sty.js +1 -1
- package/charts/single-value-grid/SingleValueGrid.css +2 -2
- package/charts/single-value-grid/SingleValueGrid.sty.js +1 -1
- package/charts/single-value-grid/components/GlobalFontSizeVariables.css +1 -1
- package/charts/single-value-grid/components/GlobalFontSizeVariables.sty.js +1 -1
- package/charts/timeseries/TimeseriesChart.d.ts +1 -1
- package/charts/timeseries/TimeseriesChartInternal.d.ts +4 -0
- package/charts/timeseries/TimeseriesChartInternal.js +40 -21
- package/charts/timeseries/components/axes/TimeseriesTimeBottomAxisArea/TimeseriesTimeBottomAxisArea.css +2 -2
- package/charts/timeseries/components/axes/TimeseriesTimeBottomAxisArea/TimeseriesTimeBottomAxisArea.sty.js +1 -1
- package/charts/timeseries/components/overlays/TimeseriesOverlays.css +4 -4
- package/charts/timeseries/components/overlays/TimeseriesOverlays.sty.js +4 -4
- package/charts/timeseries/components/thresholds/ThresholdIndicators.css +2 -2
- package/charts/timeseries/components/thresholds/ThresholdIndicators.sty.js +2 -2
- package/charts/top-list/TopList.css +1 -1
- package/charts/top-list/TopList.js +9 -5
- package/charts/top-list/TopList.sty.js +1 -1
- package/charts/top-list/constants.d.ts +1 -4
- package/charts/top-list/constants.js +2 -1
- package/charts/top-list/types/top-list.d.ts +6 -0
- package/charts/tree-map/TreeMap.d.ts +2 -3
- package/charts/tree-map/TreeMap.js +10 -1
- package/charts/tree-map/components/TreeMapChartLayout.js +4 -4
- package/charts/tree-map/components/TreeMapLegend/TreeMapCategoricalLegend.js +3 -1
- package/charts/tree-map/components/TreeMapOverlay/TreeMapOverlay.css +1 -1
- package/charts/tree-map/components/TreeMapOverlay/TreeMapOverlay.js +2 -10
- package/charts/tree-map/components/TreeMapOverlay/TreeMapOverlay.sty.js +1 -1
- package/charts/tree-map/components/TreeMapToolbar/TreeMapToolbar.js +2 -4
- package/charts/tree-map/components/canvas/TreeMapSquareRenderer.js +4 -2
- package/charts/tree-map/constants.d.ts +4 -2
- package/charts/tree-map/constants.js +1 -2
- package/charts/tree-map/context/TextSizeContext.d.ts +3 -2
- package/charts/tree-map/hooks/useOverlayHandlers.d.ts +4 -5
- package/charts/tree-map/hooks/useOverlayHandlers.js +4 -7
- package/charts/tree-map/hooks/useTreeMapChartConfig.d.ts +2 -2
- package/charts/tree-map/hooks/useTreeMapChartHandlers.js +4 -1
- package/charts/tree-map/providers/TreeMapChartProviders.d.ts +2 -1
- package/charts/tree-map/providers/TreeMapChartProviders.js +1 -1
- package/charts/tree-map/store/selectors.d.ts +0 -1
- package/charts/tree-map/store/selectors.js +1 -3
- package/charts/tree-map/store/store.js +0 -3
- package/charts/tree-map/types/state.d.ts +0 -3
- package/charts/tree-map/types/treemap.d.ts +27 -10
- package/charts/tree-map/utils/build-labels.d.ts +1 -1
- package/charts/tree-map/utils/build-tree-map-chart-config.d.ts +2 -2
- package/charts/tree-map/utils/get-legend-interaction-props.d.ts +1 -1
- package/charts/tree-map/utils/get-legend-interaction-props.js +2 -2
- package/charts/tree-map/utils/to-hierarchical-props.d.ts +2 -0
- package/charts/tree-map/utils/to-hierarchical-props.js +106 -0
- package/charts/xy-chart/XYChart.js +22 -12
- package/charts/xy-chart/XYChartRoot.js +4 -2
- package/charts/xy-chart/components/axes/AxisArea.css +1 -1
- package/charts/xy-chart/components/axes/AxisArea.sty.js +1 -1
- package/charts/xy-chart/components/axes/AxisTickWithTruncation.css +3 -3
- package/charts/xy-chart/components/axes/AxisTickWithTruncation.sty.js +3 -3
- package/charts/xy-chart/components/axes/XTickWithTruncation.d.ts +1 -1
- package/charts/xy-chart/components/axes/XYChartLeftAxisArea.js +5 -1
- package/charts/xy-chart/components/axes/XYChartRightAxisArea.js +5 -1
- package/charts/xy-chart/components/axes/YTickWithTruncation.d.ts +1 -1
- package/charts/xy-chart/components/axes/hooks/useXTickOffset.d.ts +1 -1
- package/charts/xy-chart/components/axes/hooks/useYTickOffset.d.ts +1 -1
- package/charts/xy-chart/components/displays/BarDisplay/BarLabelOverlay.css +3 -3
- package/charts/xy-chart/components/displays/BarDisplay/BarLabelOverlay.sty.js +3 -3
- package/charts/xy-chart/components/legend/XYLegend/xy-legend.css +1 -1
- package/charts/xy-chart/components/legend/XYLegend/xy-legend.sty.js +1 -1
- package/charts/xy-chart/components/overlay/explore/HighlightedPointCanvas.d.ts +3 -2
- package/charts/xy-chart/components/overlay/explore/HighlightedPointCanvas.js +27 -5
- package/charts/xy-chart/components/overlay/explore/XYChartCrosshair.css +1 -1
- package/charts/xy-chart/components/overlay/explore/XYChartCrosshair.sty.js +1 -1
- package/charts/xy-chart/components/overlay/explore/XYChartExplore.css +2 -2
- package/charts/xy-chart/components/overlay/explore/XYChartExplore.sty.js +2 -2
- package/charts/xy-chart/components/overlay/explore/XYChartLinearPoint.js +12 -6
- package/charts/xy-chart/components/overlay/hooks/useOverlayEvents.js +4 -0
- package/charts/xy-chart/components/overlay/utils/draw-shape.d.ts +1 -0
- package/charts/xy-chart/components/overlay/utils/draw-shape.js +19 -0
- package/charts/xy-chart/components/thresholds/XYChartThresholdIndicators.css +1 -1
- package/charts/xy-chart/components/thresholds/XYChartThresholdIndicators.sty.js +1 -1
- package/charts/xy-chart/components/tooltip/HoveredPointTooltip/hooks/getHoveredPointTooltipBodyContent.js +2 -2
- package/charts/xy-chart/components/tooltip/SharedXYChartTooltip/SharedXYChartTooltip.js +23 -22
- package/charts/xy-chart/components/tooltip/utils/get-cached-separator.d.ts +12 -0
- package/charts/xy-chart/components/tooltip/utils/get-cached-separator.js +33 -0
- package/charts/xy-chart/components/tooltip/utils/get-tooltip-formatter.js +4 -2
- package/charts/xy-chart/components/tooltip/utils/tooltip-styles.css +5 -5
- package/charts/xy-chart/components/tooltip/utils/tooltip-styles.sty.js +4 -4
- package/charts/xy-chart/constants/defaults.d.ts +1 -0
- package/charts/xy-chart/constants/defaults.js +2 -0
- package/charts/xy-chart/context/XYChartOverlayPerformance.context.d.ts +17 -0
- package/charts/xy-chart/hooks/useBuildHoverGrid.d.ts +12 -0
- package/charts/xy-chart/hooks/useBuildHoverGrid.js +56 -0
- package/charts/xy-chart/hooks/useBuildOverlayStrategy.d.ts +16 -0
- package/charts/xy-chart/hooks/useBuildOverlayStrategy.js +102 -0
- package/charts/xy-chart/hooks/useXYChartDataProvider.js +10 -3
- package/charts/xy-chart/layout/XYChartLayout.css +2 -2
- package/charts/xy-chart/layout/XYChartLayout.sty.js +2 -2
- package/charts/xy-chart/providers/XYChartAnnotationsShownIndicatorsProvider.js +7 -9
- package/charts/xy-chart/providers/XYChartAxesTicksProvider.js +41 -24
- package/charts/xy-chart/providers/XYChartOverlayPerformanceProvider.js +11 -53
- package/charts/xy-chart/providers/XYChartScalesProvider.js +9 -2
- package/charts/xy-chart/types/xy-chart-props.d.ts +6 -0
- package/charts/xy-chart/utils/build-axis-id-to-min-bar-size.d.ts +2 -0
- package/charts/xy-chart/utils/build-axis-id-to-min-bar-size.js +46 -0
- package/charts/xy-chart/utils/build-sorted-entries.d.ts +40 -18
- package/charts/xy-chart/utils/build-sorted-entries.js +63 -10
- package/charts/xy-chart/utils/filter-out-of-range-ticks.d.ts +3 -0
- package/charts/xy-chart/utils/filter-out-of-range-ticks.js +46 -0
- package/charts/xy-chart/utils/generate-scales-by-axis-id.d.ts +1 -1
- package/charts/xy-chart/utils/generate-scales-by-axis-id.js +19 -3
- package/charts/xy-chart/utils/get-ticks-formatted-by-config.d.ts +5 -1
- package/charts/xy-chart/utils/get-ticks-formatted-by-config.js +11 -0
- package/charts/xy-chart/utils/query-hovered-grid.d.ts +31 -0
- package/charts/xy-chart/utils/query-hovered-grid.js +191 -0
- package/charts/xy-chart/utils/query-shared.d.ts +2 -2
- package/charts/xy-chart/utils/query-shared.js +53 -23
- package/charts/xy-chart-adoption/histogram/HistogramToXY.d.ts +1 -2
- package/charts/xy-chart-adoption/histogram/HistogramToXY.js +9 -45
- package/charts/xy-chart-adoption/histogram/transformer-annotations-to-xy.d.ts +1 -17
- package/charts/xy-chart-adoption/histogram/transformer-annotations-to-xy.js +18 -33
- package/charts/xy-chart-adoption/shared/types/legacy-props.d.ts +11 -0
- package/charts/xy-chart-adoption/shared/types/legacy-props.js +15 -0
- package/charts/xy-chart-adoption/shared/utils/render-xy-annotations.d.ts +27 -0
- package/charts/xy-chart-adoption/shared/utils/render-xy-annotations.js +88 -0
- package/charts/xy-chart-adoption/timeseries/TimeseriesToXY.d.ts +3 -0
- package/charts/xy-chart-adoption/timeseries/TimeseriesToXY.js +77 -27
- package/charts/xy-chart-adoption/timeseries/iterate-slots.d.ts +10 -0
- package/charts/xy-chart-adoption/timeseries/iterate-slots.js +36 -1
- package/charts/xy-chart-adoption/timeseries/resolve-value-representation.d.ts +6 -0
- package/charts/xy-chart-adoption/timeseries/resolve-value-representation.js +25 -0
- package/charts/xy-chart-adoption/timeseries/transformer-annotations-to-xy.d.ts +4 -0
- package/charts/xy-chart-adoption/timeseries/transformer-annotations-to-xy.js +53 -0
- package/charts/xy-chart-adoption/timeseries/transformer-data-to-xy.d.ts +8 -6
- package/charts/xy-chart-adoption/timeseries/transformer-data-to-xy.js +7 -6
- package/charts/xy-chart-adoption/timeseries/types/timeseries.d.ts +28 -5
- package/charts/xy-chart-adoption/timeseries/utils/build-buckets.d.ts +15 -0
- package/charts/xy-chart-adoption/timeseries/utils/build-buckets.js +78 -0
- package/charts/xy-chart-adoption/timeseries/utils/collect-annotations-slots.d.ts +15 -0
- package/charts/xy-chart-adoption/timeseries/utils/collect-annotations-slots.js +76 -0
- package/charts/xy-chart-adoption/timeseries/utils/map-axis-slots.d.ts +21 -0
- package/charts/xy-chart-adoption/timeseries/utils/map-axis-slots.js +61 -0
- package/charts/xy-chart-adoption/timeseries/utils/render-series.js +6 -0
- package/charts/xy-chart-adoption/timeseries/utils/resolve-gap-policy.d.ts +2 -0
- package/charts/xy-chart-adoption/timeseries/utils/resolve-gap-policy.js +34 -0
- package/content/accordion/Accordion.css +14 -14
- package/content/accordion/Accordion.sty.js +8 -8
- package/content/ai-loading-indicator/AiLoadingIndicator.css +12 -12
- package/content/ai-loading-indicator/AiLoadingIndicator.sty.js +4 -4
- package/content/ai-response/AiResponse.css +5 -5
- package/content/ai-response/AiResponse.sty.js +3 -2
- package/content/avatar/Avatar.css +13 -13
- package/content/avatar/Avatar.sty.js +4 -4
- package/content/avatar-group/AvatarGroup.css +3 -3
- package/content/avatar-group/AvatarGroup.sty.js +2 -2
- package/content/chip/BaseChip.css +40 -40
- package/content/chip/BaseChip.sty.js +5 -5
- package/content/chip/ChipContent.css +11 -11
- package/content/chip/ChipContent.sty.js +2 -2
- package/content/chip/ChipDeleteButton.css +19 -19
- package/content/chip/ChipDeleteButton.sty.js +4 -4
- package/content/chip/ChipKey.css +6 -6
- package/content/chip/ChipKey.sty.js +1 -1
- package/content/chip/GroupedChip.css +3 -3
- package/content/chip/GroupedChip.sty.js +3 -3
- package/content/chip-group/ChipGroup.css +4 -4
- package/content/chip-group/ChipGroup.d.ts +1 -1
- package/content/chip-group/ChipGroup.js +33 -49
- package/content/chip-group/ChipGroup.sty.js +1 -1
- package/content/chip-group/Control.css +4 -4
- package/content/chip-group/Control.sty.js +1 -1
- package/content/chip-group/chip-group-utils.d.ts +33 -0
- package/content/chip-group/chip-group-utils.js +52 -0
- package/content/chip-group/state/chip-group-state-reducer.d.ts +1 -1
- package/content/code-snippet/CodeHighlight.css +25 -26
- package/content/code-snippet/CodeHighlight.sty.d.ts +7 -2
- package/content/code-snippet/CodeHighlight.sty.js +10 -6
- package/content/code-snippet/CodeSnippet.css +31 -5
- package/content/code-snippet/CodeSnippet.d.ts +23 -8
- package/content/code-snippet/CodeSnippet.js +6 -2
- package/content/code-snippet/CodeSnippet.sty.d.ts +16 -0
- package/content/code-snippet/CodeSnippet.sty.js +8 -3
- package/content/empty-state/EmptyState.css +28 -28
- package/content/empty-state/EmptyState.sty.js +7 -7
- package/content/empty-state/empty-state-utils.js +2 -9
- package/content/empty-state/slot-components/Footer.css +1 -1
- package/content/empty-state/slot-components/Footer.sty.js +1 -1
- package/content/empty-state/slot-components/Visual.css +3 -3
- package/content/empty-state/slot-components/Visual.sty.js +1 -1
- package/content/expandable-text/ExpandableText.css +7 -7
- package/content/expandable-text/ExpandableText.sty.js +2 -2
- package/content/feature-highlight/FeatureHighlight.css +12 -12
- package/content/feature-highlight/FeatureHighlight.js +9 -5
- package/content/feature-highlight/FeatureHighlight.sty.js +3 -3
- package/content/health-indicator/styles.css +23 -23
- package/content/health-indicator/styles.sty.js +1 -1
- package/content/index.d.ts +1 -1
- package/content/information-overlay/InformationOverlay.css +25 -25
- package/content/information-overlay/InformationOverlay.sty.js +5 -5
- package/content/keyboard-shortcut/KeyboardShortcut.css +14 -14
- package/content/keyboard-shortcut/KeyboardShortcut.sty.js +2 -2
- package/content/markdown/Markdown.css +3 -3
- package/content/markdown/Markdown.sty.js +1 -1
- package/content/markdown/transformers/typography-mapping.css +9 -9
- package/content/markdown/transformers/typography-mapping.sty.js +6 -6
- package/content/microguide/Microguide.css +11 -11
- package/content/microguide/Microguide.sty.js +7 -7
- package/content/progress/ProgressBar.css +71 -71
- package/content/progress/ProgressBar.sty.js +5 -5
- package/content/progress/ProgressBarIcon.css +2 -2
- package/content/progress/ProgressBarIcon.sty.js +1 -1
- package/content/progress/ProgressBarLabel.css +3 -3
- package/content/progress/ProgressBarLabel.sty.js +1 -1
- package/content/progress/ProgressBarValue.css +5 -5
- package/content/progress/ProgressBarValue.sty.js +1 -1
- package/content/progress/ProgressCircle.css +40 -40
- package/content/progress/ProgressCircle.sty.js +5 -5
- package/content/release-phase-indicator/ReleasePhaseIndicator.d.ts +2 -2
- package/content/release-phase-indicator/ReleasePhaseIndicator.js +4 -2
- package/content/release-phase-indicator/messages.d.ts +5 -0
- package/content/release-phase-indicator/messages.js +5 -0
- package/content/shared-components/Visual.css +3 -3
- package/content/shared-components/Visual.sty.js +1 -1
- package/content/skeleton/Skeleton.css +7 -7
- package/content/skeleton/Skeleton.sty.js +5 -5
- package/content/terminology-overlay/TerminologyOverlay.css +4 -4
- package/content/terminology-overlay/TerminologyOverlay.sty.js +1 -1
- package/core/components/app-root/AppRoot.css +12 -2
- package/core/components/app-root/AppRoot.js +3 -2
- package/core/components/app-root/AppRoot.sty.js +1 -1
- package/core/components/app-root/visual-refresh-overrides.d.ts +6 -0
- package/core/components/app-root/visual-refresh-overrides.js +6 -0
- package/core/components/error-fallback/ErrorFallback.d.ts +8 -0
- package/{filters/filter-field → core/components}/error-fallback/messages.d.ts +0 -1
- package/{filters/filter-field → core/components}/error-fallback/messages.js +4 -4
- package/core/components/visually-hidden/VisuallyHidden.css +1 -1
- package/core/components/visually-hidden/VisuallyHidden.sty.js +1 -1
- package/core/dql/dql-common.js +6 -2
- package/core/hooks/useVisualRefreshEnabled.d.ts +4 -0
- package/core/hooks/useVisualRefreshEnabled.js +32 -0
- package/core/index.d.ts +3 -0
- package/core/index.js +6 -0
- package/core/sdk/app-state/AppStateContext.d.ts +26 -0
- package/{filters/filter-field/contexts/SavedAndRecentQueryClientContext.js → core/sdk/app-state/AppStateContext.js} +15 -7
- package/core/sdk/app-state/AppStateProvider.d.ts +24 -0
- package/core/sdk/app-state/AppStateProvider.js +97 -0
- package/core/sdk/app-state/app-state-store.d.ts +14 -0
- package/core/sdk/app-state/app-state-store.js +30 -0
- package/core/sdk/app-state/useAppState.d.ts +15 -0
- package/core/sdk/app-state/useAppState.js +40 -0
- package/core/sdk/app-state/useAppStateInternal.d.ts +28 -0
- package/core/sdk/app-state/useAppStateInternal.js +143 -0
- package/core/sdk/app-state/useAppStateValue.d.ts +28 -0
- package/core/sdk/app-state/useAppStateValue.js +32 -0
- package/core/sdk/sdk-logger.js +2 -2
- package/core/styles/defaultChartValues.css +1 -1
- package/core/styles/defaultChartValues.sty.js +1 -1
- package/core/styles/focusRing.css +66 -66
- package/core/styles/focusRing.sty.js +2 -2
- package/core/styles/focusRingStatic.css +34 -34
- package/core/styles/focusRingStatic.sty.js +1 -1
- package/core/styles/virtualFocus.css +2 -2
- package/core/styles/virtualFocus.sty.js +1 -1
- package/core/time/timeframeStore/actions/dateTimePicker.js +5 -4
- package/core/time/validation.d.ts +28 -3
- package/core/time/validation.js +49 -4
- package/core/types/form-control-props.d.ts +6 -0
- package/core/utils/colorUtils.css +60 -60
- package/core/utils/colorUtils.sty.js +2 -2
- package/core/utils/get-ticks.d.ts +29 -0
- package/core/utils/get-ticks.js +30 -0
- package/editors/base-code-editor/BaseCodeEditor.css +147 -135
- package/editors/base-code-editor/BaseCodeEditor.d.ts +51 -21
- package/editors/base-code-editor/BaseCodeEditor.js +149 -4
- package/editors/base-code-editor/BaseCodeEditor.sty.js +2 -2
- package/editors/base-code-editor/configuration/configure-format-keymap.d.ts +12 -0
- package/editors/base-code-editor/configuration/configure-format-keymap.js +40 -0
- package/editors/base-code-editor/configuration/configure-placeholder.d.ts +6 -1
- package/editors/base-code-editor/configuration/configure-placeholder.js +31 -2
- package/editors/base-code-editor/configuration/getDefaultConfigurations.js +103 -6
- package/editors/base-code-editor/configuration/language-extensions.d.ts +1 -1
- package/editors/base-code-editor/utils/key-maps.js +2 -0
- package/editors/code-editor/CodeEditor.d.ts +7 -69
- package/editors/code-editor/CodeEditor.js +23 -1
- package/editors/dql-editor/DQLEditor.d.ts +7 -69
- package/editors/dql-editor/DQLEditor.js +53 -3
- package/editors/dql-editor/actions-menu/ActionsMenu.css +23 -13
- package/editors/dql-editor/actions-menu/ActionsMenu.d.ts +7 -3
- package/editors/dql-editor/actions-menu/ActionsMenu.js +7 -1
- package/editors/dql-editor/actions-menu/ActionsMenu.sty.d.ts +16 -4
- package/editors/dql-editor/actions-menu/ActionsMenu.sty.js +5 -4
- package/editors/dql-editor/actions-menu/actions-menu-messages.d.ts +5 -0
- package/editors/dql-editor/actions-menu/actions-menu-messages.js +5 -0
- package/editors/dql-editor/dql/SuggestionPart.css +1 -1
- package/editors/dql-editor/dql/SuggestionPart.sty.js +1 -1
- package/editors/dql-editor/dql/SuggestionsInfoSection.css +7 -7
- package/editors/dql-editor/dql/SuggestionsInfoSection.js +10 -1
- package/editors/dql-editor/dql/SuggestionsInfoSection.sty.js +3 -3
- package/editors/dql-editor/dql/open-autocomplete.js +21 -3
- package/editors/dql-editor/dql/suggestion-autocompletions.js +3 -0
- package/editors/index.d.ts +1 -1
- package/esm/buttons/button/Button.css +15 -15
- package/esm/buttons/button/Button.js +5 -4
- package/esm/buttons/button/Button.js.map +2 -2
- package/esm/buttons/button/Button.sty.js +4 -4
- package/esm/buttons/button/Button.sty.js.map +1 -1
- package/esm/buttons/intent-button/IntentButton.css +1 -1
- package/esm/buttons/intent-button/IntentButton.sty.js +1 -1
- package/esm/buttons/intent-button/IntentButton.sty.js.map +1 -1
- package/esm/buttons/intent-button/IntentButtonWithResponse.js +2 -2
- package/esm/buttons/intent-button/IntentButtonWithResponse.js.map +2 -2
- package/esm/buttons/notify-button/NotifyButton.css +2 -2
- package/esm/buttons/notify-button/NotifyButton.sty.js +2 -2
- package/esm/buttons/notify-button/NotifyButton.sty.js.map +1 -1
- package/esm/buttons/run-query-button/RunQueryButton.js +7 -14
- package/esm/buttons/run-query-button/RunQueryButton.js.map +2 -2
- package/esm/charts/categorical-bar/components/interactions/hooks/useSeriesActionClickHandler.js +7 -1
- package/esm/charts/categorical-bar/components/interactions/hooks/useSeriesActionClickHandler.js.map +2 -2
- package/esm/charts/categorical-bar/components/interactions/overlays/CategoricalBarChartInspectOverlay.css +2 -2
- package/esm/charts/categorical-bar/components/interactions/overlays/CategoricalBarChartInspectOverlay.sty.js +2 -2
- package/esm/charts/categorical-bar/components/interactions/overlays/CategoricalBarChartInspectOverlay.sty.js.map +1 -1
- package/esm/charts/categorical-bar/hooks/store/state-setters.js +3 -1
- package/esm/charts/categorical-bar/hooks/store/state-setters.js.map +2 -2
- package/esm/charts/categorical-bar/layout/CategoricalGridLayout.js +1 -2
- package/esm/charts/categorical-bar/layout/CategoricalGridLayout.js.map +2 -2
- package/esm/charts/core/components/annotations/AnnotationsAtom.css +1 -1
- package/esm/charts/core/components/annotations/AnnotationsAtom.sty.js +1 -1
- package/esm/charts/core/components/annotations/AnnotationsAtom.sty.js.map +1 -1
- package/esm/charts/core/components/annotations/components/canvas/AnnotationsCanvasLayout.css +1 -1
- package/esm/charts/core/components/annotations/components/canvas/AnnotationsCanvasLayout.sty.js +1 -1
- package/esm/charts/core/components/annotations/components/canvas/AnnotationsCanvasLayout.sty.js.map +1 -1
- package/esm/charts/core/components/annotations/components/canvas/utils/calculate-marker-width-and-content.js +1 -2
- package/esm/charts/core/components/annotations/components/canvas/utils/calculate-marker-width-and-content.js.map +2 -2
- package/esm/charts/core/components/annotations/components/overlays/AnnotationsOverlays.css +1 -1
- package/esm/charts/core/components/annotations/components/overlays/AnnotationsOverlays.sty.js +1 -1
- package/esm/charts/core/components/annotations/components/overlays/AnnotationsOverlays.sty.js.map +1 -1
- package/esm/charts/core/components/annotations/components/overlays/AnnotationsScrollWrapper.css +1 -1
- package/esm/charts/core/components/annotations/components/overlays/AnnotationsScrollWrapper.sty.js +1 -1
- package/esm/charts/core/components/annotations/components/overlays/AnnotationsScrollWrapper.sty.js.map +1 -1
- package/esm/charts/core/components/annotations/utils/aggregate-markers-coords.js +20 -6
- package/esm/charts/core/components/annotations/utils/aggregate-markers-coords.js.map +2 -2
- package/esm/charts/core/components/annotations/utils/resolve-value-marker-hit-area.js +14 -0
- package/esm/charts/core/components/annotations/utils/resolve-value-marker-hit-area.js.map +7 -0
- package/esm/charts/core/components/axes/Axis.css +1 -1
- package/esm/charts/core/components/axes/Axis.js +2 -6
- package/esm/charts/core/components/axes/Axis.js.map +2 -2
- package/esm/charts/core/components/axes/Axis.sty.js +1 -1
- package/esm/charts/core/components/axes/Axis.sty.js.map +1 -1
- package/esm/charts/core/components/axes/AxisPrimitive.js +203 -0
- package/esm/charts/core/components/axes/AxisPrimitive.js.map +7 -0
- package/esm/charts/core/components/axes/components/CategoryBottomAxis.js +2 -2
- package/esm/charts/core/components/axes/components/CategoryBottomAxis.js.map +2 -2
- package/esm/charts/core/components/axes/components/CategoryLeftAxis.js +1 -1
- package/esm/charts/core/components/axes/components/CategoryLeftAxis.js.map +2 -2
- package/esm/charts/core/components/axes/components/PanningControls/PanningControls.css +16 -16
- package/esm/charts/core/components/axes/components/PanningControls/PanningControls.sty.js +2 -2
- package/esm/charts/core/components/axes/components/PanningControls/PanningControls.sty.js.map +1 -1
- package/esm/charts/core/components/axes/components/TickLabel.js.map +2 -2
- package/esm/charts/core/components/axes/components/TimeTableHeaderAxis.js +1 -1
- package/esm/charts/core/components/axes/components/TimeTableHeaderAxis.js.map +2 -2
- package/esm/charts/core/components/axes/components/ValueTableHeaderAxis.js +1 -1
- package/esm/charts/core/components/axes/components/ValueTableHeaderAxis.js.map +2 -2
- package/esm/charts/core/components/axes/constants.js +0 -2
- package/esm/charts/core/components/axes/constants.js.map +2 -2
- package/esm/charts/core/components/axes/types.js.map +2 -2
- package/esm/charts/core/components/axes/utils/get-tick-label-props.js +45 -4
- package/esm/charts/core/components/axes/utils/get-tick-label-props.js.map +2 -2
- package/esm/charts/core/components/chart-grid/ChartGrid.css +3 -3
- package/esm/charts/core/components/chart-grid/ChartGrid.sty.js +3 -3
- package/esm/charts/core/components/chart-grid/ChartGrid.sty.js.map +1 -1
- package/esm/charts/core/components/chart-grid/constants.js +15 -0
- package/esm/charts/core/components/chart-grid/constants.js.map +7 -0
- package/esm/charts/core/components/chart-layout/components/styles.css +15 -15
- package/esm/charts/core/components/chart-layout/components/styles.sty.js +4 -4
- package/esm/charts/core/components/chart-layout/components/styles.sty.js.map +1 -1
- package/esm/charts/core/components/chart-states/ChartState.css +4 -4
- package/esm/charts/core/components/chart-states/ChartState.sty.js +4 -4
- package/esm/charts/core/components/chart-states/ChartState.sty.js.map +1 -1
- package/esm/charts/core/components/crosshair/HorizontalCrosshair.js +6 -4
- package/esm/charts/core/components/crosshair/HorizontalCrosshair.js.map +2 -2
- package/esm/charts/core/components/crosshair/VerticalCrosshair.js +7 -5
- package/esm/charts/core/components/crosshair/VerticalCrosshair.js.map +2 -2
- package/esm/charts/core/components/crosshair/components/Magnifier.css +7 -7
- package/esm/charts/core/components/crosshair/components/Magnifier.sty.js +7 -7
- package/esm/charts/core/components/crosshair/components/Magnifier.sty.js.map +1 -1
- package/esm/charts/core/components/grid/Grid.js +1 -4
- package/esm/charts/core/components/grid/Grid.js.map +2 -2
- package/esm/charts/core/components/grid/GridColumns.js +9 -7
- package/esm/charts/core/components/grid/GridColumns.js.map +2 -2
- package/esm/charts/core/components/grid/GridLine.js +5 -4
- package/esm/charts/core/components/grid/GridLine.js.map +2 -2
- package/esm/charts/core/components/grid/GridLines.js.map +2 -2
- package/esm/charts/core/components/grid/GridRows.js +9 -7
- package/esm/charts/core/components/grid/GridRows.js.map +2 -2
- package/esm/charts/core/components/grid/utils/compute-grid-lines.js +17 -0
- package/esm/charts/core/components/grid/utils/compute-grid-lines.js.map +7 -0
- package/esm/charts/core/components/grid/utils/should-highlight-zero-line.js.map +1 -1
- package/esm/charts/core/components/interactions-overlay/InteractionsOverlay.css +5 -5
- package/esm/charts/core/components/interactions-overlay/InteractionsOverlay.sty.js +2 -2
- package/esm/charts/core/components/interactions-overlay/InteractionsOverlay.sty.js.map +1 -1
- package/esm/charts/core/components/legend/categorical/ChartLegend.css +1 -1
- package/esm/charts/core/components/legend/categorical/ChartLegend.sty.js +1 -1
- package/esm/charts/core/components/legend/categorical/ChartLegend.sty.js.map +1 -1
- package/esm/charts/core/components/legend/categorical/components/ChartLegendIcon/ChartLegendIcon.css +3 -3
- package/esm/charts/core/components/legend/categorical/components/ChartLegendIcon/ChartLegendIcon.sty.js +3 -3
- package/esm/charts/core/components/legend/categorical/components/ChartLegendIcon/ChartLegendIcon.sty.js.map +1 -1
- package/esm/charts/core/components/legend/categorical/components/ChartLegendItem/ChartLegendItem.css +17 -17
- package/esm/charts/core/components/legend/categorical/components/ChartLegendItem/ChartLegendItem.sty.js +6 -6
- package/esm/charts/core/components/legend/categorical/components/ChartLegendItem/ChartLegendItem.sty.js.map +1 -1
- package/esm/charts/core/components/legend/categorical/components/ChartLegendSeriesActions/ChartLegendSeriesActions.css +3 -3
- package/esm/charts/core/components/legend/categorical/components/ChartLegendSeriesActions/ChartLegendSeriesActions.sty.js +1 -1
- package/esm/charts/core/components/legend/categorical/components/ChartLegendSeriesActions/ChartLegendSeriesActions.sty.js.map +1 -1
- package/esm/charts/core/components/legend/categorical/components/ChartVirtualizedLegendGrid.css +8 -8
- package/esm/charts/core/components/legend/categorical/components/ChartVirtualizedLegendGrid.sty.js +4 -4
- package/esm/charts/core/components/legend/categorical/components/ChartVirtualizedLegendGrid.sty.js.map +1 -1
- package/esm/charts/core/components/legend/range/RangeLegend.css +3 -3
- package/esm/charts/core/components/legend/range/RangeLegend.sty.js +1 -1
- package/esm/charts/core/components/legend/range/RangeLegend.sty.js.map +1 -1
- package/esm/charts/core/components/legend/range/components/RangeLegendBoundaryLabel/RangeLegendBoundaryLabel.css +2 -2
- package/esm/charts/core/components/legend/range/components/RangeLegendBoundaryLabel/RangeLegendBoundaryLabel.sty.js +1 -1
- package/esm/charts/core/components/legend/range/components/RangeLegendBoundaryLabel/RangeLegendBoundaryLabel.sty.js.map +1 -1
- package/esm/charts/core/components/legend/range/components/RangeLegendItemLabel/RangeLegendItemLabel.css +1 -1
- package/esm/charts/core/components/legend/range/components/RangeLegendItemLabel/RangeLegendItemLabel.sty.js +1 -1
- package/esm/charts/core/components/legend/range/components/RangeLegendItemLabel/RangeLegendItemLabel.sty.js.map +1 -1
- package/esm/charts/core/components/legend/range/components/RangeLegendItemMarker/RangeLegendItemMarker.css +3 -3
- package/esm/charts/core/components/legend/range/components/RangeLegendItemMarker/RangeLegendItemMarker.sty.js +1 -1
- package/esm/charts/core/components/legend/range/components/RangeLegendItemMarker/RangeLegendItemMarker.sty.js.map +1 -1
- package/esm/charts/core/components/legend/range/components/RangeLegendMarkers/RangeLegendMarkers.css +3 -3
- package/esm/charts/core/components/legend/range/components/RangeLegendMarkers/RangeLegendMarkers.sty.js +1 -1
- package/esm/charts/core/components/legend/range/components/RangeLegendMarkers/RangeLegendMarkers.sty.js.map +1 -1
- package/esm/charts/core/components/legend/range/components/RangeLegendSegments/RangeLegendSegments.css +5 -5
- package/esm/charts/core/components/legend/range/components/RangeLegendSegments/RangeLegendSegments.sty.js +1 -1
- package/esm/charts/core/components/legend/range/components/RangeLegendSegments/RangeLegendSegments.sty.js.map +1 -1
- package/esm/charts/core/components/loader-overlay/LoaderOverlay.css +2 -2
- package/esm/charts/core/components/loader-overlay/LoaderOverlay.sty.js +2 -2
- package/esm/charts/core/components/loader-overlay/LoaderOverlay.sty.js.map +1 -1
- package/esm/charts/core/components/overlay-tooltip/components/DynamicTooltip.js +7 -3
- package/esm/charts/core/components/overlay-tooltip/components/DynamicTooltip.js.map +2 -2
- package/esm/charts/core/components/overlay-tooltip/components/TooltipPortal.js +7 -1
- package/esm/charts/core/components/overlay-tooltip/components/TooltipPortal.js.map +2 -2
- package/esm/charts/core/components/overlay-tooltip/components/global-actions/actions.css +4 -4
- package/esm/charts/core/components/overlay-tooltip/components/global-actions/actions.sty.js +2 -2
- package/esm/charts/core/components/overlay-tooltip/components/global-actions/actions.sty.js.map +1 -1
- package/esm/charts/core/components/overlay-tooltip/components/header/Header.css +6 -6
- package/esm/charts/core/components/overlay-tooltip/components/header/Header.sty.js +6 -6
- package/esm/charts/core/components/overlay-tooltip/components/header/Header.sty.js.map +1 -1
- package/esm/charts/core/components/overlay-tooltip/components/series/seriesSymbol.css +2 -2
- package/esm/charts/core/components/overlay-tooltip/components/series/seriesSymbol.sty.js +2 -2
- package/esm/charts/core/components/overlay-tooltip/components/series/seriesSymbol.sty.js.map +1 -1
- package/esm/charts/core/components/overlay-tooltip/tooltip.css +52 -52
- package/esm/charts/core/components/overlay-tooltip/tooltip.sty.js +39 -39
- package/esm/charts/core/components/overlay-tooltip/tooltip.sty.js.map +1 -1
- package/esm/charts/core/components/overlay-tooltip/useTooltipActions.js +8 -0
- package/esm/charts/core/components/overlay-tooltip/useTooltipActions.js.map +2 -2
- package/esm/charts/core/components/overlay-tooltip/utils/is-scroll-ignored.js +10 -0
- package/esm/charts/core/components/overlay-tooltip/utils/is-scroll-ignored.js.map +7 -0
- package/esm/charts/core/components/overlays/ChartOverlaysBorder.css +5 -5
- package/esm/charts/core/components/overlays/ChartOverlaysBorder.sty.js +5 -5
- package/esm/charts/core/components/overlays/ChartOverlaysBorder.sty.js.map +1 -1
- package/esm/charts/core/components/selection-area/SelectionArea.css +9 -9
- package/esm/charts/core/components/selection-area/SelectionArea.sty.js +4 -4
- package/esm/charts/core/components/selection-area/SelectionArea.sty.js.map +1 -1
- package/esm/charts/core/components/series-action/ChartActionsMenuAsync.js +3 -1
- package/esm/charts/core/components/series-action/ChartActionsMenuAsync.js.map +2 -2
- package/esm/charts/core/components/shape/BubbleShape/BubbleShape.css +5 -5
- package/esm/charts/core/components/shape/BubbleShape/BubbleShape.sty.js +3 -3
- package/esm/charts/core/components/shape/BubbleShape/BubbleShape.sty.js.map +1 -1
- package/esm/charts/core/components/shape/EmojiShape/EmojiShape.css +3 -3
- package/esm/charts/core/components/shape/EmojiShape/EmojiShape.sty.js +1 -1
- package/esm/charts/core/components/shape/EmojiShape/EmojiShape.sty.js.map +1 -1
- package/esm/charts/core/components/shape/IconShape/IconShape.css +3 -3
- package/esm/charts/core/components/shape/IconShape/IconShape.sty.js +1 -1
- package/esm/charts/core/components/shape/IconShape/IconShape.sty.js.map +1 -1
- package/esm/charts/core/components/shape/styles/DataPointShape.css +8 -8
- package/esm/charts/core/components/shape/styles/DataPointShape.sty.js +4 -4
- package/esm/charts/core/components/shape/styles/DataPointShape.sty.js.map +1 -1
- package/esm/charts/core/components/shared-chart-interactions/SharedChartInteractions.css +1 -1
- package/esm/charts/core/components/shared-chart-interactions/SharedChartInteractions.sty.js +1 -1
- package/esm/charts/core/components/shared-chart-interactions/SharedChartInteractions.sty.js.map +1 -1
- package/esm/charts/core/components/single-value-renderer/SingleValueRenderer.css +5 -5
- package/esm/charts/core/components/single-value-renderer/SingleValueRenderer.sty.js +5 -5
- package/esm/charts/core/components/single-value-renderer/SingleValueRenderer.sty.js.map +1 -1
- package/esm/charts/core/components/single-value-renderer/components/ContentGrid.css +1 -1
- package/esm/charts/core/components/single-value-renderer/components/ContentGrid.sty.js +1 -1
- package/esm/charts/core/components/single-value-renderer/components/ContentGrid.sty.js.map +1 -1
- package/esm/charts/core/components/single-value-renderer/components/Icon.css +3 -3
- package/esm/charts/core/components/single-value-renderer/components/Icon.sty.js +2 -2
- package/esm/charts/core/components/single-value-renderer/components/Icon.sty.js.map +1 -1
- package/esm/charts/core/components/single-value-renderer/components/Label.css +1 -1
- package/esm/charts/core/components/single-value-renderer/components/Label.sty.js +1 -1
- package/esm/charts/core/components/single-value-renderer/components/Label.sty.js.map +1 -1
- package/esm/charts/core/components/single-value-renderer/components/SingleValueToolbar.css +1 -1
- package/esm/charts/core/components/single-value-renderer/components/SingleValueToolbar.js +0 -1
- package/esm/charts/core/components/single-value-renderer/components/SingleValueToolbar.js.map +2 -2
- package/esm/charts/core/components/single-value-renderer/components/SingleValueToolbar.sty.js +1 -1
- package/esm/charts/core/components/single-value-renderer/components/SingleValueToolbar.sty.js.map +1 -1
- package/esm/charts/core/components/single-value-renderer/components/Value.css +5 -5
- package/esm/charts/core/components/single-value-renderer/components/Value.sty.js +3 -3
- package/esm/charts/core/components/single-value-renderer/components/Value.sty.js.map +1 -1
- package/esm/charts/core/components/single-value-renderer/components/trend/Trend.css +3 -3
- package/esm/charts/core/components/single-value-renderer/components/trend/Trend.sty.js +3 -3
- package/esm/charts/core/components/single-value-renderer/components/trend/Trend.sty.js.map +1 -1
- package/esm/charts/core/components/single-value-renderer/components/trend/components/Icon.css +2 -2
- package/esm/charts/core/components/single-value-renderer/components/trend/components/Icon.sty.js +1 -1
- package/esm/charts/core/components/single-value-renderer/components/trend/components/Icon.sty.js.map +1 -1
- package/esm/charts/core/components/sparkline-display/Sparkline.css +6 -6
- package/esm/charts/core/components/sparkline-display/Sparkline.sty.js +2 -2
- package/esm/charts/core/components/sparkline-display/Sparkline.sty.js.map +1 -1
- package/esm/charts/core/components/sparkline-display/SparklineContainer.js +6 -4
- package/esm/charts/core/components/sparkline-display/SparklineContainer.js.map +2 -2
- package/esm/charts/core/components/text-ellipsis/ChartTextEllipsis.css +7 -7
- package/esm/charts/core/components/text-ellipsis/ChartTextEllipsis.sty.js +3 -3
- package/esm/charts/core/components/text-ellipsis/ChartTextEllipsis.sty.js.map +1 -1
- package/esm/charts/core/components/threshold-bar/indicators/ThresholdIndicator.js +40 -21
- package/esm/charts/core/components/threshold-bar/indicators/ThresholdIndicator.js.map +2 -2
- package/esm/charts/core/components/threshold-bar/markers/CircleMarker.js +1 -2
- package/esm/charts/core/components/threshold-bar/markers/CircleMarker.js.map +2 -2
- package/esm/charts/core/components/threshold-bar/markers/PillMarker.js +1 -2
- package/esm/charts/core/components/threshold-bar/markers/PillMarker.js.map +2 -2
- package/esm/charts/core/components/threshold-bar/styles.css +9 -9
- package/esm/charts/core/components/threshold-bar/styles.sty.js +2 -2
- package/esm/charts/core/components/threshold-bar/styles.sty.js.map +1 -1
- package/esm/charts/core/components/toolbar/ChartToolbarRenderer.css +16 -16
- package/esm/charts/core/components/toolbar/ChartToolbarRenderer.js +16 -6
- package/esm/charts/core/components/toolbar/ChartToolbarRenderer.js.map +2 -2
- package/esm/charts/core/components/toolbar/ChartToolbarRenderer.sty.js +8 -8
- package/esm/charts/core/components/toolbar/ChartToolbarRenderer.sty.js.map +1 -1
- package/esm/charts/core/components/toolbar/components/ChartDataMenu.css +2 -2
- package/esm/charts/core/components/toolbar/components/ChartDataMenu.sty.js +1 -1
- package/esm/charts/core/components/toolbar/components/ChartDataMenu.sty.js.map +1 -1
- package/esm/charts/core/components/toolbar/components/Control.css +17 -17
- package/esm/charts/core/components/toolbar/components/Control.sty.js +5 -5
- package/esm/charts/core/components/toolbar/components/Control.sty.js.map +1 -1
- package/esm/charts/core/components/toolbar/components/ToolbarMenu.css +4 -4
- package/esm/charts/core/components/toolbar/components/ToolbarMenu.sty.js +2 -2
- package/esm/charts/core/components/toolbar/components/ToolbarMenu.sty.js.map +1 -1
- package/esm/charts/core/components/toolbar/types.js.map +1 -1
- package/esm/charts/core/components/tooltip/ChartTooltip/ChartTooltip.css +6 -6
- package/esm/charts/core/components/tooltip/ChartTooltip/ChartTooltip.sty.js +2 -2
- package/esm/charts/core/components/tooltip/ChartTooltip/ChartTooltip.sty.js.map +1 -1
- package/esm/charts/core/components/tooltip/ChartTooltip/components/ActionItem/ActionItem.css +8 -8
- package/esm/charts/core/components/tooltip/ChartTooltip/components/ActionItem/ActionItem.sty.js +3 -3
- package/esm/charts/core/components/tooltip/ChartTooltip/components/ActionItem/ActionItem.sty.js.map +1 -1
- package/esm/charts/core/components/tooltip/ChartTooltip/components/SeriesItem/SeriesItem.css +2 -2
- package/esm/charts/core/components/tooltip/ChartTooltip/components/SeriesItem/SeriesItem.sty.js +1 -1
- package/esm/charts/core/components/tooltip/ChartTooltip/components/SeriesItem/SeriesItem.sty.js.map +1 -1
- package/esm/charts/core/components/tooltip/ChartTooltip/components/TimeFrameHeader/TimeFrameHeader.css +1 -1
- package/esm/charts/core/components/tooltip/ChartTooltip/components/TimeFrameHeader/TimeFrameHeader.sty.js +1 -1
- package/esm/charts/core/components/tooltip/ChartTooltip/components/TimeFrameHeader/TimeFrameHeader.sty.js.map +1 -1
- package/esm/charts/core/components/tooltip/InteractiveChartTooltip/components/BasicChartTooltip/BasicChartTooltip.css +6 -6
- package/esm/charts/core/components/tooltip/InteractiveChartTooltip/components/BasicChartTooltip/BasicChartTooltip.sty.js +2 -2
- package/esm/charts/core/components/tooltip/InteractiveChartTooltip/components/BasicChartTooltip/BasicChartTooltip.sty.js.map +1 -1
- package/esm/charts/core/components/tooltip/InteractiveChartTooltip/components/InteractiveChartTooltip.css +7 -7
- package/esm/charts/core/components/tooltip/InteractiveChartTooltip/components/InteractiveChartTooltip.sty.js +6 -6
- package/esm/charts/core/components/tooltip/InteractiveChartTooltip/components/InteractiveChartTooltip.sty.js.map +1 -1
- package/esm/charts/core/components/tooltip/InteractiveChartTooltip/headers/HeaderTooltip.css +1 -1
- package/esm/charts/core/components/tooltip/InteractiveChartTooltip/headers/HeaderTooltip.sty.js +1 -1
- package/esm/charts/core/components/tooltip/InteractiveChartTooltip/headers/HeaderTooltip.sty.js.map +1 -1
- package/esm/charts/core/components/tooltip/section-components/TooltipFooter/TooltipFooter.css +1 -1
- package/esm/charts/core/components/tooltip/section-components/TooltipFooter/TooltipFooter.sty.js +1 -1
- package/esm/charts/core/components/tooltip/section-components/TooltipFooter/TooltipFooter.sty.js.map +1 -1
- package/esm/charts/core/components/tooltip/section-components/TooltipHeader/TooltipHeader.css +2 -2
- package/esm/charts/core/components/tooltip/section-components/TooltipHeader/TooltipHeader.sty.js +1 -1
- package/esm/charts/core/components/tooltip/section-components/TooltipHeader/TooltipHeader.sty.js.map +1 -1
- package/esm/charts/core/components/tooltip/section-components/TooltipInfoContent/TooltipInfoContent.css +1 -1
- package/esm/charts/core/components/tooltip/section-components/TooltipInfoContent/TooltipInfoContent.sty.js +1 -1
- package/esm/charts/core/components/tooltip/section-components/TooltipInfoContent/TooltipInfoContent.sty.js.map +1 -1
- package/esm/charts/core/components/tooltip/section-components/TooltipItem/TooltipItem.css +3 -3
- package/esm/charts/core/components/tooltip/section-components/TooltipItem/TooltipItem.sty.js +2 -2
- package/esm/charts/core/components/tooltip/section-components/TooltipItem/TooltipItem.sty.js.map +1 -1
- package/esm/charts/core/components/tooltip/section-components/TooltipSymbolContent/TooltipSymbolContent.css +1 -1
- package/esm/charts/core/components/tooltip/section-components/TooltipSymbolContent/TooltipSymbolContent.sty.js +1 -1
- package/esm/charts/core/components/tooltip/section-components/TooltipSymbolContent/TooltipSymbolContent.sty.js.map +1 -1
- package/esm/charts/core/components/tooltip/section-components/VirtualizedTooltipBody/VirtualizedTooltipBody.css +2 -2
- package/esm/charts/core/components/tooltip/section-components/VirtualizedTooltipBody/VirtualizedTooltipBody.sty.js +2 -2
- package/esm/charts/core/components/tooltip/section-components/VirtualizedTooltipBody/VirtualizedTooltipBody.sty.js.map +1 -1
- package/esm/charts/core/components/tooltip/shared/styles/SeriesBasedContent.css +12 -12
- package/esm/charts/core/components/tooltip/shared/styles/SeriesBasedContent.sty.js +7 -7
- package/esm/charts/core/components/tooltip/shared/styles/SeriesBasedContent.sty.js.map +1 -1
- package/esm/charts/core/components/tooltip/shared/styles/TooltipBody.css +1 -1
- package/esm/charts/core/components/tooltip/shared/styles/TooltipBody.sty.js +1 -1
- package/esm/charts/core/components/tooltip/shared/styles/TooltipBody.sty.js.map +1 -1
- package/esm/charts/core/components/tooltip-atoms/components/HeaderChipAtom/HeaderChipAtom.css +1 -1
- package/esm/charts/core/components/tooltip-atoms/components/HeaderChipAtom/HeaderChipAtom.sty.js +1 -1
- package/esm/charts/core/components/tooltip-atoms/components/HeaderChipAtom/HeaderChipAtom.sty.js.map +1 -1
- package/esm/charts/core/components/tooltip-atoms/components/styles.css +4 -4
- package/esm/charts/core/components/tooltip-atoms/components/styles.sty.js +4 -4
- package/esm/charts/core/components/tooltip-atoms/components/styles.sty.js.map +1 -1
- package/esm/charts/core/components/zoom/ZoomCursors.css +2 -2
- package/esm/charts/core/components/zoom/ZoomCursors.sty.js +3 -3
- package/esm/charts/core/components/zoom/ZoomCursors.sty.js.map +1 -1
- package/esm/charts/core/constants.js +2 -0
- package/esm/charts/core/constants.js.map +2 -2
- package/esm/charts/core/hooks/useOverlayEventHandlers.js +40 -20
- package/esm/charts/core/hooks/useOverlayEventHandlers.js.map +2 -2
- package/esm/charts/core/hooks/usePointerAndScrollResponsiveChartBounds.js +1 -1
- package/esm/charts/core/hooks/usePointerAndScrollResponsiveChartBounds.js.map +2 -2
- package/esm/charts/core/hooks/useThrottledCallbackOnScroll.js.map +1 -1
- package/esm/charts/core/types/chart-data.js +1 -0
- package/esm/charts/core/types/text-size.js +1 -0
- package/esm/charts/core/types/text-size.js.map +7 -0
- package/esm/charts/core/typographyStyles.css +1 -1
- package/esm/charts/core/typographyStyles.sty.js +1 -1
- package/esm/charts/core/typographyStyles.sty.js.map +1 -1
- package/esm/charts/core/utils/formatter-by-ticks.js +1 -1
- package/esm/charts/core/utils/formatter-by-ticks.js.map +2 -2
- package/esm/charts/core/utils/text-measure.js +38 -0
- package/esm/charts/core/utils/text-measure.js.map +7 -0
- package/esm/charts/gantt-chart/GanttChartLine.css +1 -1
- package/esm/charts/gantt-chart/GanttChartLine.sty.js +1 -1
- package/esm/charts/gantt-chart/GanttChartLine.sty.js.map +1 -1
- package/esm/charts/gantt-chart/components/GanttChartLineRenderer.css +1 -1
- package/esm/charts/gantt-chart/components/GanttChartLineRenderer.js +1 -2
- package/esm/charts/gantt-chart/components/GanttChartLineRenderer.js.map +2 -2
- package/esm/charts/gantt-chart/components/GanttChartLineRenderer.sty.js +1 -1
- package/esm/charts/gantt-chart/components/GanttChartLineRenderer.sty.js.map +1 -1
- package/esm/charts/gantt-chart/components/tooltip/GanttChartTooltip.css +1 -1
- package/esm/charts/gantt-chart/components/tooltip/GanttChartTooltip.sty.js +1 -1
- package/esm/charts/gantt-chart/components/tooltip/GanttChartTooltip.sty.js.map +1 -1
- package/esm/charts/gauge/components/GaugeChartLayout/GaugeChartLayout.css +1 -1
- package/esm/charts/gauge/components/GaugeChartLayout/GaugeChartLayout.sty.js +1 -1
- package/esm/charts/gauge/components/GaugeChartLayout/GaugeChartLayout.sty.js.map +1 -1
- package/esm/charts/gauge/components/GaugeChartLayout/GaugeChartToolbar.js +2 -2
- package/esm/charts/gauge/components/GaugeChartLayout/GaugeChartToolbar.js.map +2 -2
- package/esm/charts/gauge/components/GaugeLabel/GaugeLabel.css +6 -6
- package/esm/charts/gauge/components/GaugeLabel/GaugeLabel.sty.js +3 -3
- package/esm/charts/gauge/components/GaugeLabel/GaugeLabel.sty.js.map +1 -1
- package/esm/charts/gauge/components/GaugeLabelsWrapper/GaugeLabelsWrapper.css +3 -3
- package/esm/charts/gauge/components/GaugeLabelsWrapper/GaugeLabelsWrapper.sty.js +1 -1
- package/esm/charts/gauge/components/GaugeLabelsWrapper/GaugeLabelsWrapper.sty.js.map +1 -1
- package/esm/charts/gauge/components/GaugeLayoutOverlay/GaugeLayoutOverlay.css +4 -4
- package/esm/charts/gauge/components/GaugeLayoutOverlay/GaugeLayoutOverlay.js +29 -2
- package/esm/charts/gauge/components/GaugeLayoutOverlay/GaugeLayoutOverlay.js.map +2 -2
- package/esm/charts/gauge/components/GaugeLayoutOverlay/GaugeLayoutOverlay.sty.js +3 -3
- package/esm/charts/gauge/components/GaugeLayoutOverlay/GaugeLayoutOverlay.sty.js.map +1 -1
- package/esm/charts/gauge/components/GaugeResponsiveLabel/GaugeResponsiveLabel.css +2 -2
- package/esm/charts/gauge/components/GaugeResponsiveLabel/GaugeResponsiveLabel.sty.js +2 -2
- package/esm/charts/gauge/components/GaugeResponsiveLabel/GaugeResponsiveLabel.sty.js.map +1 -1
- package/esm/charts/histogram/HistogramChart.js +4 -5
- package/esm/charts/histogram/HistogramChart.js.map +2 -2
- package/esm/charts/histogram/HistogramChartInternal.js +20 -8
- package/esm/charts/histogram/HistogramChartInternal.js.map +2 -2
- package/esm/charts/histogram/components/axes/HistogramValueBottomAxisArea/HistogramValueBottomAxisArea.css +1 -1
- package/esm/charts/histogram/components/axes/HistogramValueBottomAxisArea/HistogramValueBottomAxisArea.sty.js +1 -1
- package/esm/charts/histogram/components/axes/HistogramValueBottomAxisArea/HistogramValueBottomAxisArea.sty.js.map +1 -1
- package/esm/charts/histogram/components/overlays/HistogramExplore/HistogramTooltip.css +1 -1
- package/esm/charts/histogram/components/overlays/HistogramExplore/HistogramTooltip.sty.js +1 -1
- package/esm/charts/histogram/components/overlays/HistogramExplore/HistogramTooltip.sty.js.map +1 -1
- package/esm/charts/histogram/components/overlays/HistogramOverlays.css +2 -2
- package/esm/charts/histogram/components/overlays/HistogramOverlays.sty.js +2 -2
- package/esm/charts/histogram/components/overlays/HistogramOverlays.sty.js.map +1 -1
- package/esm/charts/honeycomb/HoneycombChart.css +1 -1
- package/esm/charts/honeycomb/HoneycombChart.js +6 -3
- package/esm/charts/honeycomb/HoneycombChart.js.map +2 -2
- package/esm/charts/honeycomb/HoneycombChart.sty.js +1 -1
- package/esm/charts/honeycomb/HoneycombChart.sty.js.map +1 -1
- package/esm/charts/honeycomb/components/HiveOverlay.css +1 -1
- package/esm/charts/honeycomb/components/HiveOverlay.js +2 -10
- package/esm/charts/honeycomb/components/HiveOverlay.js.map +2 -2
- package/esm/charts/honeycomb/components/HiveOverlay.sty.js +1 -1
- package/esm/charts/honeycomb/components/HiveOverlay.sty.js.map +1 -1
- package/esm/charts/honeycomb/components/canvas/HiveCanvasLayout.css +1 -1
- package/esm/charts/honeycomb/components/canvas/HiveCanvasLayout.sty.js +1 -1
- package/esm/charts/honeycomb/components/canvas/HiveCanvasLayout.sty.js.map +1 -1
- package/esm/charts/honeycomb/components/canvas/renderers/CanvasCircleRenderer.js +7 -2
- package/esm/charts/honeycomb/components/canvas/renderers/CanvasCircleRenderer.js.map +2 -2
- package/esm/charts/honeycomb/components/canvas/renderers/CanvasHexagonRenderer.js +9 -5
- package/esm/charts/honeycomb/components/canvas/renderers/CanvasHexagonRenderer.js.map +2 -2
- package/esm/charts/honeycomb/components/canvas/renderers/CanvasSquareRenderer.js +7 -2
- package/esm/charts/honeycomb/components/canvas/renderers/CanvasSquareRenderer.js.map +2 -2
- package/esm/charts/honeycomb/components/canvas/utils/draw-label-and-value.js +108 -21
- package/esm/charts/honeycomb/components/canvas/utils/draw-label-and-value.js.map +2 -2
- package/esm/charts/honeycomb/components/canvas/utils/get-font-sizes.js +39 -0
- package/esm/charts/honeycomb/components/canvas/utils/get-font-sizes.js.map +7 -0
- package/esm/charts/honeycomb/components/canvas/utils/get-truncation-method.js +82 -9
- package/esm/charts/honeycomb/components/canvas/utils/get-truncation-method.js.map +2 -2
- package/esm/charts/honeycomb/components/canvas/utils/measure-node-text-content.js +13 -16
- package/esm/charts/honeycomb/components/canvas/utils/measure-node-text-content.js.map +2 -2
- package/esm/charts/honeycomb/components/canvas/utils/render-text-to-canvas.js +2 -2
- package/esm/charts/honeycomb/components/canvas/utils/render-text-to-canvas.js.map +2 -2
- package/esm/charts/honeycomb/components/canvas/utils/set-font-details-to-context.js +11 -9
- package/esm/charts/honeycomb/components/canvas/utils/set-font-details-to-context.js.map +2 -2
- package/esm/charts/honeycomb/components/toolbar/HoneycombToolbar.js +1 -3
- package/esm/charts/honeycomb/components/toolbar/HoneycombToolbar.js.map +2 -2
- package/esm/charts/honeycomb/constants.js +17 -13
- package/esm/charts/honeycomb/constants.js.map +2 -2
- package/esm/charts/honeycomb/context/honeycomb-color-scheme.context.js.map +1 -1
- package/esm/charts/honeycomb/context/honeycomb-filtered-color-scheme.context.js.map +1 -1
- package/esm/charts/honeycomb/context/honeycomb-text-size.context.js +9 -0
- package/esm/charts/honeycomb/context/honeycomb-text-size.context.js.map +7 -0
- package/esm/charts/honeycomb/hooks/use-honeycomb-chart-config.js +6 -1
- package/esm/charts/honeycomb/hooks/use-honeycomb-chart-config.js.map +2 -2
- package/esm/charts/honeycomb/hooks/use-honeycomb-text-size.js +7 -0
- package/esm/charts/honeycomb/hooks/use-honeycomb-text-size.js.map +7 -0
- package/esm/charts/honeycomb/hooks/use-overlay-events.js +7 -8
- package/esm/charts/honeycomb/hooks/use-overlay-events.js.map +2 -2
- package/esm/charts/honeycomb/providers/honeycomb-base-scale.provider.js.map +2 -2
- package/esm/charts/honeycomb/store/selectors.js +0 -2
- package/esm/charts/honeycomb/store/selectors.js.map +2 -2
- package/esm/charts/honeycomb/store/store.js +0 -13
- package/esm/charts/honeycomb/store/store.js.map +2 -2
- package/esm/charts/honeycomb/types/state.js +0 -3
- package/esm/charts/honeycomb/types/state.js.map +2 -2
- package/esm/charts/honeycomb/utils/build-honeycomb-config.js +19 -5
- package/esm/charts/honeycomb/utils/build-honeycomb-config.js.map +2 -2
- package/esm/charts/honeycomb/utils/normalize-honeycomb-chart-data.js +21 -0
- package/esm/charts/honeycomb/utils/normalize-honeycomb-chart-data.js.map +7 -0
- package/esm/charts/index.js.map +2 -2
- package/esm/charts/meter-bar/shared/components/meter-bar-layout/MeterBarLayout.css +15 -15
- package/esm/charts/meter-bar/shared/components/meter-bar-layout/MeterBarLayout.sty.js +10 -10
- package/esm/charts/meter-bar/shared/components/meter-bar-layout/MeterBarLayout.sty.js.map +1 -1
- package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Icon/Icon.css +2 -2
- package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Icon/Icon.sty.js +1 -1
- package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Icon/Icon.sty.js.map +1 -1
- package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Label/Label.css +1 -1
- package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Label/Label.sty.js +1 -1
- package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Label/Label.sty.js.map +1 -1
- package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Max/Max.css +1 -1
- package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Max/Max.sty.js +1 -1
- package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Max/Max.sty.js.map +1 -1
- package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Min/Min.css +1 -1
- package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Min/Min.sty.js +1 -1
- package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Min/Min.sty.js.map +1 -1
- package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Value/Value.css +1 -1
- package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Value/Value.sty.js +1 -1
- package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Value/Value.sty.js.map +1 -1
- package/esm/charts/meter-bar/shared/components/meter-bar-plot/MeterBarPlot.css +1 -1
- package/esm/charts/meter-bar/shared/components/meter-bar-plot/MeterBarPlot.sty.js +1 -1
- package/esm/charts/meter-bar/shared/components/meter-bar-plot/MeterBarPlot.sty.js.map +1 -1
- package/esm/charts/meter-bar/shared/styles/element-size.css +4 -4
- package/esm/charts/meter-bar/shared/styles/element-size.sty.js +1 -1
- package/esm/charts/meter-bar/shared/styles/element-size.sty.js.map +1 -1
- package/esm/charts/meter-bar/shared/styles.css +1 -1
- package/esm/charts/meter-bar/shared/styles.sty.js +1 -1
- package/esm/charts/meter-bar/shared/styles.sty.js.map +1 -1
- package/esm/charts/meter-bar/single-meter-bar/components/MeterBarChartThresholds/MeterBarChartThresholds.css +1 -1
- package/esm/charts/meter-bar/single-meter-bar/components/MeterBarChartThresholds/MeterBarChartThresholds.sty.js +1 -1
- package/esm/charts/meter-bar/single-meter-bar/components/MeterBarChartThresholds/MeterBarChartThresholds.sty.js.map +1 -1
- package/esm/charts/pie/DonutChart.js +5 -12
- package/esm/charts/pie/DonutChart.js.map +2 -2
- package/esm/charts/pie/PieChart.js +7 -14
- package/esm/charts/pie/PieChart.js.map +2 -2
- package/esm/charts/pie/components/InnerWrapper/components/InnerContainer/InnerContainer.css +1 -1
- package/esm/charts/pie/components/InnerWrapper/components/InnerContainer/InnerContainer.sty.js +1 -1
- package/esm/charts/pie/components/InnerWrapper/components/InnerContainer/InnerContainer.sty.js.map +1 -1
- package/esm/charts/pie/components/InnerWrapper/components/InnerDonut/InnerDonut.css +1 -1
- package/esm/charts/pie/components/InnerWrapper/components/InnerDonut/InnerDonut.sty.js +1 -1
- package/esm/charts/pie/components/InnerWrapper/components/InnerDonut/InnerDonut.sty.js.map +1 -1
- package/esm/charts/pie/components/PieChartOverlays/PieChartOverlays.css +1 -1
- package/esm/charts/pie/components/PieChartOverlays/PieChartOverlays.js +3 -3
- package/esm/charts/pie/components/PieChartOverlays/PieChartOverlays.js.map +2 -2
- package/esm/charts/pie/components/PieChartOverlays/PieChartOverlays.sty.js +1 -1
- package/esm/charts/pie/components/PieChartOverlays/PieChartOverlays.sty.js.map +1 -1
- package/esm/charts/pie/components/PieChartPlot/PieChartPlot.css +1 -1
- package/esm/charts/pie/components/PieChartPlot/PieChartPlot.js +65 -56
- package/esm/charts/pie/components/PieChartPlot/PieChartPlot.js.map +3 -3
- package/esm/charts/pie/components/PieChartPlot/PieChartPlot.sty.js +1 -1
- package/esm/charts/pie/components/PieChartPlot/PieChartPlot.sty.js.map +1 -1
- package/esm/charts/pie/components/PieChartSlice.js +15 -11
- package/esm/charts/pie/components/PieChartSlice.js.map +2 -2
- package/esm/charts/pie/constants.js +2 -0
- package/esm/charts/pie/constants.js.map +2 -2
- package/esm/charts/pie/context/ChartConfigContext.js.map +2 -2
- package/esm/charts/pie/context/PieChartRawDataContext.js.map +2 -2
- package/esm/charts/pie/hooks/useNormalizedPieData.js +20 -0
- package/esm/charts/pie/hooks/useNormalizedPieData.js.map +7 -0
- package/esm/charts/pie/hooks/useOverlayHandlers.js +7 -5
- package/esm/charts/pie/hooks/useOverlayHandlers.js.map +2 -2
- package/esm/charts/pie/hooks/useSliceHandlers.js +29 -3
- package/esm/charts/pie/hooks/useSliceHandlers.js.map +2 -2
- package/esm/charts/pie/providers/ChartProviders.js.map +2 -2
- package/esm/charts/pie/types/pie-chart.config.js.map +2 -2
- package/esm/charts/pie/utils/build-and-download-csv.js.map +2 -2
- package/esm/charts/pie/utils/build-group-threshold.js.map +2 -2
- package/esm/charts/pie/utils/build-slices.js.map +2 -2
- package/esm/charts/pie/utils/format-csv.js.map +2 -2
- package/esm/charts/pie/utils/group-slices-thinner-than-pad-angle.js +2 -1
- package/esm/charts/pie/utils/group-slices-thinner-than-pad-angle.js.map +2 -2
- package/esm/charts/pie/utils/normalize-pie-data.js +20 -0
- package/esm/charts/pie/utils/normalize-pie-data.js.map +7 -0
- package/esm/charts/pie/utils/pie-config.js +2 -1
- package/esm/charts/pie/utils/pie-config.js.map +2 -2
- package/esm/charts/pie/utils/sanitize-toolbar-intents.js +12 -0
- package/esm/charts/pie/utils/sanitize-toolbar-intents.js.map +7 -0
- package/esm/charts/single-value/SingleValue.css +1 -1
- package/esm/charts/single-value/SingleValue.sty.js +1 -1
- package/esm/charts/single-value/SingleValue.sty.js.map +1 -1
- package/esm/charts/single-value-grid/SingleValueGrid.css +2 -2
- package/esm/charts/single-value-grid/SingleValueGrid.sty.js +1 -1
- package/esm/charts/single-value-grid/SingleValueGrid.sty.js.map +1 -1
- package/esm/charts/single-value-grid/components/GlobalFontSizeVariables.css +1 -1
- package/esm/charts/single-value-grid/components/GlobalFontSizeVariables.sty.js +1 -1
- package/esm/charts/single-value-grid/components/GlobalFontSizeVariables.sty.js.map +1 -1
- package/esm/charts/timeseries/TimeseriesChart.js.map +2 -2
- package/esm/charts/timeseries/TimeseriesChartInternal.js +39 -17
- package/esm/charts/timeseries/TimeseriesChartInternal.js.map +2 -2
- package/esm/charts/timeseries/components/axes/TimeseriesTimeBottomAxisArea/TimeseriesTimeBottomAxisArea.css +2 -2
- package/esm/charts/timeseries/components/axes/TimeseriesTimeBottomAxisArea/TimeseriesTimeBottomAxisArea.sty.js +1 -1
- package/esm/charts/timeseries/components/axes/TimeseriesTimeBottomAxisArea/TimeseriesTimeBottomAxisArea.sty.js.map +1 -1
- package/esm/charts/timeseries/components/overlays/TimeseriesOverlays.css +4 -4
- package/esm/charts/timeseries/components/overlays/TimeseriesOverlays.sty.js +4 -4
- package/esm/charts/timeseries/components/overlays/TimeseriesOverlays.sty.js.map +1 -1
- package/esm/charts/timeseries/components/thresholds/ThresholdIndicators.css +2 -2
- package/esm/charts/timeseries/components/thresholds/ThresholdIndicators.sty.js +2 -2
- package/esm/charts/timeseries/components/thresholds/ThresholdIndicators.sty.js.map +1 -1
- package/esm/charts/top-list/TopList.css +1 -1
- package/esm/charts/top-list/TopList.js +11 -7
- package/esm/charts/top-list/TopList.js.map +2 -2
- package/esm/charts/top-list/TopList.sty.js +1 -1
- package/esm/charts/top-list/TopList.sty.js.map +1 -1
- package/esm/charts/top-list/constants.js +2 -1
- package/esm/charts/top-list/constants.js.map +2 -2
- package/esm/charts/tree-map/TreeMap.js +10 -1
- package/esm/charts/tree-map/TreeMap.js.map +2 -2
- package/esm/charts/tree-map/components/TreeMapChartLayout.js +4 -4
- package/esm/charts/tree-map/components/TreeMapChartLayout.js.map +2 -2
- package/esm/charts/tree-map/components/TreeMapLegend/TreeMapCategoricalLegend.js +3 -1
- package/esm/charts/tree-map/components/TreeMapLegend/TreeMapCategoricalLegend.js.map +2 -2
- package/esm/charts/tree-map/components/TreeMapOverlay/TreeMapOverlay.css +1 -1
- package/esm/charts/tree-map/components/TreeMapOverlay/TreeMapOverlay.js +2 -10
- package/esm/charts/tree-map/components/TreeMapOverlay/TreeMapOverlay.js.map +2 -2
- package/esm/charts/tree-map/components/TreeMapOverlay/TreeMapOverlay.sty.js +1 -1
- package/esm/charts/tree-map/components/TreeMapOverlay/TreeMapOverlay.sty.js.map +1 -1
- package/esm/charts/tree-map/components/TreeMapToolbar/TreeMapToolbar.js +2 -4
- package/esm/charts/tree-map/components/TreeMapToolbar/TreeMapToolbar.js.map +2 -2
- package/esm/charts/tree-map/components/canvas/TreeMapSquareRenderer.js +5 -2
- package/esm/charts/tree-map/components/canvas/TreeMapSquareRenderer.js.map +2 -2
- package/esm/charts/tree-map/constants.js +1 -2
- package/esm/charts/tree-map/constants.js.map +2 -2
- package/esm/charts/tree-map/context/TextSizeContext.js.map +2 -2
- package/esm/charts/tree-map/hooks/useOverlayHandlers.js +7 -8
- package/esm/charts/tree-map/hooks/useOverlayHandlers.js.map +2 -2
- package/esm/charts/tree-map/hooks/useTreeMapChartConfig.js.map +2 -2
- package/esm/charts/tree-map/hooks/useTreeMapChartHandlers.js +4 -1
- package/esm/charts/tree-map/hooks/useTreeMapChartHandlers.js.map +2 -2
- package/esm/charts/tree-map/providers/TreeMapChartProviders.js +1 -1
- package/esm/charts/tree-map/providers/TreeMapChartProviders.js.map +2 -2
- package/esm/charts/tree-map/store/selectors.js +1 -3
- package/esm/charts/tree-map/store/selectors.js.map +2 -2
- package/esm/charts/tree-map/store/store.js +0 -3
- package/esm/charts/tree-map/store/store.js.map +2 -2
- package/esm/charts/tree-map/utils/build-labels.js.map +2 -2
- package/esm/charts/tree-map/utils/build-tree-map-chart-config.js.map +2 -2
- package/esm/charts/tree-map/utils/get-legend-interaction-props.js +2 -2
- package/esm/charts/tree-map/utils/get-legend-interaction-props.js.map +2 -2
- package/esm/charts/tree-map/utils/to-hierarchical-props.js +88 -0
- package/esm/charts/tree-map/utils/to-hierarchical-props.js.map +7 -0
- package/esm/charts/xy-chart/XYChart.js +25 -12
- package/esm/charts/xy-chart/XYChart.js.map +2 -2
- package/esm/charts/xy-chart/XYChartRoot.js +4 -2
- package/esm/charts/xy-chart/XYChartRoot.js.map +2 -2
- package/esm/charts/xy-chart/components/axes/AxisArea.css +1 -1
- package/esm/charts/xy-chart/components/axes/AxisArea.sty.js +1 -1
- package/esm/charts/xy-chart/components/axes/AxisArea.sty.js.map +1 -1
- package/esm/charts/xy-chart/components/axes/AxisTickWithTruncation.css +3 -3
- package/esm/charts/xy-chart/components/axes/AxisTickWithTruncation.sty.js +3 -3
- package/esm/charts/xy-chart/components/axes/AxisTickWithTruncation.sty.js.map +1 -1
- package/esm/charts/xy-chart/components/axes/XTickWithTruncation.js.map +2 -2
- package/esm/charts/xy-chart/components/axes/XYChartLeftAxisArea.js +6 -2
- package/esm/charts/xy-chart/components/axes/XYChartLeftAxisArea.js.map +2 -2
- package/esm/charts/xy-chart/components/axes/XYChartRightAxisArea.js +6 -2
- package/esm/charts/xy-chart/components/axes/XYChartRightAxisArea.js.map +2 -2
- package/esm/charts/xy-chart/components/axes/YTickWithTruncation.js.map +2 -2
- package/esm/charts/xy-chart/components/axes/hooks/useXTickOffset.js.map +2 -2
- package/esm/charts/xy-chart/components/axes/hooks/useYTickOffset.js.map +2 -2
- package/esm/charts/xy-chart/components/displays/BarDisplay/BarLabelOverlay.css +3 -3
- package/esm/charts/xy-chart/components/displays/BarDisplay/BarLabelOverlay.sty.js +3 -3
- package/esm/charts/xy-chart/components/displays/BarDisplay/BarLabelOverlay.sty.js.map +1 -1
- package/esm/charts/xy-chart/components/legend/XYLegend/xy-legend.css +1 -1
- package/esm/charts/xy-chart/components/legend/XYLegend/xy-legend.sty.js +1 -1
- package/esm/charts/xy-chart/components/legend/XYLegend/xy-legend.sty.js.map +1 -1
- package/esm/charts/xy-chart/components/overlay/explore/HighlightedPointCanvas.js +32 -6
- package/esm/charts/xy-chart/components/overlay/explore/HighlightedPointCanvas.js.map +2 -2
- package/esm/charts/xy-chart/components/overlay/explore/XYChartCrosshair.css +1 -1
- package/esm/charts/xy-chart/components/overlay/explore/XYChartCrosshair.sty.js +1 -1
- package/esm/charts/xy-chart/components/overlay/explore/XYChartCrosshair.sty.js.map +1 -1
- package/esm/charts/xy-chart/components/overlay/explore/XYChartExplore.css +2 -2
- package/esm/charts/xy-chart/components/overlay/explore/XYChartExplore.sty.js +2 -2
- package/esm/charts/xy-chart/components/overlay/explore/XYChartExplore.sty.js.map +1 -1
- package/esm/charts/xy-chart/components/overlay/explore/XYChartLinearPoint.js +12 -6
- package/esm/charts/xy-chart/components/overlay/explore/XYChartLinearPoint.js.map +2 -2
- package/esm/charts/xy-chart/components/overlay/hooks/useOverlayEvents.js +4 -0
- package/esm/charts/xy-chart/components/overlay/hooks/useOverlayEvents.js.map +2 -2
- package/esm/charts/xy-chart/components/overlay/utils/draw-shape.js +19 -0
- package/esm/charts/xy-chart/components/overlay/utils/draw-shape.js.map +2 -2
- package/esm/charts/xy-chart/components/thresholds/XYChartThresholdIndicators.css +1 -1
- package/esm/charts/xy-chart/components/thresholds/XYChartThresholdIndicators.sty.js +1 -1
- package/esm/charts/xy-chart/components/thresholds/XYChartThresholdIndicators.sty.js.map +1 -1
- package/esm/charts/xy-chart/components/tooltip/HoveredPointTooltip/hooks/getHoveredPointTooltipBodyContent.js +2 -2
- package/esm/charts/xy-chart/components/tooltip/HoveredPointTooltip/hooks/getHoveredPointTooltipBodyContent.js.map +2 -2
- package/esm/charts/xy-chart/components/tooltip/SharedXYChartTooltip/SharedXYChartTooltip.js +23 -22
- package/esm/charts/xy-chart/components/tooltip/SharedXYChartTooltip/SharedXYChartTooltip.js.map +2 -2
- package/esm/charts/xy-chart/components/tooltip/utils/get-cached-separator.js +15 -0
- package/esm/charts/xy-chart/components/tooltip/utils/get-cached-separator.js.map +7 -0
- package/esm/charts/xy-chart/components/tooltip/utils/get-tooltip-formatter.js +4 -2
- package/esm/charts/xy-chart/components/tooltip/utils/get-tooltip-formatter.js.map +2 -2
- package/esm/charts/xy-chart/components/tooltip/utils/tooltip-styles.css +5 -5
- package/esm/charts/xy-chart/components/tooltip/utils/tooltip-styles.sty.js +4 -4
- package/esm/charts/xy-chart/components/tooltip/utils/tooltip-styles.sty.js.map +1 -1
- package/esm/charts/xy-chart/constants/defaults.js +2 -0
- package/esm/charts/xy-chart/constants/defaults.js.map +2 -2
- package/esm/charts/xy-chart/context/XYChartOverlayPerformance.context.js.map +2 -2
- package/esm/charts/xy-chart/hooks/useBuildHoverGrid.js +38 -0
- package/esm/charts/xy-chart/hooks/useBuildHoverGrid.js.map +7 -0
- package/esm/charts/xy-chart/hooks/useBuildOverlayStrategy.js +88 -0
- package/esm/charts/xy-chart/hooks/useBuildOverlayStrategy.js.map +7 -0
- package/esm/charts/xy-chart/hooks/useXYChartDataProvider.js +10 -3
- package/esm/charts/xy-chart/hooks/useXYChartDataProvider.js.map +3 -3
- package/esm/charts/xy-chart/layout/XYChartLayout.css +2 -2
- package/esm/charts/xy-chart/layout/XYChartLayout.sty.js +2 -2
- package/esm/charts/xy-chart/layout/XYChartLayout.sty.js.map +1 -1
- package/esm/charts/xy-chart/providers/XYChartAnnotationsShownIndicatorsProvider.js +7 -9
- package/esm/charts/xy-chart/providers/XYChartAnnotationsShownIndicatorsProvider.js.map +2 -2
- package/esm/charts/xy-chart/providers/XYChartAxesTicksProvider.js +41 -24
- package/esm/charts/xy-chart/providers/XYChartAxesTicksProvider.js.map +2 -2
- package/esm/charts/xy-chart/providers/XYChartOverlayPerformanceProvider.js +16 -61
- package/esm/charts/xy-chart/providers/XYChartOverlayPerformanceProvider.js.map +2 -2
- package/esm/charts/xy-chart/providers/XYChartScalesProvider.js +9 -2
- package/esm/charts/xy-chart/providers/XYChartScalesProvider.js.map +2 -2
- package/esm/charts/xy-chart/utils/build-axis-id-to-min-bar-size.js +28 -0
- package/esm/charts/xy-chart/utils/build-axis-id-to-min-bar-size.js.map +7 -0
- package/esm/charts/xy-chart/utils/build-sorted-entries.js +63 -10
- package/esm/charts/xy-chart/utils/build-sorted-entries.js.map +2 -2
- package/esm/charts/xy-chart/utils/filter-out-of-range-ticks.js +28 -0
- package/esm/charts/xy-chart/utils/filter-out-of-range-ticks.js.map +7 -0
- package/esm/charts/xy-chart/utils/generate-scales-by-axis-id.js +19 -3
- package/esm/charts/xy-chart/utils/generate-scales-by-axis-id.js.map +2 -2
- package/esm/charts/xy-chart/utils/get-ticks-formatted-by-config.js +11 -0
- package/esm/charts/xy-chart/utils/get-ticks-formatted-by-config.js.map +2 -2
- package/esm/charts/xy-chart/utils/query-hovered-grid.js +176 -0
- package/esm/charts/xy-chart/utils/query-hovered-grid.js.map +7 -0
- package/esm/charts/xy-chart/utils/query-shared.js +53 -23
- package/esm/charts/xy-chart/utils/query-shared.js.map +2 -2
- package/esm/charts/xy-chart-adoption/histogram/HistogramToXY.js +11 -50
- package/esm/charts/xy-chart-adoption/histogram/HistogramToXY.js.map +2 -2
- package/esm/charts/xy-chart-adoption/histogram/transformer-annotations-to-xy.js +3 -18
- package/esm/charts/xy-chart-adoption/histogram/transformer-annotations-to-xy.js.map +3 -3
- package/esm/charts/xy-chart-adoption/shared/types/legacy-props.js +1 -0
- package/esm/charts/xy-chart-adoption/shared/types/legacy-props.js.map +7 -0
- package/esm/charts/xy-chart-adoption/shared/types/props.js.map +7 -0
- package/esm/charts/xy-chart-adoption/shared/utils/render-xy-annotations.js +70 -0
- package/esm/charts/xy-chart-adoption/shared/utils/render-xy-annotations.js.map +7 -0
- package/esm/charts/xy-chart-adoption/timeseries/TimeseriesToXY.js +81 -27
- package/esm/charts/xy-chart-adoption/timeseries/TimeseriesToXY.js.map +2 -2
- package/esm/charts/xy-chart-adoption/timeseries/iterate-slots.js +36 -1
- package/esm/charts/xy-chart-adoption/timeseries/iterate-slots.js.map +2 -2
- package/esm/charts/xy-chart-adoption/timeseries/resolve-value-representation.js +7 -0
- package/esm/charts/xy-chart-adoption/timeseries/resolve-value-representation.js.map +7 -0
- package/esm/charts/xy-chart-adoption/timeseries/transformer-annotations-to-xy.js +35 -0
- package/esm/charts/xy-chart-adoption/timeseries/transformer-annotations-to-xy.js.map +7 -0
- package/esm/charts/xy-chart-adoption/timeseries/transformer-data-to-xy.js +7 -6
- package/esm/charts/xy-chart-adoption/timeseries/transformer-data-to-xy.js.map +2 -2
- package/esm/charts/xy-chart-adoption/timeseries/types/timeseries.js.map +2 -2
- package/esm/charts/xy-chart-adoption/timeseries/utils/build-buckets.js +60 -0
- package/esm/charts/xy-chart-adoption/timeseries/utils/build-buckets.js.map +7 -0
- package/esm/charts/xy-chart-adoption/timeseries/utils/collect-annotations-slots.js +58 -0
- package/esm/charts/xy-chart-adoption/timeseries/utils/collect-annotations-slots.js.map +7 -0
- package/esm/charts/xy-chart-adoption/timeseries/utils/map-axis-slots.js +43 -0
- package/esm/charts/xy-chart-adoption/timeseries/utils/map-axis-slots.js.map +7 -0
- package/esm/charts/xy-chart-adoption/timeseries/utils/render-series.js +6 -0
- package/esm/charts/xy-chart-adoption/timeseries/utils/render-series.js.map +2 -2
- package/esm/charts/xy-chart-adoption/timeseries/utils/resolve-gap-policy.js +16 -0
- package/esm/charts/xy-chart-adoption/timeseries/utils/resolve-gap-policy.js.map +7 -0
- package/esm/content/accordion/Accordion.css +14 -14
- package/esm/content/accordion/Accordion.sty.js +8 -8
- package/esm/content/accordion/Accordion.sty.js.map +1 -1
- package/esm/content/ai-loading-indicator/AiLoadingIndicator.css +12 -12
- package/esm/content/ai-loading-indicator/AiLoadingIndicator.sty.js +4 -4
- package/esm/content/ai-loading-indicator/AiLoadingIndicator.sty.js.map +1 -1
- package/esm/content/ai-response/AiResponse.css +5 -5
- package/esm/content/ai-response/AiResponse.sty.js +3 -2
- package/esm/content/ai-response/AiResponse.sty.js.map +2 -2
- package/esm/content/avatar/Avatar.css +13 -13
- package/esm/content/avatar/Avatar.sty.js +4 -4
- package/esm/content/avatar/Avatar.sty.js.map +1 -1
- package/esm/content/avatar-group/AvatarGroup.css +3 -3
- package/esm/content/avatar-group/AvatarGroup.sty.js +2 -2
- package/esm/content/avatar-group/AvatarGroup.sty.js.map +1 -1
- package/esm/content/chip/BaseChip.css +40 -40
- package/esm/content/chip/BaseChip.sty.js +5 -5
- package/esm/content/chip/BaseChip.sty.js.map +1 -1
- package/esm/content/chip/ChipContent.css +11 -11
- package/esm/content/chip/ChipContent.sty.js +2 -2
- package/esm/content/chip/ChipContent.sty.js.map +1 -1
- package/esm/content/chip/ChipDeleteButton.css +19 -19
- package/esm/content/chip/ChipDeleteButton.sty.js +4 -4
- package/esm/content/chip/ChipDeleteButton.sty.js.map +1 -1
- package/esm/content/chip/ChipKey.css +6 -6
- package/esm/content/chip/ChipKey.sty.js +1 -1
- package/esm/content/chip/ChipKey.sty.js.map +1 -1
- package/esm/content/chip/GroupedChip.css +3 -3
- package/esm/content/chip/GroupedChip.sty.js +3 -3
- package/esm/content/chip/GroupedChip.sty.js.map +1 -1
- package/esm/content/chip-group/ChipGroup.css +4 -4
- package/esm/content/chip-group/ChipGroup.js +36 -49
- package/esm/content/chip-group/ChipGroup.js.map +2 -2
- package/esm/content/chip-group/ChipGroup.sty.js +1 -1
- package/esm/content/chip-group/ChipGroup.sty.js.map +1 -1
- package/esm/content/chip-group/Control.css +4 -4
- package/esm/content/chip-group/Control.sty.js +1 -1
- package/esm/content/chip-group/Control.sty.js.map +1 -1
- package/esm/content/chip-group/chip-group-utils.js +34 -0
- package/esm/content/chip-group/chip-group-utils.js.map +7 -0
- package/esm/content/chip-group/state/chip-group-state-reducer.js.map +1 -1
- package/esm/content/code-snippet/CodeHighlight.css +25 -26
- package/esm/content/code-snippet/CodeHighlight.sty.js +10 -6
- package/esm/content/code-snippet/CodeHighlight.sty.js.map +2 -2
- package/esm/content/code-snippet/CodeSnippet.css +31 -5
- package/esm/content/code-snippet/CodeSnippet.js +6 -2
- package/esm/content/code-snippet/CodeSnippet.js.map +2 -2
- package/esm/content/code-snippet/CodeSnippet.sty.js +8 -3
- package/esm/content/code-snippet/CodeSnippet.sty.js.map +2 -2
- package/esm/content/empty-state/EmptyState.css +28 -28
- package/esm/content/empty-state/EmptyState.sty.js +7 -7
- package/esm/content/empty-state/EmptyState.sty.js.map +1 -1
- package/esm/content/empty-state/empty-state-utils.js +2 -9
- package/esm/content/empty-state/empty-state-utils.js.map +2 -2
- package/esm/content/empty-state/slot-components/Footer.css +1 -1
- package/esm/content/empty-state/slot-components/Footer.sty.js +1 -1
- package/esm/content/empty-state/slot-components/Footer.sty.js.map +1 -1
- package/esm/content/empty-state/slot-components/Visual.css +3 -3
- package/esm/content/empty-state/slot-components/Visual.sty.js +1 -1
- package/esm/content/empty-state/slot-components/Visual.sty.js.map +1 -1
- package/esm/content/expandable-text/ExpandableText.css +7 -7
- package/esm/content/expandable-text/ExpandableText.sty.js +2 -2
- package/esm/content/expandable-text/ExpandableText.sty.js.map +1 -1
- package/esm/content/feature-highlight/FeatureHighlight.css +12 -12
- package/esm/content/feature-highlight/FeatureHighlight.js +9 -5
- package/esm/content/feature-highlight/FeatureHighlight.js.map +2 -2
- package/esm/content/feature-highlight/FeatureHighlight.sty.js +3 -3
- package/esm/content/feature-highlight/FeatureHighlight.sty.js.map +1 -1
- package/esm/content/health-indicator/styles.css +23 -23
- package/esm/content/health-indicator/styles.sty.js +1 -1
- package/esm/content/health-indicator/styles.sty.js.map +1 -1
- package/esm/content/index.js.map +2 -2
- package/esm/content/information-overlay/InformationOverlay.css +25 -25
- package/esm/content/information-overlay/InformationOverlay.sty.js +5 -5
- package/esm/content/information-overlay/InformationOverlay.sty.js.map +1 -1
- package/esm/content/keyboard-shortcut/KeyboardShortcut.css +14 -14
- package/esm/content/keyboard-shortcut/KeyboardShortcut.sty.js +2 -2
- package/esm/content/keyboard-shortcut/KeyboardShortcut.sty.js.map +1 -1
- package/esm/content/markdown/Markdown.css +3 -3
- package/esm/content/markdown/Markdown.sty.js +1 -1
- package/esm/content/markdown/Markdown.sty.js.map +1 -1
- package/esm/content/markdown/transformers/typography-mapping.css +9 -9
- package/esm/content/markdown/transformers/typography-mapping.sty.js +6 -6
- package/esm/content/markdown/transformers/typography-mapping.sty.js.map +1 -1
- package/esm/content/microguide/Microguide.css +11 -11
- package/esm/content/microguide/Microguide.sty.js +7 -7
- package/esm/content/microguide/Microguide.sty.js.map +1 -1
- package/esm/content/progress/ProgressBar.css +71 -71
- package/esm/content/progress/ProgressBar.sty.js +5 -5
- package/esm/content/progress/ProgressBar.sty.js.map +1 -1
- package/esm/content/progress/ProgressBarIcon.css +2 -2
- package/esm/content/progress/ProgressBarIcon.sty.js +1 -1
- package/esm/content/progress/ProgressBarIcon.sty.js.map +1 -1
- package/esm/content/progress/ProgressBarLabel.css +3 -3
- package/esm/content/progress/ProgressBarLabel.sty.js +1 -1
- package/esm/content/progress/ProgressBarLabel.sty.js.map +1 -1
- package/esm/content/progress/ProgressBarValue.css +5 -5
- package/esm/content/progress/ProgressBarValue.sty.js +1 -1
- package/esm/content/progress/ProgressBarValue.sty.js.map +1 -1
- package/esm/content/progress/ProgressCircle.css +40 -40
- package/esm/content/progress/ProgressCircle.sty.js +5 -5
- package/esm/content/progress/ProgressCircle.sty.js.map +1 -1
- package/esm/content/release-phase-indicator/ReleasePhaseIndicator.js +4 -2
- package/esm/content/release-phase-indicator/ReleasePhaseIndicator.js.map +2 -2
- package/esm/content/release-phase-indicator/messages.js +5 -0
- package/esm/content/release-phase-indicator/messages.js.map +2 -2
- package/esm/content/shared-components/Visual.css +3 -3
- package/esm/content/shared-components/Visual.sty.js +1 -1
- package/esm/content/shared-components/Visual.sty.js.map +1 -1
- package/esm/content/skeleton/Skeleton.css +7 -7
- package/esm/content/skeleton/Skeleton.sty.js +5 -5
- package/esm/content/skeleton/Skeleton.sty.js.map +1 -1
- package/esm/content/terminology-overlay/TerminologyOverlay.css +4 -4
- package/esm/content/terminology-overlay/TerminologyOverlay.sty.js +1 -1
- package/esm/content/terminology-overlay/TerminologyOverlay.sty.js.map +1 -1
- package/esm/core/components/app-root/AppRoot.css +12 -2
- package/esm/core/components/app-root/AppRoot.js +3 -2
- package/esm/core/components/app-root/AppRoot.js.map +2 -2
- package/esm/core/components/app-root/AppRoot.sty.js +1 -1
- package/esm/core/components/app-root/AppRoot.sty.js.map +1 -1
- package/esm/core/components/app-root/visual-refresh-overrides.js +6 -0
- package/esm/core/components/app-root/visual-refresh-overrides.js.map +2 -2
- package/esm/core/components/error-fallback/ErrorFallback.js.map +7 -0
- package/esm/{filters/filter-field → core/components}/error-fallback/messages.js +4 -4
- package/esm/core/components/error-fallback/messages.js.map +7 -0
- package/esm/core/components/visually-hidden/VisuallyHidden.css +1 -1
- package/esm/core/components/visually-hidden/VisuallyHidden.sty.js +1 -1
- package/esm/core/components/visually-hidden/VisuallyHidden.sty.js.map +1 -1
- package/esm/core/dql/dql-common.js +6 -2
- package/esm/core/dql/dql-common.js.map +2 -2
- package/esm/core/hooks/useVisualRefreshEnabled.js +14 -0
- package/esm/core/hooks/useVisualRefreshEnabled.js.map +7 -0
- package/esm/core/index.js +12 -0
- package/esm/core/index.js.map +2 -2
- package/esm/core/sdk/app-state/AppStateContext.js +27 -0
- package/esm/core/sdk/app-state/AppStateContext.js.map +7 -0
- package/esm/core/sdk/app-state/AppStateProvider.js +87 -0
- package/esm/core/sdk/app-state/AppStateProvider.js.map +7 -0
- package/esm/core/sdk/app-state/app-state-store.js +12 -0
- package/esm/core/sdk/app-state/app-state-store.js.map +7 -0
- package/esm/core/sdk/app-state/useAppState.js +26 -0
- package/esm/core/sdk/app-state/useAppState.js.map +7 -0
- package/esm/core/sdk/app-state/useAppStateInternal.js +125 -0
- package/esm/core/sdk/app-state/useAppStateInternal.js.map +7 -0
- package/esm/core/sdk/app-state/useAppStateValue.js +14 -0
- package/esm/core/sdk/app-state/useAppStateValue.js.map +7 -0
- package/esm/core/sdk/sdk-logger.js +2 -2
- package/esm/core/styles/defaultChartValues.css +1 -1
- package/esm/core/styles/defaultChartValues.sty.js +1 -1
- package/esm/core/styles/defaultChartValues.sty.js.map +1 -1
- package/esm/core/styles/focusRing.css +66 -66
- package/esm/core/styles/focusRing.sty.js +2 -2
- package/esm/core/styles/focusRing.sty.js.map +1 -1
- package/esm/core/styles/focusRingStatic.css +34 -34
- package/esm/core/styles/focusRingStatic.sty.js +1 -1
- package/esm/core/styles/focusRingStatic.sty.js.map +1 -1
- package/esm/core/styles/virtualFocus.css +2 -2
- package/esm/core/styles/virtualFocus.sty.js +1 -1
- package/esm/core/styles/virtualFocus.sty.js.map +1 -1
- package/esm/core/time/timeframeStore/actions/dateTimePicker.js +5 -4
- package/esm/core/time/timeframeStore/actions/dateTimePicker.js.map +2 -2
- package/esm/core/time/validation.js +49 -4
- package/esm/core/time/validation.js.map +2 -2
- package/esm/core/utils/colorUtils.css +60 -60
- package/esm/core/utils/colorUtils.sty.js +2 -2
- package/esm/core/utils/colorUtils.sty.js.map +1 -1
- package/esm/{charts/core → core}/utils/get-tick-value-as-number.js.map +1 -1
- package/esm/core/utils/get-ticks.js +12 -0
- package/esm/core/utils/get-ticks.js.map +7 -0
- package/esm/editors/base-code-editor/BaseCodeEditor.css +147 -135
- package/esm/editors/base-code-editor/BaseCodeEditor.js +151 -5
- package/esm/editors/base-code-editor/BaseCodeEditor.js.map +2 -2
- package/esm/editors/base-code-editor/BaseCodeEditor.sty.js +2 -2
- package/esm/editors/base-code-editor/BaseCodeEditor.sty.js.map +1 -1
- package/esm/editors/base-code-editor/configuration/configure-format-keymap.js +22 -0
- package/esm/editors/base-code-editor/configuration/configure-format-keymap.js.map +7 -0
- package/esm/editors/base-code-editor/configuration/configure-placeholder.js +34 -3
- package/esm/editors/base-code-editor/configuration/configure-placeholder.js.map +2 -2
- package/esm/editors/base-code-editor/configuration/getDefaultConfigurations.js +105 -7
- package/esm/editors/base-code-editor/configuration/getDefaultConfigurations.js.map +3 -3
- package/esm/editors/base-code-editor/utils/key-maps.js +2 -0
- package/esm/editors/base-code-editor/utils/key-maps.js.map +2 -2
- package/esm/editors/code-editor/CodeEditor.js +26 -2
- package/esm/editors/code-editor/CodeEditor.js.map +2 -2
- package/esm/editors/dql-editor/DQLEditor.js +57 -4
- package/esm/editors/dql-editor/DQLEditor.js.map +2 -2
- package/esm/editors/dql-editor/actions-menu/ActionsMenu.css +23 -13
- package/esm/editors/dql-editor/actions-menu/ActionsMenu.js +8 -1
- package/esm/editors/dql-editor/actions-menu/ActionsMenu.js.map +2 -2
- package/esm/editors/dql-editor/actions-menu/ActionsMenu.sty.js +5 -4
- package/esm/editors/dql-editor/actions-menu/ActionsMenu.sty.js.map +2 -2
- package/esm/editors/dql-editor/actions-menu/actions-menu-messages.js +5 -0
- package/esm/editors/dql-editor/actions-menu/actions-menu-messages.js.map +2 -2
- package/esm/editors/dql-editor/dql/SuggestionPart.css +1 -1
- package/esm/editors/dql-editor/dql/SuggestionPart.sty.js +1 -1
- package/esm/editors/dql-editor/dql/SuggestionPart.sty.js.map +1 -1
- package/esm/editors/dql-editor/dql/SuggestionsInfoSection.css +7 -7
- package/esm/editors/dql-editor/dql/SuggestionsInfoSection.js +10 -1
- package/esm/editors/dql-editor/dql/SuggestionsInfoSection.js.map +2 -2
- package/esm/editors/dql-editor/dql/SuggestionsInfoSection.sty.js +3 -3
- package/esm/editors/dql-editor/dql/SuggestionsInfoSection.sty.js.map +1 -1
- package/esm/editors/dql-editor/dql/open-autocomplete.js +21 -3
- package/esm/editors/dql-editor/dql/open-autocomplete.js.map +2 -2
- package/esm/editors/dql-editor/dql/suggestion-autocompletions.js +3 -0
- package/esm/editors/dql-editor/dql/suggestion-autocompletions.js.map +2 -2
- package/esm/editors/index.js.map +2 -2
- package/esm/filters/filter-field/FilterField.css +151 -119
- package/esm/filters/filter-field/FilterField.js +78 -4
- package/esm/filters/filter-field/FilterField.js.map +2 -2
- package/esm/filters/filter-field/FilterField.sty.js +28 -28
- package/esm/filters/filter-field/FilterField.sty.js.map +1 -1
- package/esm/filters/filter-field/components/FilterFieldSuffixButtons.css +3 -3
- package/esm/filters/filter-field/components/FilterFieldSuffixButtons.sty.js +3 -3
- package/esm/filters/filter-field/components/FilterFieldSuffixButtons.sty.js.map +1 -1
- package/esm/filters/filter-field/components/FilterStatement.css +13 -13
- package/esm/filters/filter-field/components/FilterStatement.sty.js +6 -6
- package/esm/filters/filter-field/components/FilterStatement.sty.js.map +1 -1
- package/esm/filters/filter-field/hooks/recent-and-pinned/usePinnedFilterSuggestions.js +1 -1
- package/esm/filters/filter-field/hooks/recent-and-pinned/usePinnedFilterSuggestions.js.map +2 -2
- package/esm/filters/filter-field/hooks/recent-and-pinned/usePinnedFilters.js +35 -28
- package/esm/filters/filter-field/hooks/recent-and-pinned/usePinnedFilters.js.map +2 -2
- package/esm/filters/filter-field/hooks/recent-and-pinned/useRecentFilters.js +24 -22
- package/esm/filters/filter-field/hooks/recent-and-pinned/useRecentFilters.js.map +2 -2
- package/esm/filters/filter-field/hooks/useSuggestions.js +2 -7
- package/esm/filters/filter-field/hooks/useSuggestions.js.map +2 -2
- package/esm/filters/filter-field/state/recent-pinned-store.js +11 -51
- package/esm/filters/filter-field/state/recent-pinned-store.js.map +2 -2
- package/esm/filters/filter-field/suggestions/RecentPinnedSuggestionItem.css +9 -9
- package/esm/filters/filter-field/suggestions/RecentPinnedSuggestionItem.sty.js +2 -2
- package/esm/filters/filter-field/suggestions/RecentPinnedSuggestionItem.sty.js.map +1 -1
- package/esm/filters/filter-field/suggestions/Suggestion.css +24 -24
- package/esm/filters/filter-field/suggestions/Suggestion.sty.js +16 -16
- package/esm/filters/filter-field/suggestions/Suggestion.sty.js.map +1 -1
- package/esm/filters/filter-field/suggestions/SuggestionDetails.css +2 -2
- package/esm/filters/filter-field/suggestions/SuggestionDetails.sty.js +2 -2
- package/esm/filters/filter-field/suggestions/SuggestionDetails.sty.js.map +1 -1
- package/esm/filters/filter-field/suggestions/SuggestionGroup.css +6 -6
- package/esm/filters/filter-field/suggestions/SuggestionGroup.sty.js +3 -3
- package/esm/filters/filter-field/suggestions/SuggestionGroup.sty.js.map +1 -1
- package/esm/filters/filter-field/suggestions/SuggestionGroupLabel.css +1 -1
- package/esm/filters/filter-field/suggestions/SuggestionGroupLabel.sty.js +1 -1
- package/esm/filters/filter-field/suggestions/SuggestionGroupLabel.sty.js.map +1 -1
- package/esm/filters/filter-field/suggestions/SuggestionPin.js +5 -9
- package/esm/filters/filter-field/suggestions/SuggestionPin.js.map +2 -2
- package/esm/filters/filter-field/suggestions/SuggestionTips.css +7 -7
- package/esm/filters/filter-field/suggestions/SuggestionTips.sty.js +5 -5
- package/esm/filters/filter-field/suggestions/SuggestionTips.sty.js.map +1 -1
- package/esm/filters/filter-field/suggestions/SuggestionsOverlay.css +7 -7
- package/esm/filters/filter-field/suggestions/SuggestionsOverlay.sty.js +5 -5
- package/esm/filters/filter-field/suggestions/SuggestionsOverlay.sty.js.map +1 -1
- package/esm/filters/segment-selector/SegmentSelector.css +4 -4
- package/esm/filters/segment-selector/SegmentSelector.js +100 -9
- package/esm/filters/segment-selector/SegmentSelector.js.map +2 -2
- package/esm/filters/segment-selector/SegmentSelector.sty.js +4 -4
- package/esm/filters/segment-selector/SegmentSelector.sty.js.map +1 -1
- package/esm/filters/segment-selector/contexts/SegmentsUI/segmentValidationHelper.js +6 -3
- package/esm/filters/segment-selector/contexts/SegmentsUI/segmentValidationHelper.js.map +2 -2
- package/esm/filters/segment-selector/parts/EmptySegments.css +1 -1
- package/esm/filters/segment-selector/parts/EmptySegments.sty.js +1 -1
- package/esm/filters/segment-selector/parts/EmptySegments.sty.js.map +1 -1
- package/esm/filters/segment-selector/parts/Overlay.css +8 -8
- package/esm/filters/segment-selector/parts/Overlay.js +2 -1
- package/esm/filters/segment-selector/parts/Overlay.js.map +2 -2
- package/esm/filters/segment-selector/parts/Overlay.sty.js +8 -8
- package/esm/filters/segment-selector/parts/Overlay.sty.js.map +1 -1
- package/esm/filters/segment-selector/parts/ShowMorePanel/ShowMorePanel.css +4 -4
- package/esm/filters/segment-selector/parts/ShowMorePanel/ShowMorePanel.sty.js +4 -4
- package/esm/filters/segment-selector/parts/ShowMorePanel/ShowMorePanel.sty.js.map +1 -1
- package/esm/filters/segment-selector/parts/segmentsPresets/SegmentsPresets.css +32 -32
- package/esm/filters/segment-selector/parts/segmentsPresets/SegmentsPresets.sty.js +10 -10
- package/esm/filters/segment-selector/parts/segmentsPresets/SegmentsPresets.sty.js.map +1 -1
- package/esm/filters/segment-selector/parts/selectionBar/SegmentSelect.css +22 -22
- package/esm/filters/segment-selector/parts/selectionBar/SegmentSelect.sty.js +7 -7
- package/esm/filters/segment-selector/parts/selectionBar/SegmentSelect.sty.js.map +1 -1
- package/esm/filters/segment-selector/parts/selectionBar/SegmentSelectorTrigger.css +1 -1
- package/esm/filters/segment-selector/parts/selectionBar/SegmentSelectorTrigger.sty.js +1 -1
- package/esm/filters/segment-selector/parts/selectionBar/SegmentSelectorTrigger.sty.js.map +1 -1
- package/esm/filters/segment-selector/parts/selectionBar/SelectionBar.js +13 -10
- package/esm/filters/segment-selector/parts/selectionBar/SelectionBar.js.map +2 -2
- package/esm/filters/segment-selector/parts/selectionBar/ValueSelect.js +68 -27
- package/esm/filters/segment-selector/parts/selectionBar/ValueSelect.js.map +2 -2
- package/esm/filters/timeframe-selector/TimeframeSelector.css +2 -2
- package/esm/filters/timeframe-selector/TimeframeSelector.js +4 -0
- package/esm/filters/timeframe-selector/TimeframeSelector.js.map +2 -2
- package/esm/filters/timeframe-selector/TimeframeSelector.sty.js +2 -2
- package/esm/filters/timeframe-selector/TimeframeSelector.sty.js.map +1 -1
- package/esm/filters/timeframe-selector/TimeframeSelectorRoot.js +181 -5
- package/esm/filters/timeframe-selector/TimeframeSelectorRoot.js.map +2 -2
- package/esm/filters/timeframe-selector/components/custom-timeframe-selector/CustomTimeframeSelector.css +4 -4
- package/esm/filters/timeframe-selector/components/custom-timeframe-selector/CustomTimeframeSelector.sty.js +3 -3
- package/esm/filters/timeframe-selector/components/custom-timeframe-selector/CustomTimeframeSelector.sty.js.map +1 -1
- package/esm/filters/timeframe-selector/components/overlay/TimeframeSelectorOverlay.css +4 -4
- package/esm/filters/timeframe-selector/components/overlay/TimeframeSelectorOverlay.sty.js +4 -4
- package/esm/filters/timeframe-selector/components/overlay/TimeframeSelectorOverlay.sty.js.map +1 -1
- package/esm/filters/timeframe-selector/components/presets/Presets.css +27 -27
- package/esm/filters/timeframe-selector/components/presets/Presets.sty.js +11 -11
- package/esm/filters/timeframe-selector/components/presets/Presets.sty.js.map +1 -1
- package/esm/filters/timeframe-selector/components/trigger/Trigger.css +11 -11
- package/esm/filters/timeframe-selector/components/trigger/Trigger.js +2 -2
- package/esm/filters/timeframe-selector/components/trigger/Trigger.js.map +2 -2
- package/esm/filters/timeframe-selector/components/trigger/Trigger.sty.js +4 -4
- package/esm/filters/timeframe-selector/components/trigger/Trigger.sty.js.map +1 -1
- package/esm/forms/_base-input/BaseInput.css +99 -99
- package/esm/forms/_base-input/BaseInput.js +32 -5
- package/esm/forms/_base-input/BaseInput.js.map +2 -2
- package/esm/forms/_base-input/BaseInput.sty.js +11 -11
- package/esm/forms/_base-input/BaseInput.sty.js.map +1 -1
- package/esm/forms/_base-input/BaseInputContent.css +7 -7
- package/esm/forms/_base-input/BaseInputContent.sty.js +1 -1
- package/esm/forms/_base-input/BaseInputContent.sty.js.map +1 -1
- package/esm/forms/calendar/Calendar.css +48 -48
- package/esm/forms/calendar/Calendar.sty.js +12 -12
- package/esm/forms/calendar/Calendar.sty.js.map +1 -1
- package/esm/forms/calendar/CalendarRoot.js +69 -14
- package/esm/forms/calendar/CalendarRoot.js.map +2 -2
- package/esm/forms/calendar/components/CalendarItem.css +7 -7
- package/esm/forms/calendar/components/CalendarItem.sty.js +4 -4
- package/esm/forms/calendar/components/CalendarItem.sty.js.map +1 -1
- package/esm/forms/calendar/components/CalendarOutlineIcon.css +8 -8
- package/esm/forms/calendar/components/CalendarOutlineIcon.sty.js +5 -5
- package/esm/forms/calendar/components/CalendarOutlineIcon.sty.js.map +1 -1
- package/esm/forms/calendar/variables.sty.js +2 -2
- package/esm/forms/calendar/variables.sty.js.map +1 -1
- package/esm/forms/checkbox/Checkbox.css +20 -20
- package/esm/forms/checkbox/Checkbox.js +35 -8
- package/esm/forms/checkbox/Checkbox.js.map +2 -2
- package/esm/forms/checkbox/Checkbox.sty.js +3 -3
- package/esm/forms/checkbox/Checkbox.sty.js.map +1 -1
- package/esm/forms/date-time-picker/DateSelector.js +2 -2
- package/esm/forms/date-time-picker/DateSelector.js.map +2 -2
- package/esm/forms/date-time-picker/DateTimePicker.css +75 -75
- package/esm/forms/date-time-picker/DateTimePicker.js +9 -4
- package/esm/forms/date-time-picker/DateTimePicker.js.map +2 -2
- package/esm/forms/date-time-picker/DateTimePicker.sty.js +6 -6
- package/esm/forms/date-time-picker/DateTimePicker.sty.js.map +1 -1
- package/esm/forms/date-time-picker/DateTimePickerRoot.js +70 -3
- package/esm/forms/date-time-picker/DateTimePickerRoot.js.map +2 -2
- package/esm/forms/date-time-range-picker/DateRangeSelector.css +1 -1
- package/esm/forms/date-time-range-picker/DateRangeSelector.js +3 -3
- package/esm/forms/date-time-range-picker/DateRangeSelector.js.map +2 -2
- package/esm/forms/date-time-range-picker/DateRangeSelector.sty.js +1 -1
- package/esm/forms/date-time-range-picker/DateRangeSelector.sty.js.map +1 -1
- package/esm/forms/date-time-range-picker/DateTimeInput.css +11 -11
- package/esm/forms/date-time-range-picker/DateTimeInput.js +25 -3
- package/esm/forms/date-time-range-picker/DateTimeInput.js.map +2 -2
- package/esm/forms/date-time-range-picker/DateTimeInput.sty.js +3 -3
- package/esm/forms/date-time-range-picker/DateTimeInput.sty.js.map +1 -1
- package/esm/forms/date-time-range-picker/DateTimeRangePicker.css +27 -27
- package/esm/forms/date-time-range-picker/DateTimeRangePicker.sty.js +4 -4
- package/esm/forms/date-time-range-picker/DateTimeRangePicker.sty.js.map +1 -1
- package/esm/forms/date-time-range-picker/DateTimeRangePickerRoot.js +111 -3
- package/esm/forms/date-time-range-picker/DateTimeRangePickerRoot.js.map +2 -2
- package/esm/forms/forms-core/components/field-set/FieldSet.css +2 -2
- package/esm/forms/forms-core/components/field-set/FieldSet.sty.js +2 -2
- package/esm/forms/forms-core/components/field-set/FieldSet.sty.js.map +1 -1
- package/esm/forms/forms-core/components/form-field/FormField.sty.js +1 -1
- package/esm/forms/forms-core/components/form-field/FormField.sty.js.map +1 -1
- package/esm/forms/forms-core/components/form-field-messages/FormFieldMessageItem.css +5 -5
- package/esm/forms/forms-core/components/form-field-messages/FormFieldMessageItem.js +9 -5
- package/esm/forms/forms-core/components/form-field-messages/FormFieldMessageItem.js.map +2 -2
- package/esm/forms/forms-core/components/form-field-messages/FormFieldMessageItem.sty.js +2 -2
- package/esm/forms/forms-core/components/form-field-messages/FormFieldMessageItem.sty.js.map +1 -1
- package/esm/forms/forms-core/components/form-field-messages/FormFieldMessages.sty.js +1 -1
- package/esm/forms/forms-core/components/form-field-messages/FormFieldMessages.sty.js.map +1 -1
- package/esm/forms/forms-core/components/label/Label.css +5 -5
- package/esm/forms/forms-core/components/label/Label.sty.js +2 -2
- package/esm/forms/forms-core/components/label/Label.sty.js.map +1 -1
- package/esm/forms/forms-core/hooks/useFormFieldValidation.js +127 -48
- package/esm/forms/forms-core/hooks/useFormFieldValidation.js.map +2 -2
- package/esm/forms/forms-core/state/formfield-messages-state-reducer.js +10 -0
- package/esm/forms/forms-core/state/formfield-messages-state-reducer.js.map +2 -2
- package/esm/forms/hooks/useAutofillEvent.css +8 -8
- package/esm/forms/hooks/useAutofillEvent.sty.js +4 -4
- package/esm/forms/hooks/useAutofillEvent.sty.js.map +1 -1
- package/esm/forms/index.js +10 -0
- package/esm/forms/index.js.map +2 -2
- package/esm/forms/number-input-v2/NumberInput.js +163 -18
- package/esm/forms/number-input-v2/NumberInput.js.map +2 -2
- package/esm/forms/number-input-v2/utils/validation.js.map +2 -2
- package/esm/forms/radio/Radio.js +19 -3
- package/esm/forms/radio/Radio.js.map +2 -2
- package/esm/forms/radio/RadioGroup.js +42 -5
- package/esm/forms/radio/RadioGroup.js.map +2 -2
- package/esm/forms/radio/RadioGroupContext.js.map +2 -2
- package/esm/forms/radio/styles.css +18 -18
- package/esm/forms/radio/styles.sty.js +8 -8
- package/esm/forms/radio/styles.sty.js.map +1 -1
- package/esm/forms/search-input/SearchInput.css +2 -2
- package/esm/forms/search-input/SearchInput.sty.js +1 -1
- package/esm/forms/search-input/SearchInput.sty.js.map +1 -1
- package/esm/forms/search-input/Stepper.css +5 -5
- package/esm/forms/search-input/Stepper.sty.js +3 -3
- package/esm/forms/search-input/Stepper.sty.js.map +1 -1
- package/esm/forms/select/Select.js +74 -18
- package/esm/forms/select/Select.js.map +2 -2
- package/esm/forms/select/components/Control.js +3 -3
- package/esm/forms/select/components/Control.js.map +2 -2
- package/esm/forms/select/components/HiddenSelect.js +8 -6
- package/esm/forms/select/components/HiddenSelect.js.map +2 -2
- package/esm/forms/select/components/MenuList.js +6 -1
- package/esm/forms/select/components/MenuList.js.map +2 -2
- package/esm/forms/select/components/Option.js +12 -3
- package/esm/forms/select/components/Option.js.map +2 -2
- package/esm/forms/select/styles/Select.css +46 -46
- package/esm/forms/select/styles/Select.sty.js +24 -24
- package/esm/forms/select/styles/Select.sty.js.map +1 -1
- package/esm/forms/shared-types.js.map +2 -2
- package/esm/forms/spin-buttons/SpinButton.css +8 -8
- package/esm/forms/spin-buttons/SpinButton.sty.js +2 -2
- package/esm/forms/spin-buttons/SpinButton.sty.js.map +1 -1
- package/esm/forms/switch/Switch.css +36 -36
- package/esm/forms/switch/Switch.js +39 -6
- package/esm/forms/switch/Switch.js.map +2 -2
- package/esm/forms/switch/Switch.sty.js +5 -5
- package/esm/forms/switch/Switch.sty.js.map +1 -1
- package/esm/forms/text-area/TextArea.css +59 -59
- package/esm/forms/text-area/TextArea.js +33 -2
- package/esm/forms/text-area/TextArea.js.map +2 -2
- package/esm/forms/text-area/TextArea.sty.js +3 -3
- package/esm/forms/text-area/TextArea.sty.js.map +1 -1
- package/esm/forms/text-input/TextInput.js.map +2 -2
- package/esm/forms/toggle-button-group/Item.js +17 -3
- package/esm/forms/toggle-button-group/Item.js.map +2 -2
- package/esm/forms/toggle-button-group/ToggleButtonGroup.js +43 -7
- package/esm/forms/toggle-button-group/ToggleButtonGroup.js.map +2 -2
- package/esm/forms/toggle-button-group/contexts/ToggleButtonGroupContext.js.map +2 -2
- package/esm/forms/toggle-button-group/styles.css +58 -58
- package/esm/forms/toggle-button-group/styles.sty.js +15 -15
- package/esm/forms/toggle-button-group/styles.sty.js.map +1 -1
- package/esm/forms/validation/types.js +63 -0
- package/esm/forms/validation/types.js.map +7 -0
- package/esm/forms/validation/useCustomMessageEmitter.js +83 -0
- package/esm/forms/validation/useCustomMessageEmitter.js.map +7 -0
- package/esm/forms/validation/useValidationStateEmitter.js +31 -0
- package/esm/forms/validation/useValidationStateEmitter.js.map +7 -0
- package/esm/forms/validation/validation-builders.js +56 -0
- package/esm/forms/validation/validation-builders.js.map +7 -0
- package/esm/layouts/app-header/AppHeader.css +1 -1
- package/esm/layouts/app-header/AppHeader.sty.js +1 -1
- package/esm/layouts/app-header/AppHeader.sty.js.map +1 -1
- package/esm/layouts/app-header/Logo.js +3 -1
- package/esm/layouts/app-header/Logo.js.map +2 -2
- package/esm/layouts/app-header/Navigation.css +9 -9
- package/esm/layouts/app-header/Navigation.sty.js +5 -5
- package/esm/layouts/app-header/Navigation.sty.js.map +1 -1
- package/esm/layouts/app-header/action-group/ActionButton.css +17 -17
- package/esm/layouts/app-header/action-group/ActionButton.sty.js +3 -3
- package/esm/layouts/app-header/action-group/ActionButton.sty.js.map +1 -1
- package/esm/layouts/app-header/action-group/ActionGroup.css +1 -1
- package/esm/layouts/app-header/action-group/ActionGroup.sty.js +1 -1
- package/esm/layouts/app-header/action-group/ActionGroup.sty.js.map +1 -1
- package/esm/layouts/app-header/action-group/NavItem.css +4 -4
- package/esm/layouts/app-header/action-group/NavItem.sty.js +3 -3
- package/esm/layouts/app-header/action-group/NavItem.sty.js.map +1 -1
- package/esm/layouts/app-header/app-icon/AppIcon.css +4 -4
- package/esm/layouts/app-header/app-icon/AppIcon.sty.js +1 -1
- package/esm/layouts/app-header/app-icon/AppIcon.sty.js.map +1 -1
- package/esm/layouts/container/Container.css +5 -5
- package/esm/layouts/container/Container.sty.js +1 -1
- package/esm/layouts/container/Container.sty.js.map +1 -1
- package/esm/layouts/divider/Divider.css +6 -6
- package/esm/layouts/divider/Divider.sty.js +1 -1
- package/esm/layouts/divider/Divider.sty.js.map +1 -1
- package/esm/layouts/index.js.map +2 -2
- package/esm/layouts/input-group/InputGroup.css +23 -23
- package/esm/layouts/input-group/InputGroup.sty.js +1 -1
- package/esm/layouts/input-group/InputGroup.sty.js.map +1 -1
- package/esm/layouts/page/DetailView.css +3 -3
- package/esm/layouts/page/DetailView.js.map +2 -2
- package/esm/layouts/page/DetailView.sty.js +2 -2
- package/esm/layouts/page/DetailView.sty.js.map +1 -1
- package/esm/layouts/page/Header.css +2 -2
- package/esm/layouts/page/Header.js.map +2 -2
- package/esm/layouts/page/Header.sty.js +1 -1
- package/esm/layouts/page/Header.sty.js.map +1 -1
- package/esm/layouts/page/Main.css +6 -6
- package/esm/layouts/page/Main.js.map +2 -2
- package/esm/layouts/page/Main.sty.js +4 -4
- package/esm/layouts/page/Main.sty.js.map +1 -1
- package/esm/layouts/page/Page.css +2 -2
- package/esm/layouts/page/Page.js.map +2 -2
- package/esm/layouts/page/Page.sty.js +1 -1
- package/esm/layouts/page/Page.sty.js.map +1 -1
- package/esm/layouts/page/PanelControlButton.js.map +2 -2
- package/esm/layouts/page/Sidebar.css +71 -22
- package/esm/layouts/page/Sidebar.js +2 -0
- package/esm/layouts/page/Sidebar.js.map +2 -2
- package/esm/layouts/page/Sidebar.sty.js +8 -8
- package/esm/layouts/page/Sidebar.sty.js.map +1 -1
- package/esm/layouts/page/page-types.js.map +2 -2
- package/esm/layouts/page/panel-types.js.map +2 -2
- package/esm/layouts/page/panel.css +19 -19
- package/esm/layouts/page/panel.sty.js +10 -10
- package/esm/layouts/page/panel.sty.js.map +1 -1
- package/esm/layouts/page-layout/PageLayout.css +10 -10
- package/esm/layouts/page-layout/PageLayout.sty.js +6 -6
- package/esm/layouts/page-layout/PageLayout.sty.js.map +1 -1
- package/esm/layouts/page-layout/details-layout/DetailsControlBar.css +3 -3
- package/esm/layouts/page-layout/details-layout/DetailsControlBar.sty.js +3 -3
- package/esm/layouts/page-layout/details-layout/DetailsControlBar.sty.js.map +1 -1
- package/esm/layouts/page-layout/details-layout/DetailsLayout.css +6 -6
- package/esm/layouts/page-layout/details-layout/DetailsLayout.js +7 -15
- package/esm/layouts/page-layout/details-layout/DetailsLayout.js.map +2 -2
- package/esm/layouts/page-layout/details-layout/DetailsLayout.sty.js +5 -5
- package/esm/layouts/page-layout/details-layout/DetailsLayout.sty.js.map +1 -1
- package/esm/layouts/page-layout/details-layout/Overlay.css +18 -18
- package/esm/layouts/page-layout/details-layout/Overlay.sty.js +4 -4
- package/esm/layouts/page-layout/details-layout/Overlay.sty.js.map +1 -1
- package/esm/layouts/page-layout/shared/portal-slots.js.map +1 -1
- package/esm/layouts/page-layout/sidebar-layout/SidebarLayout.css +38 -38
- package/esm/layouts/page-layout/sidebar-layout/SidebarLayout.sty.js +15 -15
- package/esm/layouts/page-layout/sidebar-layout/SidebarLayout.sty.js.map +1 -1
- package/esm/layouts/split-layout/SplitLayout.css +18 -18
- package/esm/layouts/split-layout/SplitLayout.sty.js +7 -7
- package/esm/layouts/split-layout/SplitLayout.sty.js.map +1 -1
- package/esm/layouts/surface/Surface.css +39 -39
- package/esm/layouts/surface/Surface.sty.js +2 -2
- package/esm/layouts/surface/Surface.sty.js.map +1 -1
- package/esm/layouts/surface/variables.sty.js +1 -1
- package/esm/layouts/surface/variables.sty.js.map +1 -1
- package/esm/layouts/title-bar/TitleBar.css +5 -5
- package/esm/layouts/title-bar/TitleBar.sty.js +4 -4
- package/esm/layouts/title-bar/TitleBar.sty.js.map +1 -1
- package/esm/navigation/breadcrumbs/Breadcrumbs.css +9 -9
- package/esm/navigation/breadcrumbs/Breadcrumbs.sty.js +5 -5
- package/esm/navigation/breadcrumbs/Breadcrumbs.sty.js.map +1 -1
- package/esm/navigation/menu/Content.js +2 -1
- package/esm/navigation/menu/Content.js.map +2 -2
- package/esm/navigation/menu/Item.js +8 -0
- package/esm/navigation/menu/Item.js.map +2 -2
- package/esm/navigation/menu/Menu.css +38 -15
- package/esm/navigation/menu/Menu.sty.js +10 -8
- package/esm/navigation/menu/Menu.sty.js.map +2 -2
- package/esm/navigation/menu/Sub.js +19 -0
- package/esm/navigation/menu/Sub.js.map +2 -2
- package/esm/navigation/menu/SubContent.js +8 -1
- package/esm/navigation/menu/SubContent.js.map +2 -2
- package/esm/navigation/menu/SubTrigger.js +22 -7
- package/esm/navigation/menu/SubTrigger.js.map +2 -2
- package/esm/navigation/menu/contexts/MenuSubLevelContext.js +38 -0
- package/esm/navigation/menu/contexts/MenuSubLevelContext.js.map +7 -0
- package/esm/navigation/tabs/RenderTab.css +14 -14
- package/esm/navigation/tabs/RenderTab.sty.js +3 -3
- package/esm/navigation/tabs/RenderTab.sty.js.map +1 -1
- package/esm/navigation/tabs/TabPanel.css +3 -3
- package/esm/navigation/tabs/TabPanel.sty.js +2 -2
- package/esm/navigation/tabs/TabPanel.sty.js.map +1 -1
- package/esm/navigation/tabs/Tabs.css +9 -9
- package/esm/navigation/tabs/Tabs.sty.js +5 -5
- package/esm/navigation/tabs/Tabs.sty.js.map +1 -1
- package/esm/notifications/notification-settings/NotificationSettings.css +1 -1
- package/esm/notifications/notification-settings/NotificationSettings.sty.js +1 -1
- package/esm/notifications/notification-settings/NotificationSettings.sty.js.map +1 -1
- package/esm/notifications/notification-settings/components/CopyPermissionsButton.js +3 -7
- package/esm/notifications/notification-settings/components/CopyPermissionsButton.js.map +2 -2
- package/esm/notifications/notification-settings/components/ToggleButton.js +3 -1
- package/esm/notifications/notification-settings/components/ToggleButton.js.map +2 -2
- package/esm/notifications/toast/Toast.css +6 -6
- package/esm/notifications/toast/Toast.sty.js +4 -4
- package/esm/notifications/toast/Toast.sty.js.map +1 -1
- package/esm/notifications/toast/ToastContainer.css +17 -17
- package/esm/notifications/toast/ToastContainer.sty.js +1 -1
- package/esm/notifications/toast/ToastContainer.sty.js.map +1 -1
- package/esm/overlays/drawer/Drawer.css +9 -9
- package/esm/overlays/drawer/Drawer.sty.js +5 -5
- package/esm/overlays/drawer/Drawer.sty.js.map +1 -1
- package/esm/overlays/modal/Modal.css +7 -7
- package/esm/overlays/modal/Modal.sty.js +4 -4
- package/esm/overlays/modal/Modal.sty.js.map +1 -1
- package/esm/overlays/overlay/Overlay.css +1 -1
- package/esm/overlays/overlay/Overlay.sty.js +1 -1
- package/esm/overlays/overlay/Overlay.sty.js.map +1 -1
- package/esm/overlays/sheet/Sheet.css +6 -6
- package/esm/overlays/sheet/Sheet.sty.js +5 -5
- package/esm/overlays/sheet/Sheet.sty.js.map +1 -1
- package/esm/overlays/tooltip/tooltip.css +18 -18
- package/esm/overlays/tooltip/tooltip.sty.js +3 -3
- package/esm/overlays/tooltip/tooltip.sty.js.map +1 -1
- package/esm/overlays/utils/popper-modifiers.js +7 -3
- package/esm/overlays/utils/popper-modifiers.js.map +2 -2
- package/esm/styles/colorUtils.css +60 -60
- package/esm/styles/colorUtils.sty.js +2 -2
- package/esm/styles/colorUtils.sty.js.map +1 -1
- package/esm/styles/container.css +47 -47
- package/esm/styles/container.sty.js +2 -2
- package/esm/styles/container.sty.js.map +1 -1
- package/esm/styles/ellipsis.css +1 -1
- package/esm/styles/ellipsis.sty.js +1 -1
- package/esm/styles/ellipsis.sty.js.map +1 -1
- package/esm/styles/field.css +290 -290
- package/esm/styles/field.sty.js +2 -2
- package/esm/styles/field.sty.js.map +1 -1
- package/esm/styles/screen-reader-only.css +1 -1
- package/esm/styles/screen-reader-only.sty.js +1 -1
- package/esm/styles/screen-reader-only.sty.js.map +1 -1
- package/esm/styles/sprinkles.css +262 -262
- package/esm/styles/sprinkles.sty.js +1 -1
- package/esm/styles/sprinkles.sty.js.map +1 -1
- package/esm/styles/textStyle.css +8 -8
- package/esm/styles/textStyle.sty.js +1 -1
- package/esm/styles/textStyle.sty.js.map +1 -1
- package/esm/tables/DataTable/DataTable.css +2 -2
- package/esm/tables/DataTable/DataTable.js +9 -3
- package/esm/tables/DataTable/DataTable.js.map +2 -2
- package/esm/tables/DataTable/DataTable.sty.js +7 -7
- package/esm/tables/DataTable/DataTable.sty.js.map +1 -1
- package/esm/tables/DataTable/components/Alignment.css +6 -6
- package/esm/tables/DataTable/components/Alignment.sty.js +2 -2
- package/esm/tables/DataTable/components/Alignment.sty.js.map +1 -1
- package/esm/tables/DataTable/components/ColumnPinning/DataTablePinningShadowCells.css +6 -6
- package/esm/tables/DataTable/components/ColumnPinning/DataTablePinningShadowCells.sty.js +3 -3
- package/esm/tables/DataTable/components/ColumnPinning/DataTablePinningShadowCells.sty.js.map +1 -1
- package/esm/tables/DataTable/components/DataTableBody.css +2 -2
- package/esm/tables/DataTable/components/DataTableBody.sty.js +2 -2
- package/esm/tables/DataTable/components/DataTableBody.sty.js.map +1 -1
- package/esm/tables/DataTable/components/DataTableCell.css +103 -117
- package/esm/tables/DataTable/components/DataTableCell.sty.js +5 -5
- package/esm/tables/DataTable/components/DataTableCell.sty.js.map +1 -1
- package/esm/tables/DataTable/components/DataTableDefaultCell.css +23 -23
- package/esm/tables/DataTable/components/DataTableDefaultCell.sty.js +1 -1
- package/esm/tables/DataTable/components/DataTableDefaultCell.sty.js.map +1 -1
- package/esm/tables/DataTable/components/DataTableEmptyState.css +6 -6
- package/esm/tables/DataTable/components/DataTableEmptyState.sty.js +2 -2
- package/esm/tables/DataTable/components/DataTableEmptyState.sty.js.map +1 -1
- package/esm/tables/DataTable/components/DataTableHeader.css +2 -2
- package/esm/tables/DataTable/components/DataTableHeader.sty.js +2 -2
- package/esm/tables/DataTable/components/DataTableHeader.sty.js.map +1 -1
- package/esm/tables/DataTable/components/DataTableHeaderCell.css +64 -64
- package/esm/tables/DataTable/components/DataTableHeaderCell.sty.js +23 -23
- package/esm/tables/DataTable/components/DataTableHeaderCell.sty.js.map +1 -1
- package/esm/tables/DataTable/components/DataTableRow.css +13 -13
- package/esm/tables/DataTable/components/DataTableRow.sty.js +1 -1
- package/esm/tables/DataTable/components/DataTableRow.sty.js.map +1 -1
- package/esm/tables/DataTable/components/DataTableScrollShadow.css +10 -10
- package/esm/tables/DataTable/components/DataTableScrollShadow.sty.js +2 -2
- package/esm/tables/DataTable/components/DataTableScrollShadow.sty.js.map +1 -1
- package/esm/tables/DataTable/components/DataTableVirtualizationContainer.css +21 -21
- package/esm/tables/DataTable/components/DataTableVirtualizationContainer.sty.js +1 -1
- package/esm/tables/DataTable/components/DataTableVirtualizationContainer.sty.js.map +1 -1
- package/esm/tables/DataTable/components/SettingsModal/DataTableSettingsModal.css +6 -0
- package/esm/tables/DataTable/components/SettingsModal/DataTableSettingsModal.js +51 -37
- package/esm/tables/DataTable/components/SettingsModal/DataTableSettingsModal.js.map +2 -2
- package/esm/tables/DataTable/components/SettingsModal/DataTableSettingsModal.sty.js +7 -0
- package/esm/tables/DataTable/components/SettingsModal/DataTableSettingsModal.sty.js.map +7 -0
- package/esm/tables/DataTable/components/TableActions/DataTableSelectionChip.css +5 -5
- package/esm/tables/DataTable/components/TableActions/DataTableSelectionChip.sty.js +2 -2
- package/esm/tables/DataTable/components/TableActions/DataTableSelectionChip.sty.js.map +1 -1
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/ColumnOrderSettings/ColumnOrderSettingsDragAndDrop.css +7 -7
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/ColumnOrderSettings/ColumnOrderSettingsDragAndDrop.sty.js +3 -3
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/ColumnOrderSettings/ColumnOrderSettingsDragAndDrop.sty.js.map +1 -1
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnSettingsModal.js +46 -7
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnSettingsModal.js.map +2 -2
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnVisibilitySettings.js +2 -1
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnVisibilitySettings.js.map +2 -2
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsList.css +19 -7
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsList.js +8 -3
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsList.js.map +2 -2
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsList.sty.js +3 -3
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsList.sty.js.map +2 -2
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsListItem.css +7 -7
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsListItem.sty.js +3 -3
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsListItem.sty.js.map +1 -1
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableVisibilityFilterControls.css +5 -5
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableVisibilityFilterControls.sty.js +3 -3
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableVisibilityFilterControls.sty.js.map +1 -1
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/column-settings-utils.js +72 -3
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/column-settings-utils.js.map +3 -3
- package/esm/tables/DataTable/components/Toolbar/DataTableToolbar.js +1 -0
- package/esm/tables/DataTable/components/Toolbar/DataTableToolbar.js.map +2 -2
- package/esm/tables/DataTable/components/Toolbar/Download/DataTableDownloadData.css +3 -3
- package/esm/tables/DataTable/components/Toolbar/Download/DataTableDownloadData.sty.js +2 -2
- package/esm/tables/DataTable/components/Toolbar/Download/DataTableDownloadData.sty.js.map +1 -1
- package/esm/tables/DataTable/features/ColumnOrder/ColumnOrder.css +8 -8
- package/esm/tables/DataTable/features/ColumnOrder/ColumnOrder.sty.js +4 -4
- package/esm/tables/DataTable/features/ColumnOrder/ColumnOrder.sty.js.map +1 -1
- package/esm/tables/DataTable/features/ColumnSizing/ColumnSizing.css +3 -3
- package/esm/tables/DataTable/features/ColumnSizing/ColumnSizing.sty.js +1 -1
- package/esm/tables/DataTable/features/ColumnSizing/ColumnSizing.sty.js.map +1 -1
- package/esm/tables/DataTable/features/ColumnTypes/ColumnTypes.css +1 -1
- package/esm/tables/DataTable/features/ColumnTypes/ColumnTypes.sty.js +1 -1
- package/esm/tables/DataTable/features/ColumnTypes/ColumnTypes.sty.js.map +1 -1
- package/esm/tables/DataTable/features/ColumnTypes/column-types-types.js.map +2 -2
- package/esm/tables/DataTable/features/Download/Download.js +1 -1
- package/esm/tables/DataTable/features/Download/Download.js.map +2 -2
- package/esm/tables/DataTable/features/GanttChart/DataTableGanttAnnotationsIndicators.css +1 -1
- package/esm/tables/DataTable/features/GanttChart/DataTableGanttAnnotationsIndicators.sty.js +1 -1
- package/esm/tables/DataTable/features/GanttChart/DataTableGanttAnnotationsIndicators.sty.js.map +1 -1
- package/esm/tables/DataTable/features/GanttChart/DataTableGanttChartCell.css +3 -3
- package/esm/tables/DataTable/features/GanttChart/DataTableGanttChartCell.sty.js +2 -2
- package/esm/tables/DataTable/features/GanttChart/DataTableGanttChartCell.sty.js.map +1 -1
- package/esm/tables/DataTable/features/GanttChart/DataTableGanttChartGrid.css +1 -1
- package/esm/tables/DataTable/features/GanttChart/DataTableGanttChartGrid.js +2 -2
- package/esm/tables/DataTable/features/GanttChart/DataTableGanttChartGrid.js.map +2 -2
- package/esm/tables/DataTable/features/GanttChart/DataTableGanttChartGrid.sty.js +1 -1
- package/esm/tables/DataTable/features/GanttChart/DataTableGanttChartGrid.sty.js.map +1 -1
- package/esm/tables/DataTable/features/GanttChart/DataTableGanttChartHeader.css +4 -4
- package/esm/tables/DataTable/features/GanttChart/DataTableGanttChartHeader.sty.js +1 -1
- package/esm/tables/DataTable/features/GanttChart/DataTableGanttChartHeader.sty.js.map +1 -1
- package/esm/tables/DataTable/features/LoadingState/LoadingState.css +3 -3
- package/esm/tables/DataTable/features/LoadingState/LoadingState.sty.js +3 -3
- package/esm/tables/DataTable/features/LoadingState/LoadingState.sty.js.map +1 -1
- package/esm/tables/DataTable/features/MeterBarChart/MeterBarChart.js.map +2 -2
- package/esm/tables/DataTable/features/RowDetails/RowDetails.css +13 -13
- package/esm/tables/DataTable/features/RowDetails/RowDetails.sty.js +3 -3
- package/esm/tables/DataTable/features/RowDetails/RowDetails.sty.js.map +1 -1
- package/esm/tables/DataTable/features/RowInteractivity/RowInteractivity.css +14 -14
- package/esm/tables/DataTable/features/RowInteractivity/RowInteractivity.sty.js +1 -1
- package/esm/tables/DataTable/features/RowInteractivity/RowInteractivity.sty.js.map +1 -1
- package/esm/tables/DataTable/features/RowOrder/RowOrder.css +8 -8
- package/esm/tables/DataTable/features/RowOrder/RowOrder.sty.js +3 -3
- package/esm/tables/DataTable/features/RowOrder/RowOrder.sty.js.map +1 -1
- package/esm/tables/DataTable/features/RowOrder/components/RowOrderingDragAndDropContext.js +1 -0
- package/esm/tables/DataTable/features/RowOrder/components/RowOrderingDragAndDropContext.js.map +2 -2
- package/esm/tables/DataTable/features/Sorting/Sorting.css +34 -34
- package/esm/tables/DataTable/features/Sorting/Sorting.sty.js +3 -3
- package/esm/tables/DataTable/features/Sorting/Sorting.sty.js.map +1 -1
- package/esm/tables/DataTable/features/SubRows/SubRows.css +19 -19
- package/esm/tables/DataTable/features/SubRows/SubRows.sty.js +5 -5
- package/esm/tables/DataTable/features/SubRows/SubRows.sty.js.map +1 -1
- package/esm/tables/DataTable/features/Thresholds/Thresholds.css +2 -2
- package/esm/tables/DataTable/features/Thresholds/Thresholds.sty.js +3 -3
- package/esm/tables/DataTable/features/Thresholds/Thresholds.sty.js.map +1 -1
- package/esm/tables/DataTable/features/UserActions/RowActions.css +4 -4
- package/esm/tables/DataTable/features/UserActions/RowActions.sty.js +1 -1
- package/esm/tables/DataTable/features/UserActions/RowActions.sty.js.map +1 -1
- package/esm/tables/DataTable/features/UserActions/UserActions.css +18 -18
- package/esm/tables/DataTable/features/UserActions/UserActions.sty.js +2 -2
- package/esm/tables/DataTable/features/UserActions/UserActions.sty.js.map +1 -1
- package/esm/tables/DataTable/messages.js +22 -0
- package/esm/tables/DataTable/messages.js.map +2 -2
- package/esm/tables/SimpleTable/SimpleTable.css +27 -27
- package/esm/tables/SimpleTable/SimpleTable.sty.js +1 -1
- package/esm/tables/SimpleTable/SimpleTable.sty.js.map +1 -1
- package/esm/tables/index.js.map +2 -2
- package/esm/typography/block-quote/Blockquote.css +2 -2
- package/esm/typography/block-quote/Blockquote.sty.js +1 -1
- package/esm/typography/block-quote/Blockquote.sty.js.map +1 -1
- package/esm/typography/code/Code.css +1 -1
- package/esm/typography/code/Code.sty.js +1 -1
- package/esm/typography/code/Code.sty.js.map +1 -1
- package/esm/typography/emphasis/Emphasis.css +1 -1
- package/esm/typography/emphasis/Emphasis.sty.js +1 -1
- package/esm/typography/emphasis/Emphasis.sty.js.map +1 -1
- package/esm/typography/external-link/ExternalLink.css +6 -6
- package/esm/typography/external-link/ExternalLink.sty.js +1 -1
- package/esm/typography/external-link/ExternalLink.sty.js.map +1 -1
- package/esm/typography/heading/Heading.css +7 -7
- package/esm/typography/heading/Heading.sty.js +1 -1
- package/esm/typography/heading/Heading.sty.js.map +1 -1
- package/esm/typography/highlight/Highlight.css +2 -2
- package/esm/typography/highlight/Highlight.sty.js +1 -1
- package/esm/typography/highlight/Highlight.sty.js.map +1 -1
- package/esm/typography/link/Link.css +4 -4
- package/esm/typography/link/Link.sty.js +1 -1
- package/esm/typography/link/Link.sty.js.map +1 -1
- package/esm/typography/list/List.css +4 -4
- package/esm/typography/list/List.sty.js +2 -2
- package/esm/typography/list/List.sty.js.map +1 -1
- package/esm/typography/paragraph/Paragraph.css +3 -3
- package/esm/typography/paragraph/Paragraph.sty.js +1 -1
- package/esm/typography/paragraph/Paragraph.sty.js.map +1 -1
- package/esm/typography/strikethrough/Strikethrough.css +1 -1
- package/esm/typography/strikethrough/Strikethrough.sty.js +1 -1
- package/esm/typography/strikethrough/Strikethrough.sty.js.map +1 -1
- package/esm/typography/strong/Strong.css +1 -1
- package/esm/typography/strong/Strong.sty.js +1 -1
- package/esm/typography/strong/Strong.sty.js.map +1 -1
- package/esm/typography/text/Text.css +3 -3
- package/esm/typography/text/Text.sty.js +1 -1
- package/esm/typography/text/Text.sty.js.map +1 -1
- package/esm/typography/text-ellipsis/TextEllipsis.css +6 -6
- package/esm/typography/text-ellipsis/TextEllipsis.sty.js +2 -2
- package/esm/typography/text-ellipsis/TextEllipsis.sty.js.map +1 -1
- package/filters/filter-field/FilterField.css +151 -119
- package/filters/filter-field/FilterField.js +75 -4
- package/filters/filter-field/FilterField.sty.js +28 -28
- package/filters/filter-field/components/FilterFieldSuffixButtons.css +3 -3
- package/filters/filter-field/components/FilterFieldSuffixButtons.sty.js +3 -3
- package/filters/filter-field/components/FilterStatement.css +13 -13
- package/filters/filter-field/components/FilterStatement.sty.js +6 -6
- package/filters/filter-field/hooks/recent-and-pinned/usePinnedFilterSuggestions.js +1 -1
- package/filters/filter-field/hooks/recent-and-pinned/usePinnedFilters.d.ts +10 -4
- package/filters/filter-field/hooks/recent-and-pinned/usePinnedFilters.js +32 -26
- package/filters/filter-field/hooks/recent-and-pinned/useRecentFilters.d.ts +2 -2
- package/filters/filter-field/hooks/recent-and-pinned/useRecentFilters.js +22 -20
- package/filters/filter-field/hooks/useSuggestions.d.ts +0 -1
- package/filters/filter-field/hooks/useSuggestions.js +1 -6
- package/filters/filter-field/state/recent-pinned-store.d.ts +11 -27
- package/filters/filter-field/state/recent-pinned-store.js +11 -51
- package/filters/filter-field/suggestions/RecentPinnedSuggestionItem.css +9 -9
- package/filters/filter-field/suggestions/RecentPinnedSuggestionItem.sty.js +2 -2
- package/filters/filter-field/suggestions/Suggestion.css +24 -24
- package/filters/filter-field/suggestions/Suggestion.sty.js +16 -16
- package/filters/filter-field/suggestions/SuggestionDetails.css +2 -2
- package/filters/filter-field/suggestions/SuggestionDetails.sty.js +2 -2
- package/filters/filter-field/suggestions/SuggestionGroup.css +6 -6
- package/filters/filter-field/suggestions/SuggestionGroup.sty.js +3 -3
- package/filters/filter-field/suggestions/SuggestionGroupLabel.css +1 -1
- package/filters/filter-field/suggestions/SuggestionGroupLabel.sty.js +1 -1
- package/filters/filter-field/suggestions/SuggestionPin.d.ts +3 -2
- package/filters/filter-field/suggestions/SuggestionPin.js +5 -9
- package/filters/filter-field/suggestions/SuggestionTips.css +7 -7
- package/filters/filter-field/suggestions/SuggestionTips.sty.js +5 -5
- package/filters/filter-field/suggestions/SuggestionsOverlay.css +7 -7
- package/filters/filter-field/suggestions/SuggestionsOverlay.sty.js +5 -5
- package/filters/segment-selector/SegmentSelector.css +4 -4
- package/filters/segment-selector/SegmentSelector.js +91 -7
- package/filters/segment-selector/SegmentSelector.sty.js +4 -4
- package/filters/segment-selector/SegmentSelector.types.d.ts +10 -1
- package/filters/segment-selector/contexts/SegmentsUI/segmentValidationHelper.d.ts +2 -2
- package/filters/segment-selector/contexts/SegmentsUI/segmentValidationHelper.js +4 -3
- package/filters/segment-selector/parts/EmptySegments.css +1 -1
- package/filters/segment-selector/parts/EmptySegments.sty.js +1 -1
- package/filters/segment-selector/parts/Overlay.css +8 -8
- package/filters/segment-selector/parts/Overlay.js +2 -1
- package/filters/segment-selector/parts/Overlay.sty.js +8 -8
- package/filters/segment-selector/parts/ShowMorePanel/ShowMorePanel.css +4 -4
- package/filters/segment-selector/parts/ShowMorePanel/ShowMorePanel.sty.js +4 -4
- package/filters/segment-selector/parts/segmentsPresets/SegmentsPresets.css +32 -32
- package/filters/segment-selector/parts/segmentsPresets/SegmentsPresets.sty.js +10 -10
- package/filters/segment-selector/parts/selectionBar/SegmentSelect.css +22 -22
- package/filters/segment-selector/parts/selectionBar/SegmentSelect.sty.js +7 -7
- package/filters/segment-selector/parts/selectionBar/SegmentSelectorTrigger.css +1 -1
- package/filters/segment-selector/parts/selectionBar/SegmentSelectorTrigger.sty.js +1 -1
- package/filters/segment-selector/parts/selectionBar/SelectionBar.js +11 -10
- package/filters/segment-selector/parts/selectionBar/ValueSelect.js +66 -27
- package/filters/timeframe-selector/TimeframeSelector.css +2 -2
- package/filters/timeframe-selector/TimeframeSelector.js +4 -0
- package/filters/timeframe-selector/TimeframeSelector.sty.js +2 -2
- package/filters/timeframe-selector/TimeframeSelectorRoot.js +177 -4
- package/filters/timeframe-selector/components/custom-timeframe-selector/CustomTimeframeSelector.css +4 -4
- package/filters/timeframe-selector/components/custom-timeframe-selector/CustomTimeframeSelector.sty.js +3 -3
- package/filters/timeframe-selector/components/overlay/TimeframeSelectorOverlay.css +4 -4
- package/filters/timeframe-selector/components/overlay/TimeframeSelectorOverlay.sty.js +4 -4
- package/filters/timeframe-selector/components/presets/Presets.css +27 -27
- package/filters/timeframe-selector/components/presets/Presets.sty.js +11 -11
- package/filters/timeframe-selector/components/trigger/Trigger.css +11 -11
- package/filters/timeframe-selector/components/trigger/Trigger.js +2 -2
- package/filters/timeframe-selector/components/trigger/Trigger.sty.js +4 -4
- package/forms/_base-input/BaseInput.css +99 -99
- package/forms/_base-input/BaseInput.js +28 -4
- package/forms/_base-input/BaseInput.sty.js +11 -11
- package/forms/_base-input/BaseInputContent.css +7 -7
- package/forms/_base-input/BaseInputContent.sty.js +1 -1
- package/forms/_base-input/base-input.types.d.ts +6 -0
- package/forms/calendar/Calendar.css +48 -48
- package/forms/calendar/Calendar.sty.js +12 -12
- package/forms/calendar/CalendarRoot.d.ts +2 -2
- package/forms/calendar/CalendarRoot.js +65 -14
- package/forms/calendar/components/CalendarItem.css +7 -7
- package/forms/calendar/components/CalendarItem.sty.js +4 -4
- package/forms/calendar/components/CalendarOutlineIcon.css +8 -8
- package/forms/calendar/components/CalendarOutlineIcon.sty.js +5 -5
- package/forms/calendar/variables.sty.js +2 -2
- package/forms/checkbox/Checkbox.css +20 -20
- package/forms/checkbox/Checkbox.js +31 -7
- package/forms/checkbox/Checkbox.sty.js +3 -3
- package/forms/date-time-picker/DateSelector.js +2 -2
- package/forms/date-time-picker/DateTimePicker.css +75 -75
- package/forms/date-time-picker/DateTimePicker.js +9 -4
- package/forms/date-time-picker/DateTimePicker.sty.js +6 -6
- package/forms/date-time-picker/DateTimePickerRoot.js +67 -3
- package/forms/date-time-range-picker/DateRangeSelector.css +1 -1
- package/forms/date-time-range-picker/DateRangeSelector.js +2 -2
- package/forms/date-time-range-picker/DateRangeSelector.sty.js +1 -1
- package/forms/date-time-range-picker/DateTimeInput.css +11 -11
- package/forms/date-time-range-picker/DateTimeInput.js +25 -3
- package/forms/date-time-range-picker/DateTimeInput.sty.js +3 -3
- package/forms/date-time-range-picker/DateTimeRangePicker.css +27 -27
- package/forms/date-time-range-picker/DateTimeRangePicker.sty.js +4 -4
- package/forms/date-time-range-picker/DateTimeRangePickerRoot.js +105 -2
- package/forms/forms-core/components/field-set/FieldSet.css +2 -2
- package/forms/forms-core/components/field-set/FieldSet.sty.js +2 -2
- package/forms/forms-core/components/form-field/FormField.sty.js +1 -1
- package/forms/forms-core/components/form-field-messages/FormFieldMessageItem.css +5 -5
- package/forms/forms-core/components/form-field-messages/FormFieldMessageItem.js +9 -5
- package/forms/forms-core/components/form-field-messages/FormFieldMessageItem.sty.js +2 -2
- package/forms/forms-core/components/form-field-messages/FormFieldMessages.sty.js +1 -1
- package/forms/forms-core/components/label/Label.css +5 -5
- package/forms/forms-core/components/label/Label.sty.js +2 -2
- package/forms/forms-core/hooks/useFormFieldValidation.d.ts +24 -6
- package/forms/forms-core/hooks/useFormFieldValidation.js +122 -47
- package/forms/forms-core/state/formfield-messages-state-reducer.d.ts +1 -0
- package/forms/forms-core/state/formfield-messages-state-reducer.js +10 -0
- package/forms/forms-core/types/formfield-messages.types.d.ts +2 -0
- package/forms/hooks/useAutofillEvent.css +8 -8
- package/forms/hooks/useAutofillEvent.sty.js +4 -4
- package/forms/index.d.ts +2 -0
- package/forms/index.js +5 -0
- package/forms/number-input-v2/NumberInput.js +159 -18
- package/forms/number-input-v2/utils/validation.d.ts +2 -1
- package/forms/radio/Radio.js +19 -3
- package/forms/radio/RadioGroup.js +42 -5
- package/forms/radio/RadioGroupContext.d.ts +6 -0
- package/forms/radio/styles.css +18 -18
- package/forms/radio/styles.sty.js +8 -8
- package/forms/search-input/SearchInput.css +2 -2
- package/forms/search-input/SearchInput.sty.js +1 -1
- package/forms/search-input/Stepper.css +5 -5
- package/forms/search-input/Stepper.sty.js +3 -3
- package/forms/select/Select.js +69 -17
- package/forms/select/components/Control.d.ts +1 -1
- package/forms/select/components/Control.js +2 -2
- package/forms/select/components/HiddenSelect.js +8 -6
- package/forms/select/components/MenuList.d.ts +2 -0
- package/forms/select/components/MenuList.js +6 -1
- package/forms/select/components/Option.js +12 -3
- package/forms/select/styles/Select.css +46 -46
- package/forms/select/styles/Select.sty.js +24 -24
- package/forms/shared-types.d.ts +8 -0
- package/forms/spin-buttons/SpinButton.css +8 -8
- package/forms/spin-buttons/SpinButton.sty.js +2 -2
- package/forms/switch/Switch.css +36 -36
- package/forms/switch/Switch.js +35 -5
- package/forms/switch/Switch.sty.js +5 -5
- package/forms/text-area/TextArea.css +59 -59
- package/forms/text-area/TextArea.js +29 -1
- package/forms/text-area/TextArea.sty.js +3 -3
- package/forms/text-input/TextInput.d.ts +1 -1
- package/forms/toggle-button-group/Item.js +17 -3
- package/forms/toggle-button-group/ToggleButtonGroup.js +43 -7
- package/forms/toggle-button-group/contexts/ToggleButtonGroupContext.d.ts +3 -0
- package/forms/toggle-button-group/styles.css +58 -58
- package/forms/toggle-button-group/styles.sty.js +15 -15
- package/forms/validation/types.d.ts +122 -0
- package/forms/validation/types.js +81 -0
- package/forms/validation/useCustomMessageEmitter.d.ts +9 -0
- package/forms/validation/useCustomMessageEmitter.js +98 -0
- package/forms/validation/useValidationStateEmitter.d.ts +7 -0
- package/forms/validation/useValidationStateEmitter.js +49 -0
- package/forms/validation/validation-builders.d.ts +17 -0
- package/forms/validation/validation-builders.js +69 -0
- package/lang/en.json +168 -12
- package/lang/uncompiled/en.json +1113 -1064
- package/layouts/app-header/AppHeader.css +1 -1
- package/layouts/app-header/AppHeader.sty.js +1 -1
- package/layouts/app-header/Logo.d.ts +4 -4
- package/layouts/app-header/Navigation.css +9 -9
- package/layouts/app-header/Navigation.sty.js +5 -5
- package/layouts/app-header/action-group/ActionButton.css +17 -17
- package/layouts/app-header/action-group/ActionButton.sty.js +3 -3
- package/layouts/app-header/action-group/ActionGroup.css +1 -1
- package/layouts/app-header/action-group/ActionGroup.sty.js +1 -1
- package/layouts/app-header/action-group/NavItem.css +4 -4
- package/layouts/app-header/action-group/NavItem.sty.js +3 -3
- package/layouts/app-header/app-icon/AppIcon.css +4 -4
- package/layouts/app-header/app-icon/AppIcon.sty.js +1 -1
- package/layouts/container/Container.css +5 -5
- package/layouts/container/Container.sty.js +1 -1
- package/layouts/divider/Divider.css +6 -6
- package/layouts/divider/Divider.sty.js +1 -1
- package/layouts/input-group/InputGroup.css +23 -23
- package/layouts/input-group/InputGroup.sty.js +1 -1
- package/layouts/page/DetailView.css +3 -3
- package/layouts/page/DetailView.d.ts +17 -4
- package/layouts/page/DetailView.sty.js +2 -2
- package/layouts/page/Header.css +2 -2
- package/layouts/page/Header.d.ts +5 -1
- package/layouts/page/Header.sty.js +1 -1
- package/layouts/page/Main.css +6 -6
- package/layouts/page/Main.d.ts +5 -1
- package/layouts/page/Main.sty.js +4 -4
- package/layouts/page/Page.css +2 -2
- package/layouts/page/Page.d.ts +5 -1
- package/layouts/page/Page.sty.js +1 -1
- package/layouts/page/PanelControlButton.d.ts +5 -1
- package/layouts/page/Sidebar.css +71 -22
- package/layouts/page/Sidebar.d.ts +17 -4
- package/layouts/page/Sidebar.js +2 -0
- package/layouts/page/Sidebar.sty.js +8 -8
- package/layouts/page/page-types.d.ts +14 -3
- package/layouts/page/panel-types.d.ts +3 -0
- package/layouts/page/panel.css +19 -19
- package/layouts/page/panel.sty.js +10 -10
- package/layouts/page-layout/PageLayout.css +10 -10
- package/layouts/page-layout/PageLayout.d.ts +1 -1
- package/layouts/page-layout/PageLayout.sty.js +6 -6
- package/layouts/page-layout/details-layout/DetailsControlBar.css +3 -3
- package/layouts/page-layout/details-layout/DetailsControlBar.sty.js +3 -3
- package/layouts/page-layout/details-layout/DetailsLayout.css +6 -6
- package/layouts/page-layout/details-layout/DetailsLayout.js +7 -15
- package/layouts/page-layout/details-layout/DetailsLayout.sty.js +5 -5
- package/layouts/page-layout/details-layout/Overlay.css +18 -18
- package/layouts/page-layout/details-layout/Overlay.sty.js +4 -4
- package/layouts/page-layout/details-layout/slots.d.ts +1 -1
- package/layouts/page-layout/shared/portal-slots.d.ts +1 -1
- package/layouts/page-layout/shared/slot-config.d.ts +1 -1
- package/layouts/page-layout/sidebar-layout/SidebarLayout.css +38 -38
- package/layouts/page-layout/sidebar-layout/SidebarLayout.sty.js +15 -15
- package/layouts/split-layout/SplitLayout.css +18 -18
- package/layouts/split-layout/SplitLayout.sty.js +7 -7
- package/layouts/surface/Surface.css +39 -39
- package/layouts/surface/Surface.sty.js +2 -2
- package/layouts/surface/variables.sty.js +1 -1
- package/layouts/title-bar/TitleBar.css +5 -5
- package/layouts/title-bar/TitleBar.sty.js +4 -4
- package/migrations/3.2.0/codemods/rename-app-header-deprecated-members.js +1 -1
- package/migrations/3.2.0/codeshift-migration.js +1 -1
- package/migrations/3.2.0/dt-app-migration.js +100 -100
- package/navigation/breadcrumbs/Breadcrumbs.css +9 -9
- package/navigation/breadcrumbs/Breadcrumbs.sty.js +5 -5
- package/navigation/menu/Content.js +2 -1
- package/navigation/menu/Item.js +7 -0
- package/navigation/menu/Menu.css +38 -15
- package/navigation/menu/Menu.sty.d.ts +1 -0
- package/navigation/menu/Menu.sty.js +10 -8
- package/navigation/menu/Sub.js +16 -0
- package/navigation/menu/SubContent.js +8 -1
- package/navigation/menu/SubTrigger.js +17 -5
- package/navigation/menu/contexts/MenuSubLevelContext.d.ts +11 -0
- package/navigation/menu/contexts/MenuSubLevelContext.js +51 -0
- package/navigation/tabs/RenderTab.css +14 -14
- package/navigation/tabs/RenderTab.sty.js +3 -3
- package/navigation/tabs/TabPanel.css +3 -3
- package/navigation/tabs/TabPanel.sty.js +2 -2
- package/navigation/tabs/Tabs.css +9 -9
- package/navigation/tabs/Tabs.sty.js +5 -5
- package/notifications/notification-settings/NotificationSettings.css +1 -1
- package/notifications/notification-settings/NotificationSettings.sty.js +1 -1
- package/notifications/notification-settings/components/CopyPermissionsButton.js +3 -7
- package/notifications/notification-settings/components/ToggleButton.js +3 -1
- package/notifications/toast/Toast.css +6 -6
- package/notifications/toast/Toast.sty.js +4 -4
- package/notifications/toast/ToastContainer.css +17 -17
- package/notifications/toast/ToastContainer.sty.js +1 -1
- package/overlays/drawer/Drawer.css +9 -9
- package/overlays/drawer/Drawer.sty.js +5 -5
- package/overlays/modal/Modal.css +7 -7
- package/overlays/modal/Modal.sty.js +4 -4
- package/overlays/overlay/Overlay.css +1 -1
- package/overlays/overlay/Overlay.sty.js +1 -1
- package/overlays/sheet/Sheet.css +6 -6
- package/overlays/sheet/Sheet.sty.js +5 -5
- package/overlays/tooltip/tooltip.css +18 -18
- package/overlays/tooltip/tooltip.sty.js +3 -3
- package/overlays/utils/popper-modifiers.js +7 -3
- package/package.json +9 -10
- package/styles/colorUtils.css +60 -60
- package/styles/colorUtils.sty.js +2 -2
- package/styles/container.css +47 -47
- package/styles/container.sty.js +2 -2
- package/styles/ellipsis.css +1 -1
- package/styles/ellipsis.sty.js +1 -1
- package/styles/field.css +290 -290
- package/styles/field.sty.js +2 -2
- package/styles/screen-reader-only.css +1 -1
- package/styles/screen-reader-only.sty.js +1 -1
- package/styles/sprinkles.css +262 -262
- package/styles/sprinkles.sty.js +1 -1
- package/styles/textStyle.css +8 -8
- package/styles/textStyle.sty.js +1 -1
- package/tables/DataTable/DataTable.css +2 -2
- package/tables/DataTable/DataTable.d.ts +1 -1
- package/tables/DataTable/DataTable.js +9 -3
- package/tables/DataTable/DataTable.sty.js +7 -7
- package/tables/DataTable/components/Alignment.css +6 -6
- package/tables/DataTable/components/Alignment.sty.js +2 -2
- package/tables/DataTable/components/ColumnPinning/DataTablePinningShadowCells.css +6 -6
- package/tables/DataTable/components/ColumnPinning/DataTablePinningShadowCells.sty.js +3 -3
- package/tables/DataTable/components/DataTableBody.css +2 -2
- package/tables/DataTable/components/DataTableBody.sty.js +2 -2
- package/tables/DataTable/components/DataTableCell.css +103 -117
- package/tables/DataTable/components/DataTableCell.sty.js +5 -5
- package/tables/DataTable/components/DataTableDefaultCell.css +23 -23
- package/tables/DataTable/components/DataTableDefaultCell.sty.js +1 -1
- package/tables/DataTable/components/DataTableEmptyState.css +6 -6
- package/tables/DataTable/components/DataTableEmptyState.sty.js +2 -2
- package/tables/DataTable/components/DataTableHeader.css +2 -2
- package/tables/DataTable/components/DataTableHeader.sty.js +2 -2
- package/tables/DataTable/components/DataTableHeaderCell.css +64 -64
- package/tables/DataTable/components/DataTableHeaderCell.sty.js +23 -23
- package/tables/DataTable/components/DataTableRow.css +13 -13
- package/tables/DataTable/components/DataTableRow.sty.js +1 -1
- package/tables/DataTable/components/DataTableScrollShadow.css +10 -10
- package/tables/DataTable/components/DataTableScrollShadow.sty.js +2 -2
- package/tables/DataTable/components/DataTableVirtualizationContainer.css +21 -21
- package/tables/DataTable/components/DataTableVirtualizationContainer.sty.js +1 -1
- package/tables/DataTable/components/SettingsModal/DataTableSettingsModal.css +6 -0
- package/tables/DataTable/components/SettingsModal/DataTableSettingsModal.d.ts +3 -1
- package/tables/DataTable/components/SettingsModal/DataTableSettingsModal.js +61 -37
- package/tables/DataTable/components/SettingsModal/DataTableSettingsModal.sty.d.ts +1 -0
- package/tables/DataTable/components/SettingsModal/DataTableSettingsModal.sty.js +25 -0
- package/tables/DataTable/components/TableActions/DataTableSelectionChip.css +5 -5
- package/tables/DataTable/components/TableActions/DataTableSelectionChip.sty.js +2 -2
- package/tables/DataTable/components/Toolbar/ColumnSettings/ColumnOrderSettings/ColumnOrderSettingsDragAndDrop.css +7 -7
- package/tables/DataTable/components/Toolbar/ColumnSettings/ColumnOrderSettings/ColumnOrderSettingsDragAndDrop.sty.js +3 -3
- package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnSettingsModal.d.ts +5 -1
- package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnSettingsModal.js +42 -5
- package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnVisibilitySettings.d.ts +1 -1
- package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnVisibilitySettings.js +2 -1
- package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsList.css +19 -7
- package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsList.d.ts +4 -0
- package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsList.js +8 -3
- package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsList.sty.d.ts +6 -6
- package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsList.sty.js +3 -3
- package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsListItem.css +7 -7
- package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsListItem.sty.js +3 -3
- package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableVisibilityFilterControls.css +5 -5
- package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableVisibilityFilterControls.sty.js +3 -3
- package/tables/DataTable/components/Toolbar/ColumnSettings/column-settings-types.d.ts +5 -1
- package/tables/DataTable/components/Toolbar/ColumnSettings/column-settings-utils.d.ts +31 -2
- package/tables/DataTable/components/Toolbar/ColumnSettings/column-settings-utils.js +72 -3
- package/tables/DataTable/components/Toolbar/DataTableToolbar.d.ts +5 -1
- package/tables/DataTable/components/Toolbar/DataTableToolbar.js +1 -0
- package/tables/DataTable/components/Toolbar/Download/DataTableDownloadData.css +3 -3
- package/tables/DataTable/components/Toolbar/Download/DataTableDownloadData.sty.js +2 -2
- package/tables/DataTable/features/ColumnOrder/ColumnOrder.css +8 -8
- package/tables/DataTable/features/ColumnOrder/ColumnOrder.sty.js +4 -4
- package/tables/DataTable/features/ColumnSizing/ColumnSizing.css +3 -3
- package/tables/DataTable/features/ColumnSizing/ColumnSizing.sty.js +1 -1
- package/tables/DataTable/features/ColumnTypes/ColumnTypes.css +1 -1
- package/tables/DataTable/features/ColumnTypes/ColumnTypes.sty.js +1 -1
- package/tables/DataTable/features/ColumnTypes/column-types-types.d.ts +2 -1
- package/tables/DataTable/features/ColumnVisibility/column-visibility-types.d.ts +17 -0
- package/tables/DataTable/features/Download/Download.js +1 -1
- package/tables/DataTable/features/GanttChart/DataTableGanttAnnotationsIndicators.css +1 -1
- package/tables/DataTable/features/GanttChart/DataTableGanttAnnotationsIndicators.sty.js +1 -1
- package/tables/DataTable/features/GanttChart/DataTableGanttChartCell.css +3 -3
- package/tables/DataTable/features/GanttChart/DataTableGanttChartCell.sty.js +2 -2
- package/tables/DataTable/features/GanttChart/DataTableGanttChartGrid.css +1 -1
- package/tables/DataTable/features/GanttChart/DataTableGanttChartGrid.js +3 -3
- package/tables/DataTable/features/GanttChart/DataTableGanttChartGrid.sty.js +1 -1
- package/tables/DataTable/features/GanttChart/DataTableGanttChartHeader.css +4 -4
- package/tables/DataTable/features/GanttChart/DataTableGanttChartHeader.sty.js +1 -1
- package/tables/DataTable/features/LoadingState/LoadingState.css +3 -3
- package/tables/DataTable/features/LoadingState/LoadingState.sty.js +3 -3
- package/tables/DataTable/features/RowDetails/RowDetails.css +13 -13
- package/tables/DataTable/features/RowDetails/RowDetails.sty.js +3 -3
- package/tables/DataTable/features/RowInteractivity/RowInteractivity.css +14 -14
- package/tables/DataTable/features/RowInteractivity/RowInteractivity.sty.js +1 -1
- package/tables/DataTable/features/RowOrder/RowOrder.css +8 -8
- package/tables/DataTable/features/RowOrder/RowOrder.sty.js +3 -3
- package/tables/DataTable/features/RowOrder/components/RowOrderingDragAndDropContext.js +1 -0
- package/tables/DataTable/features/Sorting/Sorting.css +34 -34
- package/tables/DataTable/features/Sorting/Sorting.sty.js +3 -3
- package/tables/DataTable/features/SubRows/SubRows.css +19 -19
- package/tables/DataTable/features/SubRows/SubRows.sty.js +5 -5
- package/tables/DataTable/features/Thresholds/Thresholds.css +2 -2
- package/tables/DataTable/features/Thresholds/Thresholds.sty.js +3 -3
- package/tables/DataTable/features/UserActions/RowActions.css +4 -4
- package/tables/DataTable/features/UserActions/RowActions.sty.js +1 -1
- package/tables/DataTable/features/UserActions/UserActions.css +18 -18
- package/tables/DataTable/features/UserActions/UserActions.sty.js +2 -2
- package/tables/DataTable/messages.d.ts +20 -0
- package/tables/DataTable/messages.js +22 -0
- package/tables/DataTable/public.api.d.ts +5 -3
- package/tables/SimpleTable/SimpleTable.css +27 -27
- package/tables/SimpleTable/SimpleTable.sty.js +1 -1
- package/tables/index.d.ts +1 -1
- package/typography/block-quote/Blockquote.css +2 -2
- package/typography/block-quote/Blockquote.sty.js +1 -1
- package/typography/code/Code.css +1 -1
- package/typography/code/Code.sty.js +1 -1
- package/typography/emphasis/Emphasis.css +1 -1
- package/typography/emphasis/Emphasis.sty.js +1 -1
- package/typography/external-link/ExternalLink.css +6 -6
- package/typography/external-link/ExternalLink.sty.js +1 -1
- package/typography/heading/Heading.css +7 -7
- package/typography/heading/Heading.sty.js +1 -1
- package/typography/highlight/Highlight.css +2 -2
- package/typography/highlight/Highlight.sty.js +1 -1
- package/typography/link/Link.css +4 -4
- package/typography/link/Link.sty.js +1 -1
- package/typography/list/List.css +4 -4
- package/typography/list/List.sty.js +2 -2
- package/typography/paragraph/Paragraph.css +3 -3
- package/typography/paragraph/Paragraph.sty.js +1 -1
- package/typography/strikethrough/Strikethrough.css +1 -1
- package/typography/strikethrough/Strikethrough.sty.js +1 -1
- package/typography/strong/Strong.css +1 -1
- package/typography/strong/Strong.sty.js +1 -1
- package/typography/text/Text.css +3 -3
- package/typography/text/Text.sty.js +1 -1
- package/typography/text-ellipsis/TextEllipsis.css +6 -6
- package/typography/text-ellipsis/TextEllipsis.sty.js +2 -2
- package/charts/core/components/toolbar/utils/estimate-toolbar-width.d.ts +0 -8
- package/charts/honeycomb/components/canvas/utils/define-text-to-render.d.ts +0 -3
- package/charts/honeycomb/components/canvas/utils/define-text-to-render.js +0 -34
- package/charts/tree-map/hooks/useSetOverlayState.d.ts +0 -3
- package/charts/tree-map/utils/text-measure.d.ts +0 -15
- package/content/ai-response/tests/AiResponse-animation.spec.d.ts +0 -1
- package/content/ai-response/tests/AiResponse-animation.spec.js +0 -281
- package/content/ai-response/tests/AiResponse-reduced-motion.spec.d.ts +0 -1
- package/content/ai-response/tests/AiResponse-reduced-motion.spec.js +0 -253
- package/content/ai-response/tests/vite-helpers.d.ts +0 -8
- package/content/ai-response/tests/vite-helpers.js +0 -66
- package/esm/charts/core/components/toolbar/utils/estimate-toolbar-width.js +0 -16
- package/esm/charts/core/components/toolbar/utils/estimate-toolbar-width.js.map +0 -7
- package/esm/charts/honeycomb/components/canvas/utils/define-text-to-render.js +0 -19
- package/esm/charts/honeycomb/components/canvas/utils/define-text-to-render.js.map +0 -7
- package/esm/charts/tree-map/hooks/useSetOverlayState.js +0 -21
- package/esm/charts/tree-map/hooks/useSetOverlayState.js.map +0 -7
- package/esm/charts/tree-map/utils/text-measure.js +0 -41
- package/esm/charts/tree-map/utils/text-measure.js.map +0 -7
- package/esm/content/ai-response/tests/AiResponse-animation.spec.js +0 -295
- package/esm/content/ai-response/tests/AiResponse-animation.spec.js.map +0 -7
- package/esm/content/ai-response/tests/AiResponse-reduced-motion.spec.js +0 -258
- package/esm/content/ai-response/tests/AiResponse-reduced-motion.spec.js.map +0 -7
- package/esm/content/ai-response/tests/vite-helpers.js +0 -50
- package/esm/content/ai-response/tests/vite-helpers.js.map +0 -7
- package/esm/filters/filter-field/contexts/SavedAndRecentQueryClientContext.js +0 -19
- package/esm/filters/filter-field/contexts/SavedAndRecentQueryClientContext.js.map +0 -7
- package/esm/filters/filter-field/error-fallback/ErrorFallback.js.map +0 -7
- package/esm/filters/filter-field/error-fallback/messages.js.map +0 -7
- package/esm/filters/filter-field/hooks/recent-and-pinned/usePersistedFilter.js +0 -163
- package/esm/filters/filter-field/hooks/recent-and-pinned/usePersistedFilter.js.map +0 -7
- package/esm/filters/filter-field/hooks/recent-and-pinned/useRecentFiltersStore.js +0 -25
- package/esm/filters/filter-field/hooks/recent-and-pinned/useRecentFiltersStore.js.map +0 -7
- package/filters/filter-field/contexts/SavedAndRecentQueryClientContext.d.ts +0 -6
- package/filters/filter-field/error-fallback/ErrorFallback.d.ts +0 -7
- package/filters/filter-field/hooks/recent-and-pinned/usePersistedFilter.d.ts +0 -12
- package/filters/filter-field/hooks/recent-and-pinned/usePersistedFilter.js +0 -176
- package/filters/filter-field/hooks/recent-and-pinned/useRecentFiltersStore.d.ts +0 -6
- package/filters/filter-field/hooks/recent-and-pinned/useRecentFiltersStore.js +0 -39
- /package/charts/xy-chart-adoption/{types → shared/types}/props.d.ts +0 -0
- /package/charts/xy-chart-adoption/{types → shared/types}/props.js +0 -0
- /package/{filters/filter-field → core/components}/error-fallback/ErrorFallback.js +0 -0
- /package/{charts/core → core}/utils/get-tick-value-as-number.d.ts +0 -0
- /package/{charts/core → core}/utils/get-tick-value-as-number.js +0 -0
- /package/esm/charts/{xy-chart-adoption/types/props.js.map → core/types/chart-data.js.map} +0 -0
- /package/esm/charts/xy-chart-adoption/{types → shared/types}/props.js +0 -0
- /package/esm/{filters/filter-field → core/components}/error-fallback/ErrorFallback.js +0 -0
- /package/esm/{charts/core → core}/utils/get-tick-value-as-number.js +0 -0
|
@@ -21,8 +21,6 @@ __export(PieChartPlot_exports, {
|
|
|
21
21
|
});
|
|
22
22
|
module.exports = __toCommonJS(PieChartPlot_exports);
|
|
23
23
|
var import_jsx_runtime = require("react/jsx-runtime");
|
|
24
|
-
var import_group = require("@visx/group");
|
|
25
|
-
var import_shape = require("@visx/shape");
|
|
26
24
|
var import_d3_shape = require("d3-shape");
|
|
27
25
|
var import_react = require("react");
|
|
28
26
|
var import_PieChartPlot_css = require("./PieChartPlot.sty.js");
|
|
@@ -39,6 +37,7 @@ var import_InnerWrapper = require("../InnerWrapper/InnerWrapper.js");
|
|
|
39
37
|
var import_PieChartLabel = require("../PieChartLabel.js");
|
|
40
38
|
var import_PieChartSlice = require("../PieChartSlice.js");
|
|
41
39
|
const getValue = (pieData) => pieData.relativeValue;
|
|
40
|
+
const pieLayout = (0, import_d3_shape.pie)().value(getValue).padAngle(import_constants.PAD_ANGLE).sort(null);
|
|
42
41
|
const PieChartPlot = (0, import_react.forwardRef)(
|
|
43
42
|
(props, forwardedRef) => {
|
|
44
43
|
const { variant } = props;
|
|
@@ -57,10 +56,44 @@ const PieChartPlot = (0, import_react.forwardRef)(
|
|
|
57
56
|
!!hiddenLabels
|
|
58
57
|
);
|
|
59
58
|
const visibleIds = visibleSlices.map((slice) => slice.id);
|
|
59
|
+
const arcs = (0, import_react.useMemo)(() => pieLayout(visibleSlices), [visibleSlices]);
|
|
60
|
+
const pathGenerator = (0, import_react.useMemo)(
|
|
61
|
+
() => (0, import_d3_shape.arc)().innerRadius(innerRadius).outerRadius(radius),
|
|
62
|
+
[innerRadius, radius]
|
|
63
|
+
);
|
|
60
64
|
const donutOverlay = (0, import_react.useMemo)(
|
|
61
65
|
() => (0, import_d3_shape.arc)().innerRadius(innerRadius).outerRadius(radius).startAngle(0).endAngle(360)({}),
|
|
62
66
|
[innerRadius, radius]
|
|
63
67
|
);
|
|
68
|
+
const sliceRenderData = (0, import_react.useMemo)(() => {
|
|
69
|
+
let previousLabel = void 0;
|
|
70
|
+
return arcs.map((pieArc) => {
|
|
71
|
+
const label = (0, import_build_label.buildLabel)(
|
|
72
|
+
pieArc,
|
|
73
|
+
pathGenerator,
|
|
74
|
+
valueType,
|
|
75
|
+
formatter,
|
|
76
|
+
truncationMode,
|
|
77
|
+
leftCenter
|
|
78
|
+
);
|
|
79
|
+
const isHighlighted = !highlightedId || highlightedId === pieArc.data.id;
|
|
80
|
+
const showLabel = !hiddenLabels && (0, import_label_collisions.isInBounds)(label, leftCenter, topCenter) && (!previousLabel || !(0, import_label_collisions.collision)(label, previousLabel)) && pieArc.data.id !== import_constants.THINNER_SLICES_ID;
|
|
81
|
+
if (showLabel) {
|
|
82
|
+
previousLabel = label;
|
|
83
|
+
}
|
|
84
|
+
return { pieArc, label, isHighlighted, showLabel };
|
|
85
|
+
});
|
|
86
|
+
}, [
|
|
87
|
+
arcs,
|
|
88
|
+
pathGenerator,
|
|
89
|
+
valueType,
|
|
90
|
+
formatter,
|
|
91
|
+
truncationMode,
|
|
92
|
+
leftCenter,
|
|
93
|
+
highlightedId,
|
|
94
|
+
hiddenLabels,
|
|
95
|
+
topCenter
|
|
96
|
+
]);
|
|
64
97
|
return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("div", { className: import_PieChartPlot_css.container, ref: forwardedRef, children: [
|
|
65
98
|
variant === import_constants.CHART_VARIANT.Donut && /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
66
99
|
import_InnerWrapper.InnerWrapper,
|
|
@@ -72,10 +105,9 @@ const PieChartPlot = (0, import_react.forwardRef)(
|
|
|
72
105
|
}
|
|
73
106
|
),
|
|
74
107
|
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("svg", { width, height, style: { overflow: "visible" }, children: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
|
|
75
|
-
|
|
108
|
+
"g",
|
|
76
109
|
{
|
|
77
|
-
|
|
78
|
-
left: leftCenter,
|
|
110
|
+
transform: topCenter !== 0 || leftCenter !== 0 ? `translate(${leftCenter}, ${topCenter})` : void 0,
|
|
79
111
|
onMouseLeave: dispatchReducer({ type: "SET_OUT_BOUNDS" }),
|
|
80
112
|
children: [
|
|
81
113
|
variant === import_constants.CHART_VARIANT.Pie ? /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
@@ -87,55 +119,28 @@ const PieChartPlot = (0, import_react.forwardRef)(
|
|
|
87
119
|
fill: "transparent"
|
|
88
120
|
}
|
|
89
121
|
) : /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: donutOverlay, fill: "transparent" }),
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
if (showLabel) {
|
|
113
|
-
previousLabel = label;
|
|
114
|
-
}
|
|
115
|
-
return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_react.Fragment, { children: [
|
|
116
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
117
|
-
import_PieChartSlice.PieChartSlice,
|
|
118
|
-
{
|
|
119
|
-
sliceId: `slice-${arc2.data.id}`,
|
|
120
|
-
arc: arc2,
|
|
121
|
-
data: arc2.data,
|
|
122
|
-
path: pie.path,
|
|
123
|
-
isHighlighted
|
|
124
|
-
}
|
|
125
|
-
),
|
|
126
|
-
showLabel && /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
127
|
-
import_PieChartLabel.PieChartLabel,
|
|
128
|
-
{
|
|
129
|
-
x: label.textX,
|
|
130
|
-
y: label.textY,
|
|
131
|
-
text: label.text,
|
|
132
|
-
isHighlighted
|
|
133
|
-
}
|
|
134
|
-
)
|
|
135
|
-
] }, `slice-${arc2.data.id}`);
|
|
136
|
-
});
|
|
137
|
-
}
|
|
138
|
-
}
|
|
122
|
+
sliceRenderData.map(
|
|
123
|
+
({ pieArc, label, isHighlighted, showLabel }) => /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_react.Fragment, { children: [
|
|
124
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
125
|
+
import_PieChartSlice.PieChartSlice,
|
|
126
|
+
{
|
|
127
|
+
sliceId: `slice-${pieArc.data.id}`,
|
|
128
|
+
arc: pieArc,
|
|
129
|
+
data: pieArc.data,
|
|
130
|
+
path: pathGenerator,
|
|
131
|
+
isHighlighted
|
|
132
|
+
}
|
|
133
|
+
),
|
|
134
|
+
showLabel && /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
135
|
+
import_PieChartLabel.PieChartLabel,
|
|
136
|
+
{
|
|
137
|
+
x: label.textX,
|
|
138
|
+
y: label.textY,
|
|
139
|
+
text: label.text,
|
|
140
|
+
isHighlighted
|
|
141
|
+
}
|
|
142
|
+
)
|
|
143
|
+
] }, `slice-${pieArc.data.id}`)
|
|
139
144
|
)
|
|
140
145
|
]
|
|
141
146
|
}
|
|
@@ -28,18 +28,22 @@ const PieChartSlice = (props) => {
|
|
|
28
28
|
const { sliceId, arc, data, path, isHighlighted } = props;
|
|
29
29
|
const arcPath = path(arc);
|
|
30
30
|
const formatter = (0, import_FormatterContext.useFormatter)();
|
|
31
|
-
const { onMouseClickHandler, onPointerMoveHandler } = (0, import_useSliceHandlers.useSliceHandlers)(
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
formatter
|
|
35
|
-
);
|
|
36
|
-
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)("g", { onPointerMove: onPointerMoveHandler, onClick: onMouseClickHandler, children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
37
|
-
"path",
|
|
31
|
+
const { onMouseClickHandler, onPointerMoveHandler, onTouchEndHandler } = (0, import_useSliceHandlers.useSliceHandlers)(sliceId, data, formatter);
|
|
32
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
33
|
+
"g",
|
|
38
34
|
{
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
35
|
+
onPointerMove: onPointerMoveHandler,
|
|
36
|
+
onClick: onMouseClickHandler,
|
|
37
|
+
onTouchEnd: onTouchEndHandler,
|
|
38
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
39
|
+
"path",
|
|
40
|
+
{
|
|
41
|
+
d: arcPath || "",
|
|
42
|
+
fill: data.color.Default,
|
|
43
|
+
opacity: isHighlighted ? 0.85 : import_constants.INACTIVE_FILL_OPACITY_PIE_CHART
|
|
44
|
+
}
|
|
45
|
+
)
|
|
42
46
|
}
|
|
43
|
-
)
|
|
47
|
+
);
|
|
44
48
|
};
|
|
45
49
|
PieChartSlice["displayName"] = "PieChartSlice";
|
|
@@ -22,3 +22,4 @@ export declare const DEFAULT_SCALE_FALLBACK_COLOR: string;
|
|
|
22
22
|
export declare const DONUT_CHART_ARIA_LABEL = "Donut Chart";
|
|
23
23
|
export declare const PIE_CHART_ARIA_LABEL = "Pie Chart";
|
|
24
24
|
export declare const PAD_ANGLE = 0.01;
|
|
25
|
+
export declare const THINNER_SLICES_ID = "thinner-slices";
|
package/charts/pie/constants.js
CHANGED
|
@@ -25,6 +25,7 @@ __export(constants_exports, {
|
|
|
25
25
|
PAD_ANGLE: () => PAD_ANGLE,
|
|
26
26
|
PIE_CHART_ARIA_LABEL: () => PIE_CHART_ARIA_LABEL,
|
|
27
27
|
PIE_CHART_DISPLAY_NAME: () => PIE_CHART_DISPLAY_NAME,
|
|
28
|
+
THINNER_SLICES_ID: () => THINNER_SLICES_ID,
|
|
28
29
|
THRESHOLD_TYPE_OPTION: () => THRESHOLD_TYPE_OPTION,
|
|
29
30
|
TRUNCATION_MODE: () => TRUNCATION_MODE
|
|
30
31
|
});
|
|
@@ -56,3 +57,4 @@ const DEFAULT_SCALE_FALLBACK_COLOR = import_constants.SCALE_FALLBACK_COLOR;
|
|
|
56
57
|
const DONUT_CHART_ARIA_LABEL = "Donut Chart";
|
|
57
58
|
const PIE_CHART_ARIA_LABEL = "Pie Chart";
|
|
58
59
|
const PAD_ANGLE = 0.01;
|
|
60
|
+
const THINNER_SLICES_ID = "thinner-slices";
|
|
@@ -9,6 +9,7 @@ export declare const PieChartConfigContext: import("react").Context<string | Pie
|
|
|
9
9
|
*/
|
|
10
10
|
export declare const PieChartConfig: import("react").Provider<string | PieChartContextConfig>;
|
|
11
11
|
/**
|
|
12
|
+
* Provider for the DonutChart API config that can be shared across charts.
|
|
12
13
|
* @public
|
|
13
14
|
*/
|
|
14
15
|
export declare const DonutChartConfig: import("react").Provider<string | PieChartContextConfig>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { normalizePieData } from '../utils/normalize-pie-data.js';
|
|
2
|
+
import type { NormalizePieDataInput } from '../utils/normalize-pie-data.js';
|
|
3
|
+
export interface NormalizedPieData {
|
|
4
|
+
normalizedData: ReturnType<typeof normalizePieData>;
|
|
5
|
+
isDataAvailable: boolean;
|
|
6
|
+
}
|
|
7
|
+
export declare function useNormalizedPieData({ data, labelAccessor, valueAccessor, unit, }: NormalizePieDataInput): NormalizedPieData;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
5
|
+
var __export = (target, all) => {
|
|
6
|
+
for (var name in all)
|
|
7
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
8
|
+
};
|
|
9
|
+
var __copyProps = (to, from, except, desc) => {
|
|
10
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
11
|
+
for (let key of __getOwnPropNames(from))
|
|
12
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
13
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
14
|
+
}
|
|
15
|
+
return to;
|
|
16
|
+
};
|
|
17
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
18
|
+
var useNormalizedPieData_exports = {};
|
|
19
|
+
__export(useNormalizedPieData_exports, {
|
|
20
|
+
useNormalizedPieData: () => useNormalizedPieData
|
|
21
|
+
});
|
|
22
|
+
module.exports = __toCommonJS(useNormalizedPieData_exports);
|
|
23
|
+
var import_lodash_es = require("lodash");
|
|
24
|
+
var import_react = require("react");
|
|
25
|
+
var import_normalize_pie_data = require("../utils/normalize-pie-data.js");
|
|
26
|
+
function useNormalizedPieData({
|
|
27
|
+
data,
|
|
28
|
+
labelAccessor,
|
|
29
|
+
valueAccessor,
|
|
30
|
+
unit
|
|
31
|
+
}) {
|
|
32
|
+
const normalizedData = (0, import_react.useMemo)(
|
|
33
|
+
() => (0, import_normalize_pie_data.normalizePieData)({ data, labelAccessor, valueAccessor, unit }),
|
|
34
|
+
[data, labelAccessor, valueAccessor, unit]
|
|
35
|
+
);
|
|
36
|
+
const isDataAvailable = normalizedData.slices !== void 0 ? !(0, import_lodash_es.isEmpty)(normalizedData.slices) : !(0, import_lodash_es.isEmpty)(data);
|
|
37
|
+
return { normalizedData, isDataAvailable };
|
|
38
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
+
import type { PointerEvent as ReactPointerEvent } from 'react';
|
|
1
2
|
export declare const useOverlayHandlers: () => {
|
|
2
|
-
|
|
3
|
-
|
|
3
|
+
onPointerEnterHandler: () => void;
|
|
4
|
+
onPointerLeaveHandler: (event: ReactPointerEvent) => void;
|
|
4
5
|
};
|
|
@@ -23,14 +23,16 @@ module.exports = __toCommonJS(useOverlayHandlers_exports);
|
|
|
23
23
|
var import_use_set_overlay_state = require("./store/use-set-overlay-state.js");
|
|
24
24
|
const useOverlayHandlers = () => {
|
|
25
25
|
const { setOverlayStateInBounds } = (0, import_use_set_overlay_state.useSetOverlayState)();
|
|
26
|
-
const
|
|
26
|
+
const onPointerEnterHandler = () => {
|
|
27
27
|
setOverlayStateInBounds(true);
|
|
28
28
|
};
|
|
29
|
-
const
|
|
30
|
-
|
|
29
|
+
const onPointerLeaveHandler = (event) => {
|
|
30
|
+
if (event.pointerType !== "touch") {
|
|
31
|
+
setOverlayStateInBounds(false);
|
|
32
|
+
}
|
|
31
33
|
};
|
|
32
34
|
return {
|
|
33
|
-
|
|
34
|
-
|
|
35
|
+
onPointerEnterHandler,
|
|
36
|
+
onPointerLeaveHandler
|
|
35
37
|
};
|
|
36
38
|
};
|
|
@@ -1,14 +1,15 @@
|
|
|
1
|
-
import { MouseEvent as ReactMouseEvent } from 'react';
|
|
1
|
+
import type { MouseEvent as ReactMouseEvent, TouchEvent as ReactTouchEvent } from 'react';
|
|
2
2
|
import type { Formatter } from '../../core/types/formatter.js';
|
|
3
3
|
import type { InternalSliceData } from '../types/internal/pie-chart.js';
|
|
4
4
|
/**
|
|
5
|
-
* Hook that generates handlers for mouse interactions.
|
|
5
|
+
* Hook that generates handlers for mouse and touch interactions.
|
|
6
6
|
* @param sliceId - Id of the slice.
|
|
7
7
|
* @param data - Slice data for this slice.
|
|
8
8
|
* @param formatter - Formatter to be used.
|
|
9
|
-
* @returns Handlers to perform mouse interactions.
|
|
9
|
+
* @returns Handlers to perform mouse and touch interactions.
|
|
10
10
|
*/
|
|
11
11
|
export declare function useSliceHandlers(sliceId: string, data: InternalSliceData, formatter: Formatter): {
|
|
12
12
|
onPointerMoveHandler: (event: ReactMouseEvent) => void;
|
|
13
13
|
onMouseClickHandler: (event: ReactMouseEvent) => void;
|
|
14
|
+
onTouchEndHandler: (event: ReactTouchEvent) => void;
|
|
14
15
|
};
|
|
@@ -23,6 +23,7 @@ module.exports = __toCommonJS(useSliceHandlers_exports);
|
|
|
23
23
|
var import_TooltipContext = require("../../core/components/overlay-tooltip/contexts/TooltipContext.js");
|
|
24
24
|
var import_useTooltipActions = require("../../core/components/overlay-tooltip/useTooltipActions.js");
|
|
25
25
|
var import_useEventErrorHandler = require("../../core/hooks/useEventErrorHandler.js");
|
|
26
|
+
var import_constants = require("../constants.js");
|
|
26
27
|
var import_get_tooltip_content = require("../utils/get-tooltip-content.js");
|
|
27
28
|
const buildTooltipData = (sliceId, data, handlerCatch, formatter) => {
|
|
28
29
|
const tooltipContent = (0, import_get_tooltip_content.getTooltipContent)(
|
|
@@ -52,7 +53,7 @@ function useSliceHandlers(sliceId, data, formatter) {
|
|
|
52
53
|
const tooltipState = (0, import_TooltipContext.useTooltip)();
|
|
53
54
|
const { hover, pin, unpin, reset } = (0, import_useTooltipActions.useTooltipActions)();
|
|
54
55
|
const onPointerMoveHandler = (event) => {
|
|
55
|
-
if (tooltipState.getState().pinned || sliceId ===
|
|
56
|
+
if (tooltipState.getState().pinned || sliceId === `slice-${import_constants.THINNER_SLICES_ID}`) {
|
|
56
57
|
return;
|
|
57
58
|
}
|
|
58
59
|
const tooltipData = buildTooltipData(
|
|
@@ -65,7 +66,7 @@ function useSliceHandlers(sliceId, data, formatter) {
|
|
|
65
66
|
};
|
|
66
67
|
const onMouseClickHandler = (event) => {
|
|
67
68
|
event.stopPropagation();
|
|
68
|
-
if (sliceId ===
|
|
69
|
+
if (sliceId === `slice-${import_constants.THINNER_SLICES_ID}`) {
|
|
69
70
|
reset();
|
|
70
71
|
} else {
|
|
71
72
|
const tooltipData = buildTooltipData(
|
|
@@ -82,8 +83,33 @@ function useSliceHandlers(sliceId, data, formatter) {
|
|
|
82
83
|
}
|
|
83
84
|
}
|
|
84
85
|
};
|
|
86
|
+
const onTouchEndHandler = (event) => {
|
|
87
|
+
if (event.cancelable) {
|
|
88
|
+
event.preventDefault();
|
|
89
|
+
}
|
|
90
|
+
if (sliceId === `slice-${import_constants.THINNER_SLICES_ID}`) {
|
|
91
|
+
reset();
|
|
92
|
+
return;
|
|
93
|
+
}
|
|
94
|
+
const touch = event.changedTouches[0];
|
|
95
|
+
if (!touch) {
|
|
96
|
+
return;
|
|
97
|
+
}
|
|
98
|
+
const tooltipData = buildTooltipData(
|
|
99
|
+
sliceId,
|
|
100
|
+
data,
|
|
101
|
+
handlerCatch,
|
|
102
|
+
formatter
|
|
103
|
+
);
|
|
104
|
+
if (tooltipState.getState().pinned) {
|
|
105
|
+
unpin();
|
|
106
|
+
} else {
|
|
107
|
+
pin({ clientX: touch.clientX, clientY: touch.clientY }, tooltipData);
|
|
108
|
+
}
|
|
109
|
+
};
|
|
85
110
|
return {
|
|
86
111
|
onPointerMoveHandler,
|
|
87
|
-
onMouseClickHandler
|
|
112
|
+
onMouseClickHandler,
|
|
113
|
+
onTouchEndHandler
|
|
88
114
|
};
|
|
89
115
|
}
|
|
@@ -6,18 +6,25 @@ import type { DataTestId } from '../../../core/types/data-props.js';
|
|
|
6
6
|
import type { MaskingProps } from '../../../core/types/masking-props.js';
|
|
7
7
|
import type { StylingProps } from '../../../core/types/styling-props.js';
|
|
8
8
|
import type { TruncationMode } from '../../../typography/text-ellipsis/TextEllipsis.js';
|
|
9
|
+
import type { ChartData } from '../../core/types/chart-data.js';
|
|
10
|
+
import type { ChartUnit } from '../../core/types/chart-unit.js';
|
|
9
11
|
import type { ColorPalette, CustomColorPalette } from '../../core/types/color-palette.js';
|
|
10
12
|
import type { ColorRuleProps } from '../../core/types/color-rule.js';
|
|
11
13
|
import type { Formatter } from '../../core/types/formatter.js';
|
|
12
14
|
import type { LegendProps } from '../../core/types/legend.js';
|
|
13
15
|
import type { SeriesActionsTemplate } from '../../core/types/series-actions-template.js';
|
|
14
16
|
/**
|
|
17
|
+
* Unit for pie/donut chart slices.
|
|
15
18
|
* @public
|
|
16
19
|
* @deprecated use string or Unit type instead
|
|
17
20
|
*/
|
|
18
21
|
export type SliceUnit = string;
|
|
19
22
|
/**
|
|
23
|
+
* Legacy data format for a single pie/donut slice.
|
|
20
24
|
* @public
|
|
25
|
+
* @deprecated Use the unified `ChartData` (`ChartDatapoint[]`) format together
|
|
26
|
+
* with `labelAccessor`/`valueAccessor` instead. This interface will be removed
|
|
27
|
+
* in a future release.
|
|
21
28
|
*/
|
|
22
29
|
export interface SliceData {
|
|
23
30
|
/** The category of the slice*/
|
|
@@ -32,7 +39,11 @@ export interface SliceData {
|
|
|
32
39
|
color?: string;
|
|
33
40
|
}
|
|
34
41
|
/**
|
|
42
|
+
* Legacy data format for PieChart slices.
|
|
35
43
|
* @public
|
|
44
|
+
* @deprecated Use the unified `ChartData` (`ChartDatapoint[]`) format together
|
|
45
|
+
* with `labelAccessor`/`valueAccessor` and the root-level `unit` prop instead.
|
|
46
|
+
* This interface will be removed in a future release.
|
|
36
47
|
*/
|
|
37
48
|
export interface PieChartData {
|
|
38
49
|
/** Slice data array */
|
|
@@ -41,13 +52,11 @@ export interface PieChartData {
|
|
|
41
52
|
unit?: string | Unit;
|
|
42
53
|
}
|
|
43
54
|
/**
|
|
55
|
+
* Properties shared by both the unified `ChartData` and the legacy
|
|
56
|
+
* `PieChartData` variants of {@link PieChartProps}.
|
|
44
57
|
* @public
|
|
45
58
|
*/
|
|
46
|
-
export interface
|
|
47
|
-
/**
|
|
48
|
-
* Categorical data of the chart.
|
|
49
|
-
*/
|
|
50
|
-
data: PieChartData;
|
|
59
|
+
export interface PieChartBaseProps extends StylingProps, MaskingProps, DataTestId, BehaviorTrackingProps {
|
|
51
60
|
/**
|
|
52
61
|
* The width of the chart. A number or a string with accepted CSS units is expected.
|
|
53
62
|
* @defaultValue 100%
|
|
@@ -80,6 +89,46 @@ export interface PieChartProps extends StylingProps, MaskingProps, DataTestId, B
|
|
|
80
89
|
loading?: boolean;
|
|
81
90
|
}
|
|
82
91
|
/**
|
|
92
|
+
* PieChart props using the unified `ChartData` format. The slice label and
|
|
93
|
+
* value are resolved from each datapoint through `labelAccessor` and
|
|
94
|
+
* `valueAccessor` (dot-notation is supported, e.g. `"metrics.value"`).
|
|
95
|
+
* @public
|
|
96
|
+
*/
|
|
97
|
+
export interface PieChartAccessorDataProps extends PieChartBaseProps {
|
|
98
|
+
/**
|
|
99
|
+
* Categorical data of the chart in the unified `ChartData` format.
|
|
100
|
+
*/
|
|
101
|
+
data: ChartData;
|
|
102
|
+
/** Accessor describing the field that holds the slice label/category. */
|
|
103
|
+
labelAccessor: string;
|
|
104
|
+
/** Accessor describing the field that holds the slice value. */
|
|
105
|
+
valueAccessor: string;
|
|
106
|
+
/** The unit of the slices. */
|
|
107
|
+
unit?: ChartUnit;
|
|
108
|
+
}
|
|
109
|
+
/**
|
|
110
|
+
* PieChart props using the legacy `PieChartData` format.
|
|
111
|
+
* @public
|
|
112
|
+
* @deprecated Use the unified `ChartData` format with
|
|
113
|
+
* `labelAccessor`/`valueAccessor` instead (see {@link PieChartAccessorDataProps}).
|
|
114
|
+
*/
|
|
115
|
+
export interface PieChartLegacyDataProps extends PieChartBaseProps {
|
|
116
|
+
/** Categorical data of the chart.*/
|
|
117
|
+
data: PieChartData;
|
|
118
|
+
/** Not available in the legacy data format. Use `PieChartAccessorDataProps` with the unified `ChartData` format. */
|
|
119
|
+
labelAccessor?: never;
|
|
120
|
+
/** Not available in the legacy data format. Use `PieChartAccessorDataProps` with the unified `ChartData` format. */
|
|
121
|
+
valueAccessor?: never;
|
|
122
|
+
/** Not available in the legacy data format. Set the unit via `PieChartData.unit` instead. */
|
|
123
|
+
unit?: never;
|
|
124
|
+
}
|
|
125
|
+
/**
|
|
126
|
+
* Props for the PieChart component.
|
|
127
|
+
* @public
|
|
128
|
+
*/
|
|
129
|
+
export type PieChartProps = PieChartAccessorDataProps | PieChartLegacyDataProps;
|
|
130
|
+
/**
|
|
131
|
+
* Configuration for the PieChart context, allowing shared config across multiple charts via {@link PieChartConfig}.
|
|
83
132
|
* @public
|
|
84
133
|
*/
|
|
85
134
|
export interface PieChartContextConfig {
|
|
@@ -128,6 +177,7 @@ export interface PieChartContextConfig {
|
|
|
128
177
|
*/
|
|
129
178
|
export type DonutChartContextConfig = PieChartContextConfig;
|
|
130
179
|
/**
|
|
180
|
+
* Full configuration for the PieChart component, extending {@link PieChartContextConfig} with chart dimensions.
|
|
131
181
|
* @public
|
|
132
182
|
*/
|
|
133
183
|
export interface PieChartConfiguration extends PieChartContextConfig {
|
|
@@ -232,53 +282,66 @@ export interface GroupConfig {
|
|
|
232
282
|
threshold: ThresholdConfig;
|
|
233
283
|
}
|
|
234
284
|
/**
|
|
285
|
+
* Legend configuration for the PieChart component.
|
|
235
286
|
* @public
|
|
236
287
|
*/
|
|
237
288
|
export type PieChartLegendConfig = LegendProps;
|
|
238
289
|
/**
|
|
290
|
+
* Legacy data format for the DonutChart component.
|
|
239
291
|
* @public
|
|
292
|
+
* @deprecated Use the unified `ChartData` (`ChartDatapoint[]`) format together
|
|
293
|
+
* with `labelAccessor`/`valueAccessor` and the root-level `unit` prop instead.
|
|
294
|
+
* This type will be removed in a future release.
|
|
240
295
|
*/
|
|
241
296
|
export type DonutChartData = PieChartData;
|
|
242
297
|
/**
|
|
298
|
+
* Properties shared by both the unified `ChartData` and the legacy
|
|
299
|
+
* `DonutChartData` variants of {@link DonutChartProps}.
|
|
243
300
|
* @public
|
|
244
301
|
*/
|
|
245
|
-
export
|
|
302
|
+
export type DonutChartBaseProps = PieChartBaseProps;
|
|
303
|
+
/**
|
|
304
|
+
* DonutChart props using the unified `ChartData` format. The slice label and
|
|
305
|
+
* value are resolved from each datapoint through `labelAccessor` and
|
|
306
|
+
* `valueAccessor` (dot-notation is supported, e.g. `"metrics.value"`).
|
|
307
|
+
* @public
|
|
308
|
+
*/
|
|
309
|
+
export interface DonutChartAccessorDataProps extends DonutChartBaseProps {
|
|
246
310
|
/**
|
|
247
|
-
* Categorical data of the chart.
|
|
311
|
+
* Categorical data of the chart in the unified `ChartData` format.
|
|
248
312
|
*/
|
|
313
|
+
data: ChartData;
|
|
314
|
+
/** Accessor describing the field that holds the slice label/category. */
|
|
315
|
+
labelAccessor: string;
|
|
316
|
+
/** Accessor describing the field that holds the slice value. */
|
|
317
|
+
valueAccessor: string;
|
|
318
|
+
/** The unit of the slices. */
|
|
319
|
+
unit?: ChartUnit;
|
|
320
|
+
}
|
|
321
|
+
/**
|
|
322
|
+
* DonutChart props using the legacy `DonutChartData` format.
|
|
323
|
+
* @public
|
|
324
|
+
* @deprecated Use the unified `ChartData` (`ChartDatapoint[]`) format together
|
|
325
|
+
* with `labelAccessor`/`valueAccessor` and the root-level `unit` prop instead.
|
|
326
|
+
* This interface will be removed in a future release.
|
|
327
|
+
*/
|
|
328
|
+
export interface DonutChartLegacyDataProps extends DonutChartBaseProps {
|
|
329
|
+
/** Categorical data of the chart. */
|
|
249
330
|
data: DonutChartData;
|
|
250
|
-
/**
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
* @defaultValue 300px.
|
|
257
|
-
*/
|
|
258
|
-
height?: number | string;
|
|
259
|
-
/**
|
|
260
|
-
* Set of Color palette to be used in charts.
|
|
261
|
-
* @defaultValue 'categorical'.
|
|
262
|
-
*/
|
|
263
|
-
colorPalette?: ColorPalette | CustomColorPalette;
|
|
264
|
-
/**
|
|
265
|
-
* Custom Formatter for the chart
|
|
266
|
-
*/
|
|
267
|
-
formatter?: Formatter | FormatOptions<Unit, ConvertibleUnit>;
|
|
268
|
-
/**
|
|
269
|
-
* Truncation mode to use (start, middle, end)
|
|
270
|
-
* Applied to all the parts that truncate text.
|
|
271
|
-
* @defaultValue 'middle'
|
|
272
|
-
*/
|
|
273
|
-
truncationMode?: TruncationMode;
|
|
274
|
-
/** Exposed callback to display series actions for a slice */
|
|
275
|
-
seriesActions?: (slice: SliceData) => SeriesActionsTemplate;
|
|
276
|
-
/** Show the loading indicator when truly.
|
|
277
|
-
* @defaultValue false
|
|
278
|
-
*/
|
|
279
|
-
loading?: boolean;
|
|
331
|
+
/** Not available in the legacy data format. Use `DonutChartAccessorDataProps` with the unified `ChartData` format. */
|
|
332
|
+
labelAccessor?: never;
|
|
333
|
+
/** Not available in the legacy data format. Use `DonutChartAccessorDataProps` with the unified `ChartData` format. */
|
|
334
|
+
valueAccessor?: never;
|
|
335
|
+
/** Not available in the legacy data format. Set the unit via `DonutChartData.unit` instead. */
|
|
336
|
+
unit?: never;
|
|
280
337
|
}
|
|
281
338
|
/**
|
|
339
|
+
* Props for the DonutChart component.
|
|
340
|
+
* @public
|
|
341
|
+
*/
|
|
342
|
+
export type DonutChartProps = DonutChartAccessorDataProps | DonutChartLegacyDataProps;
|
|
343
|
+
/**
|
|
344
|
+
* Legend configuration for the DonutChart component.
|
|
282
345
|
* @public
|
|
283
346
|
*/
|
|
284
347
|
export type DonutChartLegendConfig = PieChartLegendConfig;
|
|
@@ -297,6 +360,7 @@ export type PieChartTooltipPayload = {
|
|
|
297
360
|
color: string;
|
|
298
361
|
};
|
|
299
362
|
/**
|
|
363
|
+
* Props for a custom tooltip rendered inside the PieChart.
|
|
300
364
|
* @public
|
|
301
365
|
*/
|
|
302
366
|
export type PieChartCustomTooltipProps = {
|
|
@@ -305,6 +369,7 @@ export type PieChartCustomTooltipProps = {
|
|
|
305
369
|
children?: (payload: PieChartTooltipPayload) => ReactNode;
|
|
306
370
|
};
|
|
307
371
|
/**
|
|
372
|
+
* Props for a custom tooltip rendered inside the DonutChart.
|
|
308
373
|
* @public
|
|
309
374
|
*/
|
|
310
375
|
export type DonutChartCustomTooltipProps = PieChartCustomTooltipProps;
|
|
@@ -21,6 +21,7 @@ __export(group_slices_thinner_than_pad_angle_exports, {
|
|
|
21
21
|
});
|
|
22
22
|
module.exports = __toCommonJS(group_slices_thinner_than_pad_angle_exports);
|
|
23
23
|
var import_plot_data_utils = require("./plot-data.utils.js");
|
|
24
|
+
var import_constants = require("../constants.js");
|
|
24
25
|
const groupSlicesThinnerThanPadAngle = (slices, padAngle) => {
|
|
25
26
|
let slicesThinnerThanPadAngleValueSum = 0;
|
|
26
27
|
let totalAbsoluteValueSum = 0;
|
|
@@ -43,7 +44,7 @@ const groupSlicesThinnerThanPadAngle = (slices, padAngle) => {
|
|
|
43
44
|
category: "",
|
|
44
45
|
value: slicesThinnerThanPadAngleValueSum,
|
|
45
46
|
color: negativeSlicesAggregatedSliceColorToken,
|
|
46
|
-
id:
|
|
47
|
+
id: import_constants.THINNER_SLICES_ID,
|
|
47
48
|
relativeValue: (0, import_plot_data_utils.getSlicePercentage)(
|
|
48
49
|
slicesThinnerThanPadAngleValueSum,
|
|
49
50
|
totalAbsoluteValueSum
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import type { ChartData } from '../../core/types/chart-data.js';
|
|
2
|
+
import type { ChartUnit } from '../../core/types/chart-unit.js';
|
|
3
|
+
import type { PieChartData } from '../types/pie-chart.config.js';
|
|
4
|
+
/**
|
|
5
|
+
* Input accepted by {@link normalizePieData}: either the unified `ChartData`
|
|
6
|
+
* format (paired with `labelAccessor`/`valueAccessor` and a root-level `unit`)
|
|
7
|
+
* or the legacy `PieChartData` shape.
|
|
8
|
+
* @internal
|
|
9
|
+
*/
|
|
10
|
+
export interface NormalizePieDataInput {
|
|
11
|
+
data: ChartData | PieChartData;
|
|
12
|
+
labelAccessor?: string;
|
|
13
|
+
valueAccessor?: string;
|
|
14
|
+
unit?: ChartUnit;
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* Normalizes the public PieChart/DonutChart data props into the internal
|
|
18
|
+
* `PieChartData` (`{ slices, unit }`) shape consumed by the rendering pipeline.
|
|
19
|
+
*
|
|
20
|
+
* When `labelAccessor`/`valueAccessor` are provided, the data is treated as the
|
|
21
|
+
* unified `ChartData` array and each datapoint is mapped to a slice by resolving
|
|
22
|
+
* the accessor strings (dot-notation supported). Otherwise the legacy
|
|
23
|
+
* `PieChartData` is returned unchanged.
|
|
24
|
+
*
|
|
25
|
+
* @param input - the data-related PieChart/DonutChart props
|
|
26
|
+
* @returns the internal `PieChartData` shape
|
|
27
|
+
* @internal
|
|
28
|
+
*/
|
|
29
|
+
export declare function normalizePieData(input: NormalizePieDataInput): PieChartData;
|