@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
|
@@ -153,10 +153,10 @@ class StackableSeriesHelper {
|
|
|
153
153
|
const binDomain = this.getStackBinDomain(stackKey);
|
|
154
154
|
const updatedMetadata = {
|
|
155
155
|
...datapointMetadata,
|
|
156
|
-
accumulator: value
|
|
156
|
+
accumulator: value >= 0 ? prevValue.maxBoundary : prevValue.minBoundary,
|
|
157
157
|
binDomain
|
|
158
158
|
};
|
|
159
|
-
const stackingOffset = value
|
|
159
|
+
const stackingOffset = value >= 0 ? prevValue.maxBoundary : prevValue.minBoundary;
|
|
160
160
|
const calcDatapoint = {
|
|
161
161
|
x0: chartOrientation === "horizontal" && typeof datapoint.x0 === "number" ? datapoint.x0 + stackingOffset : datapoint.x0,
|
|
162
162
|
x1: chartOrientation === "horizontal" && typeof datapoint.x1 === "number" ? datapoint.x1 + stackingOffset : datapoint.x1,
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { type XYAxisAnyNumericalType } from '../../../types/axis.js';
|
|
2
2
|
import { ScaleTypesMap } from '../../../types/scale-types-map.js';
|
|
3
|
+
import type { _XYChartThresholdXStaticData } from '../../../types/xy-chart-props.js';
|
|
3
4
|
import { XYAccessorDataTypes, type XYChartThresholdDataLineDynamic, type XYChartThresholdDataRangeDynamic, type XYChartThresholdDynamicData, type XYChartThresholdStaticData } from '../../../types/xy-chart.js';
|
|
4
5
|
export declare function castDataType<T extends keyof ScaleTypesMap>(value: XYAccessorDataTypes | undefined, axisType: T): ScaleTypesMap[T]['castDataType'];
|
|
5
6
|
export declare function castDynamicThresholdsDataType(data: XYChartThresholdDynamicData[], xAxisType: XYAxisAnyNumericalType, yAxisType: XYAxisAnyNumericalType): (XYChartThresholdDataLineDynamic | XYChartThresholdDataRangeDynamic)[];
|
|
@@ -12,4 +13,5 @@ export declare function castStaticThresholdsDataType(data: XYChartThresholdStati
|
|
|
12
13
|
yMin: number | Date;
|
|
13
14
|
yMax: number | Date;
|
|
14
15
|
} | undefined;
|
|
16
|
+
export declare function castStaticXThresholdsDataType(data: _XYChartThresholdXStaticData, xAxisType: XYAxisAnyNumericalType): _XYChartThresholdXStaticData | undefined;
|
|
15
17
|
//# sourceMappingURL=cast-data-types.d.ts.map
|
|
@@ -19,10 +19,12 @@ var cast_data_types_exports = {};
|
|
|
19
19
|
__export(cast_data_types_exports, {
|
|
20
20
|
castDataType: () => castDataType,
|
|
21
21
|
castDynamicThresholdsDataType: () => castDynamicThresholdsDataType,
|
|
22
|
-
castStaticThresholdsDataType: () => castStaticThresholdsDataType
|
|
22
|
+
castStaticThresholdsDataType: () => castStaticThresholdsDataType,
|
|
23
|
+
castStaticXThresholdsDataType: () => castStaticXThresholdsDataType
|
|
23
24
|
});
|
|
24
25
|
module.exports = __toCommonJS(cast_data_types_exports);
|
|
25
26
|
var import_type_guards = require("../../../../core/types/type-guards.js");
|
|
27
|
+
var import_get_x_value = require("../../../components/thresholds/get-x-value.js");
|
|
26
28
|
var import_get_y_value = require("../../../components/thresholds/get-y-value.js");
|
|
27
29
|
var import_axis = require("../../../types/axis.js");
|
|
28
30
|
function isValidDate(d) {
|
|
@@ -104,3 +106,16 @@ function castStaticThresholdsDataType(data, yAxisType) {
|
|
|
104
106
|
}
|
|
105
107
|
return void 0;
|
|
106
108
|
}
|
|
109
|
+
function castStaticXThresholdsDataType(data, xAxisType) {
|
|
110
|
+
const xMin = castDataType((0, import_get_x_value.getXValue)(data, "min"), xAxisType);
|
|
111
|
+
const xMax = castDataType((0, import_get_x_value.getXValue)(data, "max"), xAxisType);
|
|
112
|
+
const isValidThreshold = xMin !== void 0 && xMax !== void 0;
|
|
113
|
+
if (isValidThreshold) {
|
|
114
|
+
if ((0, import_type_guards.isPointThreshold)(xMin, xMax)) {
|
|
115
|
+
return { x: xMin };
|
|
116
|
+
} else {
|
|
117
|
+
return { xMin, xMax };
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
return void 0;
|
|
121
|
+
}
|
|
@@ -5,6 +5,12 @@ import type { XYChartSelectedDomains, XYChartSelectedSeries } from '../types/xy-
|
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
7
|
export interface XYChartSelectProps {
|
|
8
|
+
/**
|
|
9
|
+
* When `true`, suppresses pointer-based drag-to-select gestures.
|
|
10
|
+
* No selection tooltip appears while the prop is set.
|
|
11
|
+
* @defaultValue false
|
|
12
|
+
*/
|
|
13
|
+
disabled?: boolean;
|
|
8
14
|
/**
|
|
9
15
|
* Custom actions handler
|
|
10
16
|
* @param selectedSeries - A record mapping series keys to their data points.
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import { type ScaleBand, type ScaleLinear, type ScaleOrdinal, ScaleQuantize, type ScaleSymLog, ScaleThreshold, type ScaleTime } from 'd3-scale';
|
|
2
2
|
import type { ConvertibleUnit, FormatOptions, Unit } from '@dynatrace-sdk/units';
|
|
3
3
|
import type { XYAxisTypeLinear, XYAxisTypeLog } from './axis.js';
|
|
4
|
-
import type { XYChartAreaSeriesProps, XYChartBarSeriesProps, XYChartCategoricalAxisProps, XYChartChartLegendProps, XYChartDotSeriesProps, XYChartLineSeriesProps, XYChartLogAxisProps, XYChartNumericalAxisProps, XYChartProps, XYChartRectSeriesProps, XYChartSelectConfig, XYChartSeriesBaseProps, XYChartThresholdIndicatorProps, XYChartTimeAxisProps, XYChartToolbarConfigProps, XYChartXAxisProps, XYChartYAxisProps, XYShapeColorPaletteProp } from './xy-chart-props.js';
|
|
5
|
-
import type {
|
|
4
|
+
import type { _XYChartThresholdStaticXProps, _XYChartThresholdXStaticData, XYChartAreaSeriesProps, XYChartBarSeriesProps, XYChartCategoricalAxisProps, XYChartChartLegendProps, XYChartDotSeriesProps, XYChartLineSeriesProps, XYChartLogAxisProps, XYChartNumericalAxisProps, XYChartProps, XYChartRectSeriesProps, XYChartSelectConfig, XYChartSeriesBaseProps, XYChartThresholdIndicatorProps, XYChartTimeAxisProps, XYChartToolbarConfigProps, XYChartXAxisProps, XYChartYAxisProps, XYShapeColorPaletteProp } from './xy-chart-props.js';
|
|
5
|
+
import type { AreaDatapoint, BarDatapoint, BarSeriesVariant, BaseDatapoint, DotDatapoint, LineDatapoint, SeriesCurve, XYAccessorDataTypes, XYChartAreaSeries, XYChartAreaSeriesActionItem, XYChartBarSeries, XYChartBarSeriesActionItem, XYChartColorPalette, XYChartData, XYChartDotSeries, XYChartDotSeriesActionItem, XYChartLineSeries, XYChartLineSeriesActionItem, XYChartRectSeries, XYChartRectSeriesActionItem, XYChartThresholdDynamicData, XYChartThresholdStaticData, XYChartXAxisPosition, XYChartYAxisPosition } from './xy-chart.js';
|
|
6
|
+
import type { IntentProps } from '../../../core/slots/Intent/Intent.js';
|
|
7
|
+
import type { BehaviorTrackingProps } from '../../../core/types/behavior-tracking-props.js';
|
|
6
8
|
import type { TickLabelLayout } from '../../core/components/axes/types.js';
|
|
7
9
|
import { type Orientation, type PointsDisplay } from '../../core/components/canvas/types/canvas-shape.js';
|
|
8
10
|
import type { PointShapeType } from '../../core/components/shape/type.js';
|
|
@@ -151,7 +153,7 @@ export interface XYChartSlots {
|
|
|
151
153
|
xAxes: XYChartXAxisProps[];
|
|
152
154
|
legend: XYChartChartLegendProps;
|
|
153
155
|
toolbar: XYChartToolbarConfigProps;
|
|
154
|
-
thresholds: XYChartThresholdIndicatorProps[];
|
|
156
|
+
thresholds: (XYChartThresholdIndicatorProps | _XYChartThresholdStaticXProps)[];
|
|
155
157
|
annotations?: XYChartAnnotationsConfigProps;
|
|
156
158
|
select?: XYChartSelectConfig;
|
|
157
159
|
colorRules?: ColorRuleProps[];
|
|
@@ -168,22 +170,34 @@ export type XYChartThresholdsInternal = {
|
|
|
168
170
|
offset: {
|
|
169
171
|
left: 0;
|
|
170
172
|
right: 0;
|
|
173
|
+
top: 0;
|
|
174
|
+
bottom: 0;
|
|
171
175
|
};
|
|
172
176
|
yAxes: {
|
|
173
177
|
left: Set<string>;
|
|
174
178
|
right: Set<string>;
|
|
175
179
|
};
|
|
180
|
+
xAxes: {
|
|
181
|
+
top: Set<string>;
|
|
182
|
+
bottom: Set<string>;
|
|
183
|
+
};
|
|
176
184
|
} | {
|
|
177
185
|
thresholds: XYChartThresholdsPropsInternal;
|
|
178
186
|
none: false;
|
|
179
187
|
offset: {
|
|
180
188
|
left: typeof THRESHOLD_BAR_THICKNESS | 0;
|
|
181
189
|
right: typeof THRESHOLD_BAR_THICKNESS | 0;
|
|
190
|
+
top: typeof THRESHOLD_BAR_THICKNESS | 0;
|
|
191
|
+
bottom: typeof THRESHOLD_BAR_THICKNESS | 0;
|
|
182
192
|
};
|
|
183
193
|
yAxes: {
|
|
184
194
|
left: Set<string>;
|
|
185
195
|
right: Set<string>;
|
|
186
196
|
};
|
|
197
|
+
xAxes: {
|
|
198
|
+
top: Set<string>;
|
|
199
|
+
bottom: Set<string>;
|
|
200
|
+
};
|
|
187
201
|
};
|
|
188
202
|
type XYChartThresholdPropsInternal = {
|
|
189
203
|
id: string;
|
|
@@ -199,7 +213,16 @@ export type XYChartThresholdDynamicPropsInternal = {
|
|
|
199
213
|
data: XYChartThresholdDynamicData[];
|
|
200
214
|
} & Omit<XYChartThresholdPropsInternal, 'data'>;
|
|
201
215
|
export type XYChartThresholdStaticPropsInternal = XYChartThresholdPropsInternal;
|
|
202
|
-
export type
|
|
216
|
+
export type XYChartThresholdXStaticPropsInternal = {
|
|
217
|
+
id: string;
|
|
218
|
+
xAxisId: string;
|
|
219
|
+
data: _XYChartThresholdXStaticData;
|
|
220
|
+
color: string;
|
|
221
|
+
position: XYChartXAxisPosition;
|
|
222
|
+
label?: string;
|
|
223
|
+
strokeOnly?: boolean;
|
|
224
|
+
};
|
|
225
|
+
export type XYChartThresholdsPropsInternal = (XYChartThresholdDynamicPropsInternal | XYChartThresholdStaticPropsInternal | XYChartThresholdXStaticPropsInternal)[];
|
|
203
226
|
export interface XYChartVisibleAxesScales {
|
|
204
227
|
top: AnyXYChartScale | undefined;
|
|
205
228
|
bottom: AnyXYChartScale | undefined;
|
|
@@ -424,5 +447,11 @@ export type AnyLinearMetadata = DotMetadata | LineMetadata | AreaMetadata;
|
|
|
424
447
|
* Shape types compatible with gap strategies
|
|
425
448
|
*/
|
|
426
449
|
export type ShapeDatapointWithGapPolicy = LineDatapoint | RectDatapointInternal | AreaDatapoint;
|
|
450
|
+
/**
|
|
451
|
+
* @internal
|
|
452
|
+
*/
|
|
453
|
+
export type XYChartToolbar = Omit<XYChartToolbarConfigProps, 'intents'> & BehaviorTrackingProps & {
|
|
454
|
+
intents?: Array<IntentProps>;
|
|
455
|
+
};
|
|
427
456
|
export {};
|
|
428
457
|
//# sourceMappingURL=xy-chart-internals.d.ts.map
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { ReactNode } from 'react';
|
|
2
2
|
import type { ConvertibleUnit, FormatDateOptions, FormatOptions, Unit } from '@dynatrace-sdk/units';
|
|
3
|
-
import type { BAR_VARIANT_GROUP, BAR_VARIANT_SINGLE, BAR_VARIANT_STACK, BarSeriesVariant, SeriesCurve, XYChartAreaSeries, XYChartAreaSeriesActionItem, XYChartBarSeries, XYChartBarSeriesActionItem, XYChartColorPalette, XYChartData, XYChartDotSeries, XYChartDotSeriesActionItem, XYChartLineSeries, XYChartLineSeriesActionItem, XYChartRectSeries, XYChartRectSeriesActionItem, XYChartThresholdDynamicData, XYChartThresholdStaticData, XYChartTooltipPayload, XYChartXAxisPosition, XYChartYAxisPosition } from './xy-chart.js';
|
|
4
|
-
import {
|
|
3
|
+
import type { BAR_VARIANT_GROUP, BAR_VARIANT_SINGLE, BAR_VARIANT_STACK, BarSeriesVariant, SeriesCurve, XYChartAreaSeries, XYChartAreaSeriesActionItem, XYChartBarSeries, XYChartBarSeriesActionItem, XYChartColorPalette, XYChartData, XYChartDotSeries, XYChartDotSeriesActionItem, XYChartLineSeries, XYChartLineSeriesActionItem, XYChartRectSeries, XYChartRectSeriesActionItem, XYChartThresholdDynamicData, XYChartThresholdStaticData, XYChartThresholdValue, XYChartTooltipPayload, XYChartXAxisPosition, XYChartYAxisPosition } from './xy-chart.js';
|
|
4
|
+
import type { AriaLabelingProps } from '../../../core/types/a11y-props.js';
|
|
5
5
|
import type { BehaviorTrackingProps } from '../../../core/types/behavior-tracking-props.js';
|
|
6
6
|
import type { MaskingProps } from '../../../core/types/masking-props.js';
|
|
7
7
|
import type { StylingProps } from '../../../core/types/styling-props.js';
|
|
@@ -27,7 +27,7 @@ import type { XYChartSelectProps } from '../slots/Select.js';
|
|
|
27
27
|
* Props for the xy chart.
|
|
28
28
|
* @public
|
|
29
29
|
*/
|
|
30
|
-
export interface XYChartProps extends StylingProps, MaskingProps, BehaviorTrackingProps {
|
|
30
|
+
export interface XYChartProps extends StylingProps, MaskingProps, AriaLabelingProps, BehaviorTrackingProps {
|
|
31
31
|
/**
|
|
32
32
|
* Data object for the xy chart.
|
|
33
33
|
*/
|
|
@@ -403,13 +403,6 @@ export type XYChartAreaSeriesProps = Omit<XYChartSeriesBaseProps, 'colorPalette'
|
|
|
403
403
|
* @public
|
|
404
404
|
*/
|
|
405
405
|
export type XYChartAxisProps = XYChartAxisBaseProps & (XYChartNumericalAxisProps | XYChartLogAxisProps | XYChartCategoricalAxisProps | XYChartTimeAxisProps);
|
|
406
|
-
/**
|
|
407
|
-
* Props definition for the XYChart toolbar
|
|
408
|
-
* @internal
|
|
409
|
-
*/
|
|
410
|
-
export type XYChartToolbar = Omit<XYChartToolbarConfigProps, 'intents'> & BehaviorTrackingProps & {
|
|
411
|
-
intents?: Array<IntentProps>;
|
|
412
|
-
};
|
|
413
406
|
/**
|
|
414
407
|
* XYChart Log Axis Props
|
|
415
408
|
* @public
|
|
@@ -470,6 +463,18 @@ export interface XYChartAxisBaseProps {
|
|
|
470
463
|
* If there's not enough space for this tickLabelMaxSize, the axis will only take the available space for it.
|
|
471
464
|
*/
|
|
472
465
|
tickLabelMaxSize?: number;
|
|
466
|
+
/**
|
|
467
|
+
* If true, suppresses the crosshair line and magnifier associated with this axis during
|
|
468
|
+
* local hover interactions. Has no effect on the synchronized crosshair rendered by a
|
|
469
|
+
* `SharedChartInteractions` group.
|
|
470
|
+
*
|
|
471
|
+
* Note: the crosshair is a single shared element per orientation. When multiple axes
|
|
472
|
+
* share the same orientation (e.g. two YAxes), suppressing it on any one of them suppresses
|
|
473
|
+
* it for all.
|
|
474
|
+
*
|
|
475
|
+
* @defaultValue false
|
|
476
|
+
*/
|
|
477
|
+
hideCrosshair?: boolean;
|
|
473
478
|
}
|
|
474
479
|
/**
|
|
475
480
|
* XYChart Numerical Axis Props
|
|
@@ -745,4 +750,23 @@ export type XYChartThresholdStaticProps = BaseThresholdConfig & {
|
|
|
745
750
|
data: XYChartThresholdStaticData;
|
|
746
751
|
yAxisId: string;
|
|
747
752
|
};
|
|
753
|
+
/** @internal */
|
|
754
|
+
export type _XYChartThresholdDataXLineStatic = {
|
|
755
|
+
x: XYChartThresholdValue;
|
|
756
|
+
};
|
|
757
|
+
/** @internal */
|
|
758
|
+
export type _XYChartThresholdDataXRangeStatic = {
|
|
759
|
+
xMin: number | Date;
|
|
760
|
+
xMax: number | Date;
|
|
761
|
+
};
|
|
762
|
+
/** @internal */
|
|
763
|
+
export type _XYChartThresholdXStaticData = _XYChartThresholdDataXLineStatic | _XYChartThresholdDataXRangeStatic;
|
|
764
|
+
/**
|
|
765
|
+
* Props for the X-axis-bound Static XYChart.ThresholdIndicator slot component
|
|
766
|
+
* @internal
|
|
767
|
+
*/
|
|
768
|
+
export type _XYChartThresholdStaticXProps = BaseThresholdConfig & {
|
|
769
|
+
data: _XYChartThresholdXStaticData;
|
|
770
|
+
xAxisId: string;
|
|
771
|
+
};
|
|
748
772
|
//# sourceMappingURL=xy-chart-props.d.ts.map
|
|
@@ -33,7 +33,7 @@ const gridTemplateRows = (bottomAxisMaxHeight = "auto", topAxisMaxHeight = "auto
|
|
|
33
33
|
const maxTop = typeof topAxisMaxHeight === "number" ? `${Math.max(topAxisMaxHeight, import_constants.MIN_AXIS_TRUNCATION_SIZE)}px` : topAxisMaxHeight;
|
|
34
34
|
const maxBottom = typeof bottomAxisMaxHeight === "number" ? `${Math.max(bottomAxisMaxHeight, import_constants.MIN_AXIS_TRUNCATION_SIZE)}px` : bottomAxisMaxHeight;
|
|
35
35
|
const annotationsAreaSize = typeof annotationsArea === "number" ? `${annotationsArea}px` : "auto";
|
|
36
|
-
return `minmax(0, ${annotationsAreaSize}) minmax(0, ${maxTop}) minmax(60%, 1fr) minmax(0, ${maxBottom})`;
|
|
36
|
+
return `minmax(0, ${annotationsAreaSize}) minmax(0, ${maxTop}) auto minmax(60%, 1fr) auto minmax(0, ${maxBottom})`;
|
|
37
37
|
};
|
|
38
38
|
const AREAS = {
|
|
39
39
|
annotations: "annotations",
|
|
@@ -42,11 +42,15 @@ const AREAS = {
|
|
|
42
42
|
leftAxis: "left-axis",
|
|
43
43
|
rightAxis: "right-axis",
|
|
44
44
|
leftThreshold: "left-threshold",
|
|
45
|
-
rightThreshold: "right-threshold"
|
|
45
|
+
rightThreshold: "right-threshold",
|
|
46
|
+
topThreshold: "top-threshold",
|
|
47
|
+
bottomThreshold: "bottom-threshold"
|
|
46
48
|
};
|
|
47
49
|
const gridTemplateAreas = `
|
|
48
50
|
"${AREAS.annotations} ${AREAS.annotations} ${AREAS.annotations} . ."
|
|
49
51
|
". . ${AREAS.topAxis} . ."
|
|
52
|
+
". . ${AREAS.topThreshold} . ."
|
|
50
53
|
"${AREAS.leftAxis} ${AREAS.leftThreshold} plot ${AREAS.rightThreshold} ${AREAS.rightAxis}"
|
|
54
|
+
". . ${AREAS.bottomThreshold} . ."
|
|
51
55
|
". . ${AREAS.bottomAxis} . ."
|
|
52
56
|
`;
|
|
@@ -16,6 +16,6 @@ export declare function buildQueryGetClosestPoint(axisIdToScales: AxisIdToScales
|
|
|
16
16
|
};
|
|
17
17
|
export type ExactMatchIndex = Map<string, SeriesQueryResult[]>;
|
|
18
18
|
export declare function buildExactMatchIndex(allSeries: XYChartSeriesWithDatapoints[], datapointMetadataMap?: MapDatapoints): ExactMatchIndex;
|
|
19
|
-
export declare function findExactMatchFromIndex(preferred: SeriesQueryResult, index: ExactMatchIndex): SeriesQueryResult[];
|
|
19
|
+
export declare function findExactMatchFromIndex(preferred: SeriesQueryResult, index: ExactMatchIndex, datapointMetadataMap?: MapDatapoints): SeriesQueryResult[];
|
|
20
20
|
export declare function findExactMatchDatapoints(preferred: SeriesQueryResult, allSeries: XYChartSeriesWithDatapoints[]): SeriesQueryResult[];
|
|
21
21
|
//# sourceMappingURL=query-get-closest-point.d.ts.map
|
|
@@ -194,20 +194,38 @@ function serializeBoundingBoxValue(value) {
|
|
|
194
194
|
}
|
|
195
195
|
return `other:${String(value)}`;
|
|
196
196
|
}
|
|
197
|
-
function boundingBoxKey(datapoint) {
|
|
198
|
-
|
|
197
|
+
function boundingBoxKey(datapoint, metadata) {
|
|
198
|
+
const accumulator = metadata?.accumulator;
|
|
199
|
+
const baseline = metadata?.baseline;
|
|
200
|
+
const x0 = datapoint.x0;
|
|
201
|
+
let x1 = datapoint.x1;
|
|
202
|
+
const y0 = datapoint.y0;
|
|
203
|
+
let y1 = datapoint.y1;
|
|
204
|
+
if (accumulator !== void 0) {
|
|
205
|
+
if (baseline === "x") {
|
|
206
|
+
y1 = typeof datapoint.y1 === "number" ? datapoint.y1 + accumulator : datapoint.y1;
|
|
207
|
+
} else if (baseline === "y") {
|
|
208
|
+
x1 = typeof datapoint.x1 === "number" ? datapoint.x1 + accumulator : datapoint.x1;
|
|
209
|
+
}
|
|
210
|
+
}
|
|
211
|
+
return [x0, x1, y0, y1].map(serializeBoundingBoxValue).join("|");
|
|
199
212
|
}
|
|
200
|
-
function exactMatchKey(series, datapoint) {
|
|
201
|
-
return `${series.xAxisId}|${series.yAxisId}|${boundingBoxKey(datapoint)}`;
|
|
213
|
+
function exactMatchKey(series, datapoint, metadata) {
|
|
214
|
+
return `${series.xAxisId}|${series.yAxisId}|${boundingBoxKey(datapoint, metadata)}`;
|
|
202
215
|
}
|
|
203
216
|
function buildExactMatchIndex(allSeries, datapointMetadataMap) {
|
|
204
217
|
const index = /* @__PURE__ */ new Map();
|
|
205
218
|
for (const series of allSeries) {
|
|
206
219
|
for (const dp of series.data) {
|
|
207
|
-
|
|
220
|
+
const metadata = datapointMetadataMap?.get(dp);
|
|
221
|
+
if (metadata?.isGap) {
|
|
208
222
|
continue;
|
|
209
223
|
}
|
|
210
|
-
const key = exactMatchKey(
|
|
224
|
+
const key = exactMatchKey(
|
|
225
|
+
series,
|
|
226
|
+
dp,
|
|
227
|
+
metadata
|
|
228
|
+
);
|
|
211
229
|
const entry = {
|
|
212
230
|
type: series.type,
|
|
213
231
|
distance: 0,
|
|
@@ -224,10 +242,14 @@ function buildExactMatchIndex(allSeries, datapointMetadataMap) {
|
|
|
224
242
|
}
|
|
225
243
|
return index;
|
|
226
244
|
}
|
|
227
|
-
function findExactMatchFromIndex(preferred, index) {
|
|
245
|
+
function findExactMatchFromIndex(preferred, index, datapointMetadataMap) {
|
|
246
|
+
const metadata = datapointMetadataMap?.get(
|
|
247
|
+
preferred.datapoint
|
|
248
|
+
);
|
|
228
249
|
const key = exactMatchKey(
|
|
229
250
|
preferred.series,
|
|
230
|
-
preferred.datapoint
|
|
251
|
+
preferred.datapoint,
|
|
252
|
+
metadata
|
|
231
253
|
);
|
|
232
254
|
const matches = index.get(key);
|
|
233
255
|
return matches && matches.length > 0 ? matches : [preferred];
|
|
@@ -55,14 +55,17 @@ function buildQueryShared(sortedEntries, queryAllHovered, getBarPixelCenter, get
|
|
|
55
55
|
sortedEntries.combined,
|
|
56
56
|
searchBaselinePixel,
|
|
57
57
|
getClusterKey
|
|
58
|
-
) :
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
58
|
+
) : filterToClosestCluster(
|
|
59
|
+
collectLinearEntries(
|
|
60
|
+
barSeriesData,
|
|
61
|
+
lineSeriesData,
|
|
62
|
+
areaSeriesData,
|
|
63
|
+
datapointMetadataMap,
|
|
64
|
+
getBarPixelCenter,
|
|
65
|
+
getLinearSeriesPixelCenter
|
|
66
|
+
),
|
|
67
|
+
searchBaselinePixel,
|
|
68
|
+
getClusterKey
|
|
66
69
|
);
|
|
67
70
|
if (clusterEntries.length === 0) {
|
|
68
71
|
return { preferred: void 0, datapoints: [] };
|
|
@@ -79,18 +82,48 @@ function buildQueryShared(sortedEntries, queryAllHovered, getBarPixelCenter, get
|
|
|
79
82
|
Math.pow(entry.baselinePixel - cursorDomain, 2) + Math.pow(entry.value0Pixel - cursorVal, 2)
|
|
80
83
|
);
|
|
81
84
|
};
|
|
85
|
+
const deltasCache = /* @__PURE__ */ new WeakMap();
|
|
86
|
+
const groupedBarAxisDeltas = (entry) => {
|
|
87
|
+
const cached = deltasCache.get(entry);
|
|
88
|
+
if (cached !== void 0) {
|
|
89
|
+
return cached;
|
|
90
|
+
}
|
|
91
|
+
const [cursorDomain, cursorVal] = entry.isHorizontal ? [relative.y, relative.x] : [relative.x, relative.y];
|
|
92
|
+
const valueSpanStart = Math.min(entry.value0Pixel, entry.value1Pixel);
|
|
93
|
+
const valueSpanEnd = Math.max(entry.value0Pixel, entry.value1Pixel);
|
|
94
|
+
const valueDelta = Math.max(
|
|
95
|
+
valueSpanStart - cursorVal,
|
|
96
|
+
cursorVal - valueSpanEnd,
|
|
97
|
+
0
|
|
98
|
+
);
|
|
99
|
+
const baselineDelta = Math.abs(entry.baselinePixel - cursorDomain);
|
|
100
|
+
const result = { baselineDelta, valueDelta };
|
|
101
|
+
deltasCache.set(entry, result);
|
|
102
|
+
return result;
|
|
103
|
+
};
|
|
104
|
+
const compareGroupedBarDistance = (a, b) => {
|
|
105
|
+
const deltaA = groupedBarAxisDeltas(a);
|
|
106
|
+
const deltaB = groupedBarAxisDeltas(b);
|
|
107
|
+
if (deltaA.baselineDelta !== deltaB.baselineDelta) {
|
|
108
|
+
return deltaA.baselineDelta - deltaB.baselineDelta;
|
|
109
|
+
}
|
|
110
|
+
const valueA = Number.isNaN(deltaA.valueDelta) ? Infinity : deltaA.valueDelta;
|
|
111
|
+
const valueB = Number.isNaN(deltaB.valueDelta) ? Infinity : deltaB.valueDelta;
|
|
112
|
+
return valueA - valueB;
|
|
113
|
+
};
|
|
114
|
+
const compareEntries = hasGroupedBars ? compareGroupedBarDistance : (a, b) => distanceToCursor(a) - distanceToCursor(b);
|
|
82
115
|
const closestEntry = clusterEntries.reduce(
|
|
83
116
|
(closest, entry) => {
|
|
84
117
|
if (closest === void 0) {
|
|
85
118
|
return entry;
|
|
86
119
|
}
|
|
87
120
|
if (entry.result.type === import_xy_chart_internals.BAR_VARIANT && topmostHovered && entry.result.datapoint === topmostHovered.datapoint) {
|
|
88
|
-
if (closest.result.type === import_xy_chart_internals.BAR_VARIANT ||
|
|
121
|
+
if (closest.result.type === import_xy_chart_internals.BAR_VARIANT || compareEntries(entry, closest) <= 0) {
|
|
89
122
|
return entry;
|
|
90
123
|
}
|
|
91
124
|
return closest;
|
|
92
125
|
}
|
|
93
|
-
const diff =
|
|
126
|
+
const diff = compareEntries(entry, closest);
|
|
94
127
|
if (diff !== 0) {
|
|
95
128
|
return diff < 0 ? entry : closest;
|
|
96
129
|
}
|
|
@@ -149,25 +182,15 @@ function findClosestClusterBinary(sorted, searchBaselinePixel, getClusterKey) {
|
|
|
149
182
|
}
|
|
150
183
|
return sorted.slice(left, right + 1);
|
|
151
184
|
}
|
|
152
|
-
function
|
|
185
|
+
function collectLinearEntries(barSeriesData, lineSeriesData, areaSeriesData, datapointMetadataMap, getBarPixelCenter, getLinearSeriesPixelCenter) {
|
|
153
186
|
const entries = [];
|
|
154
|
-
let closestKey;
|
|
155
|
-
let closestDistance = Infinity;
|
|
156
|
-
function visit(entry) {
|
|
157
|
-
entries.push(entry);
|
|
158
|
-
const distance = Math.abs(entry.baselinePixel - searchBaselinePixel);
|
|
159
|
-
if (distance < closestDistance) {
|
|
160
|
-
closestDistance = distance;
|
|
161
|
-
closestKey = Math.round(entry.baselinePixel);
|
|
162
|
-
}
|
|
163
|
-
}
|
|
164
187
|
for (const series of barSeriesData) {
|
|
165
188
|
for (const datapoint of series.data) {
|
|
166
189
|
if ((0, import_safe_get.safeGet)(datapointMetadataMap, datapoint).isGap) {
|
|
167
190
|
continue;
|
|
168
191
|
}
|
|
169
192
|
const center = getBarPixelCenter(series, datapoint);
|
|
170
|
-
|
|
193
|
+
entries.push({
|
|
171
194
|
...center,
|
|
172
195
|
result: {
|
|
173
196
|
type: series.type,
|
|
@@ -184,7 +207,7 @@ function findClosestClusterLinear(barSeriesData, lineSeriesData, areaSeriesData,
|
|
|
184
207
|
continue;
|
|
185
208
|
}
|
|
186
209
|
const center = getLinearSeriesPixelCenter(series, datapoint);
|
|
187
|
-
|
|
210
|
+
entries.push({
|
|
188
211
|
...center,
|
|
189
212
|
result: {
|
|
190
213
|
type: series.type,
|
|
@@ -195,8 +218,20 @@ function findClosestClusterLinear(barSeriesData, lineSeriesData, areaSeriesData,
|
|
|
195
218
|
});
|
|
196
219
|
}
|
|
197
220
|
}
|
|
221
|
+
return entries;
|
|
222
|
+
}
|
|
223
|
+
function filterToClosestCluster(entries, searchBaselinePixel, getClusterKey) {
|
|
224
|
+
let closestKey;
|
|
225
|
+
let closestDistance = Infinity;
|
|
226
|
+
for (const entry of entries) {
|
|
227
|
+
const distance = Math.abs(entry.baselinePixel - searchBaselinePixel);
|
|
228
|
+
if (distance < closestDistance) {
|
|
229
|
+
closestDistance = distance;
|
|
230
|
+
closestKey = getClusterKey(entry);
|
|
231
|
+
}
|
|
232
|
+
}
|
|
198
233
|
if (closestKey === void 0) {
|
|
199
234
|
return [];
|
|
200
235
|
}
|
|
201
|
-
return entries.filter((e) =>
|
|
236
|
+
return entries.filter((e) => getClusterKey(e) === closestKey);
|
|
202
237
|
}
|
|
@@ -63,7 +63,11 @@ function buildQuerySingle(queryClosest, queryHovered, datapointMetadataMap) {
|
|
|
63
63
|
);
|
|
64
64
|
}
|
|
65
65
|
const preferred = results[prevailingShape];
|
|
66
|
-
const datapoints = (0, import_query_get_closest_point.findExactMatchFromIndex)(
|
|
66
|
+
const datapoints = (0, import_query_get_closest_point.findExactMatchFromIndex)(
|
|
67
|
+
preferred,
|
|
68
|
+
cachedIndex,
|
|
69
|
+
datapointMetadataMap
|
|
70
|
+
);
|
|
67
71
|
return { preferred, datapoints };
|
|
68
72
|
};
|
|
69
73
|
}
|
|
@@ -13,11 +13,12 @@ export declare function getXYChartAnnotationsConfiguration(slotsAnnotations?: XY
|
|
|
13
13
|
* @param contextConfig - config pass in config context
|
|
14
14
|
* @param rootProps - Config props passed in root component level
|
|
15
15
|
*/
|
|
16
|
-
export type XYChartConfig = Omit<Required<XYChartConfigProperties>, 'annotations' | 'select' | 'colorPalette' | 'tooltip'> & {
|
|
16
|
+
export type XYChartConfig = Omit<Required<XYChartConfigProperties>, 'annotations' | 'select' | 'colorPalette' | 'tooltip' | 'thresholdIndicators'> & {
|
|
17
17
|
annotations?: XYChartAnnotationsConfigProps;
|
|
18
18
|
select?: XYChartSelectConfig;
|
|
19
19
|
colorPalette?: XYChartColorPalette;
|
|
20
20
|
tooltip: XYChartTooltipConfig;
|
|
21
|
+
thresholdIndicators: XYChartSlots['thresholds'];
|
|
21
22
|
};
|
|
22
23
|
export declare const createXYChartConfiguration: (slots: XYChartSlots, contextConfig: XYChartConfigProperties, rootProps: ExportableXYChartProps) => XYChartConfig;
|
|
23
24
|
export declare function getAxes<T extends XYChartAxisProps>(slotAxes: T[], contextAxes: T[] | undefined): T[];
|
|
@@ -117,7 +117,7 @@ const createXYChartConfiguration = (slots, contextConfig, rootProps) => {
|
|
|
117
117
|
slots.annotations,
|
|
118
118
|
contextConfig.annotations
|
|
119
119
|
);
|
|
120
|
-
const select = slots.select || void 0;
|
|
120
|
+
const select = slots.select !== void 0 || contextConfig.select !== void 0 ? (0, import_lodash_es.merge)({}, contextConfig.select, slots.select) : void 0;
|
|
121
121
|
const thresholdIndicators = [
|
|
122
122
|
...slots.thresholds,
|
|
123
123
|
...contextConfig.thresholdIndicators || []
|
|
@@ -24,6 +24,7 @@ var import_jsx_runtime = require("react/jsx-runtime");
|
|
|
24
24
|
var import_lodash_es = require("lodash");
|
|
25
25
|
var import_react = require("react");
|
|
26
26
|
var import_bar_series_accessors = require("./bar-series-accessors.js");
|
|
27
|
+
var import_constants = require("./constants.js");
|
|
27
28
|
var import_iterate_slots = require("./iterate-slots.js");
|
|
28
29
|
var import_resolve_categorical_color_support = require("./resolve-categorical-color-support.js");
|
|
29
30
|
var import_transformer_data_to_xy = require("./transformer-data-to-xy.js");
|
|
@@ -33,9 +34,10 @@ var import_map_axes_to_xy = require("./utils/map-axes-to-xy.js");
|
|
|
33
34
|
var import_useBehavioralTrackingProps = require("../../../core/hooks/useBehavioralTrackingProps.js");
|
|
34
35
|
var import_download = require("../../../core/utils/download.js");
|
|
35
36
|
var import_defaults = require("../../categorical-bar/types/defaults.js");
|
|
36
|
-
var
|
|
37
|
+
var import_constants2 = require("../../core/constants.js");
|
|
37
38
|
var import_chart_types = require("../../core/types/chart-types.js");
|
|
38
39
|
var import_get_unit_as_string = require("../../core/utils/get-unit-as-string.js");
|
|
40
|
+
var import_is_valid_value_representation = require("../../core/utils/is-valid-value-representation.js");
|
|
39
41
|
var import_XYChartRoot = require("../../xy-chart/XYChartRoot.js");
|
|
40
42
|
const CATEGORY_AXIS_ID = "x-axis";
|
|
41
43
|
const Y_NUMERICAL_AXIS_ID = "y-axis-default";
|
|
@@ -55,8 +57,13 @@ const CategoricalBarToXY = (0, import_react.forwardRef)((props, forwardedRef) =>
|
|
|
55
57
|
truncationMode,
|
|
56
58
|
seriesActions,
|
|
57
59
|
layout,
|
|
60
|
+
valueRepresentation,
|
|
58
61
|
"data-dtrum-mask": dataDtrumMask,
|
|
59
|
-
"data-dtrum-allow": dataDtrumAllow
|
|
62
|
+
"data-dtrum-allow": dataDtrumAllow,
|
|
63
|
+
"aria-label": ariaLabel,
|
|
64
|
+
"aria-labelledby": ariaLabelledBy,
|
|
65
|
+
"aria-describedby": ariaDescribedBy,
|
|
66
|
+
"aria-details": ariaDetails
|
|
60
67
|
} = props;
|
|
61
68
|
const xyRef = (0, import_react.useRef)(null);
|
|
62
69
|
const mappedSeriesActions = (0, import_react.useMemo)(
|
|
@@ -98,7 +105,7 @@ const CategoricalBarToXY = (0, import_react.forwardRef)((props, forwardedRef) =>
|
|
|
98
105
|
const resolvedValueAxis = (0, import_lodash_es.merge)({}, import_defaults.defaultConfig.valueAxis, slotValueAxis);
|
|
99
106
|
const downloadDataCallback = (0, import_react.useCallback)(() => {
|
|
100
107
|
const csv = (0, import_format_csv.formatCSV)(data);
|
|
101
|
-
(0, import_download.downloadCSV)(csv,
|
|
108
|
+
(0, import_download.downloadCSV)(csv, import_constants2.CSS_DOWNLOAD_FILENAME);
|
|
102
109
|
}, [data]);
|
|
103
110
|
(0, import_react.useImperativeHandle)(
|
|
104
111
|
forwardedRef,
|
|
@@ -113,8 +120,12 @@ const CategoricalBarToXY = (0, import_react.forwardRef)((props, forwardedRef) =>
|
|
|
113
120
|
);
|
|
114
121
|
const isHorizontal = layout === "horizontal";
|
|
115
122
|
const barSeriesAccessors = (0, import_bar_series_accessors.getBarSeriesAccessors)(isHorizontal);
|
|
123
|
+
const resolvedValueRepresentation = valueRepresentation !== void 0 && (0, import_is_valid_value_representation.isValidValueRepresentation)(valueRepresentation) ? valueRepresentation : "absolute";
|
|
116
124
|
const xAxisProps = (0, import_map_axes_to_xy.mapCategoryAxisToXAxis)(resolvedCategoryAxis);
|
|
117
|
-
const yAxisProps = (0, import_map_axes_to_xy.mapValueAxisToYAxis)(
|
|
125
|
+
const yAxisProps = (0, import_map_axes_to_xy.mapValueAxisToYAxis)(
|
|
126
|
+
resolvedValueAxis,
|
|
127
|
+
resolvedValueRepresentation
|
|
128
|
+
);
|
|
118
129
|
const dimToAxisId = /* @__PURE__ */ new Map();
|
|
119
130
|
const numericalAxisGroups = /* @__PURE__ */ new Map();
|
|
120
131
|
if (seriesByDimension !== null) {
|
|
@@ -155,6 +166,10 @@ const CategoricalBarToXY = (0, import_react.forwardRef)((props, forwardedRef) =>
|
|
|
155
166
|
"data-dtrum-allow": dataDtrumAllow,
|
|
156
167
|
"data-dt-component": "CategoricalBarChart",
|
|
157
168
|
__downloadDataCallback: downloadDataCallback,
|
|
169
|
+
"aria-label": ariaLabel ?? import_constants.CATEGORICAL_BAR_CHART_ARIA_LABEL,
|
|
170
|
+
"aria-labelledby": ariaLabelledBy,
|
|
171
|
+
"aria-describedby": ariaDescribedBy,
|
|
172
|
+
"aria-details": ariaDetails,
|
|
158
173
|
...behaviorTrackingProps,
|
|
159
174
|
children: [
|
|
160
175
|
seriesByDimension !== null ? [...seriesByDimension.entries()].map(([dim, dimData]) => {
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
5
|
+
var __export = (target, all) => {
|
|
6
|
+
for (var name in all)
|
|
7
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
8
|
+
};
|
|
9
|
+
var __copyProps = (to, from, except, desc) => {
|
|
10
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
11
|
+
for (let key of __getOwnPropNames(from))
|
|
12
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
13
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
14
|
+
}
|
|
15
|
+
return to;
|
|
16
|
+
};
|
|
17
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
18
|
+
var constants_exports = {};
|
|
19
|
+
__export(constants_exports, {
|
|
20
|
+
CATEGORICAL_BAR_CHART_ARIA_LABEL: () => CATEGORICAL_BAR_CHART_ARIA_LABEL
|
|
21
|
+
});
|
|
22
|
+
module.exports = __toCommonJS(constants_exports);
|
|
23
|
+
const CATEGORICAL_BAR_CHART_ARIA_LABEL = "Categorical Bar Chart";
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { ValueRepresentation } from '../../../core/types/scales.js';
|
|
1
2
|
import type { XYChartNumericalAxisProps, XYChartXAxisProps } from '../../../xy-chart/types/xy-chart-props.js';
|
|
2
3
|
import type { CategoricalSlotsConfig } from '../iterate-slots.js';
|
|
3
4
|
export declare function mapCategoryAxisToXAxis(config: CategoricalSlotsConfig['categoryAxis']): {
|
|
@@ -5,7 +6,7 @@ export declare function mapCategoryAxisToXAxis(config: CategoricalSlotsConfig['c
|
|
|
5
6
|
tickLabelLayout?: XYChartXAxisProps['tickLabelLayout'];
|
|
6
7
|
tickLabelMaxSize?: number;
|
|
7
8
|
};
|
|
8
|
-
export declare function mapValueAxisToYAxis(config: CategoricalSlotsConfig['valueAxis']): {
|
|
9
|
+
export declare function mapValueAxisToYAxis(config: CategoricalSlotsConfig['valueAxis'], valueRepresentation: ValueRepresentation): {
|
|
9
10
|
type: 'numerical' | 'log';
|
|
10
11
|
label?: string;
|
|
11
12
|
min?: number | 'auto';
|
|
@@ -13,5 +14,6 @@ export declare function mapValueAxisToYAxis(config: CategoricalSlotsConfig['valu
|
|
|
13
14
|
formatter?: XYChartNumericalAxisProps['formatter'];
|
|
14
15
|
disableZoom?: boolean;
|
|
15
16
|
disablePan?: boolean;
|
|
17
|
+
valueRepresentation: ValueRepresentation;
|
|
16
18
|
};
|
|
17
19
|
//# sourceMappingURL=map-axes-to-xy.d.ts.map
|