@dynatrace/strato-components 3.11.2 → 3.12.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 +178 -0
- package/buttons/button/Button.css +15 -15
- package/buttons/button/Button.sty.js +4 -4
- package/buttons/intent-button/IntentButton.css +1 -1
- package/buttons/intent-button/IntentButton.js +11 -1
- package/buttons/intent-button/IntentButton.sty.js +1 -1
- package/buttons/notify-button/NotifyButton.css +2 -2
- package/buttons/notify-button/NotifyButton.sty.js +2 -2
- package/charts/annotations-chart/AnnotationsChart.js +34 -20
- package/charts/annotations-chart/types/annotations-chart-props.d.ts +2 -1
- package/charts/categorical-bar/CategoricalBarChartInternal.js +11 -1
- package/charts/categorical-bar/CategoricalBarChartRoot.js +17 -3
- 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/types/categorical-bar-chart.d.ts +2 -1
- 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/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/components/tooltip/AnnotationsOverlayTooltip.js +15 -0
- package/charts/core/components/annotations/hooks/useMarkerEventHandlers.js +5 -3
- package/charts/core/components/annotations/hooks/useOverlayEvents.js +14 -0
- package/charts/core/components/axes/Axis.css +1 -1
- package/charts/core/components/axes/Axis.sty.js +1 -1
- 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/chart-grid/ChartGrid.css +3 -3
- package/charts/core/components/chart-grid/ChartGrid.sty.js +3 -3
- package/charts/core/components/chart-layout/ChartLayout.js +8 -1
- 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-layout/utils/calculate-graph-size.js +1 -1
- 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/components/Magnifier.css +7 -7
- package/charts/core/components/crosshair/components/Magnifier.sty.js +7 -7
- package/charts/core/components/interactions-overlay/InteractionsOverlay.css +5 -5
- package/charts/core/components/interactions-overlay/InteractionsOverlay.js +43 -4
- package/charts/core/components/interactions-overlay/InteractionsOverlay.sty.js +2 -2
- package/charts/core/components/interactions-overlay/types.d.ts +4 -0
- package/charts/core/components/legend/categorical/ChartLegend.css +1 -1
- package/charts/core/components/legend/categorical/ChartLegend.js +49 -22
- 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.d.ts +1 -0
- package/charts/core/components/legend/categorical/components/ChartLegendIcon/ChartLegendIcon.js +2 -1
- 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.js +30 -3
- 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.d.ts +2 -0
- package/charts/core/components/legend/categorical/components/ChartLegendSeriesActions/ChartLegendSeriesActions.js +2 -0
- 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/categorical/hooks/useLegendItemActions.d.ts +1 -1
- package/charts/core/components/legend/categorical/hooks/useLegendItemActions.js +10 -2
- package/charts/core/components/legend/categorical/messages.d.ts +25 -0
- package/charts/core/components/legend/categorical/messages.js +25 -0
- package/charts/core/components/legend/categorical/types/legend-internal.d.ts +1 -0
- 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/legend/shared/context/Legend.context.js +2 -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/OverlayTooltip.d.ts +1 -1
- package/charts/core/components/overlay-tooltip/OverlayTooltip.js +9 -1
- package/charts/core/components/overlay-tooltip/components/DynamicTooltip.d.ts +1 -0
- package/charts/core/components/overlay-tooltip/components/DynamicTooltip.js +2 -1
- package/charts/core/components/overlay-tooltip/components/DynamicTooltipRenderer.js +17 -1
- package/charts/core/components/overlay-tooltip/components/LegacyTemplateTooltip.d.ts +1 -0
- package/charts/core/components/overlay-tooltip/components/LegacyTemplateTooltip.js +2 -1
- package/charts/core/components/overlay-tooltip/components/TooltipPortal.d.ts +1 -0
- package/charts/core/components/overlay-tooltip/components/TooltipPortal.js +9 -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/contexts/PinCoordinationContext.d.ts +29 -0
- package/charts/core/components/overlay-tooltip/contexts/PinCoordinationContext.js +38 -0
- package/charts/core/components/overlay-tooltip/hooks/useCanvasAriaDescribedBy.d.ts +4 -0
- package/charts/core/components/overlay-tooltip/hooks/useCanvasAriaDescribedBy.js +54 -0
- package/charts/core/components/overlay-tooltip/pinCoordinationSelectors.d.ts +5 -0
- package/charts/core/components/overlay-tooltip/pinCoordinationSelectors.js +30 -0
- package/charts/core/components/overlay-tooltip/tooltip.css +52 -59
- package/charts/core/components/overlay-tooltip/tooltip.css.d.ts +0 -9
- package/charts/core/components/overlay-tooltip/tooltip.sty.js +39 -39
- package/charts/core/components/overlay-tooltip/usePinCoordinationActions.d.ts +13 -0
- package/charts/core/components/overlay-tooltip/usePinCoordinationActions.js +40 -0
- package/charts/core/components/overlays/ChartOverlaysBorder.css +6 -6
- package/charts/core/components/overlays/ChartOverlaysBorder.sty.js +6 -6
- 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/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.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/single-value-renderer/types/single-value-base-props.d.ts +2 -5
- 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 +9 -2
- package/charts/core/components/sparkline-display/types/sparkline-props.d.ts +2 -1
- 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/text-ellipsis/chars-font-width-map.d.ts +6 -0
- package/charts/core/components/text-ellipsis/chars-font-width-map.js +159 -0
- package/charts/core/components/threshold-bar/styles.css +17 -9
- package/charts/core/components/threshold-bar/styles.css.d.ts +8 -0
- package/charts/core/components/threshold-bar/styles.sty.js +2 -2
- package/charts/core/components/threshold-bar/types.d.ts +17 -1
- package/charts/core/components/threshold-bar/types.js +5 -1
- package/charts/core/components/toolbar/ChartToolbarRenderer.css +16 -16
- package/charts/core/components/toolbar/ChartToolbarRenderer.js +29 -2
- 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.d.ts +1 -0
- package/charts/core/components/toolbar/components/ToolbarMenu.js +4 -1
- package/charts/core/components/toolbar/components/ToolbarMenu.sty.js +2 -2
- package/charts/core/components/toolbar/styles.css +1 -1
- package/charts/core/components/toolbar/styles.sty.js +1 -1
- 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/context/AriaLabelingContext.d.ts +14 -0
- package/charts/core/context/AriaLabelingContext.js +26 -0
- package/charts/core/slots/Tooltip.d.ts +7 -3
- package/charts/core/typographyStyles.css +1 -1
- package/charts/core/typographyStyles.sty.js +1 -1
- package/charts/flame/flame-chart/FlameChart.d.ts +15 -1
- package/charts/flame/flame-chart/FlameChart.js +43 -38
- package/charts/flame/flame-chart/utils/iterate-slots.d.ts +5 -0
- package/charts/flame/flame-chart/utils/iterate-slots.js +37 -0
- package/charts/flame/flame-graph/FlameGraph.d.ts +15 -1
- package/charts/flame/flame-graph/FlameGraph.js +45 -39
- package/charts/flame/flame-graph/utils/iterate-slots.d.ts +5 -0
- package/charts/flame/flame-graph/utils/iterate-slots.js +40 -0
- package/charts/flame/shared/components/tooltip/FlameTooltip.d.ts +19 -0
- package/charts/flame/shared/components/tooltip/FlameTooltip.js +64 -0
- package/charts/flame/shared/constants.d.ts +2 -0
- package/charts/flame/shared/constants.js +4 -0
- package/charts/flame/shared/slots/Tooltip.d.ts +17 -0
- package/charts/flame/shared/slots/Tooltip.js +31 -0
- package/charts/flame/shared/types/flame-internal.d.ts +15 -0
- package/charts/flame/shared/types/flame-internal.js +15 -0
- 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.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/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.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/HistogramChartInternal.js +11 -1
- package/charts/histogram/HistogramChartRoot.js +17 -3
- 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/histogram/types/histogram-props.d.ts +2 -1
- package/charts/honeycomb/HoneycombChart.css +1 -1
- package/charts/honeycomb/HoneycombChart.js +9 -2
- package/charts/honeycomb/HoneycombChart.sty.js +1 -1
- package/charts/honeycomb/components/HiveOverlay.css +1 -1
- 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/types/honeycomb.d.ts +2 -1
- package/charts/index.d.ts +6 -5
- package/charts/meter-bar/shared/components/meter-bar-layout/MeterBarLayout.css +16 -16
- package/charts/meter-bar/shared/components/meter-bar-layout/MeterBarLayout.sty.js +11 -11
- 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/MeterBarChartThresholdIntervals/MeterBarChartThresholdIntervals.css +1 -1
- package/charts/meter-bar/single-meter-bar/components/MeterBarChartThresholdIntervals/MeterBarChartThresholdIntervals.sty.js +1 -1
- 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.sty.js +1 -1
- package/charts/pie/components/PieChartPlot/PieChartPlot.css +1 -1
- package/charts/pie/components/PieChartPlot/PieChartPlot.sty.js +1 -1
- package/charts/sankey-chart/SankeyChart.css +11 -1
- package/charts/sankey-chart/SankeyChart.css.d.ts +2 -0
- package/charts/sankey-chart/SankeyChart.sty.js +6 -2
- package/charts/sankey-chart/SankeyChartRoot.js +2 -0
- package/charts/sankey-chart/components/SankeyCanvas.css +2 -3
- package/charts/sankey-chart/components/SankeyCanvas.d.ts +9 -1
- package/charts/sankey-chart/components/SankeyCanvas.js +9 -8
- package/charts/sankey-chart/components/SankeyCanvas.sty.js +1 -1
- package/charts/sankey-chart/components/SankeyGraphArea.js +69 -1
- package/charts/sankey-chart/components/SankeyLabelOverlay.css +74 -0
- package/charts/sankey-chart/components/SankeyLabelOverlay.css.d.ts +9 -0
- package/charts/sankey-chart/components/SankeyLabelOverlay.d.ts +13 -0
- package/charts/sankey-chart/components/SankeyLabelOverlay.js +180 -0
- package/charts/sankey-chart/components/SankeyLabelOverlay.sty.js +38 -0
- package/charts/sankey-chart/components/SankeyOverlay.css +4 -0
- package/charts/sankey-chart/components/SankeyOverlay.css.d.ts +2 -0
- package/charts/sankey-chart/components/SankeyOverlay.d.ts +6 -0
- package/charts/sankey-chart/components/SankeyOverlay.js +58 -0
- package/{editors/dql-editor/dql/SuggestionPart.sty.js → charts/sankey-chart/components/SankeyOverlay.sty.js} +6 -6
- package/charts/sankey-chart/constants.d.ts +10 -8
- package/charts/sankey-chart/constants.js +18 -6
- package/charts/sankey-chart/context/SankeyColorPalette.context.d.ts +3 -0
- package/charts/sankey-chart/context/SankeyColorPalette.context.js +25 -0
- package/charts/sankey-chart/context/SankeyHoverStore.context.d.ts +4 -0
- package/charts/sankey-chart/context/SankeyHoverStore.context.js +29 -0
- package/charts/sankey-chart/context/SankeyLayout.context.d.ts +3 -0
- package/charts/sankey-chart/context/SankeyLayout.context.js +28 -0
- package/charts/sankey-chart/hooks/draw-links.d.ts +3 -0
- package/charts/sankey-chart/hooks/draw-links.js +68 -0
- package/charts/sankey-chart/hooks/draw-nodes.d.ts +3 -0
- package/charts/sankey-chart/hooks/draw-nodes.js +40 -0
- package/charts/sankey-chart/hooks/use-draw-sankey.d.ts +1 -1
- package/charts/sankey-chart/hooks/use-draw-sankey.js +10 -22
- package/charts/sankey-chart/hooks/use-generate-sankey-layout.d.ts +10 -0
- package/charts/sankey-chart/hooks/use-generate-sankey-layout.js +40 -0
- package/charts/sankey-chart/hooks/use-node-colors.d.ts +10 -0
- package/charts/sankey-chart/hooks/use-node-colors.js +59 -0
- package/charts/sankey-chart/hooks/use-sankey-layout.d.ts +1 -1
- package/charts/sankey-chart/hooks/use-sankey-layout.js +2 -19
- package/charts/sankey-chart/hooks/use-sankey-overlay-events.d.ts +9 -0
- package/charts/sankey-chart/hooks/use-sankey-overlay-events.js +94 -0
- package/charts/sankey-chart/providers/SankeyConfigProvider.d.ts +3 -1
- package/charts/sankey-chart/providers/SankeyConfigProvider.js +3 -1
- package/charts/sankey-chart/providers/SankeyHoverStoreProvider.d.ts +6 -0
- package/charts/sankey-chart/providers/SankeyHoverStoreProvider.js +33 -0
- package/charts/sankey-chart/providers/SankeyLayoutProvider.d.ts +11 -0
- package/charts/sankey-chart/providers/SankeyLayoutProvider.js +34 -0
- package/charts/sankey-chart/store/selectors.d.ts +10 -0
- package/charts/sankey-chart/store/selectors.js +27 -0
- package/charts/sankey-chart/store/store.d.ts +4 -0
- package/charts/sankey-chart/store/store.js +44 -0
- package/charts/sankey-chart/types/sankey-hover.d.ts +28 -0
- package/charts/sankey-chart/types/sankey-hover.js +15 -0
- package/charts/sankey-chart/types/sankey-props.d.ts +6 -0
- package/charts/sankey-chart/utils/build-link-gradient.d.ts +7 -0
- package/charts/sankey-chart/utils/build-link-gradient.js +34 -0
- package/charts/sankey-chart/utils/find-hovered-shape.d.ts +14 -0
- package/charts/sankey-chart/utils/find-hovered-shape.js +93 -0
- package/charts/sankey-chart/utils/get-related-sankey-flow.d.ts +20 -0
- package/charts/sankey-chart/utils/get-related-sankey-flow.js +52 -0
- package/charts/sankey-chart/utils/is-resolved-sankey-node.d.ts +9 -0
- package/charts/sankey-chart/utils/is-resolved-sankey-node.js +23 -0
- package/charts/single-value/SingleValue.css +1 -1
- package/charts/single-value/SingleValue.js +4 -0
- package/charts/single-value/SingleValue.sty.js +1 -1
- package/charts/single-value-grid/SingleValueGrid.css +2 -2
- package/charts/single-value-grid/SingleValueGrid.js +4 -0
- 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/single-value-grid/types/single-value-grid.d.ts +4 -7
- package/charts/timeseries/TimeseriesChartInternal.js +11 -1
- package/charts/timeseries/TimeseriesChartRoot.js +17 -3
- 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/timeseries/types/timeseries-props.d.ts +2 -1
- package/charts/top-list/TopList.css +1 -1
- package/charts/top-list/TopList.js +28 -3
- package/charts/top-list/TopList.sty.js +1 -1
- package/charts/top-list/constants.d.ts +2 -0
- package/charts/top-list/constants.js +2 -0
- package/charts/top-list/types/top-list.d.ts +2 -1
- package/charts/tree-map/components/TreeMapOverlay/TreeMapOverlay.css +1 -1
- package/charts/tree-map/components/TreeMapOverlay/TreeMapOverlay.sty.js +1 -1
- package/charts/tree-map/providers/TreeMapInternalDataProvider.js +2 -3
- package/charts/xy-chart/XYChart.js +12 -2
- package/charts/xy-chart/XYChartRoot.js +20 -5
- 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/displays/BarDisplay/BarLabelOverlay.css +2 -7
- package/charts/xy-chart/components/displays/BarDisplay/BarLabelOverlay.css.d.ts +0 -1
- package/charts/xy-chart/components/displays/BarDisplay/BarLabelOverlay.sty.js +2 -4
- package/charts/xy-chart/components/displays/BarDisplay/HorizontalBarLabel.d.ts +5 -12
- package/charts/xy-chart/components/displays/BarDisplay/HorizontalBarLabel.js +16 -22
- package/charts/xy-chart/components/displays/BarDisplay/VerticalBarLabel.d.ts +2 -6
- package/charts/xy-chart/components/displays/BarDisplay/VerticalBarLabel.js +17 -20
- package/charts/xy-chart/components/displays/RectLabelOverlay.css +3 -3
- package/charts/xy-chart/components/displays/RectLabelOverlay.sty.js +3 -3
- package/charts/xy-chart/components/displays/area-accessors.js +6 -4
- package/charts/xy-chart/components/legend/XYLegend/XYLegend.js +7 -4
- 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/XYChartOverlay.js +9 -1
- package/charts/xy-chart/components/overlay/explore/HighlightedRectangleCanvas.js +8 -2
- package/charts/xy-chart/components/overlay/explore/XYChartCrosshair.css +1 -1
- package/charts/xy-chart/components/overlay/explore/XYChartCrosshair.js +10 -4
- 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/hooks/useOverlayEvents.d.ts +1 -1
- package/charts/xy-chart/components/overlay/hooks/useOverlayEvents.js +15 -0
- package/charts/xy-chart/components/thresholds/XYChartThresholdArea.js +67 -5
- package/charts/xy-chart/components/thresholds/XYChartThresholdIndicators.css +1 -1
- package/charts/xy-chart/components/thresholds/XYChartThresholdIndicators.js +6 -3
- package/charts/xy-chart/components/thresholds/XYChartThresholdIndicators.sty.js +1 -1
- package/charts/xy-chart/components/thresholds/builder.js +50 -3
- package/charts/xy-chart/components/thresholds/get-border-threshold.d.ts +3 -1
- package/charts/xy-chart/components/thresholds/get-border-threshold.js +6 -4
- package/charts/xy-chart/components/thresholds/get-x-value.d.ts +12 -0
- package/charts/xy-chart/components/thresholds/get-x-value.js +30 -0
- package/charts/xy-chart/components/thresholds/type-guards.d.ts +25 -1
- package/charts/xy-chart/components/thresholds/type-guards.js +13 -1
- package/charts/xy-chart/components/thresholds/utils.d.ts +18 -5
- package/charts/xy-chart/components/thresholds/utils.js +73 -9
- package/charts/xy-chart/components/toolbar/ExploreButton.js +5 -1
- package/charts/xy-chart/components/tooltip/SharedXYChartTooltip/SharedXYChartTooltip.js +6 -1
- 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/context/XYChartThresholds.context.js +7 -1
- package/charts/xy-chart/context/XYChartToolbar.context.d.ts +1 -1
- package/charts/xy-chart/hooks/useToolbar.d.ts +1 -1
- package/charts/xy-chart/hooks/useXYChartCrosshairHidden.d.ts +5 -0
- package/charts/xy-chart/hooks/useXYChartCrosshairHidden.js +34 -0
- package/charts/xy-chart/layout/XYChartLayout.css +2 -2
- package/charts/xy-chart/layout/XYChartLayout.sty.js +2 -2
- package/charts/xy-chart/processing-strategies/strategies/area-series.js +1 -1
- package/charts/xy-chart/processing-strategies/strategies/stackable-series.js +2 -2
- package/charts/xy-chart/processing-strategies/utils/cast-data/cast-data-types.d.ts +2 -0
- package/charts/xy-chart/processing-strategies/utils/cast-data/cast-data-types.js +16 -1
- package/charts/xy-chart/slots/Select.d.ts +6 -0
- package/charts/xy-chart/types/xy-chart-internals.d.ts +33 -4
- package/charts/xy-chart/types/xy-chart-props.d.ts +34 -10
- package/charts/xy-chart/utils/grid-templates.d.ts +2 -0
- package/charts/xy-chart/utils/grid-templates.js +6 -2
- package/charts/xy-chart/utils/query-get-closest-point.d.ts +1 -1
- package/charts/xy-chart/utils/query-get-closest-point.js +30 -8
- package/charts/xy-chart/utils/query-shared.js +59 -24
- package/charts/xy-chart/utils/query-single.js +5 -1
- package/charts/xy-chart/utils/xy-chart-configuration.d.ts +2 -1
- package/charts/xy-chart/utils/xy-chart-configuration.js +1 -1
- package/charts/xy-chart-adoption/categorical-bar/CategoricalBarToXY.js +19 -4
- package/charts/xy-chart-adoption/categorical-bar/constants.d.ts +2 -0
- package/charts/xy-chart-adoption/categorical-bar/constants.js +23 -0
- package/charts/xy-chart-adoption/categorical-bar/utils/map-axes-to-xy.d.ts +3 -1
- package/charts/xy-chart-adoption/categorical-bar/utils/map-axes-to-xy.js +3 -2
- package/charts/xy-chart-adoption/histogram/HistogramToXY.js +12 -3
- package/charts/xy-chart-adoption/histogram/constants.d.ts +2 -0
- package/charts/xy-chart-adoption/histogram/constants.js +23 -0
- package/charts/xy-chart-adoption/histogram/transformer-thresholds-to-xy.d.ts +2 -2
- package/charts/xy-chart-adoption/timeseries/TimeseriesToXY.d.ts +1 -1
- package/charts/xy-chart-adoption/timeseries/TimeseriesToXY.js +12 -3
- package/charts/xy-chart-adoption/timeseries/constants.d.ts +1 -0
- package/charts/xy-chart-adoption/timeseries/constants.js +2 -0
- package/charts/xy-chart-adoption/timeseries/types/timeseries.d.ts +2 -1
- package/content/accordion/Accordion.css +14 -14
- package/content/accordion/Accordion.d.ts +3 -1
- package/content/accordion/Accordion.js +8 -1
- package/content/accordion/Accordion.sty.js +8 -8
- package/content/accordion/AccordionSection.js +7 -4
- package/content/accordion/AccordionSectionContent.js +2 -2
- package/content/accordion/AccordionSectionLabel.d.ts +12 -2
- package/content/accordion/AccordionSectionLabel.js +3 -0
- package/content/accordion/contexts/AccordionSectionContext.d.ts +1 -0
- package/content/accordion/contexts/AccordionSectionContext.js +1 -0
- 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 +2 -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.sty.js +1 -1
- package/content/chip-group/Control.css +4 -4
- package/content/chip-group/Control.sty.js +1 -1
- package/content/code-snippet/CodeHighlight.css +25 -25
- package/content/code-snippet/CodeHighlight.sty.js +6 -6
- package/content/code-snippet/CodeSnippet.css +18 -18
- package/content/code-snippet/CodeSnippet.js +17 -3
- package/content/code-snippet/CodeSnippet.sty.js +4 -4
- package/content/code-snippet/prism-dql-language.js +1 -1
- package/content/empty-state/EmptyState.css +28 -28
- package/content/empty-state/EmptyState.js +1 -1
- package/content/empty-state/EmptyState.sty.js +7 -7
- 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.sty.js +3 -3
- package/content/health-indicator/styles.css +23 -23
- package/content/health-indicator/styles.sty.js +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/message-container/MessageContainer.js +1 -0
- 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/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 +2 -2
- package/core/components/app-root/AppRoot.sty.js +1 -1
- package/core/components/focus-scope/FocusScope.js +46 -0
- package/core/components/visually-hidden/VisuallyHidden.css +1 -1
- package/core/components/visually-hidden/VisuallyHidden.sty.js +1 -1
- 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/validation.js +11 -1
- package/core/utils/colorUtils.css +60 -60
- package/core/utils/colorUtils.sty.js +2 -2
- package/editors/base-code-editor/BaseCodeEditor.css +140 -142
- package/editors/base-code-editor/BaseCodeEditor.css.d.ts +2 -6
- package/editors/base-code-editor/BaseCodeEditor.js +3 -2
- package/editors/base-code-editor/BaseCodeEditor.sty.js +2 -2
- package/editors/base-code-editor/configuration/configure-active-line.d.ts +21 -0
- package/editors/base-code-editor/configuration/configure-active-line.js +76 -0
- package/editors/base-code-editor/configuration/configure-critical-gutter-lines.d.ts +26 -0
- package/editors/base-code-editor/configuration/configure-critical-gutter-lines.js +64 -0
- package/editors/base-code-editor/configuration/configure-lint-gutter.d.ts +4 -2
- package/editors/base-code-editor/configuration/configure-lint-gutter.js +6 -3
- package/editors/base-code-editor/configuration/getDefaultConfigurations.js +6 -6
- package/editors/base-code-editor/utils/format-diagnostics-summary.js +1 -1
- package/editors/dql-editor/DQLEditor.d.ts +6 -0
- package/editors/dql-editor/DQLEditor.js +2 -0
- package/editors/dql-editor/actions-menu/ActionsMenu.css +10 -10
- package/editors/dql-editor/actions-menu/ActionsMenu.sty.js +5 -5
- package/{esm/editors/dql-editor/dql → editors/dql-editor/autocomplete}/SuggestionsInfoSection.css +7 -7
- package/editors/dql-editor/autocomplete/SuggestionsInfoSection.d.ts +5 -0
- package/editors/dql-editor/{dql → autocomplete}/SuggestionsInfoSection.sty.js +3 -3
- package/editors/dql-editor/{dql → autocomplete}/messages.d.ts +10 -0
- package/editors/dql-editor/{dql → autocomplete}/messages.js +10 -0
- package/editors/dql-editor/{dql → autocomplete}/open-autocomplete.js +1 -1
- package/editors/dql-editor/autocomplete/suggestion-autocompletions.d.ts +24 -0
- package/editors/dql-editor/{dql → autocomplete}/suggestion-autocompletions.js +32 -4
- package/editors/dql-editor/autocomplete/suggestion-popup/DocumentationLink.d.ts +15 -0
- package/editors/dql-editor/{dql → autocomplete/suggestion-popup}/DocumentationLink.js +15 -11
- package/editors/dql-editor/autocomplete/suggestion-popup/SuggestionPart.d.ts +17 -0
- package/editors/dql-editor/autocomplete/suggestion-popup/SuggestionPart.js +55 -0
- package/editors/dql-editor/{dql → autocomplete}/suggestions-info-section-extension.js +14 -1
- package/editors/dql-editor/dql/dql-language.js +3 -3
- package/esm/buttons/button/Button.css +15 -15
- 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.js +11 -1
- package/esm/buttons/intent-button/IntentButton.js.map +2 -2
- package/esm/buttons/intent-button/IntentButton.sty.js +1 -1
- package/esm/buttons/intent-button/IntentButton.sty.js.map +1 -1
- 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/charts/annotations-chart/AnnotationsChart.js +34 -20
- package/esm/charts/annotations-chart/AnnotationsChart.js.map +2 -2
- package/esm/charts/categorical-bar/CategoricalBarChartInternal.js +11 -1
- package/esm/charts/categorical-bar/CategoricalBarChartInternal.js.map +2 -2
- package/esm/charts/categorical-bar/CategoricalBarChartRoot.js +18 -3
- package/esm/charts/categorical-bar/CategoricalBarChartRoot.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/types/categorical-bar-chart.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/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/components/tooltip/AnnotationsOverlayTooltip.js +15 -0
- package/esm/charts/core/components/annotations/components/tooltip/AnnotationsOverlayTooltip.js.map +2 -2
- package/esm/charts/core/components/annotations/hooks/useMarkerEventHandlers.js +5 -3
- package/esm/charts/core/components/annotations/hooks/useMarkerEventHandlers.js.map +2 -2
- package/esm/charts/core/components/annotations/hooks/useOverlayEvents.js +18 -1
- package/esm/charts/core/components/annotations/hooks/useOverlayEvents.js.map +2 -2
- package/esm/charts/core/components/axes/Axis.css +1 -1
- 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/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/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-layout/ChartLayout.js +9 -1
- package/esm/charts/core/components/chart-layout/ChartLayout.js.map +2 -2
- 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-layout/utils/calculate-graph-size.js +1 -1
- package/esm/charts/core/components/chart-layout/utils/calculate-graph-size.js.map +2 -2
- 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/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/interactions-overlay/InteractionsOverlay.css +5 -5
- package/esm/charts/core/components/interactions-overlay/InteractionsOverlay.js +43 -5
- package/esm/charts/core/components/interactions-overlay/InteractionsOverlay.js.map +2 -2
- 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/interactions-overlay/types.js.map +2 -2
- package/esm/charts/core/components/legend/categorical/ChartLegend.css +1 -1
- package/esm/charts/core/components/legend/categorical/ChartLegend.js +51 -24
- package/esm/charts/core/components/legend/categorical/ChartLegend.js.map +2 -2
- 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.js +2 -1
- package/esm/charts/core/components/legend/categorical/components/ChartLegendIcon/ChartLegendIcon.js.map +2 -2
- 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.js +30 -3
- package/esm/charts/core/components/legend/categorical/components/ChartLegendItem/ChartLegendItem.js.map +2 -2
- 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.js +2 -0
- package/esm/charts/core/components/legend/categorical/components/ChartLegendSeriesActions/ChartLegendSeriesActions.js.map +2 -2
- 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/categorical/hooks/useLegendItemActions.js +14 -3
- package/esm/charts/core/components/legend/categorical/hooks/useLegendItemActions.js.map +2 -2
- package/esm/charts/core/components/legend/categorical/messages.js +25 -0
- package/esm/charts/core/components/legend/categorical/messages.js.map +2 -2
- 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/legend/shared/context/Legend.context.js +2 -1
- package/esm/charts/core/components/legend/shared/context/Legend.context.js.map +2 -2
- 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/OverlayTooltip.js +9 -1
- package/esm/charts/core/components/overlay-tooltip/OverlayTooltip.js.map +2 -2
- package/esm/charts/core/components/overlay-tooltip/components/DynamicTooltip.js +2 -1
- package/esm/charts/core/components/overlay-tooltip/components/DynamicTooltip.js.map +2 -2
- package/esm/charts/core/components/overlay-tooltip/components/DynamicTooltipRenderer.js +17 -1
- package/esm/charts/core/components/overlay-tooltip/components/DynamicTooltipRenderer.js.map +2 -2
- package/esm/charts/core/components/overlay-tooltip/components/LegacyTemplateTooltip.js +2 -1
- package/esm/charts/core/components/overlay-tooltip/components/LegacyTemplateTooltip.js.map +2 -2
- package/esm/charts/core/components/overlay-tooltip/components/TooltipPortal.js +9 -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/contexts/PinCoordinationContext.js +24 -0
- package/esm/charts/core/components/overlay-tooltip/contexts/PinCoordinationContext.js.map +7 -0
- package/esm/charts/core/components/overlay-tooltip/hooks/useCanvasAriaDescribedBy.js +36 -0
- package/esm/charts/core/components/overlay-tooltip/hooks/useCanvasAriaDescribedBy.js.map +7 -0
- package/esm/charts/core/components/overlay-tooltip/pinCoordinationSelectors.js +12 -0
- package/esm/charts/core/components/overlay-tooltip/pinCoordinationSelectors.js.map +7 -0
- package/esm/charts/core/components/overlay-tooltip/tooltip.css +52 -59
- 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/usePinCoordinationActions.js +22 -0
- package/esm/charts/core/components/overlay-tooltip/usePinCoordinationActions.js.map +7 -0
- package/esm/charts/core/components/overlays/ChartOverlaysBorder.css +6 -6
- package/esm/charts/core/components/overlays/ChartOverlaysBorder.sty.js +6 -6
- 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/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.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 +9 -2
- 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/text-ellipsis/chars-font-width-map.js +159 -0
- package/esm/charts/core/components/text-ellipsis/chars-font-width-map.js.map +2 -2
- package/esm/charts/core/components/threshold-bar/styles.css +17 -9
- package/esm/charts/core/components/threshold-bar/styles.sty.js +2 -2
- package/esm/charts/core/components/threshold-bar/styles.sty.js.map +2 -2
- package/esm/charts/core/components/threshold-bar/types.js +5 -1
- package/esm/charts/core/components/threshold-bar/types.js.map +2 -2
- package/esm/charts/core/components/toolbar/ChartToolbarRenderer.css +16 -16
- package/esm/charts/core/components/toolbar/ChartToolbarRenderer.js +29 -2
- 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.js +4 -1
- package/esm/charts/core/components/toolbar/components/ToolbarMenu.js.map +2 -2
- 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/styles.css +1 -1
- package/esm/charts/core/components/toolbar/styles.sty.js +1 -1
- package/esm/charts/core/components/toolbar/styles.sty.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/context/AriaLabelingContext.js +8 -0
- package/esm/charts/core/context/AriaLabelingContext.js.map +7 -0
- package/esm/charts/core/slots/Tooltip.js.map +2 -2
- 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/flame/flame-chart/FlameChart.js +45 -39
- package/esm/charts/flame/flame-chart/FlameChart.js.map +2 -2
- package/esm/charts/flame/flame-chart/utils/iterate-slots.js +19 -0
- package/esm/charts/flame/flame-chart/utils/iterate-slots.js.map +7 -0
- package/esm/charts/flame/flame-graph/FlameGraph.js +47 -40
- package/esm/charts/flame/flame-graph/FlameGraph.js.map +2 -2
- package/esm/charts/flame/flame-graph/utils/iterate-slots.js +22 -0
- package/esm/charts/flame/flame-graph/utils/iterate-slots.js.map +7 -0
- package/esm/charts/flame/shared/components/tooltip/FlameTooltip.js +46 -0
- package/esm/charts/flame/shared/components/tooltip/FlameTooltip.js.map +7 -0
- package/esm/charts/flame/shared/constants.js +4 -0
- package/esm/charts/flame/shared/constants.js.map +2 -2
- package/esm/charts/flame/shared/slots/Tooltip.js +13 -0
- package/esm/charts/flame/shared/slots/Tooltip.js.map +7 -0
- package/esm/charts/flame/shared/types/flame-internal.js +1 -0
- package/esm/charts/flame/shared/types/flame-internal.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.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/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.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/HistogramChartInternal.js +11 -1
- package/esm/charts/histogram/HistogramChartInternal.js.map +2 -2
- package/esm/charts/histogram/HistogramChartRoot.js +21 -4
- package/esm/charts/histogram/HistogramChartRoot.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 +9 -2
- 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.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/index.js.map +2 -2
- package/esm/charts/meter-bar/shared/components/meter-bar-layout/MeterBarLayout.css +16 -16
- package/esm/charts/meter-bar/shared/components/meter-bar-layout/MeterBarLayout.sty.js +11 -11
- 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/MeterBarChartThresholdIntervals/MeterBarChartThresholdIntervals.css +1 -1
- package/esm/charts/meter-bar/single-meter-bar/components/MeterBarChartThresholdIntervals/MeterBarChartThresholdIntervals.sty.js +1 -1
- package/esm/charts/meter-bar/single-meter-bar/components/MeterBarChartThresholdIntervals/MeterBarChartThresholdIntervals.sty.js.map +1 -1
- 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.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.sty.js +1 -1
- package/esm/charts/pie/components/PieChartPlot/PieChartPlot.sty.js.map +1 -1
- package/esm/charts/sankey-chart/SankeyChart.css +11 -1
- package/esm/charts/sankey-chart/SankeyChart.sty.js +6 -2
- package/esm/charts/sankey-chart/SankeyChart.sty.js.map +2 -2
- package/esm/charts/sankey-chart/SankeyChartRoot.js +2 -0
- package/esm/charts/sankey-chart/SankeyChartRoot.js.map +2 -2
- package/esm/charts/sankey-chart/components/SankeyCanvas.css +2 -3
- package/esm/charts/sankey-chart/components/SankeyCanvas.js +9 -8
- package/esm/charts/sankey-chart/components/SankeyCanvas.js.map +2 -2
- package/esm/charts/sankey-chart/components/SankeyCanvas.sty.js +1 -1
- package/esm/charts/sankey-chart/components/SankeyCanvas.sty.js.map +1 -1
- package/esm/charts/sankey-chart/components/SankeyGraphArea.js +75 -3
- package/esm/charts/sankey-chart/components/SankeyGraphArea.js.map +2 -2
- package/esm/charts/sankey-chart/components/SankeyLabelOverlay.css +74 -0
- package/esm/charts/sankey-chart/components/SankeyLabelOverlay.js +167 -0
- package/esm/charts/sankey-chart/components/SankeyLabelOverlay.js.map +7 -0
- package/esm/charts/sankey-chart/components/SankeyLabelOverlay.sty.js +20 -0
- package/esm/charts/sankey-chart/components/SankeyLabelOverlay.sty.js.map +7 -0
- package/esm/charts/sankey-chart/components/SankeyOverlay.css +4 -0
- package/esm/charts/sankey-chart/components/SankeyOverlay.js +40 -0
- package/esm/charts/sankey-chart/components/SankeyOverlay.js.map +7 -0
- package/esm/charts/sankey-chart/components/SankeyOverlay.sty.js +6 -0
- package/esm/charts/sankey-chart/components/SankeyOverlay.sty.js.map +7 -0
- package/esm/charts/sankey-chart/constants.js +18 -6
- package/esm/charts/sankey-chart/constants.js.map +2 -2
- package/esm/charts/sankey-chart/context/SankeyColorPalette.context.js +7 -0
- package/esm/charts/sankey-chart/context/SankeyColorPalette.context.js.map +7 -0
- package/esm/charts/sankey-chart/context/SankeyHoverStore.context.js +11 -0
- package/esm/charts/sankey-chart/context/SankeyHoverStore.context.js.map +7 -0
- package/esm/charts/sankey-chart/context/SankeyLayout.context.js +10 -0
- package/esm/charts/sankey-chart/context/SankeyLayout.context.js.map +7 -0
- package/esm/charts/sankey-chart/hooks/draw-links.js +50 -0
- package/esm/charts/sankey-chart/hooks/draw-links.js.map +7 -0
- package/esm/charts/sankey-chart/hooks/draw-nodes.js +22 -0
- package/esm/charts/sankey-chart/hooks/draw-nodes.js.map +7 -0
- package/esm/charts/sankey-chart/hooks/use-draw-sankey.js +10 -22
- package/esm/charts/sankey-chart/hooks/use-draw-sankey.js.map +2 -2
- package/esm/charts/sankey-chart/hooks/use-generate-sankey-layout.js +22 -0
- package/esm/charts/sankey-chart/hooks/use-generate-sankey-layout.js.map +7 -0
- package/esm/charts/sankey-chart/hooks/use-node-colors.js +41 -0
- package/esm/charts/sankey-chart/hooks/use-node-colors.js.map +7 -0
- package/esm/charts/sankey-chart/hooks/use-sankey-layout.js +3 -20
- package/esm/charts/sankey-chart/hooks/use-sankey-layout.js.map +2 -2
- package/esm/charts/sankey-chart/hooks/use-sankey-overlay-events.js +81 -0
- package/esm/charts/sankey-chart/hooks/use-sankey-overlay-events.js.map +7 -0
- package/esm/charts/sankey-chart/providers/SankeyConfigProvider.js +3 -1
- package/esm/charts/sankey-chart/providers/SankeyConfigProvider.js.map +2 -2
- package/esm/charts/sankey-chart/providers/SankeyHoverStoreProvider.js +15 -0
- package/esm/charts/sankey-chart/providers/SankeyHoverStoreProvider.js.map +7 -0
- package/esm/charts/sankey-chart/providers/SankeyLayoutProvider.js +16 -0
- package/esm/charts/sankey-chart/providers/SankeyLayoutProvider.js.map +7 -0
- package/esm/charts/sankey-chart/store/selectors.js +9 -0
- package/esm/charts/sankey-chart/store/selectors.js.map +7 -0
- package/esm/charts/sankey-chart/store/store.js +26 -0
- package/esm/charts/sankey-chart/store/store.js.map +7 -0
- package/esm/charts/sankey-chart/types/sankey-hover.js +1 -0
- package/esm/charts/sankey-chart/types/sankey-hover.js.map +7 -0
- package/esm/charts/sankey-chart/utils/build-link-gradient.js +16 -0
- package/esm/charts/sankey-chart/utils/build-link-gradient.js.map +7 -0
- package/esm/charts/sankey-chart/utils/find-hovered-shape.js +75 -0
- package/esm/charts/sankey-chart/utils/find-hovered-shape.js.map +7 -0
- package/esm/charts/sankey-chart/utils/get-related-sankey-flow.js +34 -0
- package/esm/charts/sankey-chart/utils/get-related-sankey-flow.js.map +7 -0
- package/esm/charts/sankey-chart/utils/is-resolved-sankey-node.js +5 -0
- package/esm/charts/sankey-chart/utils/is-resolved-sankey-node.js.map +7 -0
- package/esm/charts/single-value/SingleValue.css +1 -1
- package/esm/charts/single-value/SingleValue.js +4 -0
- package/esm/charts/single-value/SingleValue.js.map +2 -2
- 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.js +4 -0
- package/esm/charts/single-value-grid/SingleValueGrid.js.map +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/TimeseriesChartInternal.js +11 -1
- package/esm/charts/timeseries/TimeseriesChartInternal.js.map +2 -2
- package/esm/charts/timeseries/TimeseriesChartRoot.js +21 -4
- package/esm/charts/timeseries/TimeseriesChartRoot.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 +29 -3
- 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 -0
- package/esm/charts/top-list/constants.js.map +2 -2
- package/esm/charts/tree-map/components/TreeMapOverlay/TreeMapOverlay.css +1 -1
- 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/providers/TreeMapInternalDataProvider.js +1 -2
- package/esm/charts/tree-map/providers/TreeMapInternalDataProvider.js.map +2 -2
- package/esm/charts/xy-chart/XYChart.js +12 -2
- package/esm/charts/xy-chart/XYChart.js.map +2 -2
- package/esm/charts/xy-chart/XYChartRoot.js +21 -6
- 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/displays/BarDisplay/BarLabelOverlay.css +2 -7
- package/esm/charts/xy-chart/components/displays/BarDisplay/BarLabelOverlay.sty.js +2 -4
- package/esm/charts/xy-chart/components/displays/BarDisplay/BarLabelOverlay.sty.js.map +2 -2
- package/esm/charts/xy-chart/components/displays/BarDisplay/HorizontalBarLabel.js +18 -24
- package/esm/charts/xy-chart/components/displays/BarDisplay/HorizontalBarLabel.js.map +2 -2
- package/esm/charts/xy-chart/components/displays/BarDisplay/VerticalBarLabel.js +19 -22
- package/esm/charts/xy-chart/components/displays/BarDisplay/VerticalBarLabel.js.map +2 -2
- package/esm/charts/xy-chart/components/displays/RectLabelOverlay.css +3 -3
- package/esm/charts/xy-chart/components/displays/RectLabelOverlay.sty.js +3 -3
- package/esm/charts/xy-chart/components/displays/RectLabelOverlay.sty.js.map +1 -1
- package/esm/charts/xy-chart/components/displays/area-accessors.js +6 -4
- package/esm/charts/xy-chart/components/displays/area-accessors.js.map +2 -2
- package/esm/charts/xy-chart/components/legend/XYLegend/XYLegend.js +7 -4
- package/esm/charts/xy-chart/components/legend/XYLegend/XYLegend.js.map +2 -2
- 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/XYChartOverlay.js +10 -2
- package/esm/charts/xy-chart/components/overlay/XYChartOverlay.js.map +2 -2
- package/esm/charts/xy-chart/components/overlay/explore/HighlightedRectangleCanvas.js +8 -2
- package/esm/charts/xy-chart/components/overlay/explore/HighlightedRectangleCanvas.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.js +10 -4
- package/esm/charts/xy-chart/components/overlay/explore/XYChartCrosshair.js.map +2 -2
- 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/hooks/useOverlayEvents.js +15 -0
- package/esm/charts/xy-chart/components/overlay/hooks/useOverlayEvents.js.map +2 -2
- package/esm/charts/xy-chart/components/thresholds/XYChartThresholdArea.js +69 -7
- package/esm/charts/xy-chart/components/thresholds/XYChartThresholdArea.js.map +2 -2
- package/esm/charts/xy-chart/components/thresholds/XYChartThresholdIndicators.css +1 -1
- package/esm/charts/xy-chart/components/thresholds/XYChartThresholdIndicators.js +6 -3
- package/esm/charts/xy-chart/components/thresholds/XYChartThresholdIndicators.js.map +2 -2
- 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/thresholds/builder.js +54 -6
- package/esm/charts/xy-chart/components/thresholds/builder.js.map +2 -2
- package/esm/charts/xy-chart/components/thresholds/get-border-threshold.js +9 -5
- package/esm/charts/xy-chart/components/thresholds/get-border-threshold.js.map +2 -2
- package/esm/charts/xy-chart/components/thresholds/get-x-value.js +12 -0
- package/esm/charts/xy-chart/components/thresholds/get-x-value.js.map +7 -0
- package/esm/charts/xy-chart/components/thresholds/type-guards.js +13 -1
- package/esm/charts/xy-chart/components/thresholds/type-guards.js.map +2 -2
- package/esm/charts/xy-chart/components/thresholds/utils.js +77 -10
- package/esm/charts/xy-chart/components/thresholds/utils.js.map +2 -2
- package/esm/charts/xy-chart/components/toolbar/ExploreButton.js +5 -1
- package/esm/charts/xy-chart/components/toolbar/ExploreButton.js.map +2 -2
- package/esm/charts/xy-chart/components/tooltip/SharedXYChartTooltip/SharedXYChartTooltip.js +6 -1
- package/esm/charts/xy-chart/components/tooltip/SharedXYChartTooltip/SharedXYChartTooltip.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/context/XYChartThresholds.context.js +7 -1
- package/esm/charts/xy-chart/context/XYChartThresholds.context.js.map +2 -2
- package/esm/charts/xy-chart/context/XYChartToolbar.context.js.map +1 -1
- package/esm/charts/xy-chart/hooks/useXYChartCrosshairHidden.js +16 -0
- package/esm/charts/xy-chart/hooks/useXYChartCrosshairHidden.js.map +7 -0
- 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/processing-strategies/strategies/area-series.js +1 -1
- package/esm/charts/xy-chart/processing-strategies/strategies/area-series.js.map +2 -2
- package/esm/charts/xy-chart/processing-strategies/strategies/stackable-series.js +2 -2
- package/esm/charts/xy-chart/processing-strategies/strategies/stackable-series.js.map +2 -2
- package/esm/charts/xy-chart/processing-strategies/utils/cast-data/cast-data-types.js +16 -1
- package/esm/charts/xy-chart/processing-strategies/utils/cast-data/cast-data-types.js.map +2 -2
- package/esm/charts/xy-chart/slots/Select.js.map +2 -2
- package/esm/charts/xy-chart/types/xy-chart-internals.js.map +2 -2
- package/esm/charts/xy-chart/utils/grid-templates.js +6 -2
- package/esm/charts/xy-chart/utils/grid-templates.js.map +2 -2
- package/esm/charts/xy-chart/utils/query-get-closest-point.js +30 -8
- package/esm/charts/xy-chart/utils/query-get-closest-point.js.map +2 -2
- package/esm/charts/xy-chart/utils/query-shared.js +59 -24
- package/esm/charts/xy-chart/utils/query-shared.js.map +2 -2
- package/esm/charts/xy-chart/utils/query-single.js +5 -1
- package/esm/charts/xy-chart/utils/query-single.js.map +2 -2
- package/esm/charts/xy-chart/utils/xy-chart-configuration.js +1 -1
- package/esm/charts/xy-chart/utils/xy-chart-configuration.js.map +2 -2
- package/esm/charts/xy-chart-adoption/categorical-bar/CategoricalBarToXY.js +17 -2
- package/esm/charts/xy-chart-adoption/categorical-bar/CategoricalBarToXY.js.map +2 -2
- package/esm/charts/xy-chart-adoption/categorical-bar/constants.js +5 -0
- package/esm/charts/xy-chart-adoption/categorical-bar/constants.js.map +7 -0
- package/esm/charts/xy-chart-adoption/categorical-bar/utils/map-axes-to-xy.js +3 -2
- package/esm/charts/xy-chart-adoption/categorical-bar/utils/map-axes-to-xy.js.map +2 -2
- package/esm/charts/xy-chart-adoption/histogram/HistogramToXY.js +10 -1
- package/esm/charts/xy-chart-adoption/histogram/HistogramToXY.js.map +2 -2
- package/esm/charts/xy-chart-adoption/histogram/constants.js +5 -0
- package/esm/charts/xy-chart-adoption/histogram/constants.js.map +7 -0
- package/esm/charts/xy-chart-adoption/histogram/transformer-thresholds-to-xy.js.map +2 -2
- package/esm/charts/xy-chart-adoption/timeseries/TimeseriesToXY.js +10 -1
- package/esm/charts/xy-chart-adoption/timeseries/TimeseriesToXY.js.map +2 -2
- package/esm/charts/xy-chart-adoption/timeseries/constants.js +2 -0
- package/esm/charts/xy-chart-adoption/timeseries/constants.js.map +2 -2
- package/esm/charts/xy-chart-adoption/timeseries/types/timeseries.js.map +2 -2
- package/esm/content/accordion/Accordion.css +14 -14
- package/esm/content/accordion/Accordion.js +8 -1
- package/esm/content/accordion/Accordion.js.map +2 -2
- package/esm/content/accordion/Accordion.sty.js +8 -8
- package/esm/content/accordion/Accordion.sty.js.map +1 -1
- package/esm/content/accordion/AccordionSection.js +7 -4
- package/esm/content/accordion/AccordionSection.js.map +2 -2
- package/esm/content/accordion/AccordionSectionContent.js +2 -2
- package/esm/content/accordion/AccordionSectionContent.js.map +2 -2
- package/esm/content/accordion/AccordionSectionLabel.js +4 -1
- package/esm/content/accordion/AccordionSectionLabel.js.map +2 -2
- package/esm/content/accordion/contexts/AccordionSectionContext.js +1 -0
- package/esm/content/accordion/contexts/AccordionSectionContext.js.map +2 -2
- 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 +2 -2
- package/esm/content/ai-response/AiResponse.sty.js.map +1 -1
- 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.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/code-snippet/CodeHighlight.css +25 -25
- package/esm/content/code-snippet/CodeHighlight.sty.js +6 -6
- package/esm/content/code-snippet/CodeHighlight.sty.js.map +1 -1
- package/esm/content/code-snippet/CodeSnippet.css +18 -18
- package/esm/content/code-snippet/CodeSnippet.js +17 -3
- package/esm/content/code-snippet/CodeSnippet.js.map +2 -2
- package/esm/content/code-snippet/CodeSnippet.sty.js +4 -4
- package/esm/content/code-snippet/CodeSnippet.sty.js.map +1 -1
- package/esm/content/code-snippet/prism-dql-language.js +1 -1
- package/esm/content/code-snippet/prism-dql-language.js.map +2 -2
- package/esm/content/empty-state/EmptyState.css +28 -28
- package/esm/content/empty-state/EmptyState.js +1 -1
- package/esm/content/empty-state/EmptyState.js.map +2 -2
- 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/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.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/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/message-container/MessageContainer.js +1 -0
- package/esm/content/message-container/MessageContainer.js.map +2 -2
- 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/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 +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/focus-scope/FocusScope.js +46 -0
- package/esm/core/components/focus-scope/FocusScope.js.map +2 -2
- 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/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/validation.js +11 -1
- 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/editors/base-code-editor/BaseCodeEditor.css +140 -142
- package/esm/editors/base-code-editor/BaseCodeEditor.js +3 -2
- 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-active-line.js +63 -0
- package/esm/editors/base-code-editor/configuration/configure-active-line.js.map +7 -0
- package/esm/editors/base-code-editor/configuration/configure-critical-gutter-lines.js +46 -0
- package/esm/editors/base-code-editor/configuration/configure-critical-gutter-lines.js.map +7 -0
- package/esm/editors/base-code-editor/configuration/configure-lint-gutter.js +6 -3
- package/esm/editors/base-code-editor/configuration/configure-lint-gutter.js.map +2 -2
- package/esm/editors/base-code-editor/configuration/getDefaultConfigurations.js +6 -8
- package/esm/editors/base-code-editor/configuration/getDefaultConfigurations.js.map +2 -2
- package/esm/editors/base-code-editor/utils/format-diagnostics-summary.js +1 -1
- package/esm/editors/base-code-editor/utils/format-diagnostics-summary.js.map +2 -2
- package/esm/editors/dql-editor/DQLEditor.js +2 -0
- package/esm/editors/dql-editor/DQLEditor.js.map +2 -2
- package/esm/editors/dql-editor/actions-menu/ActionsMenu.css +10 -10
- package/esm/editors/dql-editor/actions-menu/ActionsMenu.sty.js +5 -5
- package/esm/editors/dql-editor/actions-menu/ActionsMenu.sty.js.map +1 -1
- package/{editors/dql-editor/dql → esm/editors/dql-editor/autocomplete}/SuggestionsInfoSection.css +7 -7
- package/esm/editors/dql-editor/autocomplete/SuggestionsInfoSection.js.map +7 -0
- package/esm/editors/dql-editor/{dql → autocomplete}/SuggestionsInfoSection.sty.js +3 -3
- package/esm/editors/dql-editor/autocomplete/SuggestionsInfoSection.sty.js.map +7 -0
- package/esm/editors/dql-editor/{dql → autocomplete}/fuzzy-match.js.map +1 -1
- package/esm/editors/dql-editor/{dql → autocomplete}/get-suggestions.js.map +1 -1
- package/esm/editors/dql-editor/{dql → autocomplete}/messages.js +10 -0
- package/esm/editors/dql-editor/{dql → autocomplete}/messages.js.map +3 -3
- package/esm/editors/dql-editor/{dql → autocomplete}/open-autocomplete.js +1 -1
- package/esm/editors/dql-editor/autocomplete/open-autocomplete.js.map +7 -0
- package/esm/editors/dql-editor/{dql → autocomplete}/suggestion-autocompletions.js +32 -4
- package/esm/editors/dql-editor/autocomplete/suggestion-autocompletions.js.map +7 -0
- package/esm/editors/dql-editor/autocomplete/suggestion-popup/DocumentationLink.js +31 -0
- package/esm/editors/dql-editor/autocomplete/suggestion-popup/DocumentationLink.js.map +7 -0
- package/esm/editors/dql-editor/autocomplete/suggestion-popup/SuggestionPart.js +37 -0
- package/esm/editors/dql-editor/autocomplete/suggestion-popup/SuggestionPart.js.map +7 -0
- package/esm/editors/dql-editor/{dql → autocomplete}/suggestions-info-section-extension.js +14 -1
- package/esm/editors/dql-editor/autocomplete/suggestions-info-section-extension.js.map +7 -0
- package/esm/editors/dql-editor/{dql → autocomplete}/token-type-label.js.map +1 -1
- package/esm/editors/dql-editor/dql/dql-language.js +3 -3
- package/esm/editors/dql-editor/dql/dql-language.js.map +1 -1
- package/esm/filters/filter-field/FilterField.css +130 -130
- package/esm/filters/filter-field/FilterField.js +12 -6
- 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.js +2 -1
- package/esm/filters/filter-field/components/FilterFieldSuffixButtons.js.map +2 -2
- 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 +14 -14
- package/esm/filters/filter-field/components/FilterStatement.sty.js +7 -7
- package/esm/filters/filter-field/components/FilterStatement.sty.js.map +1 -1
- package/esm/filters/filter-field/messages.js +9 -4
- package/esm/filters/filter-field/messages.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.js +3 -1
- package/esm/filters/filter-field/suggestions/Suggestion.js.map +2 -2
- 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/SuggestionTips.css +10 -7
- package/esm/filters/filter-field/suggestions/SuggestionTips.js +13 -2
- package/esm/filters/filter-field/suggestions/SuggestionTips.js.map +2 -2
- package/esm/filters/filter-field/suggestions/SuggestionTips.sty.js +10 -7
- package/esm/filters/filter-field/suggestions/SuggestionTips.sty.js.map +2 -2
- package/esm/filters/filter-field/suggestions/Suggestions.js +33 -46
- package/esm/filters/filter-field/suggestions/Suggestions.js.map +2 -2
- package/esm/filters/filter-field/suggestions/SuggestionsOverlay.css +7 -7
- package/esm/filters/filter-field/suggestions/SuggestionsOverlay.js +11 -0
- package/esm/filters/filter-field/suggestions/SuggestionsOverlay.js.map +2 -2
- 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/filter-field/utils/get-suggestion-transaction.js +4 -0
- package/esm/filters/filter-field/utils/get-suggestion-transaction.js.map +2 -2
- package/esm/filters/filter-field/utils/suggestions-utils/get-suggestions.js +10 -2
- package/esm/filters/filter-field/utils/suggestions-utils/get-suggestions.js.map +2 -2
- package/esm/filters/segment-selector/SegmentSelector.css +4 -4
- package/esm/filters/segment-selector/SegmentSelector.js +22 -21
- 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/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 +1 -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/SegmentsPreset.js +6 -3
- package/esm/filters/segment-selector/parts/segmentsPresets/SegmentsPreset.js.map +2 -2
- package/esm/filters/segment-selector/parts/segmentsPresets/SegmentsPresets.css +34 -34
- 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.js +3 -1
- package/esm/filters/segment-selector/parts/selectionBar/SegmentSelect.js.map +2 -2
- 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 +12 -5
- package/esm/filters/segment-selector/parts/selectionBar/SelectionBar.js.map +2 -2
- package/esm/filters/segment-selector/parts/selectionBar/ValueSelect.js +4 -1
- 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.sty.js +2 -2
- package/esm/filters/timeframe-selector/TimeframeSelector.sty.js.map +1 -1
- package/esm/filters/timeframe-selector/TimeframeSelectorRoot.js +28 -3
- 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.js +2 -0
- package/esm/filters/timeframe-selector/components/overlay/TimeframeSelectorOverlay.js.map +2 -2
- 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/overlay/TimeframeSelectorOverlayFooter.js +1 -1
- package/esm/filters/timeframe-selector/components/overlay/TimeframeSelectorOverlayFooter.js.map +2 -2
- 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.sty.js +4 -4
- package/esm/filters/timeframe-selector/components/trigger/Trigger.sty.js.map +1 -1
- package/esm/filters/timeframe-selector/constants/timeframeSelectorMessages.js +2 -2
- package/esm/filters/timeframe-selector/constants/timeframeSelectorMessages.js.map +2 -2
- package/esm/forms/_base-input/BaseInput.css +89 -85
- package/esm/forms/_base-input/BaseInput.js +4 -2
- 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 +89 -8
- 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 +2 -3
- 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/DateTimePicker.css +42 -42
- 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 +65 -2
- 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.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 +4 -2
- 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 +57 -1
- package/esm/forms/date-time-range-picker/DateTimeRangePickerRoot.js.map +2 -2
- package/esm/forms/form/Form.js +4 -2
- package/esm/forms/form/Form.js.map +2 -2
- package/esm/forms/form/FormMessages.js +2 -0
- package/esm/forms/form/FormMessages.js.map +2 -2
- package/esm/forms/form/context/FormContext.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/FormFieldMessageContextProvider.js +17 -2
- package/esm/forms/forms-core/components/form-field/FormFieldMessageContextProvider.js.map +2 -2
- package/esm/forms/forms-core/components/form-field-messages/FormFieldMessageItem.css +5 -5
- 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.css +3 -3
- package/esm/forms/forms-core/components/form-field-messages/FormFieldMessages.js +3 -2
- package/esm/forms/forms-core/components/form-field-messages/FormFieldMessages.js.map +2 -2
- 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/hint/Hint.js.map +2 -2
- 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/contexts/FormFieldMessageContext.js.map +2 -2
- package/esm/forms/forms-core/hooks/useFormFieldValidation.js +38 -11
- package/esm/forms/forms-core/hooks/useFormFieldValidation.js.map +2 -2
- package/esm/forms/forms-core/state/formfield-messages-state-reducer.js +1 -1
- 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/hooks/useContainerFocus.css +1 -1
- package/esm/forms/hooks/useContainerFocus.sty.js +1 -1
- package/esm/forms/hooks/useContainerFocus.sty.js.map +1 -1
- package/esm/forms/index.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.js +8 -1
- package/esm/forms/search-input/Stepper.js.map +2 -2
- 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 +176 -31
- package/esm/forms/select/Select.js.map +2 -2
- package/esm/forms/select/components/Control.js +10 -1
- package/esm/forms/select/components/Control.js.map +2 -2
- package/esm/forms/select/components/HiddenSelect.js +2 -0
- package/esm/forms/select/components/HiddenSelect.js.map +2 -2
- package/esm/forms/select/components/Menu.js +35 -14
- package/esm/forms/select/components/Menu.js.map +2 -2
- package/esm/forms/select/components/MenuList.js +119 -50
- package/esm/forms/select/components/MenuList.js.map +2 -2
- package/esm/forms/select/components/NoOptionsMessage.js +8 -6
- package/esm/forms/select/components/NoOptionsMessage.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/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.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.sty.js +3 -3
- package/esm/forms/text-area/TextArea.sty.js.map +1 -1
- package/esm/forms/toggle-button-group/ToggleButtonGroup.js +2 -1
- package/esm/forms/toggle-button-group/ToggleButtonGroup.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/validation-builders.js +2 -1
- package/esm/forms/validation/validation-builders.js.map +2 -2
- package/esm/layouts/app-header/ActionItems.js +4 -2
- package/esm/layouts/app-header/ActionItems.js.map +2 -2
- package/esm/layouts/app-header/AppHeader.css +1 -1
- package/esm/layouts/app-header/AppHeader.js +2 -1
- package/esm/layouts/app-header/AppHeader.js.map +2 -2
- 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/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.js +1 -0
- package/esm/layouts/app-header/action-group/ActionGroup.js.map +2 -2
- 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.js.map +2 -2
- package/esm/layouts/divider/Divider.sty.js +1 -1
- package/esm/layouts/divider/Divider.sty.js.map +1 -1
- package/esm/layouts/input-group/InputGroup.css +62 -62
- 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.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.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.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.sty.js +1 -1
- package/esm/layouts/page/Page.sty.js.map +1 -1
- package/esm/layouts/page/Sidebar.css +35 -35
- package/esm/layouts/page/Sidebar.sty.js +8 -8
- package/esm/layouts/page/Sidebar.sty.js.map +1 -1
- 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.js +1 -1
- package/esm/layouts/page-layout/details-layout/DetailsControlBar.js.map +2 -2
- 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 +2 -1
- 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/sidebar-layout/SidebarLayout.css +37 -37
- package/esm/layouts/page-layout/sidebar-layout/SidebarLayout.sty.js +14 -14
- package/esm/layouts/page-layout/sidebar-layout/SidebarLayout.sty.js.map +1 -1
- package/esm/layouts/split-layout/SplitLayout.css +19 -19
- 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.js +1 -1
- package/esm/layouts/title-bar/TitleBar.js.map +2 -2
- 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 +3 -2
- package/esm/navigation/menu/Content.js.map +2 -2
- package/esm/navigation/menu/Item.js +1 -0
- package/esm/navigation/menu/Item.js.map +2 -2
- package/esm/navigation/menu/Menu.css +17 -17
- package/esm/navigation/menu/Menu.js +5 -2
- package/esm/navigation/menu/Menu.js.map +2 -2
- package/esm/navigation/menu/Menu.sty.js +8 -8
- package/esm/navigation/menu/Menu.sty.js.map +1 -1
- package/esm/navigation/menu/MobileContent.js +2 -0
- package/esm/navigation/menu/MobileContent.js.map +2 -2
- package/esm/navigation/menu/MobileMenu.css +14 -14
- package/esm/navigation/menu/MobileMenu.sty.js +8 -8
- package/esm/navigation/menu/MobileMenu.sty.js.map +1 -1
- package/esm/navigation/menu/Trigger.js +2 -1
- package/esm/navigation/menu/Trigger.js.map +2 -2
- package/esm/navigation/menu/contexts/MenuContext.js +2 -1
- package/esm/navigation/menu/contexts/MenuContext.js.map +2 -2
- 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/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.js.map +2 -2
- package/esm/overlays/drawer/Drawer.sty.js +5 -5
- package/esm/overlays/drawer/Drawer.sty.js.map +1 -1
- package/esm/overlays/hooks/useOverlayWithTrigger.js +10 -4
- package/esm/overlays/hooks/useOverlayWithTrigger.js.map +2 -2
- package/esm/overlays/modal/BaseModal.js +2 -5
- package/esm/overlays/modal/BaseModal.js.map +2 -2
- package/esm/overlays/modal/Modal.css +17 -16
- package/esm/overlays/modal/Modal.sty.js +9 -7
- package/esm/overlays/modal/Modal.sty.js.map +2 -2
- 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 +7 -7
- 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/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 +256 -256
- 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 +2 -0
- 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 +83 -83
- 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.js +1 -1
- package/esm/tables/DataTable/components/DataTableHeader.js.map +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 +3 -3
- package/esm/tables/DataTable/components/SettingsModal/DataTableSettingsModal.sty.js +2 -2
- package/esm/tables/DataTable/components/SettingsModal/DataTableSettingsModal.sty.js.map +1 -1
- 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/DataTableAllColumnsHiddenEmptyState.css +1 -1
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableAllColumnsHiddenEmptyState.sty.js +1 -1
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableAllColumnsHiddenEmptyState.sty.js.map +1 -1
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnSettings.js +1 -3
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnSettings.js.map +2 -2
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsList.css +19 -19
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsList.js +6 -2
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsList.js.map +2 -2
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsList.sty.js +2 -2
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsList.sty.js.map +1 -1
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsListItem.css +11 -11
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsListItem.sty.js +8 -8
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsListItem.sty.js.map +1 -1
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsSectionHeader.css +2 -2
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsSectionHeader.sty.js +2 -2
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsSectionHeader.sty.js.map +1 -1
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableNoFilterResultsEmptyState.css +1 -1
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableNoFilterResultsEmptyState.sty.js +1 -1
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableNoFilterResultsEmptyState.sty.js.map +1 -1
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableVisibilityFilterControls.css +4 -4
- 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/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/ColumnOrder/ColumnOrderDragAndDropContext.js +5 -1
- package/esm/tables/DataTable/features/ColumnOrder/ColumnOrderDragAndDropContext.js.map +2 -2
- 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/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.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.css +5 -5
- package/esm/tables/DataTable/features/MeterBarChart/MeterBarChart.sty.js +2 -2
- package/esm/tables/DataTable/features/MeterBarChart/MeterBarChart.sty.js.map +1 -1
- 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 +17 -17
- 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/RowInteractivity/hooks/useRowInteractivityProps.js +4 -0
- package/esm/tables/DataTable/features/RowInteractivity/hooks/useRowInteractivityProps.js.map +2 -2
- 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/RowSelection/RowSelectionAnnouncement.js +26 -0
- package/esm/tables/DataTable/features/RowSelection/RowSelectionAnnouncement.js.map +7 -0
- 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/InlineUserActionsMenu.js +45 -1
- package/esm/tables/DataTable/features/UserActions/InlineUserActionsMenu.js.map +2 -2
- 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/RowActionsColumnDef.js +10 -1
- package/esm/tables/DataTable/features/UserActions/RowActionsColumnDef.js.map +2 -2
- package/esm/tables/DataTable/features/UserActions/UserActions.css +32 -22
- package/esm/tables/DataTable/features/UserActions/UserActions.sty.js +3 -2
- package/esm/tables/DataTable/features/UserActions/UserActions.sty.js.map +2 -2
- package/esm/tables/DataTable/hooks/useHeaderDragAndDrop.js +3 -0
- package/esm/tables/DataTable/hooks/useHeaderDragAndDrop.js.map +2 -2
- package/esm/tables/DataTable/messages.js +29 -14
- 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/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.js.map +2 -2
- 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 +130 -130
- package/filters/filter-field/FilterField.js +12 -6
- package/filters/filter-field/FilterField.sty.js +28 -28
- package/filters/filter-field/components/FilterFieldSuffixButtons.css +3 -3
- package/filters/filter-field/components/FilterFieldSuffixButtons.js +2 -1
- package/filters/filter-field/components/FilterFieldSuffixButtons.sty.js +3 -3
- package/filters/filter-field/components/FilterStatement.css +14 -14
- package/filters/filter-field/components/FilterStatement.sty.js +7 -7
- package/filters/filter-field/messages.d.ts +5 -0
- package/filters/filter-field/messages.js +9 -4
- 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.js +3 -1
- 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/SuggestionTips.css +10 -7
- package/filters/filter-field/suggestions/SuggestionTips.css.d.ts +2 -1
- package/filters/filter-field/suggestions/SuggestionTips.js +13 -2
- package/filters/filter-field/suggestions/SuggestionTips.sty.js +10 -7
- package/filters/filter-field/suggestions/Suggestions.js +33 -46
- package/filters/filter-field/suggestions/SuggestionsOverlay.css +7 -7
- package/filters/filter-field/suggestions/SuggestionsOverlay.js +11 -0
- package/filters/filter-field/suggestions/SuggestionsOverlay.sty.js +5 -5
- package/filters/filter-field/utils/get-suggestion-transaction.js +4 -0
- package/filters/filter-field/utils/suggestions-utils/get-suggestions.d.ts +8 -0
- package/filters/filter-field/utils/suggestions-utils/get-suggestions.js +10 -2
- package/filters/segment-selector/SegmentSelector.css +4 -4
- package/filters/segment-selector/SegmentSelector.d.ts +1 -1
- package/filters/segment-selector/SegmentSelector.js +22 -21
- package/filters/segment-selector/SegmentSelector.sty.js +4 -4
- package/filters/segment-selector/SegmentSelector.types.d.ts +1 -1
- 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 +1 -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/SegmentsPreset.js +6 -3
- package/filters/segment-selector/parts/segmentsPresets/SegmentsPresets.css +34 -34
- 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.d.ts +1 -0
- package/filters/segment-selector/parts/selectionBar/SegmentSelect.js +3 -1
- 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.d.ts +2 -1
- package/filters/segment-selector/parts/selectionBar/SelectionBar.js +12 -5
- package/filters/segment-selector/parts/selectionBar/ValueSelect.d.ts +1 -0
- package/filters/segment-selector/parts/selectionBar/ValueSelect.js +4 -1
- package/filters/timeframe-selector/TimeframeSelector.css +2 -2
- package/filters/timeframe-selector/TimeframeSelector.sty.js +2 -2
- package/filters/timeframe-selector/TimeframeSelector.types.d.ts +1 -1
- package/filters/timeframe-selector/TimeframeSelectorRoot.js +24 -2
- 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.d.ts +2 -0
- package/filters/timeframe-selector/components/overlay/TimeframeSelectorOverlay.js +2 -0
- package/filters/timeframe-selector/components/overlay/TimeframeSelectorOverlay.sty.js +4 -4
- package/filters/timeframe-selector/components/overlay/TimeframeSelectorOverlayFooter.js +1 -1
- 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.sty.js +4 -4
- package/filters/timeframe-selector/constants/timeframeSelectorMessages.js +2 -2
- package/forms/_base-input/BaseInput.css +89 -85
- package/forms/_base-input/BaseInput.js +4 -2
- 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/calendar/Calendar.css +48 -48
- package/forms/calendar/Calendar.sty.js +12 -12
- package/forms/calendar/Calendar.types.d.ts +13 -0
- package/forms/calendar/CalendarRoot.d.ts +15 -2
- package/forms/calendar/CalendarRoot.js +86 -5
- 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 +2 -3
- package/forms/checkbox/Checkbox.sty.js +3 -3
- package/forms/date-time-picker/DateTimePicker.css +42 -42
- package/forms/date-time-picker/DateTimePicker.sty.js +6 -6
- package/forms/date-time-picker/DateTimePickerRoot.js +65 -2
- package/forms/date-time-picker/types.d.ts +13 -0
- package/forms/date-time-range-picker/DateRangeSelector.css +1 -1
- 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 +4 -2
- 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 +57 -1
- package/forms/date-time-range-picker/types.d.ts +20 -0
- package/forms/form/Form.js +4 -2
- package/forms/form/FormMessages.js +2 -0
- package/forms/form/context/FormContext.d.ts +2 -0
- 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/FormFieldMessageContextProvider.js +16 -2
- package/forms/forms-core/components/form-field-messages/FormFieldMessageItem.css +5 -5
- package/forms/forms-core/components/form-field-messages/FormFieldMessageItem.sty.js +2 -2
- package/forms/forms-core/components/form-field-messages/FormFieldMessages.css +3 -3
- package/forms/forms-core/components/form-field-messages/FormFieldMessages.d.ts +3 -2
- package/forms/forms-core/components/form-field-messages/FormFieldMessages.js +3 -2
- package/forms/forms-core/components/form-field-messages/FormFieldMessages.sty.js +1 -1
- package/forms/forms-core/components/hint/Hint.d.ts +2 -0
- 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/contexts/FormFieldMessageContext.d.ts +3 -0
- package/forms/forms-core/hooks/useFormFieldValidation.js +38 -11
- package/forms/forms-core/state/formfield-messages-state-reducer.js +1 -1
- package/forms/hooks/useAutofillEvent.css +8 -8
- package/forms/hooks/useAutofillEvent.sty.js +4 -4
- package/forms/hooks/useContainerFocus.css +1 -1
- package/forms/hooks/useContainerFocus.sty.js +1 -1
- 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.js +8 -1
- package/forms/search-input/Stepper.sty.js +3 -3
- package/forms/select/Select.d.ts +12 -6
- package/forms/select/Select.js +176 -31
- package/forms/select/components/Control.js +10 -1
- package/forms/select/components/HiddenSelect.d.ts +1 -0
- package/forms/select/components/HiddenSelect.js +2 -0
- package/forms/select/components/Menu.js +35 -14
- package/forms/select/components/MenuList.js +117 -48
- package/forms/select/components/NoOptionsMessage.d.ts +2 -0
- package/forms/select/components/NoOptionsMessage.js +8 -6
- package/forms/select/styles/Select.css +46 -46
- package/forms/select/styles/Select.sty.js +24 -24
- 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.sty.js +5 -5
- package/forms/text-area/TextArea.css +59 -59
- package/forms/text-area/TextArea.sty.js +3 -3
- package/forms/toggle-button-group/ToggleButtonGroup.js +2 -1
- package/forms/toggle-button-group/styles.css +58 -58
- package/forms/toggle-button-group/styles.sty.js +15 -15
- package/forms/validation/validation-builders.js +2 -1
- package/lang/en.json +508 -274
- package/lang/ja.json +473 -249
- package/lang/uncompiled/en.json +146 -74
- package/lang/uncompiled/ja.json +100 -55
- package/layouts/app-header/ActionItems.js +4 -2
- package/layouts/app-header/AppHeader.css +1 -1
- package/layouts/app-header/AppHeader.js +2 -1
- package/layouts/app-header/AppHeader.sty.js +1 -1
- 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.js +1 -0
- 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.d.ts +7 -0
- package/layouts/divider/Divider.sty.js +1 -1
- package/layouts/input-group/InputGroup.css +62 -62
- package/layouts/input-group/InputGroup.sty.js +1 -1
- package/layouts/page/DetailView.css +3 -3
- package/layouts/page/DetailView.sty.js +2 -2
- package/layouts/page/Header.css +2 -2
- package/layouts/page/Header.sty.js +1 -1
- package/layouts/page/Main.css +6 -6
- package/layouts/page/Main.sty.js +4 -4
- package/layouts/page/Page.css +2 -2
- package/layouts/page/Page.sty.js +1 -1
- package/layouts/page/Sidebar.css +35 -35
- package/layouts/page/Sidebar.sty.js +8 -8
- 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.sty.js +6 -6
- package/layouts/page-layout/details-layout/DetailsControlBar.css +3 -3
- package/layouts/page-layout/details-layout/DetailsControlBar.js +1 -1
- 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 +2 -1
- 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/sidebar-layout/SidebarLayout.css +37 -37
- package/layouts/page-layout/sidebar-layout/SidebarLayout.sty.js +14 -14
- package/layouts/split-layout/SplitLayout.css +19 -19
- 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.js +1 -1
- package/layouts/title-bar/TitleBar.sty.js +4 -4
- package/navigation/breadcrumbs/Breadcrumbs.css +9 -9
- package/navigation/breadcrumbs/Breadcrumbs.sty.js +5 -5
- package/navigation/menu/Content.js +3 -2
- package/navigation/menu/Item.js +1 -0
- package/navigation/menu/Menu.css +17 -17
- package/navigation/menu/Menu.js +5 -2
- package/navigation/menu/Menu.sty.js +8 -8
- package/navigation/menu/MobileContent.d.ts +6 -1
- package/navigation/menu/MobileContent.js +2 -0
- package/navigation/menu/MobileMenu.css +14 -14
- package/navigation/menu/MobileMenu.sty.js +8 -8
- package/navigation/menu/Trigger.js +2 -1
- package/navigation/menu/contexts/MenuContext.d.ts +1 -0
- package/navigation/menu/contexts/MenuContext.js +2 -1
- 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/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.d.ts +3 -2
- package/overlays/drawer/Drawer.sty.js +5 -5
- package/overlays/hooks/useOverlayWithTrigger.js +10 -4
- package/overlays/modal/BaseModal.js +2 -5
- package/overlays/modal/Modal.css +17 -16
- package/overlays/modal/Modal.css.d.ts +7 -0
- package/overlays/modal/Modal.sty.js +9 -7
- package/overlays/overlay/Overlay.css +1 -1
- package/overlays/overlay/Overlay.sty.js +1 -1
- package/overlays/sheet/Sheet.css +7 -7
- package/overlays/sheet/Sheet.sty.js +5 -5
- package/overlays/tooltip/tooltip.css +18 -18
- package/overlays/tooltip/tooltip.sty.js +3 -3
- package/package.json +2 -3
- 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 +256 -256
- 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.js +2 -0
- 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 +83 -83
- 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.js +1 -1
- 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 +3 -3
- package/tables/DataTable/components/SettingsModal/DataTableSettingsModal.sty.js +2 -2
- 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/DataTableAllColumnsHiddenEmptyState.css +1 -1
- package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableAllColumnsHiddenEmptyState.sty.js +1 -1
- package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnSettings.js +1 -3
- package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsList.css +19 -19
- package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsList.js +6 -2
- package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsList.sty.js +2 -2
- package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsListItem.css +11 -11
- package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsListItem.sty.js +8 -8
- package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsSectionHeader.css +2 -2
- package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsSectionHeader.sty.js +2 -2
- package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableNoFilterResultsEmptyState.css +1 -1
- package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableNoFilterResultsEmptyState.sty.js +1 -1
- package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableVisibilityFilterControls.css +4 -4
- package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableVisibilityFilterControls.sty.js +3 -3
- 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/ColumnOrder/ColumnOrderDragAndDropContext.js +5 -1
- 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/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.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/MeterBarChart/MeterBarChart.css +5 -5
- package/tables/DataTable/features/MeterBarChart/MeterBarChart.sty.js +2 -2
- 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 +17 -17
- package/tables/DataTable/features/RowInteractivity/RowInteractivity.sty.js +1 -1
- package/tables/DataTable/features/RowInteractivity/hooks/useRowInteractivityProps.js +4 -0
- package/tables/DataTable/features/RowOrder/RowOrder.css +8 -8
- package/tables/DataTable/features/RowOrder/RowOrder.sty.js +3 -3
- package/tables/DataTable/features/RowSelection/RowSelectionAnnouncement.d.ts +8 -0
- package/tables/DataTable/features/RowSelection/RowSelectionAnnouncement.js +44 -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/InlineUserActionsMenu.js +43 -1
- package/tables/DataTable/features/UserActions/RowActions.css +4 -4
- package/tables/DataTable/features/UserActions/RowActions.sty.js +1 -1
- package/tables/DataTable/features/UserActions/RowActionsColumnDef.js +10 -1
- package/tables/DataTable/features/UserActions/UserActions.css +32 -22
- package/tables/DataTable/features/UserActions/UserActions.sty.js +3 -2
- package/tables/DataTable/hooks/useHeaderDragAndDrop.d.ts +2 -2
- package/tables/DataTable/hooks/useHeaderDragAndDrop.js +3 -0
- package/tables/DataTable/messages.d.ts +15 -0
- package/tables/DataTable/messages.js +29 -14
- package/tables/SimpleTable/SimpleTable.css +27 -27
- package/tables/SimpleTable/SimpleTable.sty.js +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.d.ts +3 -1
- 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/editors/dql-editor/dql/DocumentationLink.d.ts +0 -13
- package/editors/dql-editor/dql/SuggestionPart.css +0 -4
- package/editors/dql-editor/dql/SuggestionPart.css.d.ts +0 -2
- package/editors/dql-editor/dql/SuggestionPart.d.ts +0 -7
- package/editors/dql-editor/dql/SuggestionPart.js +0 -50
- package/editors/dql-editor/dql/SuggestionsInfoSection.d.ts +0 -2
- package/editors/dql-editor/dql/suggestion-autocompletions.d.ts +0 -10
- package/esm/editors/dql-editor/dql/DocumentationLink.js +0 -27
- package/esm/editors/dql-editor/dql/DocumentationLink.js.map +0 -7
- package/esm/editors/dql-editor/dql/SuggestionPart.css +0 -4
- package/esm/editors/dql-editor/dql/SuggestionPart.js +0 -32
- package/esm/editors/dql-editor/dql/SuggestionPart.js.map +0 -7
- package/esm/editors/dql-editor/dql/SuggestionPart.sty.js +0 -6
- package/esm/editors/dql-editor/dql/SuggestionPart.sty.js.map +0 -7
- package/esm/editors/dql-editor/dql/SuggestionsInfoSection.js.map +0 -7
- package/esm/editors/dql-editor/dql/SuggestionsInfoSection.sty.js.map +0 -7
- package/esm/editors/dql-editor/dql/open-autocomplete.js.map +0 -7
- package/esm/editors/dql-editor/dql/suggestion-autocompletions.js.map +0 -7
- package/esm/editors/dql-editor/dql/suggestions-info-section-extension.js.map +0 -7
- /package/editors/dql-editor/{dql → autocomplete}/SuggestionsInfoSection.css.d.ts +0 -0
- /package/editors/dql-editor/{dql → autocomplete}/SuggestionsInfoSection.js +0 -0
- /package/editors/dql-editor/{dql → autocomplete}/fuzzy-match.d.ts +0 -0
- /package/editors/dql-editor/{dql → autocomplete}/fuzzy-match.js +0 -0
- /package/editors/dql-editor/{dql → autocomplete}/get-suggestions.d.ts +0 -0
- /package/editors/dql-editor/{dql → autocomplete}/get-suggestions.js +0 -0
- /package/editors/dql-editor/{dql → autocomplete}/open-autocomplete.d.ts +0 -0
- /package/editors/dql-editor/{dql → autocomplete}/suggestions-info-section-extension.d.ts +0 -0
- /package/editors/dql-editor/{dql → autocomplete}/token-type-label.d.ts +0 -0
- /package/editors/dql-editor/{dql → autocomplete}/token-type-label.js +0 -0
- /package/esm/editors/dql-editor/{dql → autocomplete}/SuggestionsInfoSection.js +0 -0
- /package/esm/editors/dql-editor/{dql → autocomplete}/fuzzy-match.js +0 -0
- /package/esm/editors/dql-editor/{dql → autocomplete}/get-suggestions.js +0 -0
- /package/esm/editors/dql-editor/{dql → autocomplete}/token-type-label.js +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../../../../../src/charts/xy-chart/components/thresholds/builder.ts"],
|
|
4
|
-
"sourcesContent": ["import { getYValue } from './get-y-value.js';\nimport { isThresholdDynamic } from './type-guards.js';\nimport {
|
|
5
|
-
"mappings": "AAAA,SAAS,iBAAiB;AAC1B,SAAS,0BAA0B;
|
|
4
|
+
"sourcesContent": ["import { getXValue } from './get-x-value.js';\nimport { getYValue } from './get-y-value.js';\nimport { isThresholdDynamic, isThresholdXStatic } from './type-guards.js';\nimport { axisPositionIncludes, xAxisPositionIncludes } from './utils.js';\nimport { THRESHOLD_BAR_THICKNESS } from '../../../core/components/threshold-bar/types/constants.js';\nimport { isPointThreshold } from '../../../core/types/type-guards.js';\nimport { getValidColor } from '../../../core/utils/getValidColor.js';\nimport { NoThresholdData } from '../../context/XYChartThresholds.context.js';\nimport {\n castDynamicThresholdsDataType,\n castStaticThresholdsDataType,\n castStaticXThresholdsDataType,\n} from '../../processing-strategies/utils/cast-data/cast-data-types.js';\nimport type { XYAxisAnyNumericalType } from '../../types/axis.js';\nimport { isAnyNumericalAxis } from '../../types/guards.js';\nimport type {\n XYChartAxisInternal,\n XYChartSlots,\n XYChartThresholdsInternal,\n XYChartThresholdsPropsInternal,\n} from '../../types/xy-chart-internals.js';\nimport type {\n XYChartThresholdDynamicProps,\n XYChartThresholdIndicatorProps,\n XYChartThresholdStaticProps,\n _XYChartThresholdStaticXProps,\n} from '../../types/xy-chart-props.js';\nimport type {\n XYChartXAxisPosition,\n XYChartYAxisPosition,\n} from '../../types/xy-chart.js';\n\ntype BuildThresholds = (\n yAxes: {\n id: XYChartAxisInternal['id'];\n position: XYChartYAxisPosition;\n type: XYChartAxisInternal['type'];\n }[],\n xAxes: {\n id: XYChartAxisInternal['id'];\n reversed?: XYChartAxisInternal['reversed'];\n position: XYChartXAxisPosition;\n type: XYChartAxisInternal['type'];\n }[],\n thresholdSlots: XYChartSlots['thresholds'],\n) => XYChartThresholdsInternal;\n\ntype NumericalXAxisMetadata = Record<\n string,\n {\n position: XYChartXAxisPosition;\n type: XYAxisAnyNumericalType;\n reversed: XYChartAxisInternal['reversed'];\n }\n>;\n\ntype NumericalYAxisMetadata = Record<\n string,\n {\n position: XYChartYAxisPosition;\n type: XYAxisAnyNumericalType;\n }\n>;\n\nfunction getStrokeOnly(\n threshold: XYChartThresholdStaticProps | XYChartThresholdDynamicProps,\n) {\n const firstData = isThresholdDynamic(threshold)\n ? threshold.data[0]\n : threshold.data;\n\n const firstMarkerDomain = {\n y0: getYValue(firstData, 'min'),\n y1: getYValue(firstData, 'max'),\n };\n\n return (\n (isPointThreshold(firstMarkerDomain.y0, firstMarkerDomain.y1) ||\n threshold.strokeOnly) ??\n false\n );\n}\n\nfunction getStrokeOnlyX(threshold: _XYChartThresholdStaticXProps) {\n const firstMarkerDomain = {\n x0: getXValue(threshold.data, 'min'),\n x1: getXValue(threshold.data, 'max'),\n };\n\n return (\n (isPointThreshold(firstMarkerDomain.x0, firstMarkerDomain.x1) ||\n threshold.strokeOnly) ??\n false\n );\n}\n\n/**\n * Checks if the Thresholds has valid axes.\n *\n * @param threshold - The threshold object containing `xAxisId` and `yAxisId`.\n * @param xAxisMetadata - Metadata for the x-axes, keyed by ID.\n * @param yAxisMetadata - Metadata for the y-axes, keyed by ID.\n * @returns `true` if both axis IDs are valid and they are not Categorical, `false` otherwise.\n */\nfunction hasValidAxes(\n threshold: XYChartThresholdIndicatorProps | _XYChartThresholdStaticXProps,\n yAxisMetadata: NumericalYAxisMetadata,\n xAxisMetadata: NumericalXAxisMetadata | undefined = undefined,\n) {\n if (isThresholdXStatic(threshold)) {\n return !!xAxisMetadata && threshold.xAxisId in xAxisMetadata;\n }\n\n let xAxisValid = true;\n if (isThresholdDynamic(threshold) && xAxisMetadata) {\n xAxisValid =\n threshold.xAxisId !== undefined && threshold.xAxisId in xAxisMetadata;\n }\n\n return xAxisValid && threshold.yAxisId in yAxisMetadata;\n}\n\nexport const buildThresholds: BuildThresholds = (\n yAxes,\n xAxes,\n thresholdSlots,\n) => {\n const xAxisMetadata = xAxes.filter(isAnyNumericalAxis).reduce((acc, axis) => {\n acc[axis.id] = {\n position: axis.position,\n type: axis.type,\n reversed: axis.reversed,\n };\n return acc;\n }, {} as NumericalXAxisMetadata);\n\n const yAxisMetadata = yAxes.filter(isAnyNumericalAxis).reduce((acc, axis) => {\n acc[axis.id] = {\n position: axis.position,\n type: axis.type,\n };\n return acc;\n }, {} as NumericalYAxisMetadata);\n const leftAxisWithThresholds = new Set<string>();\n const rightAxisWithThresholds = new Set<string>();\n const topAxisWithThresholds = new Set<string>();\n const bottomAxisWithThresholds = new Set<string>();\n\n const thresholdsData = thresholdSlots.reduce(\n (acc: XYChartThresholdsPropsInternal, threshold) => {\n if (!hasValidAxes(threshold, yAxisMetadata, xAxisMetadata)) {\n return acc;\n }\n\n if (isThresholdXStatic(threshold)) {\n const xAxis = xAxisMetadata[threshold.xAxisId];\n const castedData = castStaticXThresholdsDataType(\n threshold.data,\n xAxis.type,\n );\n\n if (castedData) {\n if (xAxisPositionIncludes('top')(xAxis.position)) {\n topAxisWithThresholds.add(threshold.xAxisId);\n }\n if (xAxisPositionIncludes('bottom')(xAxis.position)) {\n bottomAxisWithThresholds.add(threshold.xAxisId);\n }\n\n acc.push({\n id: crypto.randomUUID(),\n xAxisId: threshold.xAxisId,\n color: getValidColor(threshold.color),\n position: xAxis.position,\n label: threshold.label,\n strokeOnly: getStrokeOnlyX(threshold),\n data: castedData,\n });\n }\n\n return acc;\n }\n\n {\n const yAxis = yAxisMetadata[threshold.yAxisId];\n\n const baseThresholdData = {\n id: crypto.randomUUID(),\n yAxisId: threshold.yAxisId,\n color: getValidColor(threshold.color),\n position: yAxis.position,\n label: threshold.label,\n strokeOnly: getStrokeOnly(threshold),\n };\n\n if (axisPositionIncludes('left')(yAxis.position)) {\n leftAxisWithThresholds.add(threshold.yAxisId);\n }\n if (axisPositionIncludes('right')(yAxis.position)) {\n rightAxisWithThresholds.add(threshold.yAxisId);\n }\n\n if (isThresholdDynamic(threshold)) {\n const xAxis = xAxisMetadata[threshold.xAxisId];\n const castedData = castDynamicThresholdsDataType(\n threshold.data,\n xAxis.type,\n yAxis.type,\n );\n\n if (castedData.length) {\n const dynamicData = xAxis.reversed\n ? castedData.toReversed()\n : castedData;\n\n acc.push({\n ...baseThresholdData,\n xAxisId: threshold.xAxisId,\n data: dynamicData,\n });\n }\n } else {\n const castedData = castStaticThresholdsDataType(\n threshold.data,\n yAxis.type,\n );\n\n if (castedData) {\n acc.push({\n ...baseThresholdData,\n data: castedData,\n });\n }\n }\n }\n\n return acc;\n },\n [],\n );\n\n if (!thresholdsData.length) {\n return NoThresholdData;\n }\n\n const thresholds: XYChartThresholdsInternal = {\n thresholds: thresholdsData,\n none: false,\n offset: {\n left: leftAxisWithThresholds.size ? THRESHOLD_BAR_THICKNESS : 0,\n right: rightAxisWithThresholds.size ? THRESHOLD_BAR_THICKNESS : 0,\n top: topAxisWithThresholds.size ? THRESHOLD_BAR_THICKNESS : 0,\n bottom: bottomAxisWithThresholds.size ? THRESHOLD_BAR_THICKNESS : 0,\n },\n yAxes: {\n left: leftAxisWithThresholds,\n right: rightAxisWithThresholds,\n },\n xAxes: {\n top: topAxisWithThresholds,\n bottom: bottomAxisWithThresholds,\n },\n };\n return thresholds;\n};\n"],
|
|
5
|
+
"mappings": "AAAA,SAAS,iBAAiB;AAC1B,SAAS,iBAAiB;AAC1B,SAAS,oBAAoB,0BAA0B;AACvD,SAAS,sBAAsB,6BAA6B;AAC5D,SAAS,+BAA+B;AACxC,SAAS,wBAAwB;AACjC,SAAS,qBAAqB;AAC9B,SAAS,uBAAuB;AAChC;AAAA,EACE;AAAA,EACA;AAAA,EACA;AAAA,OACK;AAEP,SAAS,0BAA0B;AAkDnC,SAAS,cACP,WACA;AACA,QAAM,YAAY,mBAAmB,SAAS,IAC1C,UAAU,KAAK,CAAC,IAChB,UAAU;AAEd,QAAM,oBAAoB;AAAA,IACxB,IAAI,UAAU,WAAW,KAAK;AAAA,IAC9B,IAAI,UAAU,WAAW,KAAK;AAAA,EAChC;AAEA,UACG,iBAAiB,kBAAkB,IAAI,kBAAkB,EAAE,KAC1D,UAAU,eACZ;AAEJ;AAEA,SAAS,eAAe,WAA0C;AAChE,QAAM,oBAAoB;AAAA,IACxB,IAAI,UAAU,UAAU,MAAM,KAAK;AAAA,IACnC,IAAI,UAAU,UAAU,MAAM,KAAK;AAAA,EACrC;AAEA,UACG,iBAAiB,kBAAkB,IAAI,kBAAkB,EAAE,KAC1D,UAAU,eACZ;AAEJ;AAUA,SAAS,aACP,WACA,eACA,gBAAoD,QACpD;AACA,MAAI,mBAAmB,SAAS,GAAG;AACjC,WAAO,CAAC,CAAC,iBAAiB,UAAU,WAAW;AAAA,EACjD;AAEA,MAAI,aAAa;AACjB,MAAI,mBAAmB,SAAS,KAAK,eAAe;AAClD,iBACE,UAAU,YAAY,UAAa,UAAU,WAAW;AAAA,EAC5D;AAEA,SAAO,cAAc,UAAU,WAAW;AAC5C;AAEO,MAAM,kBAAmC,CAC9C,OACA,OACA,mBACG;AACH,QAAM,gBAAgB,MAAM,OAAO,kBAAkB,EAAE,OAAO,CAAC,KAAK,SAAS;AAC3E,QAAI,KAAK,EAAE,IAAI;AAAA,MACb,UAAU,KAAK;AAAA,MACf,MAAM,KAAK;AAAA,MACX,UAAU,KAAK;AAAA,IACjB;AACA,WAAO;AAAA,EACT,GAAG,CAAC,CAA2B;AAE/B,QAAM,gBAAgB,MAAM,OAAO,kBAAkB,EAAE,OAAO,CAAC,KAAK,SAAS;AAC3E,QAAI,KAAK,EAAE,IAAI;AAAA,MACb,UAAU,KAAK;AAAA,MACf,MAAM,KAAK;AAAA,IACb;AACA,WAAO;AAAA,EACT,GAAG,CAAC,CAA2B;AAC/B,QAAM,yBAAyB,oBAAI,IAAY;AAC/C,QAAM,0BAA0B,oBAAI,IAAY;AAChD,QAAM,wBAAwB,oBAAI,IAAY;AAC9C,QAAM,2BAA2B,oBAAI,IAAY;AAEjD,QAAM,iBAAiB,eAAe;AAAA,IACpC,CAAC,KAAqC,cAAc;AAClD,UAAI,CAAC,aAAa,WAAW,eAAe,aAAa,GAAG;AAC1D,eAAO;AAAA,MACT;AAEA,UAAI,mBAAmB,SAAS,GAAG;AACjC,cAAM,QAAQ,cAAc,UAAU,OAAO;AAC7C,cAAM,aAAa;AAAA,UACjB,UAAU;AAAA,UACV,MAAM;AAAA,QACR;AAEA,YAAI,YAAY;AACd,cAAI,sBAAsB,KAAK,EAAE,MAAM,QAAQ,GAAG;AAChD,kCAAsB,IAAI,UAAU,OAAO;AAAA,UAC7C;AACA,cAAI,sBAAsB,QAAQ,EAAE,MAAM,QAAQ,GAAG;AACnD,qCAAyB,IAAI,UAAU,OAAO;AAAA,UAChD;AAEA,cAAI,KAAK;AAAA,YACP,IAAI,OAAO,WAAW;AAAA,YACtB,SAAS,UAAU;AAAA,YACnB,OAAO,cAAc,UAAU,KAAK;AAAA,YACpC,UAAU,MAAM;AAAA,YAChB,OAAO,UAAU;AAAA,YACjB,YAAY,eAAe,SAAS;AAAA,YACpC,MAAM;AAAA,UACR,CAAC;AAAA,QACH;AAEA,eAAO;AAAA,MACT;AAEA;AACE,cAAM,QAAQ,cAAc,UAAU,OAAO;AAE7C,cAAM,oBAAoB;AAAA,UACxB,IAAI,OAAO,WAAW;AAAA,UACtB,SAAS,UAAU;AAAA,UACnB,OAAO,cAAc,UAAU,KAAK;AAAA,UACpC,UAAU,MAAM;AAAA,UAChB,OAAO,UAAU;AAAA,UACjB,YAAY,cAAc,SAAS;AAAA,QACrC;AAEA,YAAI,qBAAqB,MAAM,EAAE,MAAM,QAAQ,GAAG;AAChD,iCAAuB,IAAI,UAAU,OAAO;AAAA,QAC9C;AACA,YAAI,qBAAqB,OAAO,EAAE,MAAM,QAAQ,GAAG;AACjD,kCAAwB,IAAI,UAAU,OAAO;AAAA,QAC/C;AAEA,YAAI,mBAAmB,SAAS,GAAG;AACjC,gBAAM,QAAQ,cAAc,UAAU,OAAO;AAC7C,gBAAM,aAAa;AAAA,YACjB,UAAU;AAAA,YACV,MAAM;AAAA,YACN,MAAM;AAAA,UACR;AAEA,cAAI,WAAW,QAAQ;AACrB,kBAAM,cAAc,MAAM,WACtB,WAAW,WAAW,IACtB;AAEJ,gBAAI,KAAK;AAAA,cACP,GAAG;AAAA,cACH,SAAS,UAAU;AAAA,cACnB,MAAM;AAAA,YACR,CAAC;AAAA,UACH;AAAA,QACF,OAAO;AACL,gBAAM,aAAa;AAAA,YACjB,UAAU;AAAA,YACV,MAAM;AAAA,UACR;AAEA,cAAI,YAAY;AACd,gBAAI,KAAK;AAAA,cACP,GAAG;AAAA,cACH,MAAM;AAAA,YACR,CAAC;AAAA,UACH;AAAA,QACF;AAAA,MACF;AAEA,aAAO;AAAA,IACT;AAAA,IACA,CAAC;AAAA,EACH;AAEA,MAAI,CAAC,eAAe,QAAQ;AAC1B,WAAO;AAAA,EACT;AAEA,QAAM,aAAwC;AAAA,IAC5C,YAAY;AAAA,IACZ,MAAM;AAAA,IACN,QAAQ;AAAA,MACN,MAAM,uBAAuB,OAAO,0BAA0B;AAAA,MAC9D,OAAO,wBAAwB,OAAO,0BAA0B;AAAA,MAChE,KAAK,sBAAsB,OAAO,0BAA0B;AAAA,MAC5D,QAAQ,yBAAyB,OAAO,0BAA0B;AAAA,IACpE;AAAA,IACA,OAAO;AAAA,MACL,MAAM;AAAA,MACN,OAAO;AAAA,IACT;AAAA,IACA,OAAO;AAAA,MACL,KAAK;AAAA,MACL,QAAQ;AAAA,IACV;AAAA,EACF;AACA,SAAO;AACT;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
|
@@ -1,14 +1,18 @@
|
|
|
1
1
|
import {
|
|
2
2
|
BothBorders,
|
|
3
|
+
BottomBorder,
|
|
3
4
|
LeftBorder,
|
|
4
|
-
RightBorder
|
|
5
|
+
RightBorder,
|
|
6
|
+
TopBorder
|
|
5
7
|
} from "../../../core/components/threshold-bar/types.js";
|
|
6
|
-
function
|
|
8
|
+
function getBorderThresholds(left, right, top, bottom) {
|
|
7
9
|
const leftBorder = !left || left.hidden ? BothBorders : LeftBorder;
|
|
8
|
-
const rightBorder = !right || right
|
|
9
|
-
|
|
10
|
+
const rightBorder = !right || right.hidden ? BothBorders : RightBorder;
|
|
11
|
+
const topBorder = !top || top.hidden ? BothBorders : TopBorder;
|
|
12
|
+
const bottomBorder = !bottom || bottom.hidden ? BothBorders : BottomBorder;
|
|
13
|
+
return { leftBorder, rightBorder, topBorder, bottomBorder };
|
|
10
14
|
}
|
|
11
15
|
export {
|
|
12
|
-
|
|
16
|
+
getBorderThresholds
|
|
13
17
|
};
|
|
14
18
|
//# sourceMappingURL=get-border-threshold.js.map
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../../../../../src/charts/xy-chart/components/thresholds/get-border-threshold.ts"],
|
|
4
|
-
"sourcesContent": ["import {\n BothBorders,\n LeftBorder,\n RightBorder,\n} from '../../../core/components/threshold-bar/types.js';\nimport type { XYChartAxisInternal } from '../../types/xy-chart-internals.js';\nexport function
|
|
5
|
-
"mappings": "AAAA;AAAA,EACE;AAAA,EACA;AAAA,EACA;AAAA,OACK;
|
|
4
|
+
"sourcesContent": ["import {\n BothBorders,\n BottomBorder,\n LeftBorder,\n RightBorder,\n TopBorder,\n} from '../../../core/components/threshold-bar/types.js';\nimport type { XYChartAxisInternal } from '../../types/xy-chart-internals.js';\n\nexport function getBorderThresholds(\n left: XYChartAxisInternal | undefined,\n right: XYChartAxisInternal | undefined,\n top: XYChartAxisInternal | undefined,\n bottom: XYChartAxisInternal | undefined,\n) {\n const leftBorder = !left || left.hidden ? BothBorders : LeftBorder;\n const rightBorder = !right || right.hidden ? BothBorders : RightBorder;\n const topBorder = !top || top.hidden ? BothBorders : TopBorder;\n const bottomBorder = !bottom || bottom.hidden ? BothBorders : BottomBorder;\n return { leftBorder, rightBorder, topBorder, bottomBorder };\n}\n"],
|
|
5
|
+
"mappings": "AAAA;AAAA,EACE;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,OACK;AAGA,SAAS,oBACd,MACA,OACA,KACA,QACA;AACA,QAAM,aAAa,CAAC,QAAQ,KAAK,SAAS,cAAc;AACxD,QAAM,cAAc,CAAC,SAAS,MAAM,SAAS,cAAc;AAC3D,QAAM,YAAY,CAAC,OAAO,IAAI,SAAS,cAAc;AACrD,QAAM,eAAe,CAAC,UAAU,OAAO,SAAS,cAAc;AAC9D,SAAO,EAAE,YAAY,aAAa,WAAW,aAAa;AAC5D;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { isDataRangeX } from "./type-guards.js";
|
|
2
|
+
const getXValue = (data, type) => {
|
|
3
|
+
const key = type === "min" ? "xMin" : "xMax";
|
|
4
|
+
if (isDataRangeX(data)) {
|
|
5
|
+
return data[key];
|
|
6
|
+
}
|
|
7
|
+
return data.x;
|
|
8
|
+
};
|
|
9
|
+
export {
|
|
10
|
+
getXValue
|
|
11
|
+
};
|
|
12
|
+
//# sourceMappingURL=get-x-value.js.map
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../../../../../src/charts/xy-chart/components/thresholds/get-x-value.ts"],
|
|
4
|
+
"sourcesContent": ["import { isDataRangeX } from './type-guards.js';\nimport type { _XYChartThresholdXStaticData } from '../../types/xy-chart-props.js';\n\n/**\n * Retrieves either the 'xMin' or 'xMax' value from `data` based on `type`,\n * defaulting to `data.x` when the range keys are absent. Mirrors {@link getYValue}\n * for X-axis-bound (vertical) thresholds.\n *\n * @param data - Object containing potential 'xMin', 'xMax', or 'x' properties.\n * @param type - Specifies whether to retrieve 'min' (xMin) or 'max' (xMax).\n * @returns The 'xMin', 'xMax', or 'x' value from the data object.\n */\nexport const getXValue = (\n data: _XYChartThresholdXStaticData,\n type: 'min' | 'max',\n) => {\n const key = type === 'min' ? 'xMin' : 'xMax';\n if (isDataRangeX(data)) {\n return data[key];\n }\n\n return data.x;\n};\n"],
|
|
5
|
+
"mappings": "AAAA,SAAS,oBAAoB;AAYtB,MAAM,YAAY,CACvB,MACA,SACG;AACH,QAAM,MAAM,SAAS,QAAQ,SAAS;AACtC,MAAI,aAAa,IAAI,GAAG;AACtB,WAAO,KAAK,GAAG;AAAA,EACjB;AAEA,SAAO,KAAK;AACd;",
|
|
6
|
+
"names": []
|
|
7
|
+
}
|
|
@@ -1,11 +1,23 @@
|
|
|
1
1
|
const isDataRange = (obj) => {
|
|
2
2
|
return typeof obj === "object" && obj !== null && "yMin" in obj && "yMax" in obj;
|
|
3
3
|
};
|
|
4
|
+
const isDataRangeX = (obj) => {
|
|
5
|
+
return typeof obj === "object" && obj !== null && "xMin" in obj && "xMax" in obj;
|
|
6
|
+
};
|
|
4
7
|
const isThresholdDynamic = (obj) => {
|
|
5
8
|
return "xAxisId" in obj && Array.isArray(obj.data);
|
|
6
9
|
};
|
|
10
|
+
const isThresholdXStatic = (obj) => {
|
|
11
|
+
return "xAxisId" in obj && !Array.isArray(obj.data) && typeof obj.data === "object" && obj.data !== null && ("x" in obj.data || "xMin" in obj.data);
|
|
12
|
+
};
|
|
13
|
+
const isThresholdXStaticInternal = (threshold) => {
|
|
14
|
+
return "xAxisId" in threshold && !("yAxisId" in threshold);
|
|
15
|
+
};
|
|
7
16
|
export {
|
|
8
17
|
isDataRange,
|
|
9
|
-
|
|
18
|
+
isDataRangeX,
|
|
19
|
+
isThresholdDynamic,
|
|
20
|
+
isThresholdXStatic,
|
|
21
|
+
isThresholdXStaticInternal
|
|
10
22
|
};
|
|
11
23
|
//# sourceMappingURL=type-guards.js.map
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../../../../../src/charts/xy-chart/components/thresholds/type-guards.ts"],
|
|
4
|
-
"sourcesContent": ["import {\n XYChartThresholdDynamicProps,\n XYChartThresholdIndicatorProps,\n} from '../../types/xy-chart-props.js';\nimport {\n XYChartThresholdData,\n type XYChartThresholdRangeBase,\n} from '../../types/xy-chart.js';\n\n/**\n * Type guard to check if a given object is of type DataRangeStatic.\n *\n * @param obj - The object to check.\n * @returns True if the object is a DataRangeStatic, false otherwise.\n */\nexport const isDataRange = (\n obj: XYChartThresholdData,\n): obj is XYChartThresholdRangeBase => {\n return (\n typeof obj === 'object' && obj !== null && 'yMin' in obj && 'yMax' in obj\n );\n};\n\nexport const isThresholdDynamic = (\n obj: XYChartThresholdIndicatorProps,\n): obj is XYChartThresholdDynamicProps => {\n return 'xAxisId' in obj && Array.isArray(obj.data);\n};\n"],
|
|
5
|
-
"mappings": "
|
|
4
|
+
"sourcesContent": ["import type {\n XYChartThresholdsPropsInternal,\n XYChartThresholdXStaticPropsInternal,\n} from '../../types/xy-chart-internals.js';\nimport {\n XYChartThresholdDynamicProps,\n XYChartThresholdIndicatorProps,\n _XYChartThresholdDataXRangeStatic,\n _XYChartThresholdStaticXProps,\n _XYChartThresholdXStaticData,\n} from '../../types/xy-chart-props.js';\nimport {\n XYChartThresholdData,\n type XYChartThresholdRangeBase,\n} from '../../types/xy-chart.js';\n\n/**\n * Type guard to check if a given object is of type DataRangeStatic.\n *\n * @param obj - The object to check.\n * @returns True if the object is a DataRangeStatic, false otherwise.\n */\nexport const isDataRange = (\n obj: XYChartThresholdData,\n): obj is XYChartThresholdRangeBase => {\n return (\n typeof obj === 'object' && obj !== null && 'yMin' in obj && 'yMax' in obj\n );\n};\n\n/**\n * Type guard to check if a given X-axis threshold data object is a range (vertical band).\n *\n * @param obj - The object to check.\n * @returns True if the object is an X-axis range, false otherwise.\n */\nexport const isDataRangeX = (\n obj: _XYChartThresholdXStaticData,\n): obj is _XYChartThresholdDataXRangeStatic => {\n return (\n typeof obj === 'object' && obj !== null && 'xMin' in obj && 'xMax' in obj\n );\n};\n\nexport const isThresholdDynamic = (\n obj: XYChartThresholdIndicatorProps,\n): obj is XYChartThresholdDynamicProps => {\n return 'xAxisId' in obj && Array.isArray(obj.data);\n};\n\n/**\n * Type guard for a static threshold bound to the X axis (vertical line or band).\n * Distinguished from the dynamic path by its non-array `data`.\n *\n * @param obj - The threshold props to check.\n * @returns True if the threshold is an X-axis static threshold, false otherwise.\n */\nexport const isThresholdXStatic = (\n obj: XYChartThresholdIndicatorProps | _XYChartThresholdStaticXProps,\n): obj is _XYChartThresholdStaticXProps => {\n return (\n 'xAxisId' in obj &&\n !Array.isArray(obj.data) &&\n typeof obj.data === 'object' &&\n obj.data !== null &&\n ('x' in obj.data || 'xMin' in obj.data)\n );\n};\n\n/**\n * Type guard for the internal representation of an X-axis static threshold.\n * X-static is the only internal variant with an `xAxisId` but no `yAxisId`.\n *\n * @param threshold - The internal threshold to check.\n * @returns True if the threshold is an internal X-axis static threshold.\n */\nexport const isThresholdXStaticInternal = (\n threshold: XYChartThresholdsPropsInternal[number],\n): threshold is XYChartThresholdXStaticPropsInternal => {\n return 'xAxisId' in threshold && !('yAxisId' in threshold);\n};\n"],
|
|
5
|
+
"mappings": "AAsBO,MAAM,cAAc,CACzB,QACqC;AACrC,SACE,OAAO,QAAQ,YAAY,QAAQ,QAAQ,UAAU,OAAO,UAAU;AAE1E;AAQO,MAAM,eAAe,CAC1B,QAC6C;AAC7C,SACE,OAAO,QAAQ,YAAY,QAAQ,QAAQ,UAAU,OAAO,UAAU;AAE1E;AAEO,MAAM,qBAAqB,CAChC,QACwC;AACxC,SAAO,aAAa,OAAO,MAAM,QAAQ,IAAI,IAAI;AACnD;AASO,MAAM,qBAAqB,CAChC,QACyC;AACzC,SACE,aAAa,OACb,CAAC,MAAM,QAAQ,IAAI,IAAI,KACvB,OAAO,IAAI,SAAS,YACpB,IAAI,SAAS,SACZ,OAAO,IAAI,QAAQ,UAAU,IAAI;AAEtC;AASO,MAAM,6BAA6B,CACxC,cACsD;AACtD,SAAO,aAAa,aAAa,EAAE,aAAa;AAClD;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
import { scaleLinear } from "d3-scale";
|
|
2
2
|
import { minBy, maxBy } from "lodash-es";
|
|
3
|
+
import { getXValue } from "./get-x-value.js";
|
|
3
4
|
import { getYValue } from "./get-y-value.js";
|
|
4
|
-
import {
|
|
5
|
+
import {
|
|
6
|
+
isThresholdDynamic,
|
|
7
|
+
isThresholdXStaticInternal
|
|
8
|
+
} from "./type-guards.js";
|
|
5
9
|
import { getMarkerValue } from "../../../core/components/threshold-bar/utils/get-marker-value.js";
|
|
6
10
|
import { getThresholdPixel } from "../../../core/components/threshold-bar/utils/get-threshold-pixel.ts.js";
|
|
7
11
|
import { THRESHOLD } from "../../../core/messages.js";
|
|
@@ -51,6 +55,9 @@ function markersReducer({
|
|
|
51
55
|
axes
|
|
52
56
|
}) {
|
|
53
57
|
return (acc, threshold) => {
|
|
58
|
+
if (isThresholdXStaticInternal(threshold)) {
|
|
59
|
+
return acc;
|
|
60
|
+
}
|
|
54
61
|
if (!axes.find((axis2) => axis2.id === threshold.yAxisId)) {
|
|
55
62
|
return acc;
|
|
56
63
|
}
|
|
@@ -114,20 +121,79 @@ function markersReducer({
|
|
|
114
121
|
return acc;
|
|
115
122
|
};
|
|
116
123
|
}
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
124
|
+
function xMarkersReducer({
|
|
125
|
+
axis,
|
|
126
|
+
axisConfig,
|
|
127
|
+
axesIdToScales,
|
|
128
|
+
axesIdToFormatter,
|
|
129
|
+
width,
|
|
130
|
+
axes
|
|
131
|
+
}) {
|
|
132
|
+
return (acc, threshold) => {
|
|
133
|
+
if (!isThresholdXStaticInternal(threshold)) {
|
|
134
|
+
return acc;
|
|
135
|
+
}
|
|
136
|
+
if (!axes.find((a) => a.id === threshold.xAxisId)) {
|
|
137
|
+
return acc;
|
|
138
|
+
}
|
|
139
|
+
if (xAxisPositionIncludes(axis)(threshold.position)) {
|
|
140
|
+
const xScale = getCurrentScale(
|
|
141
|
+
axesIdToScales,
|
|
142
|
+
threshold.xAxisId
|
|
143
|
+
);
|
|
144
|
+
const markerDomain = {
|
|
145
|
+
x0: getXValue(threshold.data, "min"),
|
|
146
|
+
x1: getXValue(threshold.data, "max")
|
|
147
|
+
};
|
|
148
|
+
acc.push({
|
|
149
|
+
...threshold,
|
|
150
|
+
y0: getThresholdPixel(markerDomain.x0, xScale),
|
|
151
|
+
y1: getThresholdPixel(markerDomain.x1, xScale),
|
|
152
|
+
value: getMarkerValue(
|
|
153
|
+
{ y0: markerDomain.x0, y1: markerDomain.x1 },
|
|
154
|
+
getAxisFormatterWithTimeFallback({
|
|
155
|
+
axisConfig,
|
|
156
|
+
axisId: threshold.xAxisId,
|
|
157
|
+
scale: xScale,
|
|
158
|
+
axesIdToFormatter,
|
|
159
|
+
width
|
|
160
|
+
})
|
|
161
|
+
)
|
|
162
|
+
});
|
|
163
|
+
}
|
|
164
|
+
return acc;
|
|
165
|
+
};
|
|
166
|
+
}
|
|
123
167
|
const axisPositionIncludes = (expectedPosition) => (actualPosition) => {
|
|
124
168
|
return [expectedPosition, "both"].includes(actualPosition);
|
|
125
169
|
};
|
|
170
|
+
const xAxisPositionIncludes = (expectedPosition) => (actualPosition) => {
|
|
171
|
+
return [expectedPosition, "both"].includes(actualPosition);
|
|
172
|
+
};
|
|
126
173
|
const mapIndicatorDataFrom = ({
|
|
127
174
|
axisIdToScales,
|
|
128
175
|
threshold,
|
|
129
|
-
width
|
|
176
|
+
width,
|
|
177
|
+
height
|
|
130
178
|
}) => {
|
|
179
|
+
if (isThresholdXStaticInternal(threshold)) {
|
|
180
|
+
const xScale = getCurrentScale(
|
|
181
|
+
axisIdToScales,
|
|
182
|
+
threshold.xAxisId
|
|
183
|
+
);
|
|
184
|
+
const xMinScaleValue = getThresholdPixel(
|
|
185
|
+
getXValue(threshold.data, "min"),
|
|
186
|
+
xScale
|
|
187
|
+
);
|
|
188
|
+
const xMaxScaleValue = getThresholdPixel(
|
|
189
|
+
getXValue(threshold.data, "max"),
|
|
190
|
+
xScale
|
|
191
|
+
);
|
|
192
|
+
return [
|
|
193
|
+
{ x0: xMinScaleValue, x1: xMaxScaleValue, y0: 0, y1: 0 },
|
|
194
|
+
{ x0: xMinScaleValue, x1: xMaxScaleValue, y0: height, y1: height }
|
|
195
|
+
];
|
|
196
|
+
}
|
|
131
197
|
const yScale = getCurrentScale(
|
|
132
198
|
axisIdToScales,
|
|
133
199
|
threshold.yAxisId
|
|
@@ -178,10 +244,11 @@ const mapIndicatorDataFrom = ({
|
|
|
178
244
|
}
|
|
179
245
|
};
|
|
180
246
|
export {
|
|
181
|
-
axesPositionsIncludes,
|
|
182
247
|
axisPositionIncludes,
|
|
183
248
|
getDynamicThresholdDomain,
|
|
184
249
|
mapIndicatorDataFrom,
|
|
185
|
-
markersReducer
|
|
250
|
+
markersReducer,
|
|
251
|
+
xAxisPositionIncludes,
|
|
252
|
+
xMarkersReducer
|
|
186
253
|
};
|
|
187
254
|
//# sourceMappingURL=utils.js.map
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../../../../../src/charts/xy-chart/components/thresholds/utils.ts"],
|
|
4
|
-
"sourcesContent": ["import { scaleLinear } from 'd3-scale';\nimport { minBy, maxBy } from 'lodash-es';\n\nimport { getYValue } from './get-y-value.js';\nimport { isThresholdDynamic } from './type-guards.js';\nimport { type ThresholdIndicatorData } from '../../../core/components/threshold-bar/indicators/ThresholdIndicator.js';\nimport type { ThresholdMarker } from '../../../core/components/threshold-bar/types.js';\nimport { getMarkerValue } from '../../../core/components/threshold-bar/utils/get-marker-value.js';\nimport { getThresholdPixel } from '../../../core/components/threshold-bar/utils/get-threshold-pixel.ts.js';\nimport { THRESHOLD } from '../../../core/messages.js';\nimport type { MinMax } from '../../../core/types/min-max.js';\nimport type { AnyNumberScale } from '../../../core/types/scales.js';\nimport type { AxisIdToScales } from '../../context/XYChartScales.context.js';\nimport type {\n AxisIdToFormatter,\n XYChartAxisInternal,\n XYChartThresholdsPropsInternal,\n} from '../../types/xy-chart-internals.js';\nimport type {\n XYChartThresholdDataLineStatic,\n XYChartThresholdDataRangeStatic,\n XYChartThresholdDynamicData,\n XYChartYAxisPosition,\n} from '../../types/xy-chart.js';\nimport { getCurrentScale } from '../../utils/get-scale.js';\nimport { getAxisFormatterWithTimeFallback } from '../overlay/utils/get-axis-formatter-with-time-fallback.js';\n\ninterface ThresholdMarkersReducerConfig {\n axis: 'left' | 'right';\n axisConfig?: XYChartAxisInternal;\n axesIdToScales: AxisIdToScales;\n axesIdToFormatter: AxisIdToFormatter;\n width: number;\n axes: XYChartAxisInternal[];\n}\n\nexport function getDynamicThresholdDomain(\n data: XYChartThresholdDynamicData[],\n side: 'left' | 'right',\n visibleDomain: MinMax,\n) {\n const minXPoint = findPointWithMinX(data);\n const maxXPoint = findPointWithMaxX(data);\n\n const targetXDomain = side === 'left' ? visibleDomain.min : visibleDomain.max;\n\n if (targetXDomain <= minXPoint.x.valueOf()) {\n return getYRangeFromPoint(minXPoint);\n }\n if (targetXDomain >= maxXPoint.x.valueOf()) {\n return getYRangeFromPoint(maxXPoint);\n }\n return interpolateYRange(data, targetXDomain);\n}\n\nfunction findPointWithMinX(data: XYChartThresholdDynamicData[]) {\n return minBy(data, (point) => point.x.valueOf()) ?? data[0];\n}\n\nfunction findPointWithMaxX(data: XYChartThresholdDynamicData[]) {\n return maxBy(data, (point) => point.x.valueOf()) ?? data[data.length - 1];\n}\n\nfunction getYRangeFromPoint(point: XYChartThresholdDynamicData) {\n return {\n y0: getYValue(point, 'min'),\n y1: getYValue(point, 'max'),\n };\n}\nfunction interpolateYRange(\n data: XYChartThresholdDynamicData[],\n targetX: number,\n) {\n const xValues = data.map((point) => Number(point.x));\n const minYValues = data.map((point) => getYValue(point, 'min'));\n const maxYValues = data.map((point) => getYValue(point, 'max'));\n const minYScale = scaleLinear(xValues, minYValues).clamp(true);\n const maxYScale = scaleLinear(xValues, maxYValues).clamp(true);\n\n return {\n y0: minYScale(targetX),\n y1: maxYScale(targetX),\n };\n}\n\n/**\n * Returns a reducer function to accumulate threshold markers with scale and formatted value.\n */\nexport function markersReducer({\n axis,\n axisConfig,\n axesIdToScales,\n axesIdToFormatter,\n width,\n axes,\n}: ThresholdMarkersReducerConfig) {\n return (\n acc: ThresholdMarker[],\n threshold: XYChartThresholdsPropsInternal[number],\n ) => {\n // TODO: workaround to dont let chart break. follow up APPDEV-16553\n // workaround applied after adding the new filtering series | toggling visible axis\n // we should refactor how we manage the threshold instead\n\n if (!axes.find((axis) => axis.id === threshold.yAxisId)) {\n return acc;\n }\n\n if (axisPositionIncludes(axis)(threshold.position)) {\n const yScale = getCurrentScale(\n axesIdToScales,\n threshold.yAxisId,\n ) as AnyNumberScale;\n\n if (isThresholdDynamic(threshold)) {\n const xScale = getCurrentScale(\n axesIdToScales,\n threshold.xAxisId,\n ) as AnyNumberScale;\n const data = threshold.data;\n const minElement = minBy(data, (e) => getYValue(e, 'min'));\n const maxElement = maxBy(data, (e) => getYValue(e, 'max'));\n\n if (!minElement || !maxElement) {\n return acc;\n }\n\n acc.push({\n ...threshold,\n y0: getThresholdPixel(getYValue(minElement, 'min'), yScale),\n y1: getThresholdPixel(getYValue(maxElement, 'max'), yScale),\n value: 'dynamic',\n isShadow: true,\n });\n\n const domain = xScale.domain();\n const xMinMax = {\n min: domain[0].valueOf(),\n max: domain[1].valueOf(),\n };\n\n const { y0, y1 } = getDynamicThresholdDomain(data, axis, xMinMax);\n\n acc.push({\n ...threshold,\n y0: getThresholdPixel(y0, yScale),\n y1: getThresholdPixel(y1, yScale),\n value: THRESHOLD.dynamic.defaultMessage,\n });\n } else {\n const markerDomain = {\n y0: getYValue(threshold.data, 'min'),\n y1: getYValue(threshold.data, 'max'),\n };\n\n acc.push({\n ...threshold,\n y0: getThresholdPixel(markerDomain.y0, yScale),\n y1: getThresholdPixel(markerDomain.y1, yScale),\n value: getMarkerValue(\n markerDomain,\n getAxisFormatterWithTimeFallback({\n axisConfig,\n axisId: threshold.yAxisId,\n scale: yScale,\n axesIdToFormatter,\n width,\n }),\n ),\n });\n }\n }\n return acc;\n };\n}\n\nexport const axesPositionsIncludes = (\n axisPosition: 'left' | 'right',\n axesPositions: { position: XYChartYAxisPosition }[],\n) => {\n const expectedPositionsIncludes = axisPositionIncludes(axisPosition);\n\n return !!axesPositions.find(({ position }) =>\n expectedPositionsIncludes(position),\n );\n};\n\nexport const axisPositionIncludes =\n (expectedPosition: 'left' | 'right') =>\n (actualPosition: 'left' | 'right' | 'both') => {\n return [expectedPosition, 'both'].includes(actualPosition);\n };\n\ntype IndicatorData = (args: {\n axisIdToScales: AxisIdToScales;\n threshold: XYChartThresholdsPropsInternal[number];\n width: number;\n}) => ThresholdIndicatorData[];\n\nexport const mapIndicatorDataFrom: IndicatorData = ({\n axisIdToScales,\n threshold,\n width,\n}) => {\n const yScale = getCurrentScale(\n axisIdToScales,\n threshold.yAxisId,\n ) as AnyNumberScale;\n\n if (isThresholdDynamic(threshold)) {\n const data: XYChartThresholdDynamicData[] = threshold.data;\n\n const xScale = getCurrentScale(\n axisIdToScales,\n threshold.xAxisId,\n ) as AnyNumberScale;\n\n const initialSegment = {\n x0: 0,\n x1: 0,\n y0: getThresholdPixel(getYValue(data[0], 'min'), yScale),\n y1: getThresholdPixel(getYValue(data[0], 'max'), yScale),\n };\n\n const finalSegment = {\n x0: width,\n x1: width,\n y0: getThresholdPixel(getYValue(data[data.length - 1], 'min'), yScale),\n y1: getThresholdPixel(getYValue(data[data.length - 1], 'max'), yScale),\n };\n\n const segments = data.map((coordinate) => ({\n x0: getThresholdPixel(coordinate.x, xScale),\n x1: getThresholdPixel(coordinate.x, xScale),\n y0: getThresholdPixel(getYValue(coordinate, 'min'), yScale),\n y1: getThresholdPixel(getYValue(coordinate, 'max'), yScale),\n }));\n\n return [initialSegment, ...segments, finalSegment];\n } else {\n const data = threshold.data as\n | XYChartThresholdDataRangeStatic\n | XYChartThresholdDataLineStatic;\n\n const yMinScaleValue = getThresholdPixel(getYValue(data, 'min'), yScale);\n const yMaxScaleValue = getThresholdPixel(getYValue(data, 'max'), yScale);\n\n return [\n {\n x0: 0,\n x1: 0,\n y0: yMinScaleValue,\n y1: yMaxScaleValue,\n },\n {\n x0: width,\n x1: width,\n y0: yMinScaleValue,\n y1: yMaxScaleValue,\n },\n ];\n }\n};\n"],
|
|
5
|
-
"mappings": "AAAA,SAAS,mBAAmB;AAC5B,SAAS,OAAO,aAAa;AAE7B,SAAS,iBAAiB;AAC1B,SAAS,
|
|
4
|
+
"sourcesContent": ["import { scaleLinear } from 'd3-scale';\nimport { minBy, maxBy } from 'lodash-es';\n\nimport { getXValue } from './get-x-value.js';\nimport { getYValue } from './get-y-value.js';\nimport {\n isThresholdDynamic,\n isThresholdXStaticInternal,\n} from './type-guards.js';\nimport { type ThresholdIndicatorData } from '../../../core/components/threshold-bar/indicators/ThresholdIndicator.js';\nimport type { ThresholdMarker } from '../../../core/components/threshold-bar/types.js';\nimport { getMarkerValue } from '../../../core/components/threshold-bar/utils/get-marker-value.js';\nimport { getThresholdPixel } from '../../../core/components/threshold-bar/utils/get-threshold-pixel.ts.js';\nimport { THRESHOLD } from '../../../core/messages.js';\nimport type { MinMax } from '../../../core/types/min-max.js';\nimport type { AnyNumberScale } from '../../../core/types/scales.js';\nimport type { AxisIdToScales } from '../../context/XYChartScales.context.js';\nimport type {\n AxisIdToFormatter,\n XYChartAxisInternal,\n XYChartThresholdsPropsInternal,\n} from '../../types/xy-chart-internals.js';\nimport type {\n XYChartThresholdDataLineStatic,\n XYChartThresholdDataRangeStatic,\n XYChartThresholdDynamicData,\n XYChartXAxisPosition,\n XYChartYAxisPosition,\n} from '../../types/xy-chart.js';\nimport { getCurrentScale } from '../../utils/get-scale.js';\nimport { getAxisFormatterWithTimeFallback } from '../overlay/utils/get-axis-formatter-with-time-fallback.js';\n\ninterface ThresholdMarkersReducerConfig {\n axis: 'left' | 'right';\n axisConfig?: XYChartAxisInternal;\n axesIdToScales: AxisIdToScales;\n axesIdToFormatter: AxisIdToFormatter;\n width: number;\n axes: XYChartAxisInternal[];\n}\n\nexport function getDynamicThresholdDomain(\n data: XYChartThresholdDynamicData[],\n side: 'left' | 'right',\n visibleDomain: MinMax,\n) {\n const minXPoint = findPointWithMinX(data);\n const maxXPoint = findPointWithMaxX(data);\n\n const targetXDomain = side === 'left' ? visibleDomain.min : visibleDomain.max;\n\n if (targetXDomain <= minXPoint.x.valueOf()) {\n return getYRangeFromPoint(minXPoint);\n }\n if (targetXDomain >= maxXPoint.x.valueOf()) {\n return getYRangeFromPoint(maxXPoint);\n }\n return interpolateYRange(data, targetXDomain);\n}\n\nfunction findPointWithMinX(data: XYChartThresholdDynamicData[]) {\n return minBy(data, (point) => point.x.valueOf()) ?? data[0];\n}\n\nfunction findPointWithMaxX(data: XYChartThresholdDynamicData[]) {\n return maxBy(data, (point) => point.x.valueOf()) ?? data[data.length - 1];\n}\n\nfunction getYRangeFromPoint(point: XYChartThresholdDynamicData) {\n return {\n y0: getYValue(point, 'min'),\n y1: getYValue(point, 'max'),\n };\n}\nfunction interpolateYRange(\n data: XYChartThresholdDynamicData[],\n targetX: number,\n) {\n const xValues = data.map((point) => Number(point.x));\n const minYValues = data.map((point) => getYValue(point, 'min'));\n const maxYValues = data.map((point) => getYValue(point, 'max'));\n const minYScale = scaleLinear(xValues, minYValues).clamp(true);\n const maxYScale = scaleLinear(xValues, maxYValues).clamp(true);\n\n return {\n y0: minYScale(targetX),\n y1: maxYScale(targetX),\n };\n}\n\n/**\n * Returns a reducer function to accumulate threshold markers with scale and formatted value.\n */\nexport function markersReducer({\n axis,\n axisConfig,\n axesIdToScales,\n axesIdToFormatter,\n width,\n axes,\n}: ThresholdMarkersReducerConfig) {\n return (\n acc: ThresholdMarker[],\n threshold: XYChartThresholdsPropsInternal[number],\n ) => {\n // X-static thresholds render in the top/bottom bars via xMarkersReducer.\n if (isThresholdXStaticInternal(threshold)) {\n return acc;\n }\n\n // Skip when the bound Y axis is not present (e.g. toggled off via filtering).\n if (!axes.find((axis) => axis.id === threshold.yAxisId)) {\n return acc;\n }\n\n if (axisPositionIncludes(axis)(threshold.position)) {\n const yScale = getCurrentScale(\n axesIdToScales,\n threshold.yAxisId,\n ) as AnyNumberScale;\n\n if (isThresholdDynamic(threshold)) {\n const xScale = getCurrentScale(\n axesIdToScales,\n threshold.xAxisId,\n ) as AnyNumberScale;\n const data = threshold.data;\n const minElement = minBy(data, (e) => getYValue(e, 'min'));\n const maxElement = maxBy(data, (e) => getYValue(e, 'max'));\n\n if (!minElement || !maxElement) {\n return acc;\n }\n\n acc.push({\n ...threshold,\n y0: getThresholdPixel(getYValue(minElement, 'min'), yScale),\n y1: getThresholdPixel(getYValue(maxElement, 'max'), yScale),\n value: 'dynamic',\n isShadow: true,\n });\n\n const domain = xScale.domain();\n const xMinMax = {\n min: domain[0].valueOf(),\n max: domain[1].valueOf(),\n };\n\n const { y0, y1 } = getDynamicThresholdDomain(data, axis, xMinMax);\n\n acc.push({\n ...threshold,\n y0: getThresholdPixel(y0, yScale),\n y1: getThresholdPixel(y1, yScale),\n value: THRESHOLD.dynamic.defaultMessage,\n });\n } else {\n const markerDomain = {\n y0: getYValue(threshold.data, 'min'),\n y1: getYValue(threshold.data, 'max'),\n };\n\n acc.push({\n ...threshold,\n y0: getThresholdPixel(markerDomain.y0, yScale),\n y1: getThresholdPixel(markerDomain.y1, yScale),\n value: getMarkerValue(\n markerDomain,\n getAxisFormatterWithTimeFallback({\n axisConfig,\n axisId: threshold.yAxisId,\n scale: yScale,\n axesIdToFormatter,\n width,\n }),\n ),\n });\n }\n }\n return acc;\n };\n}\n\ninterface XThresholdMarkersReducerConfig {\n axis: 'top' | 'bottom';\n axisConfig?: XYChartAxisInternal;\n axesIdToScales: AxisIdToScales;\n axesIdToFormatter: AxisIdToFormatter;\n width: number;\n axes: XYChartAxisInternal[];\n}\n\n/**\n * Reducer that accumulates the horizontal (X-axis static) threshold markers for the\n * top/bottom pill bars. Mirrors {@link markersReducer}, using the X scale and binding\n * to `xAxisId`. Non X-static thresholds are ignored.\n */\nexport function xMarkersReducer({\n axis,\n axisConfig,\n axesIdToScales,\n axesIdToFormatter,\n width,\n axes,\n}: XThresholdMarkersReducerConfig) {\n return (\n acc: ThresholdMarker[],\n threshold: XYChartThresholdsPropsInternal[number],\n ) => {\n if (!isThresholdXStaticInternal(threshold)) {\n return acc;\n }\n\n // Skip when the bound X axis is not present (e.g. toggled off via filtering).\n if (!axes.find((a) => a.id === threshold.xAxisId)) {\n return acc;\n }\n\n if (xAxisPositionIncludes(axis)(threshold.position)) {\n const xScale = getCurrentScale(\n axesIdToScales,\n threshold.xAxisId,\n ) as AnyNumberScale;\n\n const markerDomain = {\n x0: getXValue(threshold.data, 'min'),\n x1: getXValue(threshold.data, 'max'),\n };\n\n acc.push({\n ...threshold,\n y0: getThresholdPixel(markerDomain.x0, xScale),\n y1: getThresholdPixel(markerDomain.x1, xScale),\n value: getMarkerValue(\n { y0: markerDomain.x0, y1: markerDomain.x1 },\n getAxisFormatterWithTimeFallback({\n axisConfig,\n axisId: threshold.xAxisId,\n scale: xScale,\n axesIdToFormatter,\n width,\n }),\n ),\n });\n }\n return acc;\n };\n}\n\nexport const axisPositionIncludes =\n (expectedPosition: 'left' | 'right') =>\n (actualPosition: XYChartYAxisPosition | XYChartXAxisPosition) => {\n return [expectedPosition, 'both'].includes(actualPosition);\n };\n\nexport const xAxisPositionIncludes =\n (expectedPosition: 'top' | 'bottom') =>\n (actualPosition: XYChartYAxisPosition | XYChartXAxisPosition) => {\n return [expectedPosition, 'both'].includes(actualPosition);\n };\n\ntype IndicatorData = (args: {\n axisIdToScales: AxisIdToScales;\n threshold: XYChartThresholdsPropsInternal[number];\n width: number;\n height: number;\n}) => ThresholdIndicatorData[];\n\nexport const mapIndicatorDataFrom: IndicatorData = ({\n axisIdToScales,\n threshold,\n width,\n height,\n}) => {\n if (isThresholdXStaticInternal(threshold)) {\n const xScale = getCurrentScale(\n axisIdToScales,\n threshold.xAxisId,\n ) as AnyNumberScale;\n\n const xMinScaleValue = getThresholdPixel(\n getXValue(threshold.data, 'min'),\n xScale,\n );\n const xMaxScaleValue = getThresholdPixel(\n getXValue(threshold.data, 'max'),\n xScale,\n );\n\n return [\n { x0: xMinScaleValue, x1: xMaxScaleValue, y0: 0, y1: 0 },\n { x0: xMinScaleValue, x1: xMaxScaleValue, y0: height, y1: height },\n ];\n }\n\n const yScale = getCurrentScale(\n axisIdToScales,\n threshold.yAxisId,\n ) as AnyNumberScale;\n\n if (isThresholdDynamic(threshold)) {\n const data: XYChartThresholdDynamicData[] = threshold.data;\n\n const xScale = getCurrentScale(\n axisIdToScales,\n threshold.xAxisId,\n ) as AnyNumberScale;\n\n const initialSegment = {\n x0: 0,\n x1: 0,\n y0: getThresholdPixel(getYValue(data[0], 'min'), yScale),\n y1: getThresholdPixel(getYValue(data[0], 'max'), yScale),\n };\n\n const finalSegment = {\n x0: width,\n x1: width,\n y0: getThresholdPixel(getYValue(data[data.length - 1], 'min'), yScale),\n y1: getThresholdPixel(getYValue(data[data.length - 1], 'max'), yScale),\n };\n\n const segments = data.map((coordinate) => ({\n x0: getThresholdPixel(coordinate.x, xScale),\n x1: getThresholdPixel(coordinate.x, xScale),\n y0: getThresholdPixel(getYValue(coordinate, 'min'), yScale),\n y1: getThresholdPixel(getYValue(coordinate, 'max'), yScale),\n }));\n\n return [initialSegment, ...segments, finalSegment];\n } else {\n const data = threshold.data as\n | XYChartThresholdDataRangeStatic\n | XYChartThresholdDataLineStatic;\n\n const yMinScaleValue = getThresholdPixel(getYValue(data, 'min'), yScale);\n const yMaxScaleValue = getThresholdPixel(getYValue(data, 'max'), yScale);\n\n return [\n {\n x0: 0,\n x1: 0,\n y0: yMinScaleValue,\n y1: yMaxScaleValue,\n },\n {\n x0: width,\n x1: width,\n y0: yMinScaleValue,\n y1: yMaxScaleValue,\n },\n ];\n }\n};\n"],
|
|
5
|
+
"mappings": "AAAA,SAAS,mBAAmB;AAC5B,SAAS,OAAO,aAAa;AAE7B,SAAS,iBAAiB;AAC1B,SAAS,iBAAiB;AAC1B;AAAA,EACE;AAAA,EACA;AAAA,OACK;AAGP,SAAS,sBAAsB;AAC/B,SAAS,yBAAyB;AAClC,SAAS,iBAAiB;AAgB1B,SAAS,uBAAuB;AAChC,SAAS,wCAAwC;AAW1C,SAAS,0BACd,MACA,MACA,eACA;AACA,QAAM,YAAY,kBAAkB,IAAI;AACxC,QAAM,YAAY,kBAAkB,IAAI;AAExC,QAAM,gBAAgB,SAAS,SAAS,cAAc,MAAM,cAAc;AAE1E,MAAI,iBAAiB,UAAU,EAAE,QAAQ,GAAG;AAC1C,WAAO,mBAAmB,SAAS;AAAA,EACrC;AACA,MAAI,iBAAiB,UAAU,EAAE,QAAQ,GAAG;AAC1C,WAAO,mBAAmB,SAAS;AAAA,EACrC;AACA,SAAO,kBAAkB,MAAM,aAAa;AAC9C;AAEA,SAAS,kBAAkB,MAAqC;AAC9D,SAAO,MAAM,MAAM,CAAC,UAAU,MAAM,EAAE,QAAQ,CAAC,KAAK,KAAK,CAAC;AAC5D;AAEA,SAAS,kBAAkB,MAAqC;AAC9D,SAAO,MAAM,MAAM,CAAC,UAAU,MAAM,EAAE,QAAQ,CAAC,KAAK,KAAK,KAAK,SAAS,CAAC;AAC1E;AAEA,SAAS,mBAAmB,OAAoC;AAC9D,SAAO;AAAA,IACL,IAAI,UAAU,OAAO,KAAK;AAAA,IAC1B,IAAI,UAAU,OAAO,KAAK;AAAA,EAC5B;AACF;AACA,SAAS,kBACP,MACA,SACA;AACA,QAAM,UAAU,KAAK,IAAI,CAAC,UAAU,OAAO,MAAM,CAAC,CAAC;AACnD,QAAM,aAAa,KAAK,IAAI,CAAC,UAAU,UAAU,OAAO,KAAK,CAAC;AAC9D,QAAM,aAAa,KAAK,IAAI,CAAC,UAAU,UAAU,OAAO,KAAK,CAAC;AAC9D,QAAM,YAAY,YAAY,SAAS,UAAU,EAAE,MAAM,IAAI;AAC7D,QAAM,YAAY,YAAY,SAAS,UAAU,EAAE,MAAM,IAAI;AAE7D,SAAO;AAAA,IACL,IAAI,UAAU,OAAO;AAAA,IACrB,IAAI,UAAU,OAAO;AAAA,EACvB;AACF;AAKO,SAAS,eAAe;AAAA,EAC7B;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AACF,GAAkC;AAChC,SAAO,CACL,KACA,cACG;AAEH,QAAI,2BAA2B,SAAS,GAAG;AACzC,aAAO;AAAA,IACT;AAGA,QAAI,CAAC,KAAK,KAAK,CAACA,UAASA,MAAK,OAAO,UAAU,OAAO,GAAG;AACvD,aAAO;AAAA,IACT;AAEA,QAAI,qBAAqB,IAAI,EAAE,UAAU,QAAQ,GAAG;AAClD,YAAM,SAAS;AAAA,QACb;AAAA,QACA,UAAU;AAAA,MACZ;AAEA,UAAI,mBAAmB,SAAS,GAAG;AACjC,cAAM,SAAS;AAAA,UACb;AAAA,UACA,UAAU;AAAA,QACZ;AACA,cAAM,OAAO,UAAU;AACvB,cAAM,aAAa,MAAM,MAAM,CAAC,MAAM,UAAU,GAAG,KAAK,CAAC;AACzD,cAAM,aAAa,MAAM,MAAM,CAAC,MAAM,UAAU,GAAG,KAAK,CAAC;AAEzD,YAAI,CAAC,cAAc,CAAC,YAAY;AAC9B,iBAAO;AAAA,QACT;AAEA,YAAI,KAAK;AAAA,UACP,GAAG;AAAA,UACH,IAAI,kBAAkB,UAAU,YAAY,KAAK,GAAG,MAAM;AAAA,UAC1D,IAAI,kBAAkB,UAAU,YAAY,KAAK,GAAG,MAAM;AAAA,UAC1D,OAAO;AAAA,UACP,UAAU;AAAA,QACZ,CAAC;AAED,cAAM,SAAS,OAAO,OAAO;AAC7B,cAAM,UAAU;AAAA,UACd,KAAK,OAAO,CAAC,EAAE,QAAQ;AAAA,UACvB,KAAK,OAAO,CAAC,EAAE,QAAQ;AAAA,QACzB;AAEA,cAAM,EAAE,IAAI,GAAG,IAAI,0BAA0B,MAAM,MAAM,OAAO;AAEhE,YAAI,KAAK;AAAA,UACP,GAAG;AAAA,UACH,IAAI,kBAAkB,IAAI,MAAM;AAAA,UAChC,IAAI,kBAAkB,IAAI,MAAM;AAAA,UAChC,OAAO,UAAU,QAAQ;AAAA,QAC3B,CAAC;AAAA,MACH,OAAO;AACL,cAAM,eAAe;AAAA,UACnB,IAAI,UAAU,UAAU,MAAM,KAAK;AAAA,UACnC,IAAI,UAAU,UAAU,MAAM,KAAK;AAAA,QACrC;AAEA,YAAI,KAAK;AAAA,UACP,GAAG;AAAA,UACH,IAAI,kBAAkB,aAAa,IAAI,MAAM;AAAA,UAC7C,IAAI,kBAAkB,aAAa,IAAI,MAAM;AAAA,UAC7C,OAAO;AAAA,YACL;AAAA,YACA,iCAAiC;AAAA,cAC/B;AAAA,cACA,QAAQ,UAAU;AAAA,cAClB,OAAO;AAAA,cACP;AAAA,cACA;AAAA,YACF,CAAC;AAAA,UACH;AAAA,QACF,CAAC;AAAA,MACH;AAAA,IACF;AACA,WAAO;AAAA,EACT;AACF;AAgBO,SAAS,gBAAgB;AAAA,EAC9B;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AACF,GAAmC;AACjC,SAAO,CACL,KACA,cACG;AACH,QAAI,CAAC,2BAA2B,SAAS,GAAG;AAC1C,aAAO;AAAA,IACT;AAGA,QAAI,CAAC,KAAK,KAAK,CAAC,MAAM,EAAE,OAAO,UAAU,OAAO,GAAG;AACjD,aAAO;AAAA,IACT;AAEA,QAAI,sBAAsB,IAAI,EAAE,UAAU,QAAQ,GAAG;AACnD,YAAM,SAAS;AAAA,QACb;AAAA,QACA,UAAU;AAAA,MACZ;AAEA,YAAM,eAAe;AAAA,QACnB,IAAI,UAAU,UAAU,MAAM,KAAK;AAAA,QACnC,IAAI,UAAU,UAAU,MAAM,KAAK;AAAA,MACrC;AAEA,UAAI,KAAK;AAAA,QACP,GAAG;AAAA,QACH,IAAI,kBAAkB,aAAa,IAAI,MAAM;AAAA,QAC7C,IAAI,kBAAkB,aAAa,IAAI,MAAM;AAAA,QAC7C,OAAO;AAAA,UACL,EAAE,IAAI,aAAa,IAAI,IAAI,aAAa,GAAG;AAAA,UAC3C,iCAAiC;AAAA,YAC/B;AAAA,YACA,QAAQ,UAAU;AAAA,YAClB,OAAO;AAAA,YACP;AAAA,YACA;AAAA,UACF,CAAC;AAAA,QACH;AAAA,MACF,CAAC;AAAA,IACH;AACA,WAAO;AAAA,EACT;AACF;AAEO,MAAM,uBACX,CAAC,qBACD,CAAC,mBAAgE;AAC/D,SAAO,CAAC,kBAAkB,MAAM,EAAE,SAAS,cAAc;AAC3D;AAEK,MAAM,wBACX,CAAC,qBACD,CAAC,mBAAgE;AAC/D,SAAO,CAAC,kBAAkB,MAAM,EAAE,SAAS,cAAc;AAC3D;AASK,MAAM,uBAAsC,CAAC;AAAA,EAClD;AAAA,EACA;AAAA,EACA;AAAA,EACA;AACF,MAAM;AACJ,MAAI,2BAA2B,SAAS,GAAG;AACzC,UAAM,SAAS;AAAA,MACb;AAAA,MACA,UAAU;AAAA,IACZ;AAEA,UAAM,iBAAiB;AAAA,MACrB,UAAU,UAAU,MAAM,KAAK;AAAA,MAC/B;AAAA,IACF;AACA,UAAM,iBAAiB;AAAA,MACrB,UAAU,UAAU,MAAM,KAAK;AAAA,MAC/B;AAAA,IACF;AAEA,WAAO;AAAA,MACL,EAAE,IAAI,gBAAgB,IAAI,gBAAgB,IAAI,GAAG,IAAI,EAAE;AAAA,MACvD,EAAE,IAAI,gBAAgB,IAAI,gBAAgB,IAAI,QAAQ,IAAI,OAAO;AAAA,IACnE;AAAA,EACF;AAEA,QAAM,SAAS;AAAA,IACb;AAAA,IACA,UAAU;AAAA,EACZ;AAEA,MAAI,mBAAmB,SAAS,GAAG;AACjC,UAAM,OAAsC,UAAU;AAEtD,UAAM,SAAS;AAAA,MACb;AAAA,MACA,UAAU;AAAA,IACZ;AAEA,UAAM,iBAAiB;AAAA,MACrB,IAAI;AAAA,MACJ,IAAI;AAAA,MACJ,IAAI,kBAAkB,UAAU,KAAK,CAAC,GAAG,KAAK,GAAG,MAAM;AAAA,MACvD,IAAI,kBAAkB,UAAU,KAAK,CAAC,GAAG,KAAK,GAAG,MAAM;AAAA,IACzD;AAEA,UAAM,eAAe;AAAA,MACnB,IAAI;AAAA,MACJ,IAAI;AAAA,MACJ,IAAI,kBAAkB,UAAU,KAAK,KAAK,SAAS,CAAC,GAAG,KAAK,GAAG,MAAM;AAAA,MACrE,IAAI,kBAAkB,UAAU,KAAK,KAAK,SAAS,CAAC,GAAG,KAAK,GAAG,MAAM;AAAA,IACvE;AAEA,UAAM,WAAW,KAAK,IAAI,CAAC,gBAAgB;AAAA,MACzC,IAAI,kBAAkB,WAAW,GAAG,MAAM;AAAA,MAC1C,IAAI,kBAAkB,WAAW,GAAG,MAAM;AAAA,MAC1C,IAAI,kBAAkB,UAAU,YAAY,KAAK,GAAG,MAAM;AAAA,MAC1D,IAAI,kBAAkB,UAAU,YAAY,KAAK,GAAG,MAAM;AAAA,IAC5D,EAAE;AAEF,WAAO,CAAC,gBAAgB,GAAG,UAAU,YAAY;AAAA,EACnD,OAAO;AACL,UAAM,OAAO,UAAU;AAIvB,UAAM,iBAAiB,kBAAkB,UAAU,MAAM,KAAK,GAAG,MAAM;AACvE,UAAM,iBAAiB,kBAAkB,UAAU,MAAM,KAAK,GAAG,MAAM;AAEvE,WAAO;AAAA,MACL;AAAA,QACE,IAAI;AAAA,QACJ,IAAI;AAAA,QACJ,IAAI;AAAA,QACJ,IAAI;AAAA,MACN;AAAA,MACA;AAAA,QACE,IAAI;AAAA,QACJ,IAAI;AAAA,QACJ,IAAI;AAAA,QACJ,IAAI;AAAA,MACN;AAAA,IACF;AAAA,EACF;AACF;",
|
|
6
6
|
"names": ["axis"]
|
|
7
7
|
}
|
|
@@ -15,6 +15,7 @@ import { ChartToolbarRenderer } from "../../../core/components/toolbar/ChartTool
|
|
|
15
15
|
import { useToolbarContext } from "../../../core/components/toolbar/hooks/useToolbarContext.js";
|
|
16
16
|
import { useA11yToolbarTabIndex } from "../../../core/hooks/useA11yToolbarTabIndex.js";
|
|
17
17
|
import { getPercentageFromPixel } from "../../../core/utils/get-percentage-from-pixel.js";
|
|
18
|
+
import { useSelectConfig } from "../../hooks/useSelectConfig.js";
|
|
18
19
|
import { XYCHART_MESSAGES } from "../../messages/messages.js";
|
|
19
20
|
import { reduceInteractionMode } from "../../store/reduce-interaction-mode.js";
|
|
20
21
|
import {
|
|
@@ -38,6 +39,7 @@ const ExploreButton = (props) => {
|
|
|
38
39
|
const { updateLastItemSelected } = useToolbarContext();
|
|
39
40
|
const selectState = useSelectState();
|
|
40
41
|
const isSelected = interactionMode === INTERACTION_MODE.Explore;
|
|
42
|
+
const isSelectDisabled = useSelectConfig()?.disabled === true;
|
|
41
43
|
const createInitialSelectionArea = () => {
|
|
42
44
|
if (!isNil(chartRef.current)) {
|
|
43
45
|
const bounds = chartRef.current.getBoundingClientRect();
|
|
@@ -71,7 +73,9 @@ const ExploreButton = (props) => {
|
|
|
71
73
|
};
|
|
72
74
|
const handleKeyDown = () => {
|
|
73
75
|
setState(reduceInteractionMode(INTERACTION_MODE.Explore));
|
|
74
|
-
|
|
76
|
+
if (!isSelectDisabled) {
|
|
77
|
+
createInitialSelectionArea();
|
|
78
|
+
}
|
|
75
79
|
};
|
|
76
80
|
return /* @__PURE__ */ jsx(
|
|
77
81
|
ChartToolbarRenderer.Control,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../../../../../src/charts/xy-chart/components/toolbar/ExploreButton.tsx"],
|
|
4
|
-
"sourcesContent": ["import { isNil } from 'lodash-es';\nimport { useRef } from 'react';\nimport { useIntl } from 'react-intl';\n\nimport { CrosshairIcon } from '@dynatrace/strato-icons';\n\nimport { allowWhenKeyIsEnter } from './utils.js';\nimport { useGridPlotSize } from '../../../core/components/chart-grid/hooks/useGridPlotSize.js';\nimport { KeyboardControls } from '../../../core/components/interactions-overlay/constants.js';\nimport { INTERACTION_MODE } from '../../../core/components/interactions-overlay/types.js';\nimport { calculateInitialSelectionAreaPositions } from '../../../core/components/interactions-overlay/utils/calculate-initial-selection-area-positions.js';\nimport { reduceSelectionAreaVariant } from '../../../core/components/interactions-state-helpers/reducers/mode-reducers.js';\nimport { useOverlay } from '../../../core/components/overlay-tooltip/contexts/OverlayContext.js';\nimport { useSynchronizedSelection } from '../../../core/components/shared-chart-interactions/hooks/useSynchronizedSelection.js';\nimport { ChartToolbarRenderer } from '../../../core/components/toolbar/ChartToolbarRenderer.js';\nimport { useToolbarContext } from '../../../core/components/toolbar/hooks/useToolbarContext.js';\nimport { useA11yToolbarTabIndex } from '../../../core/hooks/useA11yToolbarTabIndex.js';\nimport { getPercentageFromPixel } from '../../../core/utils/get-percentage-from-pixel.js';\nimport { XYCHART_MESSAGES } from '../../messages/messages.js';\nimport { reduceInteractionMode } from '../../store/reduce-interaction-mode.js';\nimport {\n reduceExploreCancelAll,\n reduceExploreSelect,\n} from '../../store/reducer-explorer.js';\nimport {\n useInteractionModeState,\n useSelectState,\n useSetState,\n} from '../../store/selectors.js';\n\nexport const ExploreButton = (props: { placement: 'menu' | 'auto' }) => {\n const setState = useSetState();\n const exploreButtonRef = useRef<HTMLButtonElement>(null);\n const tabIndex = useA11yToolbarTabIndex(INTERACTION_MODE.Explore);\n const intl = useIntl();\n const interactionMode = useInteractionModeState();\n const { overlayRef: chartRef } = useOverlay();\n const { width } = useGridPlotSize();\n const { resetSelectionState } = useSynchronizedSelection();\n const { updateLastItemSelected } = useToolbarContext();\n const selectState = useSelectState();\n\n const isSelected = interactionMode === INTERACTION_MODE.Explore;\n\n const createInitialSelectionArea = () => {\n if (!isNil(chartRef.current)) {\n const bounds = chartRef.current.getBoundingClientRect();\n\n const [start, end] = calculateInitialSelectionAreaPositions(bounds);\n\n setState(\n reduceExploreSelect({\n start,\n end,\n finished: true,\n accessible: true,\n variant: 'select',\n isKeyboardCreated: true,\n selectionPercentage: getPercentageFromPixel([start, end], width),\n }),\n );\n }\n };\n\n const handleClick = () => {\n if (interactionMode !== 'explore') {\n setState(reduceInteractionMode(INTERACTION_MODE.Explore));\n }\n\n if (selectState?.start && selectState?.end) {\n if (selectState?.isKeyboardCreated) {\n reduceSelectionAreaVariant('select');\n } else {\n resetSelectionState?.();\n setState(reduceExploreCancelAll);\n }\n }\n\n updateLastItemSelected(INTERACTION_MODE.Explore);\n };\n\n const handleKeyDown = () => {\n setState(reduceInteractionMode(INTERACTION_MODE.Explore));\n createInitialSelectionArea();\n };\n\n return (\n <ChartToolbarRenderer.Control\n ref={exploreButtonRef}\n prefixIcon={<CrosshairIcon />}\n tooltipText={intl.formatMessage(XYCHART_MESSAGES.zoomModeExplore)}\n tooltipKeyShortcut={\n KeyboardControls.KEYBOARD_EXPLORE_MODE_SHORTCUT_ALTERNATIVE\n }\n selected={isSelected}\n onKeyDown={allowWhenKeyIsEnter(handleKeyDown)}\n onClick={handleClick}\n tabIndex={tabIndex}\n placement={props.placement}\n data-dt-name=\"ToolbarExploreMode\"\n />\n );\n};\n\nExploreButton['displayName'] = 'ExploreButton';\n"],
|
|
5
|
-
"mappings": "
|
|
4
|
+
"sourcesContent": ["import { isNil } from 'lodash-es';\nimport { useRef } from 'react';\nimport { useIntl } from 'react-intl';\n\nimport { CrosshairIcon } from '@dynatrace/strato-icons';\n\nimport { allowWhenKeyIsEnter } from './utils.js';\nimport { useGridPlotSize } from '../../../core/components/chart-grid/hooks/useGridPlotSize.js';\nimport { KeyboardControls } from '../../../core/components/interactions-overlay/constants.js';\nimport { INTERACTION_MODE } from '../../../core/components/interactions-overlay/types.js';\nimport { calculateInitialSelectionAreaPositions } from '../../../core/components/interactions-overlay/utils/calculate-initial-selection-area-positions.js';\nimport { reduceSelectionAreaVariant } from '../../../core/components/interactions-state-helpers/reducers/mode-reducers.js';\nimport { useOverlay } from '../../../core/components/overlay-tooltip/contexts/OverlayContext.js';\nimport { useSynchronizedSelection } from '../../../core/components/shared-chart-interactions/hooks/useSynchronizedSelection.js';\nimport { ChartToolbarRenderer } from '../../../core/components/toolbar/ChartToolbarRenderer.js';\nimport { useToolbarContext } from '../../../core/components/toolbar/hooks/useToolbarContext.js';\nimport { useA11yToolbarTabIndex } from '../../../core/hooks/useA11yToolbarTabIndex.js';\nimport { getPercentageFromPixel } from '../../../core/utils/get-percentage-from-pixel.js';\nimport { useSelectConfig } from '../../hooks/useSelectConfig.js';\nimport { XYCHART_MESSAGES } from '../../messages/messages.js';\nimport { reduceInteractionMode } from '../../store/reduce-interaction-mode.js';\nimport {\n reduceExploreCancelAll,\n reduceExploreSelect,\n} from '../../store/reducer-explorer.js';\nimport {\n useInteractionModeState,\n useSelectState,\n useSetState,\n} from '../../store/selectors.js';\n\nexport const ExploreButton = (props: { placement: 'menu' | 'auto' }) => {\n const setState = useSetState();\n const exploreButtonRef = useRef<HTMLButtonElement>(null);\n const tabIndex = useA11yToolbarTabIndex(INTERACTION_MODE.Explore);\n const intl = useIntl();\n const interactionMode = useInteractionModeState();\n const { overlayRef: chartRef } = useOverlay();\n const { width } = useGridPlotSize();\n const { resetSelectionState } = useSynchronizedSelection();\n const { updateLastItemSelected } = useToolbarContext();\n const selectState = useSelectState();\n\n const isSelected = interactionMode === INTERACTION_MODE.Explore;\n const isSelectDisabled = useSelectConfig()?.disabled === true;\n\n const createInitialSelectionArea = () => {\n if (!isNil(chartRef.current)) {\n const bounds = chartRef.current.getBoundingClientRect();\n\n const [start, end] = calculateInitialSelectionAreaPositions(bounds);\n\n setState(\n reduceExploreSelect({\n start,\n end,\n finished: true,\n accessible: true,\n variant: 'select',\n isKeyboardCreated: true,\n selectionPercentage: getPercentageFromPixel([start, end], width),\n }),\n );\n }\n };\n\n const handleClick = () => {\n if (interactionMode !== 'explore') {\n setState(reduceInteractionMode(INTERACTION_MODE.Explore));\n }\n\n if (selectState?.start && selectState?.end) {\n if (selectState?.isKeyboardCreated) {\n reduceSelectionAreaVariant('select');\n } else {\n resetSelectionState?.();\n setState(reduceExploreCancelAll);\n }\n }\n\n updateLastItemSelected(INTERACTION_MODE.Explore);\n };\n\n const handleKeyDown = () => {\n setState(reduceInteractionMode(INTERACTION_MODE.Explore));\n if (!isSelectDisabled) {\n createInitialSelectionArea();\n }\n };\n\n return (\n <ChartToolbarRenderer.Control\n ref={exploreButtonRef}\n prefixIcon={<CrosshairIcon />}\n tooltipText={intl.formatMessage(XYCHART_MESSAGES.zoomModeExplore)}\n tooltipKeyShortcut={\n KeyboardControls.KEYBOARD_EXPLORE_MODE_SHORTCUT_ALTERNATIVE\n }\n selected={isSelected}\n onKeyDown={allowWhenKeyIsEnter(handleKeyDown)}\n onClick={handleClick}\n tabIndex={tabIndex}\n placement={props.placement}\n data-dt-name=\"ToolbarExploreMode\"\n />\n );\n};\n\nExploreButton['displayName'] = 'ExploreButton';\n"],
|
|
5
|
+
"mappings": "AA6FkB;AA7FlB,SAAS,aAAa;AACtB,SAAS,cAAc;AACvB,SAAS,eAAe;AAExB,SAAS,qBAAqB;AAE9B,SAAS,2BAA2B;AACpC,SAAS,uBAAuB;AAChC,SAAS,wBAAwB;AACjC,SAAS,wBAAwB;AACjC,SAAS,8CAA8C;AACvD,SAAS,kCAAkC;AAC3C,SAAS,kBAAkB;AAC3B,SAAS,gCAAgC;AACzC,SAAS,4BAA4B;AACrC,SAAS,yBAAyB;AAClC,SAAS,8BAA8B;AACvC,SAAS,8BAA8B;AACvC,SAAS,uBAAuB;AAChC,SAAS,wBAAwB;AACjC,SAAS,6BAA6B;AACtC;AAAA,EACE;AAAA,EACA;AAAA,OACK;AACP;AAAA,EACE;AAAA,EACA;AAAA,EACA;AAAA,OACK;AAEA,MAAM,gBAAgB,CAAC,UAA0C;AACtE,QAAM,WAAW,YAAY;AAC7B,QAAM,mBAAmB,OAA0B,IAAI;AACvD,QAAM,WAAW,uBAAuB,iBAAiB,OAAO;AAChE,QAAM,OAAO,QAAQ;AACrB,QAAM,kBAAkB,wBAAwB;AAChD,QAAM,EAAE,YAAY,SAAS,IAAI,WAAW;AAC5C,QAAM,EAAE,MAAM,IAAI,gBAAgB;AAClC,QAAM,EAAE,oBAAoB,IAAI,yBAAyB;AACzD,QAAM,EAAE,uBAAuB,IAAI,kBAAkB;AACrD,QAAM,cAAc,eAAe;AAEnC,QAAM,aAAa,oBAAoB,iBAAiB;AACxD,QAAM,mBAAmB,gBAAgB,GAAG,aAAa;AAEzD,QAAM,6BAA6B,MAAM;AACvC,QAAI,CAAC,MAAM,SAAS,OAAO,GAAG;AAC5B,YAAM,SAAS,SAAS,QAAQ,sBAAsB;AAEtD,YAAM,CAAC,OAAO,GAAG,IAAI,uCAAuC,MAAM;AAElE;AAAA,QACE,oBAAoB;AAAA,UAClB;AAAA,UACA;AAAA,UACA,UAAU;AAAA,UACV,YAAY;AAAA,UACZ,SAAS;AAAA,UACT,mBAAmB;AAAA,UACnB,qBAAqB,uBAAuB,CAAC,OAAO,GAAG,GAAG,KAAK;AAAA,QACjE,CAAC;AAAA,MACH;AAAA,IACF;AAAA,EACF;AAEA,QAAM,cAAc,MAAM;AACxB,QAAI,oBAAoB,WAAW;AACjC,eAAS,sBAAsB,iBAAiB,OAAO,CAAC;AAAA,IAC1D;AAEA,QAAI,aAAa,SAAS,aAAa,KAAK;AAC1C,UAAI,aAAa,mBAAmB;AAClC,mCAA2B,QAAQ;AAAA,MACrC,OAAO;AACL,8BAAsB;AACtB,iBAAS,sBAAsB;AAAA,MACjC;AAAA,IACF;AAEA,2BAAuB,iBAAiB,OAAO;AAAA,EACjD;AAEA,QAAM,gBAAgB,MAAM;AAC1B,aAAS,sBAAsB,iBAAiB,OAAO,CAAC;AACxD,QAAI,CAAC,kBAAkB;AACrB,iCAA2B;AAAA,IAC7B;AAAA,EACF;AAEA,SACE;AAAA,IAAC,qBAAqB;AAAA,IAArB;AAAA,MACC,KAAK;AAAA,MACL,YAAY,oBAAC,iBAAc;AAAA,MAC3B,aAAa,KAAK,cAAc,iBAAiB,eAAe;AAAA,MAChE,oBACE,iBAAiB;AAAA,MAEnB,UAAU;AAAA,MACV,WAAW,oBAAoB,aAAa;AAAA,MAC5C,SAAS;AAAA,MACT;AAAA,MACA,WAAW,MAAM;AAAA,MACjB,gBAAa;AAAA;AAAA,EACf;AAEJ;AAEA,cAAc,aAAa,IAAI;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
|
@@ -14,13 +14,16 @@ import { useXYChartColorScales } from "../../../hooks/useXYChartColorScales.js";
|
|
|
14
14
|
import { useXYChartData } from "../../../hooks/useXYChartData.js";
|
|
15
15
|
import { useXYChartTooltip } from "../../../hooks/useXYChartTooltip.js";
|
|
16
16
|
import { useXYChartTruncationMode } from "../../../hooks/useXYChartTruncationMode.js";
|
|
17
|
+
function formatSharedTooltipValue(row) {
|
|
18
|
+
return row.yAxisDuration ? `${row.yAxisValue} (${row.yAxisDuration})` : row.yAxisValue;
|
|
19
|
+
}
|
|
17
20
|
function LazySharedTooltipRow({
|
|
18
21
|
raw,
|
|
19
22
|
ctx,
|
|
20
23
|
seriesDisplayMode
|
|
21
24
|
}) {
|
|
22
25
|
const row = buildSharedTooltipRow(raw.result, ctx);
|
|
23
|
-
const value =
|
|
26
|
+
const value = formatSharedTooltipValue(row);
|
|
24
27
|
const isMultiLine = row.nameSegments !== void 0 && seriesDisplayMode === "multi-line";
|
|
25
28
|
const displayName = isMultiLine ? row.nameSegments : row.name;
|
|
26
29
|
return /* @__PURE__ */ jsx(
|
|
@@ -66,9 +69,11 @@ function SharedXYChartTooltip({
|
|
|
66
69
|
const metadata = safeGet(seriesToMetadata, result.series);
|
|
67
70
|
const row = buildSharedTooltipRow(result, ctx);
|
|
68
71
|
const isMultiLine = row.nameSegments !== void 0 && seriesDisplayMode === "multi-line";
|
|
72
|
+
const value = formatSharedTooltipValue(row);
|
|
69
73
|
return {
|
|
70
74
|
name: isMultiLine ? row.nameSegments : metadata.name,
|
|
71
75
|
nameSegments: row.nameSegments,
|
|
76
|
+
value,
|
|
72
77
|
result
|
|
73
78
|
};
|
|
74
79
|
});
|
package/esm/charts/xy-chart/components/tooltip/SharedXYChartTooltip/SharedXYChartTooltip.js.map
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../../../../../../src/charts/xy-chart/components/tooltip/SharedXYChartTooltip/SharedXYChartTooltip.tsx"],
|
|
4
|
-
"sourcesContent": ["import { useIntl } from 'react-intl';\n\nimport {\n buildSharedTooltipHeader,\n buildSharedTooltipRow,\n} from './sharedXYChartTooltipUtils.js';\nimport { OverlayTooltip } from '../../../../core/components/overlay-tooltip/OverlayTooltip.js';\nimport type { SeriesDisplayMode } from '../../../../core/types/tooltip.js';\nimport { safeGet } from '../../../../core/utils/safe-get.js';\nimport type { SeriesQueryResult } from '../../../context/XYChartOverlayPerformance.context.js';\nimport { useAreaData } from '../../../hooks/useAreaData.js';\nimport { useAxesFormatter } from '../../../hooks/useAxesFormatter.js';\nimport { useBarData } from '../../../hooks/useBarData.js';\nimport { useFormatCategory } from '../../../hooks/useFormatCategory.js';\nimport { useXYChartColorScales } from '../../../hooks/useXYChartColorScales.js';\nimport { useXYChartData } from '../../../hooks/useXYChartData.js';\nimport { useXYChartTooltip } from '../../../hooks/useXYChartTooltip.js';\nimport { useXYChartTruncationMode } from '../../../hooks/useXYChartTruncationMode.js';\nimport type { TooltipContent } from '../../../types/state.js';\n\ntype SharedTooltipCtx = Parameters<typeof buildSharedTooltipRow>[1];\n\ntype LazySharedRow = {\n name: string | string[];\n nameSegments: string[] | undefined;\n result: SeriesQueryResult;\n};\n\nfunction LazySharedTooltipRow({\n raw,\n ctx,\n seriesDisplayMode,\n}: {\n readonly raw: LazySharedRow;\n readonly ctx: SharedTooltipCtx;\n readonly seriesDisplayMode: SeriesDisplayMode | undefined;\n}) {\n const row = buildSharedTooltipRow(raw.result as TooltipContent, ctx);\n const value =
|
|
5
|
-
"mappings": "
|
|
4
|
+
"sourcesContent": ["import { useIntl } from 'react-intl';\n\nimport {\n buildSharedTooltipHeader,\n buildSharedTooltipRow,\n type SharedTooltipRow,\n} from './sharedXYChartTooltipUtils.js';\nimport { OverlayTooltip } from '../../../../core/components/overlay-tooltip/OverlayTooltip.js';\nimport type { SeriesDisplayMode } from '../../../../core/types/tooltip.js';\nimport { safeGet } from '../../../../core/utils/safe-get.js';\nimport type { SeriesQueryResult } from '../../../context/XYChartOverlayPerformance.context.js';\nimport { useAreaData } from '../../../hooks/useAreaData.js';\nimport { useAxesFormatter } from '../../../hooks/useAxesFormatter.js';\nimport { useBarData } from '../../../hooks/useBarData.js';\nimport { useFormatCategory } from '../../../hooks/useFormatCategory.js';\nimport { useXYChartColorScales } from '../../../hooks/useXYChartColorScales.js';\nimport { useXYChartData } from '../../../hooks/useXYChartData.js';\nimport { useXYChartTooltip } from '../../../hooks/useXYChartTooltip.js';\nimport { useXYChartTruncationMode } from '../../../hooks/useXYChartTruncationMode.js';\nimport type { TooltipContent } from '../../../types/state.js';\n\ntype SharedTooltipCtx = Parameters<typeof buildSharedTooltipRow>[1];\n\ntype LazySharedRow = {\n name: string | string[];\n nameSegments: string[] | undefined;\n value: string;\n result: SeriesQueryResult;\n};\n\nfunction formatSharedTooltipValue(row: SharedTooltipRow) {\n return row.yAxisDuration\n ? `${row.yAxisValue} (${row.yAxisDuration})`\n : row.yAxisValue;\n}\n\nfunction LazySharedTooltipRow({\n raw,\n ctx,\n seriesDisplayMode,\n}: {\n readonly raw: LazySharedRow;\n readonly ctx: SharedTooltipCtx;\n readonly seriesDisplayMode: SeriesDisplayMode | undefined;\n}) {\n const row = buildSharedTooltipRow(raw.result as TooltipContent, ctx);\n const value = formatSharedTooltipValue(row);\n\n const isMultiLine =\n row.nameSegments !== undefined && seriesDisplayMode === 'multi-line';\n const displayName: string | string[] = isMultiLine\n ? (row.nameSegments as string[])\n : row.name;\n\n return (\n <OverlayTooltip.SeriesItem\n name={displayName}\n multiLine={isMultiLine}\n value={value}\n color={row.color}\n actions={row.actions}\n />\n );\n}\n\nexport function SharedXYChartTooltip({\n preferred,\n datapoints,\n}: Readonly<{\n preferred: TooltipContent;\n datapoints: SeriesQueryResult[];\n}>) {\n const { seriesToMetadata, axisIdToScaleDomain, datapointMetadataMap } =\n useXYChartData();\n const axisIdToFormatter = useAxesFormatter();\n const intl = useIntl();\n const colorScaleMap = useXYChartColorScales();\n const { truncationMode } = useXYChartTruncationMode();\n const formatCategory = useFormatCategory();\n const { filteredSeriesWithDatapoints } = useBarData();\n const { filteredSeriesWithDatapoints: filteredAreaSeriesWithDatapoints } =\n useAreaData();\n const { seriesDisplayMode } = useXYChartTooltip();\n\n const ctx = {\n seriesToMetadata,\n axisIdToFormatter,\n axisIdToScaleDomain,\n datapointMetadataMap,\n formatCategory,\n intl,\n colorScaleMap,\n allBarSeries: filteredSeriesWithDatapoints,\n allAreaSeries: filteredAreaSeriesWithDatapoints,\n };\n\n const { xAxisValue, xAxisDuration, label } = buildSharedTooltipHeader(\n preferred,\n ctx,\n );\n\n const rows: LazySharedRow[] = datapoints.map((result) => {\n const metadata = safeGet(seriesToMetadata, result.series);\n const row = buildSharedTooltipRow(result as TooltipContent, ctx);\n\n const isMultiLine =\n row.nameSegments !== undefined && seriesDisplayMode === 'multi-line';\n const value = formatSharedTooltipValue(row);\n return {\n name: isMultiLine ? row.nameSegments : metadata.name,\n nameSegments: row.nameSegments,\n value,\n result,\n };\n });\n\n const activeItemIndex = datapoints.findIndex(\n (d) => d.series === preferred.series,\n );\n\n return (\n <OverlayTooltip truncation={truncationMode}>\n <OverlayTooltip.Header\n header1={xAxisValue}\n duration1={xAxisDuration}\n label={label}\n />\n <OverlayTooltip.Series\n data={rows}\n variant=\"shared\"\n activeItem={activeItemIndex}\n seriesItemTemplate={(item) => (\n <LazySharedTooltipRow\n raw={item}\n ctx={ctx}\n seriesDisplayMode={seriesDisplayMode}\n />\n )}\n />\n </OverlayTooltip>\n );\n}\n"],
|
|
5
|
+
"mappings": "AAuDI,cAkEA,YAlEA;AAvDJ,SAAS,eAAe;AAExB;AAAA,EACE;AAAA,EACA;AAAA,OAEK;AACP,SAAS,sBAAsB;AAE/B,SAAS,eAAe;AAExB,SAAS,mBAAmB;AAC5B,SAAS,wBAAwB;AACjC,SAAS,kBAAkB;AAC3B,SAAS,yBAAyB;AAClC,SAAS,6BAA6B;AACtC,SAAS,sBAAsB;AAC/B,SAAS,yBAAyB;AAClC,SAAS,gCAAgC;AAYzC,SAAS,yBAAyB,KAAuB;AACvD,SAAO,IAAI,gBACP,GAAG,IAAI,UAAU,KAAK,IAAI,aAAa,MACvC,IAAI;AACV;AAEA,SAAS,qBAAqB;AAAA,EAC5B;AAAA,EACA;AAAA,EACA;AACF,GAIG;AACD,QAAM,MAAM,sBAAsB,IAAI,QAA0B,GAAG;AACnE,QAAM,QAAQ,yBAAyB,GAAG;AAE1C,QAAM,cACJ,IAAI,iBAAiB,UAAa,sBAAsB;AAC1D,QAAM,cAAiC,cAClC,IAAI,eACL,IAAI;AAER,SACE;AAAA,IAAC,eAAe;AAAA,IAAf;AAAA,MACC,MAAM;AAAA,MACN,WAAW;AAAA,MACX;AAAA,MACA,OAAO,IAAI;AAAA,MACX,SAAS,IAAI;AAAA;AAAA,EACf;AAEJ;AAEO,SAAS,qBAAqB;AAAA,EACnC;AAAA,EACA;AACF,GAGI;AACF,QAAM,EAAE,kBAAkB,qBAAqB,qBAAqB,IAClE,eAAe;AACjB,QAAM,oBAAoB,iBAAiB;AAC3C,QAAM,OAAO,QAAQ;AACrB,QAAM,gBAAgB,sBAAsB;AAC5C,QAAM,EAAE,eAAe,IAAI,yBAAyB;AACpD,QAAM,iBAAiB,kBAAkB;AACzC,QAAM,EAAE,6BAA6B,IAAI,WAAW;AACpD,QAAM,EAAE,8BAA8B,iCAAiC,IACrE,YAAY;AACd,QAAM,EAAE,kBAAkB,IAAI,kBAAkB;AAEhD,QAAM,MAAM;AAAA,IACV;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA,cAAc;AAAA,IACd,eAAe;AAAA,EACjB;AAEA,QAAM,EAAE,YAAY,eAAe,MAAM,IAAI;AAAA,IAC3C;AAAA,IACA;AAAA,EACF;AAEA,QAAM,OAAwB,WAAW,IAAI,CAAC,WAAW;AACvD,UAAM,WAAW,QAAQ,kBAAkB,OAAO,MAAM;AACxD,UAAM,MAAM,sBAAsB,QAA0B,GAAG;AAE/D,UAAM,cACJ,IAAI,iBAAiB,UAAa,sBAAsB;AAC1D,UAAM,QAAQ,yBAAyB,GAAG;AAC1C,WAAO;AAAA,MACL,MAAM,cAAc,IAAI,eAAe,SAAS;AAAA,MAChD,cAAc,IAAI;AAAA,MAClB;AAAA,MACA;AAAA,IACF;AAAA,EACF,CAAC;AAED,QAAM,kBAAkB,WAAW;AAAA,IACjC,CAAC,MAAM,EAAE,WAAW,UAAU;AAAA,EAChC;AAEA,SACE,qBAAC,kBAAe,YAAY,gBAC1B;AAAA;AAAA,MAAC,eAAe;AAAA,MAAf;AAAA,QACC,SAAS;AAAA,QACT,WAAW;AAAA,QACX;AAAA;AAAA,IACF;AAAA,IACA;AAAA,MAAC,eAAe;AAAA,MAAf;AAAA,QACC,MAAM;AAAA,QACN,SAAQ;AAAA,QACR,YAAY;AAAA,QACZ,oBAAoB,CAAC,SACnB;AAAA,UAAC;AAAA;AAAA,YACC,KAAK;AAAA,YACL;AAAA,YACA;AAAA;AAAA,QACF;AAAA;AAAA,IAEJ;AAAA,KACF;AAEJ;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
._1u58xor0-3-
|
|
1
|
+
._1u58xor0-3-12-0 {
|
|
2
2
|
display: flex;
|
|
3
3
|
flex-wrap: wrap;
|
|
4
4
|
overflow-wrap: anywhere;
|
|
5
5
|
margin-left: var(--dt-spacings-size-4, 4px);
|
|
6
6
|
margin-right: var(--dt-spacings-size-4, 4px);
|
|
7
7
|
}
|
|
8
|
-
._1u58xor1-3-
|
|
8
|
+
._1u58xor1-3-12-0 {
|
|
9
9
|
font-weight: var(--dt-typography-text-small-emphasized-weight, 500);
|
|
10
10
|
color: var(--dt-colors-text-neutral-subdued, #595a7d);
|
|
11
11
|
}
|
|
12
|
-
._1u58xor1-3-
|
|
12
|
+
._1u58xor1-3-12-0::after {
|
|
13
13
|
content: " ";
|
|
14
14
|
white-space: pre;
|
|
15
15
|
}
|
|
16
|
-
._1u58xor2-3-
|
|
16
|
+
._1u58xor2-3-12-0 {
|
|
17
17
|
flex: 0 1 auto;
|
|
18
18
|
font-weight: var(--dt-typography-text-small-default-weight, 400);
|
|
19
19
|
}
|
|
20
|
-
._1u58xor3-3-
|
|
20
|
+
._1u58xor3-3-12-0 {
|
|
21
21
|
flex: 1 1 auto;
|
|
22
22
|
font-weight: var(--dt-typography-text-small-default-weight, 400);
|
|
23
23
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import "./tooltip-styles.css";
|
|
2
|
-
var axisName = "_1u58xor1-3-
|
|
3
|
-
var axisValue = "_1u58xor2-3-
|
|
4
|
-
var duration = "_1u58xor3-3-
|
|
5
|
-
var wrapper = "_1u58xor0-3-
|
|
2
|
+
var axisName = "_1u58xor1-3-12-0";
|
|
3
|
+
var axisValue = "_1u58xor2-3-12-0";
|
|
4
|
+
var duration = "_1u58xor3-3-12-0";
|
|
5
|
+
var wrapper = "_1u58xor0-3-12-0";
|
|
6
6
|
export {
|
|
7
7
|
axisName,
|
|
8
8
|
axisValue,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../../../../../../src/charts/xy-chart/components/tooltip/utils/tooltip-styles.css.ts"],
|
|
4
|
-
"sourcesContent": ["import './tooltip-styles.css';\nexport var axisName = '_1u58xor1-3-
|
|
4
|
+
"sourcesContent": ["import './tooltip-styles.css';\nexport var axisName = '_1u58xor1-3-12-0';\nexport var axisValue = '_1u58xor2-3-12-0';\nexport var duration = '_1u58xor3-3-12-0';\nexport var wrapper = '_1u58xor0-3-12-0';"],
|
|
5
5
|
"mappings": "AAAA,OAAO;AACA,IAAI,WAAW;AACf,IAAI,YAAY;AAChB,IAAI,WAAW;AACf,IAAI,UAAU;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
|
@@ -4,11 +4,17 @@ const NoThresholdData = {
|
|
|
4
4
|
thresholds: [],
|
|
5
5
|
offset: {
|
|
6
6
|
left: 0,
|
|
7
|
-
right: 0
|
|
7
|
+
right: 0,
|
|
8
|
+
top: 0,
|
|
9
|
+
bottom: 0
|
|
8
10
|
},
|
|
9
11
|
yAxes: {
|
|
10
12
|
left: /* @__PURE__ */ new Set(),
|
|
11
13
|
right: /* @__PURE__ */ new Set()
|
|
14
|
+
},
|
|
15
|
+
xAxes: {
|
|
16
|
+
top: /* @__PURE__ */ new Set(),
|
|
17
|
+
bottom: /* @__PURE__ */ new Set()
|
|
12
18
|
}
|
|
13
19
|
};
|
|
14
20
|
const XYChartThresholdsContext = createContext(NoThresholdData);
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../../../../src/charts/xy-chart/context/XYChartThresholds.context.ts"],
|
|
4
|
-
"sourcesContent": ["import { createContext } from 'react';\n\nimport type { XYChartThresholdsInternal } from '../types/xy-chart-internals.js';\n\nexport const NoThresholdData: XYChartThresholdsInternal = {\n none: true,\n thresholds: [],\n offset: {\n left: 0,\n right: 0,\n },\n yAxes: {\n left: new Set(),\n right: new Set(),\n },\n};\n\nexport const XYChartThresholdsContext =\n createContext<XYChartThresholdsInternal>(NoThresholdData);\n"],
|
|
5
|
-
"mappings": "AAAA,SAAS,qBAAqB;AAIvB,MAAM,kBAA6C;AAAA,EACxD,MAAM;AAAA,EACN,YAAY,CAAC;AAAA,EACb,QAAQ;AAAA,IACN,MAAM;AAAA,IACN,OAAO;AAAA,
|
|
4
|
+
"sourcesContent": ["import { createContext } from 'react';\n\nimport type { XYChartThresholdsInternal } from '../types/xy-chart-internals.js';\n\nexport const NoThresholdData: XYChartThresholdsInternal = {\n none: true,\n thresholds: [],\n offset: {\n left: 0,\n right: 0,\n top: 0,\n bottom: 0,\n },\n yAxes: {\n left: new Set(),\n right: new Set(),\n },\n xAxes: {\n top: new Set(),\n bottom: new Set(),\n },\n};\n\nexport const XYChartThresholdsContext =\n createContext<XYChartThresholdsInternal>(NoThresholdData);\n"],
|
|
5
|
+
"mappings": "AAAA,SAAS,qBAAqB;AAIvB,MAAM,kBAA6C;AAAA,EACxD,MAAM;AAAA,EACN,YAAY,CAAC;AAAA,EACb,QAAQ;AAAA,IACN,MAAM;AAAA,IACN,OAAO;AAAA,IACP,KAAK;AAAA,IACL,QAAQ;AAAA,EACV;AAAA,EACA,OAAO;AAAA,IACL,MAAM,oBAAI,IAAI;AAAA,IACd,OAAO,oBAAI,IAAI;AAAA,EACjB;AAAA,EACA,OAAO;AAAA,IACL,KAAK,oBAAI,IAAI;AAAA,IACb,QAAQ,oBAAI,IAAI;AAAA,EAClB;AACF;AAEO,MAAM,2BACX,cAAyC,eAAe;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../../../../src/charts/xy-chart/context/XYChartToolbar.context.tsx"],
|
|
4
|
-
"sourcesContent": ["import { createContext } from 'react';\n\nimport type { XYChartToolbar } from '../types/xy-chart-
|
|
4
|
+
"sourcesContent": ["import { createContext } from 'react';\n\nimport type { XYChartToolbar } from '../types/xy-chart-internals.js';\n\nexport const XYChartToolbarContext = createContext<XYChartToolbar | undefined>(\n undefined,\n);\nXYChartToolbarContext['displayName'] = 'XYChartToolbarContext';\n"],
|
|
5
5
|
"mappings": "AAAA,SAAS,qBAAqB;AAIvB,MAAM,wBAAwB;AAAA,EACnC;AACF;AACA,sBAAsB,aAAa,IAAI;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|