@dynatrace/strato-components 3.7.1 → 3.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +2113 -0
- package/buttons/button/Button.css +15 -15
- package/buttons/button/Button.d.ts +2 -1
- package/buttons/button/Button.js +5 -4
- package/buttons/button/Button.sty.js +4 -4
- package/buttons/intent-button/IntentButton.css +1 -1
- package/buttons/intent-button/IntentButton.sty.js +1 -1
- package/buttons/intent-button/IntentButtonWithResponse.js +2 -2
- package/buttons/notify-button/NotifyButton.css +2 -2
- package/buttons/notify-button/NotifyButton.sty.js +2 -2
- package/buttons/run-query-button/RunQueryButton.js +6 -13
- package/charts/categorical-bar/components/interactions/hooks/useSeriesActionClickHandler.js +7 -1
- package/charts/categorical-bar/components/interactions/overlays/CategoricalBarChartInspectOverlay.css +2 -2
- package/charts/categorical-bar/components/interactions/overlays/CategoricalBarChartInspectOverlay.sty.js +2 -2
- package/charts/categorical-bar/hooks/store/state-setters.d.ts +2 -2
- package/charts/categorical-bar/hooks/store/state-setters.js +3 -1
- package/charts/categorical-bar/layout/CategoricalGridLayout.js +1 -2
- package/charts/core/components/annotations/AnnotationsAtom.css +1 -1
- package/charts/core/components/annotations/AnnotationsAtom.sty.js +1 -1
- package/charts/core/components/annotations/components/canvas/AnnotationsCanvasLayout.css +1 -1
- package/charts/core/components/annotations/components/canvas/AnnotationsCanvasLayout.sty.js +1 -1
- package/charts/core/components/annotations/components/canvas/utils/calculate-marker-width-and-content.js +1 -2
- package/charts/core/components/annotations/components/overlays/AnnotationsOverlays.css +1 -1
- package/charts/core/components/annotations/components/overlays/AnnotationsOverlays.sty.js +1 -1
- package/charts/core/components/annotations/components/overlays/AnnotationsScrollWrapper.css +1 -1
- package/charts/core/components/annotations/components/overlays/AnnotationsScrollWrapper.sty.js +1 -1
- package/charts/core/components/annotations/utils/aggregate-markers-coords.js +19 -2
- package/charts/core/components/annotations/utils/resolve-value-marker-hit-area.d.ts +3 -0
- package/charts/core/components/annotations/utils/resolve-value-marker-hit-area.js +32 -0
- package/charts/core/components/axes/Axis.css +1 -1
- package/charts/core/components/axes/Axis.js +2 -5
- package/charts/core/components/axes/Axis.sty.js +1 -1
- package/charts/core/components/axes/AxisPrimitive.d.ts +31 -0
- package/charts/core/components/axes/AxisPrimitive.js +221 -0
- package/charts/core/components/axes/components/CategoryBottomAxis.js +3 -3
- package/charts/core/components/axes/components/CategoryLeftAxis.js +2 -2
- package/charts/core/components/axes/components/PanningControls/PanningControls.css +16 -16
- package/charts/core/components/axes/components/PanningControls/PanningControls.sty.js +2 -2
- package/charts/core/components/axes/components/TickLabel.d.ts +1 -1
- package/charts/core/components/axes/components/TimeTableHeaderAxis.js +2 -2
- package/charts/core/components/axes/components/ValueTableHeaderAxis.js +2 -2
- package/charts/core/components/axes/constants.d.ts +0 -1
- package/charts/core/components/axes/constants.js +0 -2
- package/charts/core/components/axes/types.d.ts +50 -3
- package/charts/core/components/axes/utils/get-tick-label-props.d.ts +1 -23
- package/charts/core/components/axes/utils/get-tick-label-props.js +45 -4
- package/charts/core/components/chart-grid/ChartGrid.css +3 -3
- package/charts/core/components/chart-grid/ChartGrid.sty.js +3 -3
- package/charts/core/components/chart-grid/constants.d.ts +23 -0
- package/charts/core/components/chart-grid/constants.js +33 -0
- package/charts/core/components/chart-layout/components/styles.css +15 -15
- package/charts/core/components/chart-layout/components/styles.sty.js +4 -4
- package/charts/core/components/chart-states/ChartState.css +4 -4
- package/charts/core/components/chart-states/ChartState.sty.js +4 -4
- package/charts/core/components/crosshair/HorizontalCrosshair.js +6 -4
- package/charts/core/components/crosshair/VerticalCrosshair.js +7 -5
- package/charts/core/components/crosshair/components/Magnifier.css +7 -7
- package/charts/core/components/crosshair/components/Magnifier.sty.js +7 -7
- package/charts/core/components/grid/Grid.d.ts +5 -2
- package/charts/core/components/grid/Grid.js +1 -4
- package/charts/core/components/grid/GridColumns.d.ts +6 -3
- package/charts/core/components/grid/GridColumns.js +9 -7
- package/charts/core/components/grid/GridLine.d.ts +15 -5
- package/charts/core/components/grid/GridLine.js +5 -4
- package/charts/core/components/grid/GridLines.d.ts +2 -2
- package/charts/core/components/grid/GridRows.d.ts +6 -3
- package/charts/core/components/grid/GridRows.js +9 -7
- package/charts/core/components/grid/utils/compute-grid-lines.d.ts +3 -0
- package/charts/core/components/grid/utils/compute-grid-lines.js +35 -0
- package/charts/core/components/grid/utils/should-highlight-zero-line.d.ts +2 -2
- package/charts/core/components/interactions-overlay/InteractionsOverlay.css +5 -5
- package/charts/core/components/interactions-overlay/InteractionsOverlay.sty.js +2 -2
- package/charts/core/components/legend/categorical/ChartLegend.css +1 -1
- package/charts/core/components/legend/categorical/ChartLegend.sty.js +1 -1
- package/charts/core/components/legend/categorical/components/ChartLegendIcon/ChartLegendIcon.css +3 -3
- package/charts/core/components/legend/categorical/components/ChartLegendIcon/ChartLegendIcon.sty.js +3 -3
- package/charts/core/components/legend/categorical/components/ChartLegendItem/ChartLegendItem.css +17 -17
- package/charts/core/components/legend/categorical/components/ChartLegendItem/ChartLegendItem.sty.js +6 -6
- package/charts/core/components/legend/categorical/components/ChartLegendSeriesActions/ChartLegendSeriesActions.css +3 -3
- package/charts/core/components/legend/categorical/components/ChartLegendSeriesActions/ChartLegendSeriesActions.sty.js +1 -1
- package/charts/core/components/legend/categorical/components/ChartVirtualizedLegendGrid.css +8 -8
- package/charts/core/components/legend/categorical/components/ChartVirtualizedLegendGrid.sty.js +4 -4
- package/charts/core/components/legend/range/RangeLegend.css +3 -3
- package/charts/core/components/legend/range/RangeLegend.sty.js +1 -1
- package/charts/core/components/legend/range/components/RangeLegendBoundaryLabel/RangeLegendBoundaryLabel.css +2 -2
- package/charts/core/components/legend/range/components/RangeLegendBoundaryLabel/RangeLegendBoundaryLabel.sty.js +1 -1
- package/charts/core/components/legend/range/components/RangeLegendItemLabel/RangeLegendItemLabel.css +1 -1
- package/charts/core/components/legend/range/components/RangeLegendItemLabel/RangeLegendItemLabel.sty.js +1 -1
- package/charts/core/components/legend/range/components/RangeLegendItemMarker/RangeLegendItemMarker.css +3 -3
- package/charts/core/components/legend/range/components/RangeLegendItemMarker/RangeLegendItemMarker.sty.js +1 -1
- package/charts/core/components/legend/range/components/RangeLegendMarkers/RangeLegendMarkers.css +3 -3
- package/charts/core/components/legend/range/components/RangeLegendMarkers/RangeLegendMarkers.sty.js +1 -1
- package/charts/core/components/legend/range/components/RangeLegendSegments/RangeLegendSegments.css +5 -5
- package/charts/core/components/legend/range/components/RangeLegendSegments/RangeLegendSegments.sty.js +1 -1
- package/charts/core/components/loader-overlay/LoaderOverlay.css +2 -2
- package/charts/core/components/loader-overlay/LoaderOverlay.sty.js +2 -2
- package/charts/core/components/overlay-tooltip/components/DynamicTooltip.js +7 -3
- package/charts/core/components/overlay-tooltip/components/TooltipPortal.js +7 -1
- package/charts/core/components/overlay-tooltip/components/global-actions/actions.css +4 -4
- package/charts/core/components/overlay-tooltip/components/global-actions/actions.sty.js +2 -2
- package/charts/core/components/overlay-tooltip/components/header/Header.css +6 -6
- package/charts/core/components/overlay-tooltip/components/header/Header.sty.js +6 -6
- package/charts/core/components/overlay-tooltip/components/series/seriesSymbol.css +2 -2
- package/charts/core/components/overlay-tooltip/components/series/seriesSymbol.sty.js +2 -2
- package/charts/core/components/overlay-tooltip/tooltip.css +52 -52
- package/charts/core/components/overlay-tooltip/tooltip.sty.js +39 -39
- package/charts/core/components/overlay-tooltip/useTooltipActions.js +8 -0
- package/charts/core/components/overlay-tooltip/utils/is-scroll-ignored.d.ts +2 -0
- package/charts/core/components/overlay-tooltip/utils/is-scroll-ignored.js +28 -0
- package/charts/core/components/overlays/ChartOverlaysBorder.css +5 -5
- package/charts/core/components/overlays/ChartOverlaysBorder.sty.js +5 -5
- package/charts/core/components/selection-area/SelectionArea.css +9 -9
- package/charts/core/components/selection-area/SelectionArea.sty.js +4 -4
- package/charts/core/components/series-action/ChartActionsMenuAsync.js +3 -1
- package/charts/core/components/shape/BubbleShape/BubbleShape.css +5 -5
- package/charts/core/components/shape/BubbleShape/BubbleShape.sty.js +3 -3
- package/charts/core/components/shape/EmojiShape/EmojiShape.css +3 -3
- package/charts/core/components/shape/EmojiShape/EmojiShape.sty.js +1 -1
- package/charts/core/components/shape/IconShape/IconShape.css +3 -3
- package/charts/core/components/shape/IconShape/IconShape.sty.js +1 -1
- package/charts/core/components/shape/styles/DataPointShape.css +8 -8
- package/charts/core/components/shape/styles/DataPointShape.sty.js +4 -4
- package/charts/core/components/shared-chart-interactions/SharedChartInteractions.css +1 -1
- package/charts/core/components/shared-chart-interactions/SharedChartInteractions.sty.js +1 -1
- package/charts/core/components/single-value-renderer/SingleValueRenderer.css +5 -5
- package/charts/core/components/single-value-renderer/SingleValueRenderer.sty.js +5 -5
- package/charts/core/components/single-value-renderer/components/ContentGrid.css +1 -1
- package/charts/core/components/single-value-renderer/components/ContentGrid.sty.js +1 -1
- package/charts/core/components/single-value-renderer/components/Icon.css +3 -3
- package/charts/core/components/single-value-renderer/components/Icon.sty.js +2 -2
- package/charts/core/components/single-value-renderer/components/Label.css +1 -1
- package/charts/core/components/single-value-renderer/components/Label.sty.js +1 -1
- package/charts/core/components/single-value-renderer/components/SingleValueToolbar.css +1 -1
- package/charts/core/components/single-value-renderer/components/SingleValueToolbar.js +0 -1
- package/charts/core/components/single-value-renderer/components/SingleValueToolbar.sty.js +1 -1
- package/charts/core/components/single-value-renderer/components/Value.css +5 -5
- package/charts/core/components/single-value-renderer/components/Value.sty.js +3 -3
- package/charts/core/components/single-value-renderer/components/trend/Trend.css +3 -3
- package/charts/core/components/single-value-renderer/components/trend/Trend.sty.js +3 -3
- package/charts/core/components/single-value-renderer/components/trend/components/Icon.css +2 -2
- package/charts/core/components/single-value-renderer/components/trend/components/Icon.sty.js +1 -1
- package/charts/core/components/sparkline-display/Sparkline.css +6 -6
- package/charts/core/components/sparkline-display/Sparkline.sty.js +2 -2
- package/charts/core/components/sparkline-display/SparklineContainer.js +6 -4
- package/charts/core/components/text-ellipsis/ChartTextEllipsis.css +7 -7
- package/charts/core/components/text-ellipsis/ChartTextEllipsis.sty.js +3 -3
- package/charts/core/components/threshold-bar/indicators/ThresholdIndicator.js +40 -21
- package/charts/core/components/threshold-bar/markers/CircleMarker.js +1 -2
- package/charts/core/components/threshold-bar/markers/PillMarker.js +1 -2
- package/charts/core/components/threshold-bar/styles.css +9 -9
- package/charts/core/components/threshold-bar/styles.sty.js +2 -2
- package/charts/core/components/toolbar/ChartToolbarRenderer.css +16 -16
- package/charts/core/components/toolbar/ChartToolbarRenderer.js +16 -6
- package/charts/core/components/toolbar/ChartToolbarRenderer.sty.js +8 -8
- package/charts/core/components/toolbar/components/ChartDataMenu.css +2 -2
- package/charts/core/components/toolbar/components/ChartDataMenu.sty.js +1 -1
- package/charts/core/components/toolbar/components/Control.css +17 -17
- package/charts/core/components/toolbar/components/Control.sty.js +5 -5
- package/charts/core/components/toolbar/components/ToolbarMenu.css +4 -4
- package/charts/core/components/toolbar/components/ToolbarMenu.sty.js +2 -2
- package/charts/core/components/toolbar/types.d.ts +4 -2
- package/charts/core/components/tooltip/ChartTooltip/ChartTooltip.css +6 -6
- package/charts/core/components/tooltip/ChartTooltip/ChartTooltip.sty.js +2 -2
- package/charts/core/components/tooltip/ChartTooltip/components/ActionItem/ActionItem.css +8 -8
- package/charts/core/components/tooltip/ChartTooltip/components/ActionItem/ActionItem.sty.js +3 -3
- package/charts/core/components/tooltip/ChartTooltip/components/SeriesItem/SeriesItem.css +2 -2
- package/charts/core/components/tooltip/ChartTooltip/components/SeriesItem/SeriesItem.sty.js +1 -1
- package/charts/core/components/tooltip/ChartTooltip/components/TimeFrameHeader/TimeFrameHeader.css +1 -1
- package/charts/core/components/tooltip/ChartTooltip/components/TimeFrameHeader/TimeFrameHeader.sty.js +1 -1
- package/charts/core/components/tooltip/InteractiveChartTooltip/components/BasicChartTooltip/BasicChartTooltip.css +6 -6
- package/charts/core/components/tooltip/InteractiveChartTooltip/components/BasicChartTooltip/BasicChartTooltip.sty.js +2 -2
- package/charts/core/components/tooltip/InteractiveChartTooltip/components/InteractiveChartTooltip.css +7 -7
- package/charts/core/components/tooltip/InteractiveChartTooltip/components/InteractiveChartTooltip.sty.js +6 -6
- package/charts/core/components/tooltip/InteractiveChartTooltip/headers/HeaderTooltip.css +1 -1
- package/charts/core/components/tooltip/InteractiveChartTooltip/headers/HeaderTooltip.sty.js +1 -1
- package/charts/core/components/tooltip/section-components/TooltipFooter/TooltipFooter.css +1 -1
- package/charts/core/components/tooltip/section-components/TooltipFooter/TooltipFooter.sty.js +1 -1
- package/charts/core/components/tooltip/section-components/TooltipHeader/TooltipHeader.css +2 -2
- package/charts/core/components/tooltip/section-components/TooltipHeader/TooltipHeader.sty.js +1 -1
- package/charts/core/components/tooltip/section-components/TooltipInfoContent/TooltipInfoContent.css +1 -1
- package/charts/core/components/tooltip/section-components/TooltipInfoContent/TooltipInfoContent.sty.js +1 -1
- package/charts/core/components/tooltip/section-components/TooltipItem/TooltipItem.css +3 -3
- package/charts/core/components/tooltip/section-components/TooltipItem/TooltipItem.sty.js +2 -2
- package/charts/core/components/tooltip/section-components/TooltipSymbolContent/TooltipSymbolContent.css +1 -1
- package/charts/core/components/tooltip/section-components/TooltipSymbolContent/TooltipSymbolContent.sty.js +1 -1
- package/charts/core/components/tooltip/section-components/VirtualizedTooltipBody/VirtualizedTooltipBody.css +2 -2
- package/charts/core/components/tooltip/section-components/VirtualizedTooltipBody/VirtualizedTooltipBody.sty.js +2 -2
- package/charts/core/components/tooltip/shared/styles/SeriesBasedContent.css +12 -12
- package/charts/core/components/tooltip/shared/styles/SeriesBasedContent.sty.js +7 -7
- package/charts/core/components/tooltip/shared/styles/TooltipBody.css +1 -1
- package/charts/core/components/tooltip/shared/styles/TooltipBody.sty.js +1 -1
- package/charts/core/components/tooltip-atoms/components/HeaderChipAtom/HeaderChipAtom.css +1 -1
- package/charts/core/components/tooltip-atoms/components/HeaderChipAtom/HeaderChipAtom.sty.js +1 -1
- package/charts/core/components/tooltip-atoms/components/styles.css +4 -4
- package/charts/core/components/tooltip-atoms/components/styles.sty.js +4 -4
- package/charts/core/components/zoom/ZoomCursors.css +2 -2
- package/charts/core/components/zoom/ZoomCursors.sty.js +3 -3
- package/charts/core/constants.d.ts +7 -0
- package/charts/core/constants.js +2 -0
- package/charts/core/hooks/useOverlayEventHandlers.d.ts +10 -11
- package/charts/core/hooks/useOverlayEventHandlers.js +40 -20
- package/charts/core/hooks/usePointerAndScrollResponsiveChartBounds.js +1 -1
- package/charts/core/hooks/useThrottledCallbackOnScroll.d.ts +1 -1
- package/charts/core/types/chart-data.d.ts +13 -0
- package/charts/core/types/chart-data.js +15 -0
- package/charts/core/types/text-size.d.ts +7 -0
- package/charts/core/types/text-size.js +15 -0
- package/charts/core/typographyStyles.css +1 -1
- package/charts/core/typographyStyles.sty.js +1 -1
- package/charts/core/utils/formatter-by-ticks.d.ts +4 -5
- package/charts/core/utils/formatter-by-ticks.js +4 -4
- package/charts/core/utils/text-measure.d.ts +34 -0
- package/charts/{tree-map → core}/utils/text-measure.js +19 -19
- package/charts/gantt-chart/GanttChartLine.css +1 -1
- package/charts/gantt-chart/GanttChartLine.sty.js +1 -1
- package/charts/gantt-chart/components/GanttChartLineRenderer.css +1 -1
- package/charts/gantt-chart/components/GanttChartLineRenderer.js +1 -2
- package/charts/gantt-chart/components/GanttChartLineRenderer.sty.js +1 -1
- package/charts/gantt-chart/components/tooltip/GanttChartTooltip.css +1 -1
- package/charts/gantt-chart/components/tooltip/GanttChartTooltip.sty.js +1 -1
- package/charts/gauge/components/GaugeChartLayout/GaugeChartLayout.css +1 -1
- package/charts/gauge/components/GaugeChartLayout/GaugeChartLayout.sty.js +1 -1
- package/charts/gauge/components/GaugeChartLayout/GaugeChartToolbar.d.ts +2 -0
- package/charts/gauge/components/GaugeChartLayout/GaugeChartToolbar.js +2 -2
- package/charts/gauge/components/GaugeLabel/GaugeLabel.css +6 -6
- package/charts/gauge/components/GaugeLabel/GaugeLabel.sty.js +3 -3
- package/charts/gauge/components/GaugeLabelsWrapper/GaugeLabelsWrapper.css +3 -3
- package/charts/gauge/components/GaugeLabelsWrapper/GaugeLabelsWrapper.sty.js +1 -1
- package/charts/gauge/components/GaugeLayoutOverlay/GaugeLayoutOverlay.css +4 -4
- package/charts/gauge/components/GaugeLayoutOverlay/GaugeLayoutOverlay.js +27 -2
- package/charts/gauge/components/GaugeLayoutOverlay/GaugeLayoutOverlay.sty.js +3 -3
- package/charts/gauge/components/GaugeResponsiveLabel/GaugeResponsiveLabel.css +2 -2
- package/charts/gauge/components/GaugeResponsiveLabel/GaugeResponsiveLabel.sty.js +2 -2
- package/charts/histogram/HistogramChart.d.ts +3 -3
- package/charts/histogram/HistogramChart.js +4 -5
- package/charts/histogram/HistogramChartInternal.js +20 -11
- package/charts/histogram/components/axes/HistogramValueBottomAxisArea/HistogramValueBottomAxisArea.css +1 -1
- package/charts/histogram/components/axes/HistogramValueBottomAxisArea/HistogramValueBottomAxisArea.sty.js +1 -1
- package/charts/histogram/components/overlays/HistogramExplore/HistogramTooltip.css +1 -1
- package/charts/histogram/components/overlays/HistogramExplore/HistogramTooltip.sty.js +1 -1
- package/charts/histogram/components/overlays/HistogramOverlays.css +2 -2
- package/charts/histogram/components/overlays/HistogramOverlays.sty.js +2 -2
- package/charts/honeycomb/HoneycombChart.css +1 -1
- package/charts/honeycomb/HoneycombChart.js +6 -3
- package/charts/honeycomb/HoneycombChart.sty.js +1 -1
- package/charts/honeycomb/components/HiveOverlay.css +1 -1
- package/charts/honeycomb/components/HiveOverlay.js +2 -10
- package/charts/honeycomb/components/HiveOverlay.sty.js +1 -1
- package/charts/honeycomb/components/canvas/HiveCanvasLayout.css +1 -1
- package/charts/honeycomb/components/canvas/HiveCanvasLayout.sty.js +1 -1
- package/charts/honeycomb/components/canvas/renderers/CanvasCircleRenderer.js +7 -2
- package/charts/honeycomb/components/canvas/renderers/CanvasHexagonRenderer.js +9 -5
- package/charts/honeycomb/components/canvas/renderers/CanvasSquareRenderer.js +7 -2
- package/charts/honeycomb/components/canvas/utils/draw-label-and-value.d.ts +2 -1
- package/charts/honeycomb/components/canvas/utils/draw-label-and-value.js +100 -20
- package/charts/honeycomb/components/canvas/utils/get-font-sizes.d.ts +5 -0
- package/charts/honeycomb/components/canvas/utils/get-font-sizes.js +52 -0
- package/charts/honeycomb/components/canvas/utils/get-truncation-method.d.ts +3 -1
- package/charts/honeycomb/components/canvas/utils/get-truncation-method.js +78 -8
- package/charts/honeycomb/components/canvas/utils/measure-node-text-content.d.ts +2 -1
- package/charts/honeycomb/components/canvas/utils/measure-node-text-content.js +13 -16
- package/charts/honeycomb/components/canvas/utils/render-text-to-canvas.d.ts +1 -1
- package/charts/honeycomb/components/canvas/utils/render-text-to-canvas.js +2 -2
- package/charts/honeycomb/components/canvas/utils/set-font-details-to-context.d.ts +1 -1
- package/charts/honeycomb/components/canvas/utils/set-font-details-to-context.js +11 -9
- package/charts/honeycomb/components/toolbar/HoneycombToolbar.js +1 -3
- package/charts/honeycomb/constants.d.ts +8 -4
- package/charts/honeycomb/constants.js +17 -13
- package/charts/honeycomb/context/honeycomb-color-scheme.context.d.ts +1 -1
- package/charts/honeycomb/context/honeycomb-filtered-color-scheme.context.d.ts +1 -1
- package/charts/honeycomb/context/honeycomb-text-size.context.d.ts +2 -0
- package/charts/{core/components/toolbar/utils/estimate-toolbar-width.js → honeycomb/context/honeycomb-text-size.context.js} +8 -15
- package/charts/honeycomb/hooks/use-honeycomb-chart-config.js +6 -1
- package/charts/honeycomb/hooks/use-honeycomb-color-scheme.context.d.ts +1 -1
- package/charts/honeycomb/hooks/use-honeycomb-filtered-color-scheme.d.ts +1 -1
- package/charts/honeycomb/hooks/use-honeycomb-text-size.d.ts +1 -0
- package/charts/honeycomb/hooks/use-honeycomb-text-size.js +25 -0
- package/charts/honeycomb/hooks/use-overlay-events.d.ts +4 -5
- package/charts/honeycomb/hooks/use-overlay-events.js +4 -7
- package/charts/honeycomb/store/selectors.d.ts +0 -1
- package/charts/honeycomb/store/selectors.js +0 -2
- package/charts/honeycomb/store/store.d.ts +1 -2
- package/charts/honeycomb/store/store.js +0 -13
- package/charts/honeycomb/types/honeycomb-config-properties.d.ts +8 -1
- package/charts/honeycomb/types/honeycomb-internal.d.ts +4 -1
- package/charts/honeycomb/types/honeycomb.d.ts +53 -10
- package/charts/honeycomb/types/state.d.ts +0 -4
- package/charts/honeycomb/types/state.js +0 -3
- package/charts/honeycomb/utils/build-honeycomb-config.d.ts +3 -2
- package/charts/honeycomb/utils/build-honeycomb-config.js +17 -4
- package/charts/honeycomb/utils/normalize-honeycomb-chart-data.d.ts +17 -0
- package/charts/honeycomb/utils/normalize-honeycomb-chart-data.js +39 -0
- package/charts/index.d.ts +6 -4
- package/charts/meter-bar/shared/components/meter-bar-layout/MeterBarLayout.css +15 -15
- package/charts/meter-bar/shared/components/meter-bar-layout/MeterBarLayout.sty.js +10 -10
- package/charts/meter-bar/shared/components/meter-bar-layout/slots/Icon/Icon.css +2 -2
- package/charts/meter-bar/shared/components/meter-bar-layout/slots/Icon/Icon.sty.js +1 -1
- package/charts/meter-bar/shared/components/meter-bar-layout/slots/Label/Label.css +1 -1
- package/charts/meter-bar/shared/components/meter-bar-layout/slots/Label/Label.sty.js +1 -1
- package/charts/meter-bar/shared/components/meter-bar-layout/slots/Max/Max.css +1 -1
- package/charts/meter-bar/shared/components/meter-bar-layout/slots/Max/Max.sty.js +1 -1
- package/charts/meter-bar/shared/components/meter-bar-layout/slots/Min/Min.css +1 -1
- package/charts/meter-bar/shared/components/meter-bar-layout/slots/Min/Min.sty.js +1 -1
- package/charts/meter-bar/shared/components/meter-bar-layout/slots/Value/Value.css +1 -1
- package/charts/meter-bar/shared/components/meter-bar-layout/slots/Value/Value.sty.js +1 -1
- package/charts/meter-bar/shared/components/meter-bar-plot/MeterBarPlot.css +1 -1
- package/charts/meter-bar/shared/components/meter-bar-plot/MeterBarPlot.sty.js +1 -1
- package/charts/meter-bar/shared/styles/element-size.css +4 -4
- package/charts/meter-bar/shared/styles/element-size.sty.js +1 -1
- package/charts/meter-bar/shared/styles.css +1 -1
- package/charts/meter-bar/shared/styles.sty.js +1 -1
- package/charts/meter-bar/single-meter-bar/components/MeterBarChartThresholds/MeterBarChartThresholds.css +1 -1
- package/charts/meter-bar/single-meter-bar/components/MeterBarChartThresholds/MeterBarChartThresholds.sty.js +1 -1
- package/charts/pie/DonutChart.d.ts +2 -3
- package/charts/pie/DonutChart.js +6 -13
- package/charts/pie/PieChart.d.ts +2 -3
- package/charts/pie/PieChart.js +8 -15
- package/charts/pie/components/InnerWrapper/components/InnerContainer/InnerContainer.css +1 -1
- package/charts/pie/components/InnerWrapper/components/InnerContainer/InnerContainer.sty.js +1 -1
- package/charts/pie/components/InnerWrapper/components/InnerDonut/InnerDonut.css +1 -1
- package/charts/pie/components/InnerWrapper/components/InnerDonut/InnerDonut.sty.js +1 -1
- package/charts/pie/components/PieChartOverlays/PieChartOverlays.css +1 -1
- package/charts/pie/components/PieChartOverlays/PieChartOverlays.js +3 -3
- package/charts/pie/components/PieChartOverlays/PieChartOverlays.sty.js +1 -1
- package/charts/pie/components/PieChartPlot/PieChartPlot.css +1 -1
- package/charts/pie/components/PieChartPlot/PieChartPlot.js +59 -54
- package/charts/pie/components/PieChartPlot/PieChartPlot.sty.js +1 -1
- package/charts/pie/components/PieChartSlice.js +15 -11
- package/charts/pie/constants.d.ts +1 -0
- package/charts/pie/constants.js +2 -0
- package/charts/pie/context/ChartConfigContext.d.ts +1 -0
- package/charts/pie/hooks/useNormalizedPieData.d.ts +7 -0
- package/charts/pie/hooks/useNormalizedPieData.js +38 -0
- package/charts/pie/hooks/useOverlayHandlers.d.ts +3 -2
- package/charts/pie/hooks/useOverlayHandlers.js +7 -5
- package/charts/pie/hooks/useSliceHandlers.d.ts +4 -3
- package/charts/pie/hooks/useSliceHandlers.js +29 -3
- package/charts/pie/types/pie-chart.config.d.ts +102 -37
- package/charts/pie/utils/group-slices-thinner-than-pad-angle.js +2 -1
- package/charts/pie/utils/normalize-pie-data.d.ts +29 -0
- package/charts/pie/utils/normalize-pie-data.js +38 -0
- package/charts/pie/utils/pie-config.js +2 -1
- package/charts/pie/utils/sanitize-toolbar-intents.d.ts +2 -0
- package/charts/{tree-map/hooks/useSetOverlayState.js → pie/utils/sanitize-toolbar-intents.js} +9 -18
- package/charts/single-value/SingleValue.css +1 -1
- package/charts/single-value/SingleValue.sty.js +1 -1
- package/charts/single-value-grid/SingleValueGrid.css +2 -2
- package/charts/single-value-grid/SingleValueGrid.sty.js +1 -1
- package/charts/single-value-grid/components/GlobalFontSizeVariables.css +1 -1
- package/charts/single-value-grid/components/GlobalFontSizeVariables.sty.js +1 -1
- package/charts/timeseries/TimeseriesChart.d.ts +1 -1
- package/charts/timeseries/TimeseriesChartInternal.d.ts +4 -0
- package/charts/timeseries/TimeseriesChartInternal.js +40 -21
- package/charts/timeseries/components/axes/TimeseriesTimeBottomAxisArea/TimeseriesTimeBottomAxisArea.css +2 -2
- package/charts/timeseries/components/axes/TimeseriesTimeBottomAxisArea/TimeseriesTimeBottomAxisArea.sty.js +1 -1
- package/charts/timeseries/components/overlays/TimeseriesOverlays.css +4 -4
- package/charts/timeseries/components/overlays/TimeseriesOverlays.sty.js +4 -4
- package/charts/timeseries/components/thresholds/ThresholdIndicators.css +2 -2
- package/charts/timeseries/components/thresholds/ThresholdIndicators.sty.js +2 -2
- package/charts/top-list/TopList.css +1 -1
- package/charts/top-list/TopList.js +9 -5
- package/charts/top-list/TopList.sty.js +1 -1
- package/charts/top-list/constants.d.ts +1 -4
- package/charts/top-list/constants.js +2 -1
- package/charts/top-list/types/top-list.d.ts +6 -0
- package/charts/tree-map/TreeMap.d.ts +2 -3
- package/charts/tree-map/TreeMap.js +10 -1
- package/charts/tree-map/components/TreeMapChartLayout.js +4 -4
- package/charts/tree-map/components/TreeMapLegend/TreeMapCategoricalLegend.js +3 -1
- package/charts/tree-map/components/TreeMapOverlay/TreeMapOverlay.css +1 -1
- package/charts/tree-map/components/TreeMapOverlay/TreeMapOverlay.js +2 -10
- package/charts/tree-map/components/TreeMapOverlay/TreeMapOverlay.sty.js +1 -1
- package/charts/tree-map/components/TreeMapToolbar/TreeMapToolbar.js +2 -4
- package/charts/tree-map/components/canvas/TreeMapSquareRenderer.js +4 -2
- package/charts/tree-map/constants.d.ts +4 -2
- package/charts/tree-map/constants.js +1 -2
- package/charts/tree-map/context/TextSizeContext.d.ts +3 -2
- package/charts/tree-map/hooks/useOverlayHandlers.d.ts +4 -5
- package/charts/tree-map/hooks/useOverlayHandlers.js +4 -7
- package/charts/tree-map/hooks/useTreeMapChartConfig.d.ts +2 -2
- package/charts/tree-map/hooks/useTreeMapChartHandlers.js +4 -1
- package/charts/tree-map/providers/TreeMapChartProviders.d.ts +2 -1
- package/charts/tree-map/providers/TreeMapChartProviders.js +1 -1
- package/charts/tree-map/store/selectors.d.ts +0 -1
- package/charts/tree-map/store/selectors.js +1 -3
- package/charts/tree-map/store/store.js +0 -3
- package/charts/tree-map/types/state.d.ts +0 -3
- package/charts/tree-map/types/treemap.d.ts +27 -10
- package/charts/tree-map/utils/build-labels.d.ts +1 -1
- package/charts/tree-map/utils/build-tree-map-chart-config.d.ts +2 -2
- package/charts/tree-map/utils/get-legend-interaction-props.d.ts +1 -1
- package/charts/tree-map/utils/get-legend-interaction-props.js +2 -2
- package/charts/tree-map/utils/to-hierarchical-props.d.ts +2 -0
- package/charts/tree-map/utils/to-hierarchical-props.js +106 -0
- package/charts/xy-chart/XYChart.js +22 -12
- package/charts/xy-chart/XYChartRoot.js +4 -2
- package/charts/xy-chart/components/axes/AxisArea.css +1 -1
- package/charts/xy-chart/components/axes/AxisArea.sty.js +1 -1
- package/charts/xy-chart/components/axes/AxisTickWithTruncation.css +3 -3
- package/charts/xy-chart/components/axes/AxisTickWithTruncation.sty.js +3 -3
- package/charts/xy-chart/components/axes/XTickWithTruncation.d.ts +1 -1
- package/charts/xy-chart/components/axes/XYChartLeftAxisArea.js +5 -1
- package/charts/xy-chart/components/axes/XYChartRightAxisArea.js +5 -1
- package/charts/xy-chart/components/axes/YTickWithTruncation.d.ts +1 -1
- package/charts/xy-chart/components/axes/hooks/useXTickOffset.d.ts +1 -1
- package/charts/xy-chart/components/axes/hooks/useYTickOffset.d.ts +1 -1
- package/charts/xy-chart/components/displays/BarDisplay/BarLabelOverlay.css +3 -3
- package/charts/xy-chart/components/displays/BarDisplay/BarLabelOverlay.sty.js +3 -3
- package/charts/xy-chart/components/legend/XYLegend/xy-legend.css +1 -1
- package/charts/xy-chart/components/legend/XYLegend/xy-legend.sty.js +1 -1
- package/charts/xy-chart/components/overlay/explore/HighlightedPointCanvas.d.ts +3 -2
- package/charts/xy-chart/components/overlay/explore/HighlightedPointCanvas.js +27 -5
- package/charts/xy-chart/components/overlay/explore/XYChartCrosshair.css +1 -1
- package/charts/xy-chart/components/overlay/explore/XYChartCrosshair.sty.js +1 -1
- package/charts/xy-chart/components/overlay/explore/XYChartExplore.css +2 -2
- package/charts/xy-chart/components/overlay/explore/XYChartExplore.sty.js +2 -2
- package/charts/xy-chart/components/overlay/explore/XYChartLinearPoint.js +12 -6
- package/charts/xy-chart/components/overlay/hooks/useOverlayEvents.js +4 -0
- package/charts/xy-chart/components/overlay/utils/draw-shape.d.ts +1 -0
- package/charts/xy-chart/components/overlay/utils/draw-shape.js +19 -0
- package/charts/xy-chart/components/thresholds/XYChartThresholdIndicators.css +1 -1
- package/charts/xy-chart/components/thresholds/XYChartThresholdIndicators.sty.js +1 -1
- package/charts/xy-chart/components/tooltip/HoveredPointTooltip/hooks/getHoveredPointTooltipBodyContent.js +2 -2
- package/charts/xy-chart/components/tooltip/SharedXYChartTooltip/SharedXYChartTooltip.js +23 -22
- package/charts/xy-chart/components/tooltip/utils/get-cached-separator.d.ts +12 -0
- package/charts/xy-chart/components/tooltip/utils/get-cached-separator.js +33 -0
- package/charts/xy-chart/components/tooltip/utils/get-tooltip-formatter.js +4 -2
- package/charts/xy-chart/components/tooltip/utils/tooltip-styles.css +5 -5
- package/charts/xy-chart/components/tooltip/utils/tooltip-styles.sty.js +4 -4
- package/charts/xy-chart/constants/defaults.d.ts +1 -0
- package/charts/xy-chart/constants/defaults.js +2 -0
- package/charts/xy-chart/context/XYChartOverlayPerformance.context.d.ts +17 -0
- package/charts/xy-chart/hooks/useBuildHoverGrid.d.ts +12 -0
- package/charts/xy-chart/hooks/useBuildHoverGrid.js +56 -0
- package/charts/xy-chart/hooks/useBuildOverlayStrategy.d.ts +16 -0
- package/charts/xy-chart/hooks/useBuildOverlayStrategy.js +102 -0
- package/charts/xy-chart/hooks/useXYChartDataProvider.js +10 -3
- package/charts/xy-chart/layout/XYChartLayout.css +2 -2
- package/charts/xy-chart/layout/XYChartLayout.sty.js +2 -2
- package/charts/xy-chart/providers/XYChartAnnotationsShownIndicatorsProvider.js +7 -9
- package/charts/xy-chart/providers/XYChartAxesTicksProvider.js +41 -24
- package/charts/xy-chart/providers/XYChartOverlayPerformanceProvider.js +11 -53
- package/charts/xy-chart/providers/XYChartScalesProvider.js +9 -2
- package/charts/xy-chart/types/xy-chart-props.d.ts +6 -0
- package/charts/xy-chart/utils/build-axis-id-to-min-bar-size.d.ts +2 -0
- package/charts/xy-chart/utils/build-axis-id-to-min-bar-size.js +46 -0
- package/charts/xy-chart/utils/build-sorted-entries.d.ts +40 -18
- package/charts/xy-chart/utils/build-sorted-entries.js +63 -10
- package/charts/xy-chart/utils/filter-out-of-range-ticks.d.ts +3 -0
- package/charts/xy-chart/utils/filter-out-of-range-ticks.js +46 -0
- package/charts/xy-chart/utils/generate-scales-by-axis-id.d.ts +1 -1
- package/charts/xy-chart/utils/generate-scales-by-axis-id.js +19 -3
- package/charts/xy-chart/utils/get-ticks-formatted-by-config.d.ts +5 -1
- package/charts/xy-chart/utils/get-ticks-formatted-by-config.js +11 -0
- package/charts/xy-chart/utils/query-hovered-grid.d.ts +31 -0
- package/charts/xy-chart/utils/query-hovered-grid.js +191 -0
- package/charts/xy-chart/utils/query-shared.d.ts +2 -2
- package/charts/xy-chart/utils/query-shared.js +53 -23
- package/charts/xy-chart-adoption/histogram/HistogramToXY.d.ts +1 -2
- package/charts/xy-chart-adoption/histogram/HistogramToXY.js +9 -45
- package/charts/xy-chart-adoption/histogram/transformer-annotations-to-xy.d.ts +1 -17
- package/charts/xy-chart-adoption/histogram/transformer-annotations-to-xy.js +18 -33
- package/charts/xy-chart-adoption/shared/types/legacy-props.d.ts +11 -0
- package/charts/xy-chart-adoption/shared/types/legacy-props.js +15 -0
- package/charts/xy-chart-adoption/shared/utils/render-xy-annotations.d.ts +27 -0
- package/charts/xy-chart-adoption/shared/utils/render-xy-annotations.js +88 -0
- package/charts/xy-chart-adoption/timeseries/TimeseriesToXY.d.ts +3 -0
- package/charts/xy-chart-adoption/timeseries/TimeseriesToXY.js +77 -27
- package/charts/xy-chart-adoption/timeseries/iterate-slots.d.ts +10 -0
- package/charts/xy-chart-adoption/timeseries/iterate-slots.js +36 -1
- package/charts/xy-chart-adoption/timeseries/resolve-value-representation.d.ts +6 -0
- package/charts/xy-chart-adoption/timeseries/resolve-value-representation.js +25 -0
- package/charts/xy-chart-adoption/timeseries/transformer-annotations-to-xy.d.ts +4 -0
- package/charts/xy-chart-adoption/timeseries/transformer-annotations-to-xy.js +53 -0
- package/charts/xy-chart-adoption/timeseries/transformer-data-to-xy.d.ts +8 -6
- package/charts/xy-chart-adoption/timeseries/transformer-data-to-xy.js +7 -6
- package/charts/xy-chart-adoption/timeseries/types/timeseries.d.ts +28 -5
- package/charts/xy-chart-adoption/timeseries/utils/build-buckets.d.ts +15 -0
- package/charts/xy-chart-adoption/timeseries/utils/build-buckets.js +78 -0
- package/charts/xy-chart-adoption/timeseries/utils/collect-annotations-slots.d.ts +15 -0
- package/charts/xy-chart-adoption/timeseries/utils/collect-annotations-slots.js +76 -0
- package/charts/xy-chart-adoption/timeseries/utils/map-axis-slots.d.ts +21 -0
- package/charts/xy-chart-adoption/timeseries/utils/map-axis-slots.js +61 -0
- package/charts/xy-chart-adoption/timeseries/utils/render-series.js +6 -0
- package/charts/xy-chart-adoption/timeseries/utils/resolve-gap-policy.d.ts +2 -0
- package/charts/xy-chart-adoption/timeseries/utils/resolve-gap-policy.js +34 -0
- package/content/accordion/Accordion.css +14 -14
- package/content/accordion/Accordion.sty.js +8 -8
- package/content/ai-loading-indicator/AiLoadingIndicator.css +12 -12
- package/content/ai-loading-indicator/AiLoadingIndicator.sty.js +4 -4
- package/content/ai-response/AiResponse.css +5 -5
- package/content/ai-response/AiResponse.sty.js +3 -2
- package/content/avatar/Avatar.css +13 -13
- package/content/avatar/Avatar.sty.js +4 -4
- package/content/avatar-group/AvatarGroup.css +3 -3
- package/content/avatar-group/AvatarGroup.sty.js +2 -2
- package/content/chip/BaseChip.css +40 -40
- package/content/chip/BaseChip.sty.js +5 -5
- package/content/chip/ChipContent.css +11 -11
- package/content/chip/ChipContent.sty.js +2 -2
- package/content/chip/ChipDeleteButton.css +19 -19
- package/content/chip/ChipDeleteButton.sty.js +4 -4
- package/content/chip/ChipKey.css +6 -6
- package/content/chip/ChipKey.sty.js +1 -1
- package/content/chip/GroupedChip.css +3 -3
- package/content/chip/GroupedChip.sty.js +3 -3
- package/content/chip-group/ChipGroup.css +4 -4
- package/content/chip-group/ChipGroup.d.ts +1 -1
- package/content/chip-group/ChipGroup.js +33 -49
- package/content/chip-group/ChipGroup.sty.js +1 -1
- package/content/chip-group/Control.css +4 -4
- package/content/chip-group/Control.sty.js +1 -1
- package/content/chip-group/chip-group-utils.d.ts +33 -0
- package/content/chip-group/chip-group-utils.js +52 -0
- package/content/chip-group/state/chip-group-state-reducer.d.ts +1 -1
- package/content/code-snippet/CodeHighlight.css +25 -26
- package/content/code-snippet/CodeHighlight.sty.d.ts +7 -2
- package/content/code-snippet/CodeHighlight.sty.js +10 -6
- package/content/code-snippet/CodeSnippet.css +31 -5
- package/content/code-snippet/CodeSnippet.d.ts +23 -8
- package/content/code-snippet/CodeSnippet.js +6 -2
- package/content/code-snippet/CodeSnippet.sty.d.ts +16 -0
- package/content/code-snippet/CodeSnippet.sty.js +8 -3
- package/content/empty-state/EmptyState.css +28 -28
- package/content/empty-state/EmptyState.sty.js +7 -7
- package/content/empty-state/empty-state-utils.js +2 -9
- package/content/empty-state/slot-components/Footer.css +1 -1
- package/content/empty-state/slot-components/Footer.sty.js +1 -1
- package/content/empty-state/slot-components/Visual.css +3 -3
- package/content/empty-state/slot-components/Visual.sty.js +1 -1
- package/content/expandable-text/ExpandableText.css +7 -7
- package/content/expandable-text/ExpandableText.sty.js +2 -2
- package/content/feature-highlight/FeatureHighlight.css +12 -12
- package/content/feature-highlight/FeatureHighlight.js +9 -5
- package/content/feature-highlight/FeatureHighlight.sty.js +3 -3
- package/content/health-indicator/styles.css +23 -23
- package/content/health-indicator/styles.sty.js +1 -1
- package/content/index.d.ts +1 -1
- package/content/information-overlay/InformationOverlay.css +25 -25
- package/content/information-overlay/InformationOverlay.sty.js +5 -5
- package/content/keyboard-shortcut/KeyboardShortcut.css +14 -14
- package/content/keyboard-shortcut/KeyboardShortcut.sty.js +2 -2
- package/content/markdown/Markdown.css +3 -3
- package/content/markdown/Markdown.sty.js +1 -1
- package/content/markdown/transformers/typography-mapping.css +9 -9
- package/content/markdown/transformers/typography-mapping.sty.js +6 -6
- package/content/microguide/Microguide.css +11 -11
- package/content/microguide/Microguide.sty.js +7 -7
- package/content/progress/ProgressBar.css +71 -71
- package/content/progress/ProgressBar.sty.js +5 -5
- package/content/progress/ProgressBarIcon.css +2 -2
- package/content/progress/ProgressBarIcon.sty.js +1 -1
- package/content/progress/ProgressBarLabel.css +3 -3
- package/content/progress/ProgressBarLabel.sty.js +1 -1
- package/content/progress/ProgressBarValue.css +5 -5
- package/content/progress/ProgressBarValue.sty.js +1 -1
- package/content/progress/ProgressCircle.css +40 -40
- package/content/progress/ProgressCircle.sty.js +5 -5
- package/content/release-phase-indicator/ReleasePhaseIndicator.d.ts +2 -2
- package/content/release-phase-indicator/ReleasePhaseIndicator.js +4 -2
- package/content/release-phase-indicator/messages.d.ts +5 -0
- package/content/release-phase-indicator/messages.js +5 -0
- package/content/shared-components/Visual.css +3 -3
- package/content/shared-components/Visual.sty.js +1 -1
- package/content/skeleton/Skeleton.css +7 -7
- package/content/skeleton/Skeleton.sty.js +5 -5
- package/content/terminology-overlay/TerminologyOverlay.css +4 -4
- package/content/terminology-overlay/TerminologyOverlay.sty.js +1 -1
- package/core/components/app-root/AppRoot.css +12 -2
- package/core/components/app-root/AppRoot.js +3 -2
- package/core/components/app-root/AppRoot.sty.js +1 -1
- package/core/components/app-root/visual-refresh-overrides.d.ts +6 -0
- package/core/components/app-root/visual-refresh-overrides.js +6 -0
- package/core/components/error-fallback/ErrorFallback.d.ts +8 -0
- package/{filters/filter-field → core/components}/error-fallback/messages.d.ts +0 -1
- package/{filters/filter-field → core/components}/error-fallback/messages.js +4 -4
- package/core/components/visually-hidden/VisuallyHidden.css +1 -1
- package/core/components/visually-hidden/VisuallyHidden.sty.js +1 -1
- package/core/dql/dql-common.js +6 -2
- package/core/hooks/useVisualRefreshEnabled.d.ts +4 -0
- package/core/hooks/useVisualRefreshEnabled.js +32 -0
- package/core/index.d.ts +3 -0
- package/core/index.js +6 -0
- package/core/sdk/app-state/AppStateContext.d.ts +26 -0
- package/{filters/filter-field/contexts/SavedAndRecentQueryClientContext.js → core/sdk/app-state/AppStateContext.js} +15 -7
- package/core/sdk/app-state/AppStateProvider.d.ts +24 -0
- package/core/sdk/app-state/AppStateProvider.js +97 -0
- package/core/sdk/app-state/app-state-store.d.ts +14 -0
- package/core/sdk/app-state/app-state-store.js +30 -0
- package/core/sdk/app-state/useAppState.d.ts +15 -0
- package/core/sdk/app-state/useAppState.js +40 -0
- package/core/sdk/app-state/useAppStateInternal.d.ts +28 -0
- package/core/sdk/app-state/useAppStateInternal.js +143 -0
- package/core/sdk/app-state/useAppStateValue.d.ts +28 -0
- package/core/sdk/app-state/useAppStateValue.js +32 -0
- package/core/sdk/sdk-logger.js +2 -2
- package/core/styles/defaultChartValues.css +1 -1
- package/core/styles/defaultChartValues.sty.js +1 -1
- package/core/styles/focusRing.css +66 -66
- package/core/styles/focusRing.sty.js +2 -2
- package/core/styles/focusRingStatic.css +34 -34
- package/core/styles/focusRingStatic.sty.js +1 -1
- package/core/styles/virtualFocus.css +2 -2
- package/core/styles/virtualFocus.sty.js +1 -1
- package/core/time/timeframeStore/actions/dateTimePicker.js +5 -4
- package/core/time/validation.d.ts +28 -3
- package/core/time/validation.js +49 -4
- package/core/types/form-control-props.d.ts +6 -0
- package/core/utils/colorUtils.css +60 -60
- package/core/utils/colorUtils.sty.js +2 -2
- package/core/utils/get-ticks.d.ts +29 -0
- package/core/utils/get-ticks.js +30 -0
- package/editors/base-code-editor/BaseCodeEditor.css +147 -135
- package/editors/base-code-editor/BaseCodeEditor.d.ts +51 -21
- package/editors/base-code-editor/BaseCodeEditor.js +149 -4
- package/editors/base-code-editor/BaseCodeEditor.sty.js +2 -2
- package/editors/base-code-editor/configuration/configure-format-keymap.d.ts +12 -0
- package/editors/base-code-editor/configuration/configure-format-keymap.js +40 -0
- package/editors/base-code-editor/configuration/configure-placeholder.d.ts +6 -1
- package/editors/base-code-editor/configuration/configure-placeholder.js +31 -2
- package/editors/base-code-editor/configuration/getDefaultConfigurations.js +103 -6
- package/editors/base-code-editor/configuration/language-extensions.d.ts +1 -1
- package/editors/base-code-editor/utils/key-maps.js +2 -0
- package/editors/code-editor/CodeEditor.d.ts +7 -69
- package/editors/code-editor/CodeEditor.js +23 -1
- package/editors/dql-editor/DQLEditor.d.ts +7 -69
- package/editors/dql-editor/DQLEditor.js +53 -3
- package/editors/dql-editor/actions-menu/ActionsMenu.css +23 -13
- package/editors/dql-editor/actions-menu/ActionsMenu.d.ts +7 -3
- package/editors/dql-editor/actions-menu/ActionsMenu.js +7 -1
- package/editors/dql-editor/actions-menu/ActionsMenu.sty.d.ts +16 -4
- package/editors/dql-editor/actions-menu/ActionsMenu.sty.js +5 -4
- package/editors/dql-editor/actions-menu/actions-menu-messages.d.ts +5 -0
- package/editors/dql-editor/actions-menu/actions-menu-messages.js +5 -0
- package/editors/dql-editor/dql/SuggestionPart.css +1 -1
- package/editors/dql-editor/dql/SuggestionPart.sty.js +1 -1
- package/editors/dql-editor/dql/SuggestionsInfoSection.css +7 -7
- package/editors/dql-editor/dql/SuggestionsInfoSection.js +10 -1
- package/editors/dql-editor/dql/SuggestionsInfoSection.sty.js +3 -3
- package/editors/dql-editor/dql/open-autocomplete.js +21 -3
- package/editors/dql-editor/dql/suggestion-autocompletions.js +3 -0
- package/editors/index.d.ts +1 -1
- package/esm/buttons/button/Button.css +15 -15
- package/esm/buttons/button/Button.js +5 -4
- package/esm/buttons/button/Button.js.map +2 -2
- package/esm/buttons/button/Button.sty.js +4 -4
- package/esm/buttons/button/Button.sty.js.map +1 -1
- package/esm/buttons/intent-button/IntentButton.css +1 -1
- package/esm/buttons/intent-button/IntentButton.sty.js +1 -1
- package/esm/buttons/intent-button/IntentButton.sty.js.map +1 -1
- package/esm/buttons/intent-button/IntentButtonWithResponse.js +2 -2
- package/esm/buttons/intent-button/IntentButtonWithResponse.js.map +2 -2
- package/esm/buttons/notify-button/NotifyButton.css +2 -2
- package/esm/buttons/notify-button/NotifyButton.sty.js +2 -2
- package/esm/buttons/notify-button/NotifyButton.sty.js.map +1 -1
- package/esm/buttons/run-query-button/RunQueryButton.js +7 -14
- package/esm/buttons/run-query-button/RunQueryButton.js.map +2 -2
- package/esm/charts/categorical-bar/components/interactions/hooks/useSeriesActionClickHandler.js +7 -1
- package/esm/charts/categorical-bar/components/interactions/hooks/useSeriesActionClickHandler.js.map +2 -2
- package/esm/charts/categorical-bar/components/interactions/overlays/CategoricalBarChartInspectOverlay.css +2 -2
- package/esm/charts/categorical-bar/components/interactions/overlays/CategoricalBarChartInspectOverlay.sty.js +2 -2
- package/esm/charts/categorical-bar/components/interactions/overlays/CategoricalBarChartInspectOverlay.sty.js.map +1 -1
- package/esm/charts/categorical-bar/hooks/store/state-setters.js +3 -1
- package/esm/charts/categorical-bar/hooks/store/state-setters.js.map +2 -2
- package/esm/charts/categorical-bar/layout/CategoricalGridLayout.js +1 -2
- package/esm/charts/categorical-bar/layout/CategoricalGridLayout.js.map +2 -2
- package/esm/charts/core/components/annotations/AnnotationsAtom.css +1 -1
- package/esm/charts/core/components/annotations/AnnotationsAtom.sty.js +1 -1
- package/esm/charts/core/components/annotations/AnnotationsAtom.sty.js.map +1 -1
- package/esm/charts/core/components/annotations/components/canvas/AnnotationsCanvasLayout.css +1 -1
- package/esm/charts/core/components/annotations/components/canvas/AnnotationsCanvasLayout.sty.js +1 -1
- package/esm/charts/core/components/annotations/components/canvas/AnnotationsCanvasLayout.sty.js.map +1 -1
- package/esm/charts/core/components/annotations/components/canvas/utils/calculate-marker-width-and-content.js +1 -2
- package/esm/charts/core/components/annotations/components/canvas/utils/calculate-marker-width-and-content.js.map +2 -2
- package/esm/charts/core/components/annotations/components/overlays/AnnotationsOverlays.css +1 -1
- package/esm/charts/core/components/annotations/components/overlays/AnnotationsOverlays.sty.js +1 -1
- package/esm/charts/core/components/annotations/components/overlays/AnnotationsOverlays.sty.js.map +1 -1
- package/esm/charts/core/components/annotations/components/overlays/AnnotationsScrollWrapper.css +1 -1
- package/esm/charts/core/components/annotations/components/overlays/AnnotationsScrollWrapper.sty.js +1 -1
- package/esm/charts/core/components/annotations/components/overlays/AnnotationsScrollWrapper.sty.js.map +1 -1
- package/esm/charts/core/components/annotations/utils/aggregate-markers-coords.js +20 -6
- package/esm/charts/core/components/annotations/utils/aggregate-markers-coords.js.map +2 -2
- package/esm/charts/core/components/annotations/utils/resolve-value-marker-hit-area.js +14 -0
- package/esm/charts/core/components/annotations/utils/resolve-value-marker-hit-area.js.map +7 -0
- package/esm/charts/core/components/axes/Axis.css +1 -1
- package/esm/charts/core/components/axes/Axis.js +2 -6
- package/esm/charts/core/components/axes/Axis.js.map +2 -2
- package/esm/charts/core/components/axes/Axis.sty.js +1 -1
- package/esm/charts/core/components/axes/Axis.sty.js.map +1 -1
- package/esm/charts/core/components/axes/AxisPrimitive.js +203 -0
- package/esm/charts/core/components/axes/AxisPrimitive.js.map +7 -0
- package/esm/charts/core/components/axes/components/CategoryBottomAxis.js +2 -2
- package/esm/charts/core/components/axes/components/CategoryBottomAxis.js.map +2 -2
- package/esm/charts/core/components/axes/components/CategoryLeftAxis.js +1 -1
- package/esm/charts/core/components/axes/components/CategoryLeftAxis.js.map +2 -2
- package/esm/charts/core/components/axes/components/PanningControls/PanningControls.css +16 -16
- package/esm/charts/core/components/axes/components/PanningControls/PanningControls.sty.js +2 -2
- package/esm/charts/core/components/axes/components/PanningControls/PanningControls.sty.js.map +1 -1
- package/esm/charts/core/components/axes/components/TickLabel.js.map +2 -2
- package/esm/charts/core/components/axes/components/TimeTableHeaderAxis.js +1 -1
- package/esm/charts/core/components/axes/components/TimeTableHeaderAxis.js.map +2 -2
- package/esm/charts/core/components/axes/components/ValueTableHeaderAxis.js +1 -1
- package/esm/charts/core/components/axes/components/ValueTableHeaderAxis.js.map +2 -2
- package/esm/charts/core/components/axes/constants.js +0 -2
- package/esm/charts/core/components/axes/constants.js.map +2 -2
- package/esm/charts/core/components/axes/types.js.map +2 -2
- package/esm/charts/core/components/axes/utils/get-tick-label-props.js +45 -4
- package/esm/charts/core/components/axes/utils/get-tick-label-props.js.map +2 -2
- package/esm/charts/core/components/chart-grid/ChartGrid.css +3 -3
- package/esm/charts/core/components/chart-grid/ChartGrid.sty.js +3 -3
- package/esm/charts/core/components/chart-grid/ChartGrid.sty.js.map +1 -1
- package/esm/charts/core/components/chart-grid/constants.js +15 -0
- package/esm/charts/core/components/chart-grid/constants.js.map +7 -0
- package/esm/charts/core/components/chart-layout/components/styles.css +15 -15
- package/esm/charts/core/components/chart-layout/components/styles.sty.js +4 -4
- package/esm/charts/core/components/chart-layout/components/styles.sty.js.map +1 -1
- package/esm/charts/core/components/chart-states/ChartState.css +4 -4
- package/esm/charts/core/components/chart-states/ChartState.sty.js +4 -4
- package/esm/charts/core/components/chart-states/ChartState.sty.js.map +1 -1
- package/esm/charts/core/components/crosshair/HorizontalCrosshair.js +6 -4
- package/esm/charts/core/components/crosshair/HorizontalCrosshair.js.map +2 -2
- package/esm/charts/core/components/crosshair/VerticalCrosshair.js +7 -5
- package/esm/charts/core/components/crosshair/VerticalCrosshair.js.map +2 -2
- package/esm/charts/core/components/crosshair/components/Magnifier.css +7 -7
- package/esm/charts/core/components/crosshair/components/Magnifier.sty.js +7 -7
- package/esm/charts/core/components/crosshair/components/Magnifier.sty.js.map +1 -1
- package/esm/charts/core/components/grid/Grid.js +1 -4
- package/esm/charts/core/components/grid/Grid.js.map +2 -2
- package/esm/charts/core/components/grid/GridColumns.js +9 -7
- package/esm/charts/core/components/grid/GridColumns.js.map +2 -2
- package/esm/charts/core/components/grid/GridLine.js +5 -4
- package/esm/charts/core/components/grid/GridLine.js.map +2 -2
- package/esm/charts/core/components/grid/GridLines.js.map +2 -2
- package/esm/charts/core/components/grid/GridRows.js +9 -7
- package/esm/charts/core/components/grid/GridRows.js.map +2 -2
- package/esm/charts/core/components/grid/utils/compute-grid-lines.js +17 -0
- package/esm/charts/core/components/grid/utils/compute-grid-lines.js.map +7 -0
- package/esm/charts/core/components/grid/utils/should-highlight-zero-line.js.map +1 -1
- package/esm/charts/core/components/interactions-overlay/InteractionsOverlay.css +5 -5
- package/esm/charts/core/components/interactions-overlay/InteractionsOverlay.sty.js +2 -2
- package/esm/charts/core/components/interactions-overlay/InteractionsOverlay.sty.js.map +1 -1
- package/esm/charts/core/components/legend/categorical/ChartLegend.css +1 -1
- package/esm/charts/core/components/legend/categorical/ChartLegend.sty.js +1 -1
- package/esm/charts/core/components/legend/categorical/ChartLegend.sty.js.map +1 -1
- package/esm/charts/core/components/legend/categorical/components/ChartLegendIcon/ChartLegendIcon.css +3 -3
- package/esm/charts/core/components/legend/categorical/components/ChartLegendIcon/ChartLegendIcon.sty.js +3 -3
- package/esm/charts/core/components/legend/categorical/components/ChartLegendIcon/ChartLegendIcon.sty.js.map +1 -1
- package/esm/charts/core/components/legend/categorical/components/ChartLegendItem/ChartLegendItem.css +17 -17
- package/esm/charts/core/components/legend/categorical/components/ChartLegendItem/ChartLegendItem.sty.js +6 -6
- package/esm/charts/core/components/legend/categorical/components/ChartLegendItem/ChartLegendItem.sty.js.map +1 -1
- package/esm/charts/core/components/legend/categorical/components/ChartLegendSeriesActions/ChartLegendSeriesActions.css +3 -3
- package/esm/charts/core/components/legend/categorical/components/ChartLegendSeriesActions/ChartLegendSeriesActions.sty.js +1 -1
- package/esm/charts/core/components/legend/categorical/components/ChartLegendSeriesActions/ChartLegendSeriesActions.sty.js.map +1 -1
- package/esm/charts/core/components/legend/categorical/components/ChartVirtualizedLegendGrid.css +8 -8
- package/esm/charts/core/components/legend/categorical/components/ChartVirtualizedLegendGrid.sty.js +4 -4
- package/esm/charts/core/components/legend/categorical/components/ChartVirtualizedLegendGrid.sty.js.map +1 -1
- package/esm/charts/core/components/legend/range/RangeLegend.css +3 -3
- package/esm/charts/core/components/legend/range/RangeLegend.sty.js +1 -1
- package/esm/charts/core/components/legend/range/RangeLegend.sty.js.map +1 -1
- package/esm/charts/core/components/legend/range/components/RangeLegendBoundaryLabel/RangeLegendBoundaryLabel.css +2 -2
- package/esm/charts/core/components/legend/range/components/RangeLegendBoundaryLabel/RangeLegendBoundaryLabel.sty.js +1 -1
- package/esm/charts/core/components/legend/range/components/RangeLegendBoundaryLabel/RangeLegendBoundaryLabel.sty.js.map +1 -1
- package/esm/charts/core/components/legend/range/components/RangeLegendItemLabel/RangeLegendItemLabel.css +1 -1
- package/esm/charts/core/components/legend/range/components/RangeLegendItemLabel/RangeLegendItemLabel.sty.js +1 -1
- package/esm/charts/core/components/legend/range/components/RangeLegendItemLabel/RangeLegendItemLabel.sty.js.map +1 -1
- package/esm/charts/core/components/legend/range/components/RangeLegendItemMarker/RangeLegendItemMarker.css +3 -3
- package/esm/charts/core/components/legend/range/components/RangeLegendItemMarker/RangeLegendItemMarker.sty.js +1 -1
- package/esm/charts/core/components/legend/range/components/RangeLegendItemMarker/RangeLegendItemMarker.sty.js.map +1 -1
- package/esm/charts/core/components/legend/range/components/RangeLegendMarkers/RangeLegendMarkers.css +3 -3
- package/esm/charts/core/components/legend/range/components/RangeLegendMarkers/RangeLegendMarkers.sty.js +1 -1
- package/esm/charts/core/components/legend/range/components/RangeLegendMarkers/RangeLegendMarkers.sty.js.map +1 -1
- package/esm/charts/core/components/legend/range/components/RangeLegendSegments/RangeLegendSegments.css +5 -5
- package/esm/charts/core/components/legend/range/components/RangeLegendSegments/RangeLegendSegments.sty.js +1 -1
- package/esm/charts/core/components/legend/range/components/RangeLegendSegments/RangeLegendSegments.sty.js.map +1 -1
- package/esm/charts/core/components/loader-overlay/LoaderOverlay.css +2 -2
- package/esm/charts/core/components/loader-overlay/LoaderOverlay.sty.js +2 -2
- package/esm/charts/core/components/loader-overlay/LoaderOverlay.sty.js.map +1 -1
- package/esm/charts/core/components/overlay-tooltip/components/DynamicTooltip.js +7 -3
- package/esm/charts/core/components/overlay-tooltip/components/DynamicTooltip.js.map +2 -2
- package/esm/charts/core/components/overlay-tooltip/components/TooltipPortal.js +7 -1
- package/esm/charts/core/components/overlay-tooltip/components/TooltipPortal.js.map +2 -2
- package/esm/charts/core/components/overlay-tooltip/components/global-actions/actions.css +4 -4
- package/esm/charts/core/components/overlay-tooltip/components/global-actions/actions.sty.js +2 -2
- package/esm/charts/core/components/overlay-tooltip/components/global-actions/actions.sty.js.map +1 -1
- package/esm/charts/core/components/overlay-tooltip/components/header/Header.css +6 -6
- package/esm/charts/core/components/overlay-tooltip/components/header/Header.sty.js +6 -6
- package/esm/charts/core/components/overlay-tooltip/components/header/Header.sty.js.map +1 -1
- package/esm/charts/core/components/overlay-tooltip/components/series/seriesSymbol.css +2 -2
- package/esm/charts/core/components/overlay-tooltip/components/series/seriesSymbol.sty.js +2 -2
- package/esm/charts/core/components/overlay-tooltip/components/series/seriesSymbol.sty.js.map +1 -1
- package/esm/charts/core/components/overlay-tooltip/tooltip.css +52 -52
- package/esm/charts/core/components/overlay-tooltip/tooltip.sty.js +39 -39
- package/esm/charts/core/components/overlay-tooltip/tooltip.sty.js.map +1 -1
- package/esm/charts/core/components/overlay-tooltip/useTooltipActions.js +8 -0
- package/esm/charts/core/components/overlay-tooltip/useTooltipActions.js.map +2 -2
- package/esm/charts/core/components/overlay-tooltip/utils/is-scroll-ignored.js +10 -0
- package/esm/charts/core/components/overlay-tooltip/utils/is-scroll-ignored.js.map +7 -0
- package/esm/charts/core/components/overlays/ChartOverlaysBorder.css +5 -5
- package/esm/charts/core/components/overlays/ChartOverlaysBorder.sty.js +5 -5
- package/esm/charts/core/components/overlays/ChartOverlaysBorder.sty.js.map +1 -1
- package/esm/charts/core/components/selection-area/SelectionArea.css +9 -9
- package/esm/charts/core/components/selection-area/SelectionArea.sty.js +4 -4
- package/esm/charts/core/components/selection-area/SelectionArea.sty.js.map +1 -1
- package/esm/charts/core/components/series-action/ChartActionsMenuAsync.js +3 -1
- package/esm/charts/core/components/series-action/ChartActionsMenuAsync.js.map +2 -2
- package/esm/charts/core/components/shape/BubbleShape/BubbleShape.css +5 -5
- package/esm/charts/core/components/shape/BubbleShape/BubbleShape.sty.js +3 -3
- package/esm/charts/core/components/shape/BubbleShape/BubbleShape.sty.js.map +1 -1
- package/esm/charts/core/components/shape/EmojiShape/EmojiShape.css +3 -3
- package/esm/charts/core/components/shape/EmojiShape/EmojiShape.sty.js +1 -1
- package/esm/charts/core/components/shape/EmojiShape/EmojiShape.sty.js.map +1 -1
- package/esm/charts/core/components/shape/IconShape/IconShape.css +3 -3
- package/esm/charts/core/components/shape/IconShape/IconShape.sty.js +1 -1
- package/esm/charts/core/components/shape/IconShape/IconShape.sty.js.map +1 -1
- package/esm/charts/core/components/shape/styles/DataPointShape.css +8 -8
- package/esm/charts/core/components/shape/styles/DataPointShape.sty.js +4 -4
- package/esm/charts/core/components/shape/styles/DataPointShape.sty.js.map +1 -1
- package/esm/charts/core/components/shared-chart-interactions/SharedChartInteractions.css +1 -1
- package/esm/charts/core/components/shared-chart-interactions/SharedChartInteractions.sty.js +1 -1
- package/esm/charts/core/components/shared-chart-interactions/SharedChartInteractions.sty.js.map +1 -1
- package/esm/charts/core/components/single-value-renderer/SingleValueRenderer.css +5 -5
- package/esm/charts/core/components/single-value-renderer/SingleValueRenderer.sty.js +5 -5
- package/esm/charts/core/components/single-value-renderer/SingleValueRenderer.sty.js.map +1 -1
- package/esm/charts/core/components/single-value-renderer/components/ContentGrid.css +1 -1
- package/esm/charts/core/components/single-value-renderer/components/ContentGrid.sty.js +1 -1
- package/esm/charts/core/components/single-value-renderer/components/ContentGrid.sty.js.map +1 -1
- package/esm/charts/core/components/single-value-renderer/components/Icon.css +3 -3
- package/esm/charts/core/components/single-value-renderer/components/Icon.sty.js +2 -2
- package/esm/charts/core/components/single-value-renderer/components/Icon.sty.js.map +1 -1
- package/esm/charts/core/components/single-value-renderer/components/Label.css +1 -1
- package/esm/charts/core/components/single-value-renderer/components/Label.sty.js +1 -1
- package/esm/charts/core/components/single-value-renderer/components/Label.sty.js.map +1 -1
- package/esm/charts/core/components/single-value-renderer/components/SingleValueToolbar.css +1 -1
- package/esm/charts/core/components/single-value-renderer/components/SingleValueToolbar.js +0 -1
- package/esm/charts/core/components/single-value-renderer/components/SingleValueToolbar.js.map +2 -2
- package/esm/charts/core/components/single-value-renderer/components/SingleValueToolbar.sty.js +1 -1
- package/esm/charts/core/components/single-value-renderer/components/SingleValueToolbar.sty.js.map +1 -1
- package/esm/charts/core/components/single-value-renderer/components/Value.css +5 -5
- package/esm/charts/core/components/single-value-renderer/components/Value.sty.js +3 -3
- package/esm/charts/core/components/single-value-renderer/components/Value.sty.js.map +1 -1
- package/esm/charts/core/components/single-value-renderer/components/trend/Trend.css +3 -3
- package/esm/charts/core/components/single-value-renderer/components/trend/Trend.sty.js +3 -3
- package/esm/charts/core/components/single-value-renderer/components/trend/Trend.sty.js.map +1 -1
- package/esm/charts/core/components/single-value-renderer/components/trend/components/Icon.css +2 -2
- package/esm/charts/core/components/single-value-renderer/components/trend/components/Icon.sty.js +1 -1
- package/esm/charts/core/components/single-value-renderer/components/trend/components/Icon.sty.js.map +1 -1
- package/esm/charts/core/components/sparkline-display/Sparkline.css +6 -6
- package/esm/charts/core/components/sparkline-display/Sparkline.sty.js +2 -2
- package/esm/charts/core/components/sparkline-display/Sparkline.sty.js.map +1 -1
- package/esm/charts/core/components/sparkline-display/SparklineContainer.js +6 -4
- package/esm/charts/core/components/sparkline-display/SparklineContainer.js.map +2 -2
- package/esm/charts/core/components/text-ellipsis/ChartTextEllipsis.css +7 -7
- package/esm/charts/core/components/text-ellipsis/ChartTextEllipsis.sty.js +3 -3
- package/esm/charts/core/components/text-ellipsis/ChartTextEllipsis.sty.js.map +1 -1
- package/esm/charts/core/components/threshold-bar/indicators/ThresholdIndicator.js +40 -21
- package/esm/charts/core/components/threshold-bar/indicators/ThresholdIndicator.js.map +2 -2
- package/esm/charts/core/components/threshold-bar/markers/CircleMarker.js +1 -2
- package/esm/charts/core/components/threshold-bar/markers/CircleMarker.js.map +2 -2
- package/esm/charts/core/components/threshold-bar/markers/PillMarker.js +1 -2
- package/esm/charts/core/components/threshold-bar/markers/PillMarker.js.map +2 -2
- package/esm/charts/core/components/threshold-bar/styles.css +9 -9
- package/esm/charts/core/components/threshold-bar/styles.sty.js +2 -2
- package/esm/charts/core/components/threshold-bar/styles.sty.js.map +1 -1
- package/esm/charts/core/components/toolbar/ChartToolbarRenderer.css +16 -16
- package/esm/charts/core/components/toolbar/ChartToolbarRenderer.js +16 -6
- package/esm/charts/core/components/toolbar/ChartToolbarRenderer.js.map +2 -2
- package/esm/charts/core/components/toolbar/ChartToolbarRenderer.sty.js +8 -8
- package/esm/charts/core/components/toolbar/ChartToolbarRenderer.sty.js.map +1 -1
- package/esm/charts/core/components/toolbar/components/ChartDataMenu.css +2 -2
- package/esm/charts/core/components/toolbar/components/ChartDataMenu.sty.js +1 -1
- package/esm/charts/core/components/toolbar/components/ChartDataMenu.sty.js.map +1 -1
- package/esm/charts/core/components/toolbar/components/Control.css +17 -17
- package/esm/charts/core/components/toolbar/components/Control.sty.js +5 -5
- package/esm/charts/core/components/toolbar/components/Control.sty.js.map +1 -1
- package/esm/charts/core/components/toolbar/components/ToolbarMenu.css +4 -4
- package/esm/charts/core/components/toolbar/components/ToolbarMenu.sty.js +2 -2
- package/esm/charts/core/components/toolbar/components/ToolbarMenu.sty.js.map +1 -1
- package/esm/charts/core/components/toolbar/types.js.map +1 -1
- package/esm/charts/core/components/tooltip/ChartTooltip/ChartTooltip.css +6 -6
- package/esm/charts/core/components/tooltip/ChartTooltip/ChartTooltip.sty.js +2 -2
- package/esm/charts/core/components/tooltip/ChartTooltip/ChartTooltip.sty.js.map +1 -1
- package/esm/charts/core/components/tooltip/ChartTooltip/components/ActionItem/ActionItem.css +8 -8
- package/esm/charts/core/components/tooltip/ChartTooltip/components/ActionItem/ActionItem.sty.js +3 -3
- package/esm/charts/core/components/tooltip/ChartTooltip/components/ActionItem/ActionItem.sty.js.map +1 -1
- package/esm/charts/core/components/tooltip/ChartTooltip/components/SeriesItem/SeriesItem.css +2 -2
- package/esm/charts/core/components/tooltip/ChartTooltip/components/SeriesItem/SeriesItem.sty.js +1 -1
- package/esm/charts/core/components/tooltip/ChartTooltip/components/SeriesItem/SeriesItem.sty.js.map +1 -1
- package/esm/charts/core/components/tooltip/ChartTooltip/components/TimeFrameHeader/TimeFrameHeader.css +1 -1
- package/esm/charts/core/components/tooltip/ChartTooltip/components/TimeFrameHeader/TimeFrameHeader.sty.js +1 -1
- package/esm/charts/core/components/tooltip/ChartTooltip/components/TimeFrameHeader/TimeFrameHeader.sty.js.map +1 -1
- package/esm/charts/core/components/tooltip/InteractiveChartTooltip/components/BasicChartTooltip/BasicChartTooltip.css +6 -6
- package/esm/charts/core/components/tooltip/InteractiveChartTooltip/components/BasicChartTooltip/BasicChartTooltip.sty.js +2 -2
- package/esm/charts/core/components/tooltip/InteractiveChartTooltip/components/BasicChartTooltip/BasicChartTooltip.sty.js.map +1 -1
- package/esm/charts/core/components/tooltip/InteractiveChartTooltip/components/InteractiveChartTooltip.css +7 -7
- package/esm/charts/core/components/tooltip/InteractiveChartTooltip/components/InteractiveChartTooltip.sty.js +6 -6
- package/esm/charts/core/components/tooltip/InteractiveChartTooltip/components/InteractiveChartTooltip.sty.js.map +1 -1
- package/esm/charts/core/components/tooltip/InteractiveChartTooltip/headers/HeaderTooltip.css +1 -1
- package/esm/charts/core/components/tooltip/InteractiveChartTooltip/headers/HeaderTooltip.sty.js +1 -1
- package/esm/charts/core/components/tooltip/InteractiveChartTooltip/headers/HeaderTooltip.sty.js.map +1 -1
- package/esm/charts/core/components/tooltip/section-components/TooltipFooter/TooltipFooter.css +1 -1
- package/esm/charts/core/components/tooltip/section-components/TooltipFooter/TooltipFooter.sty.js +1 -1
- package/esm/charts/core/components/tooltip/section-components/TooltipFooter/TooltipFooter.sty.js.map +1 -1
- package/esm/charts/core/components/tooltip/section-components/TooltipHeader/TooltipHeader.css +2 -2
- package/esm/charts/core/components/tooltip/section-components/TooltipHeader/TooltipHeader.sty.js +1 -1
- package/esm/charts/core/components/tooltip/section-components/TooltipHeader/TooltipHeader.sty.js.map +1 -1
- package/esm/charts/core/components/tooltip/section-components/TooltipInfoContent/TooltipInfoContent.css +1 -1
- package/esm/charts/core/components/tooltip/section-components/TooltipInfoContent/TooltipInfoContent.sty.js +1 -1
- package/esm/charts/core/components/tooltip/section-components/TooltipInfoContent/TooltipInfoContent.sty.js.map +1 -1
- package/esm/charts/core/components/tooltip/section-components/TooltipItem/TooltipItem.css +3 -3
- package/esm/charts/core/components/tooltip/section-components/TooltipItem/TooltipItem.sty.js +2 -2
- package/esm/charts/core/components/tooltip/section-components/TooltipItem/TooltipItem.sty.js.map +1 -1
- package/esm/charts/core/components/tooltip/section-components/TooltipSymbolContent/TooltipSymbolContent.css +1 -1
- package/esm/charts/core/components/tooltip/section-components/TooltipSymbolContent/TooltipSymbolContent.sty.js +1 -1
- package/esm/charts/core/components/tooltip/section-components/TooltipSymbolContent/TooltipSymbolContent.sty.js.map +1 -1
- package/esm/charts/core/components/tooltip/section-components/VirtualizedTooltipBody/VirtualizedTooltipBody.css +2 -2
- package/esm/charts/core/components/tooltip/section-components/VirtualizedTooltipBody/VirtualizedTooltipBody.sty.js +2 -2
- package/esm/charts/core/components/tooltip/section-components/VirtualizedTooltipBody/VirtualizedTooltipBody.sty.js.map +1 -1
- package/esm/charts/core/components/tooltip/shared/styles/SeriesBasedContent.css +12 -12
- package/esm/charts/core/components/tooltip/shared/styles/SeriesBasedContent.sty.js +7 -7
- package/esm/charts/core/components/tooltip/shared/styles/SeriesBasedContent.sty.js.map +1 -1
- package/esm/charts/core/components/tooltip/shared/styles/TooltipBody.css +1 -1
- package/esm/charts/core/components/tooltip/shared/styles/TooltipBody.sty.js +1 -1
- package/esm/charts/core/components/tooltip/shared/styles/TooltipBody.sty.js.map +1 -1
- package/esm/charts/core/components/tooltip-atoms/components/HeaderChipAtom/HeaderChipAtom.css +1 -1
- package/esm/charts/core/components/tooltip-atoms/components/HeaderChipAtom/HeaderChipAtom.sty.js +1 -1
- package/esm/charts/core/components/tooltip-atoms/components/HeaderChipAtom/HeaderChipAtom.sty.js.map +1 -1
- package/esm/charts/core/components/tooltip-atoms/components/styles.css +4 -4
- package/esm/charts/core/components/tooltip-atoms/components/styles.sty.js +4 -4
- package/esm/charts/core/components/tooltip-atoms/components/styles.sty.js.map +1 -1
- package/esm/charts/core/components/zoom/ZoomCursors.css +2 -2
- package/esm/charts/core/components/zoom/ZoomCursors.sty.js +3 -3
- package/esm/charts/core/components/zoom/ZoomCursors.sty.js.map +1 -1
- package/esm/charts/core/constants.js +2 -0
- package/esm/charts/core/constants.js.map +2 -2
- package/esm/charts/core/hooks/useOverlayEventHandlers.js +40 -20
- package/esm/charts/core/hooks/useOverlayEventHandlers.js.map +2 -2
- package/esm/charts/core/hooks/usePointerAndScrollResponsiveChartBounds.js +1 -1
- package/esm/charts/core/hooks/usePointerAndScrollResponsiveChartBounds.js.map +2 -2
- package/esm/charts/core/hooks/useThrottledCallbackOnScroll.js.map +1 -1
- package/esm/charts/core/types/chart-data.js +1 -0
- package/esm/charts/core/types/text-size.js +1 -0
- package/esm/charts/core/types/text-size.js.map +7 -0
- package/esm/charts/core/typographyStyles.css +1 -1
- package/esm/charts/core/typographyStyles.sty.js +1 -1
- package/esm/charts/core/typographyStyles.sty.js.map +1 -1
- package/esm/charts/core/utils/formatter-by-ticks.js +1 -1
- package/esm/charts/core/utils/formatter-by-ticks.js.map +2 -2
- package/esm/charts/core/utils/text-measure.js +38 -0
- package/esm/charts/core/utils/text-measure.js.map +7 -0
- package/esm/charts/gantt-chart/GanttChartLine.css +1 -1
- package/esm/charts/gantt-chart/GanttChartLine.sty.js +1 -1
- package/esm/charts/gantt-chart/GanttChartLine.sty.js.map +1 -1
- package/esm/charts/gantt-chart/components/GanttChartLineRenderer.css +1 -1
- package/esm/charts/gantt-chart/components/GanttChartLineRenderer.js +1 -2
- package/esm/charts/gantt-chart/components/GanttChartLineRenderer.js.map +2 -2
- package/esm/charts/gantt-chart/components/GanttChartLineRenderer.sty.js +1 -1
- package/esm/charts/gantt-chart/components/GanttChartLineRenderer.sty.js.map +1 -1
- package/esm/charts/gantt-chart/components/tooltip/GanttChartTooltip.css +1 -1
- package/esm/charts/gantt-chart/components/tooltip/GanttChartTooltip.sty.js +1 -1
- package/esm/charts/gantt-chart/components/tooltip/GanttChartTooltip.sty.js.map +1 -1
- package/esm/charts/gauge/components/GaugeChartLayout/GaugeChartLayout.css +1 -1
- package/esm/charts/gauge/components/GaugeChartLayout/GaugeChartLayout.sty.js +1 -1
- package/esm/charts/gauge/components/GaugeChartLayout/GaugeChartLayout.sty.js.map +1 -1
- package/esm/charts/gauge/components/GaugeChartLayout/GaugeChartToolbar.js +2 -2
- package/esm/charts/gauge/components/GaugeChartLayout/GaugeChartToolbar.js.map +2 -2
- package/esm/charts/gauge/components/GaugeLabel/GaugeLabel.css +6 -6
- package/esm/charts/gauge/components/GaugeLabel/GaugeLabel.sty.js +3 -3
- package/esm/charts/gauge/components/GaugeLabel/GaugeLabel.sty.js.map +1 -1
- package/esm/charts/gauge/components/GaugeLabelsWrapper/GaugeLabelsWrapper.css +3 -3
- package/esm/charts/gauge/components/GaugeLabelsWrapper/GaugeLabelsWrapper.sty.js +1 -1
- package/esm/charts/gauge/components/GaugeLabelsWrapper/GaugeLabelsWrapper.sty.js.map +1 -1
- package/esm/charts/gauge/components/GaugeLayoutOverlay/GaugeLayoutOverlay.css +4 -4
- package/esm/charts/gauge/components/GaugeLayoutOverlay/GaugeLayoutOverlay.js +29 -2
- package/esm/charts/gauge/components/GaugeLayoutOverlay/GaugeLayoutOverlay.js.map +2 -2
- package/esm/charts/gauge/components/GaugeLayoutOverlay/GaugeLayoutOverlay.sty.js +3 -3
- package/esm/charts/gauge/components/GaugeLayoutOverlay/GaugeLayoutOverlay.sty.js.map +1 -1
- package/esm/charts/gauge/components/GaugeResponsiveLabel/GaugeResponsiveLabel.css +2 -2
- package/esm/charts/gauge/components/GaugeResponsiveLabel/GaugeResponsiveLabel.sty.js +2 -2
- package/esm/charts/gauge/components/GaugeResponsiveLabel/GaugeResponsiveLabel.sty.js.map +1 -1
- package/esm/charts/histogram/HistogramChart.js +4 -5
- package/esm/charts/histogram/HistogramChart.js.map +2 -2
- package/esm/charts/histogram/HistogramChartInternal.js +20 -8
- package/esm/charts/histogram/HistogramChartInternal.js.map +2 -2
- package/esm/charts/histogram/components/axes/HistogramValueBottomAxisArea/HistogramValueBottomAxisArea.css +1 -1
- package/esm/charts/histogram/components/axes/HistogramValueBottomAxisArea/HistogramValueBottomAxisArea.sty.js +1 -1
- package/esm/charts/histogram/components/axes/HistogramValueBottomAxisArea/HistogramValueBottomAxisArea.sty.js.map +1 -1
- package/esm/charts/histogram/components/overlays/HistogramExplore/HistogramTooltip.css +1 -1
- package/esm/charts/histogram/components/overlays/HistogramExplore/HistogramTooltip.sty.js +1 -1
- package/esm/charts/histogram/components/overlays/HistogramExplore/HistogramTooltip.sty.js.map +1 -1
- package/esm/charts/histogram/components/overlays/HistogramOverlays.css +2 -2
- package/esm/charts/histogram/components/overlays/HistogramOverlays.sty.js +2 -2
- package/esm/charts/histogram/components/overlays/HistogramOverlays.sty.js.map +1 -1
- package/esm/charts/honeycomb/HoneycombChart.css +1 -1
- package/esm/charts/honeycomb/HoneycombChart.js +6 -3
- package/esm/charts/honeycomb/HoneycombChart.js.map +2 -2
- package/esm/charts/honeycomb/HoneycombChart.sty.js +1 -1
- package/esm/charts/honeycomb/HoneycombChart.sty.js.map +1 -1
- package/esm/charts/honeycomb/components/HiveOverlay.css +1 -1
- package/esm/charts/honeycomb/components/HiveOverlay.js +2 -10
- package/esm/charts/honeycomb/components/HiveOverlay.js.map +2 -2
- package/esm/charts/honeycomb/components/HiveOverlay.sty.js +1 -1
- package/esm/charts/honeycomb/components/HiveOverlay.sty.js.map +1 -1
- package/esm/charts/honeycomb/components/canvas/HiveCanvasLayout.css +1 -1
- package/esm/charts/honeycomb/components/canvas/HiveCanvasLayout.sty.js +1 -1
- package/esm/charts/honeycomb/components/canvas/HiveCanvasLayout.sty.js.map +1 -1
- package/esm/charts/honeycomb/components/canvas/renderers/CanvasCircleRenderer.js +7 -2
- package/esm/charts/honeycomb/components/canvas/renderers/CanvasCircleRenderer.js.map +2 -2
- package/esm/charts/honeycomb/components/canvas/renderers/CanvasHexagonRenderer.js +9 -5
- package/esm/charts/honeycomb/components/canvas/renderers/CanvasHexagonRenderer.js.map +2 -2
- package/esm/charts/honeycomb/components/canvas/renderers/CanvasSquareRenderer.js +7 -2
- package/esm/charts/honeycomb/components/canvas/renderers/CanvasSquareRenderer.js.map +2 -2
- package/esm/charts/honeycomb/components/canvas/utils/draw-label-and-value.js +108 -21
- package/esm/charts/honeycomb/components/canvas/utils/draw-label-and-value.js.map +2 -2
- package/esm/charts/honeycomb/components/canvas/utils/get-font-sizes.js +39 -0
- package/esm/charts/honeycomb/components/canvas/utils/get-font-sizes.js.map +7 -0
- package/esm/charts/honeycomb/components/canvas/utils/get-truncation-method.js +82 -9
- package/esm/charts/honeycomb/components/canvas/utils/get-truncation-method.js.map +2 -2
- package/esm/charts/honeycomb/components/canvas/utils/measure-node-text-content.js +13 -16
- package/esm/charts/honeycomb/components/canvas/utils/measure-node-text-content.js.map +2 -2
- package/esm/charts/honeycomb/components/canvas/utils/render-text-to-canvas.js +2 -2
- package/esm/charts/honeycomb/components/canvas/utils/render-text-to-canvas.js.map +2 -2
- package/esm/charts/honeycomb/components/canvas/utils/set-font-details-to-context.js +11 -9
- package/esm/charts/honeycomb/components/canvas/utils/set-font-details-to-context.js.map +2 -2
- package/esm/charts/honeycomb/components/toolbar/HoneycombToolbar.js +1 -3
- package/esm/charts/honeycomb/components/toolbar/HoneycombToolbar.js.map +2 -2
- package/esm/charts/honeycomb/constants.js +17 -13
- package/esm/charts/honeycomb/constants.js.map +2 -2
- package/esm/charts/honeycomb/context/honeycomb-color-scheme.context.js.map +1 -1
- package/esm/charts/honeycomb/context/honeycomb-filtered-color-scheme.context.js.map +1 -1
- package/esm/charts/honeycomb/context/honeycomb-text-size.context.js +9 -0
- package/esm/charts/honeycomb/context/honeycomb-text-size.context.js.map +7 -0
- package/esm/charts/honeycomb/hooks/use-honeycomb-chart-config.js +6 -1
- package/esm/charts/honeycomb/hooks/use-honeycomb-chart-config.js.map +2 -2
- package/esm/charts/honeycomb/hooks/use-honeycomb-text-size.js +7 -0
- package/esm/charts/honeycomb/hooks/use-honeycomb-text-size.js.map +7 -0
- package/esm/charts/honeycomb/hooks/use-overlay-events.js +7 -8
- package/esm/charts/honeycomb/hooks/use-overlay-events.js.map +2 -2
- package/esm/charts/honeycomb/providers/honeycomb-base-scale.provider.js.map +2 -2
- package/esm/charts/honeycomb/store/selectors.js +0 -2
- package/esm/charts/honeycomb/store/selectors.js.map +2 -2
- package/esm/charts/honeycomb/store/store.js +0 -13
- package/esm/charts/honeycomb/store/store.js.map +2 -2
- package/esm/charts/honeycomb/types/state.js +0 -3
- package/esm/charts/honeycomb/types/state.js.map +2 -2
- package/esm/charts/honeycomb/utils/build-honeycomb-config.js +19 -5
- package/esm/charts/honeycomb/utils/build-honeycomb-config.js.map +2 -2
- package/esm/charts/honeycomb/utils/normalize-honeycomb-chart-data.js +21 -0
- package/esm/charts/honeycomb/utils/normalize-honeycomb-chart-data.js.map +7 -0
- package/esm/charts/index.js.map +2 -2
- package/esm/charts/meter-bar/shared/components/meter-bar-layout/MeterBarLayout.css +15 -15
- package/esm/charts/meter-bar/shared/components/meter-bar-layout/MeterBarLayout.sty.js +10 -10
- package/esm/charts/meter-bar/shared/components/meter-bar-layout/MeterBarLayout.sty.js.map +1 -1
- package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Icon/Icon.css +2 -2
- package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Icon/Icon.sty.js +1 -1
- package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Icon/Icon.sty.js.map +1 -1
- package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Label/Label.css +1 -1
- package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Label/Label.sty.js +1 -1
- package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Label/Label.sty.js.map +1 -1
- package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Max/Max.css +1 -1
- package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Max/Max.sty.js +1 -1
- package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Max/Max.sty.js.map +1 -1
- package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Min/Min.css +1 -1
- package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Min/Min.sty.js +1 -1
- package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Min/Min.sty.js.map +1 -1
- package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Value/Value.css +1 -1
- package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Value/Value.sty.js +1 -1
- package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Value/Value.sty.js.map +1 -1
- package/esm/charts/meter-bar/shared/components/meter-bar-plot/MeterBarPlot.css +1 -1
- package/esm/charts/meter-bar/shared/components/meter-bar-plot/MeterBarPlot.sty.js +1 -1
- package/esm/charts/meter-bar/shared/components/meter-bar-plot/MeterBarPlot.sty.js.map +1 -1
- package/esm/charts/meter-bar/shared/styles/element-size.css +4 -4
- package/esm/charts/meter-bar/shared/styles/element-size.sty.js +1 -1
- package/esm/charts/meter-bar/shared/styles/element-size.sty.js.map +1 -1
- package/esm/charts/meter-bar/shared/styles.css +1 -1
- package/esm/charts/meter-bar/shared/styles.sty.js +1 -1
- package/esm/charts/meter-bar/shared/styles.sty.js.map +1 -1
- package/esm/charts/meter-bar/single-meter-bar/components/MeterBarChartThresholds/MeterBarChartThresholds.css +1 -1
- package/esm/charts/meter-bar/single-meter-bar/components/MeterBarChartThresholds/MeterBarChartThresholds.sty.js +1 -1
- package/esm/charts/meter-bar/single-meter-bar/components/MeterBarChartThresholds/MeterBarChartThresholds.sty.js.map +1 -1
- package/esm/charts/pie/DonutChart.js +5 -12
- package/esm/charts/pie/DonutChart.js.map +2 -2
- package/esm/charts/pie/PieChart.js +7 -14
- package/esm/charts/pie/PieChart.js.map +2 -2
- package/esm/charts/pie/components/InnerWrapper/components/InnerContainer/InnerContainer.css +1 -1
- package/esm/charts/pie/components/InnerWrapper/components/InnerContainer/InnerContainer.sty.js +1 -1
- package/esm/charts/pie/components/InnerWrapper/components/InnerContainer/InnerContainer.sty.js.map +1 -1
- package/esm/charts/pie/components/InnerWrapper/components/InnerDonut/InnerDonut.css +1 -1
- package/esm/charts/pie/components/InnerWrapper/components/InnerDonut/InnerDonut.sty.js +1 -1
- package/esm/charts/pie/components/InnerWrapper/components/InnerDonut/InnerDonut.sty.js.map +1 -1
- package/esm/charts/pie/components/PieChartOverlays/PieChartOverlays.css +1 -1
- package/esm/charts/pie/components/PieChartOverlays/PieChartOverlays.js +3 -3
- package/esm/charts/pie/components/PieChartOverlays/PieChartOverlays.js.map +2 -2
- package/esm/charts/pie/components/PieChartOverlays/PieChartOverlays.sty.js +1 -1
- package/esm/charts/pie/components/PieChartOverlays/PieChartOverlays.sty.js.map +1 -1
- package/esm/charts/pie/components/PieChartPlot/PieChartPlot.css +1 -1
- package/esm/charts/pie/components/PieChartPlot/PieChartPlot.js +65 -56
- package/esm/charts/pie/components/PieChartPlot/PieChartPlot.js.map +3 -3
- package/esm/charts/pie/components/PieChartPlot/PieChartPlot.sty.js +1 -1
- package/esm/charts/pie/components/PieChartPlot/PieChartPlot.sty.js.map +1 -1
- package/esm/charts/pie/components/PieChartSlice.js +15 -11
- package/esm/charts/pie/components/PieChartSlice.js.map +2 -2
- package/esm/charts/pie/constants.js +2 -0
- package/esm/charts/pie/constants.js.map +2 -2
- package/esm/charts/pie/context/ChartConfigContext.js.map +2 -2
- package/esm/charts/pie/context/PieChartRawDataContext.js.map +2 -2
- package/esm/charts/pie/hooks/useNormalizedPieData.js +20 -0
- package/esm/charts/pie/hooks/useNormalizedPieData.js.map +7 -0
- package/esm/charts/pie/hooks/useOverlayHandlers.js +7 -5
- package/esm/charts/pie/hooks/useOverlayHandlers.js.map +2 -2
- package/esm/charts/pie/hooks/useSliceHandlers.js +29 -3
- package/esm/charts/pie/hooks/useSliceHandlers.js.map +2 -2
- package/esm/charts/pie/providers/ChartProviders.js.map +2 -2
- package/esm/charts/pie/types/pie-chart.config.js.map +2 -2
- package/esm/charts/pie/utils/build-and-download-csv.js.map +2 -2
- package/esm/charts/pie/utils/build-group-threshold.js.map +2 -2
- package/esm/charts/pie/utils/build-slices.js.map +2 -2
- package/esm/charts/pie/utils/format-csv.js.map +2 -2
- package/esm/charts/pie/utils/group-slices-thinner-than-pad-angle.js +2 -1
- package/esm/charts/pie/utils/group-slices-thinner-than-pad-angle.js.map +2 -2
- package/esm/charts/pie/utils/normalize-pie-data.js +20 -0
- package/esm/charts/pie/utils/normalize-pie-data.js.map +7 -0
- package/esm/charts/pie/utils/pie-config.js +2 -1
- package/esm/charts/pie/utils/pie-config.js.map +2 -2
- package/esm/charts/pie/utils/sanitize-toolbar-intents.js +12 -0
- package/esm/charts/pie/utils/sanitize-toolbar-intents.js.map +7 -0
- package/esm/charts/single-value/SingleValue.css +1 -1
- package/esm/charts/single-value/SingleValue.sty.js +1 -1
- package/esm/charts/single-value/SingleValue.sty.js.map +1 -1
- package/esm/charts/single-value-grid/SingleValueGrid.css +2 -2
- package/esm/charts/single-value-grid/SingleValueGrid.sty.js +1 -1
- package/esm/charts/single-value-grid/SingleValueGrid.sty.js.map +1 -1
- package/esm/charts/single-value-grid/components/GlobalFontSizeVariables.css +1 -1
- package/esm/charts/single-value-grid/components/GlobalFontSizeVariables.sty.js +1 -1
- package/esm/charts/single-value-grid/components/GlobalFontSizeVariables.sty.js.map +1 -1
- package/esm/charts/timeseries/TimeseriesChart.js.map +2 -2
- package/esm/charts/timeseries/TimeseriesChartInternal.js +39 -17
- package/esm/charts/timeseries/TimeseriesChartInternal.js.map +2 -2
- package/esm/charts/timeseries/components/axes/TimeseriesTimeBottomAxisArea/TimeseriesTimeBottomAxisArea.css +2 -2
- package/esm/charts/timeseries/components/axes/TimeseriesTimeBottomAxisArea/TimeseriesTimeBottomAxisArea.sty.js +1 -1
- package/esm/charts/timeseries/components/axes/TimeseriesTimeBottomAxisArea/TimeseriesTimeBottomAxisArea.sty.js.map +1 -1
- package/esm/charts/timeseries/components/overlays/TimeseriesOverlays.css +4 -4
- package/esm/charts/timeseries/components/overlays/TimeseriesOverlays.sty.js +4 -4
- package/esm/charts/timeseries/components/overlays/TimeseriesOverlays.sty.js.map +1 -1
- package/esm/charts/timeseries/components/thresholds/ThresholdIndicators.css +2 -2
- package/esm/charts/timeseries/components/thresholds/ThresholdIndicators.sty.js +2 -2
- package/esm/charts/timeseries/components/thresholds/ThresholdIndicators.sty.js.map +1 -1
- package/esm/charts/top-list/TopList.css +1 -1
- package/esm/charts/top-list/TopList.js +11 -7
- package/esm/charts/top-list/TopList.js.map +2 -2
- package/esm/charts/top-list/TopList.sty.js +1 -1
- package/esm/charts/top-list/TopList.sty.js.map +1 -1
- package/esm/charts/top-list/constants.js +2 -1
- package/esm/charts/top-list/constants.js.map +2 -2
- package/esm/charts/tree-map/TreeMap.js +10 -1
- package/esm/charts/tree-map/TreeMap.js.map +2 -2
- package/esm/charts/tree-map/components/TreeMapChartLayout.js +4 -4
- package/esm/charts/tree-map/components/TreeMapChartLayout.js.map +2 -2
- package/esm/charts/tree-map/components/TreeMapLegend/TreeMapCategoricalLegend.js +3 -1
- package/esm/charts/tree-map/components/TreeMapLegend/TreeMapCategoricalLegend.js.map +2 -2
- package/esm/charts/tree-map/components/TreeMapOverlay/TreeMapOverlay.css +1 -1
- package/esm/charts/tree-map/components/TreeMapOverlay/TreeMapOverlay.js +2 -10
- package/esm/charts/tree-map/components/TreeMapOverlay/TreeMapOverlay.js.map +2 -2
- package/esm/charts/tree-map/components/TreeMapOverlay/TreeMapOverlay.sty.js +1 -1
- package/esm/charts/tree-map/components/TreeMapOverlay/TreeMapOverlay.sty.js.map +1 -1
- package/esm/charts/tree-map/components/TreeMapToolbar/TreeMapToolbar.js +2 -4
- package/esm/charts/tree-map/components/TreeMapToolbar/TreeMapToolbar.js.map +2 -2
- package/esm/charts/tree-map/components/canvas/TreeMapSquareRenderer.js +5 -2
- package/esm/charts/tree-map/components/canvas/TreeMapSquareRenderer.js.map +2 -2
- package/esm/charts/tree-map/constants.js +1 -2
- package/esm/charts/tree-map/constants.js.map +2 -2
- package/esm/charts/tree-map/context/TextSizeContext.js.map +2 -2
- package/esm/charts/tree-map/hooks/useOverlayHandlers.js +7 -8
- package/esm/charts/tree-map/hooks/useOverlayHandlers.js.map +2 -2
- package/esm/charts/tree-map/hooks/useTreeMapChartConfig.js.map +2 -2
- package/esm/charts/tree-map/hooks/useTreeMapChartHandlers.js +4 -1
- package/esm/charts/tree-map/hooks/useTreeMapChartHandlers.js.map +2 -2
- package/esm/charts/tree-map/providers/TreeMapChartProviders.js +1 -1
- package/esm/charts/tree-map/providers/TreeMapChartProviders.js.map +2 -2
- package/esm/charts/tree-map/store/selectors.js +1 -3
- package/esm/charts/tree-map/store/selectors.js.map +2 -2
- package/esm/charts/tree-map/store/store.js +0 -3
- package/esm/charts/tree-map/store/store.js.map +2 -2
- package/esm/charts/tree-map/utils/build-labels.js.map +2 -2
- package/esm/charts/tree-map/utils/build-tree-map-chart-config.js.map +2 -2
- package/esm/charts/tree-map/utils/get-legend-interaction-props.js +2 -2
- package/esm/charts/tree-map/utils/get-legend-interaction-props.js.map +2 -2
- package/esm/charts/tree-map/utils/to-hierarchical-props.js +88 -0
- package/esm/charts/tree-map/utils/to-hierarchical-props.js.map +7 -0
- package/esm/charts/xy-chart/XYChart.js +25 -12
- package/esm/charts/xy-chart/XYChart.js.map +2 -2
- package/esm/charts/xy-chart/XYChartRoot.js +4 -2
- package/esm/charts/xy-chart/XYChartRoot.js.map +2 -2
- package/esm/charts/xy-chart/components/axes/AxisArea.css +1 -1
- package/esm/charts/xy-chart/components/axes/AxisArea.sty.js +1 -1
- package/esm/charts/xy-chart/components/axes/AxisArea.sty.js.map +1 -1
- package/esm/charts/xy-chart/components/axes/AxisTickWithTruncation.css +3 -3
- package/esm/charts/xy-chart/components/axes/AxisTickWithTruncation.sty.js +3 -3
- package/esm/charts/xy-chart/components/axes/AxisTickWithTruncation.sty.js.map +1 -1
- package/esm/charts/xy-chart/components/axes/XTickWithTruncation.js.map +2 -2
- package/esm/charts/xy-chart/components/axes/XYChartLeftAxisArea.js +6 -2
- package/esm/charts/xy-chart/components/axes/XYChartLeftAxisArea.js.map +2 -2
- package/esm/charts/xy-chart/components/axes/XYChartRightAxisArea.js +6 -2
- package/esm/charts/xy-chart/components/axes/XYChartRightAxisArea.js.map +2 -2
- package/esm/charts/xy-chart/components/axes/YTickWithTruncation.js.map +2 -2
- package/esm/charts/xy-chart/components/axes/hooks/useXTickOffset.js.map +2 -2
- package/esm/charts/xy-chart/components/axes/hooks/useYTickOffset.js.map +2 -2
- package/esm/charts/xy-chart/components/displays/BarDisplay/BarLabelOverlay.css +3 -3
- package/esm/charts/xy-chart/components/displays/BarDisplay/BarLabelOverlay.sty.js +3 -3
- package/esm/charts/xy-chart/components/displays/BarDisplay/BarLabelOverlay.sty.js.map +1 -1
- package/esm/charts/xy-chart/components/legend/XYLegend/xy-legend.css +1 -1
- package/esm/charts/xy-chart/components/legend/XYLegend/xy-legend.sty.js +1 -1
- package/esm/charts/xy-chart/components/legend/XYLegend/xy-legend.sty.js.map +1 -1
- package/esm/charts/xy-chart/components/overlay/explore/HighlightedPointCanvas.js +32 -6
- package/esm/charts/xy-chart/components/overlay/explore/HighlightedPointCanvas.js.map +2 -2
- package/esm/charts/xy-chart/components/overlay/explore/XYChartCrosshair.css +1 -1
- package/esm/charts/xy-chart/components/overlay/explore/XYChartCrosshair.sty.js +1 -1
- package/esm/charts/xy-chart/components/overlay/explore/XYChartCrosshair.sty.js.map +1 -1
- package/esm/charts/xy-chart/components/overlay/explore/XYChartExplore.css +2 -2
- package/esm/charts/xy-chart/components/overlay/explore/XYChartExplore.sty.js +2 -2
- package/esm/charts/xy-chart/components/overlay/explore/XYChartExplore.sty.js.map +1 -1
- package/esm/charts/xy-chart/components/overlay/explore/XYChartLinearPoint.js +12 -6
- package/esm/charts/xy-chart/components/overlay/explore/XYChartLinearPoint.js.map +2 -2
- package/esm/charts/xy-chart/components/overlay/hooks/useOverlayEvents.js +4 -0
- package/esm/charts/xy-chart/components/overlay/hooks/useOverlayEvents.js.map +2 -2
- package/esm/charts/xy-chart/components/overlay/utils/draw-shape.js +19 -0
- package/esm/charts/xy-chart/components/overlay/utils/draw-shape.js.map +2 -2
- package/esm/charts/xy-chart/components/thresholds/XYChartThresholdIndicators.css +1 -1
- package/esm/charts/xy-chart/components/thresholds/XYChartThresholdIndicators.sty.js +1 -1
- package/esm/charts/xy-chart/components/thresholds/XYChartThresholdIndicators.sty.js.map +1 -1
- package/esm/charts/xy-chart/components/tooltip/HoveredPointTooltip/hooks/getHoveredPointTooltipBodyContent.js +2 -2
- package/esm/charts/xy-chart/components/tooltip/HoveredPointTooltip/hooks/getHoveredPointTooltipBodyContent.js.map +2 -2
- package/esm/charts/xy-chart/components/tooltip/SharedXYChartTooltip/SharedXYChartTooltip.js +23 -22
- package/esm/charts/xy-chart/components/tooltip/SharedXYChartTooltip/SharedXYChartTooltip.js.map +2 -2
- package/esm/charts/xy-chart/components/tooltip/utils/get-cached-separator.js +15 -0
- package/esm/charts/xy-chart/components/tooltip/utils/get-cached-separator.js.map +7 -0
- package/esm/charts/xy-chart/components/tooltip/utils/get-tooltip-formatter.js +4 -2
- package/esm/charts/xy-chart/components/tooltip/utils/get-tooltip-formatter.js.map +2 -2
- package/esm/charts/xy-chart/components/tooltip/utils/tooltip-styles.css +5 -5
- package/esm/charts/xy-chart/components/tooltip/utils/tooltip-styles.sty.js +4 -4
- package/esm/charts/xy-chart/components/tooltip/utils/tooltip-styles.sty.js.map +1 -1
- package/esm/charts/xy-chart/constants/defaults.js +2 -0
- package/esm/charts/xy-chart/constants/defaults.js.map +2 -2
- package/esm/charts/xy-chart/context/XYChartOverlayPerformance.context.js.map +2 -2
- package/esm/charts/xy-chart/hooks/useBuildHoverGrid.js +38 -0
- package/esm/charts/xy-chart/hooks/useBuildHoverGrid.js.map +7 -0
- package/esm/charts/xy-chart/hooks/useBuildOverlayStrategy.js +88 -0
- package/esm/charts/xy-chart/hooks/useBuildOverlayStrategy.js.map +7 -0
- package/esm/charts/xy-chart/hooks/useXYChartDataProvider.js +10 -3
- package/esm/charts/xy-chart/hooks/useXYChartDataProvider.js.map +3 -3
- package/esm/charts/xy-chart/layout/XYChartLayout.css +2 -2
- package/esm/charts/xy-chart/layout/XYChartLayout.sty.js +2 -2
- package/esm/charts/xy-chart/layout/XYChartLayout.sty.js.map +1 -1
- package/esm/charts/xy-chart/providers/XYChartAnnotationsShownIndicatorsProvider.js +7 -9
- package/esm/charts/xy-chart/providers/XYChartAnnotationsShownIndicatorsProvider.js.map +2 -2
- package/esm/charts/xy-chart/providers/XYChartAxesTicksProvider.js +41 -24
- package/esm/charts/xy-chart/providers/XYChartAxesTicksProvider.js.map +2 -2
- package/esm/charts/xy-chart/providers/XYChartOverlayPerformanceProvider.js +16 -61
- package/esm/charts/xy-chart/providers/XYChartOverlayPerformanceProvider.js.map +2 -2
- package/esm/charts/xy-chart/providers/XYChartScalesProvider.js +9 -2
- package/esm/charts/xy-chart/providers/XYChartScalesProvider.js.map +2 -2
- package/esm/charts/xy-chart/utils/build-axis-id-to-min-bar-size.js +28 -0
- package/esm/charts/xy-chart/utils/build-axis-id-to-min-bar-size.js.map +7 -0
- package/esm/charts/xy-chart/utils/build-sorted-entries.js +63 -10
- package/esm/charts/xy-chart/utils/build-sorted-entries.js.map +2 -2
- package/esm/charts/xy-chart/utils/filter-out-of-range-ticks.js +28 -0
- package/esm/charts/xy-chart/utils/filter-out-of-range-ticks.js.map +7 -0
- package/esm/charts/xy-chart/utils/generate-scales-by-axis-id.js +19 -3
- package/esm/charts/xy-chart/utils/generate-scales-by-axis-id.js.map +2 -2
- package/esm/charts/xy-chart/utils/get-ticks-formatted-by-config.js +11 -0
- package/esm/charts/xy-chart/utils/get-ticks-formatted-by-config.js.map +2 -2
- package/esm/charts/xy-chart/utils/query-hovered-grid.js +176 -0
- package/esm/charts/xy-chart/utils/query-hovered-grid.js.map +7 -0
- package/esm/charts/xy-chart/utils/query-shared.js +53 -23
- package/esm/charts/xy-chart/utils/query-shared.js.map +2 -2
- package/esm/charts/xy-chart-adoption/histogram/HistogramToXY.js +11 -50
- package/esm/charts/xy-chart-adoption/histogram/HistogramToXY.js.map +2 -2
- package/esm/charts/xy-chart-adoption/histogram/transformer-annotations-to-xy.js +3 -18
- package/esm/charts/xy-chart-adoption/histogram/transformer-annotations-to-xy.js.map +3 -3
- package/esm/charts/xy-chart-adoption/shared/types/legacy-props.js +1 -0
- package/esm/charts/xy-chart-adoption/shared/types/legacy-props.js.map +7 -0
- package/esm/charts/xy-chart-adoption/shared/types/props.js.map +7 -0
- package/esm/charts/xy-chart-adoption/shared/utils/render-xy-annotations.js +70 -0
- package/esm/charts/xy-chart-adoption/shared/utils/render-xy-annotations.js.map +7 -0
- package/esm/charts/xy-chart-adoption/timeseries/TimeseriesToXY.js +81 -27
- package/esm/charts/xy-chart-adoption/timeseries/TimeseriesToXY.js.map +2 -2
- package/esm/charts/xy-chart-adoption/timeseries/iterate-slots.js +36 -1
- package/esm/charts/xy-chart-adoption/timeseries/iterate-slots.js.map +2 -2
- package/esm/charts/xy-chart-adoption/timeseries/resolve-value-representation.js +7 -0
- package/esm/charts/xy-chart-adoption/timeseries/resolve-value-representation.js.map +7 -0
- package/esm/charts/xy-chart-adoption/timeseries/transformer-annotations-to-xy.js +35 -0
- package/esm/charts/xy-chart-adoption/timeseries/transformer-annotations-to-xy.js.map +7 -0
- package/esm/charts/xy-chart-adoption/timeseries/transformer-data-to-xy.js +7 -6
- package/esm/charts/xy-chart-adoption/timeseries/transformer-data-to-xy.js.map +2 -2
- package/esm/charts/xy-chart-adoption/timeseries/types/timeseries.js.map +2 -2
- package/esm/charts/xy-chart-adoption/timeseries/utils/build-buckets.js +60 -0
- package/esm/charts/xy-chart-adoption/timeseries/utils/build-buckets.js.map +7 -0
- package/esm/charts/xy-chart-adoption/timeseries/utils/collect-annotations-slots.js +58 -0
- package/esm/charts/xy-chart-adoption/timeseries/utils/collect-annotations-slots.js.map +7 -0
- package/esm/charts/xy-chart-adoption/timeseries/utils/map-axis-slots.js +43 -0
- package/esm/charts/xy-chart-adoption/timeseries/utils/map-axis-slots.js.map +7 -0
- package/esm/charts/xy-chart-adoption/timeseries/utils/render-series.js +6 -0
- package/esm/charts/xy-chart-adoption/timeseries/utils/render-series.js.map +2 -2
- package/esm/charts/xy-chart-adoption/timeseries/utils/resolve-gap-policy.js +16 -0
- package/esm/charts/xy-chart-adoption/timeseries/utils/resolve-gap-policy.js.map +7 -0
- package/esm/content/accordion/Accordion.css +14 -14
- package/esm/content/accordion/Accordion.sty.js +8 -8
- package/esm/content/accordion/Accordion.sty.js.map +1 -1
- package/esm/content/ai-loading-indicator/AiLoadingIndicator.css +12 -12
- package/esm/content/ai-loading-indicator/AiLoadingIndicator.sty.js +4 -4
- package/esm/content/ai-loading-indicator/AiLoadingIndicator.sty.js.map +1 -1
- package/esm/content/ai-response/AiResponse.css +5 -5
- package/esm/content/ai-response/AiResponse.sty.js +3 -2
- package/esm/content/ai-response/AiResponse.sty.js.map +2 -2
- package/esm/content/avatar/Avatar.css +13 -13
- package/esm/content/avatar/Avatar.sty.js +4 -4
- package/esm/content/avatar/Avatar.sty.js.map +1 -1
- package/esm/content/avatar-group/AvatarGroup.css +3 -3
- package/esm/content/avatar-group/AvatarGroup.sty.js +2 -2
- package/esm/content/avatar-group/AvatarGroup.sty.js.map +1 -1
- package/esm/content/chip/BaseChip.css +40 -40
- package/esm/content/chip/BaseChip.sty.js +5 -5
- package/esm/content/chip/BaseChip.sty.js.map +1 -1
- package/esm/content/chip/ChipContent.css +11 -11
- package/esm/content/chip/ChipContent.sty.js +2 -2
- package/esm/content/chip/ChipContent.sty.js.map +1 -1
- package/esm/content/chip/ChipDeleteButton.css +19 -19
- package/esm/content/chip/ChipDeleteButton.sty.js +4 -4
- package/esm/content/chip/ChipDeleteButton.sty.js.map +1 -1
- package/esm/content/chip/ChipKey.css +6 -6
- package/esm/content/chip/ChipKey.sty.js +1 -1
- package/esm/content/chip/ChipKey.sty.js.map +1 -1
- package/esm/content/chip/GroupedChip.css +3 -3
- package/esm/content/chip/GroupedChip.sty.js +3 -3
- package/esm/content/chip/GroupedChip.sty.js.map +1 -1
- package/esm/content/chip-group/ChipGroup.css +4 -4
- package/esm/content/chip-group/ChipGroup.js +36 -49
- package/esm/content/chip-group/ChipGroup.js.map +2 -2
- package/esm/content/chip-group/ChipGroup.sty.js +1 -1
- package/esm/content/chip-group/ChipGroup.sty.js.map +1 -1
- package/esm/content/chip-group/Control.css +4 -4
- package/esm/content/chip-group/Control.sty.js +1 -1
- package/esm/content/chip-group/Control.sty.js.map +1 -1
- package/esm/content/chip-group/chip-group-utils.js +34 -0
- package/esm/content/chip-group/chip-group-utils.js.map +7 -0
- package/esm/content/chip-group/state/chip-group-state-reducer.js.map +1 -1
- package/esm/content/code-snippet/CodeHighlight.css +25 -26
- package/esm/content/code-snippet/CodeHighlight.sty.js +10 -6
- package/esm/content/code-snippet/CodeHighlight.sty.js.map +2 -2
- package/esm/content/code-snippet/CodeSnippet.css +31 -5
- package/esm/content/code-snippet/CodeSnippet.js +6 -2
- package/esm/content/code-snippet/CodeSnippet.js.map +2 -2
- package/esm/content/code-snippet/CodeSnippet.sty.js +8 -3
- package/esm/content/code-snippet/CodeSnippet.sty.js.map +2 -2
- package/esm/content/empty-state/EmptyState.css +28 -28
- package/esm/content/empty-state/EmptyState.sty.js +7 -7
- package/esm/content/empty-state/EmptyState.sty.js.map +1 -1
- package/esm/content/empty-state/empty-state-utils.js +2 -9
- package/esm/content/empty-state/empty-state-utils.js.map +2 -2
- package/esm/content/empty-state/slot-components/Footer.css +1 -1
- package/esm/content/empty-state/slot-components/Footer.sty.js +1 -1
- package/esm/content/empty-state/slot-components/Footer.sty.js.map +1 -1
- package/esm/content/empty-state/slot-components/Visual.css +3 -3
- package/esm/content/empty-state/slot-components/Visual.sty.js +1 -1
- package/esm/content/empty-state/slot-components/Visual.sty.js.map +1 -1
- package/esm/content/expandable-text/ExpandableText.css +7 -7
- package/esm/content/expandable-text/ExpandableText.sty.js +2 -2
- package/esm/content/expandable-text/ExpandableText.sty.js.map +1 -1
- package/esm/content/feature-highlight/FeatureHighlight.css +12 -12
- package/esm/content/feature-highlight/FeatureHighlight.js +9 -5
- package/esm/content/feature-highlight/FeatureHighlight.js.map +2 -2
- package/esm/content/feature-highlight/FeatureHighlight.sty.js +3 -3
- package/esm/content/feature-highlight/FeatureHighlight.sty.js.map +1 -1
- package/esm/content/health-indicator/styles.css +23 -23
- package/esm/content/health-indicator/styles.sty.js +1 -1
- package/esm/content/health-indicator/styles.sty.js.map +1 -1
- package/esm/content/index.js.map +2 -2
- package/esm/content/information-overlay/InformationOverlay.css +25 -25
- package/esm/content/information-overlay/InformationOverlay.sty.js +5 -5
- package/esm/content/information-overlay/InformationOverlay.sty.js.map +1 -1
- package/esm/content/keyboard-shortcut/KeyboardShortcut.css +14 -14
- package/esm/content/keyboard-shortcut/KeyboardShortcut.sty.js +2 -2
- package/esm/content/keyboard-shortcut/KeyboardShortcut.sty.js.map +1 -1
- package/esm/content/markdown/Markdown.css +3 -3
- package/esm/content/markdown/Markdown.sty.js +1 -1
- package/esm/content/markdown/Markdown.sty.js.map +1 -1
- package/esm/content/markdown/transformers/typography-mapping.css +9 -9
- package/esm/content/markdown/transformers/typography-mapping.sty.js +6 -6
- package/esm/content/markdown/transformers/typography-mapping.sty.js.map +1 -1
- package/esm/content/microguide/Microguide.css +11 -11
- package/esm/content/microguide/Microguide.sty.js +7 -7
- package/esm/content/microguide/Microguide.sty.js.map +1 -1
- package/esm/content/progress/ProgressBar.css +71 -71
- package/esm/content/progress/ProgressBar.sty.js +5 -5
- package/esm/content/progress/ProgressBar.sty.js.map +1 -1
- package/esm/content/progress/ProgressBarIcon.css +2 -2
- package/esm/content/progress/ProgressBarIcon.sty.js +1 -1
- package/esm/content/progress/ProgressBarIcon.sty.js.map +1 -1
- package/esm/content/progress/ProgressBarLabel.css +3 -3
- package/esm/content/progress/ProgressBarLabel.sty.js +1 -1
- package/esm/content/progress/ProgressBarLabel.sty.js.map +1 -1
- package/esm/content/progress/ProgressBarValue.css +5 -5
- package/esm/content/progress/ProgressBarValue.sty.js +1 -1
- package/esm/content/progress/ProgressBarValue.sty.js.map +1 -1
- package/esm/content/progress/ProgressCircle.css +40 -40
- package/esm/content/progress/ProgressCircle.sty.js +5 -5
- package/esm/content/progress/ProgressCircle.sty.js.map +1 -1
- package/esm/content/release-phase-indicator/ReleasePhaseIndicator.js +4 -2
- package/esm/content/release-phase-indicator/ReleasePhaseIndicator.js.map +2 -2
- package/esm/content/release-phase-indicator/messages.js +5 -0
- package/esm/content/release-phase-indicator/messages.js.map +2 -2
- package/esm/content/shared-components/Visual.css +3 -3
- package/esm/content/shared-components/Visual.sty.js +1 -1
- package/esm/content/shared-components/Visual.sty.js.map +1 -1
- package/esm/content/skeleton/Skeleton.css +7 -7
- package/esm/content/skeleton/Skeleton.sty.js +5 -5
- package/esm/content/skeleton/Skeleton.sty.js.map +1 -1
- package/esm/content/terminology-overlay/TerminologyOverlay.css +4 -4
- package/esm/content/terminology-overlay/TerminologyOverlay.sty.js +1 -1
- package/esm/content/terminology-overlay/TerminologyOverlay.sty.js.map +1 -1
- package/esm/core/components/app-root/AppRoot.css +12 -2
- package/esm/core/components/app-root/AppRoot.js +3 -2
- package/esm/core/components/app-root/AppRoot.js.map +2 -2
- package/esm/core/components/app-root/AppRoot.sty.js +1 -1
- package/esm/core/components/app-root/AppRoot.sty.js.map +1 -1
- package/esm/core/components/app-root/visual-refresh-overrides.js +6 -0
- package/esm/core/components/app-root/visual-refresh-overrides.js.map +2 -2
- package/esm/core/components/error-fallback/ErrorFallback.js.map +7 -0
- package/esm/{filters/filter-field → core/components}/error-fallback/messages.js +4 -4
- package/esm/core/components/error-fallback/messages.js.map +7 -0
- package/esm/core/components/visually-hidden/VisuallyHidden.css +1 -1
- package/esm/core/components/visually-hidden/VisuallyHidden.sty.js +1 -1
- package/esm/core/components/visually-hidden/VisuallyHidden.sty.js.map +1 -1
- package/esm/core/dql/dql-common.js +6 -2
- package/esm/core/dql/dql-common.js.map +2 -2
- package/esm/core/hooks/useVisualRefreshEnabled.js +14 -0
- package/esm/core/hooks/useVisualRefreshEnabled.js.map +7 -0
- package/esm/core/index.js +12 -0
- package/esm/core/index.js.map +2 -2
- package/esm/core/sdk/app-state/AppStateContext.js +27 -0
- package/esm/core/sdk/app-state/AppStateContext.js.map +7 -0
- package/esm/core/sdk/app-state/AppStateProvider.js +87 -0
- package/esm/core/sdk/app-state/AppStateProvider.js.map +7 -0
- package/esm/core/sdk/app-state/app-state-store.js +12 -0
- package/esm/core/sdk/app-state/app-state-store.js.map +7 -0
- package/esm/core/sdk/app-state/useAppState.js +26 -0
- package/esm/core/sdk/app-state/useAppState.js.map +7 -0
- package/esm/core/sdk/app-state/useAppStateInternal.js +125 -0
- package/esm/core/sdk/app-state/useAppStateInternal.js.map +7 -0
- package/esm/core/sdk/app-state/useAppStateValue.js +14 -0
- package/esm/core/sdk/app-state/useAppStateValue.js.map +7 -0
- package/esm/core/sdk/sdk-logger.js +2 -2
- package/esm/core/styles/defaultChartValues.css +1 -1
- package/esm/core/styles/defaultChartValues.sty.js +1 -1
- package/esm/core/styles/defaultChartValues.sty.js.map +1 -1
- package/esm/core/styles/focusRing.css +66 -66
- package/esm/core/styles/focusRing.sty.js +2 -2
- package/esm/core/styles/focusRing.sty.js.map +1 -1
- package/esm/core/styles/focusRingStatic.css +34 -34
- package/esm/core/styles/focusRingStatic.sty.js +1 -1
- package/esm/core/styles/focusRingStatic.sty.js.map +1 -1
- package/esm/core/styles/virtualFocus.css +2 -2
- package/esm/core/styles/virtualFocus.sty.js +1 -1
- package/esm/core/styles/virtualFocus.sty.js.map +1 -1
- package/esm/core/time/timeframeStore/actions/dateTimePicker.js +5 -4
- package/esm/core/time/timeframeStore/actions/dateTimePicker.js.map +2 -2
- package/esm/core/time/validation.js +49 -4
- package/esm/core/time/validation.js.map +2 -2
- package/esm/core/utils/colorUtils.css +60 -60
- package/esm/core/utils/colorUtils.sty.js +2 -2
- package/esm/core/utils/colorUtils.sty.js.map +1 -1
- package/esm/{charts/core → core}/utils/get-tick-value-as-number.js.map +1 -1
- package/esm/core/utils/get-ticks.js +12 -0
- package/esm/core/utils/get-ticks.js.map +7 -0
- package/esm/editors/base-code-editor/BaseCodeEditor.css +147 -135
- package/esm/editors/base-code-editor/BaseCodeEditor.js +151 -5
- package/esm/editors/base-code-editor/BaseCodeEditor.js.map +2 -2
- package/esm/editors/base-code-editor/BaseCodeEditor.sty.js +2 -2
- package/esm/editors/base-code-editor/BaseCodeEditor.sty.js.map +1 -1
- package/esm/editors/base-code-editor/configuration/configure-format-keymap.js +22 -0
- package/esm/editors/base-code-editor/configuration/configure-format-keymap.js.map +7 -0
- package/esm/editors/base-code-editor/configuration/configure-placeholder.js +34 -3
- package/esm/editors/base-code-editor/configuration/configure-placeholder.js.map +2 -2
- package/esm/editors/base-code-editor/configuration/getDefaultConfigurations.js +105 -7
- package/esm/editors/base-code-editor/configuration/getDefaultConfigurations.js.map +3 -3
- package/esm/editors/base-code-editor/utils/key-maps.js +2 -0
- package/esm/editors/base-code-editor/utils/key-maps.js.map +2 -2
- package/esm/editors/code-editor/CodeEditor.js +26 -2
- package/esm/editors/code-editor/CodeEditor.js.map +2 -2
- package/esm/editors/dql-editor/DQLEditor.js +57 -4
- package/esm/editors/dql-editor/DQLEditor.js.map +2 -2
- package/esm/editors/dql-editor/actions-menu/ActionsMenu.css +23 -13
- package/esm/editors/dql-editor/actions-menu/ActionsMenu.js +8 -1
- package/esm/editors/dql-editor/actions-menu/ActionsMenu.js.map +2 -2
- package/esm/editors/dql-editor/actions-menu/ActionsMenu.sty.js +5 -4
- package/esm/editors/dql-editor/actions-menu/ActionsMenu.sty.js.map +2 -2
- package/esm/editors/dql-editor/actions-menu/actions-menu-messages.js +5 -0
- package/esm/editors/dql-editor/actions-menu/actions-menu-messages.js.map +2 -2
- package/esm/editors/dql-editor/dql/SuggestionPart.css +1 -1
- package/esm/editors/dql-editor/dql/SuggestionPart.sty.js +1 -1
- package/esm/editors/dql-editor/dql/SuggestionPart.sty.js.map +1 -1
- package/esm/editors/dql-editor/dql/SuggestionsInfoSection.css +7 -7
- package/esm/editors/dql-editor/dql/SuggestionsInfoSection.js +10 -1
- package/esm/editors/dql-editor/dql/SuggestionsInfoSection.js.map +2 -2
- package/esm/editors/dql-editor/dql/SuggestionsInfoSection.sty.js +3 -3
- package/esm/editors/dql-editor/dql/SuggestionsInfoSection.sty.js.map +1 -1
- package/esm/editors/dql-editor/dql/open-autocomplete.js +21 -3
- package/esm/editors/dql-editor/dql/open-autocomplete.js.map +2 -2
- package/esm/editors/dql-editor/dql/suggestion-autocompletions.js +3 -0
- package/esm/editors/dql-editor/dql/suggestion-autocompletions.js.map +2 -2
- package/esm/editors/index.js.map +2 -2
- package/esm/filters/filter-field/FilterField.css +151 -119
- package/esm/filters/filter-field/FilterField.js +78 -4
- package/esm/filters/filter-field/FilterField.js.map +2 -2
- package/esm/filters/filter-field/FilterField.sty.js +28 -28
- package/esm/filters/filter-field/FilterField.sty.js.map +1 -1
- package/esm/filters/filter-field/components/FilterFieldSuffixButtons.css +3 -3
- package/esm/filters/filter-field/components/FilterFieldSuffixButtons.sty.js +3 -3
- package/esm/filters/filter-field/components/FilterFieldSuffixButtons.sty.js.map +1 -1
- package/esm/filters/filter-field/components/FilterStatement.css +13 -13
- package/esm/filters/filter-field/components/FilterStatement.sty.js +6 -6
- package/esm/filters/filter-field/components/FilterStatement.sty.js.map +1 -1
- package/esm/filters/filter-field/hooks/recent-and-pinned/usePinnedFilterSuggestions.js +1 -1
- package/esm/filters/filter-field/hooks/recent-and-pinned/usePinnedFilterSuggestions.js.map +2 -2
- package/esm/filters/filter-field/hooks/recent-and-pinned/usePinnedFilters.js +35 -28
- package/esm/filters/filter-field/hooks/recent-and-pinned/usePinnedFilters.js.map +2 -2
- package/esm/filters/filter-field/hooks/recent-and-pinned/useRecentFilters.js +24 -22
- package/esm/filters/filter-field/hooks/recent-and-pinned/useRecentFilters.js.map +2 -2
- package/esm/filters/filter-field/hooks/useSuggestions.js +2 -7
- package/esm/filters/filter-field/hooks/useSuggestions.js.map +2 -2
- package/esm/filters/filter-field/state/recent-pinned-store.js +11 -51
- package/esm/filters/filter-field/state/recent-pinned-store.js.map +2 -2
- package/esm/filters/filter-field/suggestions/RecentPinnedSuggestionItem.css +9 -9
- package/esm/filters/filter-field/suggestions/RecentPinnedSuggestionItem.sty.js +2 -2
- package/esm/filters/filter-field/suggestions/RecentPinnedSuggestionItem.sty.js.map +1 -1
- package/esm/filters/filter-field/suggestions/Suggestion.css +24 -24
- package/esm/filters/filter-field/suggestions/Suggestion.sty.js +16 -16
- package/esm/filters/filter-field/suggestions/Suggestion.sty.js.map +1 -1
- package/esm/filters/filter-field/suggestions/SuggestionDetails.css +2 -2
- package/esm/filters/filter-field/suggestions/SuggestionDetails.sty.js +2 -2
- package/esm/filters/filter-field/suggestions/SuggestionDetails.sty.js.map +1 -1
- package/esm/filters/filter-field/suggestions/SuggestionGroup.css +6 -6
- package/esm/filters/filter-field/suggestions/SuggestionGroup.sty.js +3 -3
- package/esm/filters/filter-field/suggestions/SuggestionGroup.sty.js.map +1 -1
- package/esm/filters/filter-field/suggestions/SuggestionGroupLabel.css +1 -1
- package/esm/filters/filter-field/suggestions/SuggestionGroupLabel.sty.js +1 -1
- package/esm/filters/filter-field/suggestions/SuggestionGroupLabel.sty.js.map +1 -1
- package/esm/filters/filter-field/suggestions/SuggestionPin.js +5 -9
- package/esm/filters/filter-field/suggestions/SuggestionPin.js.map +2 -2
- package/esm/filters/filter-field/suggestions/SuggestionTips.css +7 -7
- package/esm/filters/filter-field/suggestions/SuggestionTips.sty.js +5 -5
- package/esm/filters/filter-field/suggestions/SuggestionTips.sty.js.map +1 -1
- package/esm/filters/filter-field/suggestions/SuggestionsOverlay.css +7 -7
- package/esm/filters/filter-field/suggestions/SuggestionsOverlay.sty.js +5 -5
- package/esm/filters/filter-field/suggestions/SuggestionsOverlay.sty.js.map +1 -1
- package/esm/filters/segment-selector/SegmentSelector.css +4 -4
- package/esm/filters/segment-selector/SegmentSelector.js +100 -9
- package/esm/filters/segment-selector/SegmentSelector.js.map +2 -2
- package/esm/filters/segment-selector/SegmentSelector.sty.js +4 -4
- package/esm/filters/segment-selector/SegmentSelector.sty.js.map +1 -1
- package/esm/filters/segment-selector/contexts/SegmentsUI/segmentValidationHelper.js +6 -3
- package/esm/filters/segment-selector/contexts/SegmentsUI/segmentValidationHelper.js.map +2 -2
- package/esm/filters/segment-selector/parts/EmptySegments.css +1 -1
- package/esm/filters/segment-selector/parts/EmptySegments.sty.js +1 -1
- package/esm/filters/segment-selector/parts/EmptySegments.sty.js.map +1 -1
- package/esm/filters/segment-selector/parts/Overlay.css +8 -8
- package/esm/filters/segment-selector/parts/Overlay.js +2 -1
- package/esm/filters/segment-selector/parts/Overlay.js.map +2 -2
- package/esm/filters/segment-selector/parts/Overlay.sty.js +8 -8
- package/esm/filters/segment-selector/parts/Overlay.sty.js.map +1 -1
- package/esm/filters/segment-selector/parts/ShowMorePanel/ShowMorePanel.css +4 -4
- package/esm/filters/segment-selector/parts/ShowMorePanel/ShowMorePanel.sty.js +4 -4
- package/esm/filters/segment-selector/parts/ShowMorePanel/ShowMorePanel.sty.js.map +1 -1
- package/esm/filters/segment-selector/parts/segmentsPresets/SegmentsPresets.css +32 -32
- package/esm/filters/segment-selector/parts/segmentsPresets/SegmentsPresets.sty.js +10 -10
- package/esm/filters/segment-selector/parts/segmentsPresets/SegmentsPresets.sty.js.map +1 -1
- package/esm/filters/segment-selector/parts/selectionBar/SegmentSelect.css +22 -22
- package/esm/filters/segment-selector/parts/selectionBar/SegmentSelect.sty.js +7 -7
- package/esm/filters/segment-selector/parts/selectionBar/SegmentSelect.sty.js.map +1 -1
- package/esm/filters/segment-selector/parts/selectionBar/SegmentSelectorTrigger.css +1 -1
- package/esm/filters/segment-selector/parts/selectionBar/SegmentSelectorTrigger.sty.js +1 -1
- package/esm/filters/segment-selector/parts/selectionBar/SegmentSelectorTrigger.sty.js.map +1 -1
- package/esm/filters/segment-selector/parts/selectionBar/SelectionBar.js +13 -10
- package/esm/filters/segment-selector/parts/selectionBar/SelectionBar.js.map +2 -2
- package/esm/filters/segment-selector/parts/selectionBar/ValueSelect.js +68 -27
- package/esm/filters/segment-selector/parts/selectionBar/ValueSelect.js.map +2 -2
- package/esm/filters/timeframe-selector/TimeframeSelector.css +2 -2
- package/esm/filters/timeframe-selector/TimeframeSelector.js +4 -0
- package/esm/filters/timeframe-selector/TimeframeSelector.js.map +2 -2
- package/esm/filters/timeframe-selector/TimeframeSelector.sty.js +2 -2
- package/esm/filters/timeframe-selector/TimeframeSelector.sty.js.map +1 -1
- package/esm/filters/timeframe-selector/TimeframeSelectorRoot.js +181 -5
- package/esm/filters/timeframe-selector/TimeframeSelectorRoot.js.map +2 -2
- package/esm/filters/timeframe-selector/components/custom-timeframe-selector/CustomTimeframeSelector.css +4 -4
- package/esm/filters/timeframe-selector/components/custom-timeframe-selector/CustomTimeframeSelector.sty.js +3 -3
- package/esm/filters/timeframe-selector/components/custom-timeframe-selector/CustomTimeframeSelector.sty.js.map +1 -1
- package/esm/filters/timeframe-selector/components/overlay/TimeframeSelectorOverlay.css +4 -4
- package/esm/filters/timeframe-selector/components/overlay/TimeframeSelectorOverlay.sty.js +4 -4
- package/esm/filters/timeframe-selector/components/overlay/TimeframeSelectorOverlay.sty.js.map +1 -1
- package/esm/filters/timeframe-selector/components/presets/Presets.css +27 -27
- package/esm/filters/timeframe-selector/components/presets/Presets.sty.js +11 -11
- package/esm/filters/timeframe-selector/components/presets/Presets.sty.js.map +1 -1
- package/esm/filters/timeframe-selector/components/trigger/Trigger.css +11 -11
- package/esm/filters/timeframe-selector/components/trigger/Trigger.js +2 -2
- package/esm/filters/timeframe-selector/components/trigger/Trigger.js.map +2 -2
- package/esm/filters/timeframe-selector/components/trigger/Trigger.sty.js +4 -4
- package/esm/filters/timeframe-selector/components/trigger/Trigger.sty.js.map +1 -1
- package/esm/forms/_base-input/BaseInput.css +99 -99
- package/esm/forms/_base-input/BaseInput.js +32 -5
- package/esm/forms/_base-input/BaseInput.js.map +2 -2
- package/esm/forms/_base-input/BaseInput.sty.js +11 -11
- package/esm/forms/_base-input/BaseInput.sty.js.map +1 -1
- package/esm/forms/_base-input/BaseInputContent.css +7 -7
- package/esm/forms/_base-input/BaseInputContent.sty.js +1 -1
- package/esm/forms/_base-input/BaseInputContent.sty.js.map +1 -1
- package/esm/forms/calendar/Calendar.css +48 -48
- package/esm/forms/calendar/Calendar.sty.js +12 -12
- package/esm/forms/calendar/Calendar.sty.js.map +1 -1
- package/esm/forms/calendar/CalendarRoot.js +69 -14
- package/esm/forms/calendar/CalendarRoot.js.map +2 -2
- package/esm/forms/calendar/components/CalendarItem.css +7 -7
- package/esm/forms/calendar/components/CalendarItem.sty.js +4 -4
- package/esm/forms/calendar/components/CalendarItem.sty.js.map +1 -1
- package/esm/forms/calendar/components/CalendarOutlineIcon.css +8 -8
- package/esm/forms/calendar/components/CalendarOutlineIcon.sty.js +5 -5
- package/esm/forms/calendar/components/CalendarOutlineIcon.sty.js.map +1 -1
- package/esm/forms/calendar/variables.sty.js +2 -2
- package/esm/forms/calendar/variables.sty.js.map +1 -1
- package/esm/forms/checkbox/Checkbox.css +20 -20
- package/esm/forms/checkbox/Checkbox.js +35 -8
- package/esm/forms/checkbox/Checkbox.js.map +2 -2
- package/esm/forms/checkbox/Checkbox.sty.js +3 -3
- package/esm/forms/checkbox/Checkbox.sty.js.map +1 -1
- package/esm/forms/date-time-picker/DateSelector.js +2 -2
- package/esm/forms/date-time-picker/DateSelector.js.map +2 -2
- package/esm/forms/date-time-picker/DateTimePicker.css +75 -75
- package/esm/forms/date-time-picker/DateTimePicker.js +9 -4
- package/esm/forms/date-time-picker/DateTimePicker.js.map +2 -2
- package/esm/forms/date-time-picker/DateTimePicker.sty.js +6 -6
- package/esm/forms/date-time-picker/DateTimePicker.sty.js.map +1 -1
- package/esm/forms/date-time-picker/DateTimePickerRoot.js +70 -3
- package/esm/forms/date-time-picker/DateTimePickerRoot.js.map +2 -2
- package/esm/forms/date-time-range-picker/DateRangeSelector.css +1 -1
- package/esm/forms/date-time-range-picker/DateRangeSelector.js +3 -3
- package/esm/forms/date-time-range-picker/DateRangeSelector.js.map +2 -2
- package/esm/forms/date-time-range-picker/DateRangeSelector.sty.js +1 -1
- package/esm/forms/date-time-range-picker/DateRangeSelector.sty.js.map +1 -1
- package/esm/forms/date-time-range-picker/DateTimeInput.css +11 -11
- package/esm/forms/date-time-range-picker/DateTimeInput.js +25 -3
- package/esm/forms/date-time-range-picker/DateTimeInput.js.map +2 -2
- package/esm/forms/date-time-range-picker/DateTimeInput.sty.js +3 -3
- package/esm/forms/date-time-range-picker/DateTimeInput.sty.js.map +1 -1
- package/esm/forms/date-time-range-picker/DateTimeRangePicker.css +27 -27
- package/esm/forms/date-time-range-picker/DateTimeRangePicker.sty.js +4 -4
- package/esm/forms/date-time-range-picker/DateTimeRangePicker.sty.js.map +1 -1
- package/esm/forms/date-time-range-picker/DateTimeRangePickerRoot.js +111 -3
- package/esm/forms/date-time-range-picker/DateTimeRangePickerRoot.js.map +2 -2
- package/esm/forms/forms-core/components/field-set/FieldSet.css +2 -2
- package/esm/forms/forms-core/components/field-set/FieldSet.sty.js +2 -2
- package/esm/forms/forms-core/components/field-set/FieldSet.sty.js.map +1 -1
- package/esm/forms/forms-core/components/form-field/FormField.sty.js +1 -1
- package/esm/forms/forms-core/components/form-field/FormField.sty.js.map +1 -1
- package/esm/forms/forms-core/components/form-field-messages/FormFieldMessageItem.css +5 -5
- package/esm/forms/forms-core/components/form-field-messages/FormFieldMessageItem.js +9 -5
- package/esm/forms/forms-core/components/form-field-messages/FormFieldMessageItem.js.map +2 -2
- package/esm/forms/forms-core/components/form-field-messages/FormFieldMessageItem.sty.js +2 -2
- package/esm/forms/forms-core/components/form-field-messages/FormFieldMessageItem.sty.js.map +1 -1
- package/esm/forms/forms-core/components/form-field-messages/FormFieldMessages.sty.js +1 -1
- package/esm/forms/forms-core/components/form-field-messages/FormFieldMessages.sty.js.map +1 -1
- package/esm/forms/forms-core/components/label/Label.css +5 -5
- package/esm/forms/forms-core/components/label/Label.sty.js +2 -2
- package/esm/forms/forms-core/components/label/Label.sty.js.map +1 -1
- package/esm/forms/forms-core/hooks/useFormFieldValidation.js +127 -48
- package/esm/forms/forms-core/hooks/useFormFieldValidation.js.map +2 -2
- package/esm/forms/forms-core/state/formfield-messages-state-reducer.js +10 -0
- package/esm/forms/forms-core/state/formfield-messages-state-reducer.js.map +2 -2
- package/esm/forms/hooks/useAutofillEvent.css +8 -8
- package/esm/forms/hooks/useAutofillEvent.sty.js +4 -4
- package/esm/forms/hooks/useAutofillEvent.sty.js.map +1 -1
- package/esm/forms/index.js +10 -0
- package/esm/forms/index.js.map +2 -2
- package/esm/forms/number-input-v2/NumberInput.js +163 -18
- package/esm/forms/number-input-v2/NumberInput.js.map +2 -2
- package/esm/forms/number-input-v2/utils/validation.js.map +2 -2
- package/esm/forms/radio/Radio.js +19 -3
- package/esm/forms/radio/Radio.js.map +2 -2
- package/esm/forms/radio/RadioGroup.js +42 -5
- package/esm/forms/radio/RadioGroup.js.map +2 -2
- package/esm/forms/radio/RadioGroupContext.js.map +2 -2
- package/esm/forms/radio/styles.css +18 -18
- package/esm/forms/radio/styles.sty.js +8 -8
- package/esm/forms/radio/styles.sty.js.map +1 -1
- package/esm/forms/search-input/SearchInput.css +2 -2
- package/esm/forms/search-input/SearchInput.sty.js +1 -1
- package/esm/forms/search-input/SearchInput.sty.js.map +1 -1
- package/esm/forms/search-input/Stepper.css +5 -5
- package/esm/forms/search-input/Stepper.sty.js +3 -3
- package/esm/forms/search-input/Stepper.sty.js.map +1 -1
- package/esm/forms/select/Select.js +74 -18
- package/esm/forms/select/Select.js.map +2 -2
- package/esm/forms/select/components/Control.js +3 -3
- package/esm/forms/select/components/Control.js.map +2 -2
- package/esm/forms/select/components/HiddenSelect.js +8 -6
- package/esm/forms/select/components/HiddenSelect.js.map +2 -2
- package/esm/forms/select/components/MenuList.js +6 -1
- package/esm/forms/select/components/MenuList.js.map +2 -2
- package/esm/forms/select/components/Option.js +12 -3
- package/esm/forms/select/components/Option.js.map +2 -2
- package/esm/forms/select/styles/Select.css +46 -46
- package/esm/forms/select/styles/Select.sty.js +24 -24
- package/esm/forms/select/styles/Select.sty.js.map +1 -1
- package/esm/forms/shared-types.js.map +2 -2
- package/esm/forms/spin-buttons/SpinButton.css +8 -8
- package/esm/forms/spin-buttons/SpinButton.sty.js +2 -2
- package/esm/forms/spin-buttons/SpinButton.sty.js.map +1 -1
- package/esm/forms/switch/Switch.css +36 -36
- package/esm/forms/switch/Switch.js +39 -6
- package/esm/forms/switch/Switch.js.map +2 -2
- package/esm/forms/switch/Switch.sty.js +5 -5
- package/esm/forms/switch/Switch.sty.js.map +1 -1
- package/esm/forms/text-area/TextArea.css +59 -59
- package/esm/forms/text-area/TextArea.js +33 -2
- package/esm/forms/text-area/TextArea.js.map +2 -2
- package/esm/forms/text-area/TextArea.sty.js +3 -3
- package/esm/forms/text-area/TextArea.sty.js.map +1 -1
- package/esm/forms/text-input/TextInput.js.map +2 -2
- package/esm/forms/toggle-button-group/Item.js +17 -3
- package/esm/forms/toggle-button-group/Item.js.map +2 -2
- package/esm/forms/toggle-button-group/ToggleButtonGroup.js +43 -7
- package/esm/forms/toggle-button-group/ToggleButtonGroup.js.map +2 -2
- package/esm/forms/toggle-button-group/contexts/ToggleButtonGroupContext.js.map +2 -2
- package/esm/forms/toggle-button-group/styles.css +58 -58
- package/esm/forms/toggle-button-group/styles.sty.js +15 -15
- package/esm/forms/toggle-button-group/styles.sty.js.map +1 -1
- package/esm/forms/validation/types.js +63 -0
- package/esm/forms/validation/types.js.map +7 -0
- package/esm/forms/validation/useCustomMessageEmitter.js +83 -0
- package/esm/forms/validation/useCustomMessageEmitter.js.map +7 -0
- package/esm/forms/validation/useValidationStateEmitter.js +31 -0
- package/esm/forms/validation/useValidationStateEmitter.js.map +7 -0
- package/esm/forms/validation/validation-builders.js +56 -0
- package/esm/forms/validation/validation-builders.js.map +7 -0
- package/esm/layouts/app-header/AppHeader.css +1 -1
- package/esm/layouts/app-header/AppHeader.sty.js +1 -1
- package/esm/layouts/app-header/AppHeader.sty.js.map +1 -1
- package/esm/layouts/app-header/Logo.js +3 -1
- package/esm/layouts/app-header/Logo.js.map +2 -2
- package/esm/layouts/app-header/Navigation.css +9 -9
- package/esm/layouts/app-header/Navigation.sty.js +5 -5
- package/esm/layouts/app-header/Navigation.sty.js.map +1 -1
- package/esm/layouts/app-header/action-group/ActionButton.css +17 -17
- package/esm/layouts/app-header/action-group/ActionButton.sty.js +3 -3
- package/esm/layouts/app-header/action-group/ActionButton.sty.js.map +1 -1
- package/esm/layouts/app-header/action-group/ActionGroup.css +1 -1
- package/esm/layouts/app-header/action-group/ActionGroup.sty.js +1 -1
- package/esm/layouts/app-header/action-group/ActionGroup.sty.js.map +1 -1
- package/esm/layouts/app-header/action-group/NavItem.css +4 -4
- package/esm/layouts/app-header/action-group/NavItem.sty.js +3 -3
- package/esm/layouts/app-header/action-group/NavItem.sty.js.map +1 -1
- package/esm/layouts/app-header/app-icon/AppIcon.css +4 -4
- package/esm/layouts/app-header/app-icon/AppIcon.sty.js +1 -1
- package/esm/layouts/app-header/app-icon/AppIcon.sty.js.map +1 -1
- package/esm/layouts/container/Container.css +5 -5
- package/esm/layouts/container/Container.sty.js +1 -1
- package/esm/layouts/container/Container.sty.js.map +1 -1
- package/esm/layouts/divider/Divider.css +6 -6
- package/esm/layouts/divider/Divider.sty.js +1 -1
- package/esm/layouts/divider/Divider.sty.js.map +1 -1
- package/esm/layouts/index.js.map +2 -2
- package/esm/layouts/input-group/InputGroup.css +23 -23
- package/esm/layouts/input-group/InputGroup.sty.js +1 -1
- package/esm/layouts/input-group/InputGroup.sty.js.map +1 -1
- package/esm/layouts/page/DetailView.css +3 -3
- package/esm/layouts/page/DetailView.js.map +2 -2
- package/esm/layouts/page/DetailView.sty.js +2 -2
- package/esm/layouts/page/DetailView.sty.js.map +1 -1
- package/esm/layouts/page/Header.css +2 -2
- package/esm/layouts/page/Header.js.map +2 -2
- package/esm/layouts/page/Header.sty.js +1 -1
- package/esm/layouts/page/Header.sty.js.map +1 -1
- package/esm/layouts/page/Main.css +6 -6
- package/esm/layouts/page/Main.js.map +2 -2
- package/esm/layouts/page/Main.sty.js +4 -4
- package/esm/layouts/page/Main.sty.js.map +1 -1
- package/esm/layouts/page/Page.css +2 -2
- package/esm/layouts/page/Page.js.map +2 -2
- package/esm/layouts/page/Page.sty.js +1 -1
- package/esm/layouts/page/Page.sty.js.map +1 -1
- package/esm/layouts/page/PanelControlButton.js.map +2 -2
- package/esm/layouts/page/Sidebar.css +71 -22
- package/esm/layouts/page/Sidebar.js +2 -0
- package/esm/layouts/page/Sidebar.js.map +2 -2
- package/esm/layouts/page/Sidebar.sty.js +8 -8
- package/esm/layouts/page/Sidebar.sty.js.map +1 -1
- package/esm/layouts/page/page-types.js.map +2 -2
- package/esm/layouts/page/panel-types.js.map +2 -2
- package/esm/layouts/page/panel.css +19 -19
- package/esm/layouts/page/panel.sty.js +10 -10
- package/esm/layouts/page/panel.sty.js.map +1 -1
- package/esm/layouts/page-layout/PageLayout.css +10 -10
- package/esm/layouts/page-layout/PageLayout.sty.js +6 -6
- package/esm/layouts/page-layout/PageLayout.sty.js.map +1 -1
- package/esm/layouts/page-layout/details-layout/DetailsControlBar.css +3 -3
- package/esm/layouts/page-layout/details-layout/DetailsControlBar.sty.js +3 -3
- package/esm/layouts/page-layout/details-layout/DetailsControlBar.sty.js.map +1 -1
- package/esm/layouts/page-layout/details-layout/DetailsLayout.css +6 -6
- package/esm/layouts/page-layout/details-layout/DetailsLayout.js +7 -15
- package/esm/layouts/page-layout/details-layout/DetailsLayout.js.map +2 -2
- package/esm/layouts/page-layout/details-layout/DetailsLayout.sty.js +5 -5
- package/esm/layouts/page-layout/details-layout/DetailsLayout.sty.js.map +1 -1
- package/esm/layouts/page-layout/details-layout/Overlay.css +18 -18
- package/esm/layouts/page-layout/details-layout/Overlay.sty.js +4 -4
- package/esm/layouts/page-layout/details-layout/Overlay.sty.js.map +1 -1
- package/esm/layouts/page-layout/shared/portal-slots.js.map +1 -1
- package/esm/layouts/page-layout/sidebar-layout/SidebarLayout.css +38 -38
- package/esm/layouts/page-layout/sidebar-layout/SidebarLayout.sty.js +15 -15
- package/esm/layouts/page-layout/sidebar-layout/SidebarLayout.sty.js.map +1 -1
- package/esm/layouts/split-layout/SplitLayout.css +18 -18
- package/esm/layouts/split-layout/SplitLayout.sty.js +7 -7
- package/esm/layouts/split-layout/SplitLayout.sty.js.map +1 -1
- package/esm/layouts/surface/Surface.css +39 -39
- package/esm/layouts/surface/Surface.sty.js +2 -2
- package/esm/layouts/surface/Surface.sty.js.map +1 -1
- package/esm/layouts/surface/variables.sty.js +1 -1
- package/esm/layouts/surface/variables.sty.js.map +1 -1
- package/esm/layouts/title-bar/TitleBar.css +5 -5
- package/esm/layouts/title-bar/TitleBar.sty.js +4 -4
- package/esm/layouts/title-bar/TitleBar.sty.js.map +1 -1
- package/esm/navigation/breadcrumbs/Breadcrumbs.css +9 -9
- package/esm/navigation/breadcrumbs/Breadcrumbs.sty.js +5 -5
- package/esm/navigation/breadcrumbs/Breadcrumbs.sty.js.map +1 -1
- package/esm/navigation/menu/Content.js +2 -1
- package/esm/navigation/menu/Content.js.map +2 -2
- package/esm/navigation/menu/Item.js +8 -0
- package/esm/navigation/menu/Item.js.map +2 -2
- package/esm/navigation/menu/Menu.css +38 -15
- package/esm/navigation/menu/Menu.sty.js +10 -8
- package/esm/navigation/menu/Menu.sty.js.map +2 -2
- package/esm/navigation/menu/Sub.js +19 -0
- package/esm/navigation/menu/Sub.js.map +2 -2
- package/esm/navigation/menu/SubContent.js +8 -1
- package/esm/navigation/menu/SubContent.js.map +2 -2
- package/esm/navigation/menu/SubTrigger.js +22 -7
- package/esm/navigation/menu/SubTrigger.js.map +2 -2
- package/esm/navigation/menu/contexts/MenuSubLevelContext.js +38 -0
- package/esm/navigation/menu/contexts/MenuSubLevelContext.js.map +7 -0
- package/esm/navigation/tabs/RenderTab.css +14 -14
- package/esm/navigation/tabs/RenderTab.sty.js +3 -3
- package/esm/navigation/tabs/RenderTab.sty.js.map +1 -1
- package/esm/navigation/tabs/TabPanel.css +3 -3
- package/esm/navigation/tabs/TabPanel.sty.js +2 -2
- package/esm/navigation/tabs/TabPanel.sty.js.map +1 -1
- package/esm/navigation/tabs/Tabs.css +9 -9
- package/esm/navigation/tabs/Tabs.sty.js +5 -5
- package/esm/navigation/tabs/Tabs.sty.js.map +1 -1
- package/esm/notifications/notification-settings/NotificationSettings.css +1 -1
- package/esm/notifications/notification-settings/NotificationSettings.sty.js +1 -1
- package/esm/notifications/notification-settings/NotificationSettings.sty.js.map +1 -1
- package/esm/notifications/notification-settings/components/CopyPermissionsButton.js +3 -7
- package/esm/notifications/notification-settings/components/CopyPermissionsButton.js.map +2 -2
- package/esm/notifications/notification-settings/components/ToggleButton.js +3 -1
- package/esm/notifications/notification-settings/components/ToggleButton.js.map +2 -2
- package/esm/notifications/toast/Toast.css +6 -6
- package/esm/notifications/toast/Toast.sty.js +4 -4
- package/esm/notifications/toast/Toast.sty.js.map +1 -1
- package/esm/notifications/toast/ToastContainer.css +17 -17
- package/esm/notifications/toast/ToastContainer.sty.js +1 -1
- package/esm/notifications/toast/ToastContainer.sty.js.map +1 -1
- package/esm/overlays/drawer/Drawer.css +9 -9
- package/esm/overlays/drawer/Drawer.sty.js +5 -5
- package/esm/overlays/drawer/Drawer.sty.js.map +1 -1
- package/esm/overlays/modal/Modal.css +7 -7
- package/esm/overlays/modal/Modal.sty.js +4 -4
- package/esm/overlays/modal/Modal.sty.js.map +1 -1
- package/esm/overlays/overlay/Overlay.css +1 -1
- package/esm/overlays/overlay/Overlay.sty.js +1 -1
- package/esm/overlays/overlay/Overlay.sty.js.map +1 -1
- package/esm/overlays/sheet/Sheet.css +6 -6
- package/esm/overlays/sheet/Sheet.sty.js +5 -5
- package/esm/overlays/sheet/Sheet.sty.js.map +1 -1
- package/esm/overlays/tooltip/tooltip.css +18 -18
- package/esm/overlays/tooltip/tooltip.sty.js +3 -3
- package/esm/overlays/tooltip/tooltip.sty.js.map +1 -1
- package/esm/overlays/utils/popper-modifiers.js +7 -3
- package/esm/overlays/utils/popper-modifiers.js.map +2 -2
- package/esm/styles/colorUtils.css +60 -60
- package/esm/styles/colorUtils.sty.js +2 -2
- package/esm/styles/colorUtils.sty.js.map +1 -1
- package/esm/styles/container.css +47 -47
- package/esm/styles/container.sty.js +2 -2
- package/esm/styles/container.sty.js.map +1 -1
- package/esm/styles/ellipsis.css +1 -1
- package/esm/styles/ellipsis.sty.js +1 -1
- package/esm/styles/ellipsis.sty.js.map +1 -1
- package/esm/styles/field.css +290 -290
- package/esm/styles/field.sty.js +2 -2
- package/esm/styles/field.sty.js.map +1 -1
- package/esm/styles/screen-reader-only.css +1 -1
- package/esm/styles/screen-reader-only.sty.js +1 -1
- package/esm/styles/screen-reader-only.sty.js.map +1 -1
- package/esm/styles/sprinkles.css +262 -262
- package/esm/styles/sprinkles.sty.js +1 -1
- package/esm/styles/sprinkles.sty.js.map +1 -1
- package/esm/styles/textStyle.css +8 -8
- package/esm/styles/textStyle.sty.js +1 -1
- package/esm/styles/textStyle.sty.js.map +1 -1
- package/esm/tables/DataTable/DataTable.css +2 -2
- package/esm/tables/DataTable/DataTable.js +9 -3
- package/esm/tables/DataTable/DataTable.js.map +2 -2
- package/esm/tables/DataTable/DataTable.sty.js +7 -7
- package/esm/tables/DataTable/DataTable.sty.js.map +1 -1
- package/esm/tables/DataTable/components/Alignment.css +6 -6
- package/esm/tables/DataTable/components/Alignment.sty.js +2 -2
- package/esm/tables/DataTable/components/Alignment.sty.js.map +1 -1
- package/esm/tables/DataTable/components/ColumnPinning/DataTablePinningShadowCells.css +6 -6
- package/esm/tables/DataTable/components/ColumnPinning/DataTablePinningShadowCells.sty.js +3 -3
- package/esm/tables/DataTable/components/ColumnPinning/DataTablePinningShadowCells.sty.js.map +1 -1
- package/esm/tables/DataTable/components/DataTableBody.css +2 -2
- package/esm/tables/DataTable/components/DataTableBody.sty.js +2 -2
- package/esm/tables/DataTable/components/DataTableBody.sty.js.map +1 -1
- package/esm/tables/DataTable/components/DataTableCell.css +103 -117
- package/esm/tables/DataTable/components/DataTableCell.sty.js +5 -5
- package/esm/tables/DataTable/components/DataTableCell.sty.js.map +1 -1
- package/esm/tables/DataTable/components/DataTableDefaultCell.css +23 -23
- package/esm/tables/DataTable/components/DataTableDefaultCell.sty.js +1 -1
- package/esm/tables/DataTable/components/DataTableDefaultCell.sty.js.map +1 -1
- package/esm/tables/DataTable/components/DataTableEmptyState.css +6 -6
- package/esm/tables/DataTable/components/DataTableEmptyState.sty.js +2 -2
- package/esm/tables/DataTable/components/DataTableEmptyState.sty.js.map +1 -1
- package/esm/tables/DataTable/components/DataTableHeader.css +2 -2
- package/esm/tables/DataTable/components/DataTableHeader.sty.js +2 -2
- package/esm/tables/DataTable/components/DataTableHeader.sty.js.map +1 -1
- package/esm/tables/DataTable/components/DataTableHeaderCell.css +64 -64
- package/esm/tables/DataTable/components/DataTableHeaderCell.sty.js +23 -23
- package/esm/tables/DataTable/components/DataTableHeaderCell.sty.js.map +1 -1
- package/esm/tables/DataTable/components/DataTableRow.css +13 -13
- package/esm/tables/DataTable/components/DataTableRow.sty.js +1 -1
- package/esm/tables/DataTable/components/DataTableRow.sty.js.map +1 -1
- package/esm/tables/DataTable/components/DataTableScrollShadow.css +10 -10
- package/esm/tables/DataTable/components/DataTableScrollShadow.sty.js +2 -2
- package/esm/tables/DataTable/components/DataTableScrollShadow.sty.js.map +1 -1
- package/esm/tables/DataTable/components/DataTableVirtualizationContainer.css +21 -21
- package/esm/tables/DataTable/components/DataTableVirtualizationContainer.sty.js +1 -1
- package/esm/tables/DataTable/components/DataTableVirtualizationContainer.sty.js.map +1 -1
- package/esm/tables/DataTable/components/SettingsModal/DataTableSettingsModal.css +6 -0
- package/esm/tables/DataTable/components/SettingsModal/DataTableSettingsModal.js +51 -37
- package/esm/tables/DataTable/components/SettingsModal/DataTableSettingsModal.js.map +2 -2
- package/esm/tables/DataTable/components/SettingsModal/DataTableSettingsModal.sty.js +7 -0
- package/esm/tables/DataTable/components/SettingsModal/DataTableSettingsModal.sty.js.map +7 -0
- package/esm/tables/DataTable/components/TableActions/DataTableSelectionChip.css +5 -5
- package/esm/tables/DataTable/components/TableActions/DataTableSelectionChip.sty.js +2 -2
- package/esm/tables/DataTable/components/TableActions/DataTableSelectionChip.sty.js.map +1 -1
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/ColumnOrderSettings/ColumnOrderSettingsDragAndDrop.css +7 -7
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/ColumnOrderSettings/ColumnOrderSettingsDragAndDrop.sty.js +3 -3
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/ColumnOrderSettings/ColumnOrderSettingsDragAndDrop.sty.js.map +1 -1
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnSettingsModal.js +46 -7
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnSettingsModal.js.map +2 -2
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnVisibilitySettings.js +2 -1
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnVisibilitySettings.js.map +2 -2
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsList.css +19 -7
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsList.js +8 -3
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsList.js.map +2 -2
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsList.sty.js +3 -3
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsList.sty.js.map +2 -2
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsListItem.css +7 -7
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsListItem.sty.js +3 -3
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsListItem.sty.js.map +1 -1
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableVisibilityFilterControls.css +5 -5
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableVisibilityFilterControls.sty.js +3 -3
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableVisibilityFilterControls.sty.js.map +1 -1
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/column-settings-utils.js +72 -3
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/column-settings-utils.js.map +3 -3
- package/esm/tables/DataTable/components/Toolbar/DataTableToolbar.js +1 -0
- package/esm/tables/DataTable/components/Toolbar/DataTableToolbar.js.map +2 -2
- package/esm/tables/DataTable/components/Toolbar/Download/DataTableDownloadData.css +3 -3
- package/esm/tables/DataTable/components/Toolbar/Download/DataTableDownloadData.sty.js +2 -2
- package/esm/tables/DataTable/components/Toolbar/Download/DataTableDownloadData.sty.js.map +1 -1
- package/esm/tables/DataTable/features/ColumnOrder/ColumnOrder.css +8 -8
- package/esm/tables/DataTable/features/ColumnOrder/ColumnOrder.sty.js +4 -4
- package/esm/tables/DataTable/features/ColumnOrder/ColumnOrder.sty.js.map +1 -1
- package/esm/tables/DataTable/features/ColumnSizing/ColumnSizing.css +3 -3
- package/esm/tables/DataTable/features/ColumnSizing/ColumnSizing.sty.js +1 -1
- package/esm/tables/DataTable/features/ColumnSizing/ColumnSizing.sty.js.map +1 -1
- package/esm/tables/DataTable/features/ColumnTypes/ColumnTypes.css +1 -1
- package/esm/tables/DataTable/features/ColumnTypes/ColumnTypes.sty.js +1 -1
- package/esm/tables/DataTable/features/ColumnTypes/ColumnTypes.sty.js.map +1 -1
- package/esm/tables/DataTable/features/ColumnTypes/column-types-types.js.map +2 -2
- package/esm/tables/DataTable/features/Download/Download.js +1 -1
- package/esm/tables/DataTable/features/Download/Download.js.map +2 -2
- package/esm/tables/DataTable/features/GanttChart/DataTableGanttAnnotationsIndicators.css +1 -1
- package/esm/tables/DataTable/features/GanttChart/DataTableGanttAnnotationsIndicators.sty.js +1 -1
- package/esm/tables/DataTable/features/GanttChart/DataTableGanttAnnotationsIndicators.sty.js.map +1 -1
- package/esm/tables/DataTable/features/GanttChart/DataTableGanttChartCell.css +3 -3
- package/esm/tables/DataTable/features/GanttChart/DataTableGanttChartCell.sty.js +2 -2
- package/esm/tables/DataTable/features/GanttChart/DataTableGanttChartCell.sty.js.map +1 -1
- package/esm/tables/DataTable/features/GanttChart/DataTableGanttChartGrid.css +1 -1
- package/esm/tables/DataTable/features/GanttChart/DataTableGanttChartGrid.js +2 -2
- package/esm/tables/DataTable/features/GanttChart/DataTableGanttChartGrid.js.map +2 -2
- package/esm/tables/DataTable/features/GanttChart/DataTableGanttChartGrid.sty.js +1 -1
- package/esm/tables/DataTable/features/GanttChart/DataTableGanttChartGrid.sty.js.map +1 -1
- package/esm/tables/DataTable/features/GanttChart/DataTableGanttChartHeader.css +4 -4
- package/esm/tables/DataTable/features/GanttChart/DataTableGanttChartHeader.sty.js +1 -1
- package/esm/tables/DataTable/features/GanttChart/DataTableGanttChartHeader.sty.js.map +1 -1
- package/esm/tables/DataTable/features/LoadingState/LoadingState.css +3 -3
- package/esm/tables/DataTable/features/LoadingState/LoadingState.sty.js +3 -3
- package/esm/tables/DataTable/features/LoadingState/LoadingState.sty.js.map +1 -1
- package/esm/tables/DataTable/features/MeterBarChart/MeterBarChart.js.map +2 -2
- package/esm/tables/DataTable/features/RowDetails/RowDetails.css +13 -13
- package/esm/tables/DataTable/features/RowDetails/RowDetails.sty.js +3 -3
- package/esm/tables/DataTable/features/RowDetails/RowDetails.sty.js.map +1 -1
- package/esm/tables/DataTable/features/RowInteractivity/RowInteractivity.css +14 -14
- package/esm/tables/DataTable/features/RowInteractivity/RowInteractivity.sty.js +1 -1
- package/esm/tables/DataTable/features/RowInteractivity/RowInteractivity.sty.js.map +1 -1
- package/esm/tables/DataTable/features/RowOrder/RowOrder.css +8 -8
- package/esm/tables/DataTable/features/RowOrder/RowOrder.sty.js +3 -3
- package/esm/tables/DataTable/features/RowOrder/RowOrder.sty.js.map +1 -1
- package/esm/tables/DataTable/features/RowOrder/components/RowOrderingDragAndDropContext.js +1 -0
- package/esm/tables/DataTable/features/RowOrder/components/RowOrderingDragAndDropContext.js.map +2 -2
- package/esm/tables/DataTable/features/Sorting/Sorting.css +34 -34
- package/esm/tables/DataTable/features/Sorting/Sorting.sty.js +3 -3
- package/esm/tables/DataTable/features/Sorting/Sorting.sty.js.map +1 -1
- package/esm/tables/DataTable/features/SubRows/SubRows.css +19 -19
- package/esm/tables/DataTable/features/SubRows/SubRows.sty.js +5 -5
- package/esm/tables/DataTable/features/SubRows/SubRows.sty.js.map +1 -1
- package/esm/tables/DataTable/features/Thresholds/Thresholds.css +2 -2
- package/esm/tables/DataTable/features/Thresholds/Thresholds.sty.js +3 -3
- package/esm/tables/DataTable/features/Thresholds/Thresholds.sty.js.map +1 -1
- package/esm/tables/DataTable/features/UserActions/RowActions.css +4 -4
- package/esm/tables/DataTable/features/UserActions/RowActions.sty.js +1 -1
- package/esm/tables/DataTable/features/UserActions/RowActions.sty.js.map +1 -1
- package/esm/tables/DataTable/features/UserActions/UserActions.css +18 -18
- package/esm/tables/DataTable/features/UserActions/UserActions.sty.js +2 -2
- package/esm/tables/DataTable/features/UserActions/UserActions.sty.js.map +1 -1
- package/esm/tables/DataTable/messages.js +22 -0
- package/esm/tables/DataTable/messages.js.map +2 -2
- package/esm/tables/SimpleTable/SimpleTable.css +27 -27
- package/esm/tables/SimpleTable/SimpleTable.sty.js +1 -1
- package/esm/tables/SimpleTable/SimpleTable.sty.js.map +1 -1
- package/esm/tables/index.js.map +2 -2
- package/esm/typography/block-quote/Blockquote.css +2 -2
- package/esm/typography/block-quote/Blockquote.sty.js +1 -1
- package/esm/typography/block-quote/Blockquote.sty.js.map +1 -1
- package/esm/typography/code/Code.css +1 -1
- package/esm/typography/code/Code.sty.js +1 -1
- package/esm/typography/code/Code.sty.js.map +1 -1
- package/esm/typography/emphasis/Emphasis.css +1 -1
- package/esm/typography/emphasis/Emphasis.sty.js +1 -1
- package/esm/typography/emphasis/Emphasis.sty.js.map +1 -1
- package/esm/typography/external-link/ExternalLink.css +6 -6
- package/esm/typography/external-link/ExternalLink.sty.js +1 -1
- package/esm/typography/external-link/ExternalLink.sty.js.map +1 -1
- package/esm/typography/heading/Heading.css +7 -7
- package/esm/typography/heading/Heading.sty.js +1 -1
- package/esm/typography/heading/Heading.sty.js.map +1 -1
- package/esm/typography/highlight/Highlight.css +2 -2
- package/esm/typography/highlight/Highlight.sty.js +1 -1
- package/esm/typography/highlight/Highlight.sty.js.map +1 -1
- package/esm/typography/link/Link.css +4 -4
- package/esm/typography/link/Link.sty.js +1 -1
- package/esm/typography/link/Link.sty.js.map +1 -1
- package/esm/typography/list/List.css +4 -4
- package/esm/typography/list/List.sty.js +2 -2
- package/esm/typography/list/List.sty.js.map +1 -1
- package/esm/typography/paragraph/Paragraph.css +3 -3
- package/esm/typography/paragraph/Paragraph.sty.js +1 -1
- package/esm/typography/paragraph/Paragraph.sty.js.map +1 -1
- package/esm/typography/strikethrough/Strikethrough.css +1 -1
- package/esm/typography/strikethrough/Strikethrough.sty.js +1 -1
- package/esm/typography/strikethrough/Strikethrough.sty.js.map +1 -1
- package/esm/typography/strong/Strong.css +1 -1
- package/esm/typography/strong/Strong.sty.js +1 -1
- package/esm/typography/strong/Strong.sty.js.map +1 -1
- package/esm/typography/text/Text.css +3 -3
- package/esm/typography/text/Text.sty.js +1 -1
- package/esm/typography/text/Text.sty.js.map +1 -1
- package/esm/typography/text-ellipsis/TextEllipsis.css +6 -6
- package/esm/typography/text-ellipsis/TextEllipsis.sty.js +2 -2
- package/esm/typography/text-ellipsis/TextEllipsis.sty.js.map +1 -1
- package/filters/filter-field/FilterField.css +151 -119
- package/filters/filter-field/FilterField.js +75 -4
- package/filters/filter-field/FilterField.sty.js +28 -28
- package/filters/filter-field/components/FilterFieldSuffixButtons.css +3 -3
- package/filters/filter-field/components/FilterFieldSuffixButtons.sty.js +3 -3
- package/filters/filter-field/components/FilterStatement.css +13 -13
- package/filters/filter-field/components/FilterStatement.sty.js +6 -6
- package/filters/filter-field/hooks/recent-and-pinned/usePinnedFilterSuggestions.js +1 -1
- package/filters/filter-field/hooks/recent-and-pinned/usePinnedFilters.d.ts +10 -4
- package/filters/filter-field/hooks/recent-and-pinned/usePinnedFilters.js +32 -26
- package/filters/filter-field/hooks/recent-and-pinned/useRecentFilters.d.ts +2 -2
- package/filters/filter-field/hooks/recent-and-pinned/useRecentFilters.js +22 -20
- package/filters/filter-field/hooks/useSuggestions.d.ts +0 -1
- package/filters/filter-field/hooks/useSuggestions.js +1 -6
- package/filters/filter-field/state/recent-pinned-store.d.ts +11 -27
- package/filters/filter-field/state/recent-pinned-store.js +11 -51
- package/filters/filter-field/suggestions/RecentPinnedSuggestionItem.css +9 -9
- package/filters/filter-field/suggestions/RecentPinnedSuggestionItem.sty.js +2 -2
- package/filters/filter-field/suggestions/Suggestion.css +24 -24
- package/filters/filter-field/suggestions/Suggestion.sty.js +16 -16
- package/filters/filter-field/suggestions/SuggestionDetails.css +2 -2
- package/filters/filter-field/suggestions/SuggestionDetails.sty.js +2 -2
- package/filters/filter-field/suggestions/SuggestionGroup.css +6 -6
- package/filters/filter-field/suggestions/SuggestionGroup.sty.js +3 -3
- package/filters/filter-field/suggestions/SuggestionGroupLabel.css +1 -1
- package/filters/filter-field/suggestions/SuggestionGroupLabel.sty.js +1 -1
- package/filters/filter-field/suggestions/SuggestionPin.d.ts +3 -2
- package/filters/filter-field/suggestions/SuggestionPin.js +5 -9
- package/filters/filter-field/suggestions/SuggestionTips.css +7 -7
- package/filters/filter-field/suggestions/SuggestionTips.sty.js +5 -5
- package/filters/filter-field/suggestions/SuggestionsOverlay.css +7 -7
- package/filters/filter-field/suggestions/SuggestionsOverlay.sty.js +5 -5
- package/filters/segment-selector/SegmentSelector.css +4 -4
- package/filters/segment-selector/SegmentSelector.js +91 -7
- package/filters/segment-selector/SegmentSelector.sty.js +4 -4
- package/filters/segment-selector/SegmentSelector.types.d.ts +10 -1
- package/filters/segment-selector/contexts/SegmentsUI/segmentValidationHelper.d.ts +2 -2
- package/filters/segment-selector/contexts/SegmentsUI/segmentValidationHelper.js +4 -3
- package/filters/segment-selector/parts/EmptySegments.css +1 -1
- package/filters/segment-selector/parts/EmptySegments.sty.js +1 -1
- package/filters/segment-selector/parts/Overlay.css +8 -8
- package/filters/segment-selector/parts/Overlay.js +2 -1
- package/filters/segment-selector/parts/Overlay.sty.js +8 -8
- package/filters/segment-selector/parts/ShowMorePanel/ShowMorePanel.css +4 -4
- package/filters/segment-selector/parts/ShowMorePanel/ShowMorePanel.sty.js +4 -4
- package/filters/segment-selector/parts/segmentsPresets/SegmentsPresets.css +32 -32
- package/filters/segment-selector/parts/segmentsPresets/SegmentsPresets.sty.js +10 -10
- package/filters/segment-selector/parts/selectionBar/SegmentSelect.css +22 -22
- package/filters/segment-selector/parts/selectionBar/SegmentSelect.sty.js +7 -7
- package/filters/segment-selector/parts/selectionBar/SegmentSelectorTrigger.css +1 -1
- package/filters/segment-selector/parts/selectionBar/SegmentSelectorTrigger.sty.js +1 -1
- package/filters/segment-selector/parts/selectionBar/SelectionBar.js +11 -10
- package/filters/segment-selector/parts/selectionBar/ValueSelect.js +66 -27
- package/filters/timeframe-selector/TimeframeSelector.css +2 -2
- package/filters/timeframe-selector/TimeframeSelector.js +4 -0
- package/filters/timeframe-selector/TimeframeSelector.sty.js +2 -2
- package/filters/timeframe-selector/TimeframeSelectorRoot.js +177 -4
- package/filters/timeframe-selector/components/custom-timeframe-selector/CustomTimeframeSelector.css +4 -4
- package/filters/timeframe-selector/components/custom-timeframe-selector/CustomTimeframeSelector.sty.js +3 -3
- package/filters/timeframe-selector/components/overlay/TimeframeSelectorOverlay.css +4 -4
- package/filters/timeframe-selector/components/overlay/TimeframeSelectorOverlay.sty.js +4 -4
- package/filters/timeframe-selector/components/presets/Presets.css +27 -27
- package/filters/timeframe-selector/components/presets/Presets.sty.js +11 -11
- package/filters/timeframe-selector/components/trigger/Trigger.css +11 -11
- package/filters/timeframe-selector/components/trigger/Trigger.js +2 -2
- package/filters/timeframe-selector/components/trigger/Trigger.sty.js +4 -4
- package/forms/_base-input/BaseInput.css +99 -99
- package/forms/_base-input/BaseInput.js +28 -4
- package/forms/_base-input/BaseInput.sty.js +11 -11
- package/forms/_base-input/BaseInputContent.css +7 -7
- package/forms/_base-input/BaseInputContent.sty.js +1 -1
- package/forms/_base-input/base-input.types.d.ts +6 -0
- package/forms/calendar/Calendar.css +48 -48
- package/forms/calendar/Calendar.sty.js +12 -12
- package/forms/calendar/CalendarRoot.d.ts +2 -2
- package/forms/calendar/CalendarRoot.js +65 -14
- package/forms/calendar/components/CalendarItem.css +7 -7
- package/forms/calendar/components/CalendarItem.sty.js +4 -4
- package/forms/calendar/components/CalendarOutlineIcon.css +8 -8
- package/forms/calendar/components/CalendarOutlineIcon.sty.js +5 -5
- package/forms/calendar/variables.sty.js +2 -2
- package/forms/checkbox/Checkbox.css +20 -20
- package/forms/checkbox/Checkbox.js +31 -7
- package/forms/checkbox/Checkbox.sty.js +3 -3
- package/forms/date-time-picker/DateSelector.js +2 -2
- package/forms/date-time-picker/DateTimePicker.css +75 -75
- package/forms/date-time-picker/DateTimePicker.js +9 -4
- package/forms/date-time-picker/DateTimePicker.sty.js +6 -6
- package/forms/date-time-picker/DateTimePickerRoot.js +67 -3
- package/forms/date-time-range-picker/DateRangeSelector.css +1 -1
- package/forms/date-time-range-picker/DateRangeSelector.js +2 -2
- package/forms/date-time-range-picker/DateRangeSelector.sty.js +1 -1
- package/forms/date-time-range-picker/DateTimeInput.css +11 -11
- package/forms/date-time-range-picker/DateTimeInput.js +25 -3
- package/forms/date-time-range-picker/DateTimeInput.sty.js +3 -3
- package/forms/date-time-range-picker/DateTimeRangePicker.css +27 -27
- package/forms/date-time-range-picker/DateTimeRangePicker.sty.js +4 -4
- package/forms/date-time-range-picker/DateTimeRangePickerRoot.js +105 -2
- package/forms/forms-core/components/field-set/FieldSet.css +2 -2
- package/forms/forms-core/components/field-set/FieldSet.sty.js +2 -2
- package/forms/forms-core/components/form-field/FormField.sty.js +1 -1
- package/forms/forms-core/components/form-field-messages/FormFieldMessageItem.css +5 -5
- package/forms/forms-core/components/form-field-messages/FormFieldMessageItem.js +9 -5
- package/forms/forms-core/components/form-field-messages/FormFieldMessageItem.sty.js +2 -2
- package/forms/forms-core/components/form-field-messages/FormFieldMessages.sty.js +1 -1
- package/forms/forms-core/components/label/Label.css +5 -5
- package/forms/forms-core/components/label/Label.sty.js +2 -2
- package/forms/forms-core/hooks/useFormFieldValidation.d.ts +24 -6
- package/forms/forms-core/hooks/useFormFieldValidation.js +122 -47
- package/forms/forms-core/state/formfield-messages-state-reducer.d.ts +1 -0
- package/forms/forms-core/state/formfield-messages-state-reducer.js +10 -0
- package/forms/forms-core/types/formfield-messages.types.d.ts +2 -0
- package/forms/hooks/useAutofillEvent.css +8 -8
- package/forms/hooks/useAutofillEvent.sty.js +4 -4
- package/forms/index.d.ts +2 -0
- package/forms/index.js +5 -0
- package/forms/number-input-v2/NumberInput.js +159 -18
- package/forms/number-input-v2/utils/validation.d.ts +2 -1
- package/forms/radio/Radio.js +19 -3
- package/forms/radio/RadioGroup.js +42 -5
- package/forms/radio/RadioGroupContext.d.ts +6 -0
- package/forms/radio/styles.css +18 -18
- package/forms/radio/styles.sty.js +8 -8
- package/forms/search-input/SearchInput.css +2 -2
- package/forms/search-input/SearchInput.sty.js +1 -1
- package/forms/search-input/Stepper.css +5 -5
- package/forms/search-input/Stepper.sty.js +3 -3
- package/forms/select/Select.js +69 -17
- package/forms/select/components/Control.d.ts +1 -1
- package/forms/select/components/Control.js +2 -2
- package/forms/select/components/HiddenSelect.js +8 -6
- package/forms/select/components/MenuList.d.ts +2 -0
- package/forms/select/components/MenuList.js +6 -1
- package/forms/select/components/Option.js +12 -3
- package/forms/select/styles/Select.css +46 -46
- package/forms/select/styles/Select.sty.js +24 -24
- package/forms/shared-types.d.ts +8 -0
- package/forms/spin-buttons/SpinButton.css +8 -8
- package/forms/spin-buttons/SpinButton.sty.js +2 -2
- package/forms/switch/Switch.css +36 -36
- package/forms/switch/Switch.js +35 -5
- package/forms/switch/Switch.sty.js +5 -5
- package/forms/text-area/TextArea.css +59 -59
- package/forms/text-area/TextArea.js +29 -1
- package/forms/text-area/TextArea.sty.js +3 -3
- package/forms/text-input/TextInput.d.ts +1 -1
- package/forms/toggle-button-group/Item.js +17 -3
- package/forms/toggle-button-group/ToggleButtonGroup.js +43 -7
- package/forms/toggle-button-group/contexts/ToggleButtonGroupContext.d.ts +3 -0
- package/forms/toggle-button-group/styles.css +58 -58
- package/forms/toggle-button-group/styles.sty.js +15 -15
- package/forms/validation/types.d.ts +122 -0
- package/forms/validation/types.js +81 -0
- package/forms/validation/useCustomMessageEmitter.d.ts +9 -0
- package/forms/validation/useCustomMessageEmitter.js +98 -0
- package/forms/validation/useValidationStateEmitter.d.ts +7 -0
- package/forms/validation/useValidationStateEmitter.js +49 -0
- package/forms/validation/validation-builders.d.ts +17 -0
- package/forms/validation/validation-builders.js +69 -0
- package/lang/en.json +168 -12
- package/lang/uncompiled/en.json +1113 -1064
- package/layouts/app-header/AppHeader.css +1 -1
- package/layouts/app-header/AppHeader.sty.js +1 -1
- package/layouts/app-header/Logo.d.ts +4 -4
- package/layouts/app-header/Navigation.css +9 -9
- package/layouts/app-header/Navigation.sty.js +5 -5
- package/layouts/app-header/action-group/ActionButton.css +17 -17
- package/layouts/app-header/action-group/ActionButton.sty.js +3 -3
- package/layouts/app-header/action-group/ActionGroup.css +1 -1
- package/layouts/app-header/action-group/ActionGroup.sty.js +1 -1
- package/layouts/app-header/action-group/NavItem.css +4 -4
- package/layouts/app-header/action-group/NavItem.sty.js +3 -3
- package/layouts/app-header/app-icon/AppIcon.css +4 -4
- package/layouts/app-header/app-icon/AppIcon.sty.js +1 -1
- package/layouts/container/Container.css +5 -5
- package/layouts/container/Container.sty.js +1 -1
- package/layouts/divider/Divider.css +6 -6
- package/layouts/divider/Divider.sty.js +1 -1
- package/layouts/input-group/InputGroup.css +23 -23
- package/layouts/input-group/InputGroup.sty.js +1 -1
- package/layouts/page/DetailView.css +3 -3
- package/layouts/page/DetailView.d.ts +17 -4
- package/layouts/page/DetailView.sty.js +2 -2
- package/layouts/page/Header.css +2 -2
- package/layouts/page/Header.d.ts +5 -1
- package/layouts/page/Header.sty.js +1 -1
- package/layouts/page/Main.css +6 -6
- package/layouts/page/Main.d.ts +5 -1
- package/layouts/page/Main.sty.js +4 -4
- package/layouts/page/Page.css +2 -2
- package/layouts/page/Page.d.ts +5 -1
- package/layouts/page/Page.sty.js +1 -1
- package/layouts/page/PanelControlButton.d.ts +5 -1
- package/layouts/page/Sidebar.css +71 -22
- package/layouts/page/Sidebar.d.ts +17 -4
- package/layouts/page/Sidebar.js +2 -0
- package/layouts/page/Sidebar.sty.js +8 -8
- package/layouts/page/page-types.d.ts +14 -3
- package/layouts/page/panel-types.d.ts +3 -0
- package/layouts/page/panel.css +19 -19
- package/layouts/page/panel.sty.js +10 -10
- package/layouts/page-layout/PageLayout.css +10 -10
- package/layouts/page-layout/PageLayout.d.ts +1 -1
- package/layouts/page-layout/PageLayout.sty.js +6 -6
- package/layouts/page-layout/details-layout/DetailsControlBar.css +3 -3
- package/layouts/page-layout/details-layout/DetailsControlBar.sty.js +3 -3
- package/layouts/page-layout/details-layout/DetailsLayout.css +6 -6
- package/layouts/page-layout/details-layout/DetailsLayout.js +7 -15
- package/layouts/page-layout/details-layout/DetailsLayout.sty.js +5 -5
- package/layouts/page-layout/details-layout/Overlay.css +18 -18
- package/layouts/page-layout/details-layout/Overlay.sty.js +4 -4
- package/layouts/page-layout/details-layout/slots.d.ts +1 -1
- package/layouts/page-layout/shared/portal-slots.d.ts +1 -1
- package/layouts/page-layout/shared/slot-config.d.ts +1 -1
- package/layouts/page-layout/sidebar-layout/SidebarLayout.css +38 -38
- package/layouts/page-layout/sidebar-layout/SidebarLayout.sty.js +15 -15
- package/layouts/split-layout/SplitLayout.css +18 -18
- package/layouts/split-layout/SplitLayout.sty.js +7 -7
- package/layouts/surface/Surface.css +39 -39
- package/layouts/surface/Surface.sty.js +2 -2
- package/layouts/surface/variables.sty.js +1 -1
- package/layouts/title-bar/TitleBar.css +5 -5
- package/layouts/title-bar/TitleBar.sty.js +4 -4
- package/migrations/3.2.0/codemods/rename-app-header-deprecated-members.js +1 -1
- package/migrations/3.2.0/codeshift-migration.js +1 -1
- package/migrations/3.2.0/dt-app-migration.js +100 -100
- package/navigation/breadcrumbs/Breadcrumbs.css +9 -9
- package/navigation/breadcrumbs/Breadcrumbs.sty.js +5 -5
- package/navigation/menu/Content.js +2 -1
- package/navigation/menu/Item.js +7 -0
- package/navigation/menu/Menu.css +38 -15
- package/navigation/menu/Menu.sty.d.ts +1 -0
- package/navigation/menu/Menu.sty.js +10 -8
- package/navigation/menu/Sub.js +16 -0
- package/navigation/menu/SubContent.js +8 -1
- package/navigation/menu/SubTrigger.js +17 -5
- package/navigation/menu/contexts/MenuSubLevelContext.d.ts +11 -0
- package/navigation/menu/contexts/MenuSubLevelContext.js +51 -0
- package/navigation/tabs/RenderTab.css +14 -14
- package/navigation/tabs/RenderTab.sty.js +3 -3
- package/navigation/tabs/TabPanel.css +3 -3
- package/navigation/tabs/TabPanel.sty.js +2 -2
- package/navigation/tabs/Tabs.css +9 -9
- package/navigation/tabs/Tabs.sty.js +5 -5
- package/notifications/notification-settings/NotificationSettings.css +1 -1
- package/notifications/notification-settings/NotificationSettings.sty.js +1 -1
- package/notifications/notification-settings/components/CopyPermissionsButton.js +3 -7
- package/notifications/notification-settings/components/ToggleButton.js +3 -1
- package/notifications/toast/Toast.css +6 -6
- package/notifications/toast/Toast.sty.js +4 -4
- package/notifications/toast/ToastContainer.css +17 -17
- package/notifications/toast/ToastContainer.sty.js +1 -1
- package/overlays/drawer/Drawer.css +9 -9
- package/overlays/drawer/Drawer.sty.js +5 -5
- package/overlays/modal/Modal.css +7 -7
- package/overlays/modal/Modal.sty.js +4 -4
- package/overlays/overlay/Overlay.css +1 -1
- package/overlays/overlay/Overlay.sty.js +1 -1
- package/overlays/sheet/Sheet.css +6 -6
- package/overlays/sheet/Sheet.sty.js +5 -5
- package/overlays/tooltip/tooltip.css +18 -18
- package/overlays/tooltip/tooltip.sty.js +3 -3
- package/overlays/utils/popper-modifiers.js +7 -3
- package/package.json +9 -10
- package/styles/colorUtils.css +60 -60
- package/styles/colorUtils.sty.js +2 -2
- package/styles/container.css +47 -47
- package/styles/container.sty.js +2 -2
- package/styles/ellipsis.css +1 -1
- package/styles/ellipsis.sty.js +1 -1
- package/styles/field.css +290 -290
- package/styles/field.sty.js +2 -2
- package/styles/screen-reader-only.css +1 -1
- package/styles/screen-reader-only.sty.js +1 -1
- package/styles/sprinkles.css +262 -262
- package/styles/sprinkles.sty.js +1 -1
- package/styles/textStyle.css +8 -8
- package/styles/textStyle.sty.js +1 -1
- package/tables/DataTable/DataTable.css +2 -2
- package/tables/DataTable/DataTable.d.ts +1 -1
- package/tables/DataTable/DataTable.js +9 -3
- package/tables/DataTable/DataTable.sty.js +7 -7
- package/tables/DataTable/components/Alignment.css +6 -6
- package/tables/DataTable/components/Alignment.sty.js +2 -2
- package/tables/DataTable/components/ColumnPinning/DataTablePinningShadowCells.css +6 -6
- package/tables/DataTable/components/ColumnPinning/DataTablePinningShadowCells.sty.js +3 -3
- package/tables/DataTable/components/DataTableBody.css +2 -2
- package/tables/DataTable/components/DataTableBody.sty.js +2 -2
- package/tables/DataTable/components/DataTableCell.css +103 -117
- package/tables/DataTable/components/DataTableCell.sty.js +5 -5
- package/tables/DataTable/components/DataTableDefaultCell.css +23 -23
- package/tables/DataTable/components/DataTableDefaultCell.sty.js +1 -1
- package/tables/DataTable/components/DataTableEmptyState.css +6 -6
- package/tables/DataTable/components/DataTableEmptyState.sty.js +2 -2
- package/tables/DataTable/components/DataTableHeader.css +2 -2
- package/tables/DataTable/components/DataTableHeader.sty.js +2 -2
- package/tables/DataTable/components/DataTableHeaderCell.css +64 -64
- package/tables/DataTable/components/DataTableHeaderCell.sty.js +23 -23
- package/tables/DataTable/components/DataTableRow.css +13 -13
- package/tables/DataTable/components/DataTableRow.sty.js +1 -1
- package/tables/DataTable/components/DataTableScrollShadow.css +10 -10
- package/tables/DataTable/components/DataTableScrollShadow.sty.js +2 -2
- package/tables/DataTable/components/DataTableVirtualizationContainer.css +21 -21
- package/tables/DataTable/components/DataTableVirtualizationContainer.sty.js +1 -1
- package/tables/DataTable/components/SettingsModal/DataTableSettingsModal.css +6 -0
- package/tables/DataTable/components/SettingsModal/DataTableSettingsModal.d.ts +3 -1
- package/tables/DataTable/components/SettingsModal/DataTableSettingsModal.js +61 -37
- package/tables/DataTable/components/SettingsModal/DataTableSettingsModal.sty.d.ts +1 -0
- package/tables/DataTable/components/SettingsModal/DataTableSettingsModal.sty.js +25 -0
- package/tables/DataTable/components/TableActions/DataTableSelectionChip.css +5 -5
- package/tables/DataTable/components/TableActions/DataTableSelectionChip.sty.js +2 -2
- package/tables/DataTable/components/Toolbar/ColumnSettings/ColumnOrderSettings/ColumnOrderSettingsDragAndDrop.css +7 -7
- package/tables/DataTable/components/Toolbar/ColumnSettings/ColumnOrderSettings/ColumnOrderSettingsDragAndDrop.sty.js +3 -3
- package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnSettingsModal.d.ts +5 -1
- package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnSettingsModal.js +42 -5
- package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnVisibilitySettings.d.ts +1 -1
- package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnVisibilitySettings.js +2 -1
- package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsList.css +19 -7
- package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsList.d.ts +4 -0
- package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsList.js +8 -3
- package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsList.sty.d.ts +6 -6
- package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsList.sty.js +3 -3
- package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsListItem.css +7 -7
- package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsListItem.sty.js +3 -3
- package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableVisibilityFilterControls.css +5 -5
- package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableVisibilityFilterControls.sty.js +3 -3
- package/tables/DataTable/components/Toolbar/ColumnSettings/column-settings-types.d.ts +5 -1
- package/tables/DataTable/components/Toolbar/ColumnSettings/column-settings-utils.d.ts +31 -2
- package/tables/DataTable/components/Toolbar/ColumnSettings/column-settings-utils.js +72 -3
- package/tables/DataTable/components/Toolbar/DataTableToolbar.d.ts +5 -1
- package/tables/DataTable/components/Toolbar/DataTableToolbar.js +1 -0
- package/tables/DataTable/components/Toolbar/Download/DataTableDownloadData.css +3 -3
- package/tables/DataTable/components/Toolbar/Download/DataTableDownloadData.sty.js +2 -2
- package/tables/DataTable/features/ColumnOrder/ColumnOrder.css +8 -8
- package/tables/DataTable/features/ColumnOrder/ColumnOrder.sty.js +4 -4
- package/tables/DataTable/features/ColumnSizing/ColumnSizing.css +3 -3
- package/tables/DataTable/features/ColumnSizing/ColumnSizing.sty.js +1 -1
- package/tables/DataTable/features/ColumnTypes/ColumnTypes.css +1 -1
- package/tables/DataTable/features/ColumnTypes/ColumnTypes.sty.js +1 -1
- package/tables/DataTable/features/ColumnTypes/column-types-types.d.ts +2 -1
- package/tables/DataTable/features/ColumnVisibility/column-visibility-types.d.ts +17 -0
- package/tables/DataTable/features/Download/Download.js +1 -1
- package/tables/DataTable/features/GanttChart/DataTableGanttAnnotationsIndicators.css +1 -1
- package/tables/DataTable/features/GanttChart/DataTableGanttAnnotationsIndicators.sty.js +1 -1
- package/tables/DataTable/features/GanttChart/DataTableGanttChartCell.css +3 -3
- package/tables/DataTable/features/GanttChart/DataTableGanttChartCell.sty.js +2 -2
- package/tables/DataTable/features/GanttChart/DataTableGanttChartGrid.css +1 -1
- package/tables/DataTable/features/GanttChart/DataTableGanttChartGrid.js +3 -3
- package/tables/DataTable/features/GanttChart/DataTableGanttChartGrid.sty.js +1 -1
- package/tables/DataTable/features/GanttChart/DataTableGanttChartHeader.css +4 -4
- package/tables/DataTable/features/GanttChart/DataTableGanttChartHeader.sty.js +1 -1
- package/tables/DataTable/features/LoadingState/LoadingState.css +3 -3
- package/tables/DataTable/features/LoadingState/LoadingState.sty.js +3 -3
- package/tables/DataTable/features/RowDetails/RowDetails.css +13 -13
- package/tables/DataTable/features/RowDetails/RowDetails.sty.js +3 -3
- package/tables/DataTable/features/RowInteractivity/RowInteractivity.css +14 -14
- package/tables/DataTable/features/RowInteractivity/RowInteractivity.sty.js +1 -1
- package/tables/DataTable/features/RowOrder/RowOrder.css +8 -8
- package/tables/DataTable/features/RowOrder/RowOrder.sty.js +3 -3
- package/tables/DataTable/features/RowOrder/components/RowOrderingDragAndDropContext.js +1 -0
- package/tables/DataTable/features/Sorting/Sorting.css +34 -34
- package/tables/DataTable/features/Sorting/Sorting.sty.js +3 -3
- package/tables/DataTable/features/SubRows/SubRows.css +19 -19
- package/tables/DataTable/features/SubRows/SubRows.sty.js +5 -5
- package/tables/DataTable/features/Thresholds/Thresholds.css +2 -2
- package/tables/DataTable/features/Thresholds/Thresholds.sty.js +3 -3
- package/tables/DataTable/features/UserActions/RowActions.css +4 -4
- package/tables/DataTable/features/UserActions/RowActions.sty.js +1 -1
- package/tables/DataTable/features/UserActions/UserActions.css +18 -18
- package/tables/DataTable/features/UserActions/UserActions.sty.js +2 -2
- package/tables/DataTable/messages.d.ts +20 -0
- package/tables/DataTable/messages.js +22 -0
- package/tables/DataTable/public.api.d.ts +5 -3
- package/tables/SimpleTable/SimpleTable.css +27 -27
- package/tables/SimpleTable/SimpleTable.sty.js +1 -1
- package/tables/index.d.ts +1 -1
- package/typography/block-quote/Blockquote.css +2 -2
- package/typography/block-quote/Blockquote.sty.js +1 -1
- package/typography/code/Code.css +1 -1
- package/typography/code/Code.sty.js +1 -1
- package/typography/emphasis/Emphasis.css +1 -1
- package/typography/emphasis/Emphasis.sty.js +1 -1
- package/typography/external-link/ExternalLink.css +6 -6
- package/typography/external-link/ExternalLink.sty.js +1 -1
- package/typography/heading/Heading.css +7 -7
- package/typography/heading/Heading.sty.js +1 -1
- package/typography/highlight/Highlight.css +2 -2
- package/typography/highlight/Highlight.sty.js +1 -1
- package/typography/link/Link.css +4 -4
- package/typography/link/Link.sty.js +1 -1
- package/typography/list/List.css +4 -4
- package/typography/list/List.sty.js +2 -2
- package/typography/paragraph/Paragraph.css +3 -3
- package/typography/paragraph/Paragraph.sty.js +1 -1
- package/typography/strikethrough/Strikethrough.css +1 -1
- package/typography/strikethrough/Strikethrough.sty.js +1 -1
- package/typography/strong/Strong.css +1 -1
- package/typography/strong/Strong.sty.js +1 -1
- package/typography/text/Text.css +3 -3
- package/typography/text/Text.sty.js +1 -1
- package/typography/text-ellipsis/TextEllipsis.css +6 -6
- package/typography/text-ellipsis/TextEllipsis.sty.js +2 -2
- package/charts/core/components/toolbar/utils/estimate-toolbar-width.d.ts +0 -8
- package/charts/honeycomb/components/canvas/utils/define-text-to-render.d.ts +0 -3
- package/charts/honeycomb/components/canvas/utils/define-text-to-render.js +0 -34
- package/charts/tree-map/hooks/useSetOverlayState.d.ts +0 -3
- package/charts/tree-map/utils/text-measure.d.ts +0 -15
- package/content/ai-response/tests/AiResponse-animation.spec.d.ts +0 -1
- package/content/ai-response/tests/AiResponse-animation.spec.js +0 -281
- package/content/ai-response/tests/AiResponse-reduced-motion.spec.d.ts +0 -1
- package/content/ai-response/tests/AiResponse-reduced-motion.spec.js +0 -253
- package/content/ai-response/tests/vite-helpers.d.ts +0 -8
- package/content/ai-response/tests/vite-helpers.js +0 -66
- package/esm/charts/core/components/toolbar/utils/estimate-toolbar-width.js +0 -16
- package/esm/charts/core/components/toolbar/utils/estimate-toolbar-width.js.map +0 -7
- package/esm/charts/honeycomb/components/canvas/utils/define-text-to-render.js +0 -19
- package/esm/charts/honeycomb/components/canvas/utils/define-text-to-render.js.map +0 -7
- package/esm/charts/tree-map/hooks/useSetOverlayState.js +0 -21
- package/esm/charts/tree-map/hooks/useSetOverlayState.js.map +0 -7
- package/esm/charts/tree-map/utils/text-measure.js +0 -41
- package/esm/charts/tree-map/utils/text-measure.js.map +0 -7
- package/esm/content/ai-response/tests/AiResponse-animation.spec.js +0 -295
- package/esm/content/ai-response/tests/AiResponse-animation.spec.js.map +0 -7
- package/esm/content/ai-response/tests/AiResponse-reduced-motion.spec.js +0 -258
- package/esm/content/ai-response/tests/AiResponse-reduced-motion.spec.js.map +0 -7
- package/esm/content/ai-response/tests/vite-helpers.js +0 -50
- package/esm/content/ai-response/tests/vite-helpers.js.map +0 -7
- package/esm/filters/filter-field/contexts/SavedAndRecentQueryClientContext.js +0 -19
- package/esm/filters/filter-field/contexts/SavedAndRecentQueryClientContext.js.map +0 -7
- package/esm/filters/filter-field/error-fallback/ErrorFallback.js.map +0 -7
- package/esm/filters/filter-field/error-fallback/messages.js.map +0 -7
- package/esm/filters/filter-field/hooks/recent-and-pinned/usePersistedFilter.js +0 -163
- package/esm/filters/filter-field/hooks/recent-and-pinned/usePersistedFilter.js.map +0 -7
- package/esm/filters/filter-field/hooks/recent-and-pinned/useRecentFiltersStore.js +0 -25
- package/esm/filters/filter-field/hooks/recent-and-pinned/useRecentFiltersStore.js.map +0 -7
- package/filters/filter-field/contexts/SavedAndRecentQueryClientContext.d.ts +0 -6
- package/filters/filter-field/error-fallback/ErrorFallback.d.ts +0 -7
- package/filters/filter-field/hooks/recent-and-pinned/usePersistedFilter.d.ts +0 -12
- package/filters/filter-field/hooks/recent-and-pinned/usePersistedFilter.js +0 -176
- package/filters/filter-field/hooks/recent-and-pinned/useRecentFiltersStore.d.ts +0 -6
- package/filters/filter-field/hooks/recent-and-pinned/useRecentFiltersStore.js +0 -39
- /package/charts/xy-chart-adoption/{types → shared/types}/props.d.ts +0 -0
- /package/charts/xy-chart-adoption/{types → shared/types}/props.js +0 -0
- /package/{filters/filter-field → core/components}/error-fallback/ErrorFallback.js +0 -0
- /package/{charts/core → core}/utils/get-tick-value-as-number.d.ts +0 -0
- /package/{charts/core → core}/utils/get-tick-value-as-number.js +0 -0
- /package/esm/charts/{xy-chart-adoption/types/props.js.map → core/types/chart-data.js.map} +0 -0
- /package/esm/charts/xy-chart-adoption/{types → shared/types}/props.js +0 -0
- /package/esm/{filters/filter-field → core/components}/error-fallback/ErrorFallback.js +0 -0
- /package/esm/{charts/core → core}/utils/get-tick-value-as-number.js +0 -0
package/lang/uncompiled/en.json
CHANGED
|
@@ -1,2170 +1,2219 @@
|
|
|
1
1
|
{
|
|
2
|
+
"+1GjcNJdKJiZg6v/": {
|
|
3
|
+
"translation": "Package versions",
|
|
4
|
+
"notes": "HelpMenu entry that opens the package versions modal"
|
|
5
|
+
},
|
|
2
6
|
"+8N30Kx6cXgWSja4": {
|
|
3
|
-
"
|
|
4
|
-
"
|
|
7
|
+
"translation": "Pan right",
|
|
8
|
+
"notes": "Applies pan to the right"
|
|
5
9
|
},
|
|
6
10
|
"+BUznwQEJTiILiAa": {
|
|
7
|
-
"
|
|
8
|
-
"
|
|
11
|
+
"translation": "Add filter",
|
|
12
|
+
"notes": "Message to display by default for adding more Filters to the FilterBar."
|
|
9
13
|
},
|
|
10
14
|
"+Jc1Pz2t25AcHil0": {
|
|
11
|
-
"
|
|
12
|
-
"
|
|
15
|
+
"translation": "New",
|
|
16
|
+
"notes": "Chip label indicating a feature is newly released"
|
|
13
17
|
},
|
|
14
18
|
"+MYvp4qc5Ti3ddoO": {
|
|
15
|
-
"
|
|
16
|
-
"
|
|
19
|
+
"translation": "Up",
|
|
20
|
+
"notes": "Key shortcut in a tooltip shown when hovering the \"Zoom in\" action in the time series chart toolbar"
|
|
17
21
|
},
|
|
18
22
|
"+Q75VFLIzDqeN+do": {
|
|
19
|
-
"
|
|
20
|
-
"
|
|
23
|
+
"translation": "Filter and search statements can only be combined using an {allowedOperator}.",
|
|
24
|
+
"notes": "Filter field unsupported search operator and logical or"
|
|
21
25
|
},
|
|
22
26
|
"+Vxz7rIFW86zQsz8": {
|
|
23
|
-
"
|
|
24
|
-
"
|
|
27
|
+
"translation": "All table columns are hidden.",
|
|
28
|
+
"notes": "When all columns are hidden, this is shown in the main table area."
|
|
25
29
|
},
|
|
26
30
|
"+jn6HNnzB4IDIbZu": {
|
|
27
|
-
"
|
|
28
|
-
"
|
|
31
|
+
"translation": "Next",
|
|
32
|
+
"notes": "Microguide Next button."
|
|
29
33
|
},
|
|
30
34
|
"+kn/ILSk7yxtVqQ/": {
|
|
31
|
-
"
|
|
32
|
-
"
|
|
35
|
+
"translation": "This segment doesn't exist anymore. Please remove it from the selection.",
|
|
36
|
+
"notes": "Error message if the segment was removed but is still selected."
|
|
33
37
|
},
|
|
34
38
|
"+mEjL2q8RACwzIMR": {
|
|
35
|
-
"
|
|
36
|
-
"
|
|
39
|
+
"translation": "Switch to overlay",
|
|
40
|
+
"notes": "Label for the button that switches the details panel to overlay mode."
|
|
37
41
|
},
|
|
38
42
|
"+qNOmVAE1opriSnf": {
|
|
39
|
-
"
|
|
40
|
-
"
|
|
43
|
+
"translation": "Greater than or equal to",
|
|
44
|
+
"notes": "Filter field greater than or equal operator description"
|
|
41
45
|
},
|
|
42
46
|
"+uTtPJkLATW51CDB": {
|
|
43
|
-
"
|
|
44
|
-
"
|
|
47
|
+
"translation": "Filter by segments",
|
|
48
|
+
"notes": "FieldSet Label in SegmentSelector Overlay."
|
|
45
49
|
},
|
|
46
50
|
"/4+vzbJXQx9/bHQ9": {
|
|
47
|
-
"
|
|
48
|
-
"
|
|
51
|
+
"translation": "Value",
|
|
52
|
+
"notes": "Text label for the value in the tooltip. Displayed when hovering over Pie, Meterbar, Treemap, Rect and Honeycomb geometries."
|
|
49
53
|
},
|
|
50
54
|
"/DJNcsGLrHi/d+Cy": {
|
|
51
|
-
"
|
|
52
|
-
"
|
|
55
|
+
"translation": "Download CSV",
|
|
56
|
+
"notes": "Label for the download group in the table actions menu"
|
|
53
57
|
},
|
|
54
58
|
"/H3rbOvaR6bAasVo": {
|
|
55
|
-
"
|
|
56
|
-
"
|
|
59
|
+
"translation": "Clear selection",
|
|
60
|
+
"notes": "Select component clear selection button."
|
|
57
61
|
},
|
|
58
62
|
"/SFvkA0WT3AVdLhH": {
|
|
59
|
-
"
|
|
60
|
-
"
|
|
63
|
+
"translation": "Filter JSON attributes",
|
|
64
|
+
"notes": "Details shown for JSONPath key suggestions."
|
|
61
65
|
},
|
|
62
66
|
"/cBMcieLHGw0wJxk": {
|
|
63
|
-
"
|
|
64
|
-
"
|
|
67
|
+
"translation": "Successfully reset everything to default.",
|
|
68
|
+
"notes": "Status message that resetting column settings to default was successful."
|
|
65
69
|
},
|
|
66
70
|
"/cwiOkubC69MZmRu": {
|
|
67
|
-
"
|
|
68
|
-
"
|
|
71
|
+
"translation": "Please provide input in a valid format.",
|
|
72
|
+
"notes": "Error message for input that the browser is unable to convert, e.g. string for a number input."
|
|
69
73
|
},
|
|
70
74
|
"/dH1ZDxCvqGesp4H": {
|
|
71
|
-
"
|
|
72
|
-
"
|
|
75
|
+
"translation": "Invalid filter value. The supported values for this key are 'true' and 'false'.",
|
|
76
|
+
"notes": "Invalid value error for boolean type"
|
|
73
77
|
},
|
|
74
78
|
"/gODMPYFdp49RodI": {
|
|
75
|
-
"
|
|
76
|
-
"
|
|
79
|
+
"translation": "Starts with {value}",
|
|
80
|
+
"notes": "Message shown if the starts-with operator can be used with the current value."
|
|
77
81
|
},
|
|
78
82
|
"/jHof2z8yLr/qa9U": {
|
|
79
|
-
"
|
|
80
|
-
"
|
|
83
|
+
"translation": "Grouping statements is not supported in the basic syntax mode.",
|
|
84
|
+
"notes": "Filter field unsupported group"
|
|
81
85
|
},
|
|
82
86
|
"01469lp26TkXjPEz": {
|
|
83
|
-
"
|
|
84
|
-
"
|
|
87
|
+
"translation": "Open {panelName}",
|
|
88
|
+
"notes": "Label for the panel control button."
|
|
85
89
|
},
|
|
86
90
|
"0VRyxKUSWrEGrYLJ": {
|
|
87
|
-
"
|
|
88
|
-
"
|
|
91
|
+
"translation": "Supported values: SmartscapeIds",
|
|
92
|
+
"notes": "Message shown for value suggestions restricted by a validator map (only SmartscapeIds are valid)"
|
|
89
93
|
},
|
|
90
94
|
"0Y8wN2jk+BAa2NoC": {
|
|
91
|
-
"
|
|
92
|
-
"
|
|
95
|
+
"translation": "Please select a {term} earlier than {max}.",
|
|
96
|
+
"notes": "Error message for a date or a timeframe later then the expected maximum."
|
|
93
97
|
},
|
|
94
98
|
"0h7hXAauFUZKiVcD": {
|
|
95
|
-
"
|
|
96
|
-
"
|
|
99
|
+
"translation": "IP address",
|
|
100
|
+
"notes": "Label for IP address type used in mixed type error messages"
|
|
97
101
|
},
|
|
98
102
|
"0mIAvvhLoJG6DVyY": {
|
|
99
|
-
"
|
|
100
|
-
"
|
|
103
|
+
"translation": "Add YAML",
|
|
104
|
+
"notes": "Default placeholder for code editor when the language is YAML."
|
|
101
105
|
},
|
|
102
106
|
"0ntbampPIxNnacS8": {
|
|
103
|
-
"
|
|
104
|
-
"
|
|
107
|
+
"translation": "Detail View",
|
|
108
|
+
"notes": "Panel name translation"
|
|
105
109
|
},
|
|
106
110
|
"0pTypH/J5FqapHUE": {
|
|
107
|
-
"
|
|
108
|
-
"
|
|
111
|
+
"translation": "Invalid filter value.",
|
|
112
|
+
"notes": "Filter field invalid value error"
|
|
109
113
|
},
|
|
110
114
|
"0yl3EugW5oCHVbO1": {
|
|
111
|
-
"
|
|
112
|
-
"
|
|
115
|
+
"translation": "Close microguide",
|
|
116
|
+
"notes": "Close the microguide."
|
|
113
117
|
},
|
|
114
118
|
"14mVeqEFpqD2fpev": {
|
|
115
|
-
"
|
|
116
|
-
"
|
|
119
|
+
"translation": "Value must be less or equal to {max}.",
|
|
120
|
+
"notes": "Error message for input that value is higher then the max."
|
|
117
121
|
},
|
|
118
122
|
"1HXxdMWF9JUS/EWC": {
|
|
119
|
-
"
|
|
120
|
-
"
|
|
123
|
+
"translation": "Pan left",
|
|
124
|
+
"notes": "Applies pan to the left"
|
|
121
125
|
},
|
|
122
126
|
"1TnPlwjdgpaLY1uE": {
|
|
123
|
-
"
|
|
124
|
-
"
|
|
127
|
+
"translation": "A group seems to be missing a bracket.",
|
|
128
|
+
"notes": "Filter field incomplete group error"
|
|
125
129
|
},
|
|
126
130
|
"1cycyeSJyv4MEQyz": {
|
|
127
|
-
"
|
|
128
|
-
"
|
|
131
|
+
"translation": "List of timeframe presets",
|
|
132
|
+
"notes": "Aria label for the list of timeframe presets."
|
|
129
133
|
},
|
|
130
134
|
"1e3uPo8SoI4NA2dZ": {
|
|
131
|
-
"
|
|
132
|
-
"
|
|
135
|
+
"translation": "Show",
|
|
136
|
+
"notes": "Text in a tooltip shown when hovering a legend series to show it"
|
|
133
137
|
},
|
|
134
138
|
"1fdceSDwpC0elRzY": {
|
|
135
|
-
"
|
|
136
|
-
"
|
|
139
|
+
"translation": "{value} recently used suggestion(s).",
|
|
140
|
+
"notes": "Screen reader announcement for the count of recently used filter suggestions available for selection."
|
|
137
141
|
},
|
|
138
142
|
"1ierRkr3xtpxyOXK": {
|
|
139
|
-
"
|
|
140
|
-
"
|
|
143
|
+
"translation": "{prefix, select, past {Last} future {Next} relativeFuture {In} other {}} {offset, plural, one {# millisecond} other {# milliseconds}}{suffix}",
|
|
144
|
+
"notes": "Timeframe formatter: timeframe-millisecond"
|
|
141
145
|
},
|
|
142
146
|
"1paaTnYOwnYa5MKF": {
|
|
143
|
-
"
|
|
144
|
-
"
|
|
147
|
+
"translation": "Node",
|
|
148
|
+
"notes": "Text label for the node in the tooltip. Displayed when hovering over Treemap and Honeycomb geometries."
|
|
145
149
|
},
|
|
146
150
|
"1qd7igf1SoPYptNg": {
|
|
147
|
-
"
|
|
148
|
-
"
|
|
151
|
+
"translation": "{count} data points",
|
|
152
|
+
"notes": "Text in the tooltip header showing the number of selected data points"
|
|
149
153
|
},
|
|
150
154
|
"1xChk0S6M7Z4tXFB": {
|
|
151
|
-
"
|
|
152
|
-
"
|
|
155
|
+
"translation": "The search operator is not supported in this filter field.",
|
|
156
|
+
"notes": "Filter field unsupported search operator"
|
|
153
157
|
},
|
|
154
158
|
"1yn5LJXBZlEagfkL": {
|
|
155
|
-
"
|
|
156
|
-
"
|
|
159
|
+
"translation": "The filter key is missing.",
|
|
160
|
+
"notes": "Filter field missing key error"
|
|
157
161
|
},
|
|
158
162
|
"2+ypcBK9NuQ5zg1k": {
|
|
159
|
-
"
|
|
160
|
-
"
|
|
163
|
+
"translation": "Close message",
|
|
164
|
+
"notes": "Aria label used for the close button of the information"
|
|
161
165
|
},
|
|
162
166
|
"21mG229oVCMPPsYY": {
|
|
163
|
-
"
|
|
164
|
-
"
|
|
167
|
+
"translation": "Reset filters",
|
|
168
|
+
"notes": "Shown for the reset button of the FilterBar."
|
|
165
169
|
},
|
|
166
170
|
"2BSsAVmKpHHX76YB": {
|
|
167
|
-
"
|
|
168
|
-
"
|
|
171
|
+
"translation": "Wildcards '*' aren't supported in lists. To include an asterisk in a value, escape it by adding a backslash '\\' in front or wrapping the value in double quotes.",
|
|
172
|
+
"notes": "Filter field invalid wildcard operator in list"
|
|
169
173
|
},
|
|
170
174
|
"2DJQNdEozwBZPASX": {
|
|
171
|
-
"
|
|
172
|
-
"
|
|
175
|
+
"translation": "Invalid filter value. Only text values are supported for this key.",
|
|
176
|
+
"notes": "Invalid value error for text type"
|
|
173
177
|
},
|
|
174
178
|
"2TgksAr68bjM6G9M": {
|
|
175
|
-
"
|
|
176
|
-
"
|
|
179
|
+
"translation": "Matches one or more values in a list of values",
|
|
180
|
+
"notes": "Filter field in operator description"
|
|
177
181
|
},
|
|
178
182
|
"2YBMATuaXx9/4zBP": {
|
|
179
|
-
"
|
|
180
|
-
"
|
|
183
|
+
"translation": "scroll tabs right",
|
|
184
|
+
"notes": "Aria label to scroll the tabs to the right"
|
|
181
185
|
},
|
|
182
186
|
"2w4ytnIw5OSGcvDR": {
|
|
183
|
-
"
|
|
184
|
-
"
|
|
187
|
+
"translation": "Sort ascending",
|
|
188
|
+
"notes": "Column action menu item for sorting a column in ascending order (single sort)."
|
|
185
189
|
},
|
|
186
190
|
"2zjArS0xoR2Fy4/o": {
|
|
187
|
-
"
|
|
188
|
-
"
|
|
191
|
+
"translation": "Reset",
|
|
192
|
+
"notes": "Text in a tooltip shown when hovering the \"Reset\" action in the time series chart toolbar"
|
|
189
193
|
},
|
|
190
194
|
"313HlKgYmTnqRqJU": {
|
|
191
|
-
"
|
|
192
|
-
"
|
|
195
|
+
"translation": "Loading suggestions",
|
|
196
|
+
"notes": "Message shown when suggestions are currently loaded."
|
|
193
197
|
},
|
|
194
198
|
"3J6qHQEUwDxvZuIl": {
|
|
195
|
-
"
|
|
196
|
-
"
|
|
199
|
+
"translation": "Loading",
|
|
200
|
+
"notes": "Default label for the progress-bar."
|
|
197
201
|
},
|
|
198
202
|
"3ZX0IG+5tekB89nr": {
|
|
199
|
-
"
|
|
200
|
-
"
|
|
203
|
+
"translation": "Select options",
|
|
204
|
+
"notes": "Default placeholder text for the multi select."
|
|
201
205
|
},
|
|
202
206
|
"3jYmiQ54m6nCawn6": {
|
|
203
|
-
"
|
|
204
|
-
"
|
|
207
|
+
"translation": "{value, select, false {Search for a phrase} other {Search{value}}}",
|
|
208
|
+
"notes": "Empty state message shown if no key or value is provided yet."
|
|
205
209
|
},
|
|
206
210
|
"3oBNy/ExeWqmMWha": {
|
|
207
|
-
"
|
|
208
|
-
"
|
|
211
|
+
"translation": "Series {index}",
|
|
212
|
+
"notes": "Fallback label used for XY chart series when no valid name accessor value is provided."
|
|
209
213
|
},
|
|
210
214
|
"3zpFLdLODjLHgabp": {
|
|
211
|
-
"
|
|
212
|
-
"
|
|
215
|
+
"translation": "Invalid filter value. Only uid64, uid128 and uuid formats are supported for this key.",
|
|
216
|
+
"notes": "Invalid value error for UID type"
|
|
213
217
|
},
|
|
214
218
|
"42g95tLLPXcqbFLl": {
|
|
215
|
-
"
|
|
216
|
-
"
|
|
219
|
+
"translation": "DD",
|
|
220
|
+
"notes": "The abbreviation of the day part of a date value"
|
|
217
221
|
},
|
|
218
222
|
"44M+LwJIb1lbO5Ev": {
|
|
219
|
-
"
|
|
220
|
-
"
|
|
223
|
+
"translation": "Doesn't match one or more values in a list of values",
|
|
224
|
+
"notes": "Filter field not in operator description"
|
|
221
225
|
},
|
|
222
226
|
"47orYkGnlAr7+sPw": {
|
|
223
|
-
"
|
|
224
|
-
"
|
|
227
|
+
"translation": "Copy value",
|
|
228
|
+
"notes": "Text in the cell action item for copying the content of the table cell to the clipboard."
|
|
225
229
|
},
|
|
226
230
|
"4Dfz/uq2jb0sD782": {
|
|
227
|
-
"
|
|
228
|
-
"
|
|
231
|
+
"translation": "Supported values: 'true', 'false'",
|
|
232
|
+
"notes": "Message shown for value suggestions restricted by a validator map (only \"true\" and \"false\" are valid)"
|
|
229
233
|
},
|
|
230
234
|
"4ER0rfN8lI3HtaFd": {
|
|
231
|
-
"
|
|
232
|
-
"
|
|
235
|
+
"translation": "Group of Avatars. {hiddenAvatars} hidden, {totalAvatars} total users",
|
|
236
|
+
"notes": "Label for the collapsed Avatars."
|
|
233
237
|
},
|
|
234
238
|
"4NCInqG2qgKe0TSA": {
|
|
235
|
-
"
|
|
236
|
-
"
|
|
239
|
+
"translation": "Sorted {direction, select, asc {ascending} desc {descending} other {unsorted}}, sort priority {priority} of {total}.",
|
|
240
|
+
"notes": "Aria description announcing the current sorting state and priority in multi-column sorting."
|
|
237
241
|
},
|
|
238
242
|
"4PipZ2Z07Q9epib1": {
|
|
239
|
-
"
|
|
240
|
-
"
|
|
243
|
+
"translation": "Search available options",
|
|
244
|
+
"notes": "Aria label for the filter inside the select"
|
|
241
245
|
},
|
|
242
246
|
"4ccf9fJlKURtBw/8": {
|
|
243
|
-
"
|
|
244
|
-
"
|
|
247
|
+
"translation": "Suggestions for pasted content",
|
|
248
|
+
"notes": "Aria label for the pasted content suggestion group."
|
|
245
249
|
},
|
|
246
250
|
"4yANH5gdmW1efk0I": {
|
|
247
|
-
"
|
|
248
|
-
"
|
|
251
|
+
"translation": "Please enter a start and end time.",
|
|
252
|
+
"notes": "Start and end values are missing."
|
|
249
253
|
},
|
|
250
254
|
"5+yhrNhI2AlQmDAo": {
|
|
251
|
-
"
|
|
252
|
-
"
|
|
255
|
+
"translation": "hh",
|
|
256
|
+
"notes": "The abbreviation of the hour part of a time value"
|
|
253
257
|
},
|
|
254
258
|
"568KZGFcxrq95nEC": {
|
|
255
|
-
"
|
|
256
|
-
"
|
|
259
|
+
"translation": "Pinned in {appName}",
|
|
260
|
+
"notes": "Headline to group recently used segments presets."
|
|
261
|
+
},
|
|
262
|
+
"5BpZ1y39lJ+Q6BOs": {
|
|
263
|
+
"translation": "Displaying more than {limit} {limit, plural, one {column} other {columns}} may affect this table's performance.",
|
|
264
|
+
"notes": "Warning message shown in column settings modal when the number of visible columns exceeds the warning threshold."
|
|
257
265
|
},
|
|
258
266
|
"5Byu0D+YGc1DoTBc": {
|
|
259
|
-
"
|
|
260
|
-
"
|
|
267
|
+
"translation": "A logical operator cannot occur in this position.",
|
|
268
|
+
"notes": "Filter field invalid logical operator"
|
|
261
269
|
},
|
|
262
270
|
"5E11MLQX1RFMIXOL": {
|
|
263
|
-
"
|
|
264
|
-
"
|
|
271
|
+
"translation": "Use{value}as value",
|
|
272
|
+
"notes": "Message shown if a generic value may be available in the suggestion."
|
|
265
273
|
},
|
|
266
274
|
"5LZ+8QkdLQxXxC7M": {
|
|
267
|
-
"
|
|
268
|
-
"
|
|
275
|
+
"translation": "Download as CSV",
|
|
276
|
+
"notes": "Text in a tooltip shown when hovering the \"Download data\" button in the histogram chart toolbar"
|
|
269
277
|
},
|
|
270
278
|
"5XoVjJUQ5b86MLW+": {
|
|
271
|
-
"
|
|
272
|
-
"
|
|
279
|
+
"translation": "Value must be higher or equal to {min}.",
|
|
280
|
+
"notes": "Error message for input that value is lower then the max."
|
|
273
281
|
},
|
|
274
282
|
"5eX0f5J5OWwoQNSw": {
|
|
275
|
-
"
|
|
276
|
-
"
|
|
283
|
+
"translation": "Sort",
|
|
284
|
+
"notes": "Sub-menu trigger label for sorting actions in the column actions menu."
|
|
277
285
|
},
|
|
278
286
|
"5i26Rr1LLz0OIGNJ": {
|
|
279
|
-
"
|
|
280
|
-
"
|
|
287
|
+
"translation": "Clear date and time",
|
|
288
|
+
"notes": "Aria label for the DateTimePicker clear button."
|
|
281
289
|
},
|
|
282
290
|
"62QNu9Nw8T2nbJHu": {
|
|
283
|
-
"
|
|
284
|
-
"
|
|
291
|
+
"translation": "SmartscapeId",
|
|
292
|
+
"notes": "Label for SmartscapeId type used in mixed type error messages"
|
|
285
293
|
},
|
|
286
294
|
"6GOnX5pixiNcVALE": {
|
|
287
|
-
"
|
|
288
|
-
"
|
|
295
|
+
"translation": "No data points",
|
|
296
|
+
"notes": "Text in the tooltip header showing that are no data points selected"
|
|
289
297
|
},
|
|
290
298
|
"6Ut4st/DFcfYJorv": {
|
|
291
|
-
"
|
|
292
|
-
"
|
|
299
|
+
"translation": "Sorted {direction, select, asc {ascending} desc {descending} other {unsorted}}.",
|
|
300
|
+
"notes": "Aria description announcing the current sorting state of the column header."
|
|
293
301
|
},
|
|
294
302
|
"6ZC5vGSgjnplvo7x": {
|
|
295
|
-
"
|
|
296
|
-
"
|
|
303
|
+
"translation": "You'll be notified about updates via email.",
|
|
304
|
+
"notes": "Additional information text used for the notify button overlay when notifications are enabled"
|
|
297
305
|
},
|
|
298
306
|
"6vA3zfYytiSPVBZV": {
|
|
299
|
-
"
|
|
300
|
-
"
|
|
307
|
+
"translation": "Copy name",
|
|
308
|
+
"notes": "Text in a tooltip shown when clicking a tooltip item and hovering the copy button next to its name"
|
|
309
|
+
},
|
|
310
|
+
"7/hGI/teTlqSMko6": {
|
|
311
|
+
"translation": "Format query",
|
|
312
|
+
"notes": "Menu item label to format the DQL query."
|
|
301
313
|
},
|
|
302
314
|
"72DlIwYKB9UTEzlA": {
|
|
303
|
-
"
|
|
304
|
-
"
|
|
315
|
+
"translation": "No values for this segment available. You can manage this segment in {link}.",
|
|
316
|
+
"notes": "Empty state message if no variables for the segment are available."
|
|
305
317
|
},
|
|
306
318
|
"7IzOa/lx4Dc/qLGo": {
|
|
307
|
-
"
|
|
308
|
-
"
|
|
319
|
+
"translation": "Close notification",
|
|
320
|
+
"notes": "Aria-label for the close notification button."
|
|
309
321
|
},
|
|
310
322
|
"7M6Jd0cEy/ruEDEZ": {
|
|
311
|
-
"
|
|
312
|
-
"
|
|
323
|
+
"translation": "Contains {value}",
|
|
324
|
+
"notes": "Message shown if the contains operator can be used with the current value."
|
|
313
325
|
},
|
|
314
326
|
"7cB3GSVBVIfSrN8y": {
|
|
315
|
-
"
|
|
316
|
-
"
|
|
327
|
+
"translation": "Something went wrong. Please try again later.",
|
|
328
|
+
"notes": "Message for the generic error toast"
|
|
317
329
|
},
|
|
318
330
|
"7eS8L2HEADvzM6q2": {
|
|
319
|
-
"
|
|
320
|
-
"
|
|
331
|
+
"translation": "Search statements aren't supported in groups.",
|
|
332
|
+
"notes": "Filter field invalid search operator inside group"
|
|
321
333
|
},
|
|
322
334
|
"7tnC6f9ag1/zG/vh": {
|
|
323
|
-
"
|
|
324
|
-
"
|
|
335
|
+
"translation": "Add text",
|
|
336
|
+
"notes": "Default placeholder for text input."
|
|
325
337
|
},
|
|
326
338
|
"7vkTbyAZNeY/qa9p": {
|
|
327
|
-
"
|
|
328
|
-
"
|
|
339
|
+
"translation": "{length} segments",
|
|
340
|
+
"notes": "Text for SegmentSelector Trigger when multiple segments are selected."
|
|
329
341
|
},
|
|
330
342
|
"7zZeVBfEiXm3xbwL": {
|
|
331
|
-
"
|
|
332
|
-
"
|
|
343
|
+
"translation": "Starts with",
|
|
344
|
+
"notes": "Filter field starts-with operator description"
|
|
333
345
|
},
|
|
334
346
|
"83QccW/P4JcNgO6M": {
|
|
335
|
-
"
|
|
336
|
-
"
|
|
347
|
+
"translation": "Invalid filter value. Only values of type {allowedTypes} are supported for this key.",
|
|
348
|
+
"notes": "Invalid value error when multiple types are allowed for a key"
|
|
337
349
|
},
|
|
338
350
|
"89sBAyzLbeW6GyPJ": {
|
|
339
|
-
"
|
|
340
|
-
"
|
|
351
|
+
"translation": "Invalid start and end time. Expected format: {expectedFormat}, -2h or -2d@d",
|
|
352
|
+
"notes": "Given from and to values are invalid"
|
|
341
353
|
},
|
|
342
354
|
"8KQslb+aIgOg9wbA": {
|
|
343
|
-
"
|
|
344
|
-
"
|
|
355
|
+
"translation": "Supported values: Timestamps",
|
|
356
|
+
"notes": "Message shown for value suggestions restricted by a validator map (only Timestamps are valid)"
|
|
345
357
|
},
|
|
346
358
|
"8a6rHEksmq2fZCQl": {
|
|
347
|
-
"
|
|
348
|
-
"
|
|
359
|
+
"translation": "{isDetailsOpen, select, true {Collapse} other {Expand}} row with id {id}",
|
|
360
|
+
"notes": "Aria label used for data table expandable row trigger."
|
|
361
|
+
},
|
|
362
|
+
"8bfwTDfvbh8A1Rkz": {
|
|
363
|
+
"translation": "Early Access",
|
|
364
|
+
"notes": "Chip label indicating a feature or an app is in early access release phase"
|
|
349
365
|
},
|
|
350
366
|
"8fzPtb8YMF5R1xlh": {
|
|
351
|
-
"
|
|
352
|
-
"
|
|
367
|
+
"translation": "Doesn't end with",
|
|
368
|
+
"notes": "Filter field not-ends-with operator description"
|
|
353
369
|
},
|
|
354
370
|
"8kqNkvIZtJIon5xR": {
|
|
355
|
-
"
|
|
356
|
-
"
|
|
371
|
+
"translation": "Recently used",
|
|
372
|
+
"notes": "Heading for the recently used timeframes."
|
|
357
373
|
},
|
|
358
374
|
"8lZa/1S3ydSfb3iO": {
|
|
359
|
-
"
|
|
360
|
-
"
|
|
375
|
+
"translation": "Contains is not supported for this key.",
|
|
376
|
+
"notes": "Message shown if the contains operator is not supported for this key."
|
|
361
377
|
},
|
|
362
378
|
"9/nhbjHpPPAhMbHo": {
|
|
363
379
|
"translation": "About this app"
|
|
364
380
|
},
|
|
365
381
|
"91t8w7tO+iaic/Z+": {
|
|
366
|
-
"
|
|
367
|
-
"
|
|
382
|
+
"translation": "1 of 1",
|
|
383
|
+
"notes": "Text displaying the page indicator when there is only 1 page in the table"
|
|
368
384
|
},
|
|
369
385
|
"92og/kC9Mmwxmmg0": {
|
|
370
|
-
"
|
|
371
|
-
"
|
|
386
|
+
"translation": "Preview",
|
|
387
|
+
"notes": "Chip label indicating a feature or an app is in preview release phase"
|
|
372
388
|
},
|
|
373
389
|
"986buSbL34GVFlBf": {
|
|
374
|
-
"
|
|
375
|
-
"
|
|
390
|
+
"translation": "Show less",
|
|
391
|
+
"notes": "Shown for collapsible text."
|
|
376
392
|
},
|
|
377
393
|
"9AzZAjitLsfniU2y": {
|
|
378
|
-
"
|
|
379
|
-
"
|
|
394
|
+
"translation": "Add TSX",
|
|
395
|
+
"notes": "Default placeholder for code editor when the language is TSX."
|
|
380
396
|
},
|
|
381
397
|
"9IaEBlhZa5HXmHA+": {
|
|
382
|
-
"
|
|
383
|
-
"
|
|
398
|
+
"translation": "{isPinned, select, true {Unpin} other {Pin}} filter with value \"{filterString}",
|
|
399
|
+
"notes": "Aria label for the pin/unpin button in the filter field suggestions"
|
|
384
400
|
},
|
|
385
401
|
"9JhiinIAmqWKBJae": {
|
|
386
|
-
"
|
|
387
|
-
"
|
|
402
|
+
"translation": "Download as CSV",
|
|
403
|
+
"notes": "Text in a tooltip shown when hovering the \"Download data\" button in the pie chart toolbar"
|
|
388
404
|
},
|
|
389
405
|
"9MaYq2HH+ggxyA1g": {
|
|
390
|
-
"
|
|
391
|
-
"
|
|
406
|
+
"translation": "Trigger column actions",
|
|
407
|
+
"notes": "Aria label for DataTable column actions trigger"
|
|
392
408
|
},
|
|
393
409
|
"9RcckxxccNTcNVf9": {
|
|
394
410
|
"translation": "Sidebar"
|
|
395
411
|
},
|
|
396
412
|
"9SDB/Tz9eGlVpihz": {
|
|
397
|
-
"
|
|
398
|
-
"
|
|
413
|
+
"translation": "An error occurred",
|
|
414
|
+
"notes": "Message to display when there is an error"
|
|
399
415
|
},
|
|
400
416
|
"9XjoWQoeIKxStpgZ": {
|
|
401
|
-
"
|
|
402
|
-
"
|
|
417
|
+
"translation": "Please select a {term} later than {min}.",
|
|
418
|
+
"notes": "Error message for a date or a timeframe earlier than the required minimum."
|
|
403
419
|
},
|
|
404
420
|
"9xnhCHCgU7NGIxiX": {
|
|
405
|
-
"
|
|
406
|
-
"
|
|
421
|
+
"translation": "Doesn't start with {value}",
|
|
422
|
+
"notes": "Message shown if the not-starts-with operator can be used with the current value."
|
|
407
423
|
},
|
|
408
424
|
"A1+FGKx7bONltqJV": {
|
|
409
|
-
"
|
|
410
|
-
"
|
|
425
|
+
"translation": "Reset to default",
|
|
426
|
+
"notes": "Resets column settings to default"
|
|
411
427
|
},
|
|
412
428
|
"A9Pdb5T48IHfEauq": {
|
|
413
|
-
"
|
|
414
|
-
"
|
|
429
|
+
"translation": "Calendar overlay for picking a date",
|
|
430
|
+
"notes": "Aria label for the date time picker overlay."
|
|
415
431
|
},
|
|
416
432
|
"ABXa8Ni5H9+ZO7E0": {
|
|
417
|
-
"
|
|
418
|
-
"
|
|
433
|
+
"translation": "Missing operator.",
|
|
434
|
+
"notes": "Filter field missing operator"
|
|
419
435
|
},
|
|
420
436
|
"ADLDZ8spJCrDx/6Q": {
|
|
421
|
-
"
|
|
422
|
-
"
|
|
437
|
+
"translation": "{offset, plural, one {# hour} other {# hours}}",
|
|
438
|
+
"notes": "Timeframe duration formatter: timeframe-hour"
|
|
423
439
|
},
|
|
424
440
|
"AHh4uuTMLAOichXS": {
|
|
425
|
-
"
|
|
426
|
-
"
|
|
441
|
+
"translation": "Pan mode",
|
|
442
|
+
"notes": "Text in a tooltip shown when hovering the \"Pan\" mode in the histogram chart toolbar"
|
|
427
443
|
},
|
|
428
444
|
"ARdI7d8cJxHnUayP": {
|
|
429
|
-
"
|
|
430
|
-
"
|
|
445
|
+
"translation": "Show {count} {moreOrLess}",
|
|
446
|
+
"notes": "Label for the expand / collapse button."
|
|
431
447
|
},
|
|
432
448
|
"AYfNQEjfwenkbxsg": {
|
|
433
|
-
"
|
|
434
|
-
"
|
|
449
|
+
"translation": "{offset, plural, one {# month} other {# months}}",
|
|
450
|
+
"notes": "Timeframe duration formatter: timeframe-month"
|
|
435
451
|
},
|
|
436
452
|
"Ah9w1glbeyevy7N+": {
|
|
437
|
-
"
|
|
438
|
-
"
|
|
453
|
+
"translation": "Icon indicating that the column is sortable",
|
|
454
|
+
"notes": "Aria-label for sortable columns that are not yet sorted in any direction."
|
|
439
455
|
},
|
|
440
456
|
"B/DeQ4xCT/IrvyuQ": {
|
|
441
|
-
"
|
|
442
|
-
"
|
|
457
|
+
"translation": "Full day",
|
|
458
|
+
"notes": "Timeframe formatter: timeframe-full-day"
|
|
443
459
|
},
|
|
444
460
|
"B0JVHiCeA3v550+2": {
|
|
445
|
-
"
|
|
446
|
-
"
|
|
461
|
+
"translation": "Pin right",
|
|
462
|
+
"notes": "Text in the menu item for pinning the column to the right."
|
|
447
463
|
},
|
|
448
464
|
"B1od+sZZT/rP8Plf": {
|
|
449
|
-
"
|
|
450
|
-
"
|
|
465
|
+
"translation": "Download as CSV",
|
|
466
|
+
"notes": "Text in a tooltip shown when hovering the \"Download data\" button in the chart toolbar"
|
|
451
467
|
},
|
|
452
468
|
"B3Rj3sRBMMfDBuzK": {
|
|
453
|
-
"
|
|
454
|
-
"
|
|
469
|
+
"translation": "Add password",
|
|
470
|
+
"notes": "Default placeholder for password input."
|
|
455
471
|
},
|
|
456
472
|
"BAfEyw7BhyJX3dfC": {
|
|
457
|
-
"
|
|
458
|
-
"
|
|
473
|
+
"translation": "Suggestions",
|
|
474
|
+
"notes": "Aria label for the suggestions overlay"
|
|
459
475
|
},
|
|
460
476
|
"BDzwWccOiezgFJp3": {
|
|
461
|
-
"
|
|
462
|
-
"
|
|
477
|
+
"translation": "List of recently used timeframes",
|
|
478
|
+
"notes": "Aria label for the list of recently used timeframes."
|
|
463
479
|
},
|
|
464
480
|
"BEx30+lYFzO9WeY5": {
|
|
465
|
-
"
|
|
466
|
-
"
|
|
481
|
+
"translation": "to",
|
|
482
|
+
"notes": "Range header tooltip text"
|
|
467
483
|
},
|
|
468
484
|
"BYUJpW8TBonAxnYd": {
|
|
469
|
-
"
|
|
470
|
-
"
|
|
485
|
+
"translation": "Sidebar",
|
|
486
|
+
"notes": "Accessible label for the sidebar panel."
|
|
471
487
|
},
|
|
472
488
|
"BfMOguQOfnAxwOI6": {
|
|
473
|
-
"
|
|
474
|
-
"
|
|
489
|
+
"translation": "Supported values: UIDs",
|
|
490
|
+
"notes": "Message shown for value suggestions restricted by a validator map (only UIDs are valid)"
|
|
475
491
|
},
|
|
476
492
|
"BfrmGp7APB2nlQRw": {
|
|
477
|
-
"
|
|
478
|
-
"
|
|
493
|
+
"translation": "{prefix, select, previous {Previous} next {Next} other {This}} {amount, plural, one {week} other {# weeks}}",
|
|
494
|
+
"notes": "Timeframe formatter: timeframe-roundDown-week"
|
|
479
495
|
},
|
|
480
496
|
"BlGZxVNh87aTe30G": {
|
|
481
|
-
"
|
|
482
|
-
"
|
|
497
|
+
"translation": "Today",
|
|
498
|
+
"notes": "Timeframe formatter: timeframe-today"
|
|
483
499
|
},
|
|
484
500
|
"Bo8Z1UaJVL3ONFo8": {
|
|
485
|
-
"
|
|
486
|
-
"
|
|
501
|
+
"translation": "MM",
|
|
502
|
+
"notes": "The abbreviation of the month part of a date value"
|
|
487
503
|
},
|
|
488
504
|
"BxL/OHRXGQ4NxkRA": {
|
|
489
|
-
"
|
|
490
|
-
"
|
|
505
|
+
"translation": "Sort descending",
|
|
506
|
+
"notes": "Column action menu item for sorting a column in descending order (single sort)."
|
|
491
507
|
},
|
|
492
508
|
"CQIPnzlUQ9+DqtjP": {
|
|
493
|
-
"
|
|
494
|
-
"
|
|
509
|
+
"translation": "Zoom to selection",
|
|
510
|
+
"notes": "Text shown in the tooltip as the default action when performing a select interaction in the xy chart"
|
|
495
511
|
},
|
|
496
512
|
"CZzImkwrQi9rMTqS": {
|
|
497
|
-
"
|
|
498
|
-
"
|
|
513
|
+
"translation": "Selected rows",
|
|
514
|
+
"notes": "Label for downloading only the selected rows"
|
|
499
515
|
},
|
|
500
516
|
"Ce/f2UdApbmNAeEM": {
|
|
501
|
-
"
|
|
502
|
-
"
|
|
517
|
+
"translation": "Doesn’t equal",
|
|
518
|
+
"notes": "Filter field not equals operator description"
|
|
503
519
|
},
|
|
504
520
|
"CerADEHqR/6IVmHr": {
|
|
505
|
-
"
|
|
506
|
-
"
|
|
521
|
+
"translation": "Search",
|
|
522
|
+
"notes": "Placeholder for the filter inside the select"
|
|
507
523
|
},
|
|
508
524
|
"CjpZq81r1HsdNxp0": {
|
|
509
|
-
"
|
|
510
|
-
"
|
|
525
|
+
"translation": "{prefix, select, previous {Previous} next {Next} other {This}} {amount, plural, one {year} other {# years}}",
|
|
526
|
+
"notes": "Timeframe formatter: timeframe-roundDown-year"
|
|
511
527
|
},
|
|
512
528
|
"CrdM30eeqaF3mlZr": {
|
|
513
|
-
"
|
|
514
|
-
"
|
|
529
|
+
"translation": "Drag to order row \"{rowId}\".",
|
|
530
|
+
"notes": "Label for the row drag handle."
|
|
515
531
|
},
|
|
516
532
|
"Cv2AP7VKybeuopCP": {
|
|
517
|
-
"
|
|
518
|
-
"
|
|
533
|
+
"translation": "scroll tabs left",
|
|
534
|
+
"notes": "Aria label to scroll the tabs to the left"
|
|
519
535
|
},
|
|
520
536
|
"CwGi8xbTtV+fdsu5": {
|
|
521
|
-
"
|
|
522
|
-
"
|
|
537
|
+
"translation": "Run query",
|
|
538
|
+
"notes": "Label for button used to run a query"
|
|
523
539
|
},
|
|
524
540
|
"CzhNdiuuquVgEUTg": {
|
|
525
|
-
"
|
|
526
|
-
"
|
|
541
|
+
"translation": "No other segments available.",
|
|
542
|
+
"notes": "Message shown if all available segments have been selected."
|
|
527
543
|
},
|
|
528
544
|
"DHZv33G8z3rNPFeq": {
|
|
529
|
-
"
|
|
530
|
-
"
|
|
545
|
+
"translation": "Up",
|
|
546
|
+
"notes": "Key shortcut in a tooltip shown when hovering the \"Zoom in\" action in the xy chart toolbar"
|
|
531
547
|
},
|
|
532
548
|
"DKFIWE64kHV1ohuk": {
|
|
533
|
-
"
|
|
534
|
-
"
|
|
549
|
+
"translation": "'from' date should be before 'to' date",
|
|
550
|
+
"notes": "Message to display if the from and to dates are in the wrong order."
|
|
535
551
|
},
|
|
536
552
|
"DMJP39IduNdB3wO3": {
|
|
537
|
-
"
|
|
538
|
-
"
|
|
553
|
+
"translation": "{prefix, select, past {Last} future {Next} relativeFuture {In} other {}} {offset, plural, one {# second} other {# seconds}}{suffix}",
|
|
554
|
+
"notes": "Timeframe formatter: timeframe-second"
|
|
539
555
|
},
|
|
540
556
|
"DV3d5lBJda+EHJja": {
|
|
541
|
-
"
|
|
542
|
-
"
|
|
557
|
+
"translation": "Show more",
|
|
558
|
+
"notes": "Shown for expandable text."
|
|
543
559
|
},
|
|
544
560
|
"DXoXEb27LMuapbC4": {
|
|
545
|
-
"
|
|
546
|
-
"
|
|
561
|
+
"translation": "{prefix}hour",
|
|
562
|
+
"notes": "The aria label for the hour input of a time."
|
|
547
563
|
},
|
|
548
564
|
"DoSCFZmkm4Wgk+9J": {
|
|
549
|
-
"
|
|
550
|
-
"
|
|
565
|
+
"translation": "Column settings",
|
|
566
|
+
"notes": "Tooltip information for the column settings button"
|
|
551
567
|
},
|
|
552
568
|
"DswaMGT7rt2ajcbI": {
|
|
553
|
-
"
|
|
554
|
-
"
|
|
569
|
+
"translation": "Apply",
|
|
570
|
+
"notes": "Button in the SegmentSelector overlay to apply the segment selection."
|
|
555
571
|
},
|
|
556
572
|
"Dz8K7VMW5UFpwetG": {
|
|
557
|
-
"
|
|
558
|
-
"
|
|
573
|
+
"translation": "{prefix}day",
|
|
574
|
+
"notes": "The aria label for the day input of a date."
|
|
559
575
|
},
|
|
560
576
|
"E1oTbKDAzXJo/hs/": {
|
|
561
|
-
"
|
|
562
|
-
"
|
|
577
|
+
"translation": "Doesn't exist in any form",
|
|
578
|
+
"notes": "Filter field not exists operator description"
|
|
563
579
|
},
|
|
564
580
|
"E7kKT3Td1FKB37wr": {
|
|
565
|
-
"
|
|
566
|
-
"
|
|
581
|
+
"translation": "Add text",
|
|
582
|
+
"notes": "Default placeholder for the text area input."
|
|
567
583
|
},
|
|
568
584
|
"EBcYgbL0S1T6EpS2": {
|
|
569
|
-
"
|
|
570
|
-
"
|
|
585
|
+
"translation": "Code Editor",
|
|
586
|
+
"notes": "Aria-label for the code editors."
|
|
571
587
|
},
|
|
572
588
|
"ECZzXUfKYwLWko5n": {
|
|
573
|
-
"
|
|
574
|
-
"
|
|
589
|
+
"translation": "{prefix, select, past {Last} future {Next} relativeFuture {In} other {}} {offset, plural, one {# day} other {# days}}{suffix}",
|
|
590
|
+
"notes": "Timeframe formatter: timeframe-day"
|
|
575
591
|
},
|
|
576
592
|
"EG+qZn4zIajJ41CP": {
|
|
577
|
-
"
|
|
578
|
-
"
|
|
593
|
+
"translation": "Reset timeframe",
|
|
594
|
+
"notes": "Shown for the reset timeframe button of the timeframe selector."
|
|
579
595
|
},
|
|
580
596
|
"EKDlkAM4+D7rcALf": {
|
|
581
|
-
"
|
|
582
|
-
"
|
|
597
|
+
"translation": "Timeframe",
|
|
598
|
+
"notes": "Timeframe label shown in the TimeframeSelector overlay."
|
|
583
599
|
},
|
|
584
600
|
"ERAhDK0Wy/n7Sd2e": {
|
|
585
|
-
"
|
|
586
|
-
"
|
|
601
|
+
"translation": "sss",
|
|
602
|
+
"notes": "The abbreviation of the fractional of the second part of a time value"
|
|
587
603
|
},
|
|
588
604
|
"EWfCcasdyt/QUnjk": {
|
|
589
|
-
"
|
|
590
|
-
"
|
|
605
|
+
"translation": "Loading data",
|
|
606
|
+
"notes": "Label for DataTable loading state."
|
|
591
607
|
},
|
|
592
608
|
"EsLvnx9UfUL/bZ/r": {
|
|
593
|
-
"
|
|
594
|
-
"
|
|
609
|
+
"translation": "Select all",
|
|
610
|
+
"notes": "Select all option in the Select component."
|
|
595
611
|
},
|
|
596
612
|
"Ew2zazlMNmEr1jna": {
|
|
597
|
-
"
|
|
598
|
-
"
|
|
613
|
+
"translation": "Invalid filter value. Only IPv4 and IPv6 addresses are supported for this key.",
|
|
614
|
+
"notes": "Invalid value error for IP address type"
|
|
599
615
|
},
|
|
600
616
|
"ExRdGipMUK2Tldxd": {
|
|
601
|
-
"
|
|
602
|
-
"
|
|
617
|
+
"translation": "Segments are applied but your assigned access control policies don't permit you to read them.",
|
|
618
|
+
"notes": "Message shown when access control permissions (read) are missing and segments are already applied."
|
|
603
619
|
},
|
|
604
620
|
"F6H1FQ86mt53ZgVL": {
|
|
605
|
-
"
|
|
606
|
-
"
|
|
621
|
+
"translation": "Open with...",
|
|
622
|
+
"notes": "Default label for the intent button component."
|
|
607
623
|
},
|
|
608
624
|
"F78crM1uQumIOJdh": {
|
|
609
|
-
"
|
|
610
|
-
"
|
|
625
|
+
"translation": "Columns",
|
|
626
|
+
"notes": "Column settings button default text"
|
|
611
627
|
},
|
|
612
628
|
"F7t2bxwXuoFZkUcl": {
|
|
613
|
-
"
|
|
614
|
-
"
|
|
629
|
+
"translation": "Clear sorting",
|
|
630
|
+
"notes": "Column action menu item for removing sorting for this column."
|
|
631
|
+
},
|
|
632
|
+
"FIMM9WXC8Kwieah3": {
|
|
633
|
+
"translation": "At least 1 column must be shown.",
|
|
634
|
+
"notes": "Error message shown in column settings modal when the user tries to apply changes with no visible columns."
|
|
615
635
|
},
|
|
616
636
|
"FJE1QgzcKO8lKmt4": {
|
|
617
|
-
"
|
|
618
|
-
"
|
|
637
|
+
"translation": "Toggle row selection for row with id \"{id}\".",
|
|
638
|
+
"notes": "Toggle selection for an individual row"
|
|
619
639
|
},
|
|
620
640
|
"FbK3miEv64PNHk2r": {
|
|
621
|
-
"
|
|
622
|
-
"
|
|
641
|
+
"translation": "Tomorrow",
|
|
642
|
+
"notes": "Timeframe formatter: timeframe-tomorrow"
|
|
623
643
|
},
|
|
624
644
|
"Fik0kx8pJ4hkEZUZ": {
|
|
625
|
-
"
|
|
626
|
-
"
|
|
645
|
+
"translation": "Invalid comparator. Allowed comparators are: {allowedComparators}.",
|
|
646
|
+
"notes": "Filter field invalid comparator"
|
|
627
647
|
},
|
|
628
648
|
"Fr3cNB5JDQGaGwae": {
|
|
629
|
-
"
|
|
630
|
-
"
|
|
649
|
+
"translation": "Search",
|
|
650
|
+
"notes": "Default placeholder for search input."
|
|
631
651
|
},
|
|
632
652
|
"FxsZTOljj8LWcZO0": {
|
|
633
|
-
"
|
|
634
|
-
"
|
|
653
|
+
"translation": "Copy",
|
|
654
|
+
"notes": "Text in a tooltip shown by default when hovering"
|
|
635
655
|
},
|
|
636
656
|
"G0h1f2oRxQ8RBqNt": {
|
|
637
|
-
"
|
|
638
|
-
"
|
|
657
|
+
"translation": "Filter syntax",
|
|
658
|
+
"notes": "Filter field suggestion tip - link to filter field documentation."
|
|
639
659
|
},
|
|
640
660
|
"G7XpORU3bjxuwkZF": {
|
|
641
|
-
"
|
|
642
|
-
"
|
|
661
|
+
"translation": "UID",
|
|
662
|
+
"notes": "Label for UID type used in mixed type error messages"
|
|
643
663
|
},
|
|
644
664
|
"GFd2oJ+U46/o0aMy": {
|
|
645
|
-
"
|
|
646
|
-
"
|
|
665
|
+
"translation": "+{number} more",
|
|
666
|
+
"notes": "Tooltip message when the tooltip is too big and shows the first selected segment and +X more for the remaining."
|
|
647
667
|
},
|
|
648
668
|
"GH0lEEpNg7HJ9sA6": {
|
|
649
|
-
"
|
|
650
|
-
"
|
|
669
|
+
"translation": "Notifications",
|
|
670
|
+
"notes": "Label text shown in the notify button trigger"
|
|
651
671
|
},
|
|
652
672
|
"GLK6cN59tiRO9GDp": {
|
|
653
|
-
"
|
|
654
|
-
"
|
|
673
|
+
"translation": "Previous match",
|
|
674
|
+
"notes": "Label for the previous match button"
|
|
655
675
|
},
|
|
656
676
|
"GUeetpTpusqFkMi+": {
|
|
657
|
-
"
|
|
658
|
-
"
|
|
677
|
+
"translation": "Please enter a start time.",
|
|
678
|
+
"notes": "From value is missing."
|
|
659
679
|
},
|
|
660
680
|
"GeQL1Mbr4RzmlFJk": {
|
|
661
|
-
"
|
|
662
|
-
"
|
|
681
|
+
"translation": "and",
|
|
682
|
+
"notes": "Text that is separating between multiple Segments in one preset."
|
|
663
683
|
},
|
|
664
684
|
"GhC5F6ZRFGDVs41W": {
|
|
665
|
-
"
|
|
666
|
-
"
|
|
685
|
+
"translation": "Type to filter",
|
|
686
|
+
"notes": "Default placeholder text shown in the filter field."
|
|
667
687
|
},
|
|
668
688
|
"GixTwN/AsVWJprz2": {
|
|
669
|
-
"
|
|
670
|
-
"
|
|
689
|
+
"translation": "Remaining day",
|
|
690
|
+
"notes": "Timeframe formatter: timeframe-remaining-day"
|
|
671
691
|
},
|
|
672
692
|
"HChaOEcqD6o/jiDX": {
|
|
673
|
-
"
|
|
674
|
-
"
|
|
693
|
+
"translation": "Starts-with is not supported for this key.",
|
|
694
|
+
"notes": "Message shown if the starts-with operator is not supported for this key."
|
|
675
695
|
},
|
|
676
696
|
"HH0Od0c8jGTsxDda": {
|
|
677
|
-
"
|
|
678
|
-
"
|
|
697
|
+
"translation": "Navigate",
|
|
698
|
+
"notes": "Filter field suggestion tip - navigate suggestions."
|
|
679
699
|
},
|
|
680
700
|
"HL9dGWGnhYkm7OyC": {
|
|
681
|
-
"
|
|
682
|
-
"
|
|
701
|
+
"translation": "Invalid end time. Expected format: {expectedFormat}, -2h or -2d@d",
|
|
702
|
+
"notes": "Given to value is invalid"
|
|
683
703
|
},
|
|
684
704
|
"HPbv8ZQrbBL7hRCT": {
|
|
685
|
-
"
|
|
686
|
-
"
|
|
705
|
+
"translation": "Just now",
|
|
706
|
+
"notes": "Just now marker in the FilterField recent suggestions"
|
|
687
707
|
},
|
|
688
708
|
"HPt4l9OCXddkPdak": {
|
|
689
|
-
"
|
|
690
|
-
"
|
|
709
|
+
"translation": "{suggestionsLength} suggestions available.",
|
|
710
|
+
"notes": "Aria text for more than 10 suggestions."
|
|
691
711
|
},
|
|
692
712
|
"Hb5phHuz1zWpI7/Z": {
|
|
693
|
-
"
|
|
694
|
-
"
|
|
713
|
+
"translation": "Move left",
|
|
714
|
+
"notes": "Text in the column action item for changing the column order, moving column to the left."
|
|
695
715
|
},
|
|
696
716
|
"HeCgwHWBVFbPEvNZ": {
|
|
697
|
-
"
|
|
698
|
-
"
|
|
717
|
+
"translation": "Reset",
|
|
718
|
+
"notes": "Text in a tooltip shown when hovering the \"Reset\" action in the histogram chart toolbar"
|
|
699
719
|
},
|
|
700
720
|
"HnUFKqpr47NWwlve": {
|
|
701
|
-
"
|
|
702
|
-
"
|
|
721
|
+
"translation": "Grid options",
|
|
722
|
+
"notes": "Label for the grid intents in the SingleValueGrid toolbar"
|
|
703
723
|
},
|
|
704
724
|
"HpRsCrp1SmD+zRFu": {
|
|
705
|
-
"
|
|
706
|
-
"
|
|
725
|
+
"translation": "{prefix, select, previous {Previous} next {Next} other {This}} {amount, plural, one {minute} other {# minutes}}",
|
|
726
|
+
"notes": "Timeframe formatter: timeframe-roundDown-minute"
|
|
707
727
|
},
|
|
708
728
|
"HzfsDA+42BHW9xeE": {
|
|
709
|
-
"
|
|
710
|
-
"
|
|
729
|
+
"translation": "Suggestions for filter statements",
|
|
730
|
+
"notes": "Aria label for the filter statements suggestion group."
|
|
711
731
|
},
|
|
712
732
|
"HzhWa5UT4EGJIstf": {
|
|
713
|
-
"
|
|
714
|
-
"
|
|
733
|
+
"translation": "of {totalPages}",
|
|
734
|
+
"notes": "Text displaying the amount of pages."
|
|
715
735
|
},
|
|
716
736
|
"IK8qCfDGg9HgIHQC": {
|
|
717
|
-
"
|
|
718
|
-
"
|
|
737
|
+
"translation": "Add URL",
|
|
738
|
+
"notes": "Default placeholder for URL input."
|
|
719
739
|
},
|
|
720
740
|
"IOULVwhMHJJA+fW7": {
|
|
721
|
-
"
|
|
722
|
-
"
|
|
741
|
+
"translation": "No items found.",
|
|
742
|
+
"notes": "Message for when search filter does not match any items."
|
|
723
743
|
},
|
|
724
744
|
"IU+dkogAuDAabi52": {
|
|
725
|
-
"
|
|
726
|
-
"
|
|
745
|
+
"translation": "{suffix}",
|
|
746
|
+
"notes": "Suffix for the moving a duration of the timeframe forward or backward, that is shown in the tooltip"
|
|
727
747
|
},
|
|
728
748
|
"Ia87HCOLBoxMcV9t": {
|
|
729
749
|
"translation": "Share feedback"
|
|
730
750
|
},
|
|
731
|
-
"IigYU5spaVAkF/1K": {
|
|
732
|
-
"notes": "Button text for trying to recover the filter field state from an invalid state",
|
|
733
|
-
"translation": "Reset"
|
|
734
|
-
},
|
|
735
751
|
"IjB05bsdexXUZ1sw": {
|
|
736
|
-
"
|
|
737
|
-
"
|
|
752
|
+
"translation": "Zoom out",
|
|
753
|
+
"notes": "Text in a tooltip shown when hovering the \"Zoom out\" action in the xy chart toolbar"
|
|
738
754
|
},
|
|
739
755
|
"Ir0YCuBX6vOM4t0J": {
|
|
740
|
-
"
|
|
741
|
-
"
|
|
756
|
+
"translation": "Add DQL",
|
|
757
|
+
"notes": "Default placeholder for the DQLEditor."
|
|
742
758
|
},
|
|
743
759
|
"ItflQisz88wfEcF+": {
|
|
744
|
-
"
|
|
745
|
-
"
|
|
760
|
+
"translation": "{offset, plural, one {# quarter} other {# quarters}}",
|
|
761
|
+
"notes": "Timeframe duration formatter: timeframe-quarter"
|
|
746
762
|
},
|
|
747
763
|
"J2NKmHJhslvMRQcz": {
|
|
748
|
-
"
|
|
749
|
-
"
|
|
764
|
+
"translation": "Invalid filter value. Only numerical values are supported for this key.",
|
|
765
|
+
"notes": "Invalid value error for number type"
|
|
750
766
|
},
|
|
751
767
|
"J9M12SSZNn2dKokI": {
|
|
752
|
-
"
|
|
753
|
-
"
|
|
768
|
+
"translation": "Run query",
|
|
769
|
+
"notes": "Label for button used to rerun a query after it was successful"
|
|
754
770
|
},
|
|
755
771
|
"JLMJNMOPi2dCAbD1": {
|
|
756
|
-
"
|
|
757
|
-
"
|
|
772
|
+
"translation": "Next match",
|
|
773
|
+
"notes": "Label for the next match button"
|
|
758
774
|
},
|
|
759
775
|
"JNqvsQ757QGyZ+wN": {
|
|
760
|
-
"
|
|
761
|
-
"
|
|
776
|
+
"translation": "Zoom mode",
|
|
777
|
+
"notes": "Text in a tooltip shown when hovering the \"Zoom\" mode in the chart toolbar"
|
|
762
778
|
},
|
|
763
779
|
"JOIA3jQfIIkgnW04": {
|
|
764
|
-
"
|
|
765
|
-
"
|
|
766
|
-
},
|
|
767
|
-
"JYch5LSreqEKVk0q": {
|
|
768
|
-
"notes": "The message that is shown once the filter field reaches an invalid state when an uncaught exception was thrown",
|
|
769
|
-
"translation": "An error occurred"
|
|
780
|
+
"translation": "Please shorten this text to {maxLength} characters or less.",
|
|
781
|
+
"notes": "Error message for input that is shorter than the maxLength."
|
|
770
782
|
},
|
|
771
783
|
"JZunLfAY47K5StQb": {
|
|
772
|
-
"
|
|
773
|
-
"
|
|
784
|
+
"translation": "Less than",
|
|
785
|
+
"notes": "Filter field less than operator description"
|
|
774
786
|
},
|
|
775
787
|
"JfsC0aOiAl7G3esV": {
|
|
776
|
-
"
|
|
777
|
-
"
|
|
788
|
+
"translation": "Delete chip",
|
|
789
|
+
"notes": "Aria label used to describe the delete chip button."
|
|
778
790
|
},
|
|
779
791
|
"JlWcGe/hRo/kyTD+": {
|
|
780
|
-
"
|
|
781
|
-
"
|
|
792
|
+
"translation": "{offset, plural, one {# minute} other {# minutes}}",
|
|
793
|
+
"notes": "Timeframe duration formatter: timeframe-minute"
|
|
782
794
|
},
|
|
783
795
|
"JmaVR5qUnuxE3qnb": {
|
|
784
796
|
"translation": "Keyboard shortcuts"
|
|
785
797
|
},
|
|
786
798
|
"JzYy8MUVfPcyf4l5": {
|
|
787
|
-
"
|
|
788
|
-
"
|
|
799
|
+
"translation": "Opening the link in a new window",
|
|
800
|
+
"notes": "External link icon that describes the external link icon"
|
|
789
801
|
},
|
|
790
802
|
"Jzdt1FVhHSO1Lmg9": {
|
|
791
|
-
"
|
|
792
|
-
"
|
|
803
|
+
"translation": "Only dates before {to} are available.",
|
|
804
|
+
"notes": "Given dates are not within the valid range."
|
|
793
805
|
},
|
|
794
806
|
"K+rYESaxckSqgeF/": {
|
|
795
|
-
"
|
|
796
|
-
"
|
|
807
|
+
"translation": "Unavailable",
|
|
808
|
+
"notes": "Description for unavailable segment variables, e.g. if the variable is not available any longer."
|
|
797
809
|
},
|
|
798
810
|
"K2M82PM/gcTo3fjq": {
|
|
799
|
-
"
|
|
800
|
-
"
|
|
811
|
+
"translation": "DateRangePicker calendar trigger",
|
|
812
|
+
"notes": "Text shown for the datetimerangepicker calendar trigger."
|
|
801
813
|
},
|
|
802
814
|
"KAAzM9PVtiJno9ks": {
|
|
803
|
-
"
|
|
804
|
-
"
|
|
815
|
+
"translation": "Go to next page.",
|
|
816
|
+
"notes": "Aria label to add to the `next` button"
|
|
805
817
|
},
|
|
806
818
|
"KETnWaCwo9qLRQrI": {
|
|
807
|
-
"
|
|
808
|
-
"
|
|
819
|
+
"translation": "Only dates after {min} are available.",
|
|
820
|
+
"notes": "Given dates are not within the valid range."
|
|
809
821
|
},
|
|
810
822
|
"KgAwef2nXv2+/xgE": {
|
|
811
|
-
"
|
|
812
|
-
"
|
|
823
|
+
"translation": "YYYY",
|
|
824
|
+
"notes": "The abbreviation of the year part of a date value"
|
|
813
825
|
},
|
|
814
826
|
"KlA+bTF6CnwSnbCJ": {
|
|
815
|
-
"
|
|
816
|
-
"
|
|
827
|
+
"translation": "Zoom mode",
|
|
828
|
+
"notes": "Text in a tooltip shown when hovering the \"Zoom\" mode in the timeseries chart toolbar"
|
|
817
829
|
},
|
|
818
830
|
"KxAo/sbsalGLDonj": {
|
|
819
|
-
"
|
|
820
|
-
"
|
|
831
|
+
"translation": "{nextSelection, select, select {Select} deselect {Deselect} other{}} all rows {scope, select, page {on current page} all {in the table} other {}}",
|
|
832
|
+
"notes": "Toggle selection for all rows on the page"
|
|
821
833
|
},
|
|
822
834
|
"KzBG7IQ4sG79Dlpy": {
|
|
823
|
-
"
|
|
824
|
-
"
|
|
835
|
+
"translation": "The timeframe exceeds the limits supported in this app.",
|
|
836
|
+
"notes": "Tooltip message for a disabled timeframe."
|
|
825
837
|
},
|
|
826
838
|
"L/D6X7Ee5PYWzl3i": {
|
|
827
839
|
"translation": "Show more actions"
|
|
828
840
|
},
|
|
829
841
|
"L4FYL0HqCIFzBkzf": {
|
|
830
|
-
"
|
|
831
|
-
"
|
|
842
|
+
"translation": "Pin",
|
|
843
|
+
"notes": "Text for the pin button of a segment preset."
|
|
832
844
|
},
|
|
833
845
|
"L6ZeI3XBOuh0L/CT": {
|
|
834
|
-
"
|
|
835
|
-
"
|
|
846
|
+
"translation": "{offset, plural, one {# millisecond} other {# milliseconds}}",
|
|
847
|
+
"notes": "Timeframe duration formatter: timeframe-millisecond"
|
|
836
848
|
},
|
|
837
849
|
"LAcIIvdezwZIzQG+": {
|
|
838
|
-
"
|
|
839
|
-
"
|
|
850
|
+
"translation": "The 'in' operator doesn't support empty lists.",
|
|
851
|
+
"notes": "Filter field empty inclusion value"
|
|
840
852
|
},
|
|
841
853
|
"LCNiBr0aBntMq391": {
|
|
842
|
-
"
|
|
843
|
-
"
|
|
854
|
+
"translation": "Page",
|
|
855
|
+
"notes": "Label for page selection dropdown."
|
|
844
856
|
},
|
|
845
857
|
"LJ0fyD2++VZgZ5g0": {
|
|
846
|
-
"
|
|
847
|
-
"
|
|
858
|
+
"translation": "Collapse sidebar",
|
|
859
|
+
"notes": "Label for the button that collapses the sidebar."
|
|
848
860
|
},
|
|
849
861
|
"LNWPcycjuDPimFKd": {
|
|
850
|
-
"
|
|
851
|
-
"
|
|
862
|
+
"translation": "Please select a {term} within the range of {min} and {max}.",
|
|
863
|
+
"notes": "Error message for a date or a timeframe outside the selectable range."
|
|
852
864
|
},
|
|
853
865
|
"LOWAzLWj0fknrnEb": {
|
|
854
|
-
"
|
|
855
|
-
"
|
|
866
|
+
"translation": "Apply filter",
|
|
867
|
+
"notes": "Filter field suggestion tip - apply filter."
|
|
856
868
|
},
|
|
857
869
|
"LQ8VkjDPP6CnNrhf": {
|
|
858
|
-
"
|
|
859
|
-
"
|
|
870
|
+
"translation": "Hide column",
|
|
871
|
+
"notes": "Text in the column action item for hiding the column."
|
|
872
|
+
},
|
|
873
|
+
"LaYAv5QEhDEHqVMW": {
|
|
874
|
+
"translation": "Version"
|
|
860
875
|
},
|
|
861
876
|
"LgOM6mSxWTUB+NI/": {
|
|
862
|
-
"
|
|
863
|
-
"
|
|
877
|
+
"translation": "Chart tools",
|
|
878
|
+
"notes": "Text in a tooltip shown when hovering the manually collapsed toolbar's menu button in the time series chart toolbar"
|
|
864
879
|
},
|
|
865
880
|
"LhnAiI2sqynNbsba": {
|
|
866
|
-
"
|
|
867
|
-
"
|
|
881
|
+
"translation": "The applied segments are outdated. Please check your selection in the overlay.",
|
|
882
|
+
"notes": "Error message indicating that something with the current selection is wrong and, therefore, should be checked."
|
|
868
883
|
},
|
|
869
884
|
"LoBSMcHvTQEABp39": {
|
|
870
|
-
"
|
|
871
|
-
"
|
|
885
|
+
"translation": "{prefix}month",
|
|
886
|
+
"notes": "The aria label for the month input of a date."
|
|
872
887
|
},
|
|
873
888
|
"M6eNgatb2wf4fQ3I": {
|
|
874
|
-
"
|
|
875
|
-
"
|
|
889
|
+
"translation": "{ariaLabelPrefix} expression",
|
|
890
|
+
"notes": "Textbox to enter a dql timeframe expression."
|
|
876
891
|
},
|
|
877
892
|
"MYBFw8pxHVA1QTDj": {
|
|
878
|
-
"
|
|
879
|
-
"
|
|
893
|
+
"translation": "Sidebar",
|
|
894
|
+
"notes": "Panel name translation"
|
|
880
895
|
},
|
|
881
896
|
"MYfVMxPsAgOn8JSP": {
|
|
882
|
-
"
|
|
883
|
-
"
|
|
897
|
+
"translation": "Value must be a multiple of {step}, starting from {min}.",
|
|
898
|
+
"notes": "Only values which are a whole number of steps from the step base are valid. The step base is min if specified, value otherwise, or 0 if neither is provided."
|
|
884
899
|
},
|
|
885
900
|
"Mexo5VI0BZU5Mw8b": {
|
|
886
|
-
"
|
|
887
|
-
"
|
|
901
|
+
"translation": "No segments configured.",
|
|
902
|
+
"notes": "Message shown in the empty state of the segmentsSelector."
|
|
888
903
|
},
|
|
889
904
|
"Mh5VCfdpjmGhMnOB": {
|
|
890
|
-
"
|
|
891
|
-
"
|
|
905
|
+
"translation": "Multi-column sorting",
|
|
906
|
+
"notes": "Label for the multi-column sorting group in the column actions menu."
|
|
892
907
|
},
|
|
893
908
|
"MlwM+/jonCtjJ+L7": {
|
|
894
|
-
"
|
|
895
|
-
"
|
|
909
|
+
"translation": "Add time",
|
|
910
|
+
"notes": "Default placeholder for the time input."
|
|
896
911
|
},
|
|
897
912
|
"MsfOpUQyZ0eEZ/5T": {
|
|
898
|
-
"
|
|
899
|
-
"
|
|
913
|
+
"translation": "Manage segments",
|
|
914
|
+
"notes": "Display text for the link to the SegmentsManager app."
|
|
900
915
|
},
|
|
901
916
|
"N200he2aabhApHz+": {
|
|
902
|
-
"
|
|
903
|
-
"
|
|
917
|
+
"translation": "X-value",
|
|
918
|
+
"notes": "Text label for the x-value in the tooltip for the XYChart."
|
|
904
919
|
},
|
|
905
920
|
"N27hQ6LyGqdym2Yi": {
|
|
906
|
-
"
|
|
907
|
-
"
|
|
921
|
+
"translation": "Back",
|
|
922
|
+
"notes": "Microguide Back button."
|
|
908
923
|
},
|
|
909
924
|
"NF0tLfJTokD/xw5B": {
|
|
910
|
-
"
|
|
911
|
-
"
|
|
925
|
+
"translation": "Expand sidebar",
|
|
926
|
+
"notes": "Label for the button that expands the sidebar."
|
|
912
927
|
},
|
|
913
928
|
"NXdoElYQZNKea1Sc": {
|
|
914
|
-
"
|
|
915
|
-
"
|
|
929
|
+
"translation": "Open additional information.",
|
|
930
|
+
"notes": "Aria label fallback for Information overlay trigger"
|
|
916
931
|
},
|
|
917
932
|
"Nar807M4NJhqMw/T": {
|
|
918
933
|
"translation": "Try in Playground"
|
|
919
934
|
},
|
|
920
935
|
"Ncd2jCwVN8H1vf6M": {
|
|
921
|
-
"
|
|
922
|
-
"
|
|
936
|
+
"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.",
|
|
937
|
+
"notes": "Screen reader announcement indicating that additional suggestions exist beyond the first five displayed."
|
|
923
938
|
},
|
|
924
939
|
"Nlzd/zJ2XP7vZMvE": {
|
|
925
|
-
"
|
|
926
|
-
"
|
|
940
|
+
"translation": "Only dates between {from} → {to} are available.",
|
|
941
|
+
"notes": "Given dates are not within the valid range."
|
|
927
942
|
},
|
|
928
943
|
"Np6+N27mrjvIJEls": {
|
|
929
|
-
"
|
|
930
|
-
"
|
|
944
|
+
"translation": "Apply",
|
|
945
|
+
"notes": "Shown for the apply button of the timeframe selector."
|
|
931
946
|
},
|
|
932
947
|
"NwDE2g2nYFjxPG9v": {
|
|
933
|
-
"
|
|
934
|
-
"
|
|
948
|
+
"translation": "Copy query",
|
|
949
|
+
"notes": "Menu item label to copy the DQL query to the clipboard."
|
|
935
950
|
},
|
|
936
951
|
"OEhnk3JokTy0c/JX": {
|
|
937
|
-
"
|
|
938
|
-
"
|
|
952
|
+
"translation": "Open intent menu",
|
|
953
|
+
"notes": "Aria label for the IntentButton menu trigger."
|
|
939
954
|
},
|
|
940
955
|
"OLs+1KIFFvyM4iJv": {
|
|
941
|
-
"
|
|
942
|
-
"
|
|
956
|
+
"translation": "boolean",
|
|
957
|
+
"notes": "Label for boolean type used in mixed type error messages"
|
|
943
958
|
},
|
|
944
959
|
"ONYnUtFidz4+6NmE": {
|
|
945
|
-
"
|
|
946
|
-
"
|
|
960
|
+
"translation": "Only dates before {max} are available.",
|
|
961
|
+
"notes": "Given dates are not within the valid range."
|
|
947
962
|
},
|
|
948
963
|
"OVHWs31OggLCgWSq": {
|
|
949
|
-
"
|
|
950
|
-
"
|
|
964
|
+
"translation": "Copy details",
|
|
965
|
+
"notes": "Label for the copy details button in SegmentsOverlay."
|
|
966
|
+
},
|
|
967
|
+
"OmNf7ak/Kcv7wP3u": {
|
|
968
|
+
"translation": "Data table",
|
|
969
|
+
"notes": "Default accessible name for the DataTable component when no aria-label or aria-labelledby is provided."
|
|
951
970
|
},
|
|
952
971
|
"OwC/n+tx4kFWA3l3": {
|
|
953
972
|
"translation": "Primary series name"
|
|
954
973
|
},
|
|
955
974
|
"PCUD8a2q2mhgGcgg": {
|
|
956
|
-
"
|
|
957
|
-
"
|
|
975
|
+
"translation": "Add JSX",
|
|
976
|
+
"notes": "Default placeholder for code editor when the language is JSX."
|
|
958
977
|
},
|
|
959
978
|
"PjDGLO7+f1/CNRR0": {
|
|
960
|
-
"
|
|
961
|
-
"
|
|
979
|
+
"translation": "No suggestions",
|
|
980
|
+
"notes": "Filter field empty suggestions message."
|
|
962
981
|
},
|
|
963
982
|
"PkWNcYRn4iWtpXnu": {
|
|
964
|
-
"
|
|
965
|
-
"
|
|
983
|
+
"translation": "The logical `OR` operator is not supported in the basic syntax mode.",
|
|
984
|
+
"notes": "Filter field unsupported logical operator"
|
|
966
985
|
},
|
|
967
986
|
"Psa1yEbRJtw20yK3": {
|
|
968
|
-
"
|
|
969
|
-
"
|
|
987
|
+
"translation": "Select current page",
|
|
988
|
+
"notes": "Aria-label for selecting current page index."
|
|
970
989
|
},
|
|
971
990
|
"Pyb778wli2buPWzS": {
|
|
972
|
-
"
|
|
973
|
-
"
|
|
991
|
+
"translation": "An error occurred.",
|
|
992
|
+
"notes": "Error state message for the gantt chart."
|
|
974
993
|
},
|
|
975
994
|
"Q7HxEz/6LQ+CtEXo": {
|
|
976
|
-
"
|
|
977
|
-
"
|
|
995
|
+
"translation": "You can’t pin more than 10 items",
|
|
996
|
+
"notes": "Tooltip for the pin/unpin if the limit is reached."
|
|
978
997
|
},
|
|
979
998
|
"Q7Mgijk38uWvSnlW": {
|
|
980
|
-
"
|
|
981
|
-
"
|
|
999
|
+
"translation": "A space seems to be missing.",
|
|
1000
|
+
"notes": "Filter field missing space error"
|
|
982
1001
|
},
|
|
983
1002
|
"QF4myF79Hrp3e/0Q": {
|
|
984
|
-
"
|
|
985
|
-
"
|
|
1003
|
+
"translation": "Start",
|
|
1004
|
+
"notes": "Description for the start time of the preset item value, that is shown in the tooltip"
|
|
986
1005
|
},
|
|
987
1006
|
"QGNAMlfBaYn7aCLl": {
|
|
988
|
-
"
|
|
989
|
-
"
|
|
1007
|
+
"translation": "Recently used filters",
|
|
1008
|
+
"notes": "Headline for recently used filters suggestions in the filter field"
|
|
990
1009
|
},
|
|
991
1010
|
"QHmb9sWOEor8eTYI": {
|
|
992
|
-
"
|
|
993
|
-
"
|
|
1011
|
+
"translation": "Value range",
|
|
1012
|
+
"notes": "Annotation tooltip title value range"
|
|
994
1013
|
},
|
|
995
1014
|
"QPVwTdDxajDwh62B": {
|
|
996
|
-
"
|
|
997
|
-
"
|
|
1015
|
+
"translation": "Open",
|
|
1016
|
+
"notes": "Label next to the Ctrl+Space keyboard shortcut in the DQL editor autocomplete info section, describing the action the shortcut triggers."
|
|
998
1017
|
},
|
|
999
1018
|
"QXOCOrq5Seu+1A93": {
|
|
1000
|
-
"
|
|
1001
|
-
"
|
|
1019
|
+
"translation": "Only dates after {from} are available.",
|
|
1020
|
+
"notes": "Given dates are not within the valid range."
|
|
1002
1021
|
},
|
|
1003
1022
|
"QZdQoUnAWKJYAyK2": {
|
|
1004
|
-
"
|
|
1005
|
-
"
|
|
1023
|
+
"translation": "Recently used",
|
|
1024
|
+
"notes": "Headline to group recently used segments presets."
|
|
1006
1025
|
},
|
|
1007
1026
|
"QbeiZKf6kqgyTp3m": {
|
|
1008
1027
|
"translation": "Secondary series name"
|
|
1009
1028
|
},
|
|
1010
1029
|
"Qm0/7EQKVXjS9tDM": {
|
|
1011
|
-
"
|
|
1012
|
-
"
|
|
1030
|
+
"translation": "Only dates between {min} → {max} are available.",
|
|
1031
|
+
"notes": "Given dates are not within the valid range."
|
|
1013
1032
|
},
|
|
1014
1033
|
"QsKlSIxE+Yp58CUG": {
|
|
1015
|
-
"
|
|
1016
|
-
"
|
|
1034
|
+
"translation": "Empty timeframe.",
|
|
1035
|
+
"notes": "Timeframe selector required timeframe error hint."
|
|
1017
1036
|
},
|
|
1018
1037
|
"QsfELKqpB23/KKWM": {
|
|
1019
|
-
"
|
|
1020
|
-
"
|
|
1038
|
+
"translation": "Close {panelName}",
|
|
1039
|
+
"notes": "Label for the panel control button."
|
|
1021
1040
|
},
|
|
1022
1041
|
"R78oo6l2CKe2fY1R": {
|
|
1023
|
-
"
|
|
1024
|
-
"
|
|
1042
|
+
"translation": "Supported values: IP addresses",
|
|
1043
|
+
"notes": "Message shown for value suggestions restricted by a validator map (only IP addresses are valid)"
|
|
1025
1044
|
},
|
|
1026
1045
|
"RL8FCY3ia3BTX2cU": {
|
|
1027
|
-
"
|
|
1028
|
-
"
|
|
1046
|
+
"translation": "Close",
|
|
1047
|
+
"notes": "Filter field suggestion tip - close suggestions."
|
|
1029
1048
|
},
|
|
1030
1049
|
"RPdRdtDJumoOO3os": {
|
|
1031
|
-
"
|
|
1032
|
-
"
|
|
1050
|
+
"translation": "Pin in {appName}",
|
|
1051
|
+
"notes": "Tooltip text for pin button."
|
|
1033
1052
|
},
|
|
1034
1053
|
"RRZCQqo1jlLlwIyS": {
|
|
1035
|
-
"
|
|
1036
|
-
"
|
|
1054
|
+
"translation": "Zoom out",
|
|
1055
|
+
"notes": "Text in a tooltip shown when hovering the \"Zoom out\" action in the histogram chart toolbar"
|
|
1037
1056
|
},
|
|
1038
1057
|
"RST92XLweEz0Qott": {
|
|
1039
|
-
"
|
|
1040
|
-
"
|
|
1058
|
+
"translation": "Switch to side-by-side",
|
|
1059
|
+
"notes": "Label for the button that switches the details panel to split mode."
|
|
1041
1060
|
},
|
|
1042
1061
|
"RSp2nSscx4hJgP2P": {
|
|
1043
|
-
"
|
|
1044
|
-
"
|
|
1062
|
+
"translation": "Exists in any form",
|
|
1063
|
+
"notes": "Filter field exists operator description"
|
|
1045
1064
|
},
|
|
1046
1065
|
"RicigT+v0BvVWaSt": {
|
|
1047
|
-
"
|
|
1048
|
-
"
|
|
1066
|
+
"translation": "Drag to reorder \"{column}\" column",
|
|
1067
|
+
"notes": "Aria label for DataTable draggable header"
|
|
1049
1068
|
},
|
|
1050
1069
|
"Ro/9HWdwiItr3Ter": {
|
|
1051
|
-
"
|
|
1052
|
-
"
|
|
1070
|
+
"translation": "{prefix, select, previous {Previous} next {Next} other {This}} {amount, plural, one {month} other {# months}}",
|
|
1071
|
+
"notes": "Timeframe formatter: timeframe-roundDown-month"
|
|
1053
1072
|
},
|
|
1054
1073
|
"RoNWrUBQf8gR7lxZ": {
|
|
1055
|
-
"
|
|
1056
|
-
"
|
|
1074
|
+
"translation": "No values for this segment available. You can manage this segment in settings.",
|
|
1075
|
+
"notes": "Empty state message if no variables for the segment are available."
|
|
1057
1076
|
},
|
|
1058
1077
|
"Rrlag1wRQFMpYHX7": {
|
|
1059
|
-
"
|
|
1060
|
-
"
|
|
1078
|
+
"translation": "Copy coordinates",
|
|
1079
|
+
"notes": "Text in a tooltip shown when clicking a geo map tooltip item and hovering the copy button next to its coordinates"
|
|
1061
1080
|
},
|
|
1062
1081
|
"RuGHpilISAqb1dDM": {
|
|
1063
|
-
"
|
|
1064
|
-
"
|
|
1082
|
+
"translation": "Select value",
|
|
1083
|
+
"notes": "Placeholder for the trigger of the select within the segmentSelector Overlay."
|
|
1065
1084
|
},
|
|
1066
1085
|
"Rx7WtBPx/tyQ5h+j": {
|
|
1067
|
-
"
|
|
1068
|
-
"
|
|
1086
|
+
"translation": "Move",
|
|
1087
|
+
"notes": "Text in a tooltip shown when hovering \"Move\" action in the time series chart toolbar"
|
|
1069
1088
|
},
|
|
1070
1089
|
"RxaXcljpkrMAErS9": {
|
|
1071
|
-
"
|
|
1072
|
-
"
|
|
1090
|
+
"translation": "Move right",
|
|
1091
|
+
"notes": "Text in the column action item for changing the column order, moving column to the right."
|
|
1073
1092
|
},
|
|
1074
1093
|
"S3llhud3ydpS6ObI": {
|
|
1075
|
-
"
|
|
1076
|
-
"
|
|
1094
|
+
"translation": "or",
|
|
1095
|
+
"notes": "or"
|
|
1077
1096
|
},
|
|
1078
1097
|
"S6z4dIJ7FiELVt5X": {
|
|
1079
|
-
"
|
|
1080
|
-
"
|
|
1098
|
+
"translation": "Remove segment",
|
|
1099
|
+
"notes": "Aria-label for the remove button of a segments select."
|
|
1081
1100
|
},
|
|
1082
1101
|
"SPSPRmp+gABk1LGQ": {
|
|
1083
|
-
"
|
|
1084
|
-
"
|
|
1102
|
+
"translation": "{prefix, select, past {Last} future {Next} relativeFuture {In} other {}} {offset, plural, one {# minute} other {# minutes}}{suffix}",
|
|
1103
|
+
"notes": "Timeframe formatter: timeframe-minute"
|
|
1085
1104
|
},
|
|
1086
1105
|
"Siq71+wvTgBerJXL": {
|
|
1087
|
-
"
|
|
1088
|
-
"
|
|
1106
|
+
"translation": "Explore mode",
|
|
1107
|
+
"notes": "Text in a tooltip shown when hovering the \"Explore\" mode in the chart toolbar"
|
|
1089
1108
|
},
|
|
1090
1109
|
"Sovq/8OI4lXhwuJJ": {
|
|
1091
|
-
"
|
|
1092
|
-
"
|
|
1110
|
+
"translation": "to",
|
|
1111
|
+
"notes": "from / to"
|
|
1093
1112
|
},
|
|
1094
1113
|
"SzcXIJL/aWzjy5Ig": {
|
|
1095
|
-
"
|
|
1096
|
-
"
|
|
1114
|
+
"translation": "Add",
|
|
1115
|
+
"notes": "Aria-label for the + in the \"add segment\" button to convey the functionality."
|
|
1097
1116
|
},
|
|
1098
1117
|
"TGpKHavTfvNDG6nB": {
|
|
1099
|
-
"
|
|
1100
|
-
"
|
|
1118
|
+
"translation": "Supported values: Numbers",
|
|
1119
|
+
"notes": "Message shown for value suggestions restricted by a validator map (only numbers are valid)"
|
|
1101
1120
|
},
|
|
1102
1121
|
"THNwSvfvDSXAUapi": {
|
|
1103
|
-
"
|
|
1104
|
-
"
|
|
1122
|
+
"translation": "Copied",
|
|
1123
|
+
"notes": "Shown after copying to clipboard"
|
|
1105
1124
|
},
|
|
1106
1125
|
"TIVnKWerQ6BuCdAB": {
|
|
1107
|
-
"
|
|
1108
|
-
"
|
|
1126
|
+
"translation": "Search",
|
|
1127
|
+
"notes": "Search placeholder"
|
|
1109
1128
|
},
|
|
1110
1129
|
"TKRQN9BIBeD8VT1I": {
|
|
1111
|
-
"
|
|
1112
|
-
"
|
|
1130
|
+
"translation": "Down",
|
|
1131
|
+
"notes": "Key shortcut in a tooltip shown when hovering the \"Zoom out\" action in the time series chart toolbar"
|
|
1113
1132
|
},
|
|
1114
1133
|
"TNgy+4XtLPGHfZu2": {
|
|
1115
|
-
"
|
|
1116
|
-
"
|
|
1134
|
+
"translation": "Matches phrase",
|
|
1135
|
+
"notes": "Filter field matches-phrase operator description"
|
|
1117
1136
|
},
|
|
1118
1137
|
"TTCLEQtF7ylLxvEx": {
|
|
1119
|
-
"
|
|
1120
|
-
"
|
|
1138
|
+
"translation": "Explore mode",
|
|
1139
|
+
"notes": "Text in a tooltip shown when hovering the \"Explore\" mode in the time series chart toolbar"
|
|
1121
1140
|
},
|
|
1122
1141
|
"TY3F/kE6n91t0TL0": {
|
|
1123
1142
|
"translation": "What's new"
|
|
1124
1143
|
},
|
|
1125
1144
|
"Tr/buzcgyjaGCFM7": {
|
|
1126
|
-
"
|
|
1127
|
-
"
|
|
1145
|
+
"translation": "Does not match phrase",
|
|
1146
|
+
"notes": "Filter field not-matches-phrase operator description"
|
|
1128
1147
|
},
|
|
1129
1148
|
"TuHiu5OflYhkrvKy": {
|
|
1130
|
-
"
|
|
1131
|
-
"
|
|
1149
|
+
"translation": "{offset, plural, one {# week} other {# weeks}}",
|
|
1150
|
+
"notes": "Timeframe duration formatter: timeframe-week"
|
|
1132
1151
|
},
|
|
1133
1152
|
"U09aNQxYT1yrJ4eJ": {
|
|
1134
|
-
"
|
|
1135
|
-
"
|
|
1153
|
+
"translation": "No results found",
|
|
1154
|
+
"notes": "Default message when no options are available in the select."
|
|
1136
1155
|
},
|
|
1137
1156
|
"U4LTHt7BSgC51Yri": {
|
|
1138
|
-
"
|
|
1139
|
-
"
|
|
1157
|
+
"translation": "A group cannot be empty.",
|
|
1158
|
+
"notes": "Filter field empty group error"
|
|
1140
1159
|
},
|
|
1141
1160
|
"U59PIse3upSvDblc": {
|
|
1142
|
-
"
|
|
1143
|
-
"
|
|
1161
|
+
"translation": "Invalid timeframe",
|
|
1162
|
+
"notes": "Error message shown if the from and to values of a timeframe are both invalid"
|
|
1163
|
+
},
|
|
1164
|
+
"U5fgWD8U9siN4Gse": {
|
|
1165
|
+
"translation": "Yes"
|
|
1144
1166
|
},
|
|
1145
1167
|
"U7gUoyCRKRniBDOp": {
|
|
1146
|
-
"
|
|
1147
|
-
"
|
|
1168
|
+
"translation": "Pan to the left",
|
|
1169
|
+
"notes": "Press the button to Pan to the left"
|
|
1148
1170
|
},
|
|
1149
1171
|
"UBJSASimMVkN5w7p": {
|
|
1150
|
-
"
|
|
1151
|
-
"
|
|
1172
|
+
"translation": "Select day",
|
|
1173
|
+
"notes": "Aria label to add to each day button"
|
|
1152
1174
|
},
|
|
1153
1175
|
"UK0OoP7XF++evklW": {
|
|
1154
|
-
"
|
|
1155
|
-
"
|
|
1176
|
+
"translation": "Close details",
|
|
1177
|
+
"notes": "Label for the button that closes the details panel."
|
|
1156
1178
|
},
|
|
1157
1179
|
"Ua7PnIRWAcErpii9": {
|
|
1158
|
-
"
|
|
1159
|
-
"
|
|
1180
|
+
"translation": "Filter JSON attributes using dot notation. For example:",
|
|
1181
|
+
"notes": "Hint for entering JSONPath syntax in the FilterField."
|
|
1160
1182
|
},
|
|
1161
1183
|
"UdBwDtbEgD8ojnmL": {
|
|
1162
|
-
"
|
|
1163
|
-
"
|
|
1184
|
+
"translation": "Someone else applied this segment, which is usually not available to you. You can only view or remove it.",
|
|
1185
|
+
"notes": "Description for the tooltip of an unlisted segment."
|
|
1164
1186
|
},
|
|
1165
1187
|
"Uuc6xAAPyctyHamM": {
|
|
1166
|
-
"
|
|
1167
|
-
"
|
|
1188
|
+
"translation": "Datepicker calendar trigger",
|
|
1189
|
+
"notes": "Text shown for the datetimepicker calendar trigger."
|
|
1168
1190
|
},
|
|
1169
1191
|
"V09xUXtpHEVFRBsh": {
|
|
1170
|
-
"
|
|
1171
|
-
"
|
|
1192
|
+
"translation": "{prefix, select, previous {Previous} next {Next} other {This}} {amount, plural, one {day} other {# days}}",
|
|
1193
|
+
"notes": "Timeframe formatter: timeframe-roundDown-day"
|
|
1172
1194
|
},
|
|
1173
1195
|
"V4fGRjKxu0XkK3nm": {
|
|
1174
|
-
"
|
|
1175
|
-
"
|
|
1196
|
+
"translation": "{prefix, select, previous {Previous} next {Next} other {This}} {amount, plural, one {quarter} other {# quarters}}",
|
|
1197
|
+
"notes": "Timeframe formatter: timeframe-roundDown-quarter"
|
|
1176
1198
|
},
|
|
1177
1199
|
"V6W9BJ4sF8Y+2/Si": {
|
|
1178
|
-
"
|
|
1179
|
-
"
|
|
1200
|
+
"translation": "Series",
|
|
1201
|
+
"notes": "Text label for the series in the tooltip. Displayed when hovering XYChart datapoints."
|
|
1180
1202
|
},
|
|
1181
1203
|
"V92OBR9Gk9REQKUu": {
|
|
1182
|
-
"
|
|
1183
|
-
"
|
|
1204
|
+
"translation": "No table columns configured.",
|
|
1205
|
+
"notes": "Message to display when no table columns are configured."
|
|
1184
1206
|
},
|
|
1185
1207
|
"VL8nEatHCgCkS4Yw": {
|
|
1186
|
-
"
|
|
1187
|
-
"
|
|
1208
|
+
"translation": "X-axis zoom",
|
|
1209
|
+
"notes": "Text in a tooltip shown when hovering the \"X-axis zoom\" mode in the time series chart toolbar"
|
|
1188
1210
|
},
|
|
1189
1211
|
"VTvQ7p6QQyABl+XP": {
|
|
1190
|
-
"
|
|
1191
|
-
"
|
|
1212
|
+
"translation": "The 'from' field is invalid.",
|
|
1213
|
+
"notes": "Error message shown if the from value of a timeframe is invalid"
|
|
1192
1214
|
},
|
|
1193
1215
|
"VXB6h9uDSpOZsvwP": {
|
|
1194
|
-
"
|
|
1195
|
-
"
|
|
1216
|
+
"translation": "Threshold",
|
|
1217
|
+
"notes": "Text displayed when hovering the threshold point or pill and no default label has been set"
|
|
1196
1218
|
},
|
|
1197
1219
|
"VYHp9Wzie7wOmBmf": {
|
|
1198
|
-
"
|
|
1199
|
-
"
|
|
1220
|
+
"translation": "DQL editor actions",
|
|
1221
|
+
"notes": "Aria label for the DQL editor actions menu trigger button."
|
|
1200
1222
|
},
|
|
1201
1223
|
"VkfutNWZVq0loZNC": {
|
|
1202
|
-
"
|
|
1203
|
-
"
|
|
1224
|
+
"translation": "No data available.",
|
|
1225
|
+
"notes": "Message to display when no data is available"
|
|
1204
1226
|
},
|
|
1205
1227
|
"VlyElrRtYeguIlZS": {
|
|
1206
|
-
"
|
|
1207
|
-
"
|
|
1228
|
+
"translation": "The 'from' field is required.",
|
|
1229
|
+
"notes": "Timeframe selector required from field error hint."
|
|
1208
1230
|
},
|
|
1209
1231
|
"VoHb/9htaX3GgMyA": {
|
|
1210
|
-
"
|
|
1211
|
-
"
|
|
1232
|
+
"translation": "Move",
|
|
1233
|
+
"notes": "Prefix for the moving a duration of the timeframe forward or backward, that is shown in the tooltip"
|
|
1212
1234
|
},
|
|
1213
1235
|
"VoqQWp9yEM0QM8eF": {
|
|
1214
|
-
"
|
|
1215
|
-
"
|
|
1236
|
+
"translation": "Go to previous page.",
|
|
1237
|
+
"notes": "Aria label to add to the `previous` button"
|
|
1216
1238
|
},
|
|
1217
1239
|
"Vp5mQzQ25g1cKY0D": {
|
|
1218
|
-
"
|
|
1219
|
-
"
|
|
1240
|
+
"translation": "Configure notifications",
|
|
1241
|
+
"notes": "Title for the Configure notifications menu item"
|
|
1220
1242
|
},
|
|
1221
1243
|
"VsLm4+Io4PguyLI+": {
|
|
1222
|
-
"
|
|
1223
|
-
"
|
|
1244
|
+
"translation": "Equals",
|
|
1245
|
+
"notes": "Filter field equals operator description"
|
|
1224
1246
|
},
|
|
1225
1247
|
"VwnLYpww5VUT3cdu": {
|
|
1226
|
-
"
|
|
1227
|
-
"
|
|
1248
|
+
"translation": "Deprecated",
|
|
1249
|
+
"notes": "Chip label indicating a feature is deprecated"
|
|
1228
1250
|
},
|
|
1229
1251
|
"W+rTy8UuFKDho3mc": {
|
|
1230
|
-
"
|
|
1231
|
-
"
|
|
1252
|
+
"translation": "Select timeframe",
|
|
1253
|
+
"notes": "Placeholder shown for the timeframe selector."
|
|
1232
1254
|
},
|
|
1233
1255
|
"W2KEm8AIcM8pOixf": {
|
|
1234
|
-
"
|
|
1235
|
-
"
|
|
1256
|
+
"translation": "Version {version}",
|
|
1257
|
+
"notes": "App version label"
|
|
1236
1258
|
},
|
|
1237
1259
|
"WCZAUtmjwNCm5iwa": {
|
|
1238
|
-
"
|
|
1239
|
-
"
|
|
1260
|
+
"translation": "Open app navigation",
|
|
1261
|
+
"notes": "Label for the menu trigger to open app-header navigation."
|
|
1240
1262
|
},
|
|
1241
1263
|
"WD6kswCbAgSXwMnO": {
|
|
1242
|
-
"
|
|
1243
|
-
"
|
|
1264
|
+
"translation": "{prefix}second",
|
|
1265
|
+
"notes": "The aria label for the second input of a time."
|
|
1244
1266
|
},
|
|
1245
1267
|
"WDNrzGxjR2Q0PO0t": {
|
|
1246
|
-
"
|
|
1247
|
-
"
|
|
1268
|
+
"translation": "Greater than",
|
|
1269
|
+
"notes": "Filter field greater than operator description"
|
|
1248
1270
|
},
|
|
1249
1271
|
"WGVOUOAZiBC2rWlk": {
|
|
1250
|
-
"
|
|
1251
|
-
"
|
|
1272
|
+
"translation": "Drag to order column \"{columnId}\".",
|
|
1273
|
+
"notes": "Label for the column drag handle in the column settings."
|
|
1252
1274
|
},
|
|
1253
1275
|
"WgyyLcd/Xq9voOe4": {
|
|
1254
|
-
"
|
|
1255
|
-
"
|
|
1276
|
+
"translation": "Dynamic",
|
|
1277
|
+
"notes": "Message to display when a threshold is dynamic"
|
|
1256
1278
|
},
|
|
1257
1279
|
"WxdPgLpYTL0pyM92": {
|
|
1258
|
-
"
|
|
1259
|
-
"
|
|
1280
|
+
"translation": "Clear segments",
|
|
1281
|
+
"notes": "Label for the clear segments button when segments are applied but the user has no permissions."
|
|
1260
1282
|
},
|
|
1261
1283
|
"X9SZ3eLw4rz/ODZQ": {
|
|
1262
|
-
"
|
|
1263
|
-
"
|
|
1284
|
+
"translation": "Add date and time",
|
|
1285
|
+
"notes": "Default placeholder for the date time input."
|
|
1264
1286
|
},
|
|
1265
1287
|
"XC7nO0JIPg0R0kBw": {
|
|
1266
|
-
"
|
|
1267
|
-
"
|
|
1288
|
+
"translation": "Add date",
|
|
1289
|
+
"notes": "Default placeholder for the date input."
|
|
1268
1290
|
},
|
|
1269
1291
|
"XOE5zKTRmqYLBnRf": {
|
|
1270
|
-
"
|
|
1271
|
-
"
|
|
1292
|
+
"translation": "Copy {field}",
|
|
1293
|
+
"notes": "Label for the copy action in the tooltip, where field is the name of the field to be copied"
|
|
1272
1294
|
},
|
|
1273
1295
|
"XPLMI3aOe8TwFwJc": {
|
|
1274
|
-
"
|
|
1275
|
-
"
|
|
1296
|
+
"translation": "Hide",
|
|
1297
|
+
"notes": "Text in a tooltip shown when hovering a legend series to hide it"
|
|
1276
1298
|
},
|
|
1277
1299
|
"XQHEJyt2t/js0TGr": {
|
|
1278
|
-
"
|
|
1279
|
-
"
|
|
1300
|
+
"translation": "Close feature highlight",
|
|
1301
|
+
"notes": "Close the feature highlight."
|
|
1280
1302
|
},
|
|
1281
1303
|
"XRD3go4HQunmYuM4": {
|
|
1282
|
-
"
|
|
1283
|
-
"
|
|
1304
|
+
"translation": "Ends-with is not supported for this key.",
|
|
1305
|
+
"notes": "Message shown if the ends-with operator is not supported for this key."
|
|
1284
1306
|
},
|
|
1285
1307
|
"XXsHBFWgU7wZSd8V": {
|
|
1286
|
-
"
|
|
1287
|
-
"
|
|
1308
|
+
"translation": "Add JSON",
|
|
1309
|
+
"notes": "Default placeholder for code editor when the language is JSON."
|
|
1288
1310
|
},
|
|
1289
1311
|
"XmYqCKn9iEfBoSSL": {
|
|
1290
|
-
"
|
|
1291
|
-
"
|
|
1312
|
+
"translation": "Open documentation",
|
|
1313
|
+
"notes": "Menu item label to open the DQL documentation in a new browser tab."
|
|
1292
1314
|
},
|
|
1293
1315
|
"Xug47ebOKpTzuLj1": {
|
|
1294
|
-
"
|
|
1295
|
-
"
|
|
1316
|
+
"translation": "Change font: default",
|
|
1317
|
+
"notes": "Set the font style of the column text."
|
|
1296
1318
|
},
|
|
1297
1319
|
"Xup0Ti6gaxC1KDSY": {
|
|
1298
|
-
"
|
|
1299
|
-
"
|
|
1320
|
+
"translation": "mm",
|
|
1321
|
+
"notes": "The abbreviation of the minute part of a time value"
|
|
1300
1322
|
},
|
|
1301
1323
|
"Xxl1F0GNIQlu2LSH": {
|
|
1302
|
-
"
|
|
1303
|
-
"
|
|
1324
|
+
"translation": "Learn more",
|
|
1325
|
+
"notes": "Short version of the display text for the link to the segments documentation."
|
|
1304
1326
|
},
|
|
1305
1327
|
"Y/6wwuz1ueL+7V2j": {
|
|
1306
|
-
"
|
|
1307
|
-
"
|
|
1328
|
+
"translation": "You can't pin more than 10 items.",
|
|
1329
|
+
"notes": "Tooltip text for pinning limit."
|
|
1308
1330
|
},
|
|
1309
1331
|
"Y0Ru/2gdHx6uuwvl": {
|
|
1310
|
-
"
|
|
1311
|
-
"
|
|
1332
|
+
"translation": "Expand toolbar",
|
|
1333
|
+
"notes": "Text in a tooltip shown when hovering \"Expand\" action in the time series chart toolbar"
|
|
1312
1334
|
},
|
|
1313
1335
|
"YF5nfeV6l4Yc8Wom": {
|
|
1314
|
-
"
|
|
1315
|
-
"
|
|
1336
|
+
"translation": "Category",
|
|
1337
|
+
"notes": "Text label for the category in the tooltip. Displayed when hovering over Pie chart."
|
|
1316
1338
|
},
|
|
1317
1339
|
"YINK0Te9FAqCqP/C": {
|
|
1318
|
-
"
|
|
1319
|
-
"
|
|
1340
|
+
"translation": "Turn {notificationEnabled, select, true {off} other {on}} notifications",
|
|
1341
|
+
"notes": "Label used to describe the button that toggles notify button notifications on or off"
|
|
1342
|
+
},
|
|
1343
|
+
"YTE4r9D1o7r/DV13": {
|
|
1344
|
+
"translation": "An error occurred",
|
|
1345
|
+
"notes": "The message shown when a component reaches an invalid state due to an uncaught exception."
|
|
1320
1346
|
},
|
|
1321
1347
|
"Yi8j4dchtpkwn/OB": {
|
|
1322
|
-
"
|
|
1323
|
-
"
|
|
1348
|
+
"translation": "Copy",
|
|
1349
|
+
"notes": "Shown for elements that trigger a copy to clipboard"
|
|
1324
1350
|
},
|
|
1325
1351
|
"YithM+0sfIXQLp9+": {
|
|
1326
|
-
"
|
|
1327
|
-
"
|
|
1352
|
+
"translation": "{expandState, select, expand {Expand} other {Collapse}} all subrows",
|
|
1353
|
+
"notes": "Describes the action of the sub rows trigger"
|
|
1328
1354
|
},
|
|
1329
1355
|
"Ym3RUHtaLVFsGlaM": {
|
|
1330
|
-
"
|
|
1331
|
-
"
|
|
1356
|
+
"translation": "Resize {label} panel",
|
|
1357
|
+
"notes": "Label for the resize handle of the panel to resize it with drag and drop or keyboard."
|
|
1332
1358
|
},
|
|
1333
1359
|
"YqEOqKR9iZt3qY0t": {
|
|
1334
|
-
"
|
|
1335
|
-
"
|
|
1360
|
+
"translation": "Downloading table data",
|
|
1361
|
+
"notes": "Tooltip information for the download table button while download is in progress."
|
|
1336
1362
|
},
|
|
1337
1363
|
"ZFLXYT4zoCbKvGNP": {
|
|
1338
|
-
"
|
|
1339
|
-
"
|
|
1364
|
+
"translation": "Learn more about segments",
|
|
1365
|
+
"notes": "Display text for the link to the segments documentation."
|
|
1340
1366
|
},
|
|
1341
1367
|
"ZGvbau7roOR3vlCG": {
|
|
1342
|
-
"
|
|
1343
|
-
"
|
|
1368
|
+
"translation": "Unpin",
|
|
1369
|
+
"notes": "Text in the menu item for unpinning the column."
|
|
1344
1370
|
},
|
|
1345
1371
|
"Za5bQfBDnyyur0mw": {
|
|
1346
|
-
"
|
|
1347
|
-
"
|
|
1372
|
+
"translation": "Cancel query",
|
|
1373
|
+
"notes": "Call to action for cancelable query button"
|
|
1348
1374
|
},
|
|
1349
1375
|
"Zc+msrZVGPNk84Lu": {
|
|
1350
|
-
"
|
|
1351
|
-
"
|
|
1376
|
+
"translation": "Ends with",
|
|
1377
|
+
"notes": "Filter field ends-with operator description"
|
|
1352
1378
|
},
|
|
1353
1379
|
"ZqPD+GJnri7vlLul": {
|
|
1354
|
-
"
|
|
1355
|
-
"
|
|
1380
|
+
"translation": "Supported values: Durations",
|
|
1381
|
+
"notes": "Message shown for value suggestions restricted by a validator map (only durations are valid)"
|
|
1356
1382
|
},
|
|
1357
1383
|
"Zr87lY6T9UiaWuMD": {
|
|
1358
|
-
"
|
|
1359
|
-
"
|
|
1384
|
+
"translation": "Start typing to enter a {suggestionType}.",
|
|
1385
|
+
"notes": "Empty state message shown if no key or value is provided yet."
|
|
1360
1386
|
},
|
|
1361
1387
|
"ZrxrsiqabWfxne/q": {
|
|
1362
|
-
"
|
|
1363
|
-
"
|
|
1388
|
+
"translation": "Add Markdown",
|
|
1389
|
+
"notes": "Default placeholder for code editor when the language is Markdown."
|
|
1364
1390
|
},
|
|
1365
1391
|
"ZsZq59BFxrIW5JzO": {
|
|
1366
|
-
"
|
|
1367
|
-
"
|
|
1392
|
+
"translation": "{isUnpinned, select, true {Pin column} other {Pin/Unpin column}}",
|
|
1393
|
+
"notes": "Tooltip for pinning or unpinning the column depending on its current state."
|
|
1368
1394
|
},
|
|
1369
1395
|
"ZvsC1dVcKeywqOWW": {
|
|
1370
|
-
"
|
|
1371
|
-
"
|
|
1396
|
+
"translation": "Duration",
|
|
1397
|
+
"notes": "Description for the duration of the timeframe, that is shown in the tooltip"
|
|
1372
1398
|
},
|
|
1373
1399
|
"a9uVGc0cPE1OqAJj": {
|
|
1374
|
-
"
|
|
1375
|
-
"
|
|
1400
|
+
"translation": "{prefix}day period",
|
|
1401
|
+
"notes": "The aria label for the day period (am/pm) input of a time."
|
|
1376
1402
|
},
|
|
1377
1403
|
"aB3uCeB71q6UURBy": {
|
|
1378
|
-
"
|
|
1379
|
-
"
|
|
1404
|
+
"translation": "Close modal",
|
|
1405
|
+
"notes": "Aria-label for close modal button."
|
|
1380
1406
|
},
|
|
1381
1407
|
"aGMowcWvdm+5M63D": {
|
|
1382
|
-
"
|
|
1383
|
-
"
|
|
1408
|
+
"translation": "This segment is no longer using variables. Click apply to refresh it.",
|
|
1409
|
+
"notes": "Error message shown when the selected segment has variables but does not expect any."
|
|
1384
1410
|
},
|
|
1385
1411
|
"aNWYfuuoyg/TEftI": {
|
|
1386
|
-
"
|
|
1387
|
-
"
|
|
1412
|
+
"translation": "{prefix, select, past {Last} future {Next} relativeFuture {In} other {}} {offset, plural, one {# hour} other {# hours}}{suffix}",
|
|
1413
|
+
"notes": "Timeframe formatter: timeframe-hour"
|
|
1388
1414
|
},
|
|
1389
1415
|
"aNafGo8pDA0dJBLo": {
|
|
1390
|
-
"
|
|
1391
|
-
"
|
|
1416
|
+
"translation": "text",
|
|
1417
|
+
"notes": "Label for string type used in mixed type error messages"
|
|
1392
1418
|
},
|
|
1393
1419
|
"aRc3KoQgfpti2E9M": {
|
|
1394
|
-
"
|
|
1395
|
-
"
|
|
1420
|
+
"translation": "Select month",
|
|
1421
|
+
"notes": "Aria label to add to each month button"
|
|
1396
1422
|
},
|
|
1397
1423
|
"aUi1nca6cF4KJPSw": {
|
|
1398
|
-
"
|
|
1399
|
-
"
|
|
1424
|
+
"translation": "A position operator cannot occur in this position.",
|
|
1425
|
+
"notes": "Filter field unsupported position operator"
|
|
1400
1426
|
},
|
|
1401
1427
|
"aYOFXw5HKPdKKWSu": {
|
|
1402
|
-
"
|
|
1403
|
-
"
|
|
1428
|
+
"translation": "Copied",
|
|
1429
|
+
"notes": "Text in a tooltip shown when clicking a tooltip series and copying its series name"
|
|
1404
1430
|
},
|
|
1405
1431
|
"af0kT/X4xYo3usY+": {
|
|
1406
|
-
"
|
|
1407
|
-
"
|
|
1432
|
+
"translation": "Zoom to selection",
|
|
1433
|
+
"notes": "Text displayed in the tooltip as the first action when zoom is enabled and a select interaction is performed on the Timeseries chart."
|
|
1408
1434
|
},
|
|
1409
1435
|
"ait1f+4Ly9rcloeq": {
|
|
1410
|
-
"
|
|
1411
|
-
"
|
|
1436
|
+
"translation": "duration",
|
|
1437
|
+
"notes": "Label for duration type used in mixed type error messages"
|
|
1412
1438
|
},
|
|
1413
1439
|
"aj7w8W3lv+e41SJB": {
|
|
1414
|
-
"
|
|
1415
|
-
"
|
|
1440
|
+
"translation": "{isPinned, select, true {Unpin} other {Pin}} filter",
|
|
1441
|
+
"notes": "Tooltip for the pin/unpin button in the filter field suggestions"
|
|
1416
1442
|
},
|
|
1417
1443
|
"ajJBzmvnE0ruvyfn": {
|
|
1418
|
-
"
|
|
1419
|
-
"
|
|
1444
|
+
"translation": "Invalid filter value. Only SmartscapeIds are supported for this key.",
|
|
1445
|
+
"notes": "Invalid value error for SmartscapeId type"
|
|
1420
1446
|
},
|
|
1421
1447
|
"an4qwOaAQd8t60m5": {
|
|
1422
|
-
"
|
|
1423
|
-
"
|
|
1448
|
+
"translation": "{isActivated, select, true {Deactivate} other {Activate}} row with id \"{rowId}\".",
|
|
1449
|
+
"notes": "Aria label for the interactive row trigger button."
|
|
1424
1450
|
},
|
|
1425
1451
|
"anCkyfyzovTz3qtv": {
|
|
1426
|
-
"
|
|
1427
|
-
"
|
|
1452
|
+
"translation": "DQL syntax",
|
|
1453
|
+
"notes": "Link text in the DQL editor autocomplete info section, pointing to the external DQL syntax documentation."
|
|
1428
1454
|
},
|
|
1429
1455
|
"aqGvcDl8n+XdhJiq": {
|
|
1430
|
-
"
|
|
1431
|
-
"
|
|
1456
|
+
"translation": "{hiddenColumnCount} {hiddenColumnCount, plural, one {column} other {columns}} hidden",
|
|
1457
|
+
"notes": "Column visibility button text"
|
|
1432
1458
|
},
|
|
1433
1459
|
"arDem4VUr6iNJ1A3": {
|
|
1434
|
-
"
|
|
1435
|
-
"
|
|
1460
|
+
"translation": "Zoom out",
|
|
1461
|
+
"notes": "Text in a tooltip shown when hovering the \"Zoom out\" action in the time series chart toolbar"
|
|
1436
1462
|
},
|
|
1437
1463
|
"b16Ain2TkJO1zJU6": {
|
|
1438
|
-
"
|
|
1439
|
-
"
|
|
1464
|
+
"translation": "Set end time to now",
|
|
1465
|
+
"notes": "Label for the button that sets the end time of a range selection to the current date and time."
|
|
1440
1466
|
},
|
|
1441
1467
|
"b5WOrn1oLsbJsvD8": {
|
|
1442
|
-
"
|
|
1443
|
-
"
|
|
1468
|
+
"translation": "Change to descending",
|
|
1469
|
+
"notes": "Column action menu item for multi-sorting a column in descending order when the column is already part of a multi-sort."
|
|
1444
1470
|
},
|
|
1445
1471
|
"b8jNkkwzLHYDkasb": {
|
|
1446
|
-
"
|
|
1447
|
-
"
|
|
1472
|
+
"translation": "Show {isExpanded, select, true {less} false {more} other{}}",
|
|
1473
|
+
"notes": "Text shown on the expanding button within the provided list, when currently expanded."
|
|
1448
1474
|
},
|
|
1449
1475
|
"bOr27M/3lXQFBWyp": {
|
|
1450
|
-
"
|
|
1451
|
-
"
|
|
1476
|
+
"translation": "Value",
|
|
1477
|
+
"notes": "Annotation tooltip title value"
|
|
1452
1478
|
},
|
|
1453
1479
|
"bvs68jg9q7RnuWgF": {
|
|
1454
|
-
"
|
|
1455
|
-
"
|
|
1480
|
+
"translation": "{count} data point",
|
|
1481
|
+
"notes": "Text in the tooltip header showing the number of selected data points"
|
|
1456
1482
|
},
|
|
1457
1483
|
"bvvqbArXvzAMOUit": {
|
|
1458
|
-
"
|
|
1459
|
-
"
|
|
1484
|
+
"translation": "Pan to the right",
|
|
1485
|
+
"notes": "Press the button to Pan to the right"
|
|
1460
1486
|
},
|
|
1461
1487
|
"bx7cExKj4X9tpZgs": {
|
|
1462
|
-
"
|
|
1463
|
-
"
|
|
1488
|
+
"translation": "Please copy the details and share them with your admin.",
|
|
1489
|
+
"notes": "Hint to copy details to share with an admin."
|
|
1464
1490
|
},
|
|
1465
1491
|
"cBlxys3qfILuKMaG": {
|
|
1466
|
-
"
|
|
1467
|
-
"
|
|
1492
|
+
"translation": "Only dates between {min} → {max} are available.",
|
|
1493
|
+
"notes": "Hint to display in the timeframe selector if a min and a max date is set."
|
|
1468
1494
|
},
|
|
1469
1495
|
"cycz+bYG+VH7Of4e": {
|
|
1470
|
-
"
|
|
1471
|
-
"
|
|
1496
|
+
"translation": "Loading",
|
|
1497
|
+
"notes": "Label for the loading state."
|
|
1472
1498
|
},
|
|
1473
1499
|
"d4ODG2WkdaedSe5s": {
|
|
1474
|
-
"
|
|
1475
|
-
"
|
|
1500
|
+
"translation": "Search suggestion",
|
|
1501
|
+
"notes": "Aria label for the search suggestion group."
|
|
1476
1502
|
},
|
|
1477
1503
|
"d7CsKWrzLvzuObN6": {
|
|
1478
|
-
"
|
|
1479
|
-
"
|
|
1504
|
+
"translation": "The 'to' field is required.",
|
|
1505
|
+
"notes": "Timeframe selector required to field error hint."
|
|
1506
|
+
},
|
|
1507
|
+
"dDHj3yQ8W+M8/6Cy": {
|
|
1508
|
+
"translation": "Package"
|
|
1480
1509
|
},
|
|
1481
1510
|
"dIZIXjFpJvLPz3+g": {
|
|
1482
|
-
"
|
|
1483
|
-
"
|
|
1511
|
+
"translation": "to",
|
|
1512
|
+
"notes": "Text in the tooltip header indicating the end of the selected range"
|
|
1484
1513
|
},
|
|
1485
1514
|
"dTJ8Pdj8Xm9Uh9Y+": {
|
|
1486
|
-
"
|
|
1487
|
-
"
|
|
1515
|
+
"translation": "Collapse toolbar",
|
|
1516
|
+
"notes": "Text in a tooltip shown when hovering \"Collapse\" action in the time series chart toolbar"
|
|
1488
1517
|
},
|
|
1489
1518
|
"dtWYZ7eG/P5QCKp5": {
|
|
1490
|
-
"
|
|
1491
|
-
"
|
|
1519
|
+
"translation": "{value} pinned filter suggestion(s).",
|
|
1520
|
+
"notes": "Screen reader announcement for the count of user-pinned filter suggestions available for selection."
|
|
1492
1521
|
},
|
|
1493
1522
|
"dxcsnLOTenNXGZkn": {
|
|
1494
|
-
"
|
|
1495
|
-
"
|
|
1523
|
+
"translation": "Disable line wrap",
|
|
1524
|
+
"notes": "Text in the column action item for disabling line wrap for the column."
|
|
1496
1525
|
},
|
|
1497
1526
|
"dyadgwpDBQLyqJaa": {
|
|
1498
|
-
"
|
|
1499
|
-
"
|
|
1527
|
+
"translation": "Doesn't start with",
|
|
1528
|
+
"notes": "Filter field not-starts-with operator description"
|
|
1500
1529
|
},
|
|
1501
1530
|
"e2L/mGCBvRqDTvq2": {
|
|
1502
|
-
"
|
|
1503
|
-
"
|
|
1531
|
+
"translation": "Clear all",
|
|
1532
|
+
"notes": "Label for the clear all button."
|
|
1504
1533
|
},
|
|
1505
1534
|
"eII4gA0InOVMB0Uh": {
|
|
1506
|
-
"
|
|
1507
|
-
"
|
|
1535
|
+
"translation": "No suggestions available.",
|
|
1536
|
+
"notes": "Aria text when there are no available suggestion."
|
|
1508
1537
|
},
|
|
1509
1538
|
"eJrsgl5/4XpLIWxo": {
|
|
1510
|
-
"
|
|
1511
|
-
"
|
|
1539
|
+
"translation": "Your assigned access control policies don't permit you to use segments.",
|
|
1540
|
+
"notes": "Message shown when access control permissions are missing and no segments are applied."
|
|
1512
1541
|
},
|
|
1513
1542
|
"eONO7S5ZXY7V+R6d": {
|
|
1514
|
-
"
|
|
1515
|
-
"
|
|
1543
|
+
"translation": "More options",
|
|
1544
|
+
"notes": "Text in button that opens a menu with more actions in the chart toolbar"
|
|
1516
1545
|
},
|
|
1517
1546
|
"eYRqhWFzgj9ne5TC": {
|
|
1518
|
-
"
|
|
1519
|
-
"
|
|
1547
|
+
"translation": "The first column of a variable cannot be an array.",
|
|
1548
|
+
"notes": "Error message shown when a segment variable is identified by a first column array."
|
|
1520
1549
|
},
|
|
1521
1550
|
"eZkDqSXP6kwDUc5d": {
|
|
1522
|
-
"
|
|
1523
|
-
"
|
|
1551
|
+
"translation": "invalid timeframe",
|
|
1552
|
+
"notes": "Timeframe formatter: invalid"
|
|
1524
1553
|
},
|
|
1525
1554
|
"euRey+Fz9NxskAuO": {
|
|
1526
|
-
"
|
|
1527
|
-
"
|
|
1555
|
+
"translation": "Cancel",
|
|
1556
|
+
"notes": "Cancel button text"
|
|
1528
1557
|
},
|
|
1529
1558
|
"ewgHQuXKDMK7CzyQ": {
|
|
1530
|
-
"
|
|
1531
|
-
"
|
|
1559
|
+
"translation": "to",
|
|
1560
|
+
"notes": "Timeframe formatter: timeframe-to"
|
|
1532
1561
|
},
|
|
1533
1562
|
"f4/NcUWxDYnAQ68s": {
|
|
1534
|
-
"
|
|
1535
|
-
"
|
|
1563
|
+
"translation": "Download as CSV",
|
|
1564
|
+
"notes": "Text in \"Download data\" button in the chart toolbar"
|
|
1536
1565
|
},
|
|
1537
1566
|
"fE+5JaLlWXQ3dlNm": {
|
|
1538
|
-
"
|
|
1539
|
-
"
|
|
1567
|
+
"translation": "Change font: monospace",
|
|
1568
|
+
"notes": "Set the font style of the column text."
|
|
1540
1569
|
},
|
|
1541
1570
|
"fHGjouAXIpSTl8T2": {
|
|
1542
|
-
"
|
|
1543
|
-
"
|
|
1571
|
+
"translation": "End",
|
|
1572
|
+
"notes": "Description for the end time of the preset item value, that is shown in the tooltip"
|
|
1544
1573
|
},
|
|
1545
1574
|
"fIr5C8WQPnYfAMr5": {
|
|
1546
|
-
"
|
|
1547
|
-
"
|
|
1575
|
+
"translation": "Add code",
|
|
1576
|
+
"notes": "Default placeholder for code editor when no language is set."
|
|
1548
1577
|
},
|
|
1549
1578
|
"fJPc1Tw4jSAEp5KQ": {
|
|
1550
|
-
"
|
|
1551
|
-
"
|
|
1579
|
+
"translation": "Doesn't end with {value}",
|
|
1580
|
+
"notes": "Message shown if the not-ends-with operator can be used with the current value."
|
|
1552
1581
|
},
|
|
1553
1582
|
"fLfhKO8cXlo3vW5M": {
|
|
1554
|
-
"
|
|
1555
|
-
"
|
|
1583
|
+
"translation": "Please provide a value that matches the requested type ({type}).",
|
|
1584
|
+
"notes": "Error message for input that doesn't match the expected type."
|
|
1556
1585
|
},
|
|
1557
1586
|
"fMy6q/KKOqbvCA3H": {
|
|
1558
|
-
"
|
|
1559
|
-
"
|
|
1587
|
+
"translation": "DateTime from",
|
|
1588
|
+
"notes": "Textbox to enter a relative or absolute timeframe from value."
|
|
1560
1589
|
},
|
|
1561
1590
|
"fg8x33u8t5tYtlE9": {
|
|
1562
|
-
"
|
|
1563
|
-
"
|
|
1591
|
+
"translation": "Add JavaScript",
|
|
1592
|
+
"notes": "Default placeholder for code editor when the language is JavaScript."
|
|
1564
1593
|
},
|
|
1565
1594
|
"fzkORq3AsvX/NtMB": {
|
|
1566
|
-
"
|
|
1567
|
-
"
|
|
1595
|
+
"translation": "Got it",
|
|
1596
|
+
"notes": "Microguide Got it button at last step."
|
|
1568
1597
|
},
|
|
1569
1598
|
"g1/iHBY5uUDFWT6o": {
|
|
1570
|
-
"
|
|
1571
|
-
"
|
|
1599
|
+
"translation": "Zoom in",
|
|
1600
|
+
"notes": "Text in a tooltip shown when hovering the \"Zoom in\" action in the histogram chart toolbar"
|
|
1572
1601
|
},
|
|
1573
1602
|
"g16jcz6++0Pvr3BY": {
|
|
1574
|
-
"
|
|
1575
|
-
"
|
|
1603
|
+
"translation": "Zoom to selection",
|
|
1604
|
+
"notes": "Text displayed in the tooltip as the first action when zoom is enabled and a select interaction is performed on the Histogram chart."
|
|
1576
1605
|
},
|
|
1577
1606
|
"g1uJ6PuX78GYkCnv": {
|
|
1578
|
-
"
|
|
1579
|
-
"
|
|
1607
|
+
"translation": "Notification couldn't be created",
|
|
1608
|
+
"notes": "Text used for the notify button toast heading when the limit is reached."
|
|
1580
1609
|
},
|
|
1581
1610
|
"g2fLjUNdQ/qPFLMn": {
|
|
1582
|
-
"
|
|
1583
|
-
"
|
|
1611
|
+
"translation": "{noOfRows, plural, one {# row} other {# rows}}",
|
|
1612
|
+
"notes": "Row count shown alongside each download option"
|
|
1584
1613
|
},
|
|
1585
1614
|
"g5VGRS4KVxg346o4": {
|
|
1586
|
-
"
|
|
1587
|
-
"
|
|
1615
|
+
"translation": "Suggestions overlay opened. You can navigate to a suggestion with the arrow up or arrow down key and select it by pressing enter. Please continue typing to filter.",
|
|
1616
|
+
"notes": "Filter field screen reader announcement for opened suggestions."
|
|
1588
1617
|
},
|
|
1589
1618
|
"gAPECRr427W1IZEa": {
|
|
1590
|
-
"
|
|
1591
|
-
"
|
|
1619
|
+
"translation": "Explore mode",
|
|
1620
|
+
"notes": "Text in a tooltip shown when hovering the \"Explore\" mode in the histogram chart toolbar"
|
|
1592
1621
|
},
|
|
1593
1622
|
"gIQd1giAq7WNDZp6": {
|
|
1594
|
-
"
|
|
1595
|
-
"
|
|
1623
|
+
"translation": "{offset, plural, one {# day} other {# days}}",
|
|
1624
|
+
"notes": "Timeframe duration formatter: timeframe-day"
|
|
1596
1625
|
},
|
|
1597
1626
|
"gVTqz8lR6St4GyrT": {
|
|
1598
|
-
"
|
|
1599
|
-
"
|
|
1627
|
+
"translation": "Set start time to now",
|
|
1628
|
+
"notes": "Label for the button that sets the start time of a range selection to the current date and time."
|
|
1629
|
+
},
|
|
1630
|
+
"gWxS/SvdlKY80JRI": {
|
|
1631
|
+
"translation": "No"
|
|
1600
1632
|
},
|
|
1601
1633
|
"gbREY3JeG/Gnn5VH": {
|
|
1602
|
-
"
|
|
1603
|
-
"
|
|
1634
|
+
"translation": "{suggestionsLength} suggestions available: {combinedSuggestions}",
|
|
1635
|
+
"notes": "Aria text for less than 10 suggestions."
|
|
1604
1636
|
},
|
|
1605
1637
|
"gg76gjIy5leuPbMT": {
|
|
1606
|
-
"
|
|
1607
|
-
"
|
|
1638
|
+
"translation": "Error (click to retry)",
|
|
1639
|
+
"notes": "Label for button indicating that an error has occurred while running the query. Click to retry."
|
|
1608
1640
|
},
|
|
1609
1641
|
"ggfg/kIzwBCNyGCm": {
|
|
1610
|
-
"
|
|
1611
|
-
"
|
|
1642
|
+
"translation": "Select an option",
|
|
1643
|
+
"notes": "Default placeholder text for the single select."
|
|
1612
1644
|
},
|
|
1613
1645
|
"gllJsm/rrRr/LIng": {
|
|
1614
|
-
"
|
|
1615
|
-
"
|
|
1646
|
+
"translation": "Zoom mode",
|
|
1647
|
+
"notes": "Text in a tooltip shown when hovering the \"Zoom\" mode in the histogram chart toolbar"
|
|
1616
1648
|
},
|
|
1617
1649
|
"gnKOHMjpyzk6hNcF": {
|
|
1618
|
-
"
|
|
1619
|
-
"
|
|
1650
|
+
"translation": "Start time",
|
|
1651
|
+
"notes": "Start of timeframe"
|
|
1620
1652
|
},
|
|
1621
1653
|
"grMCOLy6cDAqdO7V": {
|
|
1622
|
-
"
|
|
1623
|
-
"
|
|
1654
|
+
"translation": "Change size for \"{column}\" column",
|
|
1655
|
+
"notes": "Aria label for DataTable header resize handler"
|
|
1624
1656
|
},
|
|
1625
1657
|
"gzgHXY7+xENWvOfC": {
|
|
1626
|
-
"
|
|
1627
|
-
"
|
|
1658
|
+
"translation": "{offset, plural, one {# year} other {# years}}",
|
|
1659
|
+
"notes": "Timeframe duration formatter: timeframe-year"
|
|
1628
1660
|
},
|
|
1629
1661
|
"hIBEZw/eT6Nb+dz3": {
|
|
1630
|
-
"
|
|
1631
|
-
"
|
|
1662
|
+
"translation": "(read only)",
|
|
1663
|
+
"notes": "Text appended to a label when the associated form field is read-only."
|
|
1632
1664
|
},
|
|
1633
1665
|
"hIK5810KwQytwP1q": {
|
|
1634
|
-
"
|
|
1635
|
-
"
|
|
1666
|
+
"translation": "Please fill in this field.",
|
|
1667
|
+
"notes": "DateTimePicker required value is missing."
|
|
1636
1668
|
},
|
|
1637
1669
|
"hi3IodOo0ygpihhY": {
|
|
1638
|
-
"
|
|
1639
|
-
"
|
|
1670
|
+
"translation": "Running",
|
|
1671
|
+
"notes": "Label for button indicating that a query is loading"
|
|
1640
1672
|
},
|
|
1641
1673
|
"hnsZ5MLEj9V3vVxP": {
|
|
1642
|
-
"
|
|
1643
|
-
"
|
|
1674
|
+
"translation": "Timeframe selector overlay for providing a custom timeframe or selecting one of the presets",
|
|
1675
|
+
"notes": "Aria label for the overlay of the timeframe selector."
|
|
1644
1676
|
},
|
|
1645
1677
|
"i7ML7nsvim1vfXlT": {
|
|
1646
|
-
"
|
|
1647
|
-
"
|
|
1678
|
+
"translation": "Close",
|
|
1679
|
+
"notes": "Label next to the Esc keyboard shortcut in the DQL editor autocomplete info section, describing the action the shortcut triggers."
|
|
1648
1680
|
},
|
|
1649
1681
|
"iN3ZVFNmBN0hzG0I": {
|
|
1650
|
-
"
|
|
1651
|
-
"
|
|
1682
|
+
"translation": "Zoom in",
|
|
1683
|
+
"notes": "Text in a tooltip shown when hovering the \"Zoom in\" action in the time series chart toolbar"
|
|
1652
1684
|
},
|
|
1653
1685
|
"iO0lZy6i8mjT0jzt": {
|
|
1654
|
-
"
|
|
1655
|
-
"
|
|
1686
|
+
"translation": "Change to ascending",
|
|
1687
|
+
"notes": "Column action menu item for multi-sorting a column in ascending order when the column is already part of a multi-sort."
|
|
1656
1688
|
},
|
|
1657
1689
|
"iQMNfVmL/0auzXXf": {
|
|
1658
|
-
"
|
|
1659
|
-
"
|
|
1690
|
+
"translation": "Apply filter syntax",
|
|
1691
|
+
"notes": "Suggestion to enter the pasted text into the FilterField."
|
|
1660
1692
|
},
|
|
1661
1693
|
"ibW/chmVU64qftcF": {
|
|
1662
|
-
"
|
|
1663
|
-
"
|
|
1694
|
+
"translation": "No notification could be created, the limit for notification type {notificationType} is reached.",
|
|
1695
|
+
"notes": "Text used for the notify button toast content when the limit is reached."
|
|
1664
1696
|
},
|
|
1665
1697
|
"iuy+4WgQ89QDvgl+": {
|
|
1666
|
-
"
|
|
1667
|
-
"
|
|
1698
|
+
"translation": "Pinned filters",
|
|
1699
|
+
"notes": "Headline for recently used filters suggestions in the filter field"
|
|
1668
1700
|
},
|
|
1669
1701
|
"iygPRzX1n+gL7TLR": {
|
|
1670
|
-
"
|
|
1671
|
-
"
|
|
1702
|
+
"translation": "Loading segments",
|
|
1703
|
+
"notes": "Aria-label for the loading view within the SegmentSelector Overlay."
|
|
1672
1704
|
},
|
|
1673
1705
|
"j7ELo0pUXF1X46+R": {
|
|
1674
|
-
"
|
|
1675
|
-
"
|
|
1706
|
+
"translation": "This wildcard operator is not valid for this key.",
|
|
1707
|
+
"notes": "Filter field invalid wildcard operator"
|
|
1676
1708
|
},
|
|
1677
1709
|
"jT47SZ4EuoZYSr9x": {
|
|
1678
|
-
"
|
|
1679
|
-
"
|
|
1710
|
+
"translation": "Doesn't contain",
|
|
1711
|
+
"notes": "Filter field not-contains operator description"
|
|
1680
1712
|
},
|
|
1681
1713
|
"jZte4Ia6a1UkBwpv": {
|
|
1682
|
-
"
|
|
1683
|
-
"
|
|
1714
|
+
"translation": "{prefix, select, past {Last} future {Next} relativeFuture {In} other {}} {offset, plural, one {# month} other {# months}}{suffix}",
|
|
1715
|
+
"notes": "Timeframe formatter: timeframe-month"
|
|
1684
1716
|
},
|
|
1685
1717
|
"jc4XDeI4sf7aLs2W": {
|
|
1686
1718
|
"translation": "Value"
|
|
1687
1719
|
},
|
|
1688
1720
|
"jishWwgadkdK/YkI": {
|
|
1689
|
-
"
|
|
1690
|
-
"
|
|
1721
|
+
"translation": "Toggle notify button notifications overlay",
|
|
1722
|
+
"notes": "Aria label used for the notify button trigger"
|
|
1691
1723
|
},
|
|
1692
1724
|
"jtrx2KCeXnLeA8Kd": {
|
|
1693
|
-
"
|
|
1694
|
-
"
|
|
1725
|
+
"translation": "The filter field statement is incomplete.",
|
|
1726
|
+
"notes": "Filter field incomplete statement error"
|
|
1695
1727
|
},
|
|
1696
1728
|
"k+MFecbA4aJKNSbM": {
|
|
1697
|
-
"
|
|
1698
|
-
"
|
|
1729
|
+
"translation": "No data has been provided.",
|
|
1730
|
+
"notes": "Empty state message for the gantt chart."
|
|
1699
1731
|
},
|
|
1700
1732
|
"k3/OeMKig2l4gCEJ": {
|
|
1701
|
-
"
|
|
1702
|
-
"
|
|
1733
|
+
"translation": "number",
|
|
1734
|
+
"notes": "Label for number type used in mixed type error messages"
|
|
1703
1735
|
},
|
|
1704
1736
|
"kCk8ZqQbTzdkw3WN": {
|
|
1705
|
-
"
|
|
1706
|
-
"
|
|
1737
|
+
"translation": "{expandState, select, expand {Expand} other {Collapse}} subrow with id \"{id}\".",
|
|
1738
|
+
"notes": "Describes the action of the sub rows trigger"
|
|
1707
1739
|
},
|
|
1708
1740
|
"kOQNUENAg02eeaTY": {
|
|
1709
1741
|
"translation": "Get started"
|
|
1710
1742
|
},
|
|
1711
1743
|
"kbjLqK2W/E1NyaKH": {
|
|
1712
|
-
"
|
|
1713
|
-
"
|
|
1744
|
+
"translation": "Y-value",
|
|
1745
|
+
"notes": "Text label for the y-value in the tooltip. Displayed when hovering over XYChart datapoints."
|
|
1714
1746
|
},
|
|
1715
1747
|
"kctf0+Hea33LxYTL": {
|
|
1716
|
-
"
|
|
1717
|
-
"
|
|
1748
|
+
"translation": "The filter value is missing.",
|
|
1749
|
+
"notes": "Filter field missing value error"
|
|
1718
1750
|
},
|
|
1719
1751
|
"kq1Ips7kEIlJ2yFv": {
|
|
1720
|
-
"
|
|
1721
|
-
"
|
|
1752
|
+
"translation": "Change sorting for \"{column}\" column to {direction, select, asc {ascending} desc {descending} other {unset}} or drag to reorder \"{column}\" column.",
|
|
1753
|
+
"notes": "Aria label for DataTable header button that toggles sorting and allows for drag and drop column reordering."
|
|
1722
1754
|
},
|
|
1723
1755
|
"ktoTdX660gW5R80Z": {
|
|
1724
|
-
"
|
|
1725
|
-
"
|
|
1756
|
+
"translation": "ss",
|
|
1757
|
+
"notes": "The abbreviation of the second part of a time value"
|
|
1726
1758
|
},
|
|
1727
1759
|
"l1RC/QWjUJWHIM++": {
|
|
1728
|
-
"
|
|
1729
|
-
"
|
|
1760
|
+
"translation": "A position operator can only occur before or after a doublequote, not both.",
|
|
1761
|
+
"notes": "Filter field duplicate position operator error"
|
|
1730
1762
|
},
|
|
1731
1763
|
"lCYAKjQqWpqlsSEs": {
|
|
1732
|
-
"
|
|
1733
|
-
"
|
|
1764
|
+
"translation": "Download as CSV",
|
|
1765
|
+
"notes": "Text in a tooltip shown when hovering the \"Download data\" button in the categorical bar chart toolbar"
|
|
1734
1766
|
},
|
|
1735
1767
|
"lLbR2C5+S97CTJ4v": {
|
|
1736
|
-
"
|
|
1737
|
-
"
|
|
1768
|
+
"translation": "Reserved characters aren't allowed in keys or values. Escape them by adding a backslash '\\' in front or wrapping the whole string in double quotes.",
|
|
1769
|
+
"notes": "Filter field invalid characters"
|
|
1738
1770
|
},
|
|
1739
1771
|
"laIylhVFbIvEZrxt": {
|
|
1740
|
-
"
|
|
1741
|
-
"
|
|
1772
|
+
"translation": "Please fill in this field.",
|
|
1773
|
+
"notes": "Error message for missing input."
|
|
1742
1774
|
},
|
|
1743
1775
|
"lrDYNZ+hnaBD30/j": {
|
|
1744
|
-
"
|
|
1745
|
-
"
|
|
1776
|
+
"translation": "Incomplete filter statement. A valid statement consists of key, comparator, and value. Alternatively, add {operator} in front to search for this phrase in all data.",
|
|
1777
|
+
"notes": "Filter field incomplete statement error"
|
|
1746
1778
|
},
|
|
1747
1779
|
"lu2hmVHtfcnVRPtz": {
|
|
1748
|
-
"
|
|
1749
|
-
"
|
|
1780
|
+
"translation": "rows per page",
|
|
1781
|
+
"notes": "Text to display when choosing the number of rows per page."
|
|
1750
1782
|
},
|
|
1751
1783
|
"ly03uOR7VGcWb+pG": {
|
|
1752
|
-
"
|
|
1753
|
-
"
|
|
1784
|
+
"translation": "{prefix, select, past {Last} future {Next} relativeFuture {In} other {}} {offset, plural, one {# year} other {# years}}{suffix}",
|
|
1785
|
+
"notes": "Timeframe formatter: timeframe-year"
|
|
1786
|
+
},
|
|
1787
|
+
"ly1XN52z5b521OrX": {
|
|
1788
|
+
"translation": "Duplicate"
|
|
1754
1789
|
},
|
|
1755
1790
|
"m5z+3UJ4Q3absAi5": {
|
|
1756
|
-
"
|
|
1757
|
-
"
|
|
1791
|
+
"translation": "{prefix, select, past {Last} future {Next} relativeFuture {In} other {}} {offset, plural, one {# quarter} other {# quarters}}{suffix}",
|
|
1792
|
+
"notes": "Timeframe formatter: timeframe-quarter"
|
|
1758
1793
|
},
|
|
1759
1794
|
"mG+nMDkU8bB8zLlO": {
|
|
1760
|
-
"
|
|
1761
|
-
"
|
|
1795
|
+
"translation": "{offset, plural, one {# second} other {# seconds}}",
|
|
1796
|
+
"notes": "Timeframe duration formatter: timeframe-second"
|
|
1762
1797
|
},
|
|
1763
1798
|
"mS6CPzO+pMJLetSA": {
|
|
1764
|
-
"
|
|
1765
|
-
"
|
|
1799
|
+
"translation": "Clear filter",
|
|
1800
|
+
"notes": "Aria label used for the clear button inside the filter field."
|
|
1766
1801
|
},
|
|
1767
1802
|
"mSrICwXdDHSlEwIq": {
|
|
1768
|
-
"
|
|
1769
|
-
"
|
|
1803
|
+
"translation": "You won't be notified about updates via email.",
|
|
1804
|
+
"notes": "Additional information text used for the notify button overlay when notifications are disabled"
|
|
1770
1805
|
},
|
|
1771
1806
|
"mTmhCH1Z7z3TY8Jo": {
|
|
1772
|
-
"
|
|
1773
|
-
"
|
|
1807
|
+
"translation": "Change sorting for \"{column}\" column to {direction, select, asc {ascending} desc {descending} other {unset}}",
|
|
1808
|
+
"notes": "Aria label for DataTable header button that toggles sorting"
|
|
1774
1809
|
},
|
|
1775
1810
|
"mXDFppLKSC7oX/Ba": {
|
|
1776
|
-
"
|
|
1777
|
-
"
|
|
1811
|
+
"translation": "Doesn't contain {value}",
|
|
1812
|
+
"notes": "Message shown if the not-contains operator can be used with the current value."
|
|
1778
1813
|
},
|
|
1779
1814
|
"mYmd/xMZulbADHsY": {
|
|
1780
|
-
"
|
|
1781
|
-
"
|
|
1815
|
+
"translation": "Show {isExpanded, select, true {less} false {more} other{}}",
|
|
1816
|
+
"notes": "Text shown on the expanding button within the SegmentSelector preset list, when currently expanded."
|
|
1782
1817
|
},
|
|
1783
1818
|
"mscZH1VbXmfXn9BL": {
|
|
1784
|
-
"
|
|
1785
|
-
"
|
|
1819
|
+
"translation": "Zoom in",
|
|
1820
|
+
"notes": "Text in a tooltip shown when hovering the \"Zoom in\" action in the xy chart toolbar"
|
|
1786
1821
|
},
|
|
1787
1822
|
"mtKUJAn0mf0dbG4E": {
|
|
1788
|
-
"
|
|
1789
|
-
"
|
|
1823
|
+
"translation": "Your assigned access control policies don't permit you to read or apply segments.",
|
|
1824
|
+
"notes": "Message shown when access control permissions are missing but a query with segments was run."
|
|
1790
1825
|
},
|
|
1791
1826
|
"n17DpsKydU3rdqK9": {
|
|
1792
|
-
"
|
|
1793
|
-
"
|
|
1827
|
+
"translation": "Download table data",
|
|
1828
|
+
"notes": "Tooltip information for the download table button."
|
|
1829
|
+
},
|
|
1830
|
+
"n1zi/yl5dOaxTrfN": {
|
|
1831
|
+
"translation": "Reset",
|
|
1832
|
+
"notes": "Button text for trying to recover a component from an invalid state."
|
|
1794
1833
|
},
|
|
1795
1834
|
"n3kHNMq0wIDbAVfm": {
|
|
1796
|
-
"
|
|
1797
|
-
"
|
|
1835
|
+
"translation": "Current page",
|
|
1836
|
+
"notes": "Label for downloading current page rows"
|
|
1798
1837
|
},
|
|
1799
1838
|
"nDzGVBRq+V8ulNuu": {
|
|
1800
|
-
"
|
|
1801
|
-
"
|
|
1839
|
+
"translation": "{count, plural, one {# data point} other {# data points}} across {seriesCount} series",
|
|
1840
|
+
"notes": "Text in the tooltip header showing the number of selected data points in multiple series"
|
|
1802
1841
|
},
|
|
1803
1842
|
"nIw/xeiGNJsj+a+5": {
|
|
1804
|
-
"
|
|
1805
|
-
"
|
|
1843
|
+
"translation": "No matching values for this segment found.",
|
|
1844
|
+
"notes": "Hint shown when searching for a segment variable that isn't in the list."
|
|
1806
1845
|
},
|
|
1807
1846
|
"nS4QPK3zNih9UAZs": {
|
|
1808
|
-
"
|
|
1809
|
-
"
|
|
1847
|
+
"translation": "Invalid combination of position operators and comparator. Allowed comparators: =, !=",
|
|
1848
|
+
"notes": "Position operator not supported for used comparator."
|
|
1810
1849
|
},
|
|
1811
1850
|
"nZQixLAUTDhflk9Q": {
|
|
1812
|
-
"
|
|
1813
|
-
"
|
|
1851
|
+
"translation": "Additionally available suggestions:",
|
|
1852
|
+
"notes": "Screen reader announcement introducing additional suggestion categories such as recent, pinned, or search suggestions."
|
|
1814
1853
|
},
|
|
1815
1854
|
"nZk5lg177+CQcO/Z": {
|
|
1816
|
-
"
|
|
1817
|
-
"
|
|
1855
|
+
"translation": "{prefix}year",
|
|
1856
|
+
"notes": "The aria label for the year input of a date."
|
|
1818
1857
|
},
|
|
1819
1858
|
"npzzIhowJGIZhj8d": {
|
|
1820
1859
|
"translation": "Documentation"
|
|
1821
1860
|
},
|
|
1822
1861
|
"ntRg2/q/0hsoJ9+r": {
|
|
1823
|
-
"
|
|
1824
|
-
"
|
|
1862
|
+
"translation": "Pan mode",
|
|
1863
|
+
"notes": "Text in a tooltip shown when hovering the \"Pan\" mode in the time series chart toolbar"
|
|
1825
1864
|
},
|
|
1826
1865
|
"o3A99RFWS+N7bJe8": {
|
|
1827
|
-
"
|
|
1828
|
-
"
|
|
1866
|
+
"translation": "Details",
|
|
1867
|
+
"notes": "Accessible label for the details panel."
|
|
1829
1868
|
},
|
|
1830
1869
|
"oA42meteX3Ww5Zo5": {
|
|
1831
1870
|
"translation": "App navigation"
|
|
1832
1871
|
},
|
|
1833
1872
|
"oDh+EhNRRqQQkNAS": {
|
|
1834
|
-
"
|
|
1835
|
-
"
|
|
1873
|
+
"translation": "Add as ascending",
|
|
1874
|
+
"notes": "Column action menu item for multi-sorting a column in ascending order."
|
|
1836
1875
|
},
|
|
1837
1876
|
"oSKhN7fSy19ei878": {
|
|
1838
|
-
"
|
|
1839
|
-
"
|
|
1877
|
+
"translation": "Select segment",
|
|
1878
|
+
"notes": "Placeholder for the trigger of the select within the segmentSelector Overlay."
|
|
1840
1879
|
},
|
|
1841
1880
|
"oVgkJujKiRvYqIFQ": {
|
|
1842
|
-
"
|
|
1843
|
-
"
|
|
1881
|
+
"translation": "Apply",
|
|
1882
|
+
"notes": "Apply button text"
|
|
1844
1883
|
},
|
|
1845
1884
|
"ovlsWnQ6TNpxUzyF": {
|
|
1846
|
-
"
|
|
1847
|
-
"
|
|
1885
|
+
"translation": "No matching segments found. If you’re looking for a segment value, select the segment first.",
|
|
1886
|
+
"notes": "Hint shown when searching for a segment variable that isn't in the list."
|
|
1848
1887
|
},
|
|
1849
1888
|
"p/8O9bMs2knnRDWA": {
|
|
1850
|
-
"
|
|
1851
|
-
"
|
|
1889
|
+
"translation": "Logical operator suggestion: OR",
|
|
1890
|
+
"notes": "Screen reader announcement for the availability of the logical OR operator as a suggestion option."
|
|
1852
1891
|
},
|
|
1853
1892
|
"p5Aa2CtWutuGwudB": {
|
|
1854
|
-
"
|
|
1855
|
-
"
|
|
1893
|
+
"translation": "{prefix, select, past {Last} future {Next} relativeFuture {In} other {}} {offset, plural, one {# week} other {# weeks}}{suffix}",
|
|
1894
|
+
"notes": "Timeframe formatter: timeframe-week"
|
|
1856
1895
|
},
|
|
1857
1896
|
"pFUmTVhQadk/rQkO": {
|
|
1858
|
-
"
|
|
1859
|
-
"
|
|
1897
|
+
"translation": "Use{value}as key",
|
|
1898
|
+
"notes": "Message shown as a default key suggestions."
|
|
1860
1899
|
},
|
|
1861
1900
|
"pGR/6J+2uPcvCSju": {
|
|
1862
|
-
"
|
|
1863
|
-
"
|
|
1901
|
+
"translation": "{prefix}minute",
|
|
1902
|
+
"notes": "The aria label for the minute input of a time."
|
|
1864
1903
|
},
|
|
1865
1904
|
"pRBtzsvqzp1/QqAV": {
|
|
1866
|
-
"
|
|
1867
|
-
"
|
|
1905
|
+
"translation": "Select year",
|
|
1906
|
+
"notes": "Aria label to add to each year button"
|
|
1868
1907
|
},
|
|
1869
1908
|
"psQtWNyQryNFymrs": {
|
|
1870
|
-
"
|
|
1871
|
-
"
|
|
1909
|
+
"translation": "{count, plural, one {# data point} other {# data points}} in {seriesCount, plural, one {# category} other {# categories}}",
|
|
1910
|
+
"notes": "Text in the tooltip header showing the number of selected data points in multiple categories"
|
|
1872
1911
|
},
|
|
1873
1912
|
"q/AKqzat66d0tRr7": {
|
|
1874
|
-
"
|
|
1875
|
-
"
|
|
1913
|
+
"translation": "Filter by segments",
|
|
1914
|
+
"notes": "Text for SegmentSelector Trigger when no segment is selected yet."
|
|
1876
1915
|
},
|
|
1877
1916
|
"q9YfvvFrRo1n8wvN": {
|
|
1878
|
-
"
|
|
1879
|
-
"
|
|
1917
|
+
"translation": "Learn more",
|
|
1918
|
+
"notes": "Display text for the link to the timeframe selector documentation."
|
|
1880
1919
|
},
|
|
1881
1920
|
"qDnh6SFkeo10shlI": {
|
|
1882
|
-
"
|
|
1883
|
-
"
|
|
1921
|
+
"translation": "At least one value must be selected.",
|
|
1922
|
+
"notes": "Error message shown when no value is selected."
|
|
1884
1923
|
},
|
|
1885
1924
|
"qEw4R8BQ3vYI7C8R": {
|
|
1886
|
-
"
|
|
1887
|
-
"
|
|
1925
|
+
"translation": "Copy missing permissions",
|
|
1926
|
+
"notes": "Text used for the notify button toast button text"
|
|
1888
1927
|
},
|
|
1889
1928
|
"qPeX7AgKbKzBFqGZ": {
|
|
1890
|
-
"
|
|
1891
|
-
"
|
|
1929
|
+
"translation": "Please match the format requested.",
|
|
1930
|
+
"notes": "Error message for input that doesn't follow the requested pattern."
|
|
1892
1931
|
},
|
|
1893
1932
|
"qoM4Je2O4h920xx0": {
|
|
1894
|
-
"
|
|
1895
|
-
"
|
|
1933
|
+
"translation": "No data can be displayed because the value is 0",
|
|
1934
|
+
"notes": "Text displayed when the pie chart dataset is invalid"
|
|
1896
1935
|
},
|
|
1897
1936
|
"qpf+aqg3hXoviypu": {
|
|
1898
|
-
"
|
|
1899
|
-
"
|
|
1937
|
+
"translation": "Calendar for picking a date",
|
|
1938
|
+
"notes": "Aria label for the DateTimePicker calendar input used for form validation."
|
|
1900
1939
|
},
|
|
1901
1940
|
"r/XpT4mat98jCrup": {
|
|
1902
|
-
"
|
|
1903
|
-
"
|
|
1941
|
+
"translation": "Invalid time. Expected format: {expectedFormat}, -2h or -2d@d",
|
|
1942
|
+
"notes": "Given value is invalid"
|
|
1904
1943
|
},
|
|
1905
1944
|
"r2DiyNP5gUAg0s5f": {
|
|
1906
|
-
"
|
|
1907
|
-
"
|
|
1945
|
+
"translation": "Selected time is outside of the valid range.",
|
|
1946
|
+
"notes": "Given dates are not within the valid range."
|
|
1908
1947
|
},
|
|
1909
1948
|
"r2QQIGUPC6lQhGDf": {
|
|
1910
|
-
"
|
|
1911
|
-
"
|
|
1949
|
+
"translation": "Logical operator suggestions",
|
|
1950
|
+
"notes": "Aria-label for logical operator suggestions in the filter field"
|
|
1912
1951
|
},
|
|
1913
1952
|
"r3yl8iiNQEDjjS+I": {
|
|
1914
|
-
"
|
|
1915
|
-
"
|
|
1953
|
+
"translation": "Yesterday",
|
|
1954
|
+
"notes": "Timeframe formatter: timeframe-yesterday"
|
|
1916
1955
|
},
|
|
1917
1956
|
"rR+xf1BGWvDgZVww": {
|
|
1918
1957
|
"translation": "Detail View"
|
|
1919
1958
|
},
|
|
1920
1959
|
"rfUQCaEOsY282TT4": {
|
|
1921
|
-
"
|
|
1922
|
-
"
|
|
1960
|
+
"translation": "Invalid filter key.",
|
|
1961
|
+
"notes": "Filter field invalid key error"
|
|
1923
1962
|
},
|
|
1924
1963
|
"rilMmuTx1q34cH6K": {
|
|
1925
|
-
"
|
|
1926
|
-
"
|
|
1964
|
+
"translation": "Configure notifications",
|
|
1965
|
+
"notes": "Label for the Configure notifications menu item"
|
|
1927
1966
|
},
|
|
1928
1967
|
"rivnln20bnbWI1vP": {
|
|
1929
|
-
"
|
|
1930
|
-
"
|
|
1968
|
+
"translation": "Trigger cell actions",
|
|
1969
|
+
"notes": "Aria label for DataTable cell actions trigger"
|
|
1931
1970
|
},
|
|
1932
1971
|
"rm7eAPvUS8J1G8TZ": {
|
|
1933
|
-
"
|
|
1934
|
-
"
|
|
1972
|
+
"translation": "The 'to' field is invalid.",
|
|
1973
|
+
"notes": "Error message shown if the to value of a timeframe is invalid"
|
|
1935
1974
|
},
|
|
1936
1975
|
"rrkUQoVNb46Jbd/8": {
|
|
1937
|
-
"
|
|
1938
|
-
"
|
|
1976
|
+
"translation": "Add number",
|
|
1977
|
+
"notes": "Default placeholder for the number input."
|
|
1939
1978
|
},
|
|
1940
1979
|
"s/C94DAW5sfrWYkU": {
|
|
1941
|
-
"
|
|
1942
|
-
"
|
|
1980
|
+
"translation": "Ends with {value}",
|
|
1981
|
+
"notes": "Message shown if the ends-with operator can be used with the current value."
|
|
1943
1982
|
},
|
|
1944
1983
|
"sAS3aHsvApXTajqr": {
|
|
1945
|
-
"
|
|
1946
|
-
"
|
|
1984
|
+
"translation": "Now",
|
|
1985
|
+
"notes": "Timeframe formatter: timeframe-now"
|
|
1947
1986
|
},
|
|
1948
1987
|
"sGxf5yRVhyC8Fpo/": {
|
|
1949
|
-
"
|
|
1950
|
-
"
|
|
1988
|
+
"translation": "End time",
|
|
1989
|
+
"notes": "End of timeframe"
|
|
1951
1990
|
},
|
|
1952
1991
|
"sI/bFgg4u46KiHYZ": {
|
|
1953
|
-
"
|
|
1954
|
-
"
|
|
1992
|
+
"translation": "–",
|
|
1993
|
+
"notes": "Text in between the from/to value displayed in the tooltip for the xy chart rect series"
|
|
1955
1994
|
},
|
|
1956
1995
|
"sITxaoPwIvMbTOY3": {
|
|
1957
|
-
"
|
|
1958
|
-
"
|
|
1996
|
+
"translation": "{years, select, 0 {} other {{years, plural, one {# year } other {# years }}}}{months, select, 0 {} other {{months, plural, one {# month } other {# months }}}}{days, select, 0 {} other {{days, plural, one {# day } other {# days }}}}{hours, select, 0 {} other {{hours, plural, one {# hour } other {# hours }}}}{minutes, select, 0 {} other {{minutes, plural, one {# minute } other {# minutes }}}}{seconds, select, 0 {} other {{seconds, plural, one {# second } other {# seconds }}}}{milliseconds, select, 0 {} other {{milliseconds, plural, one {# millisecond } other {# milliseconds }}}}",
|
|
1997
|
+
"notes": "Timeframe duration formatter: move-absolute-date"
|
|
1959
1998
|
},
|
|
1960
1999
|
"sJeuQTGrzcMvd6fY": {
|
|
1961
|
-
"
|
|
1962
|
-
"
|
|
2000
|
+
"translation": "Please lengthen this text to {minLength} characters or more.",
|
|
2001
|
+
"notes": "Error message for input that is shorter than the minLength."
|
|
1963
2002
|
},
|
|
1964
2003
|
"sml/MjQVnkAeawyF": {
|
|
1965
|
-
"
|
|
1966
|
-
"
|
|
2004
|
+
"translation": "Coordinates",
|
|
2005
|
+
"notes": "Text label for the coordinates value in the geo map tooltip. Displayed when hovering over geo map layers."
|
|
1967
2006
|
},
|
|
1968
2007
|
"stPGS1LgPweLqQcm": {
|
|
1969
|
-
"
|
|
1970
|
-
"
|
|
2008
|
+
"translation": "Invalid filter value. Only timestamps in ISO8601 format are supported for this key.",
|
|
2009
|
+
"notes": "Invalid value error for timestamp type"
|
|
1971
2010
|
},
|
|
1972
2011
|
"supuOfI2cSrNKOZ/": {
|
|
1973
|
-
"
|
|
1974
|
-
"
|
|
2012
|
+
"translation": "Invalid start time. Expected format: {expectedFormat}, -2h or -2d@d",
|
|
2013
|
+
"notes": "Given from value is invalid"
|
|
1975
2014
|
},
|
|
1976
2015
|
"swS1rIU8VQep1PDq": {
|
|
1977
|
-
"
|
|
1978
|
-
"
|
|
2016
|
+
"translation": "Filter field",
|
|
2017
|
+
"notes": "Default aria label for the filter field"
|
|
1979
2018
|
},
|
|
1980
2019
|
"tC4AzRIolPCwyigk": {
|
|
1981
|
-
"
|
|
1982
|
-
"
|
|
2020
|
+
"translation": "The 'in' operator requires values to be wrapped in brackets, separated by a comma.",
|
|
2021
|
+
"notes": "Filter field invalid inclusion value"
|
|
1983
2022
|
},
|
|
1984
2023
|
"tChYdhQqWeoYUZrd": {
|
|
1985
|
-
"
|
|
1986
|
-
"
|
|
2024
|
+
"translation": "Contains",
|
|
2025
|
+
"notes": "Filter field contains operator description"
|
|
1987
2026
|
},
|
|
1988
2027
|
"tDvUEsdbUj+XNZTR": {
|
|
1989
|
-
"
|
|
1990
|
-
"
|
|
2028
|
+
"translation": "All",
|
|
2029
|
+
"notes": "Label for downloading all table rows"
|
|
1991
2030
|
},
|
|
1992
2031
|
"tT1Q91yIBC2+wpsM": {
|
|
1993
|
-
"
|
|
1994
|
-
"
|
|
2032
|
+
"translation": "Select page size",
|
|
2033
|
+
"notes": "Aria-label for selecting current page size."
|
|
1995
2034
|
},
|
|
1996
2035
|
"tfHTZkRc7sr/Ypcl": {
|
|
1997
|
-
"
|
|
1998
|
-
"
|
|
2036
|
+
"translation": "Please enter an end time.",
|
|
2037
|
+
"notes": "End value is missing."
|
|
1999
2038
|
},
|
|
2000
2039
|
"tgL6QEjmq+ArASFk": {
|
|
2001
|
-
"
|
|
2002
|
-
"
|
|
2040
|
+
"translation": "Show password",
|
|
2041
|
+
"notes": "Text in a tooltip shown when hovering the password input icon to show the password"
|
|
2003
2042
|
},
|
|
2004
2043
|
"tjTPi9AKvehOhky2": {
|
|
2005
|
-
"
|
|
2006
|
-
"
|
|
2044
|
+
"translation": "No permission to turn {notificationEnabled, select, true {off} other {on}} notifications",
|
|
2045
|
+
"notes": "Text used for the notify button toast content text"
|
|
2007
2046
|
},
|
|
2008
2047
|
"tw9ulrSgegYXHq69": {
|
|
2009
|
-
"
|
|
2010
|
-
"
|
|
2048
|
+
"translation": "Match {current} of {total}",
|
|
2049
|
+
"notes": "Label for the current match position"
|
|
2011
2050
|
},
|
|
2012
2051
|
"tznlZbNaiUJ1dPqb": {
|
|
2013
|
-
"
|
|
2014
|
-
"
|
|
2052
|
+
"translation": "Columns",
|
|
2053
|
+
"notes": "Column settings modal title"
|
|
2054
|
+
},
|
|
2055
|
+
"u0KgUM/9t1gS7DB9": {
|
|
2056
|
+
"translation": "Filter Dependencies"
|
|
2015
2057
|
},
|
|
2016
2058
|
"u55UYpLvXi//xGEn": {
|
|
2017
|
-
"
|
|
2018
|
-
"
|
|
2059
|
+
"translation": "settings",
|
|
2060
|
+
"notes": "Link text to segments app in empty state message if no variables for the segment are available."
|
|
2019
2061
|
},
|
|
2020
2062
|
"u5xmuzxNDovVbbQX": {
|
|
2021
|
-
"
|
|
2022
|
-
"
|
|
2063
|
+
"translation": "Download as CSV",
|
|
2064
|
+
"notes": "Text in a tooltip shown when hovering the \"Download data\" button in the time series chart toolbar"
|
|
2023
2065
|
},
|
|
2024
2066
|
"uCbwlgMp2BNGzNro": {
|
|
2025
|
-
"
|
|
2026
|
-
"
|
|
2067
|
+
"translation": "Unpin",
|
|
2068
|
+
"notes": "Text for the unpin button of a segment preset."
|
|
2027
2069
|
},
|
|
2028
2070
|
"uDo0yY4voNQ3eiN7": {
|
|
2029
|
-
"
|
|
2030
|
-
"
|
|
2071
|
+
"translation": "Change mode",
|
|
2072
|
+
"notes": "Text in a tooltip shown when hovering the expanded toolbar's menu button in the time series chart toolbar"
|
|
2073
|
+
},
|
|
2074
|
+
"uIY0S6+5RUL68Rsd": {
|
|
2075
|
+
"translation": "Displaying more than {limit} {limit, plural, one {column} other {columns}} is not allowed.",
|
|
2076
|
+
"notes": "Error message shown in column settings modal when the number of visible columns exceeds the error threshold."
|
|
2031
2077
|
},
|
|
2032
2078
|
"ut5dPv/qM9qMEW4a": {
|
|
2033
|
-
"
|
|
2034
|
-
"
|
|
2079
|
+
"translation": "Invalid syntax.",
|
|
2080
|
+
"notes": "Error message shown when the Input in the FilterField has an invalid syntax."
|
|
2035
2081
|
},
|
|
2036
2082
|
"uuhhc3nEZptwtV2E": {
|
|
2037
|
-
"
|
|
2038
|
-
"
|
|
2083
|
+
"translation": "DateTime to",
|
|
2084
|
+
"notes": "Textbox to enter a relative or absolute timeframe to value."
|
|
2039
2085
|
},
|
|
2040
2086
|
"vEoSirMyZ5RMVdsR": {
|
|
2041
|
-
"
|
|
2042
|
-
"
|
|
2087
|
+
"translation": "{prefix, select, previous {Previous} next {Next} other {This}} {amount, plural, one {hour} other {# hours}}",
|
|
2088
|
+
"notes": "Timeframe formatter: timeframe-roundDown-hour"
|
|
2043
2089
|
},
|
|
2044
2090
|
"vJ/eXvQ9OL/qVOcs": {
|
|
2045
|
-
"
|
|
2046
|
-
"
|
|
2091
|
+
"translation": "Less than or equal to",
|
|
2092
|
+
"notes": "Filter field less than or equal operator description"
|
|
2047
2093
|
},
|
|
2048
2094
|
"vMt3ZRHwBods5xzM": {
|
|
2049
|
-
"
|
|
2050
|
-
"
|
|
2095
|
+
"translation": "Hide password",
|
|
2096
|
+
"notes": "Text in a tooltip shown when hovering the password input icon to hide the password"
|
|
2051
2097
|
},
|
|
2052
2098
|
"vN/5FvuU1Cfk1/Ep": {
|
|
2053
|
-
"
|
|
2054
|
-
"
|
|
2099
|
+
"translation": "No matching suggestions found.",
|
|
2100
|
+
"notes": "Empty state message shown if no suggestions can be found."
|
|
2101
|
+
},
|
|
2102
|
+
"vkJWCbh6wLAsnHfT": {
|
|
2103
|
+
"translation": "Built with"
|
|
2055
2104
|
},
|
|
2056
2105
|
"vwffeGCYNgFdxEUq": {
|
|
2057
|
-
"
|
|
2058
|
-
"
|
|
2106
|
+
"translation": "timestamp",
|
|
2107
|
+
"notes": "Label for timestamp type used in mixed type error messages"
|
|
2059
2108
|
},
|
|
2060
2109
|
"wJb5aQ8q06TidoIt": {
|
|
2061
|
-
"
|
|
2062
|
-
"
|
|
2110
|
+
"translation": "More options",
|
|
2111
|
+
"notes": "Tooltip information for the toolbar menu button"
|
|
2063
2112
|
},
|
|
2064
2113
|
"wa4ct2vRPvqd0Uif": {
|
|
2065
|
-
"
|
|
2066
|
-
"
|
|
2114
|
+
"translation": "{prefix}millisecond",
|
|
2115
|
+
"notes": "The aria label for the millisecond input of a time."
|
|
2067
2116
|
},
|
|
2068
2117
|
"wjx6xe/Gmj4hLt7b": {
|
|
2069
|
-
"
|
|
2070
|
-
"
|
|
2118
|
+
"translation": "Pan mode",
|
|
2119
|
+
"notes": "Text in a tooltip shown when hovering the \"Pan\" mode in the chart toolbar"
|
|
2071
2120
|
},
|
|
2072
2121
|
"wtm8N4m0hully7OX": {
|
|
2073
|
-
"
|
|
2074
|
-
"
|
|
2122
|
+
"translation": "Empty value",
|
|
2123
|
+
"notes": "Display text for segment variable values that are an empty string."
|
|
2075
2124
|
},
|
|
2076
2125
|
"x2bmZRg98b0KodlW": {
|
|
2077
2126
|
"translation": "Breadcrumb"
|
|
2078
2127
|
},
|
|
2079
2128
|
"x3FIfL6niq1MnAvw": {
|
|
2080
|
-
"
|
|
2081
|
-
"
|
|
2129
|
+
"translation": "Copy and share missing permissions with your admin",
|
|
2130
|
+
"notes": "Text used for the notify button overlay/tost content text"
|
|
2082
2131
|
},
|
|
2083
2132
|
"xFQW8ah15nm5hjiI": {
|
|
2084
|
-
"
|
|
2085
|
-
"
|
|
2133
|
+
"translation": "selected",
|
|
2134
|
+
"notes": "Message to display for the total count of selected rows."
|
|
2086
2135
|
},
|
|
2087
2136
|
"xHrhU3DP4e0nge7c": {
|
|
2088
2137
|
"translation": "Help"
|
|
2089
2138
|
},
|
|
2090
2139
|
"xT9m8P49DpYVR1pg": {
|
|
2091
|
-
"
|
|
2092
|
-
"
|
|
2140
|
+
"translation": "Add TypeScript",
|
|
2141
|
+
"notes": "Default placeholder for code editor when the language is TypeScript."
|
|
2093
2142
|
},
|
|
2094
2143
|
"xYagPfCP0AY72G3+": {
|
|
2095
|
-
"
|
|
2096
|
-
"
|
|
2144
|
+
"translation": "Show/hide all",
|
|
2145
|
+
"notes": "Show or hide all checkbox label"
|
|
2097
2146
|
},
|
|
2098
2147
|
"xcSpnebtYoA/jEJY": {
|
|
2099
|
-
"
|
|
2100
|
-
"
|
|
2148
|
+
"translation": "Add email",
|
|
2149
|
+
"notes": "Default placeholder for email input."
|
|
2101
2150
|
},
|
|
2102
2151
|
"xdkxTaZ7SAkarRJX": {
|
|
2103
|
-
"
|
|
2104
|
-
"
|
|
2152
|
+
"translation": "Segment",
|
|
2153
|
+
"notes": "Text label for the segment in the tooltip. Displayed when hovering over Meterbar chart."
|
|
2105
2154
|
},
|
|
2106
2155
|
"xjwKUTJHlmtA/V/n": {
|
|
2107
|
-
"
|
|
2108
|
-
"
|
|
2156
|
+
"translation": "Add phone number",
|
|
2157
|
+
"notes": "Default placeholder for phone number input."
|
|
2109
2158
|
},
|
|
2110
2159
|
"y6H3/FIKpIl6XBRA": {
|
|
2111
|
-
"
|
|
2112
|
-
"
|
|
2160
|
+
"translation": "Location",
|
|
2161
|
+
"notes": "Text label for the location series header in the geo map tooltip. Displayed when hovering over geo map layers."
|
|
2113
2162
|
},
|
|
2114
2163
|
"yBhOkj2PXbKg2Tjc": {
|
|
2115
|
-
"
|
|
2116
|
-
"
|
|
2164
|
+
"translation": "Invalid filter value. Only durations are supported as values for this key, for example, '200ms'.",
|
|
2165
|
+
"notes": "Invalid value error for duration type"
|
|
2117
2166
|
},
|
|
2118
2167
|
"yJBeHrP0dl2h/JIx": {
|
|
2119
|
-
"
|
|
2120
|
-
"
|
|
2168
|
+
"translation": "No matching segments found. If you’re looking for a segment value, select the segment first.",
|
|
2169
|
+
"notes": "Message for an empty search result in the segment select."
|
|
2121
2170
|
},
|
|
2122
2171
|
"yPyYlsR+hsqOmSHt": {
|
|
2123
|
-
"
|
|
2124
|
-
"
|
|
2172
|
+
"translation": "Error",
|
|
2173
|
+
"notes": "Title for generic error toast"
|
|
2125
2174
|
},
|
|
2126
2175
|
"yRTBrmuLLhgDytyG": {
|
|
2127
|
-
"
|
|
2128
|
-
"
|
|
2176
|
+
"translation": "Enable line wrap",
|
|
2177
|
+
"notes": "Text in the column action item for enabling line wrap for the column."
|
|
2129
2178
|
},
|
|
2130
2179
|
"ylJmm6+j/5dJx8/1": {
|
|
2131
|
-
"
|
|
2132
|
-
"
|
|
2180
|
+
"translation": "Notifications are turned {notificationEnabled, select, true {on} other {off}}",
|
|
2181
|
+
"notes": "Text used for the notify button overlay heading"
|
|
2133
2182
|
},
|
|
2134
2183
|
"ymTPa3UIE2oxpoEr": {
|
|
2135
|
-
"
|
|
2136
|
-
"
|
|
2184
|
+
"translation": "Open to find further resources",
|
|
2185
|
+
"notes": "Aria-label for menu trigger for collapsed resource links on mobile."
|
|
2137
2186
|
},
|
|
2138
2187
|
"z5mvEP+L6qdzvis2": {
|
|
2139
|
-
"
|
|
2140
|
-
"
|
|
2188
|
+
"translation": "Down",
|
|
2189
|
+
"notes": "Key shortcut in a tooltip shown when hovering the \"Zoom out\" action in xy chart toolbar"
|
|
2141
2190
|
},
|
|
2142
2191
|
"z6Q99ieTCziyTcca": {
|
|
2143
|
-
"
|
|
2144
|
-
"
|
|
2192
|
+
"translation": "Pin left",
|
|
2193
|
+
"notes": "Text in the menu item for pinning the column to the left."
|
|
2145
2194
|
},
|
|
2146
2195
|
"zO6bZxirK3VNMSDB": {
|
|
2147
|
-
"
|
|
2148
|
-
"
|
|
2196
|
+
"translation": "Pin to access actions",
|
|
2197
|
+
"notes": "Text label displayed in the tooltip footer when the tooltip is not pinned, prompting the user to pin it."
|
|
2149
2198
|
},
|
|
2150
2199
|
"zSm9YklUFyPurvQU": {
|
|
2151
|
-
"
|
|
2152
|
-
"
|
|
2200
|
+
"translation": "Available suggestions:",
|
|
2201
|
+
"notes": "Screen reader announcement introducing the list of available filter suggestions."
|
|
2153
2202
|
},
|
|
2154
2203
|
"zX4r/Y8gJL1C8+5e": {
|
|
2155
|
-
"
|
|
2156
|
-
"
|
|
2204
|
+
"translation": "Clear date and time range",
|
|
2205
|
+
"notes": "Aria label for the DateTimeRangePicker clear button."
|
|
2157
2206
|
},
|
|
2158
2207
|
"zfKEZtJ/4td7IY+1": {
|
|
2159
|
-
"
|
|
2160
|
-
"
|
|
2208
|
+
"translation": "Reset",
|
|
2209
|
+
"notes": "Text in a tooltip shown when hovering the \"Reset\" action in the xy chart toolbar"
|
|
2161
2210
|
},
|
|
2162
2211
|
"zgKXUXme0dmc9SsD": {
|
|
2163
|
-
"
|
|
2164
|
-
"
|
|
2212
|
+
"translation": "Add as descending",
|
|
2213
|
+
"notes": "Column action menu item for multi-sorting a column in descending order."
|
|
2165
2214
|
},
|
|
2166
2215
|
"znJQdrgHo0UbGJLV": {
|
|
2167
|
-
"
|
|
2168
|
-
"
|
|
2216
|
+
"translation": "{prefix, select, previous {Previous} next {Next} other {This}} {amount, plural, one {second} other {# seconds}}",
|
|
2217
|
+
"notes": "Timeframe formatter: timeframe-roundDown-second"
|
|
2169
2218
|
}
|
|
2170
2219
|
}
|