@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/CHANGELOG.md
ADDED
|
@@ -0,0 +1,2113 @@
|
|
|
1
|
+
# components
|
|
2
|
+
|
|
3
|
+
## 3.8.0
|
|
4
|
+
|
|
5
|
+
### Dependency updates
|
|
6
|
+
|
|
7
|
+
- Changed peerDependency version range for `@dynatrace-sdk/client-platform-management-service` from `^1.7.0` to `^1.8.0`.
|
|
8
|
+
- `@dynatrace/strato-design-tokens` was updated to version `1.5.1`.
|
|
9
|
+
- `@dynatrace/strato-icons` was updated to version `2.3.1`.
|
|
10
|
+
|
|
11
|
+
### Deprecations
|
|
12
|
+
|
|
13
|
+
#### Filters
|
|
14
|
+
|
|
15
|
+
- `validateAsync()` on filter control imperative refs will be removed in the next major version. In its place, `validate()` will return `Promise<ValidationState>` directly. Use `validateAsync()` now if you need the validation result, but be prepared to switch back to `validate()` when the breaking change lands. (APPDEV-18178)
|
|
16
|
+
|
|
17
|
+
#### Forms
|
|
18
|
+
|
|
19
|
+
- `validateAsync()` on form control imperative refs will be removed in the next major version. In its place, `validate()` will return `Promise<ValidationState>` directly. Use `validateAsync()` now if you need the validation result, but be prepared to switch back to `validate()` when the breaking change lands. (APPDEV-18178)
|
|
20
|
+
|
|
21
|
+
#### CodeEditor
|
|
22
|
+
|
|
23
|
+
- `isControlled` is deprecated from the start and will be removed when fully controlled behavior becomes the default. (APPDEV-5775)
|
|
24
|
+
|
|
25
|
+
#### DataTable
|
|
26
|
+
|
|
27
|
+
- The `name` prop on `thresholds` in `DataTableMeterbarColumnConfig` is deprecated. Threshold names are not displayed in the table and this prop will be removed. (APPDEV-15841)
|
|
28
|
+
|
|
29
|
+
#### DonutChart
|
|
30
|
+
|
|
31
|
+
- Deprecated `DonutChartData` type. Use the unified `ChartData` format with `labelAccessor`/`valueAccessor` instead. (APPDEV-17850)
|
|
32
|
+
|
|
33
|
+
#### DQLEditor
|
|
34
|
+
|
|
35
|
+
- `isControlled` is deprecated from the start and will be removed when fully controlled behavior becomes the default. (APPDEV-5775)
|
|
36
|
+
|
|
37
|
+
#### HoneycombChart
|
|
38
|
+
|
|
39
|
+
- Extended `HoneycombChart` to support the unified `ChartData` format via a new `HoneycombChartAccessorDataProps` API. Pass a `ChartData` array to `data` and use `valueAccessor` (default `"value"`) to specify the value field. The new `colorPalette` prop replaces `colorScheme` on the new API. The existing `HoneycombCategoricalProps` and `HoneycombChartNumericalProps` APIs remain fully functional but are now deprecated. `ChartData` and `ChartDatapoint` are exported as shared types. Closes APPDEV-17849.
|
|
40
|
+
|
|
41
|
+
#### Page
|
|
42
|
+
|
|
43
|
+
- Deprecated the `Page` component and all its related types and sub-components. Please use `PageLayout` instead. (APPDEV-18104)
|
|
44
|
+
|
|
45
|
+
#### PieChart
|
|
46
|
+
|
|
47
|
+
- Deprecated `PieChartData` and `SliceData` interfaces. Use the unified `ChartData` format with `labelAccessor`/`valueAccessor` instead. (APPDEV-17850)
|
|
48
|
+
|
|
49
|
+
### Updates
|
|
50
|
+
|
|
51
|
+
#### General
|
|
52
|
+
|
|
53
|
+
- Changelog files are now included in the published packages for easier agentic access.
|
|
54
|
+
|
|
55
|
+
#### Charts
|
|
56
|
+
|
|
57
|
+
- Fixed the tooltip's series actions menu closing when scrolling inside it. (APPDEV-18359)
|
|
58
|
+
- Fixed tooltip not repositioning when dragging on a fixed-width chart on a mobile device. (APPDEV-18435)
|
|
59
|
+
- Fixed the tooltip from not resetting when the toolbar is clicked or dragged. (APPDEV-18187)
|
|
60
|
+
- The standalone `TopList` component is now available in the Strato package. (APPDEV-17246)
|
|
61
|
+
- Fixed the toolbar auto-collapse logic and added collapse button to `Map` toolbar. (APPDEV-18014)
|
|
62
|
+
- Fixed annotation markers from being cut off when `TimeseriesChart`, `HistogramChart`, or `XYChart` are rendered at small heights. Charts now gracefully adapt their layouts by progressively hiding annotations and axes to ensure a clean display at any size. (APPDEV-17485)
|
|
63
|
+
|
|
64
|
+
#### Editors
|
|
65
|
+
|
|
66
|
+
- Fixed the caret jumping to the end of the placeholder when an empty editor lost focus. (APPDEV-18218)
|
|
67
|
+
- Fixed the text color of the selected suggestion item, including its prefix, in light mode. (APPDEV-18126)
|
|
68
|
+
|
|
69
|
+
#### Filters
|
|
70
|
+
|
|
71
|
+
- You can now use the `onValidityChange` prop on `FilterField`, `SegmentSelector`, and `TimeframeSelector` to react to validation state changes. (APPDEV-17939)
|
|
72
|
+
|
|
73
|
+
#### Forms
|
|
74
|
+
|
|
75
|
+
- You can now use the `onValidityChange()` prop on form controls to react to validation state changes, and call `validateAsync()` on their refs to imperatively await the result. The results rely on the `ValidationState`, `ValidationError`, and, `ValidityStateKey` types (APPDEV-17939)
|
|
76
|
+
- Validation types `ValidationState`, `ValidationError`, `ValidityStateKey`, and related types are now exported from the public API. You can now use the `onValidityChange` prop on form controls to react to validation state changes, and call `validateAsync()` on their refs to imperatively await the result. (APPDEV-17939)
|
|
77
|
+
|
|
78
|
+
#### Layouts
|
|
79
|
+
|
|
80
|
+
- Changed the `PageLayout.Content` rendered element from `div` to `main` for better screen reader support.
|
|
81
|
+
|
|
82
|
+
#### AnnotationsChart
|
|
83
|
+
|
|
84
|
+
- Fixed annotation value markers from rendering at incorrect positions and not triggering tooltips when right-aligned near the chart edge. (APPDEV-18119)
|
|
85
|
+
|
|
86
|
+
#### AppHeader
|
|
87
|
+
|
|
88
|
+
- The Logo's `releasePhase` prop now also accepts `'new'`, `'deprecated'` and `'early-access'`. (PPFB-801)
|
|
89
|
+
|
|
90
|
+
#### Button
|
|
91
|
+
|
|
92
|
+
- Fixed the loading state to be accessible. The button now stays in the tab order with `aria-disabled` and signals its busy state via `aria-busy` instead of becoming unreachable through the native `disabled` attribute. (APPDEV-16535)
|
|
93
|
+
|
|
94
|
+
#### CategoricalBarChart
|
|
95
|
+
|
|
96
|
+
- Fixed unpinned `ChartTooltip` from not being properly hidden when scrolling the page. (APPDEV-18095)
|
|
97
|
+
|
|
98
|
+
#### CodeEditor
|
|
99
|
+
|
|
100
|
+
- Keyboard shortcuts for code folding are now possible. See documentation for keybindings.(APPDEV-3639)
|
|
101
|
+
- Tooltips on autocomplete suggestions are now also shown on mouse hover. (APPDEV-17382)
|
|
102
|
+
- Fixed an editor crash that occurred sometimes when clicking on an editor while it was hidden, detached, or mid-layout (e.g. inside a re-rendering or collapsing container). (APPDEV-17855)
|
|
103
|
+
- You can now opt in to fully controlled editor behavior. Set `isControlled={true}` to have the editor always reflect `value` and forward user input via `onChange`. When `false` (default), existing `value` behavior stays unchanged. As this prop will be removed when fully controlled behavior becomes the standard, it is already deprecated. (APPDEV-5775)
|
|
104
|
+
|
|
105
|
+
#### CodeSnippet
|
|
106
|
+
|
|
107
|
+
- Introduced a `fullHeight` prop that allows the component to fill the height of its parent container. (APPDEV-17851)
|
|
108
|
+
|
|
109
|
+
#### DataTable
|
|
110
|
+
|
|
111
|
+
- Added `aria-label`, `aria-labelledby`, `aria-describedby`, and `aria-details` props. A default `aria-label` of "Data table" is applied automatically when no accessible name is provided. (APPDEV-17681)
|
|
112
|
+
- Fixed the row ordering drag-and-drop live region from being placed inside `[role=grid
|
|
113
|
+
- Fixed the interactive row highlight border becoming misaligned with the pinned column borders at non-100% browser zoom levels. (APPDEV-18333)
|
|
114
|
+
- The column settings modal now requires at least one visible column. Clicking "Apply" with all columns hidden shows a blocking error message and keeps the modal open. (APPDEV-7035)
|
|
115
|
+
- Fixed column settings search from not matching grouped columns by their group header label. (APPDEV-18217)
|
|
116
|
+
- Added `visibleColumnLimits` to `DataTable.VisibilitySettings` to cap the number of visible columns in the column settings modal. Exceeding the `maxWarning` threshold shows a non-blocking message; exceeding the `maxError` threshold shows a blocking error message and disables the "Apply" button. Limits can also be supplied per invocation via `openColumnSettings()` on `DataTableRef`, taking precedence over the slot value. (APPDEV-7035)
|
|
117
|
+
- Fixed the React warning "Cannot update a component while rendering a different component" by scoping store re-renders to affected components. This also fixes the "Maximum update depth exceeded" error that occurred in some apps. (APPDEV-18418)
|
|
118
|
+
|
|
119
|
+
#### DonutChart
|
|
120
|
+
|
|
121
|
+
- Added support for the unified `ChartData` format (`ChartDatapoint[
|
|
122
|
+
|
|
123
|
+
#### DQLEditor
|
|
124
|
+
|
|
125
|
+
- Tooltips on autocomplete suggestions are now also shown on mouse hover. (APPDEV-17382)
|
|
126
|
+
- Fixed an editor crash that occurred sometimes when clicking on an editor while it was hidden, detached, or mid-layout (e.g. inside a re-rendering or collapsing container). (APPDEV-17855)
|
|
127
|
+
- Fixed incorrect spacing around the actions menu trigger button when the visual refresh introduced in Strato 3.5.0 is enabled. The trigger is now correctly aligned to the top-right corner of the editor. (APPDEV-18162)
|
|
128
|
+
- Updated the list of DQL commands used for syntax highlighting with the following: removed `experimentalFieldsSummary` and `experimentalLoad`, added `metrics`, and prepared syntax highlighting support for new, upcoming commands. (APPDEV-18180)
|
|
129
|
+
- DQL formatting is now available via a built-in menu button or keyboard shortcut (`Ctrl-Shift-f`, Mac: `Cmd-Shift-f`). (PRODUCT-12538)
|
|
130
|
+
- Improved DQL autocomplete when replacing existing command tokens, including nested subqueries. (APPDEV-17943)
|
|
131
|
+
- You can now opt in to fully controlled editor behavior. Set `isControlled={true}` to have the editor always reflect `value` and forward user input via `onChange`. When `false` (default), existing `value` behavior stays unchanged. As this prop will be removed when fully controlled behavior becomes the standard, it is already deprecated. (APPDEV-5775)
|
|
132
|
+
|
|
133
|
+
#### FilterField
|
|
134
|
+
|
|
135
|
+
- Aligned the boxShadows to match other inputs when the visual refresh introduced with Strato 3.5.0 is enabled. (APPDEV-17773)
|
|
136
|
+
- Fixed a syntax error message from appearing while the user is actively typing after refocusing a previously-blurred field. (APPDEV-18122)
|
|
137
|
+
|
|
138
|
+
#### GaugeChart
|
|
139
|
+
|
|
140
|
+
- Fixed the toolbar and tooltip not appearing with the first tap on touch devices. (APPDEV-18144)
|
|
141
|
+
|
|
142
|
+
#### HistogramChart
|
|
143
|
+
|
|
144
|
+
- HistogramChart now uses XYChart as its underlying rendering engine. (APPDEV-16422)
|
|
145
|
+
|
|
146
|
+
#### HoneycombChart
|
|
147
|
+
|
|
148
|
+
- Added `textSize` prop to support fixed pixel size and automatic per-tile size selection for tile labels. (APPDEV-14157)
|
|
149
|
+
- Fixed pinned tooltip disappearing when clicking on whitespace. (APPDEV-18423)
|
|
150
|
+
- Fixed the toolbar from not appearing and the toolbar menu (3-dot menu shown when intents are present) from flickering when interacting with the chart on mobile. (APPDEV-18067)
|
|
151
|
+
|
|
152
|
+
#### Menu
|
|
153
|
+
|
|
154
|
+
- Fixed nested submenus overflowing the viewport on mobile screens. Submenus now stack inline below their trigger at viewport widths ≤ 480px, and long menu item text truncates with ellipsis. Desktop behavior is unchanged. (APPDEV-18058)
|
|
155
|
+
|
|
156
|
+
#### Page
|
|
157
|
+
|
|
158
|
+
- Aligned the styling of the collapsed sidebar with that of the `PageLayout` component. (APPDEV-18295)
|
|
159
|
+
|
|
160
|
+
#### PieChart
|
|
161
|
+
|
|
162
|
+
- Added support for the unified `ChartData` format (`ChartDatapoint[
|
|
163
|
+
|
|
164
|
+
#### ReleasePhaseIndicator
|
|
165
|
+
|
|
166
|
+
- Added `'early-access'` as a new supported phase. (PPFB-801)
|
|
167
|
+
|
|
168
|
+
#### RunQueryButton
|
|
169
|
+
|
|
170
|
+
- Fixed the non-cancelable loading state to correctly signal its non-interactive state via `aria-disabled` and `aria-busy`. Also removed a redundant `aria-live` region that caused screen readers to announce the button as a group. (APPDEV-16535)
|
|
171
|
+
|
|
172
|
+
#### SegmentSelector
|
|
173
|
+
|
|
174
|
+
- Improved tracking of segment variable usage. (PAPA-34118)
|
|
175
|
+
|
|
176
|
+
#### Select
|
|
177
|
+
|
|
178
|
+
- Fixed a performance issue that caused all options to re-render when hovering a single option. (APPDEV-15702)
|
|
179
|
+
- The hover style for options is now handled via CSS, meaning mouse hover and keyboard focus styles are visually distinct. (APPDEV-15702)
|
|
180
|
+
- Fixed incorrect option heights and blank, over-scroll whitespace on initial open of the virtualised list. (APPDEV-18184)
|
|
181
|
+
- Fixed the keyboard navigation in virtualised `Select` lists so that focused options scroll into view and wrapping past the last or first option correctly reveals the item at the opposite end. (APPDEV-18186)
|
|
182
|
+
|
|
183
|
+
#### TimeframeSelector
|
|
184
|
+
|
|
185
|
+
- Clicking the stepper now saves the shifted value as recently used timeframe. (APPDEV-18225)
|
|
186
|
+
|
|
187
|
+
#### TreeMap
|
|
188
|
+
|
|
189
|
+
- Fixed the toolbar from not appearing and the toolbar menu (3-dot menu shown when intents are present) from flickering when interacting with the chart on mobile. (APPDEV-18067)
|
|
190
|
+
|
|
191
|
+
#### XYChart
|
|
192
|
+
|
|
193
|
+
- You can now set `allowDecimals={false}` on a numerical axis to show only whole-integer tick labels. (APPDEV-18068)
|
|
194
|
+
- Fixed the issue where the first `AreaSeries` slot rendered as absolute values instead of percentages when using `valueRepresentation="relative"` with multiple slots that each carry inline data. (APPDEV-18259)
|
|
195
|
+
- Fixed the issue where hovering overlapping annotation markers set to `auto` highlighted only one indicator instead of every indicator shown in the tooltip. (APPDEV-18409)
|
|
196
|
+
|
|
197
|
+
## 3.7.1
|
|
198
|
+
|
|
199
|
+
### Updates
|
|
200
|
+
|
|
201
|
+
#### DataTable
|
|
202
|
+
|
|
203
|
+
- Fixed the React warning "Cannot update a component while rendering a different component" by scoping store re-renders to affected components. This also fixes the "Maximum update depth exceeded" error that occurred in some apps. (APPDEV-18418)
|
|
204
|
+
|
|
205
|
+
## 3.7.0
|
|
206
|
+
|
|
207
|
+
### Deprecations
|
|
208
|
+
|
|
209
|
+
#### Charts
|
|
210
|
+
|
|
211
|
+
- Deprecated legacy `_ChartTooltip` and `InteractiveChartTooltip`. Instead, use `ChartTooltip`.
|
|
212
|
+
|
|
213
|
+
#### HoneycombChart
|
|
214
|
+
|
|
215
|
+
- Deprecated `showLabels` prop in favor of the new `labelsDisplay` prop. When both are set, `labelsDisplay` takes precedence. (APPDEV-17484)
|
|
216
|
+
|
|
217
|
+
#### MeterBarChart
|
|
218
|
+
|
|
219
|
+
- Deprecated `tooltip: boolean` consumer config. Instead, use `tooltip: { hidden?: boolean }`. (APPDEV-17808)
|
|
220
|
+
|
|
221
|
+
#### MultiMeterBarChart
|
|
222
|
+
|
|
223
|
+
- Deprecated `tooltip.enabled` consumer config. Instead, use `tooltip.hidden`. (APPDEV-17808)
|
|
224
|
+
|
|
225
|
+
### Updates
|
|
226
|
+
|
|
227
|
+
#### General
|
|
228
|
+
|
|
229
|
+
- Removed CodeSandbox preview links from use case examples. (APPDEV-16704)
|
|
230
|
+
|
|
231
|
+
#### Charts
|
|
232
|
+
|
|
233
|
+
- Fixed charts from crashing when an empty string was provided as a color value. (APPDEV-18083)
|
|
234
|
+
|
|
235
|
+
#### Editors
|
|
236
|
+
|
|
237
|
+
- Autocomplete suggestions can now also be selected using the `tab` key. (APPDEV-3426)
|
|
238
|
+
|
|
239
|
+
#### Layouts
|
|
240
|
+
|
|
241
|
+
- Fixed `PageLayout` sidebar and details panels firing `onCollapsedChange(false)` and force-opening on mount when `collapsed` or `defaultCollapsed` was `true` and the container started above the breakpoint. The explicit collapsed state is now respected on the first measurement. (APPDEV-18054)
|
|
242
|
+
|
|
243
|
+
#### AnnotationsChart
|
|
244
|
+
|
|
245
|
+
- Fixed annotation markers not being sorted by priority when ungrouped, which had caused incorrect stacking order. (APPDEV-17931)
|
|
246
|
+
|
|
247
|
+
#### Avatar
|
|
248
|
+
|
|
249
|
+
- Fixed initial letter not being vertically centered at non-100% browser zoom levels on Windows. (APPDEV-17890)
|
|
250
|
+
- Fixed font properties not being inherited correctly when an avatar is rendered as a `button` element. (APPDEV-17890)
|
|
251
|
+
|
|
252
|
+
#### CodeEditor
|
|
253
|
+
|
|
254
|
+
- Added a `defaultValue` prop for uncontrolled usage. It sets the initial editor content. Existing `value` behavior is unchanged. (APPDEV-17373)
|
|
255
|
+
- Fixed an editor crash that could occur when hovering over an editor while it was hidden, detached, or mid-layout (e.g. inside a re-rendering or collapsing container). (APPDEV-17905)
|
|
256
|
+
|
|
257
|
+
#### DataTable
|
|
258
|
+
|
|
259
|
+
- Column ordering via drag and drop now scrolls correctly when dragging columns to the edge of the table. (APPDEV-17398)
|
|
260
|
+
- The empty state container is now sticky and stays centered within the visible viewport when the table is horizontally scrollable. (APPDEV-17722)
|
|
261
|
+
- Dragging a column header no longer causes the page to scroll unexpectedly. (APPDEV-17906)
|
|
262
|
+
- Fixed an issue in Firefox where resizing a column where `columnOrdering` was enabled incorrectly triggered column dragging. (APPDEV-17925)
|
|
263
|
+
- In tables with sub-rows, custom headers in the sub-row column now use the full width. (APPDEV-16976)
|
|
264
|
+
- Fixed the sub-row expander path not showing correctly after moving the last child row to the first position via drag-and-drop row ordering. (APPDEV-18043)
|
|
265
|
+
- Fixed the loading spinner not being vertically centered in the visible data area when the user had scrolled the table before a loading state was triggered. (APPDEV-18091)
|
|
266
|
+
|
|
267
|
+
#### DateTimePicker
|
|
268
|
+
|
|
269
|
+
- Letter key presses in a number spin button are now silently ignored. (APPDEV-17978)
|
|
270
|
+
- Right-clicking after selecting across multiple fields now shows the browser's native Cut/Copy context menu, without losing the current selection. (APPDEV-17476)
|
|
271
|
+
|
|
272
|
+
#### DQLEditor
|
|
273
|
+
|
|
274
|
+
- Added a `defaultValue` prop for uncontrolled usage. It sets the initial editor content. Existing `value` behavior is unchanged. (APPDEV-17373)
|
|
275
|
+
- `DQLEditor.ActionsMenu` now accepts optional children. Custom menu items passed as children are rendered between the built-in `Copy query` and `Open documentation` actions. (APPDEV-17376)
|
|
276
|
+
- Fixed an editor crash that could occur when hovering over an editor while it was hidden, detached, or mid-layout (e.g. inside a re-rendering or collapsing container). (APPDEV-17905)
|
|
277
|
+
- The autocomplete popup now includes an info section below the suggestions and shows relevant keyboard shortcuts along with a link to the DQL syntax documentation. (APPDEV-17384)
|
|
278
|
+
|
|
279
|
+
#### FilterField
|
|
280
|
+
|
|
281
|
+
- Fixed an issue where clicking the clear button triggered premature validation and caused a brief error state. (APPDEV-15429)
|
|
282
|
+
- Fixed a crash ("Ranges must be added sorted by `from` position") that occurred when CodeMirror produced multiple visible ranges. (APPDEV-17983)
|
|
283
|
+
- Add `removeFilter` value operation helper for programmatically removing filter values from a `FilterField` value string. (APPDEV-17700)
|
|
284
|
+
- Added the `addFilter` value operation helper to programmatically add filter values to a `FilterField` value string. (APPDEV-17699)
|
|
285
|
+
|
|
286
|
+
#### HoneycombChart
|
|
287
|
+
|
|
288
|
+
- Fixed tooltip pinning on touch devices where hover events are never fired before a tap. (APPDEV-18139)
|
|
289
|
+
- Added `labelsDisplay` prop to control which tile label content is shown. (APPDEV-17484)
|
|
290
|
+
|
|
291
|
+
#### Modal
|
|
292
|
+
|
|
293
|
+
- Fixed nested-overlay focus race where opening an overlay from inside another overlay (e.g. a Modal opened from a Menu inside a Sheet) could leave focus on the outer trigger. `FocusScope` now tracks active `contain` scopes on a stack so only the topmost scope owns focus, focus that escapes the top scope is pulled back into it when the new target lives in another registered scope, and inertness is reference-counted so an inner scope unmounting no longer clears the outer scope's `inert` state. Focus moving into a non-`FocusScope` sibling portal (e.g. a `Menu` opened inside a `Modal`) is left alone, so the nested overlay's interactions are no longer interrupted. (APPDEV-17567)
|
|
294
|
+
|
|
295
|
+
#### Page
|
|
296
|
+
|
|
297
|
+
- Fixed the PageLayout resize handler element space when the visual refresh is enabled. (APPDEV-17898)
|
|
298
|
+
|
|
299
|
+
#### SearchInput
|
|
300
|
+
|
|
301
|
+
- Fixed `SearchInput` stepper from showing "1 / 0" when there were no matches. (APPOBS-33512)
|
|
302
|
+
|
|
303
|
+
#### SegmentSelector
|
|
304
|
+
|
|
305
|
+
- Removed the 320 px width cap on the empty state so `Manage segments` and `Learn more about segments` no longer truncate. (PAPA-33581)
|
|
306
|
+
|
|
307
|
+
#### TimeframeSelector
|
|
308
|
+
|
|
309
|
+
- Fixed the stepper ignoring the controlled value when stepping through timeframes. (APPDEV-18106)
|
|
310
|
+
- Letter key presses in a number spin button are now silently ignored. (APPDEV-17978)
|
|
311
|
+
- Users can now set the start or end time of a range to the current time using the new "Set time to now" button in the calendar overlay. (APPDEV-17429, APPDEV-17430)
|
|
312
|
+
- Right-clicking after selecting across multiple fields now shows the browser's native Cut/Copy context menu, without losing the current selection. (APPDEV-17476)
|
|
313
|
+
- Selecting a preset after stepping no longer restores the previous stepper position on the next step. (APPDEV-18088)
|
|
314
|
+
|
|
315
|
+
#### Toast
|
|
316
|
+
|
|
317
|
+
- Fixed incorrect icon padding and borders in certain cases due to a CSS specificity issue. (APPDEV-17979)
|
|
318
|
+
|
|
319
|
+
#### TreeMap
|
|
320
|
+
|
|
321
|
+
- Fixed tooltip pinning on touch devices where hover events are never fired before a tap. (APPDEV-18139)
|
|
322
|
+
|
|
323
|
+
#### XYChart
|
|
324
|
+
|
|
325
|
+
- Fixed the rendering of `BarSeries` data points that have only a start value (`x0`/`y0`). These will now default to a 5px width/height.
|
|
326
|
+
|
|
327
|
+
## 3.6.0
|
|
328
|
+
|
|
329
|
+
### Updates
|
|
330
|
+
|
|
331
|
+
#### General
|
|
332
|
+
|
|
333
|
+
- Fixed type signatures for `data-dt-value-content` and `data-dt-children-value-content` in `BehaviorTrackingProps` — both are now correctly typed as `boolean`.
|
|
334
|
+
|
|
335
|
+
#### Charts
|
|
336
|
+
|
|
337
|
+
- Exposed `ChartTooltip.Header` and `ChartTooltip.Footer` as public API. `ChartTooltip.Footer` can now be passed as a child slot to override the default footer, enabling custom actions and placeholder text.
|
|
338
|
+
- Added optional series `description` rendered alongside the name, a proper multi-line wrap mode, and increased the tooltip body max-height for the new Tooltip.
|
|
339
|
+
|
|
340
|
+
#### AnnotationsChart
|
|
341
|
+
|
|
342
|
+
- Added custom tooltip support via `AnnotationsChart.Tooltip` slot. (APPDEV-16290)
|
|
343
|
+
- Migrated the old tooltip to use the new unified tooltip.
|
|
344
|
+
|
|
345
|
+
#### CodeSnippet
|
|
346
|
+
|
|
347
|
+
- Null literals are now syntax-highlighted when using the `dql` language. (APPDEV-17731)
|
|
348
|
+
- With the DQL language, a query between at least two triple-quoted strings in one line is no longer highlighted as a string. (APPDEV-17719)
|
|
349
|
+
- With the DQL language, a single-line comment containing consecutive double-quote characters is now correctly highlighted as a comment to the end of the line. (APPDEV-17719)
|
|
350
|
+
|
|
351
|
+
#### DataTable
|
|
352
|
+
|
|
353
|
+
- `openColumnSettings()` now accepts `resetColumnVisibility`, `resetColumnOrder`, and `resetColumnPinning` to define a custom reset state when opening the column settings modal programmatically. (APPDEV-17273)
|
|
354
|
+
- Fixed sorting arrow disappearing when initially opening the column actions menu via right-click. (APPDEV-17723)
|
|
355
|
+
|
|
356
|
+
#### DateTimePicker
|
|
357
|
+
|
|
358
|
+
- Fixed an issue where pressing Backspace after selecting all spin buttons via Ctrl+A and then clicking a single spin button would clear all spin buttons instead of only the clicked one. (APPDEV-17766)
|
|
359
|
+
- Now copies placeholder text when digits are missing. (APPDEV-17358)
|
|
360
|
+
- Fixed undo reverting more than the last pasted input. (APPDEV-17359)
|
|
361
|
+
|
|
362
|
+
#### DQLEditor
|
|
363
|
+
|
|
364
|
+
- Typing a backtick or other dead-key character on keyboard layouts that require IME composition no longer corrupts the editor content. (APPDEV-17841)
|
|
365
|
+
- Autosuggestions now open only on typing, Ctrl+Space, or focus into an empty editor — not on cursor navigation or focus into a non-empty editor. Additionally, autosuggestions now reopen after ESC when continuing to type a command prefix following an inline block comment. (APPDEV-17881)
|
|
366
|
+
- Null literals are now syntax-highlighted. (APPDEV-17731)
|
|
367
|
+
- A query between at least two triple-quoted strings in one line is no longer highlighted as a string. (APPDEV-17719)
|
|
368
|
+
- A single-line comment containing consecutive double-quote characters is now correctly highlighted as a comment to the end of the line. (APPDEV-17719)
|
|
369
|
+
- Added `DQLEditor.ActionsMenu` slot that enables a built-in actions menu with "Copy query" and "Open documentation" actions. (APPDEV-17375)
|
|
370
|
+
|
|
371
|
+
#### FilterField
|
|
372
|
+
|
|
373
|
+
- Suggestions now match and highlight eligible details text while keeping operator and generated supported-values details display-only. (APPDEV-17870)
|
|
374
|
+
- Pressing Enter on the clear or pin button triggers the respective button. (APPDEV-17705)
|
|
375
|
+
- Fixed suggestion application when a custom suggestion provides its replacement range in reverse order. (PAPA-33294)
|
|
376
|
+
|
|
377
|
+
#### GaugeChart
|
|
378
|
+
|
|
379
|
+
- Added support for custom tooltip via render function in `GaugeChart.Tooltip` slot. (APPDEV-17878)
|
|
380
|
+
|
|
381
|
+
#### HistogramChart
|
|
382
|
+
|
|
383
|
+
- `HistogramChartXAxisProps` and `HistogramChartYAxisProps` now use the shared `MinScaleBoundary` and `MaxScaleBoundary` types for their min and max props. (APPDEV-13235)
|
|
384
|
+
|
|
385
|
+
#### HoneycombChart
|
|
386
|
+
|
|
387
|
+
- Added support for custom tooltip. (APPDEV-16287)
|
|
388
|
+
|
|
389
|
+
#### Menu
|
|
390
|
+
|
|
391
|
+
- Fixed several outside-click dismissal issues on the Menu component. (APPDEV-16531)
|
|
392
|
+
|
|
393
|
+
#### MeterBarChart
|
|
394
|
+
|
|
395
|
+
- Added custom tooltip support to `MeterBarChart.Tooltip` slot. The tooltip is now enabled by default and can be hidden via the `hidden` prop. (APPDEV-16288)
|
|
396
|
+
|
|
397
|
+
#### MultiMeterBarChart
|
|
398
|
+
|
|
399
|
+
- Added custom tooltip support to `MultiMeterBarChart.Tooltip` slot. The tooltip is now enabled by default and can be hidden via the `hidden` prop. (APPDEV-16288)
|
|
400
|
+
|
|
401
|
+
#### SearchInput
|
|
402
|
+
|
|
403
|
+
- Added an optional stepper. (APPOBS-33512)
|
|
404
|
+
|
|
405
|
+
#### SegmentSelector
|
|
406
|
+
|
|
407
|
+
- The "Manage segments" button now opens the Segments management page in a new browser tab instead of a modal overlay. (PAPA-33167)
|
|
408
|
+
- Now safeguards possible empty strings more thoroughly. (APPDEV-16653)
|
|
409
|
+
|
|
410
|
+
#### Select
|
|
411
|
+
|
|
412
|
+
- Improved accessibility so the announced option count is accurate when the list opens and duplicate option announcements are removed. Added support for custom option `aria-labels`, and ensured `aria-label` is not set when the option’s visible text already provides the accessible name. (APPDEV-17345)
|
|
413
|
+
|
|
414
|
+
#### SingleValue
|
|
415
|
+
|
|
416
|
+
- `SingleValue` and `SingleValueGrid` now accept `aria-label` and `aria-describedby` props for accessibility. (APPDEV-17682)
|
|
417
|
+
|
|
418
|
+
#### TerminologyOverlay
|
|
419
|
+
|
|
420
|
+
- Screen readers now announce the full overlay content when expanded. (APPDEV-17342)
|
|
421
|
+
|
|
422
|
+
#### TimeframeSelector
|
|
423
|
+
|
|
424
|
+
- When a selection spans both the "from" and "to" inputs and the user types an expression trigger key (`n`, `@`, `+`, `-`), the "to" input is now also cleared instead of retaining its previous value. (APPDEV-17481)
|
|
425
|
+
- Fixed unreliable focus of the hour spin button after selecting a date from the calendar. (APPDEV-17353)
|
|
426
|
+
- Now copies placeholder text when digits are missing. (APPDEV-17358)
|
|
427
|
+
- Fixed clear button not dismissing validation errors and apply button not working after clearing. (APPDEV-17664)
|
|
428
|
+
- Navigating between the two inputs using Backspace or Delete no longer deletes content in the destination input. (APPDEV-17478)
|
|
429
|
+
- Setting a `width` on `TimeframeSelector` now correctly stretches the trigger to fill the available space, with the label left-aligned and the chevron pushed to the right. (APPDEV-17776)
|
|
430
|
+
- Now uses the existing date as a reference when populating hours automatically. (APPDEV-17475)
|
|
431
|
+
- Fixed partial `defaultValue` or `value` (only `from` or only `to` set) being silently ignored and treated as if no value was provided. (APPDEV-17663)
|
|
432
|
+
- Fixed undo reverting more than the last pasted input. (APPDEV-17359)
|
|
433
|
+
|
|
434
|
+
#### TimeseriesChart
|
|
435
|
+
|
|
436
|
+
- Fixed the chart staying in pan mode after releasing the mouse over the chart body while dragging the time axis. (APPDEV-17818)
|
|
437
|
+
|
|
438
|
+
#### TreeMap
|
|
439
|
+
|
|
440
|
+
- Value label is now shown on leaf nodes whenever there is space to display it, even when the value text is wider than the node in a single layout pass. The label is truncated to fit rather than hidden. (APPDEV-17627)
|
|
441
|
+
- Added a slot that allows disabling and customizing the tooltip. (APPDEV-16286)
|
|
442
|
+
|
|
443
|
+
#### XYChart
|
|
444
|
+
|
|
445
|
+
- Improved x-axis tick label alignment so boundary ticks no longer overflow the chart edges. Enabled adaptive tick count reduction on logarithmic x-axes to prevent label collisions, and ensured grid lines always match the number of visible tick labels. (APPDEV-17775)
|
|
446
|
+
- Horizontal axes now display a better number of ticks avoiding collisions for numerical and time domains. (APPDEV-17304)
|
|
447
|
+
- Added an optional `labelAccessor` prop that renders a text label inside each bar. (APPDEV-17241)
|
|
448
|
+
- Fixed stacked/grouped `BarSeries` and stacked `AreaSeries` with `valueRepresentation="relative"` collapsing every bar to 100% when only one series is visible. (APPDEV-17339)
|
|
449
|
+
|
|
450
|
+
## 3.5.2
|
|
451
|
+
|
|
452
|
+
### Updates
|
|
453
|
+
|
|
454
|
+
#### General
|
|
455
|
+
|
|
456
|
+
- Fix type signatures for `data-dt-value-content` and `data-dt-children-value-content` in `BehaviorTrackingProps` — both are now correctly typed as `boolean`.
|
|
457
|
+
|
|
458
|
+
#### DQLEditor
|
|
459
|
+
|
|
460
|
+
- Autosuggestions now open only on typing, Ctrl+Space, or focus into an empty editor — not on cursor navigation or focus into a non-empty editor. Additionally, autosuggestions now reopen after ESC when continuing to type a command prefix following an inline block comment. (APPDEV-17881)
|
|
461
|
+
|
|
462
|
+
## 3.5.1
|
|
463
|
+
|
|
464
|
+
### Updates
|
|
465
|
+
|
|
466
|
+
#### Core
|
|
467
|
+
|
|
468
|
+
- Removed `boxShadow: none` from focus ring base styles. Now the focus ring styles in the non-focused state no longer override the visual refresh box shadow.
|
|
469
|
+
|
|
470
|
+
#### EmptyState
|
|
471
|
+
|
|
472
|
+
- Image url for visual preset with context `document` and type `something-missing` is now correct.
|
|
473
|
+
|
|
474
|
+
#### FilterField
|
|
475
|
+
|
|
476
|
+
- Fixed focus styles when visual refresh is enabled.
|
|
477
|
+
|
|
478
|
+
## 3.5.0
|
|
479
|
+
|
|
480
|
+
### Dependency updates
|
|
481
|
+
|
|
482
|
+
- `@dynatrace/strato-icons` was updated to version `2.3.0`.
|
|
483
|
+
- `@dynatrace/strato-design-tokens` was updated to version `1.5.0`.
|
|
484
|
+
|
|
485
|
+
### Deprecations
|
|
486
|
+
|
|
487
|
+
#### XYChart
|
|
488
|
+
|
|
489
|
+
- Deprecated `XYChart.CustomTooltip` slot. Use `XYChart.Tooltip` instead. (APPDEV-16900)
|
|
490
|
+
|
|
491
|
+
### Updates
|
|
492
|
+
|
|
493
|
+
#### General
|
|
494
|
+
|
|
495
|
+
- Components using `useFocusRing` no longer re-render when the input modality changes while they are not focused. (APPDEV-5547)
|
|
496
|
+
- Added design token overrides for a future visual refresh. This includes colors, surface elevations, and form field border styles across all components. (APPDEV-17223, APPDEV-17224, APPDEV-17225, APPDEV-17310, APPDEV-17311, APPDEV-17312)
|
|
497
|
+
|
|
498
|
+
#### Charts
|
|
499
|
+
|
|
500
|
+
- The `ChartTooltip` now allows showing two lines of data within the `Header`. (APPDEV-17272)
|
|
501
|
+
- Fixed `ChartTooltip` so the latest displayed tooltip appears on top. (APPDEV-17620)
|
|
502
|
+
|
|
503
|
+
#### Core
|
|
504
|
+
|
|
505
|
+
- `useFocusRing` with `isMinimal: true` and no explicit `color` now correctly applies the neutral focus ring styles. (APPDEV-17403)
|
|
506
|
+
|
|
507
|
+
#### AnnotationsChart
|
|
508
|
+
|
|
509
|
+
- Annotation indicators now correctly highlight and dim when the chart cursor or tooltip aligns with a marker timeframe. (APPDEV-17635)
|
|
510
|
+
|
|
511
|
+
#### ChipGroup
|
|
512
|
+
|
|
513
|
+
- When the user selects "Show more", the focus remains on the control so they can easily select "Show less". (APPDEV-17212)
|
|
514
|
+
- Made the "Show more" and "Show less" controls properly show the focus ring on keyboard focus. (APPDEV-17403)
|
|
515
|
+
|
|
516
|
+
#### CodeEditor
|
|
517
|
+
|
|
518
|
+
- Virtual focus styles now use consistent design token-based colors and animations. (APPDEV-17187)
|
|
519
|
+
|
|
520
|
+
#### CodeSnippet
|
|
521
|
+
|
|
522
|
+
- Keyword highlighting for DQL language no longer highlights non-keywords, matching the behavior of the `DQLEditor`. (APPDEV-11154)
|
|
523
|
+
- Syntax highlighting for DQL language no longer highlights the colon of a parameter. (APPDEV-11154)
|
|
524
|
+
- Number literals followed by a duration or calendar duration unit suffix are now highlighted when using the `dql` language. (APPDEV-17380)
|
|
525
|
+
- Boolean literals are now syntax-highlighted when using the `dql` language. (APPDEV-17379)
|
|
526
|
+
- Added log-language highlighting support for 16-character hex IDs (letter-leading and digit-leading). (APPDEV-11851)
|
|
527
|
+
|
|
528
|
+
#### DataTable
|
|
529
|
+
|
|
530
|
+
- Fixed vertical alignment of values in sparkline columns. Cells of sparkline columns now correctly stretch to fill the full row height. (APPDEV-17156)
|
|
531
|
+
- CSV download options now display row counts. When no table action intents are configured, the options are shown directly, instead of being nested. (APPDEV-16778)
|
|
532
|
+
- The interactive row associated with an open cell or row actions menu is now highlighted while the user interacts with the menu. (APPDEV-17386)
|
|
533
|
+
- Row ordering drag handles now correctly reflect the disabled state for all rows after sorting and clearing sorting. (APPDEV-17657)
|
|
534
|
+
- Fixed an unexpected focus ring appearing on the drag handle after dropping a row via mouse. (APPDEV-17634)
|
|
535
|
+
- When pagination is enabled, the `scrollToRow` function now navigates to the correct page and scrolls to the correct row. (APPDEV-12465)
|
|
536
|
+
- Fixed the focus ring not being visible on the drag handle of the dragged row when reordering rows via keyboard. (APPDEV-17634)
|
|
537
|
+
- Added `log-content` highlighting support for 16-character hex IDs so both letter-leading and digit-leading IDs are highlighted consistently. (APPDEV-11851)
|
|
538
|
+
|
|
539
|
+
#### DonutChart
|
|
540
|
+
|
|
541
|
+
- Now has a slot that allows you to disable and customize the tooltip. (APPDEV-16241)
|
|
542
|
+
|
|
543
|
+
#### DQLEditor
|
|
544
|
+
|
|
545
|
+
- Syntax highlighting no longer highlights commands when they appear at the beginning of another token. (APPDEV-11154)
|
|
546
|
+
- Number literals followed by a duration or calendar duration unit suffix are now highlighted. (APPDEV-17380)
|
|
547
|
+
- Boolean literals are now syntax-highlighted. (APPDEV-17379)
|
|
548
|
+
|
|
549
|
+
#### FilterField
|
|
550
|
+
|
|
551
|
+
- Fixed `validatorMap` key suggestion details not being shown for keys with literal value predicates. (APPDEV-17670)
|
|
552
|
+
- Virtual focus styles now use consistent design token-based colors and animations. (APPDEV-17185)
|
|
553
|
+
|
|
554
|
+
#### HistogramChart
|
|
555
|
+
|
|
556
|
+
- Selection area tooltip now has improved visuals and performance. (APPDEV-16293)
|
|
557
|
+
|
|
558
|
+
#### InputGroup
|
|
559
|
+
|
|
560
|
+
- No longer renders a grid wrapper when no children are provided, preventing unintended spacing in the UI. (APPDEV-17490)
|
|
561
|
+
|
|
562
|
+
#### Menu
|
|
563
|
+
|
|
564
|
+
- Now checks whether code is running in a browser before accessing browser-only APIs, preventing potential SSR (server-side rendering) issues. (APPDEV-17212)
|
|
565
|
+
|
|
566
|
+
#### Page
|
|
567
|
+
|
|
568
|
+
- `PageLayout` is now available as a new, more flexible replacement for `Page`. (APPDEV-17730)
|
|
569
|
+
|
|
570
|
+
#### PieChart
|
|
571
|
+
|
|
572
|
+
- Now has a slot that allows you to disable and customize the tooltip. (APPDEV-16241)
|
|
573
|
+
|
|
574
|
+
#### Select
|
|
575
|
+
|
|
576
|
+
- Virtual focus styles now use consistent design token-based colors and animations. (APPDEV-17185)
|
|
577
|
+
|
|
578
|
+
#### TimeframeSelector
|
|
579
|
+
|
|
580
|
+
- Fixed a duplicate "Please fill in this field" error message that appeared alongside the "Empty timeframe" validation message. (APPDEV-17488)
|
|
581
|
+
- `Backspace` and `Delete` now clear every selected spin button on Safari (cross-side selections included), instead of only the spin button at one end of the selection.
|
|
582
|
+
- Fixed an issue where selecting a preset item triggered a click on elements below the overlay. (APPDEV-17367)
|
|
583
|
+
|
|
584
|
+
#### TimeseriesChart
|
|
585
|
+
|
|
586
|
+
- Selection area tooltip now has improved visuals and performance. (APPDEV-16293)
|
|
587
|
+
|
|
588
|
+
#### XYChart
|
|
589
|
+
|
|
590
|
+
- Selection area tooltip now has improved visuals and performance. (APPDEV-16293)
|
|
591
|
+
- When filtering series through the legend, categorical axes no longer change domain. Numerical axes now adapt to the domain of the visible series in the Y coordinate, and keep the full domain on the X coordinate. (APPDEV-17181)
|
|
592
|
+
|
|
593
|
+
## 3.4.1
|
|
594
|
+
|
|
595
|
+
### Updates
|
|
596
|
+
|
|
597
|
+
#### General
|
|
598
|
+
|
|
599
|
+
- Fix type signatures for `data-dt-value-content` and `data-dt-children-value-content` in `BehaviorTrackingProps` — both are now correctly typed as `boolean`.
|
|
600
|
+
|
|
601
|
+
#### DQLEditor
|
|
602
|
+
|
|
603
|
+
- Autosuggestions now open only on typing, Ctrl+Space, or focus into an empty editor — not on cursor navigation or focus into a non-empty editor. Additionally, autosuggestions now reopen after ESC when continuing to type a command prefix following an inline block comment. (APPDEV-17881)
|
|
604
|
+
|
|
605
|
+
## 3.4.0
|
|
606
|
+
|
|
607
|
+
### Dependency updates
|
|
608
|
+
|
|
609
|
+
- `@dynatrace/strato-design-tokens` was updated to version `1.4.0`.
|
|
610
|
+
|
|
611
|
+
### Updates
|
|
612
|
+
|
|
613
|
+
#### General
|
|
614
|
+
|
|
615
|
+
- Behavior tracking attributes are now supported in all button components, including `Button`, `IntentButton`, `NotifyButton`, and `RunQueryButton`. (APPDEV-16876)
|
|
616
|
+
- The text and icon color tokens for the success on accent button are now correct. (APPDEV-17388)
|
|
617
|
+
- Behavior tracking attributes are now supported in all form components, including `Calendar`, `Checkbox`, `DateTimePicker`, `DateTimeRangePicker`, `FieldSet`, `FormField`, `Label`, `NumberInput`, `NumberInputV2`, `PasswordInput`, `Radio`, `SearchInput`, `Select`, `Switch`, `TextArea`, `TextInput`, and `ToggleButtonGroup`. (APPDEV-16882)
|
|
618
|
+
- Behavior tracking attributes are now supported in `FilterBar`, `FilterField`, `SegmentSelector`, and `TimeframeSelector`. `FilterField.Suggestions` and `TimeframeSelector.Presets` now also support behavior tracking attributes. (APPDEV-16881)
|
|
619
|
+
- Added feature flag and css overrides for design tokens for visual refresh. (APPDEV-17223)
|
|
620
|
+
|
|
621
|
+
#### Charts
|
|
622
|
+
|
|
623
|
+
- Annotations now allows metadata for intents. (APPDEV-17129)
|
|
624
|
+
- Chart.Legend now correctly respects the initialRatio prop when the chart is first rendered without data and later receives data. (APPDEV-17415)
|
|
625
|
+
- Legend interactions are now disabled when loading is visible. (APPDEV-16703)
|
|
626
|
+
|
|
627
|
+
#### Core
|
|
628
|
+
|
|
629
|
+
- `useFocusRing` considers the modality correctly when the `focusWithin` flag is set.
|
|
630
|
+
|
|
631
|
+
#### Editors
|
|
632
|
+
|
|
633
|
+
- Default placeholder texts are now shown when no placeholder is explicitly provided. (APPDEV-17048)
|
|
634
|
+
|
|
635
|
+
#### Forms
|
|
636
|
+
|
|
637
|
+
- Improved read-only state for form components: `TextInput`, `TextArea`, `PasswordInput`, `NumberInput`, `DateTimePicker`, `DateTimeRangePicker`, `Select`, `Switch`, `Checkbox`, `RadioGroup` and `ToggleButtonGroup`. (APPDEV-16539, APPDEV-16540, APPDEV-16542, APPDEV-16543, APPDEV-16544, APPDEV-16545, APPDEV-16546, APPDEV-16547, APPDEV-16548)
|
|
638
|
+
- Default placeholder texts are now shown when no placeholder is explicitly provided. (APPDEV-17048)
|
|
639
|
+
|
|
640
|
+
#### Overlays
|
|
641
|
+
|
|
642
|
+
- Fixed the issue where pressing `Cmd+Enter` or `Ctrl+Enter` on an overlay trigger made the trigger stick and prevented it from opening again with the keyboard. (APPDEV-17378)
|
|
643
|
+
|
|
644
|
+
#### AnnotationsChart
|
|
645
|
+
|
|
646
|
+
- Fixed an issue in the `AnnotationsChart` where range marker alignment with indicators was incorrect when space is constrained (APPDEV-17128)
|
|
647
|
+
|
|
648
|
+
#### CategoricalBarChart
|
|
649
|
+
|
|
650
|
+
- Threshold indicator tooltips now match the updated chart tooltip design. (APPDEV-16294)
|
|
651
|
+
|
|
652
|
+
#### ChipGroup
|
|
653
|
+
|
|
654
|
+
- The expand/collapse control button now correctly references the chip group via `aria-controls`.
|
|
655
|
+
- The `Show more` control no longer remains visible after all chips are removed. (APPDEV-11526)
|
|
656
|
+
- Dynamically-added chips no longer flash visibly before being hidden behind the `Show more` control. (APPDEV-11526)
|
|
657
|
+
|
|
658
|
+
#### CodeSnippet
|
|
659
|
+
|
|
660
|
+
- Kotlin, Swift, and Groovy are now supported languages. (APPDEV-12954)
|
|
661
|
+
|
|
662
|
+
#### DataTable
|
|
663
|
+
|
|
664
|
+
- The page now remains interactive when cell or column actions menu is open. (APPDEV-17100)
|
|
665
|
+
- When downloading large tables as CSV, a progress indicator is now shown, and the table stays responsive during the download. (APPDEV-13387)
|
|
666
|
+
- Sorting controls are now also available in the column actions menu for any column with sorting enabled. (APPDEV-16866)
|
|
667
|
+
- The buttons for showing/collapsing row details from expandable rows no longer have a broken `aria-controls` reference. (APPDEV-17125)
|
|
668
|
+
- Unpinned columns can now be ordered via drag and drop while other columns are pinned. (APPDEV-16859)
|
|
669
|
+
|
|
670
|
+
#### DateTimePicker
|
|
671
|
+
|
|
672
|
+
- Arrow key navigation on empty spin buttons now cycles correctly through values instead of sticking at "00".
|
|
673
|
+
- Changing the precision while a spin button is partially filled now functions without breaking the input. (APPDEV-17299)
|
|
674
|
+
- Selected SpinButton values can now be deleted via `Delete`, `Backspace`, and `Cut`. (APPDEV-16125)
|
|
675
|
+
- Relative-value expression inputs now support partial text selection and deletion. (APPDEV-17229)
|
|
676
|
+
- Selection behavior for spin buttons when using Shift+ArrowLeft/ArrowRight now allows values to be deselected correctly. (APPDEV-17229)
|
|
677
|
+
- Spinbutton placeholders now use uppercase format (`YYYY`, `MM`, `DD`) for improved clarity and consistency.
|
|
678
|
+
|
|
679
|
+
#### DonutChart
|
|
680
|
+
|
|
681
|
+
- The tooltip has an updated layout and performance improvements. (APPDEV-15962)
|
|
682
|
+
|
|
683
|
+
#### DQLEditor
|
|
684
|
+
|
|
685
|
+
- Autocomplete now reopens when typing resumes after dismissing suggestions with `Esc`, as well as when the cursor is positioned before or after a comment. (APPDEV-16879)
|
|
686
|
+
- Autocomplete suggestions now open automatically when the cursor is placed on a new line after existing query content. (APPDEV-17256)
|
|
687
|
+
|
|
688
|
+
#### FilterField
|
|
689
|
+
|
|
690
|
+
- No longer crashes when saving pinned or recent filter fails due to missing permissions (403/401). Pinning is silently disabled in those cases. (APPDEV-17372)
|
|
691
|
+
- Improved the visual style of pasted content. (APPDEV-16263)
|
|
692
|
+
- `suggestStatementOnValueMatch` now matches values case-insensitively. (APPDEV-17294)
|
|
693
|
+
- Typing a key followed by a space inside a bracket group (`(foo )`, for example) now shows the correct suggestions. (APPDEV-17232)
|
|
694
|
+
- Fixed the highlight range from potentially being out of bounds. (APPDEV-17263)
|
|
695
|
+
- Pasting multi-line text no longer inserts literal newlines — line breaks are collapsed into spaces so the pasted content stays on a single line. (APPDEV-11712)
|
|
696
|
+
|
|
697
|
+
#### GaugeChart
|
|
698
|
+
|
|
699
|
+
- Has a new and improved tooltip, which now also shows by default. (APPDEV-16899)
|
|
700
|
+
|
|
701
|
+
#### HistogramChart
|
|
702
|
+
|
|
703
|
+
- Threshold indicator tooltips now match the updated chart tooltip design. (APPDEV-16294)
|
|
704
|
+
|
|
705
|
+
#### HoneycombChart
|
|
706
|
+
|
|
707
|
+
- The tooltip in the `HoneycombChart` has a renewed view and improved performance. (APPDEV-16285)
|
|
708
|
+
|
|
709
|
+
#### IntentButton
|
|
710
|
+
|
|
711
|
+
- `IntentButton.Item` now supports a disabled state. (APPDEV-17301)
|
|
712
|
+
|
|
713
|
+
#### Label
|
|
714
|
+
|
|
715
|
+
- Now displays a "(read only)" text suffix when the associated form field is read only. (APPDEV-16541)
|
|
716
|
+
|
|
717
|
+
#### Menu
|
|
718
|
+
|
|
719
|
+
- The `Menu` trigger now correctly shows its active state when the `Menu` is open. (APPDEV-16688)
|
|
720
|
+
|
|
721
|
+
#### MeterBarChart
|
|
722
|
+
|
|
723
|
+
- `MeterBarChart.Tooltip` now accepts a `name` prop to customize the label displayed in the tooltip. (APPDEV-16994)
|
|
724
|
+
- Added `Legend` slot with a `hidden` prop. `MeterBarChart.ThresholdLegend` is deprecated in favor of `MeterBarChart.Legend`. (APPDEV-16834)
|
|
725
|
+
- The single meter bar now supports the loading state. (APPDEV-16795)
|
|
726
|
+
|
|
727
|
+
#### Microguide
|
|
728
|
+
|
|
729
|
+
- The overlay is now rendered in the correct position, regardless of style load order. (APPDEV-17240)
|
|
730
|
+
|
|
731
|
+
#### MultiMeterBarChart
|
|
732
|
+
|
|
733
|
+
- The `Legend` slot now supports a `hidden` prop. (APPDEV-16834)
|
|
734
|
+
- The multimeter bar now supports the loading state. (APPDEV-16795)
|
|
735
|
+
|
|
736
|
+
#### PieChart
|
|
737
|
+
|
|
738
|
+
- The tooltip has an updated layout and performance improvements. (APPDEV-15962)
|
|
739
|
+
|
|
740
|
+
#### Select
|
|
741
|
+
|
|
742
|
+
- When opening a second Select on mobile, the first one closes. (APPDEV-17015)
|
|
743
|
+
|
|
744
|
+
#### TimeframeSelector
|
|
745
|
+
|
|
746
|
+
- Arrow key navigation on empty spin buttons now cycles correctly through values instead of sticking at "00".
|
|
747
|
+
- Changing the precision while a spin button is partially filled now functions correctly and doesn't break the input. (APPDEV-17299)
|
|
748
|
+
- Selected `SpinButton` values can now be deleted via `Delete`, `Backspace`, and `Cut`. (APPDEV-16125)
|
|
749
|
+
- Calendar now resets the selection when reopened.
|
|
750
|
+
- DateTime inputs can now be scrolled horizontally on mobile devices. (APPDEV-16852)
|
|
751
|
+
- Fixed spin buttons not restoring properly when an absolute value is set to the same date after fields were manually cleared. (APPDEV-17389)
|
|
752
|
+
- `Select all` in the expression input no longer throws an error when the browser wraps the text content in element nodes. (APPDEV-16987)
|
|
753
|
+
- Relative-value expression inputs now support partial text selection and deletion. (APPDEV-17229)
|
|
754
|
+
- Fixed pasting invalid expressions into the from-input from replacing the arrow separator. (APPDEV-17277)
|
|
755
|
+
- Selection behavior for spin buttons when using Shift+ArrowLeft/ArrowRight now allows values to be deselected correctly. (APPDEV-17229)
|
|
756
|
+
- Fixed digit keys from being incorrectly forwarded from a `TextSpinButton` (e.g. AM/PM) to an adjacent `NumberSpinButton`. Digits typed on a `TextSpinButton` are now silently ignored. (APPDEV-17276)
|
|
757
|
+
- Fixed copying from a single focused field.
|
|
758
|
+
- Pasting formatted dates and times is now supported. (APPDEV-16822)
|
|
759
|
+
- Spinbutton placeholders now use uppercase format (`YYYY`, `MM`, `DD`) for improved clarity and consistency.
|
|
760
|
+
|
|
761
|
+
#### TimeseriesChart
|
|
762
|
+
|
|
763
|
+
- Threshold indicator tooltips now match the updated chart tooltip design. (APPDEV-16294)
|
|
764
|
+
|
|
765
|
+
#### Toast
|
|
766
|
+
|
|
767
|
+
- No longer displays incorrect visual styles. (APPDEV-17316)
|
|
768
|
+
|
|
769
|
+
#### TreeMap
|
|
770
|
+
|
|
771
|
+
- The component now supports a new `labelsDisplay="clusters-and-values"` option that shows the category (cluster) label alongside only the value inside each leaf square. (APPDEV-16922)
|
|
772
|
+
- Errors thrown inside the `formatter` prop are now correctly caught and rendered as the `ErrorState`. (APPDEV-17319)
|
|
773
|
+
- Migrated the default tooltip to use the new `OverlayTooltip` component for consistency with other chart components. No changes to the public API or visual appearance. (APPDEV-16898)
|
|
774
|
+
|
|
775
|
+
#### XYChart
|
|
776
|
+
|
|
777
|
+
- Fixed an issue that caused `AreaSeries` to show duplicate gap datapoints when stacked.
|
|
778
|
+
- `BarSeries` that are grouped by category now have grid lines, making them easier to see. (APPDEV-17201)
|
|
779
|
+
- Fixed thresholds are no longer hidden when their assigned axis is filtered out via the legend. (APPDEV-16553)
|
|
780
|
+
- Fixed bar/rect selection to include bars with very small or zero pixel heights, while still excluding datapoints whose y-value lies outside the visible y-axis domain.
|
|
781
|
+
- Threshold indicator tooltips now match the updated chart tooltip design. (APPDEV-16294)
|
|
782
|
+
|
|
783
|
+
## 3.3.3
|
|
784
|
+
|
|
785
|
+
### Updates
|
|
786
|
+
|
|
787
|
+
#### FilterField
|
|
788
|
+
|
|
789
|
+
- Now catches pending promise rejections on the FilterField saveRecentFilters imperative handle. (APPDEV-17372)
|
|
790
|
+
|
|
791
|
+
## 3.3.2
|
|
792
|
+
|
|
793
|
+
### Updates
|
|
794
|
+
|
|
795
|
+
#### FilterField
|
|
796
|
+
|
|
797
|
+
- FilterField no longer crashes when saving pinned or recent filters fails due to missing permissions (403/401). Pinning is now disabled gracefully in those cases. (APPDEV-17372)
|
|
798
|
+
|
|
799
|
+
## 3.3.1
|
|
800
|
+
|
|
801
|
+
### Updates
|
|
802
|
+
|
|
803
|
+
#### Page
|
|
804
|
+
|
|
805
|
+
- User-provided `data-dt-name` and `data-dt-properties` attributes on `Page.PanelControlButton` are no longer overridden by the default values. (APPDEV-17287)
|
|
806
|
+
|
|
807
|
+
#### TimeframeSelector
|
|
808
|
+
|
|
809
|
+
- Fixed preset and recent suggestions being incorrectly disabled when `max` is set to an expression value (e.g. `now`). (APPDEV-17327)
|
|
810
|
+
|
|
811
|
+
#### ToggleButtonGroup
|
|
812
|
+
|
|
813
|
+
- User-provided `data-dt-name` attribute on `ToggleButtonGroup.Item` is no longer overridden by the default value. (APPDEV-17287)
|
|
814
|
+
|
|
815
|
+
#### Tooltip
|
|
816
|
+
|
|
817
|
+
- User-provided `data-dt-name` attribute on the trigger is no longer overridden by the default value. (APPDEV-17287)
|
|
818
|
+
|
|
819
|
+
## 3.3.0
|
|
820
|
+
|
|
821
|
+
### Dependency updates
|
|
822
|
+
|
|
823
|
+
- Changed peerDependency version range for `@dynatrace-sdk/client-notifications-v2` from `^1.0.0` to `^1.0.0 | ^2.0.0`.
|
|
824
|
+
- `@dynatrace/strato-icons` was updated to version `2.2.0`.
|
|
825
|
+
|
|
826
|
+
### Deprecations
|
|
827
|
+
|
|
828
|
+
#### FilterField
|
|
829
|
+
|
|
830
|
+
- The object notation of the `validatorMap` component's `keyPredicates` is now deprecated. Use the array notation instead. (APPDEV-15798)
|
|
831
|
+
|
|
832
|
+
Instead of accepting an object, the `keyPredicates` now have to be provided as an array. See the example below:
|
|
833
|
+
|
|
834
|
+
```diff
|
|
835
|
+
const validatorMap = {
|
|
836
|
+
- keyPredicates: {
|
|
837
|
+
- myKey1: {
|
|
838
|
+
- valuePredicate: ...
|
|
839
|
+
- },
|
|
840
|
+
- myKey2: {
|
|
841
|
+
- valuePredicate: ...
|
|
842
|
+
- },
|
|
843
|
+
- },
|
|
844
|
+
+ keyPredicates: [
|
|
845
|
+
+ {
|
|
846
|
+
+ key: 'myKey1',
|
|
847
|
+
+ valuePredicate: ...
|
|
848
|
+
+ },
|
|
849
|
+
+ {
|
|
850
|
+
+ key: 'myKey2',
|
|
851
|
+
+ valuePredicate: ...
|
|
852
|
+
+ },
|
|
853
|
+
+
|
|
854
|
+
```
|
|
855
|
+
|
|
856
|
+
- The `FilterFieldValidatorMapTypePredicate` is now deprecated. Adding the type to the `valuePredicate` will no longer be supported to restrict a key's value to a specific type or set of types. Use the `valueType` on `FilterFieldKeySuggestionConfig` instead, providing a `FilterFieldPrimitive` type (or custom type) or array of types.
|
|
857
|
+
|
|
858
|
+
```diff
|
|
859
|
+
const validatorMap = {
|
|
860
|
+
keyPredicates: [
|
|
861
|
+
{
|
|
862
|
+
key: 'myKey1',
|
|
863
|
+
- valuePredicate: {
|
|
864
|
+
- type: ['String', 'Number']
|
|
865
|
+
- },
|
|
866
|
+
+ valueType: ['String', 'Number']
|
|
867
|
+
},
|
|
868
|
+
{
|
|
869
|
+
key: 'myKey2',
|
|
870
|
+
valuePredicate: [
|
|
871
|
+
'warning',
|
|
872
|
+
'error',
|
|
873
|
+
- { type: 'String' }
|
|
874
|
+
],
|
|
875
|
+
+ valueType: 'String',
|
|
876
|
+
},
|
|
877
|
+
],
|
|
878
|
+
};
|
|
879
|
+
```
|
|
880
|
+
|
|
881
|
+
- The `FilterFieldDuration` type is now deprecated. Instead of providing durations as `{ value: ..., unit: ...}` objects in the `validatorMap`, use simple strings instead.
|
|
882
|
+
|
|
883
|
+
```diff
|
|
884
|
+
const validatorMap = {
|
|
885
|
+
keyPredicates: [
|
|
886
|
+
{
|
|
887
|
+
key: 'myKey1',
|
|
888
|
+
valuePredicate: [
|
|
889
|
+
- { value: 10, unit: 'ms' },
|
|
890
|
+
- { value: 1, unit: 's' },
|
|
891
|
+
+ '10ms',
|
|
892
|
+
+ '1s',
|
|
893
|
+
],
|
|
894
|
+
},
|
|
895
|
+
],
|
|
896
|
+
};
|
|
897
|
+
```
|
|
898
|
+
|
|
899
|
+
#### TimeframeSelector
|
|
900
|
+
|
|
901
|
+
- Deprecated `clearable` prop in favor of the new built-in clear button. (APPDEV-16374)
|
|
902
|
+
|
|
903
|
+
### Updates
|
|
904
|
+
|
|
905
|
+
#### Charts
|
|
906
|
+
|
|
907
|
+
- Fixed an issue where the annotations tooltip would grow beyond its intended size when the description text is long. (APPDEV-17117)
|
|
908
|
+
- The legend now prevents highlighting series when hovering between the margins of the elements. (APPDEV-16894)
|
|
909
|
+
|
|
910
|
+
#### Editors
|
|
911
|
+
|
|
912
|
+
- Scroll containers now have an explicit `role="group"` attribute to fix an accessibility issue where focusable elements were missing an implicit or explicit role. (APPDEV-16997)
|
|
913
|
+
|
|
914
|
+
#### Accordion
|
|
915
|
+
|
|
916
|
+
- Added `data-dt-properties` attribute to the section trigger and section header.
|
|
917
|
+
|
|
918
|
+
#### AppHeader
|
|
919
|
+
|
|
920
|
+
- Spacing between the logo text and the release phase indicator was corrected. (APPDEV-16591)
|
|
921
|
+
|
|
922
|
+
#### convertToColumns
|
|
923
|
+
|
|
924
|
+
- The `timeframe` columns now accept ISO date strings for `start` and `end` values in addition to `Date` objects. (APPDEV-17007)
|
|
925
|
+
|
|
926
|
+
#### DataTable
|
|
927
|
+
|
|
928
|
+
- Column headers now display sort order indicators when multiple columns are sorted simultaneously. (APPDEV-10404)
|
|
929
|
+
- Gantt chart annotations now display indicators that highlight the position of annotation markers in the chart. Indicators can be configured per track and overridden per marker using the `indicatorsDisplay` prop. (APPDEV-16812)
|
|
930
|
+
- Fixed an issue that occurs in rare cases due to a rendering timing issue. (APPDEV-16787)
|
|
931
|
+
- Built-in `TableActionsMenu` (`CopyItem`, `LineWrap`, `HideColumn`, `ColumnOrder`, `ColumnPinning`, `ColumnFontStyle`) actions now have `onSelect` callback available. (APPDEV-4846)
|
|
932
|
+
- `MeterBarChart` tooltip in `meterbar` columns is now unpinned on click outside the chart or tooltip. (APPDEV-16627)
|
|
933
|
+
- Sparkline columns allow configuration for `min`, `max` and `scale` of the `yAxis`. (APPDEV-16840)
|
|
934
|
+
- The column resize handle now meets ARIA requirements and no longer causes an `aria-required-children` violation.
|
|
935
|
+
- Added `data-dt-properties` attribute to the toolbar and column line wrap actions, column header sorting, row selection controls, sub-row 'Expand' and 'Collapse' buttons, and column settings modal visibility controls.
|
|
936
|
+
- The imperative handle now exposes `getDisplayedRowIds`, which returns the IDs of the displayed rows in their display order. (APPDEV-16929)
|
|
937
|
+
- Column reordering via drag and drop now meets ARIA requirements and no longer causes an `aria-required-children` violation.
|
|
938
|
+
|
|
939
|
+
#### DateTimePicker
|
|
940
|
+
|
|
941
|
+
- Added `data-dt-properties` attribute to the calendar's header, day, month, and year buttons.
|
|
942
|
+
- Now supports clearing the selected value via a built-in clear button. (APPDEV-16374)
|
|
943
|
+
|
|
944
|
+
#### ExpandableText
|
|
945
|
+
|
|
946
|
+
- Added `data-dt-properties` attribute to the 'Show more' and 'Show less' buttons.
|
|
947
|
+
|
|
948
|
+
#### FilterField
|
|
949
|
+
|
|
950
|
+
- The `contains-middle` and `ends-with` matches are now grouped together when sorting suggestions by match relevance while typing (`exact` → `starts-with` → `contains-middle/ends-with`). (APPDEV-16055)
|
|
951
|
+
- Custom validation functions are now called for each element in a value list. (APPDEV-17106)
|
|
952
|
+
- Added `data-dt-name` and `data-dt-properties` attributes to the suggestions, 'Clear' button, 'Delete filter statement' buttons, 'Show more' and 'Show less' buttons, and the filter syntax link. (APPDEV-16903)
|
|
953
|
+
- Invalid value error messages now include the supported value types for the key. For custom types defined via `customTypes`, a `label` can be provided. Per default, the type name is used. (APPDEV-16719)
|
|
954
|
+
- Suggestions can now be grouped using the `validatorMap`. The object notation of the `keyPredicates` doesn't support groups. Switch to the array notation to add groups. (APPDEV-15798)
|
|
955
|
+
- The `valuePredicate` function is now called correctly for values of type `Variable`.
|
|
956
|
+
- Typing a relative timeframe character (`n`, `+`, `-`, `@`) while focused on an absolute date input now automatically switches to relative timeframe mode. (APPDEV-16134)
|
|
957
|
+
|
|
958
|
+
#### FocusScope
|
|
959
|
+
|
|
960
|
+
- Focus-visible (focus ring) is now prevented when focus is moved after pointer interaction. (APPDEV-16864)
|
|
961
|
+
|
|
962
|
+
#### GaugeChart
|
|
963
|
+
|
|
964
|
+
- GaugeChart now supports loading prop. (APPDEV-16152)
|
|
965
|
+
|
|
966
|
+
#### HealthIndicator
|
|
967
|
+
|
|
968
|
+
- `HealthIndicator.Label` no longer causes an `aria-prohibited-attr` accessibility violation. (APPDEV-16907)
|
|
969
|
+
|
|
970
|
+
#### HistogramChart
|
|
971
|
+
|
|
972
|
+
- Setting `indicatorsDisplay: 'auto'` on an annotation marker now correctly overrides a track-level `always` configuration, so that all marker-level values (`auto`, `never`, `always`) take precedence over the track-level configuration. (APPDEV-17153)
|
|
973
|
+
|
|
974
|
+
#### HoneycombChart
|
|
975
|
+
|
|
976
|
+
- Fixed a bug that prevented showing a tooltip in the area where three hexagons meet. (APPDEV-17154)
|
|
977
|
+
|
|
978
|
+
#### MeterBarChart
|
|
979
|
+
|
|
980
|
+
- The tooltip has an updated layout and performance improvements. (APPDEV-16627)
|
|
981
|
+
|
|
982
|
+
#### Microguide
|
|
983
|
+
|
|
984
|
+
- Added `data-dt-properties` attribute to the 'Next' and 'Got it' buttons.
|
|
985
|
+
|
|
986
|
+
#### MultiMeterBarChart
|
|
987
|
+
|
|
988
|
+
- The tooltip has an updated layout and performance improvements. (APPDEV-16627)
|
|
989
|
+
|
|
990
|
+
#### Page
|
|
991
|
+
|
|
992
|
+
- Added `data-dt-properties` attribute to the 'Expand' and 'Collapse' buttons, 'Close' button, and resize handles.
|
|
993
|
+
|
|
994
|
+
#### PasswordInput
|
|
995
|
+
|
|
996
|
+
- Added `data-dt-properties` attribute to the 'Show password' and 'Hide password' buttons.
|
|
997
|
+
|
|
998
|
+
#### SegmentSelector
|
|
999
|
+
|
|
1000
|
+
- Added `data-dt-properties` attribute to the 'Pin' and 'Unpin' buttons, and the 'Show more' and 'Show less' buttons.
|
|
1001
|
+
|
|
1002
|
+
#### Select
|
|
1003
|
+
|
|
1004
|
+
- Added `data-dt-properties` attribute to the 'Select all' control.
|
|
1005
|
+
|
|
1006
|
+
#### Sparkline
|
|
1007
|
+
|
|
1008
|
+
- Chart width is now consistent between rows regardless of whether context values contain negative numbers. A fixed sign column is always reserved so the chart area does not shift. (APPDEV-16895)
|
|
1009
|
+
|
|
1010
|
+
#### Tabs
|
|
1011
|
+
|
|
1012
|
+
- Page no longer scrolls when you click on a tab. (APPDEV-16831)
|
|
1013
|
+
|
|
1014
|
+
#### TimeframeSelector
|
|
1015
|
+
|
|
1016
|
+
- The value of the `TimeframeSelector` can now still be adjusted after selecting everything with `Cmd/Ctrl+a`. (APPDEV-16861)
|
|
1017
|
+
- You can now move between `DateTimeInput` values with the arrow keys. When typing numbers, focus switches to the next spin-button segment as soon as the current one is complete. (APPDEV-16126)
|
|
1018
|
+
- Added `data-dt-properties` attribute to the 'Apply' button, preset timeframes, and recent timeframes.
|
|
1019
|
+
- Now supports clearing the selected value via a built-in 'Clear' button. (APPDEV-16374)
|
|
1020
|
+
- Improved support for pasting ISO timestamps or timeframes. Additionally, there's now the possibility to undo after pasting. (APPDEV-16124)
|
|
1021
|
+
|
|
1022
|
+
#### TimeseriesChart
|
|
1023
|
+
|
|
1024
|
+
- Setting `indicatorsDisplay: 'auto'` on an annotation marker now correctly overrides a track-level `always` configuration, so that all marker-level values (`auto`, `never`, `always`) take precedence over the track-level configuration. (APPDEV-17153)
|
|
1025
|
+
|
|
1026
|
+
#### ToggleButtonGroup
|
|
1027
|
+
|
|
1028
|
+
- Removed redundant `aria-checked` attribute from the radio input to resolve an accessibility conflict (WCAG 4.1.2). (APPDEV-16861)
|
|
1029
|
+
- Added `data-dt-name` attribute to the toggle item.
|
|
1030
|
+
|
|
1031
|
+
#### TreeMap
|
|
1032
|
+
|
|
1033
|
+
- The width of the treemap tooltip is now limited, as with the other charts. (APPDEV-16905)
|
|
1034
|
+
|
|
1035
|
+
#### XYChart
|
|
1036
|
+
|
|
1037
|
+
- Fixed a bug that caused series with the id '0' to not be able to be highlighted.
|
|
1038
|
+
- Setting `indicatorsDisplay: 'auto'` on an annotation marker now correctly overrides a track-level `always` configuration, so that all marker-level values (`auto`, `never`, `always`) take precedence over the track-level configuration. (APPDEV-17153)
|
|
1039
|
+
- The default tooltip in explore mode got an updated layout, refreshed visual design, and performance improvements. (APPDEV-16266)
|
|
1040
|
+
|
|
1041
|
+
## 3.2.2
|
|
1042
|
+
|
|
1043
|
+
### Updates
|
|
1044
|
+
|
|
1045
|
+
#### FilterField
|
|
1046
|
+
|
|
1047
|
+
- Now catches pending promise rejections on the FilterField saveRecentFilters imperative handle. (APPDEV-17372)
|
|
1048
|
+
|
|
1049
|
+
## 3.2.1
|
|
1050
|
+
|
|
1051
|
+
### Updates
|
|
1052
|
+
|
|
1053
|
+
#### General
|
|
1054
|
+
|
|
1055
|
+
- Updates DTFlow to not use font auto hinting on the font and improve legibility.
|
|
1056
|
+
|
|
1057
|
+
## 3.2.0
|
|
1058
|
+
|
|
1059
|
+
### Dependency updates
|
|
1060
|
+
|
|
1061
|
+
- `@dynatrace/strato-icons` was updated to version `2.1.1`.
|
|
1062
|
+
|
|
1063
|
+
### Deprecations
|
|
1064
|
+
|
|
1065
|
+
#### AppHeader
|
|
1066
|
+
|
|
1067
|
+
- Deprecated `AppHeader.AppNavLink` (use `AppHeader.Logo`), `AppHeader.NavItems` (use `AppHeader.Navigation`), `AppHeader.NavItem` (use `AppHeader.NavigationItem`), and `AppNavLinkInternalOwnProps`. (APPDEV-12515)
|
|
1068
|
+
|
|
1069
|
+
### Updates
|
|
1070
|
+
|
|
1071
|
+
#### General
|
|
1072
|
+
|
|
1073
|
+
- Reduced motion media query now overrides timings on tokens. (APPDEV-17018)
|
|
1074
|
+
- DTFlow version 1.2 is now used. (APPDEV-16887)
|
|
1075
|
+
|
|
1076
|
+
#### Charts
|
|
1077
|
+
|
|
1078
|
+
- Meter bars tooltip now appears also on grayed area. (APPDEV-16799)
|
|
1079
|
+
- Meter bars supports now unit, width and height. (APPDEV-15934)
|
|
1080
|
+
- Toolbar now supports behavioral tracking props. (APPDEV-16378)
|
|
1081
|
+
- After triggering a series actions its corresponding item gets the highlighting removed. (APPDEV-16665)
|
|
1082
|
+
|
|
1083
|
+
#### Overlays
|
|
1084
|
+
|
|
1085
|
+
- Add support for behavior tracking props on overlay components. (APPDEV-16801)
|
|
1086
|
+
|
|
1087
|
+
#### Accordion
|
|
1088
|
+
|
|
1089
|
+
- Added `data-dt-name` attributes to the section trigger and section header. (APPDEV-16670)
|
|
1090
|
+
|
|
1091
|
+
#### AppHeader
|
|
1092
|
+
|
|
1093
|
+
- `AppHeader.Logo` now accepts a `releasePhase` prop. Setting `releasePhase="preview"` displays a "Preview" chip next to the app name, allowing apps to communicate their release phase to users. (APPDEV-16591)
|
|
1094
|
+
- Added `data-dt-name` attribute to the app icon. (APPDEV-16671)
|
|
1095
|
+
|
|
1096
|
+
#### CategoricalBarChart
|
|
1097
|
+
|
|
1098
|
+
- `CategoricalBarChart` now supports behavioral tracking properties (APPDEV-16515)
|
|
1099
|
+
|
|
1100
|
+
#### CodeEditor
|
|
1101
|
+
|
|
1102
|
+
- The line-number gutter no longer disappears when the gutter marker is placed at an out-of-bounds line number. (APPDEV-16705)
|
|
1103
|
+
|
|
1104
|
+
#### CodeSnippet
|
|
1105
|
+
|
|
1106
|
+
- No longer crashes on very large inputs. Syntax highlighting is now limited to the first 100,000 characters; content beyond that is rendered as plain text without syntax highlighting or dynamic line breaks. (APPDEV-16797)
|
|
1107
|
+
- Added `data-dt-name` attribute to the copy button. (APPDEV-16670)
|
|
1108
|
+
|
|
1109
|
+
#### DataTable
|
|
1110
|
+
|
|
1111
|
+
- Selecting text inside the table no longer triggers row activation. (APPDEV-16654)
|
|
1112
|
+
- The event passed to `onActiveRowChange` is now a `click` event (previously `pointerup`); middle mouse button clicks pass an `auxclick` event. (APPDEV-16654)
|
|
1113
|
+
- Scrollable tables now keep correct row heights when `lineWrap` is enabled and previously virtualized rows scroll back into view. (APPDEV-16699)
|
|
1114
|
+
- Added `data-dt-name` attributes to the toolbar line wrap button and the column line wrap action. (APPDEV-16670)
|
|
1115
|
+
- Columns no longer resize when hovering a header with column actions in a condensed or comfortable table. (APPDEV-16981)
|
|
1116
|
+
- Column widths for already measured columns are persisted when columns reference changes. This fixes an issue with columns not being rendered correctly, after the columns reference changed in a horizontally scrolled table. (APPDEV-16792)
|
|
1117
|
+
|
|
1118
|
+
#### DateTimePicker
|
|
1119
|
+
|
|
1120
|
+
- Added `data-dt-name` attributes to the button opening the calendar, and the calendar's header, day, month, year, and stepper buttons. (APPDEV-16671)
|
|
1121
|
+
- The relative `TimeValue` now supports spinning values with the `ArrowUp` and `ArrowDown` keys. Pressing `ArrowUp` increments the numeric part of the expression (e.g. `now-2h` → `now-1h`), and `ArrowDown` decrements it. (APPDEV-16136)
|
|
1122
|
+
|
|
1123
|
+
#### DonutChart
|
|
1124
|
+
|
|
1125
|
+
- `DonutChart` now supports behavioral tracking props. (APPDEV-16600)
|
|
1126
|
+
|
|
1127
|
+
#### DQLEditor
|
|
1128
|
+
|
|
1129
|
+
- Added `data-dt-name` attribute to autocomplete suggestion items and the "Learn more" link. (APPDEV-16670)
|
|
1130
|
+
|
|
1131
|
+
#### ExpandableText
|
|
1132
|
+
|
|
1133
|
+
- Added `data-dt-name` attributes to the show more and show less buttons. (APPDEV-16670)
|
|
1134
|
+
|
|
1135
|
+
#### FeatureHighlight
|
|
1136
|
+
|
|
1137
|
+
- Added `data-dt-name` attribute to the close button. (APPDEV-16670)
|
|
1138
|
+
|
|
1139
|
+
#### FilterBar
|
|
1140
|
+
|
|
1141
|
+
- `data-dt-name` attribute is now available on the "Add filter" button. (APPDEV-16603)
|
|
1142
|
+
|
|
1143
|
+
#### FilterField
|
|
1144
|
+
|
|
1145
|
+
- Fixed `onFilter` being incorrectly called when the clear button is clicked (APPDEV-16623)
|
|
1146
|
+
- Silently handle missing pinned or recent filter state instead of logging an error warning. (APPDEV-16875)
|
|
1147
|
+
- Suggestions are now automatically sorted by match relevance (`exact` → `starts-with` → `contains-middle` → `ends-with`). Key and value suggestions are sorted alphabetically or in ascending order within each group. Key and value suggestion sorting can be disabled by setting `sortSuggestions: false` on the `validatorMap`, keeping the original order of the suggestions while still sorting by relevance once the user starts typing. (APPDEV-15956)
|
|
1148
|
+
|
|
1149
|
+
#### GaugeChart
|
|
1150
|
+
|
|
1151
|
+
- `GaugeChart` now supports behavioral tracking props. (APPDEV-16600)
|
|
1152
|
+
|
|
1153
|
+
#### HelpMenu
|
|
1154
|
+
|
|
1155
|
+
- Added `data-dt-name` attributes to the menu trigger and icon. (APPDEV-16671)
|
|
1156
|
+
|
|
1157
|
+
#### HistogramChart
|
|
1158
|
+
|
|
1159
|
+
- `HistogramChart` now supports behavioral tracking properties (APPDEV-16515)
|
|
1160
|
+
- Now the prop `width` for the histogram accepts CSS string values (e.g., `"100%"`, `"500px"`) in addition to numeric values. (APPDEV-15226)
|
|
1161
|
+
|
|
1162
|
+
#### Menu
|
|
1163
|
+
|
|
1164
|
+
- Stop calling the SDK function `getIntentLink` twice when the `Menu.Intent` component is rendered. (PAPA-32034)
|
|
1165
|
+
|
|
1166
|
+
#### MessageContainer
|
|
1167
|
+
|
|
1168
|
+
- Due to a guideline change, using `MessageContainer.Title` as the sole content slot is no longer valid, every `MessageContainer` must now include a `MessageContainer.Description`. If you previously presented content using only `MessageContainer.Title`, move that content to `MessageContainer.Description` instead. If both a title and a description are appropriate, keep both slots. With this change, `Actions` now remain on the same line as the `Description` if they fit the available space; otherwise, they wrap to the next line. (APPDEV-12784)
|
|
1169
|
+
|
|
1170
|
+
#### MeterBarChart
|
|
1171
|
+
|
|
1172
|
+
- `MeterBarChart` now supports behavioral tracking props. (APPDEV-16600)
|
|
1173
|
+
|
|
1174
|
+
#### Microguide
|
|
1175
|
+
|
|
1176
|
+
- Added `data-dt-name` attributes to the close, back, next, and got it buttons. (APPDEV-16670)
|
|
1177
|
+
|
|
1178
|
+
#### Modal
|
|
1179
|
+
|
|
1180
|
+
- Added `data-dt-name` attribute to the close button. (APPDEV-16671)
|
|
1181
|
+
|
|
1182
|
+
#### MultiMeterBarChart
|
|
1183
|
+
|
|
1184
|
+
- `MultiMeterBarChart` now supports behavioral tracking props. (APPDEV-16600)
|
|
1185
|
+
|
|
1186
|
+
#### Page
|
|
1187
|
+
|
|
1188
|
+
- Added `data-dt-name` attributes to expand/collapse, open, and close buttons, as well as the resize handler of the sidebar and detail view panels. (APPDEV-16671)
|
|
1189
|
+
|
|
1190
|
+
#### PasswordInput
|
|
1191
|
+
|
|
1192
|
+
- Added `data-dt-name` attribute to the button for showing and hiding the password. (APPDEV-16671)
|
|
1193
|
+
|
|
1194
|
+
#### PieChart
|
|
1195
|
+
|
|
1196
|
+
- `PieChart` now supports behavioral tracking props. (APPDEV-16600)
|
|
1197
|
+
|
|
1198
|
+
#### ReleasePhaseIndicator
|
|
1199
|
+
|
|
1200
|
+
- Introduces the `ReleasePhaseIndicator` component. Use it to communicate the release phase of a feature by rendering a pre-configured `Chip` based on the `phase` prop (`'preview'`, `'new'`, or `'deprecated'`). (APPDEV-16670)
|
|
1201
|
+
|
|
1202
|
+
#### SegmentSelector
|
|
1203
|
+
|
|
1204
|
+
- `data-dt-name` attribute is now available on the following interactive elements: recent/pinned segments, clear all, apply, manage segments, pin/unpin, add segments, and remove segment buttons and "Learn more about segments" link. (APPDEV-16603)
|
|
1205
|
+
- The SegmentSelector doesn't close when deselecting a segment variable. (APPDEV-16678)
|
|
1206
|
+
|
|
1207
|
+
#### Select
|
|
1208
|
+
|
|
1209
|
+
- The `Select.Filter` input now has an `aria-label` set to comply with accessibility standards. (APPDEV-16713)
|
|
1210
|
+
- Added `data-dt-name` attribute to the "Select All" element. (APPDEV-16671)
|
|
1211
|
+
|
|
1212
|
+
#### TimeframeSelector
|
|
1213
|
+
|
|
1214
|
+
- The relative `TimeValue` now supports spinning values with the `ArrowUp` and `ArrowDown` keys. Pressing `ArrowUp` increments the numeric part of the expression (e.g. `now-2h` → `now-1h`), and `ArrowDown` decrements it. (APPDEV-16136)
|
|
1215
|
+
- After selecting a timeframe via the Calendar, the focus is now moved to the time input of the start date. (APPDEV-16131)
|
|
1216
|
+
- `data-dt-name` attribute is now available on the following interactive elements: recent/preset timeframes, steppers, calendar and apply buttons, and "Learn more" link. (APPDEV-16603)
|
|
1217
|
+
|
|
1218
|
+
#### TimeseriesChart
|
|
1219
|
+
|
|
1220
|
+
- `TimeseriesChart` now supports behavioral tracking properties (APPDEV-16515)
|
|
1221
|
+
- the `width` prop now accepts CSS unit strings like `"100%"` or `"500px"` in addition to numeric pixel values. (APPDEV-15225)
|
|
1222
|
+
|
|
1223
|
+
#### Toast
|
|
1224
|
+
|
|
1225
|
+
- Added `data-dt-name` attribute to the close button. (APPDEV-16671)
|
|
1226
|
+
|
|
1227
|
+
#### TreeMap
|
|
1228
|
+
|
|
1229
|
+
- `TreeMap` now supports behavioral tracking props. (APPDEV-16600)
|
|
1230
|
+
|
|
1231
|
+
#### XYChart
|
|
1232
|
+
|
|
1233
|
+
- `XYChart` now supports proper nice ticks for any unit format (APPDEV-16140)
|
|
1234
|
+
- `XYChart` now supports behavioral tracking properties (APPDEV-16515)
|
|
1235
|
+
- numerical axes with unit-converting formatters now produce round, human-readable tick values in the target unit as GiB (APPDEV-14514)
|
|
1236
|
+
|
|
1237
|
+
## 3.1.5
|
|
1238
|
+
|
|
1239
|
+
### Updates
|
|
1240
|
+
|
|
1241
|
+
#### FilterField
|
|
1242
|
+
|
|
1243
|
+
- Now catches pending promise rejections on the FilterField saveRecentFilters imperative handle. (APPDEV-17372)
|
|
1244
|
+
|
|
1245
|
+
## 3.1.4
|
|
1246
|
+
|
|
1247
|
+
### Updates
|
|
1248
|
+
|
|
1249
|
+
#### SegmentSelector
|
|
1250
|
+
|
|
1251
|
+
- The SegmentSelector doesn't close when deselecting a segment variable. (APPDEV-16678)
|
|
1252
|
+
|
|
1253
|
+
## 3.1.3
|
|
1254
|
+
|
|
1255
|
+
### Updates
|
|
1256
|
+
|
|
1257
|
+
#### DataTable
|
|
1258
|
+
|
|
1259
|
+
- Table no longer crashes due to the row virtualizer attempting to measure detached DOM elements. (APPDEV-16862)
|
|
1260
|
+
|
|
1261
|
+
## 3.1.2
|
|
1262
|
+
|
|
1263
|
+
### Updates
|
|
1264
|
+
|
|
1265
|
+
#### DataTable
|
|
1266
|
+
|
|
1267
|
+
- No longer spreads configuration props to DataTable DOM element.
|
|
1268
|
+
|
|
1269
|
+
## 3.1.1
|
|
1270
|
+
|
|
1271
|
+
### Updates
|
|
1272
|
+
|
|
1273
|
+
#### FilterField
|
|
1274
|
+
|
|
1275
|
+
- Reduce number of requests for recent and pinned filters. (APPDEV-16748)
|
|
1276
|
+
|
|
1277
|
+
## 3.1.0
|
|
1278
|
+
|
|
1279
|
+
### Dependency updates
|
|
1280
|
+
|
|
1281
|
+
- `@dynatrace/strato-icons` was updated to version `2.1.0`.
|
|
1282
|
+
|
|
1283
|
+
### Deprecations
|
|
1284
|
+
|
|
1285
|
+
#### AiLoadingIndicator
|
|
1286
|
+
|
|
1287
|
+
- The `aria-disabled` prop is deprecated, as the attribute is only intended for interactive elements.
|
|
1288
|
+
|
|
1289
|
+
#### DataTable
|
|
1290
|
+
|
|
1291
|
+
- Column type `date` is now deprecated. Use `datetime` instead. (APPDEV-4005)
|
|
1292
|
+
|
|
1293
|
+
- The `onDownloadData` on the `DataTable` element is now deprecated. Please use it via the `DataTable.DownloadData` toolbar slot instead. (APPDEV-16234)
|
|
1294
|
+
|
|
1295
|
+
#### TimeframeSelector
|
|
1296
|
+
|
|
1297
|
+
- The `_isSelected` prop on the `TimeframeSelector.PresetItem` slot is now deprecated. (APPDEV-16158)
|
|
1298
|
+
|
|
1299
|
+
### Updates
|
|
1300
|
+
|
|
1301
|
+
#### General
|
|
1302
|
+
|
|
1303
|
+
- All components in content, editors, notifications, tables and typography now expose `className`, `style`, `data-testid`, `data-dtrum-mask` and `data-dtrum-allow`. Additionally, all remaining props are forwarded to the root of the component. (APPDEV-16251)
|
|
1304
|
+
- Behavior tracking attributes are now supported in all components in content, tables, editors, notifications, and typography, as well as in the `Overlay` and `Tooltip` component. (APPDEV-16246)
|
|
1305
|
+
|
|
1306
|
+
#### Charts
|
|
1307
|
+
|
|
1308
|
+
- Applied a more performant width/height/truncation method to Honeycomb, Pie, Donut, Treemap, Sparkline, and Single Value. (APPDEV-15420)
|
|
1309
|
+
- The chart legend only shows an outline when the navigation is done via the keyboard. (APPDEV-16596)
|
|
1310
|
+
- Fixed magnifier to dynamically round values based on the value per pixel. (APPDEV-16624)
|
|
1311
|
+
|
|
1312
|
+
#### Overlays
|
|
1313
|
+
|
|
1314
|
+
- Possibly overlapping overlays are now closed when focusing the `FilterField`. (APPDEV-16114)
|
|
1315
|
+
|
|
1316
|
+
#### AnnotationsChart
|
|
1317
|
+
|
|
1318
|
+
- Fixed annotation marker symbols in the tooltip not being visible on dark theme. (APPDEV-16715)
|
|
1319
|
+
- Fixed an issue where icon symbols set via the `symbol` prop on the markers would disappear after programmatically changing `indicatorsDisplay` or any other prop that triggers a component re-render. (APPDEV-16647)
|
|
1320
|
+
|
|
1321
|
+
#### CategoricalBarChart
|
|
1322
|
+
|
|
1323
|
+
- The `width` prop now accepts CSS string values (e.g., `"100%"`, `"500px"`) in addition to numeric values.
|
|
1324
|
+
|
|
1325
|
+
#### convertToColumns
|
|
1326
|
+
|
|
1327
|
+
- Now maps `timestamp` and `timeframe` fields to `datetime` column type instead of the deprecated `date`. (APPDEV-4005)
|
|
1328
|
+
|
|
1329
|
+
#### DataTable
|
|
1330
|
+
|
|
1331
|
+
- Datetime columns now accept `date`, `time`, or `datetime` as shorthand `formatter` values, making it easy to show only the date or time portion without providing full `FormatDateOptions`. (APPDEV-4005)
|
|
1332
|
+
- The `scrollToRow` method now supports an additional `align` parameter (`start`, `center`, `end`) to control where the target row is positioned within the table’s visible area. Defaults to `start`. (APPDEV-14431)
|
|
1333
|
+
- The `onDownloadData` callback is now available on the `DataTable.DownloadData` toolbar slot. (APPDEV-16234)
|
|
1334
|
+
- Batch selection now handles changing data and selection across multiple tables correctly. (APPDEV-16683)
|
|
1335
|
+
- Sparkline columns allow configuration of the `xAxis`. (APPDEV-13820)
|
|
1336
|
+
- Adds `data-dt-name` tracking attributes to more interactive elements: sorting/ordering header cells and sorting icons, row selection and subrow expand/collapse buttons, column resize and row drag-and-drop handles, and column settings modal controls. (APPDEV-16589)
|
|
1337
|
+
- Pressing `Enter` on an interactive element within a row (e.g. a button) no longer activates or deactivates the row. This aligns keyboard behavior with mouse behavior. (APPDEV-16586)
|
|
1338
|
+
|
|
1339
|
+
#### DateTimePicker
|
|
1340
|
+
|
|
1341
|
+
- No longer shows a transition animation when navigating between date and time spin buttons so that the selection highlight switches instantly. (APPDEV-16135)
|
|
1342
|
+
|
|
1343
|
+
#### DonutChart
|
|
1344
|
+
|
|
1345
|
+
- `width` prop now accepts string values and the unit for the data accepts Unit type, SliceUnit deprecated. (APPDEV-15409)
|
|
1346
|
+
|
|
1347
|
+
#### FilterField
|
|
1348
|
+
|
|
1349
|
+
- The `validatorMap` now supports `displayValue` and `details` on keys and values, enabling richer suggestions with labels and descriptions. (APPDEV-16298)
|
|
1350
|
+
- All filter field suggestions are now flattened in the DOM to support virtualization for individual items of suggestion groups. A11y is still ensured using aria attributes to link items to groups. (APPDEV-10064)
|
|
1351
|
+
- Custom validation types can now be defined via the `customTypes` prop, allowing type-specific value constraints to be used in the `validatorMap`. (APPDEV-16028)
|
|
1352
|
+
- No longer incorrectly marks values inside an `in()` operator as invalid when the key is configured with a special type (e.g. `IPAddress`, `UID`, `Timestamp`, `SmartscapeId`) in the `validatorMap`. (APPDEV-16555)
|
|
1353
|
+
|
|
1354
|
+
#### FormField
|
|
1355
|
+
|
|
1356
|
+
- Validation now automatically updates when validation-related props (like `required`) change dynamically. (APPDEV-16103)
|
|
1357
|
+
|
|
1358
|
+
#### GaugeChart
|
|
1359
|
+
|
|
1360
|
+
- The `seriesActions` callback's `series` parameter type now includes `GaugeChartData` to reflect that the actual value passed at runtime can also be an object. (APPDEV-16790)
|
|
1361
|
+
- Tooltip hover area is now constrained to the visible gauge arc and labels, preventing the tooltip from appearing over empty space around the chart. (APPDEV-16692)
|
|
1362
|
+
- Now the GaugeChart supports units. (APPDEV-15935)
|
|
1363
|
+
|
|
1364
|
+
#### HoneycombChart
|
|
1365
|
+
|
|
1366
|
+
- HoneycombChart now supports behavioral tracking properties. (APPDEV-16377)
|
|
1367
|
+
|
|
1368
|
+
#### NumberInput
|
|
1369
|
+
|
|
1370
|
+
- `NumberInput` is now deprecated in favor of `NumberInputV2`.
|
|
1371
|
+
|
|
1372
|
+
#### NumberInputV2
|
|
1373
|
+
|
|
1374
|
+
- Introduce `NumberInputV2`. `NumberInputV2` aligns with the current forms architecture and delivers more consistent input behavior across Strato form controls.
|
|
1375
|
+
|
|
1376
|
+
API changes to consider when migrating:
|
|
1377
|
+
|
|
1378
|
+
- `min` and `max` now accept `number | undefined` (previously `number | string | undefined`).
|
|
1379
|
+
- Parsing/formatting is stricter and locale-aware, including intermediate input states and paste normalization.
|
|
1380
|
+
- `step` vs `stepMultiplier`: - `step` defines the valid value interval for validation and the base increment/decrement amount (for example `step={0.5}` only allows values aligned to `0.5` and steps by `0.5`). - `stepMultiplier` is a positive integer multiplied by `step` (or `1` if no `step` is set) to determine how much the value changes when using arrow keys, the scroll wheel, or the stepper buttons. - You can combine both: e.g. `step={0.5}` to validate allowed values and `stepMultiplier={4}` to increment/decrement by `2`. (APPDEV-3996)
|
|
1381
|
+
|
|
1382
|
+
#### Overlay
|
|
1383
|
+
|
|
1384
|
+
- Fixed empty `aria-labelledby` attribute being rendered when no label is provided, which violated accessibility guidelines. (APPDEV-16714)
|
|
1385
|
+
|
|
1386
|
+
#### PieChart
|
|
1387
|
+
|
|
1388
|
+
- `width` prop now accepts string values and the unit for the data accepts Unit type, SliceUnit deprecated. (APPDEV-15409)
|
|
1389
|
+
|
|
1390
|
+
#### Radio
|
|
1391
|
+
|
|
1392
|
+
- Remove redundant `aria-checked` attribute from native radio inputs to fix accessibility violation. (APPDEV-16711)
|
|
1393
|
+
|
|
1394
|
+
#### SegmentSelector
|
|
1395
|
+
|
|
1396
|
+
- Add default aria-label which is also shown in an empty compact SegmentSelector. (APPDEV-16433)
|
|
1397
|
+
|
|
1398
|
+
#### Select
|
|
1399
|
+
|
|
1400
|
+
- Select now has a `minWidth` set when `contentWidth` is `content` and a `Filter.Filter` is present, preventing the `SearchInput` from becoming too narrow. (APPDEV-16635)
|
|
1401
|
+
|
|
1402
|
+
#### SingleValue
|
|
1403
|
+
|
|
1404
|
+
- `SingleValue` now supports behavioral tracking properties. (APPDEV-16377)
|
|
1405
|
+
|
|
1406
|
+
#### SingleValueGrid
|
|
1407
|
+
|
|
1408
|
+
- `SingleValueGrid` now supports behavioral tracking properties. (APPDEV-16377)
|
|
1409
|
+
- `seriesActions` now receives the full data record for each item, including all custom fields, instead of only `value` and `label`. (APPDEV-16619)
|
|
1410
|
+
|
|
1411
|
+
#### Sparkline
|
|
1412
|
+
|
|
1413
|
+
- `Sparkline` now supports behavioral tracking properties. (APPDEV-16377) (APPDEV-16377)
|
|
1414
|
+
- Fixed a crash in Sparkline area charts where the canvas gradient fill would throw a SyntaxError when the browser returned an HSLA color string. (APPDEV-16726)
|
|
1415
|
+
|
|
1416
|
+
#### TimeframeSelector
|
|
1417
|
+
|
|
1418
|
+
- Recently used timeframes are now displayed in the overlay. (APPDEV-16158)
|
|
1419
|
+
- Fixed a race condition that could sporadically show `Start time must be before end time.` while typing in the end time field. (APPDEV-16690)
|
|
1420
|
+
- No longer shows a transition animation when navigating between date and time spin buttons so that the selection highlight switches instantly. (APPDEV-16135)
|
|
1421
|
+
- When applying a timeframe with one empty field, it is now filled with "Now". (APPDEV-16130)
|
|
1422
|
+
|
|
1423
|
+
#### ToggleButtonGroup
|
|
1424
|
+
|
|
1425
|
+
- Styles for `aria-disabled` are now correctly applied. (APPDEV-16682)
|
|
1426
|
+
|
|
1427
|
+
#### TreeMap
|
|
1428
|
+
|
|
1429
|
+
- ColorRules now work consistently regardless of `nameAccessor` value. (APPDEV-16559)
|
|
1430
|
+
- The `width` prop now accepts string or number and also added an unit prop. (APPDEV-15408)
|
|
1431
|
+
|
|
1432
|
+
#### XYChart
|
|
1433
|
+
|
|
1434
|
+
- `AreaSeries` is now available in the strato package. (APPDEV-15176)
|
|
1435
|
+
- The `width` prop now accepts CSS string values (e.g., `"100%"`, `"500px"`) in addition to numeric values.
|
|
1436
|
+
- Added legend filtering and actions for series and rect categorical interactions by default. (APPDEV-15180)
|
|
1437
|
+
- Fixed tooltip to show the topmost overlapping series instead of the first one. (APPDEV-16253)
|
|
1438
|
+
|
|
1439
|
+
## 3.0.3
|
|
1440
|
+
|
|
1441
|
+
### Updates
|
|
1442
|
+
|
|
1443
|
+
#### FilterField
|
|
1444
|
+
|
|
1445
|
+
- Now catches pending promise rejections on the FilterField saveRecentFilters imperative handle. (APPDEV-17372)
|
|
1446
|
+
|
|
1447
|
+
## 3.0.2
|
|
1448
|
+
|
|
1449
|
+
### Updates
|
|
1450
|
+
|
|
1451
|
+
#### DataTable
|
|
1452
|
+
|
|
1453
|
+
- Table no longer crashes due to the row virtualizer attempting to measure detached DOM elements. (APPDEV-16862)
|
|
1454
|
+
|
|
1455
|
+
## 3.0.0
|
|
1456
|
+
|
|
1457
|
+
### Breaking changes
|
|
1458
|
+
|
|
1459
|
+
#### Button
|
|
1460
|
+
|
|
1461
|
+
- Removed the deprecated `readOnly` property. (APPDEV-13937)
|
|
1462
|
+
|
|
1463
|
+
### Dependency updates
|
|
1464
|
+
|
|
1465
|
+
- `@dynatrace/strato-icons` was updated to version `2.0.0`.
|
|
1466
|
+
- Added `@dynatrace-sdk/units` as a peer dependency with version range `^1.5.0`. (APPDEV-10467)
|
|
1467
|
+
- Changed peerDependency version range for `@dynatrace-sdk/navigation` from `^1.3.0 || ^2.0.0` to `^2.1.0`. (APPDEV-10467)
|
|
1468
|
+
|
|
1469
|
+
### Updates
|
|
1470
|
+
|
|
1471
|
+
#### ToggleButtonGroup
|
|
1472
|
+
|
|
1473
|
+
- Fixed a react warning about missing keys on each child.
|
|
1474
|
+
|
|
1475
|
+
## 3.0.0-rc.0
|
|
1476
|
+
|
|
1477
|
+
## 1.18.0
|
|
1478
|
+
|
|
1479
|
+
### Dependency updates
|
|
1480
|
+
|
|
1481
|
+
- `@dynatrace/strato-icons` was updated to version `1.13.0`.
|
|
1482
|
+
|
|
1483
|
+
### Updates
|
|
1484
|
+
|
|
1485
|
+
#### General
|
|
1486
|
+
|
|
1487
|
+
- Fixed broken links in the documentation. (PRODUCT-9394)
|
|
1488
|
+
|
|
1489
|
+
## 1.17.0
|
|
1490
|
+
|
|
1491
|
+
### Updates
|
|
1492
|
+
|
|
1493
|
+
#### Core
|
|
1494
|
+
|
|
1495
|
+
- `useFocusRing` hook is now available to apply custom focus styles to components. (APPDEV-14256)
|
|
1496
|
+
|
|
1497
|
+
#### IntentButton
|
|
1498
|
+
|
|
1499
|
+
- Deprecated `IntentButtonProps` as they will be replaced by the `IntentButtonProps` from `strato-components-preview`.
|
|
1500
|
+
|
|
1501
|
+
## 1.16.1
|
|
1502
|
+
|
|
1503
|
+
### Updates
|
|
1504
|
+
|
|
1505
|
+
#### Core
|
|
1506
|
+
|
|
1507
|
+
- Adds the Behavioral Tracking Props interface to the API. (APPDEV-15861)
|
|
1508
|
+
|
|
1509
|
+
## 1.16.0
|
|
1510
|
+
|
|
1511
|
+
### Dependency updates
|
|
1512
|
+
|
|
1513
|
+
- `@dynatrace/strato-icons` was updated to version `1.12.0`.
|
|
1514
|
+
- `@dynatrace/strato-design-tokens` was updated to version `1.3.1`.
|
|
1515
|
+
|
|
1516
|
+
### Deprecations
|
|
1517
|
+
|
|
1518
|
+
#### IntentButton
|
|
1519
|
+
|
|
1520
|
+
- The `IntentButton` will be removed from this package. Use the `IntentButton` from `@dynatrace/strato-components-preview` instead. The preview version offers feature parity but introduces slight differences in the API. The `IntentButton` now accepts a configuration object. It also supports multiple intents. Configure additional intents using the `IntentButton.Item`. They're shown in a customisable `OpenWith` overlay component. (APPDEV-15713)
|
|
1521
|
+
|
|
1522
|
+
### Updates
|
|
1523
|
+
|
|
1524
|
+
#### ExternalLink
|
|
1525
|
+
|
|
1526
|
+
- Copying the link text no longer copies a zero width no-break space. (APPDEV-15655)
|
|
1527
|
+
- No longer overflows vertically or shows a scrollbar when used in flex layouts where the text’s line height equals its font size. (APPDEV-15678)
|
|
1528
|
+
|
|
1529
|
+
#### TextEllipsis
|
|
1530
|
+
|
|
1531
|
+
- The `Intl.Segmenter` will now be created only when needed and not on import. (APPDEV-15823)
|
|
1532
|
+
|
|
1533
|
+
## 1.15.0
|
|
1534
|
+
|
|
1535
|
+
### Dependency updates
|
|
1536
|
+
|
|
1537
|
+
- `@dynatrace/strato-icons` was updated to version `1.11.1`.
|
|
1538
|
+
- `@dynatrace/strato-design-tokens` was updated to version `1.3.0`.
|
|
1539
|
+
|
|
1540
|
+
### Updates
|
|
1541
|
+
|
|
1542
|
+
#### Highlight
|
|
1543
|
+
|
|
1544
|
+
- Now uses CSS Custom Highlight API instead of the `<mark>` HTML element. (APPDEV-14731)
|
|
1545
|
+
|
|
1546
|
+
## 1.14.0
|
|
1547
|
+
|
|
1548
|
+
### Dependency updates
|
|
1549
|
+
|
|
1550
|
+
- `@dynatrace/strato-icons` was updated to version `1.11.0`.
|
|
1551
|
+
|
|
1552
|
+
### Updates
|
|
1553
|
+
|
|
1554
|
+
#### AppRoot
|
|
1555
|
+
|
|
1556
|
+
- Added `translationsRootPath` to props of `AppRoot` to configure language resource path. (APPDEV-15400)
|
|
1557
|
+
|
|
1558
|
+
#### ExternalLink
|
|
1559
|
+
|
|
1560
|
+
- Now respects custom `textDecoration` styles. (APPDEV-15438)
|
|
1561
|
+
|
|
1562
|
+
#### Link
|
|
1563
|
+
|
|
1564
|
+
- Now respects custom `textDecoration` styles. (APPDEV-15438)
|
|
1565
|
+
|
|
1566
|
+
## 1.13.0
|
|
1567
|
+
|
|
1568
|
+
### Dependency updates
|
|
1569
|
+
|
|
1570
|
+
- `@dynatrace/strato-design-tokens` was updated to version `1.2.0`.
|
|
1571
|
+
- `@dynatrace/strato-icons` was updated to version `1.10.0`.
|
|
1572
|
+
|
|
1573
|
+
## 1.12.0
|
|
1574
|
+
|
|
1575
|
+
### Dependency updates
|
|
1576
|
+
|
|
1577
|
+
- `@dynatrace/strato-design-tokens` was updated to version `1.1.4`.
|
|
1578
|
+
- `@dynatrace/strato-icons` was updated to version `1.9.0`.
|
|
1579
|
+
- Changed peerDependency version range for `@dynatrace-sdk/units` from `^1.0.2` to `^1.3.1`. (APPDEV-14636)
|
|
1580
|
+
|
|
1581
|
+
### Updates
|
|
1582
|
+
|
|
1583
|
+
#### General
|
|
1584
|
+
|
|
1585
|
+
- Slowed animation timings for the `ProgressBar`, `ProgressCircle`, `Skeleton`, and `SkeletonText` components. (APPDEV-14758)
|
|
1586
|
+
|
|
1587
|
+
#### Skeleton
|
|
1588
|
+
|
|
1589
|
+
- Improved animations. (APPDEV-14760)
|
|
1590
|
+
|
|
1591
|
+
#### SkeletonText
|
|
1592
|
+
|
|
1593
|
+
- Improved animations. (APPDEV-14760)
|
|
1594
|
+
|
|
1595
|
+
## 1.11.0
|
|
1596
|
+
|
|
1597
|
+
### Dependency updates
|
|
1598
|
+
|
|
1599
|
+
- `@dynatrace/strato-design-tokens` was updated to version `1.1.3`.
|
|
1600
|
+
- `@dynatrace/strato-icons` was updated to version `1.8.0`.
|
|
1601
|
+
|
|
1602
|
+
### Updates
|
|
1603
|
+
|
|
1604
|
+
#### General
|
|
1605
|
+
|
|
1606
|
+
- A `useId` hook is now provided, allowing css-ident safe IDs to be generated. (APPDEV-14808)
|
|
1607
|
+
|
|
1608
|
+
#### AppRoot
|
|
1609
|
+
|
|
1610
|
+
- The look and feel of scrollbars in Firefox is now aligned with the experience in Chrome.
|
|
1611
|
+
|
|
1612
|
+
#### Link
|
|
1613
|
+
|
|
1614
|
+
- The underline now appears correctly based on whether the link is focused via keyboard. (APPDEV-14816)
|
|
1615
|
+
|
|
1616
|
+
## 1.10.0
|
|
1617
|
+
|
|
1618
|
+
### Dependency updates
|
|
1619
|
+
|
|
1620
|
+
- `@dynatrace/strato-icons` was updated to version `1.7.0`.
|
|
1621
|
+
- `@dynatrace/strato-design-tokens` was updated to version `1.1.2`.
|
|
1622
|
+
|
|
1623
|
+
## 1.9.2
|
|
1624
|
+
|
|
1625
|
+
### General
|
|
1626
|
+
|
|
1627
|
+
- Unicode ranges for Roboto fallback are now removed.
|
|
1628
|
+
|
|
1629
|
+
## 1.9.1
|
|
1630
|
+
|
|
1631
|
+
:::note Dependency updates
|
|
1632
|
+
|
|
1633
|
+
- `@dynatrace/strato-icons` was updated to version `1.6.1`.
|
|
1634
|
+
- `@dynatrace/strato-design-tokens` was updated to version `1.1.1`.
|
|
1635
|
+
|
|
1636
|
+
:::
|
|
1637
|
+
|
|
1638
|
+
### General
|
|
1639
|
+
|
|
1640
|
+
- Font definitions are now directly added to the apps css bundle.
|
|
1641
|
+
|
|
1642
|
+
### ExternalLink
|
|
1643
|
+
|
|
1644
|
+
- The underline of the link is now displayed correctly based on whether it is focused via keyboard. (APPDEV-14521)
|
|
1645
|
+
|
|
1646
|
+
## 1.9.0
|
|
1647
|
+
|
|
1648
|
+
### FocusScope
|
|
1649
|
+
|
|
1650
|
+
- The prop `data-testid` can now be set on the component. (APPDEV-13925)
|
|
1651
|
+
|
|
1652
|
+
## 1.8.1
|
|
1653
|
+
|
|
1654
|
+
### TextEllipsis
|
|
1655
|
+
|
|
1656
|
+
- When `truncationMode` is set to `start`, punctuation characters are now rendered correctly at the start of the string. (APPDEV-14072)
|
|
1657
|
+
|
|
1658
|
+
## 1.8.0
|
|
1659
|
+
|
|
1660
|
+
:::note Dependency updates
|
|
1661
|
+
|
|
1662
|
+
- `@dynatrace/strato-design-tokens` was updated to version `1.1.0`.
|
|
1663
|
+
- `@dynatrace/strato-icons` was updated to version `1.6.0`.
|
|
1664
|
+
|
|
1665
|
+
:::
|
|
1666
|
+
|
|
1667
|
+
## 1.7.3
|
|
1668
|
+
|
|
1669
|
+
### Typography
|
|
1670
|
+
|
|
1671
|
+
- Removes canvas from DOM. (APPDEV-13639)
|
|
1672
|
+
|
|
1673
|
+
## 1.7.2
|
|
1674
|
+
|
|
1675
|
+
### Typography
|
|
1676
|
+
|
|
1677
|
+
- Removed canvas from DOM. (APPDEV-13639)
|
|
1678
|
+
|
|
1679
|
+
## 1.7.1
|
|
1680
|
+
|
|
1681
|
+
:::note Dependency updates
|
|
1682
|
+
|
|
1683
|
+
- `@dynatrace/strato-icons` was updated to version `1.5.1`.
|
|
1684
|
+
|
|
1685
|
+
:::
|
|
1686
|
+
|
|
1687
|
+
## 1.7.0
|
|
1688
|
+
|
|
1689
|
+
### Core
|
|
1690
|
+
|
|
1691
|
+
- Removed internal `_isStringChildren`, `_useId`, `_uuidv4`, and `_mulberry32` utility. (APPDEV-12775)
|
|
1692
|
+
|
|
1693
|
+
### TextEllipsis
|
|
1694
|
+
|
|
1695
|
+
- `truncationMode="middle"` now fully supports emoji characters. (APPDEV-13186)
|
|
1696
|
+
- `TruncationMode` is now available as a public type. (APPDEV-12065)
|
|
1697
|
+
|
|
1698
|
+
## 1.6.2
|
|
1699
|
+
|
|
1700
|
+
### Core
|
|
1701
|
+
|
|
1702
|
+
- Add internal `_isStringChildren`, `_useId`, `_uuidv4`, and `_mulberry32` back for 1.6.x compatibility. (APPDEV-13282)
|
|
1703
|
+
|
|
1704
|
+
## 1.6.1
|
|
1705
|
+
|
|
1706
|
+
- Documentation update
|
|
1707
|
+
|
|
1708
|
+
## 1.6.0
|
|
1709
|
+
|
|
1710
|
+
:::note Dependency updates
|
|
1711
|
+
|
|
1712
|
+
- Changed peerDependency version range for `@dynatrace-sdk/navigation` from `^1.3.0` to `^1.3.0 || ^2.0.0`.
|
|
1713
|
+
- `@dynatrace/strato-icons` was updated to version `1.5.0`.
|
|
1714
|
+
|
|
1715
|
+
:::
|
|
1716
|
+
|
|
1717
|
+
## 1.5.0
|
|
1718
|
+
|
|
1719
|
+
:::note Dependency updates
|
|
1720
|
+
|
|
1721
|
+
- Changed peerDependency version range for `react-intl` from `^6.0.8` to `^6.0.8 || ^7.0.0`.
|
|
1722
|
+
- `@dynatrace/strato-design-tokens` was updated to version `1.0.1`.
|
|
1723
|
+
- `@dynatrace/strato-icons` was updated to version `1.4.0`.
|
|
1724
|
+
|
|
1725
|
+
:::
|
|
1726
|
+
|
|
1727
|
+
### Button
|
|
1728
|
+
|
|
1729
|
+
- Hover animation was updated to be more responsive. (APPDEV-12827)
|
|
1730
|
+
|
|
1731
|
+
### Highlight
|
|
1732
|
+
|
|
1733
|
+
- Now preserves whitespace around the highlighted term. (APPDEV-12895)
|
|
1734
|
+
|
|
1735
|
+
### TextEllipsis
|
|
1736
|
+
|
|
1737
|
+
- When `truncationMode` is set to `start`, punctuation characters are now rendered correctly at the end of the string. (APPDEV-12900)
|
|
1738
|
+
|
|
1739
|
+
## 1.4.0
|
|
1740
|
+
|
|
1741
|
+
:::note Dependency updates
|
|
1742
|
+
|
|
1743
|
+
- `@dynatrace/strato-icons` was updated to version `1.3.0`.
|
|
1744
|
+
|
|
1745
|
+
:::
|
|
1746
|
+
|
|
1747
|
+
### Highlight
|
|
1748
|
+
|
|
1749
|
+
- Added support for using `FormattedMessage` within the `Highlight` component. (APPDEV-12687)
|
|
1750
|
+
- Highlighted text reflows correctly when wrapped inside a smaller container. (APPDEV-12666)
|
|
1751
|
+
|
|
1752
|
+
## 1.3.0
|
|
1753
|
+
|
|
1754
|
+
:::note Dependency updates
|
|
1755
|
+
|
|
1756
|
+
- `@dynatrace/strato-icons` was updated to version `1.2.0`.
|
|
1757
|
+
|
|
1758
|
+
:::
|
|
1759
|
+
|
|
1760
|
+
## 1.2.0
|
|
1761
|
+
|
|
1762
|
+
### Highlight
|
|
1763
|
+
|
|
1764
|
+
- Whitespaces are preserved when the `Highlight` component is rendered inside an element styled with `display: 'flex'`. (APPDEV-12362)
|
|
1765
|
+
|
|
1766
|
+
### Surface
|
|
1767
|
+
|
|
1768
|
+
- Now uses correct selected border with a 2px transparent gap. (APPDEV-11985)
|
|
1769
|
+
|
|
1770
|
+
## 1.1.0
|
|
1771
|
+
|
|
1772
|
+
:::note Dependency updates
|
|
1773
|
+
|
|
1774
|
+
- `@dynatrace/strato-icons` was updated to version `1.1.0`.
|
|
1775
|
+
|
|
1776
|
+
:::
|
|
1777
|
+
|
|
1778
|
+
### TextEllipsis
|
|
1779
|
+
|
|
1780
|
+
- Text with ellipsis with `truncationMode="middle"` can grow when resizing. (APPDEV-11597)
|
|
1781
|
+
|
|
1782
|
+
## 1.0.0
|
|
1783
|
+
|
|
1784
|
+
:::caution Breaking changes
|
|
1785
|
+
|
|
1786
|
+
**General**
|
|
1787
|
+
|
|
1788
|
+
- Removed deprecated testing subpackage. Please use the `@dynatrace/strato-components-testing` package now. (APPDEV-9460)
|
|
1789
|
+
|
|
1790
|
+
In the new package we are no longer re-exporting parts of the `@testing-library` package. This means you'll have to import functions like `screen`, `userEvent`, `act`, `waitFor` etc directly from `@testing-library` and its subpackages.
|
|
1791
|
+
|
|
1792
|
+
The `render` function is still exported in the testing package, as it makes testing strato components easier.
|
|
1793
|
+
|
|
1794
|
+
For more information on how to setup and use `@dynatrace/strato-components-testing` please look into package's readme.
|
|
1795
|
+
|
|
1796
|
+
**Core**
|
|
1797
|
+
|
|
1798
|
+
- `roleVariants` and `RoleVariantType` are now removed, as they are no longer used. (APPDEV-11235)
|
|
1799
|
+
|
|
1800
|
+
**ProgressBar**
|
|
1801
|
+
|
|
1802
|
+
- Removed the `variant` prop, as the color and variant are now derived from the container. The color can still be overwritten with the `color` prop.(APPDEV-11668)
|
|
1803
|
+
|
|
1804
|
+
**ProgressCircle**
|
|
1805
|
+
|
|
1806
|
+
- Removed the `variant` prop, as the color and variant are now derived from the container. The color can still be overwritten with the `color` prop.(APPDEV-11668)
|
|
1807
|
+
|
|
1808
|
+
:::
|
|
1809
|
+
|
|
1810
|
+
:::note Dependency updates
|
|
1811
|
+
|
|
1812
|
+
- Changed peerDependency version range for `@dynatrace-sdk/app-environment` from `^1.0.0` to `^1.1.0`. (APPDEV-11243)
|
|
1813
|
+
- Changed peerDependency version range for `@dynatrace-sdk/navigation` from `^1.2.1` to `^1.3.0`. (APPDEV-11243)
|
|
1814
|
+
- Changed peerDependency version range for `@dynatrace-sdk/error-handlers` from `^1.0.0` to `^1.3.1`. (APPDEV-11243)
|
|
1815
|
+
- Changed peerDependency version range for `@dynatrace-sdk/user-preferences` from `^1.1.0` to `^1.1.1`. (APPDEV-11243)
|
|
1816
|
+
- `@dynatrace/strato-design-tokens` was updated to version `1.0.0`.
|
|
1817
|
+
- `@dynatrace/strato-icons` was updated to version `1.0.0`.
|
|
1818
|
+
|
|
1819
|
+
:::
|
|
1820
|
+
|
|
1821
|
+
## 0.85.120
|
|
1822
|
+
|
|
1823
|
+
### TextEllipsis
|
|
1824
|
+
|
|
1825
|
+
- Text now displays correctly in Firefox when the parent container has `max-width: max-content`. (APPDEV-12006)
|
|
1826
|
+
|
|
1827
|
+
## 0.85.110
|
|
1828
|
+
|
|
1829
|
+
:::note Deprecations
|
|
1830
|
+
|
|
1831
|
+
**Button**
|
|
1832
|
+
|
|
1833
|
+
- Deprecated `readOnly` prop, please use `disabled` instead. (APPDEV-11549)
|
|
1834
|
+
|
|
1835
|
+
:::
|
|
1836
|
+
|
|
1837
|
+
### General
|
|
1838
|
+
|
|
1839
|
+
- `useBreakpoint` hook now has better SSR support.
|
|
1840
|
+
|
|
1841
|
+
### Content
|
|
1842
|
+
|
|
1843
|
+
- `ProgressBar` and `ProgressCircle` now inherit the `Container`'s color, if used inside it.
|
|
1844
|
+
|
|
1845
|
+
### Core
|
|
1846
|
+
|
|
1847
|
+
- Added `FocusScope` component. (APPDEV-11591)
|
|
1848
|
+
|
|
1849
|
+
## 0.85.100
|
|
1850
|
+
|
|
1851
|
+
:::note Dependency updates
|
|
1852
|
+
|
|
1853
|
+
- `@dynatrace/strato-icons` was updated to version `0.39.4`.
|
|
1854
|
+
|
|
1855
|
+
:::
|
|
1856
|
+
|
|
1857
|
+
:::note Deprecations
|
|
1858
|
+
|
|
1859
|
+
**Content**
|
|
1860
|
+
|
|
1861
|
+
- Deprecated the `variant` prop from `ProgressBarProps` and `ProgressCircleProps`, which will be removed in favor of the `color` prop.
|
|
1862
|
+
|
|
1863
|
+
**Core**
|
|
1864
|
+
|
|
1865
|
+
- Deprecated the `RoleVariantType`, which will be removed. You can use `'neutral' | 'primary' | 'success' | 'warning' | 'critical'` instead, as the `onAccent` option will be dropped.
|
|
1866
|
+
|
|
1867
|
+
:::
|
|
1868
|
+
|
|
1869
|
+
### Typography
|
|
1870
|
+
|
|
1871
|
+
- CSS text ellipsis from a wrapping element is now correctly applied to the `Link` and `ExternalLink` component. (APPDEV-11491)
|
|
1872
|
+
|
|
1873
|
+
## 0.85.90
|
|
1874
|
+
|
|
1875
|
+
:::note Dependency updates
|
|
1876
|
+
|
|
1877
|
+
- Added `@dynatrace/strato-design-tokens` as a peer dependency with version range `~0.20.0`.
|
|
1878
|
+
- Added `@dynatrace/strato-icons` as a peer dependency with version range `~0.39.0`.
|
|
1879
|
+
|
|
1880
|
+
:::
|
|
1881
|
+
|
|
1882
|
+
### General
|
|
1883
|
+
|
|
1884
|
+
- Moved `@dynatrace/strato-design-tokens` and `@dynatrace/strato-icons` to peerDependencies and relaxed the version range. (APPDEV-9911)
|
|
1885
|
+
- Classnames for components now contain a version number to avoid conflicts if apps happen to have more than one version of the design system running.
|
|
1886
|
+
|
|
1887
|
+
## 0.85.80
|
|
1888
|
+
|
|
1889
|
+
### ExternalLink
|
|
1890
|
+
|
|
1891
|
+
- The `ExternalLink`'s icon now remains on the same line as its preceding word, even when there are line breaks.
|
|
1892
|
+
|
|
1893
|
+
### IntentButton
|
|
1894
|
+
|
|
1895
|
+
- Now accepts `ReactNode` as children instead of only strings.
|
|
1896
|
+
|
|
1897
|
+
### TextEllipsis
|
|
1898
|
+
|
|
1899
|
+
- Now `onTextOverflow` is also called when `TextEllipsis` is used inside another component that already handles text truncation.
|
|
1900
|
+
|
|
1901
|
+
## 0.85.70
|
|
1902
|
+
|
|
1903
|
+
:::note Deprecations
|
|
1904
|
+
|
|
1905
|
+
**General**
|
|
1906
|
+
|
|
1907
|
+
- Testing subpackage exports are now marked as deprecated. Please use `@dynatrace/strato-components-testing` instead.
|
|
1908
|
+
|
|
1909
|
+
:::
|
|
1910
|
+
|
|
1911
|
+
## 0.85.60
|
|
1912
|
+
|
|
1913
|
+
:::note Dependency updates
|
|
1914
|
+
|
|
1915
|
+
- `@dynatrace/strato-icons` was updated to version `0.39.3`.
|
|
1916
|
+
|
|
1917
|
+
:::
|
|
1918
|
+
|
|
1919
|
+
## 0.85.50
|
|
1920
|
+
|
|
1921
|
+
### Typography
|
|
1922
|
+
|
|
1923
|
+
- `Heading` and `Paragraph` now inherit their color from their container by default.
|
|
1924
|
+
|
|
1925
|
+
## 0.85.41
|
|
1926
|
+
|
|
1927
|
+
### Layouts
|
|
1928
|
+
|
|
1929
|
+
- Annotate exported styles accordingly.
|
|
1930
|
+
|
|
1931
|
+
## 0.85.40
|
|
1932
|
+
|
|
1933
|
+
### General
|
|
1934
|
+
|
|
1935
|
+
- Added missing vanilla-extract dependencies to the package.
|
|
1936
|
+
|
|
1937
|
+
### Button
|
|
1938
|
+
|
|
1939
|
+
- Displays number `0` when used as child.
|
|
1940
|
+
|
|
1941
|
+
## 0.85.32
|
|
1942
|
+
|
|
1943
|
+
- Documentation update
|
|
1944
|
+
|
|
1945
|
+
## 0.85.31
|
|
1946
|
+
|
|
1947
|
+
:::note Dependency updates
|
|
1948
|
+
|
|
1949
|
+
- Added missing vanilla-extract dependencies to the package.
|
|
1950
|
+
|
|
1951
|
+
:::
|
|
1952
|
+
|
|
1953
|
+
## 0.85.30
|
|
1954
|
+
|
|
1955
|
+
:::note Dependency updates
|
|
1956
|
+
|
|
1957
|
+
- `@dynatrace/strato-icons` was updated to version `0.39.2`.
|
|
1958
|
+
|
|
1959
|
+
:::
|
|
1960
|
+
|
|
1961
|
+
### UseBreakpoint
|
|
1962
|
+
|
|
1963
|
+
- `useBreakpoint` has been moved from `@dynatrace/strato-components-preview/core` to `@dynatrace/strato-components/layouts` and a migration script has been provided.
|
|
1964
|
+
|
|
1965
|
+
## 0.85.21
|
|
1966
|
+
|
|
1967
|
+
- Documentation update
|
|
1968
|
+
|
|
1969
|
+
## 0.85.20
|
|
1970
|
+
|
|
1971
|
+
### IntentButton
|
|
1972
|
+
|
|
1973
|
+
- `IntentButton` has been moved from `@dynatrace/strato-components-preview/buttons` to `@dynatrace/strato-components/buttons`. The `iconOnly` prop has been removed. To display only the icon, leave the label empty.
|
|
1974
|
+
|
|
1975
|
+
### Skeleton
|
|
1976
|
+
|
|
1977
|
+
- `Skeleton` has been moved from `@dynatrace/strato-components-preview/layouts-core` to `@dynatrace/strato-components/content` and a migration script has been provided.
|
|
1978
|
+
|
|
1979
|
+
### SkeletonText
|
|
1980
|
+
|
|
1981
|
+
- `SkeletonText` has been moved from `@dynatrace/strato-components-preview/layouts-core` to `@dynatrace/strato-components/content` and a migration script has been provided.
|
|
1982
|
+
|
|
1983
|
+
### Surface
|
|
1984
|
+
|
|
1985
|
+
- `Surface` has been moved from `@dynatrace/strato-components-preview/layouts-core` to `@dynatrace/strato-components/layouts` and a migration script has been provided.
|
|
1986
|
+
|
|
1987
|
+
## 0.85.11
|
|
1988
|
+
|
|
1989
|
+
- Documentation update
|
|
1990
|
+
|
|
1991
|
+
## 0.85.10
|
|
1992
|
+
|
|
1993
|
+
:::note Dependency updates
|
|
1994
|
+
|
|
1995
|
+
- `@dynatrace/strato-icons` was updated to version `0.39.1`.
|
|
1996
|
+
- `@dynatrace/strato-design-tokens` was updated to version `0.20.40`.
|
|
1997
|
+
|
|
1998
|
+
:::
|
|
1999
|
+
|
|
2000
|
+
### Button
|
|
2001
|
+
|
|
2002
|
+
- `Button` has been moved from `@dynatrace/strato-components-preview/buttons` to `@dynatrace/strato-components/buttons` and a migration script has been provided.
|
|
2003
|
+
|
|
2004
|
+
## 0.85.0
|
|
2005
|
+
|
|
2006
|
+
:::caution Breaking changes
|
|
2007
|
+
|
|
2008
|
+
**General**
|
|
2009
|
+
|
|
2010
|
+
- Drop react 17 support.
|
|
2011
|
+
- Drop @testing-library/react 12 support.
|
|
2012
|
+
- Drop @testing-library/user-event 13 support.
|
|
2013
|
+
|
|
2014
|
+
:::
|
|
2015
|
+
|
|
2016
|
+
:::note Dependency updates
|
|
2017
|
+
|
|
2018
|
+
- `@dynatrace/strato-icons` was updated to version `0.39.0`.
|
|
2019
|
+
|
|
2020
|
+
:::
|
|
2021
|
+
|
|
2022
|
+
### General
|
|
2023
|
+
|
|
2024
|
+
- Add @testing-library/react 15 support.
|
|
2025
|
+
|
|
2026
|
+
## 0.84.51
|
|
2027
|
+
|
|
2028
|
+
### General
|
|
2029
|
+
|
|
2030
|
+
- Content subpackage is now exported from the `@dynatrace/strato-components` entrypoint.
|
|
2031
|
+
|
|
2032
|
+
## 0.84.50
|
|
2033
|
+
|
|
2034
|
+
:::note Dependency updates
|
|
2035
|
+
|
|
2036
|
+
- `@dynatrace/strato-icons` was updated to version `0.38.0`.
|
|
2037
|
+
|
|
2038
|
+
:::
|
|
2039
|
+
|
|
2040
|
+
### Container
|
|
2041
|
+
|
|
2042
|
+
- `Container` has been moved from `@dynatrace/strato-components-preview/layouts-core` to `@dynatrace/strato-components/layouts` and a migration script has been provided.
|
|
2043
|
+
|
|
2044
|
+
### Flex
|
|
2045
|
+
|
|
2046
|
+
- `Flex` has been moved from `@dynatrace/strato-components-preview/layouts-core` to `@dynatrace/strato-components/layouts` and a migration script has been provided.
|
|
2047
|
+
|
|
2048
|
+
### Grid
|
|
2049
|
+
|
|
2050
|
+
- `Grid` has been moved from `@dynatrace/strato-components-preview/layouts-core` to `@dynatrace/strato-components/layouts` and a migration script has been provided.
|
|
2051
|
+
|
|
2052
|
+
### ProgressBar, ProgressCircle
|
|
2053
|
+
|
|
2054
|
+
- `ProgressBar` and `ProgressCircle` have been moved from `@dynatrace/strato-components-preview/core` to `@dynatrace/strato-components/content` and a migration script has been provided.
|
|
2055
|
+
|
|
2056
|
+
## 0.84.42
|
|
2057
|
+
|
|
2058
|
+
- Documentation update
|
|
2059
|
+
|
|
2060
|
+
## 0.84.41
|
|
2061
|
+
|
|
2062
|
+
- Documentation update
|
|
2063
|
+
|
|
2064
|
+
## 0.84.40
|
|
2065
|
+
|
|
2066
|
+
:::note Dependency updates
|
|
2067
|
+
|
|
2068
|
+
- `@dynatrace/strato-design-tokens` was updated to version `0.20.30`.
|
|
2069
|
+
|
|
2070
|
+
:::
|
|
2071
|
+
|
|
2072
|
+
### Typography
|
|
2073
|
+
|
|
2074
|
+
- Typography is migrated from `@dynatrace/strato-components-preview/typography` to `@dynatrace/strato-components/typography` and a migration script has been provided.
|
|
2075
|
+
|
|
2076
|
+
### Divider
|
|
2077
|
+
|
|
2078
|
+
- Divider has been moved from `@dynatrace/strato-components-preview/typography` to `@dynatrace/strato-components/layouts` and a migration script has been provided.
|
|
2079
|
+
|
|
2080
|
+
## 0.84.31
|
|
2081
|
+
|
|
2082
|
+
- Documentation update
|
|
2083
|
+
|
|
2084
|
+
## 0.84.30
|
|
2085
|
+
|
|
2086
|
+
:::note Dependency updates
|
|
2087
|
+
|
|
2088
|
+
- `@dynatrace/strato-design-tokens` was updated to version `0.20.20`.
|
|
2089
|
+
|
|
2090
|
+
:::
|
|
2091
|
+
|
|
2092
|
+
## 0.84.21
|
|
2093
|
+
|
|
2094
|
+
- Documentation update
|
|
2095
|
+
|
|
2096
|
+
## 0.84.20
|
|
2097
|
+
|
|
2098
|
+
## 0.84.12
|
|
2099
|
+
|
|
2100
|
+
- Documentation update
|
|
2101
|
+
|
|
2102
|
+
## 0.84.11
|
|
2103
|
+
|
|
2104
|
+
:::note Dependency updates
|
|
2105
|
+
|
|
2106
|
+
- `@dynatrace/strato-design-tokens` was updated to version `0.20.10`.
|
|
2107
|
+
- `@dynatrace/strato-icons` was updated to version `0.37.0`.
|
|
2108
|
+
|
|
2109
|
+
:::
|
|
2110
|
+
|
|
2111
|
+
### AppRoot
|
|
2112
|
+
|
|
2113
|
+
- `AppRoot` component was moved from `@dynatrace/strato-components-preview`.
|