@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
package/esm/charts/index.js.map
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../../src/charts/index.ts"],
|
|
4
|
-
"sourcesContent": ["/* eslint-disable @typescript-eslint/no-deprecated -- DEPRECATION: [APPDEV-17834] Re-exports deprecated legacy tooltip symbols. BREAKING-CHANGE: migrate to ChartTooltip before next major. */\nexport type {\n Variant as _Variant,\n VariantShape as _VariantShape,\n PointShapeType,\n} from './core/components/shape/type.js';\n\nexport type {\n InteractionMode as _InteractionMode,\n InteractionsOverlayProps as _InteractionsOverlayProps,\n InteractionTriggers as _InteractionTriggers,\n KeyboardOnlyInteractionTriggers as _KeyboardOnlyInteractionTriggers,\n ZoomBehavior as _ZoomBehavior,\n} from './core/components/interactions-overlay/types.js';\nexport { InteractionsOverlay as _InteractionsOverlay } from './core/components/interactions-overlay/InteractionsOverlay.js';\nexport type { RelativeAbsolutePosition as _RelativeAbsolutePosition } from './core/types/pointer-events.js';\n\nexport type {\n AnyNumberScale as _AnyNumberScale,\n DateScales as _DateScales,\n NumericScales as _NumericScales,\n} from './core/types/scales.js';\n\nexport { AnnotationsChartConfig } from './annotations-chart/contexts/AnnotationsChartConfig.context.js';\nexport { AnnotationsChart } from './annotations-chart/AnnotationsChart.js';\nexport type { AnnotationsChartConfigProperties } from './annotations-chart/types/annotations-chart-config-props.js';\nexport type { AnnotationsChartRef } from './annotations-chart/types/annotations-chart-ref.js';\nexport type { AnnotationsChartProps } from './annotations-chart/types/annotations-chart-props.js';\nexport type {\n BaseXAxisProps,\n TimeXAxisProps,\n TimestampXAxisProps,\n NumericalXAxisProps,\n XAxisProps,\n XAxisConfig as _XAxisConfig,\n XAxisConfigProps,\n} from './annotations-chart/components/axis/types/annotations-x-axis-props.js';\nexport type {\n AnnotationsActionsPayload,\n AnnotationsActionsHandler,\n BaseAnnotationsChartProps,\n} from './core/components/annotations/types/annotations.js';\nexport type {\n AnnotationsMarkerProps,\n NumericalMarkerProps,\n TimeMarkerProps,\n BaseMarkerProps,\n} from './core/components/annotations/types/annotations-marker-props.js';\nexport type {\n AnnotationsTooltipHandler,\n AnnotationsTooltipItem,\n AnnotationsTooltipProps,\n AnnotationsTooltipConfig,\n} from './core/components/annotations/components/tooltip/types/annotations-tooltip-props.js';\n\nexport type { AnnotationsTrackProps } from './core/components/annotations/types/annotations-track-props.js';\nexport type {\n AnnotationsConfigProperties,\n AnnotationsTrackConfigProperties,\n AnnotationsMarkerConfigProperties,\n} from './core/components/annotations/types/annotations-config-properties.js';\nexport { CategoricalBarChart } from './categorical-bar/CategoricalBarChart.js';\nexport { CategoricalBarChartConfig } from './categorical-bar/hooks/useCategoricalBarChartConfig.js';\nexport type { CategoricalBarChartThresholdIndicatorProps } from './categorical-bar/slots/ThresholdIndicator.js';\nexport type {\n CategoricalBarChartCategoryAxisConfiguration,\n CategoricalBarChartCategoryAxisProps,\n CategoricalBarChartConfiguration,\n CategoricalBarChartData,\n CategoricalBarChartLegendConfiguration,\n CategoricalBarChartLegendProps,\n CategoricalBarChartProps,\n CategoricalBarChartRef,\n CategoricalBarChartThresholdConfiguration,\n CategoricalBarChartToolbarConfiguration,\n CategoricalBarChartTooltipConfiguration,\n CategoricalBarChartTooltipProps,\n CategoricalBarChartValueAxisConfiguration,\n CategoricalBarChartValueAxisProps,\n CategoricalChartTooltipVariant,\n // eslint-disable-next-line @typescript-eslint/no-deprecated\n CategoricalUnit,\n GroupMode,\n InternalCategoricalBarChartThresholdConfiguration,\n Layout,\n RequiredCategoricalBarChartConfiguration,\n categoricalChartTooltipVariantOptions,\n groupModeOptions,\n layoutOptions,\n} from './categorical-bar/types/categorical-bar-chart.js';\nexport { AnnotationsAtom as _AnnotationsAtom } from './core/components/annotations/AnnotationsAtom.js';\nexport { MarkerAtom as _MarkerAtom } from './core/components/annotations/slots/MarkerAtom.js';\nexport { TrackAtom as _TrackAtom } from './core/components/annotations/slots/TrackAtom.js';\n\nexport type { AnnotationsAtomProps as _AnnotationsAtomProps } from './core/components/annotations/AnnotationsAtom.js';\nexport type { TrackAtomProps as _TrackAtomProps } from './core/components/annotations/types/track.js';\nexport type {\n MarkerAtomProps as _MarkerAtomProps,\n MarkerClickCoords as _MarkerClickCoords,\n MarkerInteractionState as _MarkerInteractionState,\n TextOverflowOptions,\n} from './core/components/annotations/types/marker.js';\n\nexport type {\n TickCategory as _TickCategory,\n TickLabelLayout,\n} from './core/components/axes/types.js';\nexport {\n HORIZONTAL_LABEL_LAYOUT_TYPE,\n VERTICAL_LABEL_LAYOUT_TYPE,\n} from './core/components/axes/types.js';\nexport { ChartGrid as _ChartGrid } from './core/components/chart-grid/ChartGridRoot.js';\nexport type { ChartGridAreaProps as _ChartGridAreaProps } from './core/components/chart-grid/ChartGridArea.js';\nexport type { ChartGridProps as _ChartGridProps } from './core/components/chart-grid/ChartGridRoot.js';\nexport { ChartLayout as _ChartLayout } from './core/components/chart-layout/ChartLayout.js';\nexport type { ChartLayoutRef as _ChartLayoutRef } from './core/components/chart-layout/types/chart-layout.js';\n\nexport type {\n ProviderSlotProp as _ProviderSlotProp,\n LegendProps as _ChartLayoutLegendProps,\n ChartLayoutProps as _ChartLayoutProps,\n ChartLayoutLegendSizes as _ChartLayoutLegendSizes,\n OverrideRatioFunction as _OverrideRatioFunction,\n ChartLayoutDimensions as _ChartLayoutDimensions,\n} from './core/components/chart-layout/types/chart-layout.js';\nexport { getLegendOrientation as _getLegendOrientation } from './core/components/chart-layout/utils/orientation.js';\nexport { EmptyState as _EmptyState } from './core/components/chart-states/EmptyState.js';\nexport type { EmptyStateProps as _EmptyStateProps } from './core/components/chart-states/EmptyState.js';\nexport { ErrorState as _ErrorState } from './core/components/chart-states/ErrorState.js';\nexport type { ErrorStateProps as _ErrorStateProps } from './core/components/chart-states/ErrorState.js';\nexport { ChartLegend as _ChartLegend } from './core/components/legend/categorical/ChartLegend.js';\nexport type { ChartLegendProps as _ChartLegendProps } from './core/components/legend/categorical/ChartLegend.js';\nexport type { LegendItem as _LegendItem } from './core/components/legend/categorical/types/legend.js';\nexport { RangeLegend as _RangeLegend } from './core/components/legend/range/RangeLegend.js';\nexport type {\n RangeItem as _RangeItem,\n RangeLegendProps as _RangeLegendProps,\n} from './core/components/legend/range/types/range-legend.js';\nexport { LegendSizeContext as _LegendSizeContext } from './core/components/legend/shared/context/LegendSizeContext.js';\nexport { ChartSeriesAction } from './core/components/series-action/ChartSeriesAction.js';\nexport { useChartActionsMenu as _useChartActionsMenu } from './core/components/series-action/hooks/useChartActionsMenu.js';\nexport type { ChartSeriesActionProps } from './core/components/series-action/ChartSeriesAction.js';\nexport type { SeriesActionsTemplate } from './core/types/series-actions-template.js';\nexport type { SeriesActions } from './core/types/series-actions-template.js';\nexport { ThresholdBar as _ThresholdBar } from './core/components/threshold-bar/ThresholdBar.js';\nexport type {\n ThresholdBarProps as _ThresholdBarProps,\n ThresholdMarker as _ThresholdMarker,\n BothBorders as _BothBorders,\n LeftBorder as _LeftBorder,\n RightBorder as _RightBorder,\n} from './core/components/threshold-bar/types.js';\nexport { ThresholdIndicator as _ThresholdIndicator } from './core/components/threshold-bar/indicators/ThresholdIndicator.js';\nexport type {\n ThresholdIndicatorData as _ThresholdIndicatorData,\n ThresholdIndicatorProps as _ThresholdIndicatorProps,\n} from './core/components/threshold-bar/indicators/ThresholdIndicator.js';\nexport { ChartToolbarRenderer as _ChartToolbarRenderer } from './core/components/toolbar/ChartToolbarRenderer.js';\nexport type {\n ChartToolbarRendererProps as _ChartToolbarRendererProps,\n IntentsAsyncTemplate as _IntentsAsyncTemplate,\n MenuDisplayMode as _MenuDisplayMode,\n menuDisplayModes as _menuDisplayModes,\n ToolbarHanderRef as _ToolbarHanderRef,\n} from './core/components/toolbar/types.js';\nexport type { InternalChartToolbarConfigured as _InternalChartToolbarConfigured } from './core/types/toolbar.js';\nexport type {\n ChartToolbarControlProps as _ChartToolbarControlProps,\n ChartToolbarControlShortcutProps as _ChartToolbarControlShortcutProps,\n} from './core/components/toolbar/components/Control.js';\n// TOOLTIP REGION\nexport type { Point as _Point } from './core/types/point.js';\n/** @deprecated Use `ChartTooltip` instead. Removal: APPDEV-17834 */\nexport { ChartTooltip as _ChartTooltip } from './core/components/tooltip/ChartTooltip/ChartTooltip.js';\n/** @deprecated Use `ChartTooltip` instead. Removal: APPDEV-17834 */\nexport type { ChartTooltipProps as _ChartTooltipProps } from './core/components/tooltip/ChartTooltip/ChartTooltip.js';\n/** @deprecated Use `ChartTooltip` instead. Removal: APPDEV-17834 */\nexport { ChartTooltipSlots as _ChartTooltipSlots } from './core/components/tooltip/types/ChartTooltip.config.js';\n/** @deprecated Use `ChartTooltip` instead. Removal: APPDEV-17834 */\nexport { ChartTooltipAtoms as _ChartTooltipAtoms } from './core/components/tooltip/types/ChartTooltip.config.js';\n/** @deprecated Use `ChartTooltip` instead. Removal: APPDEV-17834 */\nexport { ChartTooltipTemplate as _ChartTooltipTemplate } from './core/components/tooltip/types/ChartTooltip.config.js';\nexport type {\n TooltipItem,\n ChartTooltipConfigProps,\n} from './core/types/tooltip.js';\n\n/** @deprecated Use `ChartTooltip` instead. Removal: APPDEV-17834 */\nexport type { PrimaryAtomProps as _PrimaryAtomProps } from './core/components/tooltip-atoms/components/PrimaryAtom.js';\n/** @deprecated Use `ChartTooltip` instead. Removal: APPDEV-17834 */\nexport type { SecondaryAtomProps as _SecondaryAtomProps } from './core/components/tooltip-atoms/components/SecondaryAtom.js';\n/** @deprecated Use `ChartTooltip` instead. Removal: APPDEV-17834 */\nexport type { DurationChipAtomProps as _DurationChipAtomProps } from './core/components/tooltip-atoms/components/DurationChipAtom/DurationChipAtom.js';\n/** @deprecated Use `ChartTooltip` instead. Removal: APPDEV-17834 */\nexport type { BubbleShapeProps as _BubbleShapeProps } from './core/components/shape/BubbleShape/BubbleShape.js';\n/** @deprecated Use `ChartTooltip` instead. Removal: APPDEV-17834 */\nexport type { EmojiShapeProps as _EmojiShapeProps } from './core/components/shape/EmojiShape/EmojiShape.js';\n/** @deprecated Use `ChartTooltip` instead. Removal: APPDEV-17834 */\nexport type { IconShapeProps as _IconShapeProps } from './core/components/shape/IconShape/IconShape.js';\n/** @deprecated Use `ChartTooltip` instead. Removal: APPDEV-17834 */\nexport type { MultiDataPointShapeProps as _MultiDataPointShapeProps } from './core/components/shape/MultiDataPointShape.js';\n/** @deprecated Use `ChartTooltip` instead. Removal: APPDEV-17834 */\nexport type { SingleDataPointShapeProps as _SingleDataPointShapeProps } from './core/components/shape/SingleDataPointShape.js';\n/** @deprecated Use `ChartTooltip` instead. Removal: APPDEV-17834 */\nexport type { ActionSelectionDetails as _ActionSelectionDetails } from './core/components/tooltip/context/ActionSelectionContext.js';\n/** @deprecated Use `ChartTooltip` instead. Removal: APPDEV-17834 */\nexport { GeoItem as _GeoItem } from './core/components/tooltip/ChartTooltip/components/GeoItem.js';\n/** @deprecated Use `ChartTooltip` instead. Removal: APPDEV-17834 */\nexport type { GeoItemProps as _GeoItemProps } from './core/components/tooltip/ChartTooltip/components/GeoItem.js';\n/** @deprecated Use `ChartTooltip` instead. Removal: APPDEV-17834 */\nexport { SeriesItem as _SeriesItem } from './core/components/tooltip/ChartTooltip/components/SeriesItem/SeriesItem.js';\n/** @deprecated Use `ChartTooltip` instead. Removal: APPDEV-17834 */\nexport type { SeriesItemProps as _SeriesItemProps } from './core/components/tooltip/ChartTooltip/components/SeriesItem/SeriesItem.js';\n/** @deprecated Use `ChartTooltip` instead. Removal: APPDEV-17834 */\nexport { TimeFrameHeader as _TimeFrameHeader } from './core/components/tooltip/ChartTooltip/components/TimeFrameHeader/TimeFrameHeader.js';\n/** @deprecated Use `ChartTooltip` instead. Removal: APPDEV-17834 */\nexport type { TimeFrameHeaderProps as _TimeFrameHeaderProps } from './core/components/tooltip/ChartTooltip/components/TimeFrameHeader/TimeFrameHeader.js';\n/** @deprecated Use `ChartTooltip` instead. Removal: APPDEV-17834 */\nexport type { TimestampHeaderProps as _TimestampHeaderProps } from './core/components/tooltip/ChartTooltip/components/TimestampHeader/TimestampHeader.js';\n/** @deprecated Use `ChartTooltip` instead. Removal: APPDEV-17834 */\nexport type { RangeHeaderProps as _RangeHeaderProps } from './core/components/tooltip/ChartTooltip/components/RangeHeader/RangeHeader.js';\n/** @deprecated Use `ChartTooltip` instead. Removal: APPDEV-17834 */\nexport { EventItem as _EventItem } from './core/components/tooltip/ChartTooltip/components/EventItem/EventItem.js';\n/** @deprecated Use `ChartTooltip` instead. Removal: APPDEV-17834 */\nexport type { EvenItemProps as _EventItemProps } from './core/components/tooltip/ChartTooltip/components/EventItem/EventItem.js';\n/** @deprecated Use `ChartTooltip` instead. Removal: APPDEV-17834 */\nexport type { ActionItemProps as _ActionItemProps } from './core/components/tooltip/ChartTooltip/components/ActionItem/ActionItem.js';\n/** @deprecated Use `ChartTooltip` instead. Removal: APPDEV-17834 */\nexport { KeyValue as _KeyValue } from './core/components/tooltip/ChartTooltip/components/KeyValue.js';\n/** @deprecated Use `ChartTooltip` instead. Removal: APPDEV-17834 */\nexport type { KeyValueProps as _KeyValueProps } from './core/components/tooltip/ChartTooltip/components/KeyValue.js';\n/** @deprecated Use `ChartTooltip` instead. Removal: APPDEV-17834 */\nexport { TextHeader as _TextHeader } from './core/components/tooltip/ChartTooltip/components/TextHeader.js';\n/** @deprecated Use `ChartTooltip` instead. Removal: APPDEV-17834 */\nexport type { TextHeaderProps as _TextHeaderProps } from './core/components/tooltip/ChartTooltip/components/TextHeader.js';\n/** @deprecated Use `ChartTooltip` instead. Removal: APPDEV-17834 */\nexport { DurationChip as _DurationChip } from './core/components/tooltip/ChartTooltip/components/DurationChip.js';\n/** @deprecated Use `ChartTooltip` instead. Removal: APPDEV-17834 */\nexport type { DurationChipProps as _DurationChipProps } from './core/components/tooltip/ChartTooltip/components/DurationChip.js';\nexport { SharedChartInteractions } from './core/components/shared-chart-interactions/SharedChartInteractions.js';\n\n// OVERLAY TOOLTIP REGION\nexport { OverlayTooltip as _OverlayTooltip } from './core/components/overlay-tooltip/OverlayTooltip.js';\nexport { ChartTooltip } from './core/components/overlay-tooltip/OverlayTooltip.js';\nexport { GEO_DEFAULTS as _GEO_DEFAULTS } from './core/components/overlay-tooltip/defaults.js';\nexport { useDefaultConfig as _useDefaultConfig } from './core/components/overlay-tooltip/hooks/useDefaultConfig.js';\nexport { useDefaultLabels as _useDefaultLabels } from './core/components/overlay-tooltip/hooks/useDefaultLabels.js';\nexport type { DefaultConfigByGeoLayer as _DefaultConfigByGeoLayer } from './core/components/overlay-tooltip/types.js';\nexport {\n OverlayProvider as _OverlayProvider,\n useOverlay as _useOverlayChart,\n} from './core/components/overlay-tooltip/contexts/OverlayContext.js';\nexport {\n TooltipProvider as _OverlayTooltipProvider,\n useTooltip as _useOverlayTooltipStore,\n} from './core/components/overlay-tooltip/contexts/TooltipContext.js';\nexport { useTooltipReducer as _useOverlayTooltipReducer } from './core/components/overlay-tooltip/useTooltipReducer.js';\nexport { useTooltipData as _useOverlayTooltipData } from './core/components/overlay-tooltip/hooks/useTooltipData.js';\nexport {\n useTooltipActions as _useOverlayTooltipActions,\n type EventCoords as _EventCoords,\n} from './core/components/overlay-tooltip/useTooltipActions.js';\nexport type {\n OverlayTooltipBaseProps as _OverlayTooltipBaseProps,\n OverlayTooltipUncontrolledProps as _OverlayTooltipUncontrolledProps,\n OverlayTooltipControlledProps as _OverlayTooltipControlledProps,\n TooltipState as _OverlayTooltipState,\n TooltipStore as _OverlayTooltipStoreType,\n OverlayTooltipProps as _OverlayTooltipProps,\n Data as _OverlayTooltipData,\n NoData as _OverlayTooltipNoData,\n HeaderData,\n TooltipValue,\n GeometryTypes as _OverlayTooltipGeometryTypes,\n GeometryTypesEnum as _GeometryTypesEnum,\n SeriesHeaderProps,\n Positions as _OverlayTooltipPositions,\n Overlay as _OverlayTooltipOverlay,\n SeriesName,\n GeoLayerTypes as _OverlayTooltipGeoLayerTypes,\n DefaultConfig as _OverlayTooltipDefaultConfig,\n FormatStrategy as _OverlayTooltipFormatStrategy,\n TooltipAction as _OverlayTooltipAction,\n DefaultConfigByGeometry as _OverlayTooltipDefaultConfigByGeometry,\n Geometry as _OverlayTooltipGeometry,\n} from './core/components/overlay-tooltip/types.js';\nexport type { ActionProps } from './core/components/overlay-tooltip/components/global-actions/Action.js';\nexport type { ActionsPlaceholderProps } from './core/components/overlay-tooltip/components/global-actions/ActionsPlaceholder.js';\nexport type {\n HeaderProps as ChartTooltipHeaderProps,\n HeaderDataWithDuration,\n HeaderDataInformation,\n} from './core/components/overlay-tooltip/components/header/types/header.js';\nexport type { FooterProps as ChartTooltipFooterProps } from './core/components/overlay-tooltip/components/Footer.js';\nexport { useDefaultLabels as _useOverlayTooltipDefaultLabels } from './core/components/overlay-tooltip/hooks/useDefaultLabels.js';\nexport type { Defaults as _OverlayTooltipDefaults } from './core/components/overlay-tooltip/hooks/useDefaultLabels.js';\nexport type {\n SeriesItemProps,\n ShapeSeriesItemProps,\n SymbolSeriesItemProps,\n IconSeriesItemProps,\n BaseSeriesItemProps,\n SeriesItemActions,\n TooltipTruncationOptions,\n TruncationModeMultiLine,\n TruncationModeMaxLines,\n IconStyle,\n Series,\n} from './core/components/overlay-tooltip/types/series.js';\nexport type { useTooltipReducer as _OverlayTooltipReducerType } from './core/components/overlay-tooltip/useTooltipReducer.js';\n\nexport {\n SIXTY_FPS as _FPS,\n DEFAULT_TRUNCATION_MODE,\n CSS_DOWNLOAD_FILENAME,\n} from './core/constants.js';\nexport { getTabIndexValue as _getTabIndexValue } from './core/utils/a11yToolbarControls.js';\nexport { getTabIndexKey as _getTabIndexKey } from './core/utils/a11yToolbarControls.js';\nexport { buildQuantizedRangeItems as _buildQuantizedRangeItems } from './core/utils/build-quantized-range-items.js';\nexport { buildCategoricalItemsFromScale as _buildCategoricalItemsFromScale } from './core/utils/build-categorical-items-from-scale.js';\nexport { buildLegendItemsFromRange as _buildLegendItemsFromRange } from './core/utils/build-legend-items-from-range.js';\nexport { buildQuantizeScaleFromColorPalette as _buildQuantizeScaleFromColorPalette } from './core/utils/build-quantize-scale-from-color-palette.js';\nexport { buildThresholdScaleFromRanges as _buildThresholdScaleFromRanges } from './core/utils/build-threshold-scale-from-ranges.js';\nexport { coerceSizeValue as _coerceSizeValue } from './core/utils/coerceSizeValue.js';\nexport { isCustomColorPalette as _isCustomColorPalette } from './core/types/color-palette.js';\nexport { useA11yToolbarControls as _useA11yToolbarControls } from './core/hooks/useA11yToolbarControls.js';\nexport { useA11yToolbarTabIndex as _useA11yToolbarTabIndex } from './core/hooks/useA11yToolbarTabIndex.js';\nexport type {\n ToolbarInteractionModes as _ToolbarInteractionModes,\n MenuTrigger as _MenuTrigger,\n Collapse as _Collapse,\n} from './core/types/toolbar-interaction-modes.js';\nexport { useThrottledResizeObserver as _useThrottledResizeObserver } from './core/hooks/useThrottledResizeObserver.js';\nexport type {\n _ResizePayload,\n SizeState as _SizeState,\n} from './core/hooks/useThrottledResizeObserver.js';\nexport { useObserveContainerSize as _useObserveContainerSize } from './core/hooks/useObserveContainerSize.js';\n\nexport { getCanvasColor as _getCanvasColor } from './core/components/canvas/utils/canvas-color.js';\nexport {\n type PointsDisplay,\n pointsDisplayOptions,\n} from './core/components/canvas/types/canvas-shape.js';\n\nexport { useGraphSize as _useGraphSize } from './core/components/chart-layout/hooks/useGraphSize.js';\nexport { useChartLayoutOrientation as _useChartLayoutOrientation } from './core/components/chart-layout/hooks/useChartLayoutOrientation.js';\nexport { useChartLayoutLoading as _useChartLayoutLoading } from './core/components/chart-layout/hooks/useChartLayoutLoading.js';\nexport { useAutoLegendRefresh as _useAutoLegendRefresh } from './core/components/chart-layout/hooks/useAutoLegendRefresh.js';\nexport { useGridPlotSize as _useGridPlotSize } from './core/components/chart-grid/hooks/useGridPlotSize.js';\nexport type { GridPlotContextProps as _GridPlotContextProps } from './core/components/chart-grid/context/GridPlotContext.js';\nexport { useChartLayoutSize as _useChartLayoutSize } from './core/components/chart-layout/hooks/useChartLayoutSize.js';\nexport { useLegendSize as _useLegendSize } from './core/components/legend/shared/context/LegendSizeContext.js';\nexport { getTickFormatterMethod as _getTickFormatterMethod } from './core/utils/get-tick-formatter-method.js';\nexport type { FormatterWithPrecision as _FormatterWithPrecision } from './core/types/formatter.js';\n\nexport {\n sequentialColoringOptions as _sequentialColoringOptions,\n divergingColoringOptions as _divergingColoringOptions,\n themedColoringOptions as _themedColoringOptions,\n automaticColoringOptions as _automaticColoringOptions,\n colorPaletteOptions,\n colorPaletteModeOptions,\n} from './core/types/color-palette.js';\n\nexport type { EmptyStateSlotProps as EmptyStateProp } from './core/slots/chart-states/EmptyStateSlot.js';\nexport type { ErrorStateSlotProps as ErrorStateProps } from './core/slots/chart-states/ErrorStateSlot.js';\n// eslint-disable-next-line @typescript-eslint/no-deprecated\nexport { ChartToolbar } from './core/slots/toolbar/ChartToolbar.js';\nexport type { CompactToolbarProps } from './core/slots/toolbar/CompactToolbar.tsx';\nexport type { ChartMessage } from './core/types/chart-message.js';\nexport type {\n ChartColorPalette,\n ChartData,\n ChartDatapoint,\n} from './core/types/chart-data.js';\nexport type { ChartUnit } from './core/types/chart-unit.js';\nexport type {\n ColorPalette,\n CustomColorPalette,\n ColorPaletteMode,\n ColorToken,\n AutomaticColorPalette as _AutomaticColorPalette,\n ThemedColorPalette as _ThemedColorPalette,\n ColorPaletteDefinition as _ColorPaletteDefinition,\n} from './core/types/color-palette.js';\nexport type { DateString } from './core/types/dates.js';\nexport type { Dimensions as _Dimensions } from './core/types/dimensions.js';\nexport type {\n CategoricalFormatter,\n Formatter,\n TimeFormatter,\n} from './core/types/formatter.js';\nexport type {\n LegendPosition,\n LegendRatio,\n LegendProps,\n ChartLegendOrientation as _ChartLegendOrientation,\n legendPositionOptions,\n} from './core/types/legend.js';\nexport type {\n MaxScaleBoundary,\n MinScaleBoundary,\n} from './core/types/min-max-config.js';\nexport type {\n AxisScaleType,\n ValueRepresentation,\n axisScaleTypeOptions,\n valueRepresentationOptions,\n} from './core/types/scales.js';\nexport type { ColoredRange } from './core/types/colored-range.js';\nexport type {\n DynamicRangeThreshold,\n DynamicNumericRangeThreshold,\n DynamicThreshold,\n DynamicNumericThreshold,\n StaticRangeThreshold,\n StaticThreshold,\n ThresholdData,\n ThresholdPosition,\n DateThresholdData,\n DateThresholdPosition,\n NumericalThresholdData,\n NumericalThresholdPosition,\n DateThresholdConfig,\n NumericalThresholdConfig,\n BaseThresholdConfig,\n} from './core/types/thresholds.js';\nexport type {\n TickPrimitiveValue,\n TickValueFormatter,\n} from './core/types/tick-value.js';\nexport type {\n ChartToolbarConfig,\n ChartToolbarProps,\n ToolbarPlacement,\n A11yToolbarTabIndex as _A11yToolbarTabIndex,\n InternalChartToolbarConfig as _InternalChartToolbarConfig,\n DraggableToolbarProps,\n BaseToolbarProps,\n} from './core/types/toolbar.js';\nexport type {\n SeriesDisplayMode,\n TooltipVariant,\n seriesDisplayModeOptions,\n tooltipVariantOptions,\n} from './core/types/tooltip.js';\nexport type { WithId } from './core/types/with-id.js';\nexport {\n HistogramChart,\n HistogramAnnotations,\n} from './histogram/HistogramChart.js';\nexport { HistogramChartConfig } from './histogram/contexts/HistogramChartConfig.context.js';\nexport type {\n HistogramBin,\n HistogramSeries,\n HistogramTooltipVariant,\n histogramTooltipVariantOptions,\n HistogramZoomDomain,\n} from './histogram/types/histogram.js';\nexport type {\n HistogramChartConfigProperties,\n HistogramChartLegendProps,\n HistogramChartProps,\n HistogramChartToolbarProps,\n HistogramChartTooltipProps,\n HistogramChartXAxisProps,\n HistogramChartYAxisProps,\n} from './histogram/types/histogram-props.js';\nexport type {\n HistogramAnnotationsMarkerProps,\n HistogramAnnotationsProps,\n HistogramAnnotationsTrackProps,\n} from './histogram/components/annotations-histogram/types.js';\nexport type { HistogramToolbarSlotProps } from './histogram/types/toolbar.js';\nexport type { HistogramChartRef } from './histogram/types/histogram-ref.js';\nexport type { SelectProps } from './histogram/slots/Select.js';\nexport type { ZoomSlotProps } from './histogram/slots/Zoom.js';\nexport type { PanSlotProps } from './histogram/slots/Pan.js';\nexport type { HistogramThresholdIndicatorProps } from './histogram/slots/ThresholdIndicator.js';\nexport { HoneycombChart } from './honeycomb/HoneycombChart.js';\nexport { HoneycombChartConfig } from './honeycomb/context/honeycomb-chart-config.context.js';\nexport type {\n HoneycombChartRef,\n HoneycombChartProps,\n HoneycombLabelsDisplay,\n HoneycombChartAccessorDataProps,\n HoneycombTileData,\n HoneycombTileShape,\n HoneycombTileBaseData,\n HoneycombTileNumericData,\n HoneycombTileCategoricalData,\n HoneycombCategoricalProps,\n HoneycombChartNumericalProps,\n HoneycombBaseProps,\n} from './honeycomb/types/honeycomb.js';\nexport type {\n HoneycombChartProperties,\n HoneycombChartToolbarConfiguration,\n} from './honeycomb/types/honeycomb-config-properties.js';\nexport type { HoneycombLegendProps } from './honeycomb/slots/HoneycombLegend.js';\nexport type {\n HoneycombChartTooltipProps,\n HoneycombCustomTooltipConfig,\n HoneycombTooltipPayload,\n} from './honeycomb/types/honeycomb-internal.js';\nexport type { HoneycombToolbarSlotProps } from './honeycomb/types/toolbar.js';\nexport { MultiMeterBarChart } from './meter-bar/multi-meter-bar/MultiMeterBarChart.js';\nexport type { MultiMeterBarChartLegendProps } from './meter-bar/multi-meter-bar/slots/Legend.js';\nexport { MultiMeterBarChartConfig } from './meter-bar/multi-meter-bar/context/MultiMeterBarChartConfigContext.js';\nexport type {\n MultiMeterBarChartProps,\n MultiMeterBarChartTooltipProps,\n MultiMeterBarSegmentProps,\n MultiMeterBarSegmentBaseProps,\n MultiMeterBarSegmentPropsWithAccessor,\n MultiMeterBarSegmentPropsWithNumericValue,\n MultiMeterBarSegmentData,\n MultiMeterBarChartData,\n MultiMeterBarChartTooltipPayload,\n MultiMeterBarChartTooltipSegmentPayload,\n MultiMeterBarChartActiveSegmentPayload,\n} from './meter-bar/multi-meter-bar/types/multi-meter-bar-chart.js';\nexport type {\n MultiMeterBarChartConsumerConfig,\n MultiMeterBarChartTooltipConsumerConfig,\n} from './meter-bar/multi-meter-bar/types/multi-meter-bar-chart-config.js';\nexport {\n type MultiMeterBarChartTooltipVariant,\n multiMeterBarChartTooltipVariantOptions,\n} from './meter-bar/multi-meter-bar/types/multi-meter-bar-chart.js';\nexport type {\n MeterBarSize,\n MeterBarChartElementRef,\n MultiMeterBarChartElementRef,\n} from './meter-bar/shared/types/meter-bars.js';\nexport { MeterBarChart } from './meter-bar/single-meter-bar/MeterBarChart.js';\nexport type { MeterBarChartLegendProps } from './meter-bar/shared/types/meter-bar-legend.js';\nexport { MeterBarChartThresholdLegend as _MeterBarChartThresholdLegend } from './meter-bar/single-meter-bar/components/MeterBarChartThresholdLegend/MeterBarChartThresholdLegend.js';\nexport { MeterBarChartConfig } from './meter-bar/single-meter-bar/context/MeterBarChartConfigContext.js';\nexport type {\n MeterBarChartProps,\n MeterBarChartPropsWithAccessor,\n MeterBarChartPropsWithNumericValue,\n MeterBarChartThresholdIndicatorProps,\n MeterBarChartTooltipProps,\n MeterBarSegmentData,\n MeterBarChartBaseProps,\n MeterBarChartData,\n MeterBarChartTooltipPayload,\n MeterBarChartActiveThreshold,\n} from './meter-bar/single-meter-bar/types/meter-bar-chart.js';\nexport type {\n MeterBarChartConsumerConfig,\n MeterBarChartThresholdConsumerConfig,\n MeterBarChartTooltipConsumerConfig,\n} from './meter-bar/single-meter-bar/types/meter-bar-chart-config.js';\nexport type {\n MeterBarToolbarSlotProps,\n MeterBarToolbarConfig,\n} from './meter-bar/shared/types/meter-bar-toolbar.js';\nexport { PieChart } from './pie/PieChart.js';\nexport { DonutChart } from './pie/DonutChart.js';\nexport {\n DonutChartConfig,\n PieChartConfig,\n} from './pie/context/ChartConfigContext.js';\nexport type { DonutChartRef, PieChartRef } from './pie/types/pie-chart-ref.js';\nexport type {\n DonutChartAccessorDataProps,\n DonutChartBaseProps,\n DonutChartData,\n DonutChartLegacyDataProps,\n DonutChartLegendConfig,\n DonutChartProps,\n DonutChartCustomTooltipProps,\n GroupConfig,\n InnerHandler,\n InnerParams,\n LabelTypeOptions,\n LabelsConfig,\n PieChartAccessorDataProps,\n PieChartBaseProps,\n PieChartConfiguration,\n PieChartContextConfig,\n PieChartCustomTooltipConfig,\n PieChartData,\n PieChartLegacyDataProps,\n PieChartLegendConfig,\n PieChartProps,\n PieChartTooltipPayload,\n PieChartCustomTooltipProps,\n SliceData,\n // eslint-disable-next-line @typescript-eslint/no-deprecated\n SliceUnit,\n ThresholdConfig,\n ThresholdType,\n thresholdTypeOptions,\n} from './pie/types/pie-chart.config.js';\n// eslint-disable-next-line @typescript-eslint/no-deprecated\nexport type { PieChartSlotProps } from './pie/types/toolbar.js';\nexport type { PieChartToolbarSlotProps } from './pie/types/toolbar.js';\nexport type { PieChartToolbarConfig } from './pie/types/toolbar.js';\nexport { SankeyChart as _SankeyChart } from './sankey-chart/SankeyChartRoot.js';\nexport type {\n SankeyChartProps as _SankeyChartProps,\n SankeyChartBaseProps as _SankeyChartBaseProps,\n SankeyNodeProps as _SankeyNodeProps,\n SankeyChartNodesProps as _SankeyChartNodesProps,\n} from './sankey-chart/types/sankey-props.js';\nexport type { SankeyNodeAlignment as _SankeyNodeAlignment } from './sankey-chart/types/sankey.js';\nexport { SingleValue } from './single-value/SingleValue.js';\nexport { SingleValueGrid } from './single-value-grid/SingleValueGrid.js';\nexport type { SingleValueGridProps } from './single-value-grid/types/single-value-grid.js';\nexport type { SingleValueGridSparklineProps } from './single-value-grid/slots/Sparkline.js';\nexport type { SingleValueGridTrendProps } from './single-value-grid/slots/Trend.js';\nexport type { SingleValueGridValueProps } from './single-value-grid/slots/Value.js';\nexport type { SingleValueSparklineProps } from './single-value/slots/Sparkline.js';\nexport type { InverseTrendOptions } from './core/components/single-value-renderer/components/trend/types/inverse-trend-options.js';\nexport type { TrendDirection } from './core/components/single-value-renderer/components/trend/types/trend-direction.js';\nexport type { TrendIndicatorColors } from './core/components/single-value-renderer/components/trend/types/trend-indicator-colors.js';\nexport type { TrendProps } from './core/components/single-value-renderer/components/trend/types/trend-props.js';\n\nexport { SingleValueConfig } from './single-value/hooks/use-single-value-config.js';\nexport type {\n SingleValueConfigProperties,\n SingleValueProps,\n SingleValueSparklineConfig,\n} from './single-value/types/single-value.js';\nexport type { SingleValueRef } from './single-value/types/single-value-ref.js';\nexport { Sparkline } from './sparkline/Sparkline.js';\nexport type { TimeseriesChartAnnotationsProps } from './timeseries/slots/annotations/Annotations.js';\nexport {\n TimeseriesAnnotations,\n TimeseriesChart,\n} from './timeseries/TimeseriesChart.js';\nexport { TimeseriesChartConfig } from './timeseries/context/TimeseriesChartConfig.context.js';\nexport type { TimeseriesChartLegendProps } from './timeseries/slots/Legend.js';\nexport type { TimeseriesChartThresholdIndicatorProps } from './timeseries/slots/ThresholdIndicator.js';\nexport type { TimeseriesChartTooltipProps } from './timeseries/slots/Tooltip.js';\nexport type { TimeseriesChartXAxisProps } from './timeseries/slots/XAxis.js';\nexport type {\n TimeseriesChartYAxisProps,\n YAxisPosition,\n} from './timeseries/slots/YAxis.js';\nexport type { TimeseriesAnnotationsMarkerProps } from './timeseries/slots/annotations/Marker.js';\nexport type { TimeseriesAnnotationsTrackProps } from './timeseries/slots/annotations/Track.js';\n/* eslint-disable-next-line @typescript-eslint/no-deprecated */\nexport { ChartInteractions } from './core/slots/chart-interactions/ChartInteractions.js';\nexport type { TimeseriesChartAreaProps } from './timeseries/slots/shapes/Area.js';\nexport type { TimeseriesChartBarProps } from './timeseries/slots/shapes/Bar.js';\nexport type { TimeseriesChartLineProps } from './timeseries/slots/shapes/Line.js';\nexport type { TimeseriesSelectProps } from './timeseries/slots/Select.js';\nexport type { TimeseriesChartToolbarSlotProps } from './timeseries/types/toolbar.js';\nexport type { TimeseriesZoomSlotProps } from './timeseries/slots/Zoom.js';\nexport type { TimeseriesPanSlotProps } from './timeseries/slots/Pan.js';\nexport type {\n ChartInteractionsConfig,\n ZoomChangeHandler,\n ZoomInteractions,\n ZoomRanges,\n} from './core/types/interactions.js';\nexport type {\n ProgrammaticZoomHandlers,\n ChartInteractionModes as _ChartInteractionModes,\n DownloadData as _DownloadData,\n Intent as _Intent,\n} from './core/types/zoom.js';\nexport type { ChartZoomConfig, ZoomChangeType } from './core/types/zoom.js';\nexport type {\n ChartVariant,\n TimeseriesChartVisualProps,\n TimeseriesZoomDomain,\n chartVariantOptions,\n} from './timeseries/types/timeseries.js';\nexport type {\n TimeseriesBand,\n TimeseriesBandDataPoint,\n TimeseriesChartBandProps,\n} from './timeseries/types/timeseries-band.js';\nexport type { TimeseriesChartConfigProperties } from './timeseries/types/timeseries-config.js';\nexport type {\n TimeseriesDatapoint,\n SeriesCurve,\n} from './core/types/timeseries.js';\nexport type {\n NumericalGapPolicy,\n NumericalThresholdGapPolicy,\n ThresholdGapPolicy,\n TimeGapPolicy,\n TimeThreshold,\n TimeUnit,\n} from './core/types/gap-policy.js';\nexport type { TimeseriesChartProps } from './timeseries/types/timeseries-props.js';\nexport type { TimeseriesChartRef } from './timeseries/types/timeseries-ref.js';\nexport type { TimeseriesChartToolbarConfig } from './timeseries/types/toolbar.js';\nexport type {\n ColorRuleProps,\n ColorSpecification,\n ComparisonOperators,\n MatchValue,\n} from './core/types/color-rule.js';\n\n// CONVERT-TO-TIMESERIES REGION\nexport {\n convertQueryResultToTimeseries,\n convertToTimeseries,\n} from './timeseries/utils/convert-to-timeseries/convert-to-timeseries.js';\nexport type { TimeseriesWithDimensions } from './timeseries/types/convert-to-timeseries.js';\nexport { convertToTimeseriesBand } from './timeseries/utils/convert-to-timeseries/convert-to-timeseries-band.js';\nexport {\n getFieldsArrayForRecordIndex,\n getTypesForRecordIndex,\n convertToFieldEntries,\n} from './timeseries/utils/convert-to-timeseries/utils/getFieldsArrayForRecordIndex.js';\nexport type { FieldEntry } from './timeseries/utils/convert-to-timeseries/utils/getFieldsArrayForRecordIndex.js';\nexport { checkTimeseriesFormat } from './timeseries/utils/convert-to-timeseries/utils/check-timeseries-format.js';\nexport { getDimensions } from './timeseries/utils/convert-to-timeseries/utils/get-dimensions.js';\nexport type { Dimension } from './timeseries/utils/convert-to-timeseries/utils/get-dimensions.js';\nexport { _getMetadataMetricsUnitForFieldName } from './timeseries/utils/convert-to-timeseries/utils/get-metadata-metrics-unit-for-field-name.js';\n\n// XYChart REGION\nexport type { XYChartAnnotationsTrackProps } from './xy-chart/slots/Annotations/Track.js';\nexport type { XYChartAnnotationsConfigProps } from './xy-chart/context/XYChartAnnotationsConfig.context.js';\nexport type { XYChartAnnotationsProps } from './xy-chart/slots/Annotations/Annotations.js';\nexport type { XYChartAnnotationsMarkerProps } from './xy-chart/slots/Annotations/Marker.js';\nexport type { XYChartSelectProps } from './xy-chart/slots/Select.js';\nexport { XYChart, XYChartAnnotations } from './xy-chart/XYChartRoot.js';\nexport { XYChartConfig } from './xy-chart/context/XYChartConfig.context.js';\nexport type {\n XYChartData,\n XYAccessorDataTypes,\n XYChartAxisType,\n XYChartXAxisPosition,\n XYChartYAxisPosition,\n XYChartRectSeriesActionItem,\n XYChartColorPalette,\n RectDatapoint,\n XYChartRef,\n TOP_POSITION,\n BOTTOM_POSITION,\n LEFT_POSITION,\n RIGHT_POSITION,\n BOTH_POSITION,\n LOG_SCALE_TYPE,\n NUMERICAL_SCALE_TYPE,\n TIME_SCALE_TYPE,\n CATEGORICAL_SCALE_TYPE,\n BAR_VARIANT_SINGLE,\n BAR_VARIANT_STACK,\n BAR_VARIANT_GROUP,\n BaseDatapoint,\n DotDatapoint,\n LineDatapoint,\n BarDatapoint,\n AreaDatapoint,\n SeriesCurve as XYChartSeriesCurve,\n BarSeriesVariant,\n XYChartDotSeriesActionItem,\n XYChartLineSeriesActionItem,\n XYChartBarSeriesActionItem,\n XYChartAreaSeriesActionItem,\n XYChartThresholdLineBase,\n XYChartThresholdRangeBase,\n XYChartThresholdDynamicData,\n XYChartThresholdDataLineDynamic,\n XYChartThresholdDataLineStatic,\n XYChartThresholdDataRangeStatic,\n XYChartThresholdValue,\n XYChartThresholdStaticData,\n XYChartThresholdDataRangeDynamic,\n XYChartSelectedSeries,\n XYChartSelectedDomains,\n AxisFormatter,\n NumericalFormatter,\n XYChartTooltipPayload,\n DotTooltipPayload,\n LineTooltipPayload,\n RectTooltipPayload,\n BaseTooltipPayload,\n BarTooltipPayload,\n XYChartSeriesActionInfo,\n XYChartBarSeries,\n XYChartDotSeries,\n XYChartLineSeries,\n XYChartRectSeries,\n XYChartAreaSeries,\n AreaTooltipPayload,\n XYChartTooltipDatapoint,\n} from './xy-chart/types/xy-chart.js';\n\nexport type {\n XYChartProps,\n XYChartRectSeriesProps,\n // eslint-disable-next-line @typescript-eslint/no-deprecated\n ColorSelectionProp,\n ShapeColorSelectionProp,\n XYShapeColorProp,\n XYShapeColorPaletteProp,\n XYChartAxisProps,\n XYChartAxisBaseProps,\n XYChartLogAxisProps,\n XYChartNumericalAxisProps,\n XYChartCategoricalAxisProps,\n XYChartTimeAxisProps,\n XYChartXAxisProps,\n XYChartYAxisProps,\n XYChartChartLegendProps,\n XYChartConfigProperties,\n XYChartBarSeriesProps,\n XYChartAreaSeriesProps,\n BarSeriesProps,\n StackBarSeriesProps,\n SingleBarSeriesProps,\n BaseBarSeriesProps,\n StackBarVerticalProps,\n StackBarHorizontalProps,\n BarSeriesVariantMap,\n GroupBarSeriesProps,\n GroupBarVerticalProps,\n GroupBarHorizontalProps,\n XYChartSeriesBaseProps,\n XYChartDotSeriesProps,\n XYChartLineSeriesProps,\n XYChartToolbarConfigProps,\n // eslint-disable-next-line @typescript-eslint/no-deprecated\n XYChartToolbarProps,\n XYChartToolbarSlotProps,\n XYChartThresholdIndicatorProps,\n XYChartThresholdDynamicProps,\n XYChartThresholdStaticProps,\n XYChartSelectConfig,\n // eslint-disable-next-line @typescript-eslint/no-deprecated\n XYChartCustomTooltipProps,\n XYChartTooltipProps,\n _XYChartTooltipVariant,\n} from './xy-chart/types/xy-chart-props.js';\n\nexport type { XYChartTooltipBodyProps as _XYChartTooltipBodyProps } from './xy-chart/components/tooltip/XYChartTooltipBody/XYChartTooltipBody.js';\nexport { XYChartTooltipBody as _XYChartTooltipBody } from './xy-chart/components/tooltip/XYChartTooltipBody/XYChartTooltipBody.js';\n\n// TopList REGION\nexport { TopList } from './top-list/TopList.js';\nexport type { TopListActionItem, TopListProps } from './top-list/TopList.js';\n\n// XYChart Adoption REGION\nexport type { _XYChartAdoptionProps } from './xy-chart-adoption/shared/types/props.js';\nexport type { _XYChartLegacyProps } from './xy-chart-adoption/shared/types/legacy-props.js';\n\n// GANTT CHART REGION\nexport type {\n GanttChartConfig,\n GanttChartFormatter,\n GanttChartFormatterCurrencyOptions,\n GanttSegmentData,\n GanttAnnotationsHeaderConfig,\n GanttAnnotationsMarkerProps,\n GanttAnnotationsTrackConfig,\n} from './gantt-chart/types/gantt-chart.js';\n\n// TreeMap Region\nexport { TreeMap } from './tree-map/TreeMap.js';\nexport type {\n TreeMapProps,\n TreeMapBaseProps,\n TreeMapHierarchicalProps,\n TreeMapFlatProps,\n TreeMapData,\n TreeMapLeafNode,\n TreeMapRootNode,\n TreeMapClusterNode,\n LabelsDisplay,\n NameAccessor,\n TreeMapElementRef,\n} from './tree-map/types/treemap.js';\nexport type {\n TreeMapContextConfig,\n TreemapChartLegendConfig,\n TreeMapChartToolbarConfig,\n TreeMapCustomTooltipConfig,\n TreeMapCustomTooltipProps,\n TreeMapTooltipPayload,\n} from './tree-map/types/treemap-chart.config.js';\nexport { TreeMapConfig } from './tree-map/context/TreeMapConfigContext.js';\n\n// CORE REGION\nexport { useMousePosition as _useMousePosition } from './core/hooks/useMousePosition.js';\n// eslint-disable-next-line @typescript-eslint/no-deprecated\nexport type { Timeseries, TimeseriesUnit } from './core/types/timeseries.js';\nexport type { IndicatorsDisplay } from './core/components/annotations/components/indicators/types.js';\nexport type { MinMax as _MinMax } from './core/types/min-max.js';\n// eslint-disable-next-line @typescript-eslint/no-deprecated\nexport { truncateText as _truncateText } from './core/utils/text-truncation.js';\n\n// CORE SPARKLINE REGION\nexport type {\n SparklineProps,\n SparklinLabelsAlignment,\n SparklineVariant,\n SparklineGapPolicy,\n} from './core/components/sparkline-display/types/sparkline-props.js';\nexport type {\n // eslint-disable-next-line @typescript-eslint/no-deprecated\n SparklineThresholdProps,\n SparklineThresholdIndicatorProps,\n} from './core/components/sparkline-display/types/sparkline-thresholds-props.js';\nexport type {\n SparklineXAxisProps,\n SparklineXAxisInternalProps as _SparklineXAxisInternalProps,\n} from './core/components/sparkline-display/types/sparkline-x-axis-props.js';\nexport type { SparklineYAxisProps } from './core/components/sparkline-display/types/sparkline-y-axis-props.js';\n\n// CORE SINGLE VALUE REGION\nexport type {\n // eslint-disable-next-line @typescript-eslint/no-deprecated\n SingleValueUnit,\n SingleValueAlignment,\n SingleValueBaseProps,\n} from './core/components/single-value-renderer/types/single-value-base-props.js';\nexport type {\n SingleValueToolbarSlotProps,\n SingleValueToolbarInternalProps as _SingleValueToolbarInternalProps,\n} from './single-value/types/single-value-toolbar.js';\nexport type { SingleValueToolbarConfig } from './core/components/single-value-renderer/components/SingleValueToolbar.js';\n// GAUGE CHART REGION\nexport { GaugeChart } from './gauge/GaugeChart.js';\nexport type { GaugeChartThresholdIndicatorProps } from './gauge/slots/ThresholdIndicator.js';\nexport { GaugeChartConfig } from './gauge/contexts/GaugeChartConfigContext.js';\nexport type {\n GaugeChartBaseProps,\n GaugeChartProps,\n GaugeChartPropsWithAccessor,\n GaugeChartPropsWithNumericValue,\n GaugeChartRef,\n GaugeChartData,\n} from './gauge/types/gauge-chart.js';\nexport type { GaugeChartConsumerConfig } from './gauge/types/gauge-chart-config.js';\nexport type {\n GaugeChartTooltipProps,\n GaugeChartTooltipHandler,\n GaugeChartTooltipItem,\n} from './gauge/slots/Tooltip.js';\nexport type {\n TooltipEmojiProps,\n TooltipIndicatorProps,\n TooltipTextProps,\n TooltipDurationProps,\n TooltipValueProps,\n TooltipItemProps,\n TooltipBodyProps,\n TooltipFooterProps,\n VirtualEstimatedSize,\n TooltipHeaderProps,\n} from './core/components/tooltip/types/tooltip.js';\n/** @deprecated Use `ChartTooltip` instead. Removal: APPDEV-17834 */\nexport type { ChartTooltipTemplateType as _ChartTooltipTemplateType } from './core/components/tooltip/types/ChartTooltip.config.js';\n/** @deprecated Use `ChartTooltip` instead. Removal: APPDEV-17834 */\nexport type { ChartTooltipAtomsType as _ChartTooltipAtomsType } from './core/components/tooltip/types/ChartTooltip.config.js';\n/** @deprecated Use `ChartTooltip` instead. Removal: APPDEV-17834 */\nexport type { ChartTooltipSlotsType as _ChartTooltipSlotsType } from './core/components/tooltip/types/ChartTooltip.config.js';\nexport { colorPaletteMap as _colorPaletteMap } from './core/types/color-palettes-definitions.js';\nexport { automaticColoringMap as _automaticColoringMap } from './core/types/color-palettes-definitions.js';\n/** @internal */\nexport { FlameChart as _FlameChart } from './flame/flame-chart/FlameChart.js';\n/** @internal */\nexport { FlameGraph as _FlameGraph } from './flame/flame-graph/FlameGraph.js';\n/** @internal */\nexport type {\n FlameChartProps as _FlameChartProps,\n FlameGraphProps as _FlameGraphProps,\n FlameOrientation as _FlameOrientation,\n} from './flame/shared/types/flame-chart.js';\n"],
|
|
5
|
-
"mappings": "AAcA,SAAgC,2BAA4B;AAS5D,SAAS,8BAA8B;AACvC,SAAS,wBAAwB;AAqCjC,SAAS,2BAA2B;AACpC,SAAS,iCAAiC;AA4B1C,SAA4B,uBAAwB;AACpD,SAAuB,kBAAmB;AAC1C,SAAsB,iBAAkB;AAexC;AAAA,EACE;AAAA,EACA;AAAA,OACK;AACP,SAAsB,iBAAkB;AAGxC,SAAwB,mBAAoB;AAW5C,SAAiC,4BAA6B;AAC9D,SAAuB,kBAAmB;AAE1C,SAAuB,kBAAmB;AAE1C,SAAwB,mBAAoB;AAG5C,SAAwB,mBAAoB;AAK5C,SAA8B,yBAA0B;AACxD,SAAS,yBAAyB;AAClC,SAAgC,2BAA4B;AAI5D,SAAyB,oBAAqB;
|
|
4
|
+
"sourcesContent": ["/* eslint-disable @typescript-eslint/no-deprecated -- DEPRECATION: [APPDEV-17834] Re-exports deprecated legacy tooltip symbols. BREAKING-CHANGE: migrate to ChartTooltip before next major. */\nexport type {\n Variant as _Variant,\n VariantShape as _VariantShape,\n PointShapeType,\n} from './core/components/shape/type.js';\n\nexport type {\n InteractionMode as _InteractionMode,\n InteractionsOverlayProps as _InteractionsOverlayProps,\n InteractionTriggers as _InteractionTriggers,\n KeyboardOnlyInteractionTriggers as _KeyboardOnlyInteractionTriggers,\n ZoomBehavior as _ZoomBehavior,\n} from './core/components/interactions-overlay/types.js';\nexport { InteractionsOverlay as _InteractionsOverlay } from './core/components/interactions-overlay/InteractionsOverlay.js';\nexport type { RelativeAbsolutePosition as _RelativeAbsolutePosition } from './core/types/pointer-events.js';\n\nexport type {\n AnyNumberScale as _AnyNumberScale,\n DateScales as _DateScales,\n NumericScales as _NumericScales,\n} from './core/types/scales.js';\n\nexport { AnnotationsChartConfig } from './annotations-chart/contexts/AnnotationsChartConfig.context.js';\nexport { AnnotationsChart } from './annotations-chart/AnnotationsChart.js';\nexport type { AnnotationsChartConfigProperties } from './annotations-chart/types/annotations-chart-config-props.js';\nexport type { AnnotationsChartRef } from './annotations-chart/types/annotations-chart-ref.js';\nexport type { AnnotationsChartProps } from './annotations-chart/types/annotations-chart-props.js';\nexport type {\n BaseXAxisProps,\n TimeXAxisProps,\n TimestampXAxisProps,\n NumericalXAxisProps,\n XAxisProps,\n XAxisConfig as _XAxisConfig,\n XAxisConfigProps,\n} from './annotations-chart/components/axis/types/annotations-x-axis-props.js';\nexport type {\n AnnotationsActionsPayload,\n AnnotationsActionsHandler,\n BaseAnnotationsChartProps,\n} from './core/components/annotations/types/annotations.js';\nexport type {\n AnnotationsMarkerProps,\n NumericalMarkerProps,\n TimeMarkerProps,\n BaseMarkerProps,\n} from './core/components/annotations/types/annotations-marker-props.js';\nexport type {\n AnnotationsTooltipHandler,\n AnnotationsTooltipItem,\n AnnotationsTooltipProps,\n AnnotationsTooltipConfig,\n} from './core/components/annotations/components/tooltip/types/annotations-tooltip-props.js';\n\nexport type { AnnotationsTrackProps } from './core/components/annotations/types/annotations-track-props.js';\nexport type {\n AnnotationsConfigProperties,\n AnnotationsTrackConfigProperties,\n AnnotationsMarkerConfigProperties,\n} from './core/components/annotations/types/annotations-config-properties.js';\nexport { CategoricalBarChart } from './categorical-bar/CategoricalBarChart.js';\nexport { CategoricalBarChartConfig } from './categorical-bar/hooks/useCategoricalBarChartConfig.js';\nexport type { CategoricalBarChartThresholdIndicatorProps } from './categorical-bar/slots/ThresholdIndicator.js';\nexport type {\n CategoricalBarChartCategoryAxisConfiguration,\n CategoricalBarChartCategoryAxisProps,\n CategoricalBarChartConfiguration,\n CategoricalBarChartData,\n CategoricalBarChartLegendConfiguration,\n CategoricalBarChartLegendProps,\n CategoricalBarChartProps,\n CategoricalBarChartRef,\n CategoricalBarChartThresholdConfiguration,\n CategoricalBarChartToolbarConfiguration,\n CategoricalBarChartTooltipConfiguration,\n CategoricalBarChartTooltipProps,\n CategoricalBarChartValueAxisConfiguration,\n CategoricalBarChartValueAxisProps,\n CategoricalChartTooltipVariant,\n // eslint-disable-next-line @typescript-eslint/no-deprecated\n CategoricalUnit,\n GroupMode,\n InternalCategoricalBarChartThresholdConfiguration,\n Layout,\n RequiredCategoricalBarChartConfiguration,\n categoricalChartTooltipVariantOptions,\n groupModeOptions,\n layoutOptions,\n} from './categorical-bar/types/categorical-bar-chart.js';\nexport { AnnotationsAtom as _AnnotationsAtom } from './core/components/annotations/AnnotationsAtom.js';\nexport { MarkerAtom as _MarkerAtom } from './core/components/annotations/slots/MarkerAtom.js';\nexport { TrackAtom as _TrackAtom } from './core/components/annotations/slots/TrackAtom.js';\n\nexport type { AnnotationsAtomProps as _AnnotationsAtomProps } from './core/components/annotations/AnnotationsAtom.js';\nexport type { TrackAtomProps as _TrackAtomProps } from './core/components/annotations/types/track.js';\nexport type {\n MarkerAtomProps as _MarkerAtomProps,\n MarkerClickCoords as _MarkerClickCoords,\n MarkerInteractionState as _MarkerInteractionState,\n TextOverflowOptions,\n} from './core/components/annotations/types/marker.js';\n\nexport type {\n TickCategory as _TickCategory,\n TickLabelLayout,\n} from './core/components/axes/types.js';\nexport {\n HORIZONTAL_LABEL_LAYOUT_TYPE,\n VERTICAL_LABEL_LAYOUT_TYPE,\n} from './core/components/axes/types.js';\nexport { ChartGrid as _ChartGrid } from './core/components/chart-grid/ChartGridRoot.js';\nexport type { ChartGridAreaProps as _ChartGridAreaProps } from './core/components/chart-grid/ChartGridArea.js';\nexport type { ChartGridProps as _ChartGridProps } from './core/components/chart-grid/ChartGridRoot.js';\nexport { ChartLayout as _ChartLayout } from './core/components/chart-layout/ChartLayout.js';\nexport type { ChartLayoutRef as _ChartLayoutRef } from './core/components/chart-layout/types/chart-layout.js';\n\nexport type {\n ProviderSlotProp as _ProviderSlotProp,\n LegendProps as _ChartLayoutLegendProps,\n ChartLayoutProps as _ChartLayoutProps,\n ChartLayoutLegendSizes as _ChartLayoutLegendSizes,\n OverrideRatioFunction as _OverrideRatioFunction,\n ChartLayoutDimensions as _ChartLayoutDimensions,\n} from './core/components/chart-layout/types/chart-layout.js';\nexport { getLegendOrientation as _getLegendOrientation } from './core/components/chart-layout/utils/orientation.js';\nexport { EmptyState as _EmptyState } from './core/components/chart-states/EmptyState.js';\nexport type { EmptyStateProps as _EmptyStateProps } from './core/components/chart-states/EmptyState.js';\nexport { ErrorState as _ErrorState } from './core/components/chart-states/ErrorState.js';\nexport type { ErrorStateProps as _ErrorStateProps } from './core/components/chart-states/ErrorState.js';\nexport { ChartLegend as _ChartLegend } from './core/components/legend/categorical/ChartLegend.js';\nexport type { ChartLegendProps as _ChartLegendProps } from './core/components/legend/categorical/ChartLegend.js';\nexport type { LegendItem as _LegendItem } from './core/components/legend/categorical/types/legend.js';\nexport { RangeLegend as _RangeLegend } from './core/components/legend/range/RangeLegend.js';\nexport type {\n RangeItem as _RangeItem,\n RangeLegendProps as _RangeLegendProps,\n} from './core/components/legend/range/types/range-legend.js';\nexport { LegendSizeContext as _LegendSizeContext } from './core/components/legend/shared/context/LegendSizeContext.js';\nexport { ChartSeriesAction } from './core/components/series-action/ChartSeriesAction.js';\nexport { useChartActionsMenu as _useChartActionsMenu } from './core/components/series-action/hooks/useChartActionsMenu.js';\nexport type { ChartSeriesActionProps } from './core/components/series-action/ChartSeriesAction.js';\nexport type { SeriesActionsTemplate } from './core/types/series-actions-template.js';\nexport type { SeriesActions } from './core/types/series-actions-template.js';\nexport { ThresholdBar as _ThresholdBar } from './core/components/threshold-bar/ThresholdBar.js';\nexport type {\n ThresholdBarProps as _ThresholdBarProps,\n ThresholdMarker as _ThresholdMarker,\n BothBorders as _BothBorders,\n LeftBorder as _LeftBorder,\n RightBorder as _RightBorder,\n TopBorder as _TopBorder,\n BottomBorder as _BottomBorder,\n} from './core/components/threshold-bar/types.js';\nexport { ThresholdIndicator as _ThresholdIndicator } from './core/components/threshold-bar/indicators/ThresholdIndicator.js';\nexport type {\n ThresholdIndicatorData as _ThresholdIndicatorData,\n ThresholdIndicatorProps as _ThresholdIndicatorProps,\n} from './core/components/threshold-bar/indicators/ThresholdIndicator.js';\nexport { ChartToolbarRenderer as _ChartToolbarRenderer } from './core/components/toolbar/ChartToolbarRenderer.js';\nexport type {\n ChartToolbarRendererProps as _ChartToolbarRendererProps,\n IntentsAsyncTemplate as _IntentsAsyncTemplate,\n MenuDisplayMode as _MenuDisplayMode,\n menuDisplayModes as _menuDisplayModes,\n ToolbarHanderRef as _ToolbarHanderRef,\n} from './core/components/toolbar/types.js';\nexport type { InternalChartToolbarConfigured as _InternalChartToolbarConfigured } from './core/types/toolbar.js';\nexport type {\n ChartToolbarControlProps as _ChartToolbarControlProps,\n ChartToolbarControlShortcutProps as _ChartToolbarControlShortcutProps,\n} from './core/components/toolbar/components/Control.js';\n// TOOLTIP REGION\nexport type { Point as _Point } from './core/types/point.js';\n/** @deprecated Use `ChartTooltip` instead. Removal: APPDEV-17834 */\nexport { ChartTooltip as _ChartTooltip } from './core/components/tooltip/ChartTooltip/ChartTooltip.js';\n/** @deprecated Use `ChartTooltip` instead. Removal: APPDEV-17834 */\nexport type { ChartTooltipProps as _ChartTooltipProps } from './core/components/tooltip/ChartTooltip/ChartTooltip.js';\n/** @deprecated Use `ChartTooltip` instead. Removal: APPDEV-17834 */\nexport { ChartTooltipSlots as _ChartTooltipSlots } from './core/components/tooltip/types/ChartTooltip.config.js';\n/** @deprecated Use `ChartTooltip` instead. Removal: APPDEV-17834 */\nexport { ChartTooltipAtoms as _ChartTooltipAtoms } from './core/components/tooltip/types/ChartTooltip.config.js';\n/** @deprecated Use `ChartTooltip` instead. Removal: APPDEV-17834 */\nexport { ChartTooltipTemplate as _ChartTooltipTemplate } from './core/components/tooltip/types/ChartTooltip.config.js';\nexport type {\n TooltipItem,\n ChartTooltipConfigProps,\n} from './core/types/tooltip.js';\n\n/** @deprecated Use `ChartTooltip` instead. Removal: APPDEV-17834 */\nexport type { PrimaryAtomProps as _PrimaryAtomProps } from './core/components/tooltip-atoms/components/PrimaryAtom.js';\n/** @deprecated Use `ChartTooltip` instead. Removal: APPDEV-17834 */\nexport type { SecondaryAtomProps as _SecondaryAtomProps } from './core/components/tooltip-atoms/components/SecondaryAtom.js';\n/** @deprecated Use `ChartTooltip` instead. Removal: APPDEV-17834 */\nexport type { DurationChipAtomProps as _DurationChipAtomProps } from './core/components/tooltip-atoms/components/DurationChipAtom/DurationChipAtom.js';\n/** @deprecated Use `ChartTooltip` instead. Removal: APPDEV-17834 */\nexport type { BubbleShapeProps as _BubbleShapeProps } from './core/components/shape/BubbleShape/BubbleShape.js';\n/** @deprecated Use `ChartTooltip` instead. Removal: APPDEV-17834 */\nexport type { EmojiShapeProps as _EmojiShapeProps } from './core/components/shape/EmojiShape/EmojiShape.js';\n/** @deprecated Use `ChartTooltip` instead. Removal: APPDEV-17834 */\nexport type { IconShapeProps as _IconShapeProps } from './core/components/shape/IconShape/IconShape.js';\n/** @deprecated Use `ChartTooltip` instead. Removal: APPDEV-17834 */\nexport type { MultiDataPointShapeProps as _MultiDataPointShapeProps } from './core/components/shape/MultiDataPointShape.js';\n/** @deprecated Use `ChartTooltip` instead. Removal: APPDEV-17834 */\nexport type { SingleDataPointShapeProps as _SingleDataPointShapeProps } from './core/components/shape/SingleDataPointShape.js';\n/** @deprecated Use `ChartTooltip` instead. Removal: APPDEV-17834 */\nexport type { ActionSelectionDetails as _ActionSelectionDetails } from './core/components/tooltip/context/ActionSelectionContext.js';\n/** @deprecated Use `ChartTooltip` instead. Removal: APPDEV-17834 */\nexport { GeoItem as _GeoItem } from './core/components/tooltip/ChartTooltip/components/GeoItem.js';\n/** @deprecated Use `ChartTooltip` instead. Removal: APPDEV-17834 */\nexport type { GeoItemProps as _GeoItemProps } from './core/components/tooltip/ChartTooltip/components/GeoItem.js';\n/** @deprecated Use `ChartTooltip` instead. Removal: APPDEV-17834 */\nexport { SeriesItem as _SeriesItem } from './core/components/tooltip/ChartTooltip/components/SeriesItem/SeriesItem.js';\n/** @deprecated Use `ChartTooltip` instead. Removal: APPDEV-17834 */\nexport type { SeriesItemProps as _SeriesItemProps } from './core/components/tooltip/ChartTooltip/components/SeriesItem/SeriesItem.js';\n/** @deprecated Use `ChartTooltip` instead. Removal: APPDEV-17834 */\nexport { TimeFrameHeader as _TimeFrameHeader } from './core/components/tooltip/ChartTooltip/components/TimeFrameHeader/TimeFrameHeader.js';\n/** @deprecated Use `ChartTooltip` instead. Removal: APPDEV-17834 */\nexport type { TimeFrameHeaderProps as _TimeFrameHeaderProps } from './core/components/tooltip/ChartTooltip/components/TimeFrameHeader/TimeFrameHeader.js';\n/** @deprecated Use `ChartTooltip` instead. Removal: APPDEV-17834 */\nexport type { TimestampHeaderProps as _TimestampHeaderProps } from './core/components/tooltip/ChartTooltip/components/TimestampHeader/TimestampHeader.js';\n/** @deprecated Use `ChartTooltip` instead. Removal: APPDEV-17834 */\nexport type { RangeHeaderProps as _RangeHeaderProps } from './core/components/tooltip/ChartTooltip/components/RangeHeader/RangeHeader.js';\n/** @deprecated Use `ChartTooltip` instead. Removal: APPDEV-17834 */\nexport { EventItem as _EventItem } from './core/components/tooltip/ChartTooltip/components/EventItem/EventItem.js';\n/** @deprecated Use `ChartTooltip` instead. Removal: APPDEV-17834 */\nexport type { EvenItemProps as _EventItemProps } from './core/components/tooltip/ChartTooltip/components/EventItem/EventItem.js';\n/** @deprecated Use `ChartTooltip` instead. Removal: APPDEV-17834 */\nexport type { ActionItemProps as _ActionItemProps } from './core/components/tooltip/ChartTooltip/components/ActionItem/ActionItem.js';\n/** @deprecated Use `ChartTooltip` instead. Removal: APPDEV-17834 */\nexport { KeyValue as _KeyValue } from './core/components/tooltip/ChartTooltip/components/KeyValue.js';\n/** @deprecated Use `ChartTooltip` instead. Removal: APPDEV-17834 */\nexport type { KeyValueProps as _KeyValueProps } from './core/components/tooltip/ChartTooltip/components/KeyValue.js';\n/** @deprecated Use `ChartTooltip` instead. Removal: APPDEV-17834 */\nexport { TextHeader as _TextHeader } from './core/components/tooltip/ChartTooltip/components/TextHeader.js';\n/** @deprecated Use `ChartTooltip` instead. Removal: APPDEV-17834 */\nexport type { TextHeaderProps as _TextHeaderProps } from './core/components/tooltip/ChartTooltip/components/TextHeader.js';\n/** @deprecated Use `ChartTooltip` instead. Removal: APPDEV-17834 */\nexport { DurationChip as _DurationChip } from './core/components/tooltip/ChartTooltip/components/DurationChip.js';\n/** @deprecated Use `ChartTooltip` instead. Removal: APPDEV-17834 */\nexport type { DurationChipProps as _DurationChipProps } from './core/components/tooltip/ChartTooltip/components/DurationChip.js';\nexport { SharedChartInteractions } from './core/components/shared-chart-interactions/SharedChartInteractions.js';\n\n// OVERLAY TOOLTIP REGION\nexport { OverlayTooltip as _OverlayTooltip } from './core/components/overlay-tooltip/OverlayTooltip.js';\nexport { ChartTooltip } from './core/components/overlay-tooltip/OverlayTooltip.js';\nexport { GEO_DEFAULTS as _GEO_DEFAULTS } from './core/components/overlay-tooltip/defaults.js';\nexport { useDefaultConfig as _useDefaultConfig } from './core/components/overlay-tooltip/hooks/useDefaultConfig.js';\nexport { useDefaultLabels as _useDefaultLabels } from './core/components/overlay-tooltip/hooks/useDefaultLabels.js';\nexport type { DefaultConfigByGeoLayer as _DefaultConfigByGeoLayer } from './core/components/overlay-tooltip/types.js';\nexport {\n OverlayProvider as _OverlayProvider,\n useOverlay as _useOverlayChart,\n} from './core/components/overlay-tooltip/contexts/OverlayContext.js';\nexport {\n TooltipProvider as _OverlayTooltipProvider,\n useTooltip as _useOverlayTooltipStore,\n} from './core/components/overlay-tooltip/contexts/TooltipContext.js';\nexport { useTooltipReducer as _useOverlayTooltipReducer } from './core/components/overlay-tooltip/useTooltipReducer.js';\nexport { useTooltipData as _useOverlayTooltipData } from './core/components/overlay-tooltip/hooks/useTooltipData.js';\nexport {\n useTooltipActions as _useOverlayTooltipActions,\n type EventCoords as _EventCoords,\n} from './core/components/overlay-tooltip/useTooltipActions.js';\nexport type {\n OverlayTooltipBaseProps as _OverlayTooltipBaseProps,\n OverlayTooltipUncontrolledProps as _OverlayTooltipUncontrolledProps,\n OverlayTooltipControlledProps as _OverlayTooltipControlledProps,\n TooltipState as _OverlayTooltipState,\n TooltipStore as _OverlayTooltipStoreType,\n OverlayTooltipProps as _OverlayTooltipProps,\n Data as _OverlayTooltipData,\n NoData as _OverlayTooltipNoData,\n HeaderData,\n TooltipValue,\n GeometryTypes as _OverlayTooltipGeometryTypes,\n GeometryTypesEnum as _GeometryTypesEnum,\n SeriesHeaderProps,\n Positions as _OverlayTooltipPositions,\n Overlay as _OverlayTooltipOverlay,\n SeriesName,\n GeoLayerTypes as _OverlayTooltipGeoLayerTypes,\n DefaultConfig as _OverlayTooltipDefaultConfig,\n FormatStrategy as _OverlayTooltipFormatStrategy,\n TooltipAction as _OverlayTooltipAction,\n DefaultConfigByGeometry as _OverlayTooltipDefaultConfigByGeometry,\n Geometry as _OverlayTooltipGeometry,\n} from './core/components/overlay-tooltip/types.js';\nexport type { ActionProps } from './core/components/overlay-tooltip/components/global-actions/Action.js';\nexport type { ActionsPlaceholderProps } from './core/components/overlay-tooltip/components/global-actions/ActionsPlaceholder.js';\nexport type {\n HeaderProps as ChartTooltipHeaderProps,\n HeaderDataWithDuration,\n HeaderDataInformation,\n} from './core/components/overlay-tooltip/components/header/types/header.js';\nexport type { FooterProps as ChartTooltipFooterProps } from './core/components/overlay-tooltip/components/Footer.js';\nexport { useDefaultLabels as _useOverlayTooltipDefaultLabels } from './core/components/overlay-tooltip/hooks/useDefaultLabels.js';\nexport type { Defaults as _OverlayTooltipDefaults } from './core/components/overlay-tooltip/hooks/useDefaultLabels.js';\nexport type {\n SeriesItemProps,\n ShapeSeriesItemProps,\n SymbolSeriesItemProps,\n IconSeriesItemProps,\n BaseSeriesItemProps,\n SeriesItemActions,\n TooltipTruncationOptions,\n TruncationModeMultiLine,\n TruncationModeMaxLines,\n IconStyle,\n Series,\n} from './core/components/overlay-tooltip/types/series.js';\nexport type { useTooltipReducer as _OverlayTooltipReducerType } from './core/components/overlay-tooltip/useTooltipReducer.js';\n\nexport {\n SIXTY_FPS as _FPS,\n DEFAULT_TRUNCATION_MODE,\n CSS_DOWNLOAD_FILENAME,\n} from './core/constants.js';\nexport { getTabIndexValue as _getTabIndexValue } from './core/utils/a11yToolbarControls.js';\nexport { getTabIndexKey as _getTabIndexKey } from './core/utils/a11yToolbarControls.js';\nexport { buildQuantizedRangeItems as _buildQuantizedRangeItems } from './core/utils/build-quantized-range-items.js';\nexport { buildCategoricalItemsFromScale as _buildCategoricalItemsFromScale } from './core/utils/build-categorical-items-from-scale.js';\nexport { buildLegendItemsFromRange as _buildLegendItemsFromRange } from './core/utils/build-legend-items-from-range.js';\nexport { buildQuantizeScaleFromColorPalette as _buildQuantizeScaleFromColorPalette } from './core/utils/build-quantize-scale-from-color-palette.js';\nexport { buildThresholdScaleFromRanges as _buildThresholdScaleFromRanges } from './core/utils/build-threshold-scale-from-ranges.js';\nexport { coerceSizeValue as _coerceSizeValue } from './core/utils/coerceSizeValue.js';\nexport { isCustomColorPalette as _isCustomColorPalette } from './core/types/color-palette.js';\nexport { useA11yToolbarControls as _useA11yToolbarControls } from './core/hooks/useA11yToolbarControls.js';\nexport { useA11yToolbarTabIndex as _useA11yToolbarTabIndex } from './core/hooks/useA11yToolbarTabIndex.js';\nexport type {\n ToolbarInteractionModes as _ToolbarInteractionModes,\n MenuTrigger as _MenuTrigger,\n Collapse as _Collapse,\n} from './core/types/toolbar-interaction-modes.js';\nexport { useThrottledResizeObserver as _useThrottledResizeObserver } from './core/hooks/useThrottledResizeObserver.js';\nexport type {\n _ResizePayload,\n SizeState as _SizeState,\n} from './core/hooks/useThrottledResizeObserver.js';\nexport { useObserveContainerSize as _useObserveContainerSize } from './core/hooks/useObserveContainerSize.js';\n\nexport { getCanvasColor as _getCanvasColor } from './core/components/canvas/utils/canvas-color.js';\nexport {\n type PointsDisplay,\n pointsDisplayOptions,\n} from './core/components/canvas/types/canvas-shape.js';\n\nexport { useGraphSize as _useGraphSize } from './core/components/chart-layout/hooks/useGraphSize.js';\nexport { useChartLayoutOrientation as _useChartLayoutOrientation } from './core/components/chart-layout/hooks/useChartLayoutOrientation.js';\nexport { useChartLayoutLoading as _useChartLayoutLoading } from './core/components/chart-layout/hooks/useChartLayoutLoading.js';\nexport { useAutoLegendRefresh as _useAutoLegendRefresh } from './core/components/chart-layout/hooks/useAutoLegendRefresh.js';\nexport { useGridPlotSize as _useGridPlotSize } from './core/components/chart-grid/hooks/useGridPlotSize.js';\nexport type { GridPlotContextProps as _GridPlotContextProps } from './core/components/chart-grid/context/GridPlotContext.js';\nexport { useChartLayoutSize as _useChartLayoutSize } from './core/components/chart-layout/hooks/useChartLayoutSize.js';\nexport { useLegendSize as _useLegendSize } from './core/components/legend/shared/context/LegendSizeContext.js';\nexport { getTickFormatterMethod as _getTickFormatterMethod } from './core/utils/get-tick-formatter-method.js';\nexport type { FormatterWithPrecision as _FormatterWithPrecision } from './core/types/formatter.js';\n\nexport {\n sequentialColoringOptions as _sequentialColoringOptions,\n divergingColoringOptions as _divergingColoringOptions,\n themedColoringOptions as _themedColoringOptions,\n automaticColoringOptions as _automaticColoringOptions,\n colorPaletteOptions,\n colorPaletteModeOptions,\n} from './core/types/color-palette.js';\n\nexport type { EmptyStateSlotProps as EmptyStateProp } from './core/slots/chart-states/EmptyStateSlot.js';\nexport type { ErrorStateSlotProps as ErrorStateProps } from './core/slots/chart-states/ErrorStateSlot.js';\n// eslint-disable-next-line @typescript-eslint/no-deprecated\nexport { ChartToolbar } from './core/slots/toolbar/ChartToolbar.js';\nexport type { CompactToolbarProps } from './core/slots/toolbar/CompactToolbar.tsx';\nexport type { ChartMessage } from './core/types/chart-message.js';\nexport type {\n ChartColorPalette,\n ChartData,\n ChartDatapoint,\n} from './core/types/chart-data.js';\nexport type { ChartUnit } from './core/types/chart-unit.js';\nexport type {\n ColorPalette,\n CustomColorPalette,\n ColorPaletteMode,\n ColorToken,\n AutomaticColorPalette as _AutomaticColorPalette,\n ThemedColorPalette as _ThemedColorPalette,\n ColorPaletteDefinition as _ColorPaletteDefinition,\n} from './core/types/color-palette.js';\nexport type { DateString } from './core/types/dates.js';\nexport type { Dimensions as _Dimensions } from './core/types/dimensions.js';\nexport type {\n CategoricalFormatter,\n Formatter,\n TimeFormatter,\n} from './core/types/formatter.js';\nexport type {\n LegendPosition,\n LegendRatio,\n LegendProps,\n ChartLegendOrientation as _ChartLegendOrientation,\n legendPositionOptions,\n} from './core/types/legend.js';\nexport type {\n MaxScaleBoundary,\n MinScaleBoundary,\n} from './core/types/min-max-config.js';\nexport type {\n AxisScaleType,\n ValueRepresentation,\n axisScaleTypeOptions,\n valueRepresentationOptions,\n} from './core/types/scales.js';\nexport type { ColoredRange } from './core/types/colored-range.js';\nexport type {\n DynamicRangeThreshold,\n DynamicNumericRangeThreshold,\n DynamicThreshold,\n DynamicNumericThreshold,\n StaticRangeThreshold,\n StaticThreshold,\n ThresholdData,\n ThresholdPosition,\n DateThresholdData,\n DateThresholdPosition,\n NumericalThresholdData,\n NumericalThresholdPosition,\n DateThresholdConfig,\n NumericalThresholdConfig,\n BaseThresholdConfig,\n} from './core/types/thresholds.js';\nexport type {\n TickPrimitiveValue,\n TickValueFormatter,\n} from './core/types/tick-value.js';\nexport type {\n ChartToolbarConfig,\n ChartToolbarProps,\n ToolbarPlacement,\n A11yToolbarTabIndex as _A11yToolbarTabIndex,\n InternalChartToolbarConfig as _InternalChartToolbarConfig,\n DraggableToolbarProps,\n BaseToolbarProps,\n} from './core/types/toolbar.js';\nexport type {\n SeriesDisplayMode,\n TooltipVariant,\n seriesDisplayModeOptions,\n tooltipVariantOptions,\n} from './core/types/tooltip.js';\nexport type { WithId } from './core/types/with-id.js';\nexport {\n HistogramChart,\n HistogramAnnotations,\n} from './histogram/HistogramChart.js';\nexport { HistogramChartConfig } from './histogram/contexts/HistogramChartConfig.context.js';\nexport type {\n HistogramBin,\n HistogramSeries,\n HistogramTooltipVariant,\n histogramTooltipVariantOptions,\n HistogramZoomDomain,\n} from './histogram/types/histogram.js';\nexport type {\n HistogramChartConfigProperties,\n HistogramChartLegendProps,\n HistogramChartProps,\n HistogramChartToolbarProps,\n HistogramChartTooltipProps,\n HistogramChartXAxisProps,\n HistogramChartYAxisProps,\n} from './histogram/types/histogram-props.js';\nexport type {\n HistogramAnnotationsMarkerProps,\n HistogramAnnotationsProps,\n HistogramAnnotationsTrackProps,\n} from './histogram/components/annotations-histogram/types.js';\nexport type { HistogramToolbarSlotProps } from './histogram/types/toolbar.js';\nexport type { HistogramChartRef } from './histogram/types/histogram-ref.js';\nexport type { SelectProps } from './histogram/slots/Select.js';\nexport type { ZoomSlotProps } from './histogram/slots/Zoom.js';\nexport type { PanSlotProps } from './histogram/slots/Pan.js';\nexport type { HistogramThresholdIndicatorProps } from './histogram/slots/ThresholdIndicator.js';\nexport { HoneycombChart } from './honeycomb/HoneycombChart.js';\nexport { HoneycombChartConfig } from './honeycomb/context/honeycomb-chart-config.context.js';\nexport type {\n HoneycombChartRef,\n HoneycombChartProps,\n HoneycombLabelsDisplay,\n HoneycombChartAccessorDataProps,\n HoneycombTileData,\n HoneycombTileShape,\n HoneycombTileBaseData,\n HoneycombTileNumericData,\n HoneycombTileCategoricalData,\n HoneycombCategoricalProps,\n HoneycombChartNumericalProps,\n HoneycombBaseProps,\n} from './honeycomb/types/honeycomb.js';\nexport type {\n HoneycombChartProperties,\n HoneycombChartToolbarConfiguration,\n} from './honeycomb/types/honeycomb-config-properties.js';\nexport type { HoneycombLegendProps } from './honeycomb/slots/HoneycombLegend.js';\nexport type {\n HoneycombChartTooltipProps,\n HoneycombCustomTooltipConfig,\n HoneycombTooltipPayload,\n} from './honeycomb/types/honeycomb-internal.js';\nexport type { HoneycombToolbarSlotProps } from './honeycomb/types/toolbar.js';\nexport { MultiMeterBarChart } from './meter-bar/multi-meter-bar/MultiMeterBarChart.js';\nexport type { MultiMeterBarChartLegendProps } from './meter-bar/multi-meter-bar/slots/Legend.js';\nexport { MultiMeterBarChartConfig } from './meter-bar/multi-meter-bar/context/MultiMeterBarChartConfigContext.js';\nexport type {\n MultiMeterBarChartProps,\n MultiMeterBarChartTooltipProps,\n MultiMeterBarSegmentProps,\n MultiMeterBarSegmentBaseProps,\n MultiMeterBarSegmentPropsWithAccessor,\n MultiMeterBarSegmentPropsWithNumericValue,\n MultiMeterBarSegmentData,\n MultiMeterBarChartData,\n MultiMeterBarChartTooltipPayload,\n MultiMeterBarChartTooltipSegmentPayload,\n MultiMeterBarChartActiveSegmentPayload,\n} from './meter-bar/multi-meter-bar/types/multi-meter-bar-chart.js';\nexport type {\n MultiMeterBarChartConsumerConfig,\n MultiMeterBarChartTooltipConsumerConfig,\n} from './meter-bar/multi-meter-bar/types/multi-meter-bar-chart-config.js';\nexport {\n type MultiMeterBarChartTooltipVariant,\n multiMeterBarChartTooltipVariantOptions,\n} from './meter-bar/multi-meter-bar/types/multi-meter-bar-chart.js';\nexport type {\n MeterBarSize,\n MeterBarChartElementRef,\n MultiMeterBarChartElementRef,\n} from './meter-bar/shared/types/meter-bars.js';\nexport { MeterBarChart } from './meter-bar/single-meter-bar/MeterBarChart.js';\nexport type { MeterBarChartLegendProps } from './meter-bar/shared/types/meter-bar-legend.js';\nexport { MeterBarChartThresholdLegend as _MeterBarChartThresholdLegend } from './meter-bar/single-meter-bar/components/MeterBarChartThresholdLegend/MeterBarChartThresholdLegend.js';\nexport { MeterBarChartConfig } from './meter-bar/single-meter-bar/context/MeterBarChartConfigContext.js';\nexport type {\n MeterBarChartProps,\n MeterBarChartPropsWithAccessor,\n MeterBarChartPropsWithNumericValue,\n MeterBarChartThresholdIndicatorProps,\n MeterBarChartTooltipProps,\n MeterBarSegmentData,\n MeterBarChartBaseProps,\n MeterBarChartData,\n MeterBarChartTooltipPayload,\n MeterBarChartActiveThreshold,\n} from './meter-bar/single-meter-bar/types/meter-bar-chart.js';\nexport type {\n MeterBarChartConsumerConfig,\n MeterBarChartThresholdConsumerConfig,\n MeterBarChartTooltipConsumerConfig,\n} from './meter-bar/single-meter-bar/types/meter-bar-chart-config.js';\nexport type {\n MeterBarToolbarSlotProps,\n MeterBarToolbarConfig,\n} from './meter-bar/shared/types/meter-bar-toolbar.js';\nexport { PieChart } from './pie/PieChart.js';\nexport { DonutChart } from './pie/DonutChart.js';\nexport {\n DonutChartConfig,\n PieChartConfig,\n} from './pie/context/ChartConfigContext.js';\nexport type { DonutChartRef, PieChartRef } from './pie/types/pie-chart-ref.js';\nexport type {\n DonutChartAccessorDataProps,\n DonutChartBaseProps,\n DonutChartData,\n DonutChartLegacyDataProps,\n DonutChartLegendConfig,\n DonutChartProps,\n DonutChartCustomTooltipProps,\n GroupConfig,\n InnerHandler,\n InnerParams,\n LabelTypeOptions,\n LabelsConfig,\n PieChartAccessorDataProps,\n PieChartBaseProps,\n PieChartConfiguration,\n PieChartContextConfig,\n PieChartCustomTooltipConfig,\n PieChartData,\n PieChartLegacyDataProps,\n PieChartLegendConfig,\n PieChartProps,\n PieChartTooltipPayload,\n PieChartCustomTooltipProps,\n SliceData,\n // eslint-disable-next-line @typescript-eslint/no-deprecated\n SliceUnit,\n ThresholdConfig,\n ThresholdType,\n thresholdTypeOptions,\n} from './pie/types/pie-chart.config.js';\n// eslint-disable-next-line @typescript-eslint/no-deprecated\nexport type { PieChartSlotProps } from './pie/types/toolbar.js';\nexport type { PieChartToolbarSlotProps } from './pie/types/toolbar.js';\nexport type { PieChartToolbarConfig } from './pie/types/toolbar.js';\nexport { SankeyChart as _SankeyChart } from './sankey-chart/SankeyChartRoot.js';\nexport type {\n SankeyChartProps as _SankeyChartProps,\n SankeyChartBaseProps as _SankeyChartBaseProps,\n SankeyNodeProps as _SankeyNodeProps,\n SankeyChartNodesProps as _SankeyChartNodesProps,\n} from './sankey-chart/types/sankey-props.js';\nexport type { SankeyNodeAlignment as _SankeyNodeAlignment } from './sankey-chart/types/sankey.js';\nexport { SingleValue } from './single-value/SingleValue.js';\nexport { SingleValueGrid } from './single-value-grid/SingleValueGrid.js';\nexport type { SingleValueGridProps } from './single-value-grid/types/single-value-grid.js';\nexport type { SingleValueGridSparklineProps } from './single-value-grid/slots/Sparkline.js';\nexport type { SingleValueGridTrendProps } from './single-value-grid/slots/Trend.js';\nexport type { SingleValueGridValueProps } from './single-value-grid/slots/Value.js';\nexport type { SingleValueSparklineProps } from './single-value/slots/Sparkline.js';\nexport type { InverseTrendOptions } from './core/components/single-value-renderer/components/trend/types/inverse-trend-options.js';\nexport type { TrendDirection } from './core/components/single-value-renderer/components/trend/types/trend-direction.js';\nexport type { TrendIndicatorColors } from './core/components/single-value-renderer/components/trend/types/trend-indicator-colors.js';\nexport type { TrendProps } from './core/components/single-value-renderer/components/trend/types/trend-props.js';\n\nexport { SingleValueConfig } from './single-value/hooks/use-single-value-config.js';\nexport type {\n SingleValueConfigProperties,\n SingleValueProps,\n SingleValueSparklineConfig,\n} from './single-value/types/single-value.js';\nexport type { SingleValueRef } from './single-value/types/single-value-ref.js';\nexport { Sparkline } from './sparkline/Sparkline.js';\nexport type { TimeseriesChartAnnotationsProps } from './timeseries/slots/annotations/Annotations.js';\nexport {\n TimeseriesAnnotations,\n TimeseriesChart,\n} from './timeseries/TimeseriesChart.js';\nexport { TimeseriesChartConfig } from './timeseries/context/TimeseriesChartConfig.context.js';\nexport type { TimeseriesChartLegendProps } from './timeseries/slots/Legend.js';\nexport type { TimeseriesChartThresholdIndicatorProps } from './timeseries/slots/ThresholdIndicator.js';\nexport type { TimeseriesChartTooltipProps } from './timeseries/slots/Tooltip.js';\nexport type { TimeseriesChartXAxisProps } from './timeseries/slots/XAxis.js';\nexport type {\n TimeseriesChartYAxisProps,\n YAxisPosition,\n} from './timeseries/slots/YAxis.js';\nexport type { TimeseriesAnnotationsMarkerProps } from './timeseries/slots/annotations/Marker.js';\nexport type { TimeseriesAnnotationsTrackProps } from './timeseries/slots/annotations/Track.js';\n/* eslint-disable-next-line @typescript-eslint/no-deprecated */\nexport { ChartInteractions } from './core/slots/chart-interactions/ChartInteractions.js';\nexport type { TimeseriesChartAreaProps } from './timeseries/slots/shapes/Area.js';\nexport type { TimeseriesChartBarProps } from './timeseries/slots/shapes/Bar.js';\nexport type { TimeseriesChartLineProps } from './timeseries/slots/shapes/Line.js';\nexport type { TimeseriesSelectProps } from './timeseries/slots/Select.js';\nexport type { TimeseriesChartToolbarSlotProps } from './timeseries/types/toolbar.js';\nexport type { TimeseriesZoomSlotProps } from './timeseries/slots/Zoom.js';\nexport type { TimeseriesPanSlotProps } from './timeseries/slots/Pan.js';\nexport type {\n ChartInteractionsConfig,\n ZoomChangeHandler,\n ZoomInteractions,\n ZoomRanges,\n} from './core/types/interactions.js';\nexport type {\n ProgrammaticZoomHandlers,\n ChartInteractionModes as _ChartInteractionModes,\n DownloadData as _DownloadData,\n Intent as _Intent,\n} from './core/types/zoom.js';\nexport type { ChartZoomConfig, ZoomChangeType } from './core/types/zoom.js';\nexport type {\n ChartVariant,\n TimeseriesChartVisualProps,\n TimeseriesZoomDomain,\n chartVariantOptions,\n} from './timeseries/types/timeseries.js';\nexport type {\n TimeseriesBand,\n TimeseriesBandDataPoint,\n TimeseriesChartBandProps,\n} from './timeseries/types/timeseries-band.js';\nexport type { TimeseriesChartConfigProperties } from './timeseries/types/timeseries-config.js';\nexport type {\n TimeseriesDatapoint,\n SeriesCurve,\n} from './core/types/timeseries.js';\nexport type {\n NumericalGapPolicy,\n NumericalThresholdGapPolicy,\n ThresholdGapPolicy,\n TimeGapPolicy,\n TimeThreshold,\n TimeUnit,\n} from './core/types/gap-policy.js';\nexport type { TimeseriesChartProps } from './timeseries/types/timeseries-props.js';\nexport type { TimeseriesChartRef } from './timeseries/types/timeseries-ref.js';\nexport type { TimeseriesChartToolbarConfig } from './timeseries/types/toolbar.js';\nexport type {\n ColorRuleProps,\n ColorSpecification,\n ComparisonOperators,\n MatchValue,\n} from './core/types/color-rule.js';\n\n// CONVERT-TO-TIMESERIES REGION\nexport {\n convertQueryResultToTimeseries,\n convertToTimeseries,\n} from './timeseries/utils/convert-to-timeseries/convert-to-timeseries.js';\nexport type { TimeseriesWithDimensions } from './timeseries/types/convert-to-timeseries.js';\nexport { convertToTimeseriesBand } from './timeseries/utils/convert-to-timeseries/convert-to-timeseries-band.js';\nexport {\n getFieldsArrayForRecordIndex,\n getTypesForRecordIndex,\n convertToFieldEntries,\n} from './timeseries/utils/convert-to-timeseries/utils/getFieldsArrayForRecordIndex.js';\nexport type { FieldEntry } from './timeseries/utils/convert-to-timeseries/utils/getFieldsArrayForRecordIndex.js';\nexport { checkTimeseriesFormat } from './timeseries/utils/convert-to-timeseries/utils/check-timeseries-format.js';\nexport { getDimensions } from './timeseries/utils/convert-to-timeseries/utils/get-dimensions.js';\nexport type { Dimension } from './timeseries/utils/convert-to-timeseries/utils/get-dimensions.js';\nexport { _getMetadataMetricsUnitForFieldName } from './timeseries/utils/convert-to-timeseries/utils/get-metadata-metrics-unit-for-field-name.js';\n\n// XYChart REGION\nexport type { XYChartAnnotationsTrackProps } from './xy-chart/slots/Annotations/Track.js';\nexport type { XYChartAnnotationsConfigProps } from './xy-chart/context/XYChartAnnotationsConfig.context.js';\nexport type { XYChartAnnotationsProps } from './xy-chart/slots/Annotations/Annotations.js';\nexport type { XYChartAnnotationsMarkerProps } from './xy-chart/slots/Annotations/Marker.js';\nexport type { XYChartSelectProps } from './xy-chart/slots/Select.js';\nexport { XYChart, XYChartAnnotations } from './xy-chart/XYChartRoot.js';\nexport { XYChartConfig } from './xy-chart/context/XYChartConfig.context.js';\nexport type {\n XYChartData,\n XYAccessorDataTypes,\n XYChartAxisType,\n XYChartXAxisPosition,\n XYChartYAxisPosition,\n XYChartRectSeriesActionItem,\n XYChartColorPalette,\n RectDatapoint,\n XYChartRef,\n TOP_POSITION,\n BOTTOM_POSITION,\n LEFT_POSITION,\n RIGHT_POSITION,\n BOTH_POSITION,\n LOG_SCALE_TYPE,\n NUMERICAL_SCALE_TYPE,\n TIME_SCALE_TYPE,\n CATEGORICAL_SCALE_TYPE,\n BAR_VARIANT_SINGLE,\n BAR_VARIANT_STACK,\n BAR_VARIANT_GROUP,\n BaseDatapoint,\n DotDatapoint,\n LineDatapoint,\n BarDatapoint,\n AreaDatapoint,\n SeriesCurve as XYChartSeriesCurve,\n BarSeriesVariant,\n XYChartDotSeriesActionItem,\n XYChartLineSeriesActionItem,\n XYChartBarSeriesActionItem,\n XYChartAreaSeriesActionItem,\n XYChartThresholdLineBase,\n XYChartThresholdRangeBase,\n XYChartThresholdDynamicData,\n XYChartThresholdDataLineDynamic,\n XYChartThresholdDataLineStatic,\n XYChartThresholdDataRangeStatic,\n XYChartThresholdValue,\n XYChartThresholdStaticData,\n XYChartThresholdDataRangeDynamic,\n XYChartSelectedSeries,\n XYChartSelectedDomains,\n AxisFormatter,\n NumericalFormatter,\n XYChartTooltipPayload,\n DotTooltipPayload,\n LineTooltipPayload,\n RectTooltipPayload,\n BaseTooltipPayload,\n BarTooltipPayload,\n XYChartSeriesActionInfo,\n XYChartBarSeries,\n XYChartDotSeries,\n XYChartLineSeries,\n XYChartRectSeries,\n XYChartAreaSeries,\n AreaTooltipPayload,\n XYChartTooltipDatapoint,\n} from './xy-chart/types/xy-chart.js';\n\nexport type {\n XYChartProps,\n XYChartRectSeriesProps,\n // eslint-disable-next-line @typescript-eslint/no-deprecated\n ColorSelectionProp,\n ShapeColorSelectionProp,\n XYShapeColorProp,\n XYShapeColorPaletteProp,\n XYChartAxisProps,\n XYChartAxisBaseProps,\n XYChartLogAxisProps,\n XYChartNumericalAxisProps,\n XYChartCategoricalAxisProps,\n XYChartTimeAxisProps,\n XYChartXAxisProps,\n XYChartYAxisProps,\n XYChartChartLegendProps,\n XYChartConfigProperties,\n XYChartBarSeriesProps,\n XYChartAreaSeriesProps,\n BarSeriesProps,\n StackBarSeriesProps,\n SingleBarSeriesProps,\n BaseBarSeriesProps,\n StackBarVerticalProps,\n StackBarHorizontalProps,\n BarSeriesVariantMap,\n GroupBarSeriesProps,\n GroupBarVerticalProps,\n GroupBarHorizontalProps,\n XYChartSeriesBaseProps,\n XYChartDotSeriesProps,\n XYChartLineSeriesProps,\n XYChartToolbarConfigProps,\n // eslint-disable-next-line @typescript-eslint/no-deprecated\n XYChartToolbarProps,\n XYChartToolbarSlotProps,\n XYChartThresholdIndicatorProps,\n XYChartThresholdDynamicProps,\n XYChartThresholdStaticProps,\n XYChartSelectConfig,\n // eslint-disable-next-line @typescript-eslint/no-deprecated\n XYChartCustomTooltipProps,\n XYChartTooltipProps,\n _XYChartTooltipVariant,\n _XYChartThresholdDataXLineStatic,\n _XYChartThresholdDataXRangeStatic,\n _XYChartThresholdXStaticData,\n _XYChartThresholdStaticXProps,\n} from './xy-chart/types/xy-chart-props.js';\n\nexport type { XYChartTooltipBodyProps as _XYChartTooltipBodyProps } from './xy-chart/components/tooltip/XYChartTooltipBody/XYChartTooltipBody.js';\nexport { XYChartTooltipBody as _XYChartTooltipBody } from './xy-chart/components/tooltip/XYChartTooltipBody/XYChartTooltipBody.js';\n\n// TopList REGION\nexport { TopList } from './top-list/TopList.js';\nexport type { TopListActionItem, TopListProps } from './top-list/TopList.js';\n\n// XYChart Adoption REGION\nexport type { _XYChartAdoptionProps } from './xy-chart-adoption/shared/types/props.js';\nexport type { _XYChartLegacyProps } from './xy-chart-adoption/shared/types/legacy-props.js';\n\n// GANTT CHART REGION\nexport type {\n GanttChartConfig,\n GanttChartFormatter,\n GanttChartFormatterCurrencyOptions,\n GanttSegmentData,\n GanttAnnotationsHeaderConfig,\n GanttAnnotationsMarkerProps,\n GanttAnnotationsTrackConfig,\n} from './gantt-chart/types/gantt-chart.js';\n\n// TreeMap Region\nexport { TreeMap } from './tree-map/TreeMap.js';\nexport type {\n TreeMapProps,\n TreeMapBaseProps,\n TreeMapHierarchicalProps,\n TreeMapFlatProps,\n TreeMapData,\n TreeMapLeafNode,\n TreeMapRootNode,\n TreeMapClusterNode,\n LabelsDisplay,\n NameAccessor,\n TreeMapElementRef,\n} from './tree-map/types/treemap.js';\nexport type {\n TreeMapContextConfig,\n TreemapChartLegendConfig,\n TreeMapChartToolbarConfig,\n TreeMapCustomTooltipConfig,\n TreeMapCustomTooltipProps,\n TreeMapTooltipPayload,\n} from './tree-map/types/treemap-chart.config.js';\nexport { TreeMapConfig } from './tree-map/context/TreeMapConfigContext.js';\n\n// CORE REGION\nexport { useMousePosition as _useMousePosition } from './core/hooks/useMousePosition.js';\n// eslint-disable-next-line @typescript-eslint/no-deprecated\nexport type { Timeseries, TimeseriesUnit } from './core/types/timeseries.js';\nexport type { IndicatorsDisplay } from './core/components/annotations/components/indicators/types.js';\nexport type { MinMax as _MinMax } from './core/types/min-max.js';\n// eslint-disable-next-line @typescript-eslint/no-deprecated\nexport { truncateText as _truncateText } from './core/utils/text-truncation.js';\n\n// CORE SPARKLINE REGION\nexport type {\n SparklineProps,\n SparklinLabelsAlignment,\n SparklineVariant,\n SparklineGapPolicy,\n} from './core/components/sparkline-display/types/sparkline-props.js';\nexport type {\n // eslint-disable-next-line @typescript-eslint/no-deprecated\n SparklineThresholdProps,\n SparklineThresholdIndicatorProps,\n} from './core/components/sparkline-display/types/sparkline-thresholds-props.js';\nexport type {\n SparklineXAxisProps,\n SparklineXAxisInternalProps as _SparklineXAxisInternalProps,\n} from './core/components/sparkline-display/types/sparkline-x-axis-props.js';\nexport type { SparklineYAxisProps } from './core/components/sparkline-display/types/sparkline-y-axis-props.js';\n\n// CORE SINGLE VALUE REGION\nexport type {\n // eslint-disable-next-line @typescript-eslint/no-deprecated\n SingleValueUnit,\n SingleValueAlignment,\n SingleValueBaseProps,\n} from './core/components/single-value-renderer/types/single-value-base-props.js';\nexport type {\n SingleValueToolbarSlotProps,\n SingleValueToolbarInternalProps as _SingleValueToolbarInternalProps,\n} from './single-value/types/single-value-toolbar.js';\nexport type { SingleValueToolbarConfig } from './core/components/single-value-renderer/components/SingleValueToolbar.js';\n// GAUGE CHART REGION\nexport { GaugeChart } from './gauge/GaugeChart.js';\nexport type { GaugeChartThresholdIndicatorProps } from './gauge/slots/ThresholdIndicator.js';\nexport { GaugeChartConfig } from './gauge/contexts/GaugeChartConfigContext.js';\nexport type {\n GaugeChartBaseProps,\n GaugeChartProps,\n GaugeChartPropsWithAccessor,\n GaugeChartPropsWithNumericValue,\n GaugeChartRef,\n GaugeChartData,\n} from './gauge/types/gauge-chart.js';\nexport type { GaugeChartConsumerConfig } from './gauge/types/gauge-chart-config.js';\nexport type {\n GaugeChartTooltipProps,\n GaugeChartTooltipHandler,\n GaugeChartTooltipItem,\n} from './gauge/slots/Tooltip.js';\nexport type {\n TooltipEmojiProps,\n TooltipIndicatorProps,\n TooltipTextProps,\n TooltipDurationProps,\n TooltipValueProps,\n TooltipItemProps,\n TooltipBodyProps,\n TooltipFooterProps,\n VirtualEstimatedSize,\n TooltipHeaderProps,\n} from './core/components/tooltip/types/tooltip.js';\n/** @deprecated Use `ChartTooltip` instead. Removal: APPDEV-17834 */\nexport type { ChartTooltipTemplateType as _ChartTooltipTemplateType } from './core/components/tooltip/types/ChartTooltip.config.js';\n/** @deprecated Use `ChartTooltip` instead. Removal: APPDEV-17834 */\nexport type { ChartTooltipAtomsType as _ChartTooltipAtomsType } from './core/components/tooltip/types/ChartTooltip.config.js';\n/** @deprecated Use `ChartTooltip` instead. Removal: APPDEV-17834 */\nexport type { ChartTooltipSlotsType as _ChartTooltipSlotsType } from './core/components/tooltip/types/ChartTooltip.config.js';\nexport { colorPaletteMap as _colorPaletteMap } from './core/types/color-palettes-definitions.js';\nexport { automaticColoringMap as _automaticColoringMap } from './core/types/color-palettes-definitions.js';\n\n/** FlameChart types\n * TODO: change to public by removing underscore on final release\n */\nexport { FlameChart as _FlameChart } from './flame/flame-chart/FlameChart.js';\nexport { FlameGraph as _FlameGraph } from './flame/flame-graph/FlameGraph.js';\nexport type {\n FlameChartProps as _FlameChartProps,\n FlameGraphProps as _FlameGraphProps,\n FlameOrientation as _FlameOrientation,\n} from './flame/shared/types/flame-chart.js';\n\nexport type { TooltipProps as _GenericChartTooltipProps } from './core/slots/Tooltip.js';\n"],
|
|
5
|
+
"mappings": "AAcA,SAAgC,2BAA4B;AAS5D,SAAS,8BAA8B;AACvC,SAAS,wBAAwB;AAqCjC,SAAS,2BAA2B;AACpC,SAAS,iCAAiC;AA4B1C,SAA4B,uBAAwB;AACpD,SAAuB,kBAAmB;AAC1C,SAAsB,iBAAkB;AAexC;AAAA,EACE;AAAA,EACA;AAAA,OACK;AACP,SAAsB,iBAAkB;AAGxC,SAAwB,mBAAoB;AAW5C,SAAiC,4BAA6B;AAC9D,SAAuB,kBAAmB;AAE1C,SAAuB,kBAAmB;AAE1C,SAAwB,mBAAoB;AAG5C,SAAwB,mBAAoB;AAK5C,SAA8B,yBAA0B;AACxD,SAAS,yBAAyB;AAClC,SAAgC,2BAA4B;AAI5D,SAAyB,oBAAqB;AAU9C,SAA+B,0BAA2B;AAK1D,SAAiC,4BAA6B;AAgB9D,SAAyB,oBAAqB;AAI9C,SAA8B,yBAA0B;AAExD,SAA8B,yBAA0B;AAExD,SAAiC,4BAA6B;AAyB9D,SAAoB,eAAgB;AAIpC,SAAuB,kBAAmB;AAI1C,SAA4B,uBAAwB;AAQpD,SAAsB,iBAAkB;AAMxC,SAAqB,gBAAiB;AAItC,SAAuB,kBAAmB;AAI1C,SAAyB,oBAAqB;AAG9C,SAAS,+BAA+B;AAGxC,SAA2B,sBAAuB;AAClD,SAAS,gBAAAA,qBAAoB;AAC7B,SAAyB,oBAAqB;AAC9C,SAA6B,wBAAyB;AACtD,SAA6B,wBAAyB;AAEtD;AAAA,EACqB;AAAA,EACL;AAAA,OACT;AACP;AAAA,EACqB;AAAA,EACL;AAAA,OACT;AACP,SAA8B,yBAAiC;AAC/D,SAA2B,sBAA8B;AACzD;AAAA,EACuB;AAAA,OAEhB;AAiCP,SAA6B,oBAApBC,yBAA2D;AAiBpE;AAAA,EACe;AAAA,EACb;AAAA,EACA;AAAA,OACK;AACP,SAA6B,wBAAyB;AACtD,SAA2B,sBAAuB;AAClD,SAAqC,gCAAiC;AACtE,SAA2C,sCAAuC;AAClF,SAAsC,iCAAkC;AACxE,SAA+C,0CAA2C;AAC1F,SAA0C,qCAAsC;AAChF,SAA4B,uBAAwB;AACpD,SAAiC,4BAA6B;AAC9D,SAAmC,8BAA+B;AAClE,SAAmC,8BAA+B;AAMlE,SAAuC,kCAAmC;AAK1E,SAAoC,+BAAgC;AAEpE,SAA2B,sBAAuB;AAClD;AAAA,EAEE;AAAA,OACK;AAEP,SAAyB,oBAAqB;AAC9C,SAAsC,iCAAkC;AACxE,SAAkC,6BAA8B;AAChE,SAAiC,4BAA6B;AAC9D,SAA4B,uBAAwB;AAEpD,SAA+B,0BAA2B;AAC1D,SAA0B,qBAAsB;AAChD,SAAmC,8BAA+B;AAGlE;AAAA,EAC+B;AAAA,EACD;AAAA,EACH;AAAA,EACG;AAAA,EAC5B;AAAA,EACA;AAAA,OACK;AAKP,SAAS,oBAAoB;AAgF7B;AAAA,EACE;AAAA,EACA;AAAA,OACK;AACP,SAAS,4BAA4B;AA4BrC,SAAS,sBAAsB;AAC/B,SAAS,4BAA4B;AA0BrC,SAAS,0BAA0B;AAEnC,SAAS,gCAAgC;AAkBzC;AAAA,EAEE;AAAA,OACK;AAMP,SAAS,qBAAqB;AAE9B,SAAyC,oCAAqC;AAC9E,SAAS,2BAA2B;AAsBpC,SAAS,gBAAgB;AACzB,SAAS,kBAAkB;AAC3B;AAAA,EACE;AAAA,EACA;AAAA,OACK;AAqCP,SAAwB,mBAAoB;AAQ5C,SAAS,mBAAmB;AAC5B,SAAS,uBAAuB;AAWhC,SAAS,yBAAyB;AAOlC,SAAS,iBAAiB;AAE1B;AAAA,EACE;AAAA,EACA;AAAA,OACK;AACP,SAAS,6BAA6B;AAYtC,SAAS,yBAAyB;AAwDlC;AAAA,EACE;AAAA,EACA;AAAA,OACK;AAEP,SAAS,+BAA+B;AACxC;AAAA,EACE;AAAA,EACA;AAAA,EACA;AAAA,OACK;AAEP,SAAS,6BAA6B;AACtC,SAAS,qBAAqB;AAE9B,SAAS,2CAA2C;AAQpD,SAAS,SAAS,0BAA0B;AAC5C,SAAS,qBAAqB;AAmH9B,SAA+B,0BAA2B;AAG1D,SAAS,eAAe;AAmBxB,SAAS,eAAe;AAsBxB,SAAS,qBAAqB;AAG9B,SAA6B,wBAAyB;AAMtD,SAAyB,oBAAqB;AAiC9C,SAAS,kBAAkB;AAE3B,SAAS,wBAAwB;AAiCjC,SAA4B,uBAAwB;AACpD,SAAiC,4BAA6B;AAK9D,SAAuB,kBAAmB;AAC1C,SAAuB,kBAAmB;",
|
|
6
6
|
"names": ["ChartTooltip", "useDefaultLabels"]
|
|
7
7
|
}
|
|
@@ -1,71 +1,71 @@
|
|
|
1
|
-
._1m3udw10-3-
|
|
1
|
+
._1m3udw10-3-12-0 {
|
|
2
2
|
display: flex;
|
|
3
3
|
justify-content: center;
|
|
4
4
|
grid-area: value;
|
|
5
5
|
align-self: self-end;
|
|
6
6
|
justify-self: end;
|
|
7
7
|
}
|
|
8
|
-
._1m3udw11-3-
|
|
8
|
+
._1m3udw11-3-12-0 {
|
|
9
9
|
margin-bottom: var(--dt-spacings-size-2, 2px);
|
|
10
10
|
align-items: center;
|
|
11
11
|
height: 20px;
|
|
12
12
|
}
|
|
13
|
-
._1m3udw12-3-
|
|
13
|
+
._1m3udw12-3-12-0 {
|
|
14
14
|
margin-bottom: var(--dt-spacings-size-4, 4px);
|
|
15
15
|
align-items: end;
|
|
16
16
|
height: 100%;
|
|
17
17
|
}
|
|
18
|
-
._1m3udw13-3-
|
|
18
|
+
._1m3udw13-3-12-0 {
|
|
19
19
|
min-width: 0;
|
|
20
20
|
transition: margin-right var(--dt-animations-move-duration-fast, 150ms) var(--dt-animations-move-easing, cubic-bezier(0.4, 0, 0.2, 1));
|
|
21
21
|
}
|
|
22
|
-
._1m3udw14-3-
|
|
22
|
+
._1m3udw14-3-12-0 {
|
|
23
23
|
display: flex;
|
|
24
24
|
align-items: center;
|
|
25
25
|
justify-content: flex-end;
|
|
26
26
|
transition: all var(--dt-animations-move-duration-fast, 150ms) var(--dt-animations-move-easing, cubic-bezier(0.4, 0, 0.2, 1));
|
|
27
27
|
}
|
|
28
|
-
._1m3udw15-3-
|
|
28
|
+
._1m3udw15-3-12-0 {
|
|
29
29
|
margin-top: var(--dt-spacings-size-4, 4px);
|
|
30
30
|
grid-area: min;
|
|
31
31
|
align-self: center;
|
|
32
32
|
}
|
|
33
|
-
._1m3udw16-3-
|
|
33
|
+
._1m3udw16-3-12-0 {
|
|
34
34
|
margin-top: var(--dt-spacings-size-4, 4px);
|
|
35
35
|
grid-area: max;
|
|
36
36
|
align-self: center;
|
|
37
37
|
justify-self: end;
|
|
38
38
|
}
|
|
39
|
-
._1m3udw17-3-
|
|
39
|
+
._1m3udw17-3-12-0 {
|
|
40
40
|
grid-area: legend;
|
|
41
41
|
margin: var(--dt-spacings-size-4, 4px) 0 var(--dt-spacings-size-4, 4px);
|
|
42
42
|
}
|
|
43
|
-
._1m3udw18-3-
|
|
43
|
+
._1m3udw18-3-12-0 {
|
|
44
44
|
gap: var(--dt-spacings-size-4, 4px);
|
|
45
45
|
margin-bottom: var(--dt-spacings-size-2, 2px);
|
|
46
46
|
grid-area: label;
|
|
47
47
|
}
|
|
48
|
-
._1m3udw19-3-
|
|
48
|
+
._1m3udw19-3-12-0 {
|
|
49
49
|
grid-area: chart;
|
|
50
50
|
}
|
|
51
|
-
._1m3udw1a-3-
|
|
51
|
+
._1m3udw1a-3-12-0 {
|
|
52
52
|
grid-area: thresholds;
|
|
53
53
|
}
|
|
54
|
-
._1m3udw1b-3-
|
|
54
|
+
._1m3udw1b-3-12-0 {
|
|
55
55
|
width: 100%;
|
|
56
56
|
}
|
|
57
|
-
._1m3udw1c-3-
|
|
57
|
+
._1m3udw1c-3-12-0 {
|
|
58
58
|
height: 100%;
|
|
59
59
|
}
|
|
60
|
-
._1m3udw1d-3-
|
|
60
|
+
._1m3udw1d-3-12-0 {
|
|
61
61
|
height: fit-content;
|
|
62
62
|
}
|
|
63
|
-
._1m3udw1e-3-
|
|
63
|
+
._1m3udw1e-3-12-0 {
|
|
64
64
|
position: relative;
|
|
65
65
|
display: block;
|
|
66
66
|
cursor: default;
|
|
67
67
|
user-select: none;
|
|
68
68
|
}
|
|
69
|
-
._1m3udw1f-3-
|
|
69
|
+
._1m3udw1f-3-12-0 {
|
|
70
70
|
overflow: hidden;
|
|
71
71
|
}
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import "./MeterBarLayout.css";
|
|
2
2
|
import { createRuntimeFn as _7a468 } from "@vanilla-extract/recipes/createRuntimeFn";
|
|
3
|
-
var chartContainer = "_1m3udw19-3-
|
|
4
|
-
var container = _7a468({ defaultClassName: "_1m3udw1b-3-
|
|
5
|
-
var containerWrapper = "_1m3udw1f-3-
|
|
6
|
-
var labelContainer = "_1m3udw18-3-
|
|
7
|
-
var legendContainer = "_1m3udw17-3-
|
|
8
|
-
var maxContainer = "_1m3udw16-3-
|
|
9
|
-
var minContainer = "_1m3udw15-3-
|
|
10
|
-
var thresholdsContainer = "_1m3udw1a-3-
|
|
11
|
-
var toolbarAnimatedContainer = "_1m3udw14-3-
|
|
12
|
-
var valueAnimatedContainer = "_1m3udw13-3-
|
|
13
|
-
var valueContainer = _7a468({ defaultClassName: "_1m3udw10-3-
|
|
3
|
+
var chartContainer = "_1m3udw19-3-12-0";
|
|
4
|
+
var container = _7a468({ defaultClassName: "_1m3udw1b-3-12-0", variantClassNames: { autoSize: { true: "_1m3udw1c-3-12-0", false: "_1m3udw1d-3-12-0" }, showLoading: { true: "_1m3udw1e-3-12-0" } }, defaultVariants: {}, compoundVariants: [] });
|
|
5
|
+
var containerWrapper = "_1m3udw1f-3-12-0";
|
|
6
|
+
var labelContainer = "_1m3udw18-3-12-0";
|
|
7
|
+
var legendContainer = "_1m3udw17-3-12-0";
|
|
8
|
+
var maxContainer = "_1m3udw16-3-12-0";
|
|
9
|
+
var minContainer = "_1m3udw15-3-12-0";
|
|
10
|
+
var thresholdsContainer = "_1m3udw1a-3-12-0";
|
|
11
|
+
var toolbarAnimatedContainer = "_1m3udw14-3-12-0";
|
|
12
|
+
var valueAnimatedContainer = "_1m3udw13-3-12-0";
|
|
13
|
+
var valueContainer = _7a468({ defaultClassName: "_1m3udw10-3-12-0", variantClassNames: { inline: { true: "_1m3udw11-3-12-0", false: "_1m3udw12-3-12-0" } }, defaultVariants: {}, compoundVariants: [] });
|
|
14
14
|
export {
|
|
15
15
|
chartContainer,
|
|
16
16
|
container,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../../../../../../src/charts/meter-bar/shared/components/meter-bar-layout/MeterBarLayout.css.ts"],
|
|
4
|
-
"sourcesContent": ["import './MeterBarLayout.css';\nimport { createRuntimeFn as _7a468 } from '@vanilla-extract/recipes/createRuntimeFn';\nexport var chartContainer = '_1m3udw19-3-
|
|
4
|
+
"sourcesContent": ["import './MeterBarLayout.css';\nimport { createRuntimeFn as _7a468 } from '@vanilla-extract/recipes/createRuntimeFn';\nexport var chartContainer = '_1m3udw19-3-12-0';\nexport var container = _7a468({defaultClassName:'_1m3udw1b-3-12-0',variantClassNames:{autoSize:{true:'_1m3udw1c-3-12-0',false:'_1m3udw1d-3-12-0'},showLoading:{true:'_1m3udw1e-3-12-0'}},defaultVariants:{},compoundVariants:[]});\nexport var containerWrapper = '_1m3udw1f-3-12-0';\nexport var labelContainer = '_1m3udw18-3-12-0';\nexport var legendContainer = '_1m3udw17-3-12-0';\nexport var maxContainer = '_1m3udw16-3-12-0';\nexport var minContainer = '_1m3udw15-3-12-0';\nexport var thresholdsContainer = '_1m3udw1a-3-12-0';\nexport var toolbarAnimatedContainer = '_1m3udw14-3-12-0';\nexport var valueAnimatedContainer = '_1m3udw13-3-12-0';\nexport var valueContainer = _7a468({defaultClassName:'_1m3udw10-3-12-0',variantClassNames:{inline:{true:'_1m3udw11-3-12-0',false:'_1m3udw12-3-12-0'}},defaultVariants:{},compoundVariants:[]});"],
|
|
5
5
|
"mappings": "AAAA,OAAO;AACP,SAAS,mBAAmB,cAAc;AACnC,IAAI,iBAAiB;AACrB,IAAI,YAAY,OAAO,EAAC,kBAAiB,oBAAmB,mBAAkB,EAAC,UAAS,EAAC,MAAK,oBAAmB,OAAM,mBAAkB,GAAE,aAAY,EAAC,MAAK,mBAAkB,EAAC,GAAE,iBAAgB,CAAC,GAAE,kBAAiB,CAAC,EAAC,CAAC;AACzN,IAAI,mBAAmB;AACvB,IAAI,iBAAiB;AACrB,IAAI,kBAAkB;AACtB,IAAI,eAAe;AACnB,IAAI,eAAe;AACnB,IAAI,sBAAsB;AAC1B,IAAI,2BAA2B;AAC/B,IAAI,yBAAyB;AAC7B,IAAI,iBAAiB,OAAO,EAAC,kBAAiB,oBAAmB,mBAAkB,EAAC,QAAO,EAAC,MAAK,oBAAmB,OAAM,mBAAkB,EAAC,GAAE,iBAAgB,CAAC,GAAE,kBAAiB,CAAC,EAAC,CAAC;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../../../../../../../../src/charts/meter-bar/shared/components/meter-bar-layout/slots/Icon/Icon.css.ts"],
|
|
4
|
-
"sourcesContent": ["import './Icon.css';\nexport var container = '_18riimf0-3-
|
|
4
|
+
"sourcesContent": ["import './Icon.css';\nexport var container = '_18riimf0-3-12-0';"],
|
|
5
5
|
"mappings": "AAAA,OAAO;AACA,IAAI,YAAY;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
._bh277f0-3-
|
|
1
|
+
._bh277f0-3-12-0 {
|
|
2
2
|
font-family: var(--dt-typography-text-base-emphasized-family, DynatraceFlow,Roboto,Helvetica,sans-serif);
|
|
3
3
|
font-size: var(--dt-typography-text-base-emphasized-size, 14px);
|
|
4
4
|
font-weight: var(--dt-typography-text-base-emphasized-weight, 500);
|
package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Label/Label.sty.js.map
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../../../../../../../../src/charts/meter-bar/shared/components/meter-bar-layout/slots/Label/Label.css.ts"],
|
|
4
|
-
"sourcesContent": ["import './Label.css';\nexport var labelStyle = '_bh277f0-3-
|
|
4
|
+
"sourcesContent": ["import './Label.css';\nexport var labelStyle = '_bh277f0-3-12-0';"],
|
|
5
5
|
"mappings": "AAAA,OAAO;AACA,IAAI,aAAa;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../../../../../../../../src/charts/meter-bar/shared/components/meter-bar-layout/slots/Max/Max.css.ts"],
|
|
4
|
-
"sourcesContent": ["import './Max.css';\nexport var maxValue = '_xxg5xc0-3-
|
|
4
|
+
"sourcesContent": ["import './Max.css';\nexport var maxValue = '_xxg5xc0-3-12-0';"],
|
|
5
5
|
"mappings": "AAAA,OAAO;AACA,IAAI,WAAW;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../../../../../../../../src/charts/meter-bar/shared/components/meter-bar-layout/slots/Min/Min.css.ts"],
|
|
4
|
-
"sourcesContent": ["import './Min.css';\nexport var minValue = '_16mgjbd0-3-
|
|
4
|
+
"sourcesContent": ["import './Min.css';\nexport var minValue = '_16mgjbd0-3-12-0';"],
|
|
5
5
|
"mappings": "AAAA,OAAO;AACA,IAAI,WAAW;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
._1euwfb00-3-
|
|
1
|
+
._1euwfb00-3-12-0 {
|
|
2
2
|
font-family: var(--dt-typography-text-small-default-family, DynatraceFlow,Roboto,Helvetica,sans-serif);
|
|
3
3
|
font-size: var(--dt-typography-text-small-default-size, 12px);
|
|
4
4
|
font-weight: var(--dt-typography-text-small-default-weight, 400);
|
package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Value/Value.sty.js.map
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../../../../../../../../src/charts/meter-bar/shared/components/meter-bar-layout/slots/Value/Value.css.ts"],
|
|
4
|
-
"sourcesContent": ["import './Value.css';\nexport var valueStyle = '_1euwfb00-3-
|
|
4
|
+
"sourcesContent": ["import './Value.css';\nexport var valueStyle = '_1euwfb00-3-12-0';"],
|
|
5
5
|
"mappings": "AAAA,OAAO;AACA,IAAI,aAAa;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../../../../../../src/charts/meter-bar/shared/components/meter-bar-plot/MeterBarPlot.css.ts"],
|
|
4
|
-
"sourcesContent": ["import './MeterBarPlot.css';\nexport var svgElement = '_12md1g60-3-
|
|
4
|
+
"sourcesContent": ["import './MeterBarPlot.css';\nexport var svgElement = '_12md1g60-3-12-0';"],
|
|
5
5
|
"mappings": "AAAA,OAAO;AACA,IAAI,aAAa;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
._1ckoljy1-3-
|
|
1
|
+
._1ckoljy1-3-12-0 {
|
|
2
2
|
height: 100%;
|
|
3
3
|
}
|
|
4
|
-
._1ckoljy2-3-
|
|
4
|
+
._1ckoljy2-3-12-0 {
|
|
5
5
|
height: 16px;
|
|
6
6
|
}
|
|
7
|
-
._1ckoljy3-3-
|
|
7
|
+
._1ckoljy3-3-12-0 {
|
|
8
8
|
height: 24px;
|
|
9
9
|
}
|
|
10
|
-
._1ckoljy4-3-
|
|
10
|
+
._1ckoljy4-3-12-0 {
|
|
11
11
|
height: 8px;
|
|
12
12
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import "./element-size.css";
|
|
2
2
|
import { createRuntimeFn as _7a468 } from "@vanilla-extract/recipes/createRuntimeFn";
|
|
3
|
-
var elementSize = _7a468({ defaultClassName: "_1ckoljy0-3-
|
|
3
|
+
var elementSize = _7a468({ defaultClassName: "_1ckoljy0-3-12-0", variantClassNames: { size: { auto: "_1ckoljy1-3-12-0", size16: "_1ckoljy2-3-12-0", size24: "_1ckoljy3-3-12-0", size8: "_1ckoljy4-3-12-0" } }, defaultVariants: { size: "size16" }, compoundVariants: [] });
|
|
4
4
|
export {
|
|
5
5
|
elementSize
|
|
6
6
|
};
|