@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/lang/uncompiled/en.json
CHANGED
|
@@ -63,10 +63,6 @@
|
|
|
63
63
|
"translation": "Filter JSON attributes",
|
|
64
64
|
"notes": "Details shown for JSONPath key suggestions."
|
|
65
65
|
},
|
|
66
|
-
"/cBMcieLHGw0wJxk": {
|
|
67
|
-
"translation": "Successfully reset everything to default.",
|
|
68
|
-
"notes": "Status message that resetting column settings to default was successful."
|
|
69
|
-
},
|
|
70
66
|
"/cHIv7hlXvB+krTT": {
|
|
71
67
|
"translation": "Try clearing the search and adding different search words.",
|
|
72
68
|
"notes": "Description shown below the no-results heading in column settings search."
|
|
@@ -123,6 +119,10 @@
|
|
|
123
119
|
"translation": "Value must be less or equal to {max}.",
|
|
124
120
|
"notes": "Error message for input that value is higher then the max."
|
|
125
121
|
},
|
|
122
|
+
"1H2kHk8y+z5PfQEE": {
|
|
123
|
+
"translation": "Only times from {min} to {max} can be selected.",
|
|
124
|
+
"notes": "Shown as hint when both boundaries are set, and as error when the selected time falls outside both."
|
|
125
|
+
},
|
|
126
126
|
"1HXxdMWF9JUS/EWC": {
|
|
127
127
|
"translation": "Pan left",
|
|
128
128
|
"notes": "Applies pan to the left"
|
|
@@ -203,6 +203,10 @@
|
|
|
203
203
|
"translation": "Loading",
|
|
204
204
|
"notes": "Default label for the progress-bar."
|
|
205
205
|
},
|
|
206
|
+
"3QeEQ2KrbnVJzUEp": {
|
|
207
|
+
"translation": "Open actions for {seriesName}",
|
|
208
|
+
"notes": "Accessible label for the series actions menu button in a legend item"
|
|
209
|
+
},
|
|
206
210
|
"3ZX0IG+5tekB89nr": {
|
|
207
211
|
"translation": "Select options",
|
|
208
212
|
"notes": "Default placeholder text for the multi select."
|
|
@@ -263,10 +267,6 @@
|
|
|
263
267
|
"translation": "Pinned in {appName}",
|
|
264
268
|
"notes": "Headline to group recently used segments presets."
|
|
265
269
|
},
|
|
266
|
-
"5BpZ1y39lJ+Q6BOs": {
|
|
267
|
-
"translation": "Displaying more than {limit} {limit, plural, one {column} other {columns}} may affect this table's performance.",
|
|
268
|
-
"notes": "Warning message shown in column settings modal when the number of visible columns exceeds the warning threshold."
|
|
269
|
-
},
|
|
270
270
|
"5Byu0D+YGc1DoTBc": {
|
|
271
271
|
"translation": "A logical operator cannot occur in this position.",
|
|
272
272
|
"notes": "Filter field invalid logical operator"
|
|
@@ -307,6 +307,10 @@
|
|
|
307
307
|
"translation": "You'll be notified about updates via email.",
|
|
308
308
|
"notes": "Additional information text used for the notify button overlay when notifications are enabled"
|
|
309
309
|
},
|
|
310
|
+
"6cOIaWQY3mdZZITF": {
|
|
311
|
+
"translation": "One or more segments of this preset are invalid and can't be applied.",
|
|
312
|
+
"notes": "Tooltip text shown above the segment list for presets that contain invalid segments."
|
|
313
|
+
},
|
|
310
314
|
"6vA3zfYytiSPVBZV": {
|
|
311
315
|
"translation": "Copy name",
|
|
312
316
|
"notes": "Text in a tooltip shown when clicking a tooltip item and hovering the copy button next to its name"
|
|
@@ -351,10 +355,6 @@
|
|
|
351
355
|
"translation": "Invalid filter value. Only values of type {allowedTypes} are supported for this key.",
|
|
352
356
|
"notes": "Invalid value error when multiple types are allowed for a key"
|
|
353
357
|
},
|
|
354
|
-
"89sBAyzLbeW6GyPJ": {
|
|
355
|
-
"translation": "Invalid start and end time. Expected format: {expectedFormat}, -2h or -2d@d",
|
|
356
|
-
"notes": "Given from and to values are invalid"
|
|
357
|
-
},
|
|
358
358
|
"8KQslb+aIgOg9wbA": {
|
|
359
359
|
"translation": "Supported values: Timestamps",
|
|
360
360
|
"notes": "Message shown for value suggestions restricted by a validator map (only Timestamps are valid)"
|
|
@@ -371,6 +371,10 @@
|
|
|
371
371
|
"translation": "Doesn't end with",
|
|
372
372
|
"notes": "Filter field not-ends-with operator description"
|
|
373
373
|
},
|
|
374
|
+
"8gqUdz9VpeEbBtre": {
|
|
375
|
+
"translation": "{seriesName} shown",
|
|
376
|
+
"notes": "Screen reader announcement when a chart legend series is shown"
|
|
377
|
+
},
|
|
374
378
|
"8jgPPxKxjmqUGMNe": {
|
|
375
379
|
"translation": "Hide all",
|
|
376
380
|
"notes": "Hide all columns button label in the column settings modal."
|
|
@@ -461,6 +465,10 @@
|
|
|
461
465
|
"translation": "Full day",
|
|
462
466
|
"notes": "Timeframe formatter: timeframe-full-day"
|
|
463
467
|
},
|
|
468
|
+
"B/mrEkQ2k6RSHAdX": {
|
|
469
|
+
"translation": "Remove",
|
|
470
|
+
"notes": "Tooltip text for the remove button of a faulty segment preset."
|
|
471
|
+
},
|
|
464
472
|
"B0JVHiCeA3v550+2": {
|
|
465
473
|
"translation": "Pin right",
|
|
466
474
|
"notes": "Text in the menu item for pinning the column to the right."
|
|
@@ -553,9 +561,9 @@
|
|
|
553
561
|
"translation": "Up",
|
|
554
562
|
"notes": "Key shortcut in a tooltip shown when hovering the \"Zoom in\" action in the xy chart toolbar"
|
|
555
563
|
},
|
|
556
|
-
"
|
|
557
|
-
"translation": "
|
|
558
|
-
"notes": "
|
|
564
|
+
"DJH6Mo6y4LT1rFxc": {
|
|
565
|
+
"translation": "You can show up to {limit} {limit, plural, one {column} other {columns}} at a time.",
|
|
566
|
+
"notes": "Error message shown in column settings modal when the number of visible columns exceeds the error threshold."
|
|
559
567
|
},
|
|
560
568
|
"DMJP39IduNdB3wO3": {
|
|
561
569
|
"translation": "{prefix, select, past {Last} future {Next} relativeFuture {In} other {}} {offset, plural, one {# second} other {# seconds}}{suffix}",
|
|
@@ -697,6 +705,10 @@
|
|
|
697
705
|
"translation": "Please enter a start time.",
|
|
698
706
|
"notes": "From value is missing."
|
|
699
707
|
},
|
|
708
|
+
"GXANZLEVr4dA1bxU": {
|
|
709
|
+
"translation": "Show cell actions",
|
|
710
|
+
"notes": "Aria label for DataTable cell actions trigger"
|
|
711
|
+
},
|
|
700
712
|
"GeQL1Mbr4RzmlFJk": {
|
|
701
713
|
"translation": "and",
|
|
702
714
|
"notes": "Text that is separating between multiple Segments in one preset."
|
|
@@ -709,6 +721,10 @@
|
|
|
709
721
|
"translation": "Remaining day",
|
|
710
722
|
"notes": "Timeframe formatter: timeframe-remaining-day"
|
|
711
723
|
},
|
|
724
|
+
"HAQQKModsP5sAIpb": {
|
|
725
|
+
"translation": "Invalid format for end time. Enter an exact date and time (01/01/2000, 00:00) or a relative expression (now-2h).",
|
|
726
|
+
"notes": "Validation error when the end time input cannot be parsed."
|
|
727
|
+
},
|
|
712
728
|
"HChaOEcqD6o/jiDX": {
|
|
713
729
|
"translation": "Starts-with is not supported for this key.",
|
|
714
730
|
"notes": "Message shown if the starts-with operator is not supported for this key."
|
|
@@ -717,10 +733,6 @@
|
|
|
717
733
|
"translation": "Navigate",
|
|
718
734
|
"notes": "Filter field suggestion tip - navigate suggestions."
|
|
719
735
|
},
|
|
720
|
-
"HL9dGWGnhYkm7OyC": {
|
|
721
|
-
"translation": "Invalid end time. Expected format: {expectedFormat}, -2h or -2d@d",
|
|
722
|
-
"notes": "Given to value is invalid"
|
|
723
|
-
},
|
|
724
736
|
"HPbv8ZQrbBL7hRCT": {
|
|
725
737
|
"translation": "Just now",
|
|
726
738
|
"notes": "Just now marker in the FilterField recent suggestions"
|
|
@@ -761,6 +773,10 @@
|
|
|
761
773
|
"translation": "{suffix}",
|
|
762
774
|
"notes": "Suffix for the moving a duration of the timeframe forward or backward, that is shown in the tooltip"
|
|
763
775
|
},
|
|
776
|
+
"IUvOgujQzBX+gSUq": {
|
|
777
|
+
"translation": "{count, plural, one {# option found} other {# options found}}",
|
|
778
|
+
"notes": "Screen reader announcement of the number of options matching the select filter."
|
|
779
|
+
},
|
|
764
780
|
"Ia87HCOLBoxMcV9t": {
|
|
765
781
|
"translation": "Share feedback"
|
|
766
782
|
},
|
|
@@ -823,10 +839,6 @@
|
|
|
823
839
|
"translation": "Opening the link in a new window",
|
|
824
840
|
"notes": "External link icon that describes the external link icon"
|
|
825
841
|
},
|
|
826
|
-
"Jzdt1FVhHSO1Lmg9": {
|
|
827
|
-
"translation": "Only dates before {to} are available.",
|
|
828
|
-
"notes": "Given dates are not within the valid range."
|
|
829
|
-
},
|
|
830
842
|
"K+rYESaxckSqgeF/": {
|
|
831
843
|
"translation": "Unavailable",
|
|
832
844
|
"notes": "Description for unavailable segment variables, e.g. if the variable is not available any longer."
|
|
@@ -839,9 +851,9 @@
|
|
|
839
851
|
"translation": "Go to next page.",
|
|
840
852
|
"notes": "Aria label to add to the `next` button"
|
|
841
853
|
},
|
|
842
|
-
"
|
|
843
|
-
"translation": "Only
|
|
844
|
-
"notes": "
|
|
854
|
+
"KGG/HbTw4ZLbI8vx": {
|
|
855
|
+
"translation": "Only times up to \"Now\" can be selected. Try \"Now\" or a past time.",
|
|
856
|
+
"notes": "Shown as validation error when the selected time exceeds a max boundary set to 'Now'."
|
|
845
857
|
},
|
|
846
858
|
"KgAwef2nXv2+/xgE": {
|
|
847
859
|
"translation": "YYYY",
|
|
@@ -957,10 +969,6 @@
|
|
|
957
969
|
"translation": "Expand sidebar",
|
|
958
970
|
"notes": "Label for the button that expands the sidebar."
|
|
959
971
|
},
|
|
960
|
-
"NPXaEyvX9CLw1ovg": {
|
|
961
|
-
"translation": "Trigger column actions for \"{column}\"",
|
|
962
|
-
"notes": "Aria label for DataTable column actions trigger"
|
|
963
|
-
},
|
|
964
972
|
"NXdoElYQZNKea1Sc": {
|
|
965
973
|
"translation": "Open additional information.",
|
|
966
974
|
"notes": "Aria label fallback for Information overlay trigger"
|
|
@@ -972,10 +980,6 @@
|
|
|
972
980
|
"translation": "This is just an overview, more suggestions might be available. Explore the list by navigating with the arrow keys or continue typing to filter.",
|
|
973
981
|
"notes": "Screen reader announcement indicating that additional suggestions exist beyond the first five displayed."
|
|
974
982
|
},
|
|
975
|
-
"Nlzd/zJ2XP7vZMvE": {
|
|
976
|
-
"translation": "Only dates between {from} → {to} are available.",
|
|
977
|
-
"notes": "Given dates are not within the valid range."
|
|
978
|
-
},
|
|
979
983
|
"Np6+N27mrjvIJEls": {
|
|
980
984
|
"translation": "Apply",
|
|
981
985
|
"notes": "Shown for the apply button of the timeframe selector."
|
|
@@ -992,10 +996,6 @@
|
|
|
992
996
|
"translation": "boolean",
|
|
993
997
|
"notes": "Label for boolean type used in mixed type error messages"
|
|
994
998
|
},
|
|
995
|
-
"ONYnUtFidz4+6NmE": {
|
|
996
|
-
"translation": "Only dates before {max} are available.",
|
|
997
|
-
"notes": "Given dates are not within the valid range."
|
|
998
|
-
},
|
|
999
999
|
"OVHWs31OggLCgWSq": {
|
|
1000
1000
|
"translation": "Copy details",
|
|
1001
1001
|
"notes": "Label for the copy details button in SegmentsOverlay."
|
|
@@ -1055,10 +1055,6 @@
|
|
|
1055
1055
|
"translation": "Open",
|
|
1056
1056
|
"notes": "Label next to the Ctrl+Space keyboard shortcut in the DQL editor autocomplete info section, describing the action the shortcut triggers."
|
|
1057
1057
|
},
|
|
1058
|
-
"QXOCOrq5Seu+1A93": {
|
|
1059
|
-
"translation": "Only dates after {from} are available.",
|
|
1060
|
-
"notes": "Given dates are not within the valid range."
|
|
1061
|
-
},
|
|
1062
1058
|
"QZdQoUnAWKJYAyK2": {
|
|
1063
1059
|
"translation": "Recently used",
|
|
1064
1060
|
"notes": "Headline to group recently used segments presets."
|
|
@@ -1070,10 +1066,6 @@
|
|
|
1070
1066
|
"translation": "List hidden columns",
|
|
1071
1067
|
"notes": "Label for the CTA button in the empty state that enables the 'list hidden columns' switch."
|
|
1072
1068
|
},
|
|
1073
|
-
"Qm0/7EQKVXjS9tDM": {
|
|
1074
|
-
"translation": "Only dates between {min} → {max} are available.",
|
|
1075
|
-
"notes": "Given dates are not within the valid range."
|
|
1076
|
-
},
|
|
1077
1069
|
"QsCiOjrrvWmpOx/R": {
|
|
1078
1070
|
"translation": "{columnName} can't be {isHidden, select, true {shown} other {hidden}}",
|
|
1079
1071
|
"notes": "Aria label for the visibility toggle of a column whose visibility can't be changed. columnName is the display label of the column."
|
|
@@ -1114,6 +1106,10 @@
|
|
|
1114
1106
|
"translation": "Drag to reorder \"{column}\" column",
|
|
1115
1107
|
"notes": "Aria label for DataTable draggable header"
|
|
1116
1108
|
},
|
|
1109
|
+
"Riz3wAzTiv590+pg": {
|
|
1110
|
+
"translation": "Enable 'List hidden columns' to see them.",
|
|
1111
|
+
"notes": "Body text of the empty state in the column settings modal when all columns are hidden and the 'list hidden columns' switch is off."
|
|
1112
|
+
},
|
|
1117
1113
|
"Ro/9HWdwiItr3Ter": {
|
|
1118
1114
|
"translation": "{prefix, select, previous {Previous} next {Next} other {This}} {amount, plural, one {month} other {# months}}",
|
|
1119
1115
|
"notes": "Timeframe formatter: timeframe-roundDown-month"
|
|
@@ -1154,6 +1150,10 @@
|
|
|
1154
1150
|
"translation": "{prefix, select, past {Last} future {Next} relativeFuture {In} other {}} {offset, plural, one {# minute} other {# minutes}}{suffix}",
|
|
1155
1151
|
"notes": "Timeframe formatter: timeframe-minute"
|
|
1156
1152
|
},
|
|
1153
|
+
"SZrN/y5KM3ow7Jed": {
|
|
1154
|
+
"translation": "interactive row",
|
|
1155
|
+
"notes": "Aria role description for the interactive row trigger button."
|
|
1156
|
+
},
|
|
1157
1157
|
"Siq71+wvTgBerJXL": {
|
|
1158
1158
|
"translation": "Explore mode",
|
|
1159
1159
|
"notes": "Text in a tooltip shown when hovering the \"Explore\" mode in the chart toolbar"
|
|
@@ -1186,6 +1186,10 @@
|
|
|
1186
1186
|
"translation": "Matches phrase",
|
|
1187
1187
|
"notes": "Filter field matches-phrase operator description"
|
|
1188
1188
|
},
|
|
1189
|
+
"TO+JQQr/hhHRjVL4": {
|
|
1190
|
+
"translation": "Column settings are reset to default.",
|
|
1191
|
+
"notes": "Status message that resetting column settings to default was successful."
|
|
1192
|
+
},
|
|
1189
1193
|
"TTCLEQtF7ylLxvEx": {
|
|
1190
1194
|
"translation": "Explore mode",
|
|
1191
1195
|
"notes": "Text in a tooltip shown when hovering the \"Explore\" mode in the time series chart toolbar"
|
|
@@ -1201,10 +1205,6 @@
|
|
|
1201
1205
|
"translation": "{offset, plural, one {# week} other {# weeks}}",
|
|
1202
1206
|
"notes": "Timeframe duration formatter: timeframe-week"
|
|
1203
1207
|
},
|
|
1204
|
-
"U09aNQxYT1yrJ4eJ": {
|
|
1205
|
-
"translation": "No results found",
|
|
1206
|
-
"notes": "Default message when no options are available in the select."
|
|
1207
|
-
},
|
|
1208
1208
|
"U4LTHt7BSgC51Yri": {
|
|
1209
1209
|
"translation": "A group cannot be empty.",
|
|
1210
1210
|
"notes": "Filter field empty group error"
|
|
@@ -1260,10 +1260,6 @@
|
|
|
1260
1260
|
"translation": "Series",
|
|
1261
1261
|
"notes": "Text label for the series in the tooltip. Displayed when hovering XYChart datapoints."
|
|
1262
1262
|
},
|
|
1263
|
-
"V92OBR9Gk9REQKUu": {
|
|
1264
|
-
"translation": "No table columns configured.",
|
|
1265
|
-
"notes": "Message to display when no table columns are configured."
|
|
1266
|
-
},
|
|
1267
1263
|
"VL8nEatHCgCkS4Yw": {
|
|
1268
1264
|
"translation": "X-axis zoom",
|
|
1269
1265
|
"notes": "Text in a tooltip shown when hovering the \"X-axis zoom\" mode in the time series chart toolbar"
|
|
@@ -1280,6 +1276,10 @@
|
|
|
1280
1276
|
"translation": "DQL editor actions",
|
|
1281
1277
|
"notes": "Aria label for the DQL editor actions menu trigger button."
|
|
1282
1278
|
},
|
|
1279
|
+
"VimibV2KF+yA1+4y": {
|
|
1280
|
+
"translation": "Documentation",
|
|
1281
|
+
"notes": "Link text in the DQL editor autocomplete suggestion detail tooltip, pointing to the external documentation for the selected command, function, or timeseries aggregation."
|
|
1282
|
+
},
|
|
1283
1283
|
"VkfutNWZVq0loZNC": {
|
|
1284
1284
|
"translation": "No data available.",
|
|
1285
1285
|
"notes": "Message to display when no data is available"
|
|
@@ -1300,10 +1300,18 @@
|
|
|
1300
1300
|
"translation": "Configure notifications",
|
|
1301
1301
|
"notes": "Title for the Configure notifications menu item"
|
|
1302
1302
|
},
|
|
1303
|
+
"VrWs4XmGbZ3z7a3Y": {
|
|
1304
|
+
"translation": "Only times from {min} onwards can be selected.",
|
|
1305
|
+
"notes": "Shown as hint when a min boundary is set, and as error when the selected time is before that boundary."
|
|
1306
|
+
},
|
|
1303
1307
|
"VsLm4+Io4PguyLI+": {
|
|
1304
1308
|
"translation": "Equals",
|
|
1305
1309
|
"notes": "Filter field equals operator description"
|
|
1306
1310
|
},
|
|
1311
|
+
"Vt7aUQHkFaDCuIqZ": {
|
|
1312
|
+
"translation": "Hide {seriesName}",
|
|
1313
|
+
"notes": "Accessible label for the hide-series toggle button in a legend item"
|
|
1314
|
+
},
|
|
1307
1315
|
"VwnLYpww5VUT3cdu": {
|
|
1308
1316
|
"translation": "Deprecated",
|
|
1309
1317
|
"notes": "Chip label indicating a feature is deprecated"
|
|
@@ -1316,6 +1324,10 @@
|
|
|
1316
1324
|
"translation": "Version {version}",
|
|
1317
1325
|
"notes": "App version label"
|
|
1318
1326
|
},
|
|
1327
|
+
"W8hOQDfAAXoNw46k": {
|
|
1328
|
+
"translation": "No columns have been added.",
|
|
1329
|
+
"notes": "Message to display when no table columns are configured."
|
|
1330
|
+
},
|
|
1319
1331
|
"WCZAUtmjwNCm5iwa": {
|
|
1320
1332
|
"translation": "Open app navigation",
|
|
1321
1333
|
"notes": "Label for the menu trigger to open app-header navigation."
|
|
@@ -1376,10 +1388,18 @@
|
|
|
1376
1388
|
"translation": "{count} unavailable options were removed from your selection.",
|
|
1377
1389
|
"notes": "Message after removing unavailable options from the selection."
|
|
1378
1390
|
},
|
|
1391
|
+
"Xt1ikxx+KzIHLF1C": {
|
|
1392
|
+
"translation": "Filter cleared.",
|
|
1393
|
+
"notes": "Screen reader announcement when the filter field value is cleared."
|
|
1394
|
+
},
|
|
1379
1395
|
"Xug47ebOKpTzuLj1": {
|
|
1380
1396
|
"translation": "Change font: default",
|
|
1381
1397
|
"notes": "Set the font style of the column text."
|
|
1382
1398
|
},
|
|
1399
|
+
"XujtZVmxX3xAIEud": {
|
|
1400
|
+
"translation": "Displaying more than {limit} {limit, plural, one {column} other {columns}} may slow down the table.",
|
|
1401
|
+
"notes": "Warning message shown in column settings modal when the number of visible columns exceeds the warning threshold."
|
|
1402
|
+
},
|
|
1383
1403
|
"Xup0Ti6gaxC1KDSY": {
|
|
1384
1404
|
"translation": "mm",
|
|
1385
1405
|
"notes": "The abbreviation of the minute part of a time value"
|
|
@@ -1488,6 +1508,10 @@
|
|
|
1488
1508
|
"translation": "text",
|
|
1489
1509
|
"notes": "Label for string type used in mixed type error messages"
|
|
1490
1510
|
},
|
|
1511
|
+
"aP5zePnHhLCSP5Ar": {
|
|
1512
|
+
"translation": "Row order",
|
|
1513
|
+
"notes": "Accessible label for the row order drag-and-drop column header."
|
|
1514
|
+
},
|
|
1491
1515
|
"aRc3KoQgfpti2E9M": {
|
|
1492
1516
|
"translation": "Select month",
|
|
1493
1517
|
"notes": "Aria label to add to each month button"
|
|
@@ -1532,14 +1556,14 @@
|
|
|
1532
1556
|
"translation": "Zoom out",
|
|
1533
1557
|
"notes": "Text in a tooltip shown when hovering the \"Zoom out\" action in the time series chart toolbar"
|
|
1534
1558
|
},
|
|
1559
|
+
"b+Rx1jqDkljv85d6": {
|
|
1560
|
+
"translation": "{count, plural, one {Showing # column} other {Showing all # columns}}",
|
|
1561
|
+
"notes": "Screen reader announcement when the column settings search is cleared, showing the total number of available columns."
|
|
1562
|
+
},
|
|
1535
1563
|
"b16Ain2TkJO1zJU6": {
|
|
1536
1564
|
"translation": "Set end time to now",
|
|
1537
1565
|
"notes": "Label for the button that sets the end time of a range selection to the current date and time."
|
|
1538
1566
|
},
|
|
1539
|
-
"b4mwHdIwzmZ9Dtoj": {
|
|
1540
|
-
"translation": "All columns are hidden and 'listing hidden columns' is off.",
|
|
1541
|
-
"notes": "Body text of the empty state in the column settings modal when all columns are hidden and the 'list hidden columns' switch is off."
|
|
1542
|
-
},
|
|
1543
1567
|
"b5WOrn1oLsbJsvD8": {
|
|
1544
1568
|
"translation": "Change to descending",
|
|
1545
1569
|
"notes": "Column action menu item for multi-sorting a column in descending order when the column is already part of a multi-sort."
|
|
@@ -1548,6 +1572,10 @@
|
|
|
1548
1572
|
"translation": "Show {isExpanded, select, true {less} false {more} other{}}",
|
|
1549
1573
|
"notes": "Text shown on the expanding button within the provided list, when currently expanded."
|
|
1550
1574
|
},
|
|
1575
|
+
"bIs/Bx2b6NyF7Hpe": {
|
|
1576
|
+
"translation": "Syntax:",
|
|
1577
|
+
"notes": "Label preceding the DQL syntax code example in the DQL editor autocomplete suggestion detail tooltip."
|
|
1578
|
+
},
|
|
1551
1579
|
"bOr27M/3lXQFBWyp": {
|
|
1552
1580
|
"translation": "Value",
|
|
1553
1581
|
"notes": "Annotation tooltip title value"
|
|
@@ -1580,6 +1608,10 @@
|
|
|
1580
1608
|
"translation": "The 'to' field is required.",
|
|
1581
1609
|
"notes": "Timeframe selector required to field error hint."
|
|
1582
1610
|
},
|
|
1611
|
+
"dBHTi/uZSdvpQ2Zu": {
|
|
1612
|
+
"translation": "Only times starting from \"Now\" can be selected.",
|
|
1613
|
+
"notes": "Shown as hint when the min boundary is set to 'Now', and as error when the selected time is before that boundary."
|
|
1614
|
+
},
|
|
1583
1615
|
"dDHj3yQ8W+M8/6Cy": {
|
|
1584
1616
|
"translation": "Package"
|
|
1585
1617
|
},
|
|
@@ -1754,6 +1786,10 @@
|
|
|
1754
1786
|
"translation": "Timeframe selector overlay for providing a custom timeframe or selecting one of the presets",
|
|
1755
1787
|
"notes": "Aria label for the overlay of the timeframe selector."
|
|
1756
1788
|
},
|
|
1789
|
+
"i/cxuYRtkf4OrTvH": {
|
|
1790
|
+
"translation": "Expandable rows",
|
|
1791
|
+
"notes": "Accessible label for the expandable rows column header."
|
|
1792
|
+
},
|
|
1757
1793
|
"i7ML7nsvim1vfXlT": {
|
|
1758
1794
|
"translation": "Close",
|
|
1759
1795
|
"notes": "Label next to the Esc keyboard shortcut in the DQL editor autocomplete info section, describing the action the shortcut triggers."
|
|
@@ -1809,6 +1845,14 @@
|
|
|
1809
1845
|
"translation": "No data has been provided.",
|
|
1810
1846
|
"notes": "Empty state message for the gantt chart."
|
|
1811
1847
|
},
|
|
1848
|
+
"k+a+zH/n3HXJex9e": {
|
|
1849
|
+
"translation": "Show {seriesName}",
|
|
1850
|
+
"notes": "Accessible label for the show-series toggle button in a legend item"
|
|
1851
|
+
},
|
|
1852
|
+
"k21q5kyTS9rGFWLF": {
|
|
1853
|
+
"translation": "{count, plural, one {Showing # option} other {Showing all # options}}",
|
|
1854
|
+
"notes": "Screen reader announcement when the select filter is cleared, showing the total number of available options."
|
|
1855
|
+
},
|
|
1812
1856
|
"k3/OeMKig2l4gCEJ": {
|
|
1813
1857
|
"translation": "number",
|
|
1814
1858
|
"notes": "Label for number type used in mixed type error messages"
|
|
@@ -1840,6 +1884,10 @@
|
|
|
1840
1884
|
"translation": "A position operator can only occur before or after a doublequote, not both.",
|
|
1841
1885
|
"notes": "Filter field duplicate position operator error"
|
|
1842
1886
|
},
|
|
1887
|
+
"l99kSRjiLY8vJnRN": {
|
|
1888
|
+
"translation": "Show column actions for \"{column}\"",
|
|
1889
|
+
"notes": "Aria label for DataTable column actions trigger"
|
|
1890
|
+
},
|
|
1843
1891
|
"lCYAKjQqWpqlsSEs": {
|
|
1844
1892
|
"translation": "Download as CSV",
|
|
1845
1893
|
"notes": "Text in a tooltip shown when hovering the \"Download data\" button in the categorical bar chart toolbar"
|
|
@@ -1867,6 +1915,10 @@
|
|
|
1867
1915
|
"ly1XN52z5b521OrX": {
|
|
1868
1916
|
"translation": "Duplicate"
|
|
1869
1917
|
},
|
|
1918
|
+
"m5UDM9ivObqqdmnm": {
|
|
1919
|
+
"translation": "Invalid formats for start and end time. Enter an exact date and time (01/01/2000, 00:00) or a relative expression (now-2h).",
|
|
1920
|
+
"notes": "Validation error when both start and end time inputs cannot be parsed."
|
|
1921
|
+
},
|
|
1870
1922
|
"m5z+3UJ4Q3absAi5": {
|
|
1871
1923
|
"translation": "{prefix, select, past {Last} future {Next} relativeFuture {In} other {}} {offset, plural, one {# quarter} other {# quarters}}{suffix}",
|
|
1872
1924
|
"notes": "Timeframe formatter: timeframe-quarter"
|
|
@@ -1895,6 +1947,10 @@
|
|
|
1895
1947
|
"translation": "Show {isExpanded, select, true {less} false {more} other{}}",
|
|
1896
1948
|
"notes": "Text shown on the expanding button within the SegmentSelector preset list, when currently expanded."
|
|
1897
1949
|
},
|
|
1950
|
+
"mYn9mGgSX9a2yDnQ": {
|
|
1951
|
+
"translation": "End time must be after start time. Enter an end time later than {startTime}.",
|
|
1952
|
+
"notes": "Validation error when the end time is before the start time."
|
|
1953
|
+
},
|
|
1898
1954
|
"miecKI74dxONRE98": {
|
|
1899
1955
|
"translation": "Clear {sortDirection, select, ascending {ascending} descending {descending} other {}} sort order to drag and drop rows",
|
|
1900
1956
|
"notes": "Tooltip shown on a disabled row drag handle when reordering is unavailable because the table is sorted."
|
|
@@ -1946,10 +2002,18 @@
|
|
|
1946
2002
|
"npzzIhowJGIZhj8d": {
|
|
1947
2003
|
"translation": "Documentation"
|
|
1948
2004
|
},
|
|
2005
|
+
"nt9FnUYyS/Otapls": {
|
|
2006
|
+
"translation": "{count, plural, =0 {No rows selected} one {# row selected} other {# rows selected}}",
|
|
2007
|
+
"notes": "Screen reader announcement for the current number of selected rows after a selection change."
|
|
2008
|
+
},
|
|
1949
2009
|
"ntRg2/q/0hsoJ9+r": {
|
|
1950
2010
|
"translation": "Pan mode",
|
|
1951
2011
|
"notes": "Text in a tooltip shown when hovering the \"Pan\" mode in the time series chart toolbar"
|
|
1952
2012
|
},
|
|
2013
|
+
"nwlCPRYNTOEFpb9x": {
|
|
2014
|
+
"translation": "Row selection",
|
|
2015
|
+
"notes": "Accessible label for the row selection column header."
|
|
2016
|
+
},
|
|
1953
2017
|
"o3A99RFWS+N7bJe8": {
|
|
1954
2018
|
"translation": "Details",
|
|
1955
2019
|
"notes": "Accessible label for the details panel."
|
|
@@ -1985,6 +2049,10 @@
|
|
|
1985
2049
|
"translation": "{count} diagnostics: {list}",
|
|
1986
2050
|
"notes": "Screen reader announcement when there are multiple diagnostics. {list} is a period-separated list of severity/line/message items."
|
|
1987
2051
|
},
|
|
2052
|
+
"p9kOQBgxWYepT8B0": {
|
|
2053
|
+
"translation": "Invalid format for start time. Enter an exact date and time (01/01/2000, 00:00) or a relative expression (now-2h).",
|
|
2054
|
+
"notes": "Validation error when the start time input cannot be parsed."
|
|
2055
|
+
},
|
|
1988
2056
|
"pFUmTVhQadk/rQkO": {
|
|
1989
2057
|
"translation": "Use{value}as key",
|
|
1990
2058
|
"notes": "Message shown as a default key suggestions."
|
|
@@ -2017,6 +2085,10 @@
|
|
|
2017
2085
|
"translation": "At least one value must be selected.",
|
|
2018
2086
|
"notes": "Error message shown when no value is selected."
|
|
2019
2087
|
},
|
|
2088
|
+
"qES7K18UnrsWPhwk": {
|
|
2089
|
+
"translation": "Only times up to {max} can be selected.",
|
|
2090
|
+
"notes": "Shown as hint when a max boundary is set, and as error when the selected time is after that boundary."
|
|
2091
|
+
},
|
|
2020
2092
|
"qEw4R8BQ3vYI7C8R": {
|
|
2021
2093
|
"translation": "Copy missing permissions",
|
|
2022
2094
|
"notes": "Text used for the notify button toast button text"
|
|
@@ -2025,6 +2097,10 @@
|
|
|
2025
2097
|
"translation": "Please match the format requested.",
|
|
2026
2098
|
"notes": "Error message for input that doesn't follow the requested pattern."
|
|
2027
2099
|
},
|
|
2100
|
+
"qZC6v+YzE6aXQpMY": {
|
|
2101
|
+
"translation": "{count, plural, one {# column found} other {# columns found}}",
|
|
2102
|
+
"notes": "Screen reader announcement of the number of leaf columns matching the column settings search filter."
|
|
2103
|
+
},
|
|
2028
2104
|
"qoM4Je2O4h920xx0": {
|
|
2029
2105
|
"translation": "No data can be displayed because the value is 0",
|
|
2030
2106
|
"notes": "Text displayed when the pie chart dataset is invalid"
|
|
@@ -2037,10 +2113,6 @@
|
|
|
2037
2113
|
"translation": "Invalid time. Expected format: {expectedFormat}, -2h or -2d@d",
|
|
2038
2114
|
"notes": "Given value is invalid"
|
|
2039
2115
|
},
|
|
2040
|
-
"r2DiyNP5gUAg0s5f": {
|
|
2041
|
-
"translation": "Selected time is outside of the valid range.",
|
|
2042
|
-
"notes": "Given dates are not within the valid range."
|
|
2043
|
-
},
|
|
2044
2116
|
"r2QQIGUPC6lQhGDf": {
|
|
2045
2117
|
"translation": "Logical operator suggestions",
|
|
2046
2118
|
"notes": "Aria-label for logical operator suggestions in the filter field"
|
|
@@ -2060,10 +2132,6 @@
|
|
|
2060
2132
|
"translation": "Configure notifications",
|
|
2061
2133
|
"notes": "Label for the Configure notifications menu item"
|
|
2062
2134
|
},
|
|
2063
|
-
"rivnln20bnbWI1vP": {
|
|
2064
|
-
"translation": "Trigger cell actions",
|
|
2065
|
-
"notes": "Aria label for DataTable cell actions trigger"
|
|
2066
|
-
},
|
|
2067
2135
|
"rm7eAPvUS8J1G8TZ": {
|
|
2068
2136
|
"translation": "The 'to' field is invalid.",
|
|
2069
2137
|
"notes": "Error message shown if the to value of a timeframe is invalid"
|
|
@@ -2108,10 +2176,6 @@
|
|
|
2108
2176
|
"translation": "Invalid filter value. Only timestamps in ISO8601 format are supported for this key.",
|
|
2109
2177
|
"notes": "Invalid value error for timestamp type"
|
|
2110
2178
|
},
|
|
2111
|
-
"supuOfI2cSrNKOZ/": {
|
|
2112
|
-
"translation": "Invalid start time. Expected format: {expectedFormat}, -2h or -2d@d",
|
|
2113
|
-
"notes": "Given from value is invalid"
|
|
2114
|
-
},
|
|
2115
2179
|
"swS1rIU8VQep1PDq": {
|
|
2116
2180
|
"translation": "Filter field",
|
|
2117
2181
|
"notes": "Default aria label for the filter field"
|
|
@@ -2139,6 +2203,10 @@
|
|
|
2139
2203
|
"translation": "Select page size",
|
|
2140
2204
|
"notes": "Aria-label for selecting current page size."
|
|
2141
2205
|
},
|
|
2206
|
+
"tWdgBWwThCCe7Tum": {
|
|
2207
|
+
"translation": "{seriesName} hidden",
|
|
2208
|
+
"notes": "Screen reader announcement when a chart legend series is hidden"
|
|
2209
|
+
},
|
|
2142
2210
|
"tfHTZkRc7sr/Ypcl": {
|
|
2143
2211
|
"translation": "Please enter an end time.",
|
|
2144
2212
|
"notes": "End value is missing."
|
|
@@ -2178,10 +2246,6 @@
|
|
|
2178
2246
|
"translation": "Change mode",
|
|
2179
2247
|
"notes": "Text in a tooltip shown when hovering the expanded toolbar's menu button in the time series chart toolbar"
|
|
2180
2248
|
},
|
|
2181
|
-
"uIY0S6+5RUL68Rsd": {
|
|
2182
|
-
"translation": "Displaying more than {limit} {limit, plural, one {column} other {columns}} is not allowed.",
|
|
2183
|
-
"notes": "Error message shown in column settings modal when the number of visible columns exceeds the error threshold."
|
|
2184
|
-
},
|
|
2185
2249
|
"uLZU9AJNAIdoZ08c": {
|
|
2186
2250
|
"translation": "warning",
|
|
2187
2251
|
"notes": "Severity label for a warning diagnostic, used in screen reader announcements."
|
|
@@ -2210,6 +2274,10 @@
|
|
|
2210
2274
|
"translation": "No matching suggestions found.",
|
|
2211
2275
|
"notes": "Empty state message shown if no suggestions can be found."
|
|
2212
2276
|
},
|
|
2277
|
+
"vbdg7YKUa68LiCw7": {
|
|
2278
|
+
"translation": "End time must be after start time.",
|
|
2279
|
+
"notes": "Message to display if the from and to dates are in the wrong order."
|
|
2280
|
+
},
|
|
2213
2281
|
"vkJWCbh6wLAsnHfT": {
|
|
2214
2282
|
"translation": "Built with"
|
|
2215
2283
|
},
|
|
@@ -2251,6 +2319,10 @@
|
|
|
2251
2319
|
"xHrhU3DP4e0nge7c": {
|
|
2252
2320
|
"translation": "Help"
|
|
2253
2321
|
},
|
|
2322
|
+
"xRve2qkedJdro00f": {
|
|
2323
|
+
"translation": "Row actions",
|
|
2324
|
+
"notes": "Accessible label for the row actions column header."
|
|
2325
|
+
},
|
|
2254
2326
|
"xT9m8P49DpYVR1pg": {
|
|
2255
2327
|
"translation": "Add TypeScript",
|
|
2256
2328
|
"notes": "Default placeholder for code editor when the language is TypeScript."
|