@dynatrace/strato-components 3.7.2 → 3.8.3

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.
Files changed (2527) hide show
  1. package/CHANGELOG.md +2137 -0
  2. package/buttons/button/Button.css +15 -15
  3. package/buttons/button/Button.d.ts +2 -1
  4. package/buttons/button/Button.js +5 -4
  5. package/buttons/button/Button.sty.js +4 -4
  6. package/buttons/intent-button/IntentButton.css +1 -1
  7. package/buttons/intent-button/IntentButton.sty.js +1 -1
  8. package/buttons/intent-button/IntentButtonWithResponse.js +2 -2
  9. package/buttons/notify-button/NotifyButton.css +2 -2
  10. package/buttons/notify-button/NotifyButton.sty.js +2 -2
  11. package/buttons/run-query-button/RunQueryButton.js +6 -13
  12. package/charts/categorical-bar/components/interactions/hooks/useSeriesActionClickHandler.js +7 -1
  13. package/charts/categorical-bar/components/interactions/overlays/CategoricalBarChartInspectOverlay.css +2 -2
  14. package/charts/categorical-bar/components/interactions/overlays/CategoricalBarChartInspectOverlay.sty.js +2 -2
  15. package/charts/categorical-bar/hooks/store/state-setters.d.ts +2 -2
  16. package/charts/categorical-bar/hooks/store/state-setters.js +3 -1
  17. package/charts/categorical-bar/layout/CategoricalGridLayout.js +1 -2
  18. package/charts/core/components/annotations/AnnotationsAtom.css +1 -1
  19. package/charts/core/components/annotations/AnnotationsAtom.sty.js +1 -1
  20. package/charts/core/components/annotations/components/canvas/AnnotationsCanvasLayout.css +1 -1
  21. package/charts/core/components/annotations/components/canvas/AnnotationsCanvasLayout.sty.js +1 -1
  22. package/charts/core/components/annotations/components/canvas/utils/calculate-marker-width-and-content.js +1 -2
  23. package/charts/core/components/annotations/components/overlays/AnnotationsOverlays.css +1 -1
  24. package/charts/core/components/annotations/components/overlays/AnnotationsOverlays.sty.js +1 -1
  25. package/charts/core/components/annotations/components/overlays/AnnotationsScrollWrapper.css +1 -1
  26. package/charts/core/components/annotations/components/overlays/AnnotationsScrollWrapper.sty.js +1 -1
  27. package/charts/core/components/annotations/utils/aggregate-markers-coords.js +19 -2
  28. package/charts/core/components/annotations/utils/resolve-value-marker-hit-area.d.ts +3 -0
  29. package/charts/core/components/annotations/utils/resolve-value-marker-hit-area.js +32 -0
  30. package/charts/core/components/axes/Axis.css +1 -1
  31. package/charts/core/components/axes/Axis.js +2 -5
  32. package/charts/core/components/axes/Axis.sty.js +1 -1
  33. package/charts/core/components/axes/AxisPrimitive.d.ts +31 -0
  34. package/charts/core/components/axes/AxisPrimitive.js +221 -0
  35. package/charts/core/components/axes/components/CategoryBottomAxis.js +3 -3
  36. package/charts/core/components/axes/components/CategoryLeftAxis.js +2 -2
  37. package/charts/core/components/axes/components/PanningControls/PanningControls.css +16 -16
  38. package/charts/core/components/axes/components/PanningControls/PanningControls.sty.js +2 -2
  39. package/charts/core/components/axes/components/TickLabel.d.ts +1 -1
  40. package/charts/core/components/axes/components/TimeTableHeaderAxis.js +2 -2
  41. package/charts/core/components/axes/components/ValueTableHeaderAxis.js +2 -2
  42. package/charts/core/components/axes/constants.d.ts +0 -1
  43. package/charts/core/components/axes/constants.js +0 -2
  44. package/charts/core/components/axes/types.d.ts +50 -3
  45. package/charts/core/components/axes/utils/get-tick-label-props.d.ts +1 -23
  46. package/charts/core/components/axes/utils/get-tick-label-props.js +45 -4
  47. package/charts/core/components/chart-grid/ChartGrid.css +3 -3
  48. package/charts/core/components/chart-grid/ChartGrid.sty.js +3 -3
  49. package/charts/core/components/chart-grid/constants.d.ts +23 -0
  50. package/charts/core/components/chart-grid/constants.js +33 -0
  51. package/charts/core/components/chart-layout/components/styles.css +15 -15
  52. package/charts/core/components/chart-layout/components/styles.sty.js +4 -4
  53. package/charts/core/components/chart-states/ChartState.css +4 -4
  54. package/charts/core/components/chart-states/ChartState.sty.js +4 -4
  55. package/charts/core/components/crosshair/HorizontalCrosshair.js +6 -4
  56. package/charts/core/components/crosshair/VerticalCrosshair.js +7 -5
  57. package/charts/core/components/crosshair/components/Magnifier.css +7 -7
  58. package/charts/core/components/crosshair/components/Magnifier.sty.js +7 -7
  59. package/charts/core/components/grid/Grid.d.ts +5 -2
  60. package/charts/core/components/grid/Grid.js +1 -4
  61. package/charts/core/components/grid/GridColumns.d.ts +6 -3
  62. package/charts/core/components/grid/GridColumns.js +9 -7
  63. package/charts/core/components/grid/GridLine.d.ts +15 -5
  64. package/charts/core/components/grid/GridLine.js +5 -4
  65. package/charts/core/components/grid/GridLines.d.ts +2 -2
  66. package/charts/core/components/grid/GridRows.d.ts +6 -3
  67. package/charts/core/components/grid/GridRows.js +9 -7
  68. package/charts/core/components/grid/utils/compute-grid-lines.d.ts +3 -0
  69. package/charts/core/components/grid/utils/compute-grid-lines.js +35 -0
  70. package/charts/core/components/grid/utils/should-highlight-zero-line.d.ts +2 -2
  71. package/charts/core/components/interactions-overlay/InteractionsOverlay.css +5 -5
  72. package/charts/core/components/interactions-overlay/InteractionsOverlay.sty.js +2 -2
  73. package/charts/core/components/legend/categorical/ChartLegend.css +1 -1
  74. package/charts/core/components/legend/categorical/ChartLegend.sty.js +1 -1
  75. package/charts/core/components/legend/categorical/components/ChartLegendIcon/ChartLegendIcon.css +3 -3
  76. package/charts/core/components/legend/categorical/components/ChartLegendIcon/ChartLegendIcon.sty.js +3 -3
  77. package/charts/core/components/legend/categorical/components/ChartLegendItem/ChartLegendItem.css +17 -17
  78. package/charts/core/components/legend/categorical/components/ChartLegendItem/ChartLegendItem.sty.js +6 -6
  79. package/charts/core/components/legend/categorical/components/ChartLegendSeriesActions/ChartLegendSeriesActions.css +3 -3
  80. package/charts/core/components/legend/categorical/components/ChartLegendSeriesActions/ChartLegendSeriesActions.sty.js +1 -1
  81. package/charts/core/components/legend/categorical/components/ChartVirtualizedLegendGrid.css +8 -8
  82. package/charts/core/components/legend/categorical/components/ChartVirtualizedLegendGrid.sty.js +4 -4
  83. package/charts/core/components/legend/range/RangeLegend.css +3 -3
  84. package/charts/core/components/legend/range/RangeLegend.sty.js +1 -1
  85. package/charts/core/components/legend/range/components/RangeLegendBoundaryLabel/RangeLegendBoundaryLabel.css +2 -2
  86. package/charts/core/components/legend/range/components/RangeLegendBoundaryLabel/RangeLegendBoundaryLabel.sty.js +1 -1
  87. package/charts/core/components/legend/range/components/RangeLegendItemLabel/RangeLegendItemLabel.css +1 -1
  88. package/charts/core/components/legend/range/components/RangeLegendItemLabel/RangeLegendItemLabel.sty.js +1 -1
  89. package/charts/core/components/legend/range/components/RangeLegendItemMarker/RangeLegendItemMarker.css +3 -3
  90. package/charts/core/components/legend/range/components/RangeLegendItemMarker/RangeLegendItemMarker.sty.js +1 -1
  91. package/charts/core/components/legend/range/components/RangeLegendMarkers/RangeLegendMarkers.css +3 -3
  92. package/charts/core/components/legend/range/components/RangeLegendMarkers/RangeLegendMarkers.sty.js +1 -1
  93. package/charts/core/components/legend/range/components/RangeLegendSegments/RangeLegendSegments.css +5 -5
  94. package/charts/core/components/legend/range/components/RangeLegendSegments/RangeLegendSegments.sty.js +1 -1
  95. package/charts/core/components/loader-overlay/LoaderOverlay.css +2 -2
  96. package/charts/core/components/loader-overlay/LoaderOverlay.sty.js +2 -2
  97. package/charts/core/components/overlay-tooltip/components/DynamicTooltip.js +7 -3
  98. package/charts/core/components/overlay-tooltip/components/TooltipPortal.js +7 -1
  99. package/charts/core/components/overlay-tooltip/components/global-actions/actions.css +4 -4
  100. package/charts/core/components/overlay-tooltip/components/global-actions/actions.sty.js +2 -2
  101. package/charts/core/components/overlay-tooltip/components/header/Header.css +6 -6
  102. package/charts/core/components/overlay-tooltip/components/header/Header.sty.js +6 -6
  103. package/charts/core/components/overlay-tooltip/components/series/seriesSymbol.css +2 -2
  104. package/charts/core/components/overlay-tooltip/components/series/seriesSymbol.sty.js +2 -2
  105. package/charts/core/components/overlay-tooltip/tooltip.css +52 -52
  106. package/charts/core/components/overlay-tooltip/tooltip.sty.js +39 -39
  107. package/charts/core/components/overlay-tooltip/useTooltipActions.js +8 -0
  108. package/charts/core/components/overlay-tooltip/utils/is-scroll-ignored.d.ts +2 -0
  109. package/charts/core/components/overlay-tooltip/utils/is-scroll-ignored.js +28 -0
  110. package/charts/core/components/overlays/ChartOverlaysBorder.css +5 -5
  111. package/charts/core/components/overlays/ChartOverlaysBorder.sty.js +5 -5
  112. package/charts/core/components/selection-area/SelectionArea.css +9 -9
  113. package/charts/core/components/selection-area/SelectionArea.sty.js +4 -4
  114. package/charts/core/components/series-action/ChartActionsMenuAsync.js +3 -1
  115. package/charts/core/components/shape/BubbleShape/BubbleShape.css +5 -5
  116. package/charts/core/components/shape/BubbleShape/BubbleShape.sty.js +3 -3
  117. package/charts/core/components/shape/EmojiShape/EmojiShape.css +3 -3
  118. package/charts/core/components/shape/EmojiShape/EmojiShape.sty.js +1 -1
  119. package/charts/core/components/shape/IconShape/IconShape.css +3 -3
  120. package/charts/core/components/shape/IconShape/IconShape.sty.js +1 -1
  121. package/charts/core/components/shape/styles/DataPointShape.css +8 -8
  122. package/charts/core/components/shape/styles/DataPointShape.sty.js +4 -4
  123. package/charts/core/components/shared-chart-interactions/SharedChartInteractions.css +1 -1
  124. package/charts/core/components/shared-chart-interactions/SharedChartInteractions.sty.js +1 -1
  125. package/charts/core/components/single-value-renderer/SingleValueRenderer.css +5 -5
  126. package/charts/core/components/single-value-renderer/SingleValueRenderer.sty.js +5 -5
  127. package/charts/core/components/single-value-renderer/components/ContentGrid.css +1 -1
  128. package/charts/core/components/single-value-renderer/components/ContentGrid.sty.js +1 -1
  129. package/charts/core/components/single-value-renderer/components/Icon.css +3 -3
  130. package/charts/core/components/single-value-renderer/components/Icon.sty.js +2 -2
  131. package/charts/core/components/single-value-renderer/components/Label.css +1 -1
  132. package/charts/core/components/single-value-renderer/components/Label.sty.js +1 -1
  133. package/charts/core/components/single-value-renderer/components/SingleValueToolbar.css +1 -1
  134. package/charts/core/components/single-value-renderer/components/SingleValueToolbar.js +0 -1
  135. package/charts/core/components/single-value-renderer/components/SingleValueToolbar.sty.js +1 -1
  136. package/charts/core/components/single-value-renderer/components/Value.css +5 -5
  137. package/charts/core/components/single-value-renderer/components/Value.sty.js +3 -3
  138. package/charts/core/components/single-value-renderer/components/trend/Trend.css +3 -3
  139. package/charts/core/components/single-value-renderer/components/trend/Trend.sty.js +3 -3
  140. package/charts/core/components/single-value-renderer/components/trend/components/Icon.css +2 -2
  141. package/charts/core/components/single-value-renderer/components/trend/components/Icon.sty.js +1 -1
  142. package/charts/core/components/sparkline-display/Sparkline.css +6 -6
  143. package/charts/core/components/sparkline-display/Sparkline.sty.js +2 -2
  144. package/charts/core/components/sparkline-display/SparklineContainer.js +6 -4
  145. package/charts/core/components/text-ellipsis/ChartTextEllipsis.css +7 -7
  146. package/charts/core/components/text-ellipsis/ChartTextEllipsis.sty.js +3 -3
  147. package/charts/core/components/threshold-bar/indicators/ThresholdIndicator.js +40 -21
  148. package/charts/core/components/threshold-bar/markers/CircleMarker.js +1 -2
  149. package/charts/core/components/threshold-bar/markers/PillMarker.js +1 -2
  150. package/charts/core/components/threshold-bar/styles.css +9 -9
  151. package/charts/core/components/threshold-bar/styles.sty.js +2 -2
  152. package/charts/core/components/toolbar/ChartToolbarRenderer.css +16 -16
  153. package/charts/core/components/toolbar/ChartToolbarRenderer.js +16 -6
  154. package/charts/core/components/toolbar/ChartToolbarRenderer.sty.js +8 -8
  155. package/charts/core/components/toolbar/components/ChartDataMenu.css +2 -2
  156. package/charts/core/components/toolbar/components/ChartDataMenu.sty.js +1 -1
  157. package/charts/core/components/toolbar/components/Control.css +17 -17
  158. package/charts/core/components/toolbar/components/Control.sty.js +5 -5
  159. package/charts/core/components/toolbar/components/ToolbarMenu.css +4 -4
  160. package/charts/core/components/toolbar/components/ToolbarMenu.sty.js +2 -2
  161. package/charts/core/components/toolbar/types.d.ts +4 -2
  162. package/charts/core/components/tooltip/ChartTooltip/ChartTooltip.css +6 -6
  163. package/charts/core/components/tooltip/ChartTooltip/ChartTooltip.sty.js +2 -2
  164. package/charts/core/components/tooltip/ChartTooltip/components/ActionItem/ActionItem.css +8 -8
  165. package/charts/core/components/tooltip/ChartTooltip/components/ActionItem/ActionItem.sty.js +3 -3
  166. package/charts/core/components/tooltip/ChartTooltip/components/SeriesItem/SeriesItem.css +2 -2
  167. package/charts/core/components/tooltip/ChartTooltip/components/SeriesItem/SeriesItem.sty.js +1 -1
  168. package/charts/core/components/tooltip/ChartTooltip/components/TimeFrameHeader/TimeFrameHeader.css +1 -1
  169. package/charts/core/components/tooltip/ChartTooltip/components/TimeFrameHeader/TimeFrameHeader.sty.js +1 -1
  170. package/charts/core/components/tooltip/InteractiveChartTooltip/components/BasicChartTooltip/BasicChartTooltip.css +6 -6
  171. package/charts/core/components/tooltip/InteractiveChartTooltip/components/BasicChartTooltip/BasicChartTooltip.sty.js +2 -2
  172. package/charts/core/components/tooltip/InteractiveChartTooltip/components/InteractiveChartTooltip.css +7 -7
  173. package/charts/core/components/tooltip/InteractiveChartTooltip/components/InteractiveChartTooltip.sty.js +6 -6
  174. package/charts/core/components/tooltip/InteractiveChartTooltip/headers/HeaderTooltip.css +1 -1
  175. package/charts/core/components/tooltip/InteractiveChartTooltip/headers/HeaderTooltip.sty.js +1 -1
  176. package/charts/core/components/tooltip/section-components/TooltipFooter/TooltipFooter.css +1 -1
  177. package/charts/core/components/tooltip/section-components/TooltipFooter/TooltipFooter.sty.js +1 -1
  178. package/charts/core/components/tooltip/section-components/TooltipHeader/TooltipHeader.css +2 -2
  179. package/charts/core/components/tooltip/section-components/TooltipHeader/TooltipHeader.sty.js +1 -1
  180. package/charts/core/components/tooltip/section-components/TooltipInfoContent/TooltipInfoContent.css +1 -1
  181. package/charts/core/components/tooltip/section-components/TooltipInfoContent/TooltipInfoContent.sty.js +1 -1
  182. package/charts/core/components/tooltip/section-components/TooltipItem/TooltipItem.css +3 -3
  183. package/charts/core/components/tooltip/section-components/TooltipItem/TooltipItem.sty.js +2 -2
  184. package/charts/core/components/tooltip/section-components/TooltipSymbolContent/TooltipSymbolContent.css +1 -1
  185. package/charts/core/components/tooltip/section-components/TooltipSymbolContent/TooltipSymbolContent.sty.js +1 -1
  186. package/charts/core/components/tooltip/section-components/VirtualizedTooltipBody/VirtualizedTooltipBody.css +2 -2
  187. package/charts/core/components/tooltip/section-components/VirtualizedTooltipBody/VirtualizedTooltipBody.sty.js +2 -2
  188. package/charts/core/components/tooltip/shared/styles/SeriesBasedContent.css +12 -12
  189. package/charts/core/components/tooltip/shared/styles/SeriesBasedContent.sty.js +7 -7
  190. package/charts/core/components/tooltip/shared/styles/TooltipBody.css +1 -1
  191. package/charts/core/components/tooltip/shared/styles/TooltipBody.sty.js +1 -1
  192. package/charts/core/components/tooltip-atoms/components/HeaderChipAtom/HeaderChipAtom.css +1 -1
  193. package/charts/core/components/tooltip-atoms/components/HeaderChipAtom/HeaderChipAtom.sty.js +1 -1
  194. package/charts/core/components/tooltip-atoms/components/styles.css +4 -4
  195. package/charts/core/components/tooltip-atoms/components/styles.sty.js +4 -4
  196. package/charts/core/components/zoom/ZoomCursors.css +2 -2
  197. package/charts/core/components/zoom/ZoomCursors.sty.js +3 -3
  198. package/charts/core/constants.d.ts +7 -0
  199. package/charts/core/constants.js +2 -0
  200. package/charts/core/hooks/useOverlayEventHandlers.d.ts +10 -11
  201. package/charts/core/hooks/useOverlayEventHandlers.js +40 -20
  202. package/charts/core/hooks/usePointerAndScrollResponsiveChartBounds.js +1 -1
  203. package/charts/core/hooks/useThrottledCallbackOnScroll.d.ts +1 -1
  204. package/charts/core/types/chart-data.d.ts +13 -0
  205. package/charts/core/types/chart-data.js +15 -0
  206. package/charts/core/types/text-size.d.ts +7 -0
  207. package/charts/core/types/text-size.js +15 -0
  208. package/charts/core/typographyStyles.css +1 -1
  209. package/charts/core/typographyStyles.sty.js +1 -1
  210. package/charts/core/utils/formatter-by-ticks.d.ts +4 -5
  211. package/charts/core/utils/formatter-by-ticks.js +4 -4
  212. package/charts/core/utils/text-measure.d.ts +34 -0
  213. package/charts/{tree-map → core}/utils/text-measure.js +19 -19
  214. package/charts/gantt-chart/GanttChartLine.css +1 -1
  215. package/charts/gantt-chart/GanttChartLine.sty.js +1 -1
  216. package/charts/gantt-chart/components/GanttChartLineRenderer.css +1 -1
  217. package/charts/gantt-chart/components/GanttChartLineRenderer.js +1 -2
  218. package/charts/gantt-chart/components/GanttChartLineRenderer.sty.js +1 -1
  219. package/charts/gantt-chart/components/tooltip/GanttChartTooltip.css +1 -1
  220. package/charts/gantt-chart/components/tooltip/GanttChartTooltip.sty.js +1 -1
  221. package/charts/gauge/components/GaugeChartLayout/GaugeChartLayout.css +1 -1
  222. package/charts/gauge/components/GaugeChartLayout/GaugeChartLayout.sty.js +1 -1
  223. package/charts/gauge/components/GaugeChartLayout/GaugeChartToolbar.d.ts +2 -0
  224. package/charts/gauge/components/GaugeChartLayout/GaugeChartToolbar.js +2 -2
  225. package/charts/gauge/components/GaugeLabel/GaugeLabel.css +6 -6
  226. package/charts/gauge/components/GaugeLabel/GaugeLabel.sty.js +3 -3
  227. package/charts/gauge/components/GaugeLabelsWrapper/GaugeLabelsWrapper.css +3 -3
  228. package/charts/gauge/components/GaugeLabelsWrapper/GaugeLabelsWrapper.sty.js +1 -1
  229. package/charts/gauge/components/GaugeLayoutOverlay/GaugeLayoutOverlay.css +4 -4
  230. package/charts/gauge/components/GaugeLayoutOverlay/GaugeLayoutOverlay.js +27 -2
  231. package/charts/gauge/components/GaugeLayoutOverlay/GaugeLayoutOverlay.sty.js +3 -3
  232. package/charts/gauge/components/GaugeResponsiveLabel/GaugeResponsiveLabel.css +2 -2
  233. package/charts/gauge/components/GaugeResponsiveLabel/GaugeResponsiveLabel.sty.js +2 -2
  234. package/charts/histogram/HistogramChart.d.ts +3 -3
  235. package/charts/histogram/HistogramChart.js +4 -5
  236. package/charts/histogram/HistogramChartInternal.js +20 -11
  237. package/charts/histogram/components/axes/HistogramValueBottomAxisArea/HistogramValueBottomAxisArea.css +1 -1
  238. package/charts/histogram/components/axes/HistogramValueBottomAxisArea/HistogramValueBottomAxisArea.sty.js +1 -1
  239. package/charts/histogram/components/overlays/HistogramExplore/HistogramTooltip.css +1 -1
  240. package/charts/histogram/components/overlays/HistogramExplore/HistogramTooltip.sty.js +1 -1
  241. package/charts/histogram/components/overlays/HistogramOverlays.css +2 -2
  242. package/charts/histogram/components/overlays/HistogramOverlays.sty.js +2 -2
  243. package/charts/honeycomb/HoneycombChart.css +1 -1
  244. package/charts/honeycomb/HoneycombChart.js +6 -3
  245. package/charts/honeycomb/HoneycombChart.sty.js +1 -1
  246. package/charts/honeycomb/components/HiveOverlay.css +1 -1
  247. package/charts/honeycomb/components/HiveOverlay.js +2 -10
  248. package/charts/honeycomb/components/HiveOverlay.sty.js +1 -1
  249. package/charts/honeycomb/components/canvas/HiveCanvasLayout.css +1 -1
  250. package/charts/honeycomb/components/canvas/HiveCanvasLayout.sty.js +1 -1
  251. package/charts/honeycomb/components/canvas/renderers/CanvasCircleRenderer.js +7 -2
  252. package/charts/honeycomb/components/canvas/renderers/CanvasHexagonRenderer.js +9 -5
  253. package/charts/honeycomb/components/canvas/renderers/CanvasSquareRenderer.js +7 -2
  254. package/charts/honeycomb/components/canvas/utils/draw-label-and-value.d.ts +2 -1
  255. package/charts/honeycomb/components/canvas/utils/draw-label-and-value.js +100 -20
  256. package/charts/honeycomb/components/canvas/utils/get-font-sizes.d.ts +5 -0
  257. package/charts/honeycomb/components/canvas/utils/get-font-sizes.js +52 -0
  258. package/charts/honeycomb/components/canvas/utils/get-truncation-method.d.ts +3 -1
  259. package/charts/honeycomb/components/canvas/utils/get-truncation-method.js +78 -8
  260. package/charts/honeycomb/components/canvas/utils/measure-node-text-content.d.ts +2 -1
  261. package/charts/honeycomb/components/canvas/utils/measure-node-text-content.js +13 -16
  262. package/charts/honeycomb/components/canvas/utils/render-text-to-canvas.d.ts +1 -1
  263. package/charts/honeycomb/components/canvas/utils/render-text-to-canvas.js +2 -2
  264. package/charts/honeycomb/components/canvas/utils/set-font-details-to-context.d.ts +1 -1
  265. package/charts/honeycomb/components/canvas/utils/set-font-details-to-context.js +11 -9
  266. package/charts/honeycomb/components/toolbar/HoneycombToolbar.js +1 -3
  267. package/charts/honeycomb/constants.d.ts +8 -4
  268. package/charts/honeycomb/constants.js +17 -13
  269. package/charts/honeycomb/context/honeycomb-color-scheme.context.d.ts +1 -1
  270. package/charts/honeycomb/context/honeycomb-filtered-color-scheme.context.d.ts +1 -1
  271. package/charts/honeycomb/context/honeycomb-text-size.context.d.ts +2 -0
  272. package/charts/{core/components/toolbar/utils/estimate-toolbar-width.js → honeycomb/context/honeycomb-text-size.context.js} +8 -15
  273. package/charts/honeycomb/hooks/use-honeycomb-chart-config.js +6 -1
  274. package/charts/honeycomb/hooks/use-honeycomb-color-scheme.context.d.ts +1 -1
  275. package/charts/honeycomb/hooks/use-honeycomb-filtered-color-scheme.d.ts +1 -1
  276. package/charts/honeycomb/hooks/use-honeycomb-text-size.d.ts +1 -0
  277. package/charts/honeycomb/hooks/use-honeycomb-text-size.js +25 -0
  278. package/charts/honeycomb/hooks/use-overlay-events.d.ts +4 -5
  279. package/charts/honeycomb/hooks/use-overlay-events.js +4 -7
  280. package/charts/honeycomb/store/selectors.d.ts +0 -1
  281. package/charts/honeycomb/store/selectors.js +0 -2
  282. package/charts/honeycomb/store/store.d.ts +1 -2
  283. package/charts/honeycomb/store/store.js +0 -13
  284. package/charts/honeycomb/types/honeycomb-config-properties.d.ts +8 -1
  285. package/charts/honeycomb/types/honeycomb-internal.d.ts +4 -1
  286. package/charts/honeycomb/types/honeycomb.d.ts +53 -10
  287. package/charts/honeycomb/types/state.d.ts +0 -4
  288. package/charts/honeycomb/types/state.js +0 -3
  289. package/charts/honeycomb/utils/build-honeycomb-config.d.ts +3 -2
  290. package/charts/honeycomb/utils/build-honeycomb-config.js +17 -4
  291. package/charts/honeycomb/utils/normalize-honeycomb-chart-data.d.ts +17 -0
  292. package/charts/honeycomb/utils/normalize-honeycomb-chart-data.js +39 -0
  293. package/charts/index.d.ts +6 -4
  294. package/charts/meter-bar/shared/components/meter-bar-layout/MeterBarLayout.css +15 -15
  295. package/charts/meter-bar/shared/components/meter-bar-layout/MeterBarLayout.sty.js +10 -10
  296. package/charts/meter-bar/shared/components/meter-bar-layout/slots/Icon/Icon.css +2 -2
  297. package/charts/meter-bar/shared/components/meter-bar-layout/slots/Icon/Icon.sty.js +1 -1
  298. package/charts/meter-bar/shared/components/meter-bar-layout/slots/Label/Label.css +1 -1
  299. package/charts/meter-bar/shared/components/meter-bar-layout/slots/Label/Label.sty.js +1 -1
  300. package/charts/meter-bar/shared/components/meter-bar-layout/slots/Max/Max.css +1 -1
  301. package/charts/meter-bar/shared/components/meter-bar-layout/slots/Max/Max.sty.js +1 -1
  302. package/charts/meter-bar/shared/components/meter-bar-layout/slots/Min/Min.css +1 -1
  303. package/charts/meter-bar/shared/components/meter-bar-layout/slots/Min/Min.sty.js +1 -1
  304. package/charts/meter-bar/shared/components/meter-bar-layout/slots/Value/Value.css +1 -1
  305. package/charts/meter-bar/shared/components/meter-bar-layout/slots/Value/Value.sty.js +1 -1
  306. package/charts/meter-bar/shared/components/meter-bar-plot/MeterBarPlot.css +1 -1
  307. package/charts/meter-bar/shared/components/meter-bar-plot/MeterBarPlot.sty.js +1 -1
  308. package/charts/meter-bar/shared/styles/element-size.css +4 -4
  309. package/charts/meter-bar/shared/styles/element-size.sty.js +1 -1
  310. package/charts/meter-bar/shared/styles.css +1 -1
  311. package/charts/meter-bar/shared/styles.sty.js +1 -1
  312. package/charts/meter-bar/single-meter-bar/components/MeterBarChartThresholds/MeterBarChartThresholds.css +1 -1
  313. package/charts/meter-bar/single-meter-bar/components/MeterBarChartThresholds/MeterBarChartThresholds.sty.js +1 -1
  314. package/charts/pie/DonutChart.d.ts +2 -3
  315. package/charts/pie/DonutChart.js +6 -13
  316. package/charts/pie/PieChart.d.ts +2 -3
  317. package/charts/pie/PieChart.js +8 -15
  318. package/charts/pie/components/InnerWrapper/components/InnerContainer/InnerContainer.css +1 -1
  319. package/charts/pie/components/InnerWrapper/components/InnerContainer/InnerContainer.sty.js +1 -1
  320. package/charts/pie/components/InnerWrapper/components/InnerDonut/InnerDonut.css +1 -1
  321. package/charts/pie/components/InnerWrapper/components/InnerDonut/InnerDonut.sty.js +1 -1
  322. package/charts/pie/components/PieChartOverlays/PieChartOverlays.css +1 -1
  323. package/charts/pie/components/PieChartOverlays/PieChartOverlays.js +3 -3
  324. package/charts/pie/components/PieChartOverlays/PieChartOverlays.sty.js +1 -1
  325. package/charts/pie/components/PieChartPlot/PieChartPlot.css +1 -1
  326. package/charts/pie/components/PieChartPlot/PieChartPlot.js +59 -54
  327. package/charts/pie/components/PieChartPlot/PieChartPlot.sty.js +1 -1
  328. package/charts/pie/components/PieChartSlice.js +15 -11
  329. package/charts/pie/constants.d.ts +1 -0
  330. package/charts/pie/constants.js +2 -0
  331. package/charts/pie/context/ChartConfigContext.d.ts +1 -0
  332. package/charts/pie/hooks/useNormalizedPieData.d.ts +7 -0
  333. package/charts/pie/hooks/useNormalizedPieData.js +38 -0
  334. package/charts/pie/hooks/useOverlayHandlers.d.ts +3 -2
  335. package/charts/pie/hooks/useOverlayHandlers.js +7 -5
  336. package/charts/pie/hooks/useSliceHandlers.d.ts +4 -3
  337. package/charts/pie/hooks/useSliceHandlers.js +29 -3
  338. package/charts/pie/types/pie-chart.config.d.ts +102 -37
  339. package/charts/pie/utils/group-slices-thinner-than-pad-angle.js +2 -1
  340. package/charts/pie/utils/normalize-pie-data.d.ts +29 -0
  341. package/charts/pie/utils/normalize-pie-data.js +38 -0
  342. package/charts/pie/utils/pie-config.js +2 -1
  343. package/charts/pie/utils/sanitize-toolbar-intents.d.ts +2 -0
  344. package/charts/{tree-map/hooks/useSetOverlayState.js → pie/utils/sanitize-toolbar-intents.js} +9 -18
  345. package/charts/single-value/SingleValue.css +1 -1
  346. package/charts/single-value/SingleValue.sty.js +1 -1
  347. package/charts/single-value-grid/SingleValueGrid.css +2 -2
  348. package/charts/single-value-grid/SingleValueGrid.sty.js +1 -1
  349. package/charts/single-value-grid/components/GlobalFontSizeVariables.css +1 -1
  350. package/charts/single-value-grid/components/GlobalFontSizeVariables.sty.js +1 -1
  351. package/charts/timeseries/TimeseriesChart.d.ts +1 -1
  352. package/charts/timeseries/TimeseriesChartInternal.d.ts +4 -0
  353. package/charts/timeseries/TimeseriesChartInternal.js +40 -21
  354. package/charts/timeseries/components/axes/TimeseriesTimeBottomAxisArea/TimeseriesTimeBottomAxisArea.css +2 -2
  355. package/charts/timeseries/components/axes/TimeseriesTimeBottomAxisArea/TimeseriesTimeBottomAxisArea.sty.js +1 -1
  356. package/charts/timeseries/components/overlays/TimeseriesOverlays.css +4 -4
  357. package/charts/timeseries/components/overlays/TimeseriesOverlays.sty.js +4 -4
  358. package/charts/timeseries/components/thresholds/ThresholdIndicators.css +2 -2
  359. package/charts/timeseries/components/thresholds/ThresholdIndicators.sty.js +2 -2
  360. package/charts/top-list/TopList.css +1 -1
  361. package/charts/top-list/TopList.js +9 -5
  362. package/charts/top-list/TopList.sty.js +1 -1
  363. package/charts/top-list/constants.d.ts +1 -4
  364. package/charts/top-list/constants.js +2 -1
  365. package/charts/top-list/types/top-list.d.ts +6 -0
  366. package/charts/tree-map/TreeMap.d.ts +2 -3
  367. package/charts/tree-map/TreeMap.js +10 -1
  368. package/charts/tree-map/components/TreeMapChartLayout.js +4 -4
  369. package/charts/tree-map/components/TreeMapLegend/TreeMapCategoricalLegend.js +3 -1
  370. package/charts/tree-map/components/TreeMapOverlay/TreeMapOverlay.css +1 -1
  371. package/charts/tree-map/components/TreeMapOverlay/TreeMapOverlay.js +2 -10
  372. package/charts/tree-map/components/TreeMapOverlay/TreeMapOverlay.sty.js +1 -1
  373. package/charts/tree-map/components/TreeMapToolbar/TreeMapToolbar.js +2 -4
  374. package/charts/tree-map/components/canvas/TreeMapSquareRenderer.js +4 -2
  375. package/charts/tree-map/constants.d.ts +4 -2
  376. package/charts/tree-map/constants.js +1 -2
  377. package/charts/tree-map/context/TextSizeContext.d.ts +3 -2
  378. package/charts/tree-map/hooks/useOverlayHandlers.d.ts +4 -5
  379. package/charts/tree-map/hooks/useOverlayHandlers.js +4 -7
  380. package/charts/tree-map/hooks/useTreeMapChartConfig.d.ts +2 -2
  381. package/charts/tree-map/hooks/useTreeMapChartHandlers.js +4 -1
  382. package/charts/tree-map/providers/TreeMapChartProviders.d.ts +2 -1
  383. package/charts/tree-map/providers/TreeMapChartProviders.js +1 -1
  384. package/charts/tree-map/store/selectors.d.ts +0 -1
  385. package/charts/tree-map/store/selectors.js +1 -3
  386. package/charts/tree-map/store/store.js +0 -3
  387. package/charts/tree-map/types/state.d.ts +0 -3
  388. package/charts/tree-map/types/treemap.d.ts +27 -10
  389. package/charts/tree-map/utils/build-labels.d.ts +1 -1
  390. package/charts/tree-map/utils/build-tree-map-chart-config.d.ts +2 -2
  391. package/charts/tree-map/utils/get-legend-interaction-props.d.ts +1 -1
  392. package/charts/tree-map/utils/get-legend-interaction-props.js +2 -2
  393. package/charts/tree-map/utils/to-hierarchical-props.d.ts +2 -0
  394. package/charts/tree-map/utils/to-hierarchical-props.js +106 -0
  395. package/charts/xy-chart/XYChart.js +22 -12
  396. package/charts/xy-chart/XYChartRoot.js +4 -2
  397. package/charts/xy-chart/components/axes/AxisArea.css +1 -1
  398. package/charts/xy-chart/components/axes/AxisArea.sty.js +1 -1
  399. package/charts/xy-chart/components/axes/AxisTickWithTruncation.css +3 -3
  400. package/charts/xy-chart/components/axes/AxisTickWithTruncation.sty.js +3 -3
  401. package/charts/xy-chart/components/axes/XTickWithTruncation.d.ts +1 -1
  402. package/charts/xy-chart/components/axes/XYChartLeftAxisArea.js +5 -1
  403. package/charts/xy-chart/components/axes/XYChartRightAxisArea.js +5 -1
  404. package/charts/xy-chart/components/axes/YTickWithTruncation.d.ts +1 -1
  405. package/charts/xy-chart/components/axes/hooks/useXTickOffset.d.ts +1 -1
  406. package/charts/xy-chart/components/axes/hooks/useYTickOffset.d.ts +1 -1
  407. package/charts/xy-chart/components/displays/BarDisplay/BarLabelOverlay.css +3 -3
  408. package/charts/xy-chart/components/displays/BarDisplay/BarLabelOverlay.sty.js +3 -3
  409. package/charts/xy-chart/components/legend/XYLegend/xy-legend.css +1 -1
  410. package/charts/xy-chart/components/legend/XYLegend/xy-legend.sty.js +1 -1
  411. package/charts/xy-chart/components/overlay/explore/HighlightedPointCanvas.d.ts +3 -2
  412. package/charts/xy-chart/components/overlay/explore/HighlightedPointCanvas.js +27 -5
  413. package/charts/xy-chart/components/overlay/explore/XYChartCrosshair.css +1 -1
  414. package/charts/xy-chart/components/overlay/explore/XYChartCrosshair.sty.js +1 -1
  415. package/charts/xy-chart/components/overlay/explore/XYChartExplore.css +2 -2
  416. package/charts/xy-chart/components/overlay/explore/XYChartExplore.sty.js +2 -2
  417. package/charts/xy-chart/components/overlay/explore/XYChartLinearPoint.js +12 -6
  418. package/charts/xy-chart/components/overlay/hooks/useOverlayEvents.js +4 -0
  419. package/charts/xy-chart/components/overlay/utils/draw-shape.d.ts +1 -0
  420. package/charts/xy-chart/components/overlay/utils/draw-shape.js +19 -0
  421. package/charts/xy-chart/components/thresholds/XYChartThresholdIndicators.css +1 -1
  422. package/charts/xy-chart/components/thresholds/XYChartThresholdIndicators.sty.js +1 -1
  423. package/charts/xy-chart/components/tooltip/HoveredPointTooltip/hooks/getHoveredPointTooltipBodyContent.js +2 -2
  424. package/charts/xy-chart/components/tooltip/SharedXYChartTooltip/SharedXYChartTooltip.js +23 -22
  425. package/charts/xy-chart/components/tooltip/utils/get-cached-separator.d.ts +12 -0
  426. package/charts/xy-chart/components/tooltip/utils/get-cached-separator.js +33 -0
  427. package/charts/xy-chart/components/tooltip/utils/get-tooltip-formatter.js +4 -2
  428. package/charts/xy-chart/components/tooltip/utils/tooltip-styles.css +5 -5
  429. package/charts/xy-chart/components/tooltip/utils/tooltip-styles.sty.js +4 -4
  430. package/charts/xy-chart/constants/defaults.d.ts +1 -0
  431. package/charts/xy-chart/constants/defaults.js +2 -0
  432. package/charts/xy-chart/context/XYChartOverlayPerformance.context.d.ts +17 -0
  433. package/charts/xy-chart/hooks/useBuildHoverGrid.d.ts +12 -0
  434. package/charts/xy-chart/hooks/useBuildHoverGrid.js +56 -0
  435. package/charts/xy-chart/hooks/useBuildOverlayStrategy.d.ts +16 -0
  436. package/charts/xy-chart/hooks/useBuildOverlayStrategy.js +102 -0
  437. package/charts/xy-chart/hooks/useXYChartDataProvider.js +10 -3
  438. package/charts/xy-chart/layout/XYChartLayout.css +2 -2
  439. package/charts/xy-chart/layout/XYChartLayout.sty.js +2 -2
  440. package/charts/xy-chart/providers/XYChartAnnotationsShownIndicatorsProvider.js +7 -9
  441. package/charts/xy-chart/providers/XYChartAxesTicksProvider.js +41 -24
  442. package/charts/xy-chart/providers/XYChartOverlayPerformanceProvider.js +11 -53
  443. package/charts/xy-chart/providers/XYChartScalesProvider.js +9 -2
  444. package/charts/xy-chart/types/xy-chart-props.d.ts +6 -0
  445. package/charts/xy-chart/utils/build-axis-id-to-min-bar-size.d.ts +2 -0
  446. package/charts/xy-chart/utils/build-axis-id-to-min-bar-size.js +46 -0
  447. package/charts/xy-chart/utils/build-sorted-entries.d.ts +40 -18
  448. package/charts/xy-chart/utils/build-sorted-entries.js +63 -10
  449. package/charts/xy-chart/utils/filter-out-of-range-ticks.d.ts +3 -0
  450. package/charts/xy-chart/utils/filter-out-of-range-ticks.js +46 -0
  451. package/charts/xy-chart/utils/generate-scales-by-axis-id.d.ts +1 -1
  452. package/charts/xy-chart/utils/generate-scales-by-axis-id.js +19 -3
  453. package/charts/xy-chart/utils/get-ticks-formatted-by-config.d.ts +5 -1
  454. package/charts/xy-chart/utils/get-ticks-formatted-by-config.js +11 -0
  455. package/charts/xy-chart/utils/query-hovered-grid.d.ts +31 -0
  456. package/charts/xy-chart/utils/query-hovered-grid.js +191 -0
  457. package/charts/xy-chart/utils/query-shared.d.ts +2 -2
  458. package/charts/xy-chart/utils/query-shared.js +53 -23
  459. package/charts/xy-chart-adoption/histogram/HistogramToXY.d.ts +1 -2
  460. package/charts/xy-chart-adoption/histogram/HistogramToXY.js +9 -45
  461. package/charts/xy-chart-adoption/histogram/transformer-annotations-to-xy.d.ts +1 -17
  462. package/charts/xy-chart-adoption/histogram/transformer-annotations-to-xy.js +18 -33
  463. package/charts/xy-chart-adoption/shared/types/legacy-props.d.ts +11 -0
  464. package/charts/xy-chart-adoption/shared/types/legacy-props.js +15 -0
  465. package/charts/xy-chart-adoption/shared/utils/render-xy-annotations.d.ts +27 -0
  466. package/charts/xy-chart-adoption/shared/utils/render-xy-annotations.js +88 -0
  467. package/charts/xy-chart-adoption/timeseries/TimeseriesToXY.d.ts +3 -0
  468. package/charts/xy-chart-adoption/timeseries/TimeseriesToXY.js +77 -27
  469. package/charts/xy-chart-adoption/timeseries/iterate-slots.d.ts +10 -0
  470. package/charts/xy-chart-adoption/timeseries/iterate-slots.js +36 -1
  471. package/charts/xy-chart-adoption/timeseries/resolve-value-representation.d.ts +6 -0
  472. package/charts/xy-chart-adoption/timeseries/resolve-value-representation.js +25 -0
  473. package/charts/xy-chart-adoption/timeseries/transformer-annotations-to-xy.d.ts +4 -0
  474. package/charts/xy-chart-adoption/timeseries/transformer-annotations-to-xy.js +53 -0
  475. package/charts/xy-chart-adoption/timeseries/transformer-data-to-xy.d.ts +8 -6
  476. package/charts/xy-chart-adoption/timeseries/transformer-data-to-xy.js +7 -6
  477. package/charts/xy-chart-adoption/timeseries/types/timeseries.d.ts +28 -5
  478. package/charts/xy-chart-adoption/timeseries/utils/build-buckets.d.ts +15 -0
  479. package/charts/xy-chart-adoption/timeseries/utils/build-buckets.js +78 -0
  480. package/charts/xy-chart-adoption/timeseries/utils/collect-annotations-slots.d.ts +15 -0
  481. package/charts/xy-chart-adoption/timeseries/utils/collect-annotations-slots.js +76 -0
  482. package/charts/xy-chart-adoption/timeseries/utils/map-axis-slots.d.ts +21 -0
  483. package/charts/xy-chart-adoption/timeseries/utils/map-axis-slots.js +61 -0
  484. package/charts/xy-chart-adoption/timeseries/utils/render-series.js +6 -0
  485. package/charts/xy-chart-adoption/timeseries/utils/resolve-gap-policy.d.ts +2 -0
  486. package/charts/xy-chart-adoption/timeseries/utils/resolve-gap-policy.js +34 -0
  487. package/content/accordion/Accordion.css +14 -14
  488. package/content/accordion/Accordion.sty.js +8 -8
  489. package/content/ai-loading-indicator/AiLoadingIndicator.css +12 -12
  490. package/content/ai-loading-indicator/AiLoadingIndicator.sty.js +4 -4
  491. package/content/ai-response/AiResponse.css +5 -5
  492. package/content/ai-response/AiResponse.sty.js +3 -2
  493. package/content/avatar/Avatar.css +13 -13
  494. package/content/avatar/Avatar.sty.js +4 -4
  495. package/content/avatar-group/AvatarGroup.css +3 -3
  496. package/content/avatar-group/AvatarGroup.sty.js +2 -2
  497. package/content/chip/BaseChip.css +40 -40
  498. package/content/chip/BaseChip.sty.js +5 -5
  499. package/content/chip/ChipContent.css +11 -11
  500. package/content/chip/ChipContent.sty.js +2 -2
  501. package/content/chip/ChipDeleteButton.css +19 -19
  502. package/content/chip/ChipDeleteButton.sty.js +4 -4
  503. package/content/chip/ChipKey.css +6 -6
  504. package/content/chip/ChipKey.sty.js +1 -1
  505. package/content/chip/GroupedChip.css +3 -3
  506. package/content/chip/GroupedChip.sty.js +3 -3
  507. package/content/chip-group/ChipGroup.css +4 -4
  508. package/content/chip-group/ChipGroup.d.ts +1 -1
  509. package/content/chip-group/ChipGroup.js +33 -49
  510. package/content/chip-group/ChipGroup.sty.js +1 -1
  511. package/content/chip-group/Control.css +4 -4
  512. package/content/chip-group/Control.sty.js +1 -1
  513. package/content/chip-group/chip-group-utils.d.ts +33 -0
  514. package/content/chip-group/chip-group-utils.js +52 -0
  515. package/content/chip-group/state/chip-group-state-reducer.d.ts +1 -1
  516. package/content/code-snippet/CodeHighlight.css +25 -26
  517. package/content/code-snippet/CodeHighlight.sty.d.ts +7 -2
  518. package/content/code-snippet/CodeHighlight.sty.js +10 -6
  519. package/content/code-snippet/CodeSnippet.css +31 -5
  520. package/content/code-snippet/CodeSnippet.d.ts +23 -8
  521. package/content/code-snippet/CodeSnippet.js +6 -2
  522. package/content/code-snippet/CodeSnippet.sty.d.ts +16 -0
  523. package/content/code-snippet/CodeSnippet.sty.js +8 -3
  524. package/content/empty-state/EmptyState.css +28 -28
  525. package/content/empty-state/EmptyState.sty.js +7 -7
  526. package/content/empty-state/empty-state-utils.js +2 -9
  527. package/content/empty-state/slot-components/Footer.css +1 -1
  528. package/content/empty-state/slot-components/Footer.sty.js +1 -1
  529. package/content/empty-state/slot-components/Visual.css +3 -3
  530. package/content/empty-state/slot-components/Visual.sty.js +1 -1
  531. package/content/expandable-text/ExpandableText.css +7 -7
  532. package/content/expandable-text/ExpandableText.sty.js +2 -2
  533. package/content/feature-highlight/FeatureHighlight.css +12 -12
  534. package/content/feature-highlight/FeatureHighlight.js +9 -5
  535. package/content/feature-highlight/FeatureHighlight.sty.js +3 -3
  536. package/content/health-indicator/styles.css +23 -23
  537. package/content/health-indicator/styles.sty.js +1 -1
  538. package/content/index.d.ts +1 -1
  539. package/content/information-overlay/InformationOverlay.css +25 -25
  540. package/content/information-overlay/InformationOverlay.sty.js +5 -5
  541. package/content/keyboard-shortcut/KeyboardShortcut.css +14 -14
  542. package/content/keyboard-shortcut/KeyboardShortcut.sty.js +2 -2
  543. package/content/markdown/Markdown.css +3 -3
  544. package/content/markdown/Markdown.sty.js +1 -1
  545. package/content/markdown/transformers/typography-mapping.css +9 -9
  546. package/content/markdown/transformers/typography-mapping.sty.js +6 -6
  547. package/content/microguide/Microguide.css +11 -11
  548. package/content/microguide/Microguide.sty.js +7 -7
  549. package/content/progress/ProgressBar.css +71 -71
  550. package/content/progress/ProgressBar.sty.js +5 -5
  551. package/content/progress/ProgressBarIcon.css +2 -2
  552. package/content/progress/ProgressBarIcon.sty.js +1 -1
  553. package/content/progress/ProgressBarLabel.css +3 -3
  554. package/content/progress/ProgressBarLabel.sty.js +1 -1
  555. package/content/progress/ProgressBarValue.css +5 -5
  556. package/content/progress/ProgressBarValue.sty.js +1 -1
  557. package/content/progress/ProgressCircle.css +40 -40
  558. package/content/progress/ProgressCircle.sty.js +5 -5
  559. package/content/release-phase-indicator/ReleasePhaseIndicator.d.ts +2 -2
  560. package/content/release-phase-indicator/ReleasePhaseIndicator.js +4 -2
  561. package/content/release-phase-indicator/messages.d.ts +5 -0
  562. package/content/release-phase-indicator/messages.js +5 -0
  563. package/content/shared-components/Visual.css +3 -3
  564. package/content/shared-components/Visual.sty.js +1 -1
  565. package/content/skeleton/Skeleton.css +7 -7
  566. package/content/skeleton/Skeleton.sty.js +5 -5
  567. package/content/terminology-overlay/TerminologyOverlay.css +4 -4
  568. package/content/terminology-overlay/TerminologyOverlay.sty.js +1 -1
  569. package/core/components/app-root/AppRoot.css +12 -2
  570. package/core/components/app-root/AppRoot.js +3 -2
  571. package/core/components/app-root/AppRoot.sty.js +1 -1
  572. package/core/components/app-root/visual-refresh-overrides.d.ts +6 -0
  573. package/core/components/app-root/visual-refresh-overrides.js +6 -0
  574. package/core/components/error-fallback/ErrorFallback.d.ts +8 -0
  575. package/{filters/filter-field → core/components}/error-fallback/messages.d.ts +0 -1
  576. package/{filters/filter-field → core/components}/error-fallback/messages.js +4 -4
  577. package/core/components/visually-hidden/VisuallyHidden.css +1 -1
  578. package/core/components/visually-hidden/VisuallyHidden.sty.js +1 -1
  579. package/core/dql/dql-common.js +6 -2
  580. package/core/hooks/useVisualRefreshEnabled.d.ts +4 -0
  581. package/core/hooks/useVisualRefreshEnabled.js +32 -0
  582. package/core/index.d.ts +3 -0
  583. package/core/index.js +6 -0
  584. package/core/sdk/app-state/AppStateContext.d.ts +38 -0
  585. package/core/sdk/app-state/AppStateContext.js +58 -0
  586. package/core/sdk/app-state/AppStateProvider.d.ts +24 -0
  587. package/core/sdk/app-state/AppStateProvider.js +104 -0
  588. package/core/sdk/app-state/app-state-store.d.ts +17 -0
  589. package/core/sdk/app-state/app-state-store.js +33 -0
  590. package/core/sdk/app-state/useAppState.d.ts +15 -0
  591. package/{filters/filter-field/contexts/SavedAndRecentQueryClientContext.js → core/sdk/app-state/useAppState.js} +21 -18
  592. package/core/sdk/app-state/useAppStateInternal.d.ts +28 -0
  593. package/core/sdk/app-state/useAppStateInternal.js +212 -0
  594. package/core/sdk/app-state/useAppStateValue.d.ts +28 -0
  595. package/core/sdk/app-state/useAppStateValue.js +32 -0
  596. package/core/sdk/sdk-logger.js +2 -2
  597. package/core/styles/defaultChartValues.css +1 -1
  598. package/core/styles/defaultChartValues.sty.js +1 -1
  599. package/core/styles/focusRing.css +66 -66
  600. package/core/styles/focusRing.sty.js +2 -2
  601. package/core/styles/focusRingStatic.css +34 -34
  602. package/core/styles/focusRingStatic.sty.js +1 -1
  603. package/core/styles/virtualFocus.css +2 -2
  604. package/core/styles/virtualFocus.sty.js +1 -1
  605. package/core/time/timeframeStore/actions/dateTimePicker.js +5 -4
  606. package/core/time/validation.d.ts +28 -3
  607. package/core/time/validation.js +49 -4
  608. package/core/types/form-control-props.d.ts +6 -0
  609. package/core/utils/colorUtils.css +60 -60
  610. package/core/utils/colorUtils.sty.js +2 -2
  611. package/core/utils/get-ticks.d.ts +29 -0
  612. package/core/utils/get-ticks.js +30 -0
  613. package/editors/base-code-editor/BaseCodeEditor.css +147 -135
  614. package/editors/base-code-editor/BaseCodeEditor.d.ts +51 -21
  615. package/editors/base-code-editor/BaseCodeEditor.js +149 -4
  616. package/editors/base-code-editor/BaseCodeEditor.sty.js +2 -2
  617. package/editors/base-code-editor/configuration/configure-format-keymap.d.ts +12 -0
  618. package/editors/base-code-editor/configuration/configure-format-keymap.js +40 -0
  619. package/editors/base-code-editor/configuration/configure-placeholder.d.ts +6 -1
  620. package/editors/base-code-editor/configuration/configure-placeholder.js +31 -2
  621. package/editors/base-code-editor/configuration/getDefaultConfigurations.js +103 -6
  622. package/editors/base-code-editor/configuration/language-extensions.d.ts +1 -1
  623. package/editors/base-code-editor/utils/key-maps.js +2 -0
  624. package/editors/code-editor/CodeEditor.d.ts +7 -69
  625. package/editors/code-editor/CodeEditor.js +23 -1
  626. package/editors/dql-editor/DQLEditor.d.ts +7 -69
  627. package/editors/dql-editor/DQLEditor.js +53 -3
  628. package/editors/dql-editor/actions-menu/ActionsMenu.css +23 -13
  629. package/editors/dql-editor/actions-menu/ActionsMenu.d.ts +7 -3
  630. package/editors/dql-editor/actions-menu/ActionsMenu.js +7 -1
  631. package/editors/dql-editor/actions-menu/ActionsMenu.sty.d.ts +16 -4
  632. package/editors/dql-editor/actions-menu/ActionsMenu.sty.js +5 -4
  633. package/editors/dql-editor/actions-menu/actions-menu-messages.d.ts +5 -0
  634. package/editors/dql-editor/actions-menu/actions-menu-messages.js +5 -0
  635. package/editors/dql-editor/dql/SuggestionPart.css +1 -1
  636. package/editors/dql-editor/dql/SuggestionPart.sty.js +1 -1
  637. package/editors/dql-editor/dql/SuggestionsInfoSection.css +7 -7
  638. package/editors/dql-editor/dql/SuggestionsInfoSection.js +10 -1
  639. package/editors/dql-editor/dql/SuggestionsInfoSection.sty.js +3 -3
  640. package/editors/dql-editor/dql/open-autocomplete.js +21 -3
  641. package/editors/dql-editor/dql/suggestion-autocompletions.js +3 -0
  642. package/editors/index.d.ts +1 -1
  643. package/esm/buttons/button/Button.css +15 -15
  644. package/esm/buttons/button/Button.js +5 -4
  645. package/esm/buttons/button/Button.js.map +2 -2
  646. package/esm/buttons/button/Button.sty.js +4 -4
  647. package/esm/buttons/button/Button.sty.js.map +1 -1
  648. package/esm/buttons/intent-button/IntentButton.css +1 -1
  649. package/esm/buttons/intent-button/IntentButton.sty.js +1 -1
  650. package/esm/buttons/intent-button/IntentButton.sty.js.map +1 -1
  651. package/esm/buttons/intent-button/IntentButtonWithResponse.js +2 -2
  652. package/esm/buttons/intent-button/IntentButtonWithResponse.js.map +2 -2
  653. package/esm/buttons/notify-button/NotifyButton.css +2 -2
  654. package/esm/buttons/notify-button/NotifyButton.sty.js +2 -2
  655. package/esm/buttons/notify-button/NotifyButton.sty.js.map +1 -1
  656. package/esm/buttons/run-query-button/RunQueryButton.js +7 -14
  657. package/esm/buttons/run-query-button/RunQueryButton.js.map +2 -2
  658. package/esm/charts/categorical-bar/components/interactions/hooks/useSeriesActionClickHandler.js +7 -1
  659. package/esm/charts/categorical-bar/components/interactions/hooks/useSeriesActionClickHandler.js.map +2 -2
  660. package/esm/charts/categorical-bar/components/interactions/overlays/CategoricalBarChartInspectOverlay.css +2 -2
  661. package/esm/charts/categorical-bar/components/interactions/overlays/CategoricalBarChartInspectOverlay.sty.js +2 -2
  662. package/esm/charts/categorical-bar/components/interactions/overlays/CategoricalBarChartInspectOverlay.sty.js.map +1 -1
  663. package/esm/charts/categorical-bar/hooks/store/state-setters.js +3 -1
  664. package/esm/charts/categorical-bar/hooks/store/state-setters.js.map +2 -2
  665. package/esm/charts/categorical-bar/layout/CategoricalGridLayout.js +1 -2
  666. package/esm/charts/categorical-bar/layout/CategoricalGridLayout.js.map +2 -2
  667. package/esm/charts/core/components/annotations/AnnotationsAtom.css +1 -1
  668. package/esm/charts/core/components/annotations/AnnotationsAtom.sty.js +1 -1
  669. package/esm/charts/core/components/annotations/AnnotationsAtom.sty.js.map +1 -1
  670. package/esm/charts/core/components/annotations/components/canvas/AnnotationsCanvasLayout.css +1 -1
  671. package/esm/charts/core/components/annotations/components/canvas/AnnotationsCanvasLayout.sty.js +1 -1
  672. package/esm/charts/core/components/annotations/components/canvas/AnnotationsCanvasLayout.sty.js.map +1 -1
  673. package/esm/charts/core/components/annotations/components/canvas/utils/calculate-marker-width-and-content.js +1 -2
  674. package/esm/charts/core/components/annotations/components/canvas/utils/calculate-marker-width-and-content.js.map +2 -2
  675. package/esm/charts/core/components/annotations/components/overlays/AnnotationsOverlays.css +1 -1
  676. package/esm/charts/core/components/annotations/components/overlays/AnnotationsOverlays.sty.js +1 -1
  677. package/esm/charts/core/components/annotations/components/overlays/AnnotationsOverlays.sty.js.map +1 -1
  678. package/esm/charts/core/components/annotations/components/overlays/AnnotationsScrollWrapper.css +1 -1
  679. package/esm/charts/core/components/annotations/components/overlays/AnnotationsScrollWrapper.sty.js +1 -1
  680. package/esm/charts/core/components/annotations/components/overlays/AnnotationsScrollWrapper.sty.js.map +1 -1
  681. package/esm/charts/core/components/annotations/utils/aggregate-markers-coords.js +20 -6
  682. package/esm/charts/core/components/annotations/utils/aggregate-markers-coords.js.map +2 -2
  683. package/esm/charts/core/components/annotations/utils/resolve-value-marker-hit-area.js +14 -0
  684. package/esm/charts/core/components/annotations/utils/resolve-value-marker-hit-area.js.map +7 -0
  685. package/esm/charts/core/components/axes/Axis.css +1 -1
  686. package/esm/charts/core/components/axes/Axis.js +2 -6
  687. package/esm/charts/core/components/axes/Axis.js.map +2 -2
  688. package/esm/charts/core/components/axes/Axis.sty.js +1 -1
  689. package/esm/charts/core/components/axes/Axis.sty.js.map +1 -1
  690. package/esm/charts/core/components/axes/AxisPrimitive.js +203 -0
  691. package/esm/charts/core/components/axes/AxisPrimitive.js.map +7 -0
  692. package/esm/charts/core/components/axes/components/CategoryBottomAxis.js +2 -2
  693. package/esm/charts/core/components/axes/components/CategoryBottomAxis.js.map +2 -2
  694. package/esm/charts/core/components/axes/components/CategoryLeftAxis.js +1 -1
  695. package/esm/charts/core/components/axes/components/CategoryLeftAxis.js.map +2 -2
  696. package/esm/charts/core/components/axes/components/PanningControls/PanningControls.css +16 -16
  697. package/esm/charts/core/components/axes/components/PanningControls/PanningControls.sty.js +2 -2
  698. package/esm/charts/core/components/axes/components/PanningControls/PanningControls.sty.js.map +1 -1
  699. package/esm/charts/core/components/axes/components/TickLabel.js.map +2 -2
  700. package/esm/charts/core/components/axes/components/TimeTableHeaderAxis.js +1 -1
  701. package/esm/charts/core/components/axes/components/TimeTableHeaderAxis.js.map +2 -2
  702. package/esm/charts/core/components/axes/components/ValueTableHeaderAxis.js +1 -1
  703. package/esm/charts/core/components/axes/components/ValueTableHeaderAxis.js.map +2 -2
  704. package/esm/charts/core/components/axes/constants.js +0 -2
  705. package/esm/charts/core/components/axes/constants.js.map +2 -2
  706. package/esm/charts/core/components/axes/types.js.map +2 -2
  707. package/esm/charts/core/components/axes/utils/get-tick-label-props.js +45 -4
  708. package/esm/charts/core/components/axes/utils/get-tick-label-props.js.map +2 -2
  709. package/esm/charts/core/components/chart-grid/ChartGrid.css +3 -3
  710. package/esm/charts/core/components/chart-grid/ChartGrid.sty.js +3 -3
  711. package/esm/charts/core/components/chart-grid/ChartGrid.sty.js.map +1 -1
  712. package/esm/charts/core/components/chart-grid/constants.js +15 -0
  713. package/esm/charts/core/components/chart-grid/constants.js.map +7 -0
  714. package/esm/charts/core/components/chart-layout/components/styles.css +15 -15
  715. package/esm/charts/core/components/chart-layout/components/styles.sty.js +4 -4
  716. package/esm/charts/core/components/chart-layout/components/styles.sty.js.map +1 -1
  717. package/esm/charts/core/components/chart-states/ChartState.css +4 -4
  718. package/esm/charts/core/components/chart-states/ChartState.sty.js +4 -4
  719. package/esm/charts/core/components/chart-states/ChartState.sty.js.map +1 -1
  720. package/esm/charts/core/components/crosshair/HorizontalCrosshair.js +6 -4
  721. package/esm/charts/core/components/crosshair/HorizontalCrosshair.js.map +2 -2
  722. package/esm/charts/core/components/crosshair/VerticalCrosshair.js +7 -5
  723. package/esm/charts/core/components/crosshair/VerticalCrosshair.js.map +2 -2
  724. package/esm/charts/core/components/crosshair/components/Magnifier.css +7 -7
  725. package/esm/charts/core/components/crosshair/components/Magnifier.sty.js +7 -7
  726. package/esm/charts/core/components/crosshair/components/Magnifier.sty.js.map +1 -1
  727. package/esm/charts/core/components/grid/Grid.js +1 -4
  728. package/esm/charts/core/components/grid/Grid.js.map +2 -2
  729. package/esm/charts/core/components/grid/GridColumns.js +9 -7
  730. package/esm/charts/core/components/grid/GridColumns.js.map +2 -2
  731. package/esm/charts/core/components/grid/GridLine.js +5 -4
  732. package/esm/charts/core/components/grid/GridLine.js.map +2 -2
  733. package/esm/charts/core/components/grid/GridLines.js.map +2 -2
  734. package/esm/charts/core/components/grid/GridRows.js +9 -7
  735. package/esm/charts/core/components/grid/GridRows.js.map +2 -2
  736. package/esm/charts/core/components/grid/utils/compute-grid-lines.js +17 -0
  737. package/esm/charts/core/components/grid/utils/compute-grid-lines.js.map +7 -0
  738. package/esm/charts/core/components/grid/utils/should-highlight-zero-line.js.map +1 -1
  739. package/esm/charts/core/components/interactions-overlay/InteractionsOverlay.css +5 -5
  740. package/esm/charts/core/components/interactions-overlay/InteractionsOverlay.sty.js +2 -2
  741. package/esm/charts/core/components/interactions-overlay/InteractionsOverlay.sty.js.map +1 -1
  742. package/esm/charts/core/components/legend/categorical/ChartLegend.css +1 -1
  743. package/esm/charts/core/components/legend/categorical/ChartLegend.sty.js +1 -1
  744. package/esm/charts/core/components/legend/categorical/ChartLegend.sty.js.map +1 -1
  745. package/esm/charts/core/components/legend/categorical/components/ChartLegendIcon/ChartLegendIcon.css +3 -3
  746. package/esm/charts/core/components/legend/categorical/components/ChartLegendIcon/ChartLegendIcon.sty.js +3 -3
  747. package/esm/charts/core/components/legend/categorical/components/ChartLegendIcon/ChartLegendIcon.sty.js.map +1 -1
  748. package/esm/charts/core/components/legend/categorical/components/ChartLegendItem/ChartLegendItem.css +17 -17
  749. package/esm/charts/core/components/legend/categorical/components/ChartLegendItem/ChartLegendItem.sty.js +6 -6
  750. package/esm/charts/core/components/legend/categorical/components/ChartLegendItem/ChartLegendItem.sty.js.map +1 -1
  751. package/esm/charts/core/components/legend/categorical/components/ChartLegendSeriesActions/ChartLegendSeriesActions.css +3 -3
  752. package/esm/charts/core/components/legend/categorical/components/ChartLegendSeriesActions/ChartLegendSeriesActions.sty.js +1 -1
  753. package/esm/charts/core/components/legend/categorical/components/ChartLegendSeriesActions/ChartLegendSeriesActions.sty.js.map +1 -1
  754. package/esm/charts/core/components/legend/categorical/components/ChartVirtualizedLegendGrid.css +8 -8
  755. package/esm/charts/core/components/legend/categorical/components/ChartVirtualizedLegendGrid.sty.js +4 -4
  756. package/esm/charts/core/components/legend/categorical/components/ChartVirtualizedLegendGrid.sty.js.map +1 -1
  757. package/esm/charts/core/components/legend/range/RangeLegend.css +3 -3
  758. package/esm/charts/core/components/legend/range/RangeLegend.sty.js +1 -1
  759. package/esm/charts/core/components/legend/range/RangeLegend.sty.js.map +1 -1
  760. package/esm/charts/core/components/legend/range/components/RangeLegendBoundaryLabel/RangeLegendBoundaryLabel.css +2 -2
  761. package/esm/charts/core/components/legend/range/components/RangeLegendBoundaryLabel/RangeLegendBoundaryLabel.sty.js +1 -1
  762. package/esm/charts/core/components/legend/range/components/RangeLegendBoundaryLabel/RangeLegendBoundaryLabel.sty.js.map +1 -1
  763. package/esm/charts/core/components/legend/range/components/RangeLegendItemLabel/RangeLegendItemLabel.css +1 -1
  764. package/esm/charts/core/components/legend/range/components/RangeLegendItemLabel/RangeLegendItemLabel.sty.js +1 -1
  765. package/esm/charts/core/components/legend/range/components/RangeLegendItemLabel/RangeLegendItemLabel.sty.js.map +1 -1
  766. package/esm/charts/core/components/legend/range/components/RangeLegendItemMarker/RangeLegendItemMarker.css +3 -3
  767. package/esm/charts/core/components/legend/range/components/RangeLegendItemMarker/RangeLegendItemMarker.sty.js +1 -1
  768. package/esm/charts/core/components/legend/range/components/RangeLegendItemMarker/RangeLegendItemMarker.sty.js.map +1 -1
  769. package/esm/charts/core/components/legend/range/components/RangeLegendMarkers/RangeLegendMarkers.css +3 -3
  770. package/esm/charts/core/components/legend/range/components/RangeLegendMarkers/RangeLegendMarkers.sty.js +1 -1
  771. package/esm/charts/core/components/legend/range/components/RangeLegendMarkers/RangeLegendMarkers.sty.js.map +1 -1
  772. package/esm/charts/core/components/legend/range/components/RangeLegendSegments/RangeLegendSegments.css +5 -5
  773. package/esm/charts/core/components/legend/range/components/RangeLegendSegments/RangeLegendSegments.sty.js +1 -1
  774. package/esm/charts/core/components/legend/range/components/RangeLegendSegments/RangeLegendSegments.sty.js.map +1 -1
  775. package/esm/charts/core/components/loader-overlay/LoaderOverlay.css +2 -2
  776. package/esm/charts/core/components/loader-overlay/LoaderOverlay.sty.js +2 -2
  777. package/esm/charts/core/components/loader-overlay/LoaderOverlay.sty.js.map +1 -1
  778. package/esm/charts/core/components/overlay-tooltip/components/DynamicTooltip.js +7 -3
  779. package/esm/charts/core/components/overlay-tooltip/components/DynamicTooltip.js.map +2 -2
  780. package/esm/charts/core/components/overlay-tooltip/components/TooltipPortal.js +7 -1
  781. package/esm/charts/core/components/overlay-tooltip/components/TooltipPortal.js.map +2 -2
  782. package/esm/charts/core/components/overlay-tooltip/components/global-actions/actions.css +4 -4
  783. package/esm/charts/core/components/overlay-tooltip/components/global-actions/actions.sty.js +2 -2
  784. package/esm/charts/core/components/overlay-tooltip/components/global-actions/actions.sty.js.map +1 -1
  785. package/esm/charts/core/components/overlay-tooltip/components/header/Header.css +6 -6
  786. package/esm/charts/core/components/overlay-tooltip/components/header/Header.sty.js +6 -6
  787. package/esm/charts/core/components/overlay-tooltip/components/header/Header.sty.js.map +1 -1
  788. package/esm/charts/core/components/overlay-tooltip/components/series/seriesSymbol.css +2 -2
  789. package/esm/charts/core/components/overlay-tooltip/components/series/seriesSymbol.sty.js +2 -2
  790. package/esm/charts/core/components/overlay-tooltip/components/series/seriesSymbol.sty.js.map +1 -1
  791. package/esm/charts/core/components/overlay-tooltip/tooltip.css +52 -52
  792. package/esm/charts/core/components/overlay-tooltip/tooltip.sty.js +39 -39
  793. package/esm/charts/core/components/overlay-tooltip/tooltip.sty.js.map +1 -1
  794. package/esm/charts/core/components/overlay-tooltip/useTooltipActions.js +8 -0
  795. package/esm/charts/core/components/overlay-tooltip/useTooltipActions.js.map +2 -2
  796. package/esm/charts/core/components/overlay-tooltip/utils/is-scroll-ignored.js +10 -0
  797. package/esm/charts/core/components/overlay-tooltip/utils/is-scroll-ignored.js.map +7 -0
  798. package/esm/charts/core/components/overlays/ChartOverlaysBorder.css +5 -5
  799. package/esm/charts/core/components/overlays/ChartOverlaysBorder.sty.js +5 -5
  800. package/esm/charts/core/components/overlays/ChartOverlaysBorder.sty.js.map +1 -1
  801. package/esm/charts/core/components/selection-area/SelectionArea.css +9 -9
  802. package/esm/charts/core/components/selection-area/SelectionArea.sty.js +4 -4
  803. package/esm/charts/core/components/selection-area/SelectionArea.sty.js.map +1 -1
  804. package/esm/charts/core/components/series-action/ChartActionsMenuAsync.js +3 -1
  805. package/esm/charts/core/components/series-action/ChartActionsMenuAsync.js.map +2 -2
  806. package/esm/charts/core/components/shape/BubbleShape/BubbleShape.css +5 -5
  807. package/esm/charts/core/components/shape/BubbleShape/BubbleShape.sty.js +3 -3
  808. package/esm/charts/core/components/shape/BubbleShape/BubbleShape.sty.js.map +1 -1
  809. package/esm/charts/core/components/shape/EmojiShape/EmojiShape.css +3 -3
  810. package/esm/charts/core/components/shape/EmojiShape/EmojiShape.sty.js +1 -1
  811. package/esm/charts/core/components/shape/EmojiShape/EmojiShape.sty.js.map +1 -1
  812. package/esm/charts/core/components/shape/IconShape/IconShape.css +3 -3
  813. package/esm/charts/core/components/shape/IconShape/IconShape.sty.js +1 -1
  814. package/esm/charts/core/components/shape/IconShape/IconShape.sty.js.map +1 -1
  815. package/esm/charts/core/components/shape/styles/DataPointShape.css +8 -8
  816. package/esm/charts/core/components/shape/styles/DataPointShape.sty.js +4 -4
  817. package/esm/charts/core/components/shape/styles/DataPointShape.sty.js.map +1 -1
  818. package/esm/charts/core/components/shared-chart-interactions/SharedChartInteractions.css +1 -1
  819. package/esm/charts/core/components/shared-chart-interactions/SharedChartInteractions.sty.js +1 -1
  820. package/esm/charts/core/components/shared-chart-interactions/SharedChartInteractions.sty.js.map +1 -1
  821. package/esm/charts/core/components/single-value-renderer/SingleValueRenderer.css +5 -5
  822. package/esm/charts/core/components/single-value-renderer/SingleValueRenderer.sty.js +5 -5
  823. package/esm/charts/core/components/single-value-renderer/SingleValueRenderer.sty.js.map +1 -1
  824. package/esm/charts/core/components/single-value-renderer/components/ContentGrid.css +1 -1
  825. package/esm/charts/core/components/single-value-renderer/components/ContentGrid.sty.js +1 -1
  826. package/esm/charts/core/components/single-value-renderer/components/ContentGrid.sty.js.map +1 -1
  827. package/esm/charts/core/components/single-value-renderer/components/Icon.css +3 -3
  828. package/esm/charts/core/components/single-value-renderer/components/Icon.sty.js +2 -2
  829. package/esm/charts/core/components/single-value-renderer/components/Icon.sty.js.map +1 -1
  830. package/esm/charts/core/components/single-value-renderer/components/Label.css +1 -1
  831. package/esm/charts/core/components/single-value-renderer/components/Label.sty.js +1 -1
  832. package/esm/charts/core/components/single-value-renderer/components/Label.sty.js.map +1 -1
  833. package/esm/charts/core/components/single-value-renderer/components/SingleValueToolbar.css +1 -1
  834. package/esm/charts/core/components/single-value-renderer/components/SingleValueToolbar.js +0 -1
  835. package/esm/charts/core/components/single-value-renderer/components/SingleValueToolbar.js.map +2 -2
  836. package/esm/charts/core/components/single-value-renderer/components/SingleValueToolbar.sty.js +1 -1
  837. package/esm/charts/core/components/single-value-renderer/components/SingleValueToolbar.sty.js.map +1 -1
  838. package/esm/charts/core/components/single-value-renderer/components/Value.css +5 -5
  839. package/esm/charts/core/components/single-value-renderer/components/Value.sty.js +3 -3
  840. package/esm/charts/core/components/single-value-renderer/components/Value.sty.js.map +1 -1
  841. package/esm/charts/core/components/single-value-renderer/components/trend/Trend.css +3 -3
  842. package/esm/charts/core/components/single-value-renderer/components/trend/Trend.sty.js +3 -3
  843. package/esm/charts/core/components/single-value-renderer/components/trend/Trend.sty.js.map +1 -1
  844. package/esm/charts/core/components/single-value-renderer/components/trend/components/Icon.css +2 -2
  845. package/esm/charts/core/components/single-value-renderer/components/trend/components/Icon.sty.js +1 -1
  846. package/esm/charts/core/components/single-value-renderer/components/trend/components/Icon.sty.js.map +1 -1
  847. package/esm/charts/core/components/sparkline-display/Sparkline.css +6 -6
  848. package/esm/charts/core/components/sparkline-display/Sparkline.sty.js +2 -2
  849. package/esm/charts/core/components/sparkline-display/Sparkline.sty.js.map +1 -1
  850. package/esm/charts/core/components/sparkline-display/SparklineContainer.js +6 -4
  851. package/esm/charts/core/components/sparkline-display/SparklineContainer.js.map +2 -2
  852. package/esm/charts/core/components/text-ellipsis/ChartTextEllipsis.css +7 -7
  853. package/esm/charts/core/components/text-ellipsis/ChartTextEllipsis.sty.js +3 -3
  854. package/esm/charts/core/components/text-ellipsis/ChartTextEllipsis.sty.js.map +1 -1
  855. package/esm/charts/core/components/threshold-bar/indicators/ThresholdIndicator.js +40 -21
  856. package/esm/charts/core/components/threshold-bar/indicators/ThresholdIndicator.js.map +2 -2
  857. package/esm/charts/core/components/threshold-bar/markers/CircleMarker.js +1 -2
  858. package/esm/charts/core/components/threshold-bar/markers/CircleMarker.js.map +2 -2
  859. package/esm/charts/core/components/threshold-bar/markers/PillMarker.js +1 -2
  860. package/esm/charts/core/components/threshold-bar/markers/PillMarker.js.map +2 -2
  861. package/esm/charts/core/components/threshold-bar/styles.css +9 -9
  862. package/esm/charts/core/components/threshold-bar/styles.sty.js +2 -2
  863. package/esm/charts/core/components/threshold-bar/styles.sty.js.map +1 -1
  864. package/esm/charts/core/components/toolbar/ChartToolbarRenderer.css +16 -16
  865. package/esm/charts/core/components/toolbar/ChartToolbarRenderer.js +16 -6
  866. package/esm/charts/core/components/toolbar/ChartToolbarRenderer.js.map +2 -2
  867. package/esm/charts/core/components/toolbar/ChartToolbarRenderer.sty.js +8 -8
  868. package/esm/charts/core/components/toolbar/ChartToolbarRenderer.sty.js.map +1 -1
  869. package/esm/charts/core/components/toolbar/components/ChartDataMenu.css +2 -2
  870. package/esm/charts/core/components/toolbar/components/ChartDataMenu.sty.js +1 -1
  871. package/esm/charts/core/components/toolbar/components/ChartDataMenu.sty.js.map +1 -1
  872. package/esm/charts/core/components/toolbar/components/Control.css +17 -17
  873. package/esm/charts/core/components/toolbar/components/Control.sty.js +5 -5
  874. package/esm/charts/core/components/toolbar/components/Control.sty.js.map +1 -1
  875. package/esm/charts/core/components/toolbar/components/ToolbarMenu.css +4 -4
  876. package/esm/charts/core/components/toolbar/components/ToolbarMenu.sty.js +2 -2
  877. package/esm/charts/core/components/toolbar/components/ToolbarMenu.sty.js.map +1 -1
  878. package/esm/charts/core/components/toolbar/types.js.map +1 -1
  879. package/esm/charts/core/components/tooltip/ChartTooltip/ChartTooltip.css +6 -6
  880. package/esm/charts/core/components/tooltip/ChartTooltip/ChartTooltip.sty.js +2 -2
  881. package/esm/charts/core/components/tooltip/ChartTooltip/ChartTooltip.sty.js.map +1 -1
  882. package/esm/charts/core/components/tooltip/ChartTooltip/components/ActionItem/ActionItem.css +8 -8
  883. package/esm/charts/core/components/tooltip/ChartTooltip/components/ActionItem/ActionItem.sty.js +3 -3
  884. package/esm/charts/core/components/tooltip/ChartTooltip/components/ActionItem/ActionItem.sty.js.map +1 -1
  885. package/esm/charts/core/components/tooltip/ChartTooltip/components/SeriesItem/SeriesItem.css +2 -2
  886. package/esm/charts/core/components/tooltip/ChartTooltip/components/SeriesItem/SeriesItem.sty.js +1 -1
  887. package/esm/charts/core/components/tooltip/ChartTooltip/components/SeriesItem/SeriesItem.sty.js.map +1 -1
  888. package/esm/charts/core/components/tooltip/ChartTooltip/components/TimeFrameHeader/TimeFrameHeader.css +1 -1
  889. package/esm/charts/core/components/tooltip/ChartTooltip/components/TimeFrameHeader/TimeFrameHeader.sty.js +1 -1
  890. package/esm/charts/core/components/tooltip/ChartTooltip/components/TimeFrameHeader/TimeFrameHeader.sty.js.map +1 -1
  891. package/esm/charts/core/components/tooltip/InteractiveChartTooltip/components/BasicChartTooltip/BasicChartTooltip.css +6 -6
  892. package/esm/charts/core/components/tooltip/InteractiveChartTooltip/components/BasicChartTooltip/BasicChartTooltip.sty.js +2 -2
  893. package/esm/charts/core/components/tooltip/InteractiveChartTooltip/components/BasicChartTooltip/BasicChartTooltip.sty.js.map +1 -1
  894. package/esm/charts/core/components/tooltip/InteractiveChartTooltip/components/InteractiveChartTooltip.css +7 -7
  895. package/esm/charts/core/components/tooltip/InteractiveChartTooltip/components/InteractiveChartTooltip.sty.js +6 -6
  896. package/esm/charts/core/components/tooltip/InteractiveChartTooltip/components/InteractiveChartTooltip.sty.js.map +1 -1
  897. package/esm/charts/core/components/tooltip/InteractiveChartTooltip/headers/HeaderTooltip.css +1 -1
  898. package/esm/charts/core/components/tooltip/InteractiveChartTooltip/headers/HeaderTooltip.sty.js +1 -1
  899. package/esm/charts/core/components/tooltip/InteractiveChartTooltip/headers/HeaderTooltip.sty.js.map +1 -1
  900. package/esm/charts/core/components/tooltip/section-components/TooltipFooter/TooltipFooter.css +1 -1
  901. package/esm/charts/core/components/tooltip/section-components/TooltipFooter/TooltipFooter.sty.js +1 -1
  902. package/esm/charts/core/components/tooltip/section-components/TooltipFooter/TooltipFooter.sty.js.map +1 -1
  903. package/esm/charts/core/components/tooltip/section-components/TooltipHeader/TooltipHeader.css +2 -2
  904. package/esm/charts/core/components/tooltip/section-components/TooltipHeader/TooltipHeader.sty.js +1 -1
  905. package/esm/charts/core/components/tooltip/section-components/TooltipHeader/TooltipHeader.sty.js.map +1 -1
  906. package/esm/charts/core/components/tooltip/section-components/TooltipInfoContent/TooltipInfoContent.css +1 -1
  907. package/esm/charts/core/components/tooltip/section-components/TooltipInfoContent/TooltipInfoContent.sty.js +1 -1
  908. package/esm/charts/core/components/tooltip/section-components/TooltipInfoContent/TooltipInfoContent.sty.js.map +1 -1
  909. package/esm/charts/core/components/tooltip/section-components/TooltipItem/TooltipItem.css +3 -3
  910. package/esm/charts/core/components/tooltip/section-components/TooltipItem/TooltipItem.sty.js +2 -2
  911. package/esm/charts/core/components/tooltip/section-components/TooltipItem/TooltipItem.sty.js.map +1 -1
  912. package/esm/charts/core/components/tooltip/section-components/TooltipSymbolContent/TooltipSymbolContent.css +1 -1
  913. package/esm/charts/core/components/tooltip/section-components/TooltipSymbolContent/TooltipSymbolContent.sty.js +1 -1
  914. package/esm/charts/core/components/tooltip/section-components/TooltipSymbolContent/TooltipSymbolContent.sty.js.map +1 -1
  915. package/esm/charts/core/components/tooltip/section-components/VirtualizedTooltipBody/VirtualizedTooltipBody.css +2 -2
  916. package/esm/charts/core/components/tooltip/section-components/VirtualizedTooltipBody/VirtualizedTooltipBody.sty.js +2 -2
  917. package/esm/charts/core/components/tooltip/section-components/VirtualizedTooltipBody/VirtualizedTooltipBody.sty.js.map +1 -1
  918. package/esm/charts/core/components/tooltip/shared/styles/SeriesBasedContent.css +12 -12
  919. package/esm/charts/core/components/tooltip/shared/styles/SeriesBasedContent.sty.js +7 -7
  920. package/esm/charts/core/components/tooltip/shared/styles/SeriesBasedContent.sty.js.map +1 -1
  921. package/esm/charts/core/components/tooltip/shared/styles/TooltipBody.css +1 -1
  922. package/esm/charts/core/components/tooltip/shared/styles/TooltipBody.sty.js +1 -1
  923. package/esm/charts/core/components/tooltip/shared/styles/TooltipBody.sty.js.map +1 -1
  924. package/esm/charts/core/components/tooltip-atoms/components/HeaderChipAtom/HeaderChipAtom.css +1 -1
  925. package/esm/charts/core/components/tooltip-atoms/components/HeaderChipAtom/HeaderChipAtom.sty.js +1 -1
  926. package/esm/charts/core/components/tooltip-atoms/components/HeaderChipAtom/HeaderChipAtom.sty.js.map +1 -1
  927. package/esm/charts/core/components/tooltip-atoms/components/styles.css +4 -4
  928. package/esm/charts/core/components/tooltip-atoms/components/styles.sty.js +4 -4
  929. package/esm/charts/core/components/tooltip-atoms/components/styles.sty.js.map +1 -1
  930. package/esm/charts/core/components/zoom/ZoomCursors.css +2 -2
  931. package/esm/charts/core/components/zoom/ZoomCursors.sty.js +3 -3
  932. package/esm/charts/core/components/zoom/ZoomCursors.sty.js.map +1 -1
  933. package/esm/charts/core/constants.js +2 -0
  934. package/esm/charts/core/constants.js.map +2 -2
  935. package/esm/charts/core/hooks/useOverlayEventHandlers.js +40 -20
  936. package/esm/charts/core/hooks/useOverlayEventHandlers.js.map +2 -2
  937. package/esm/charts/core/hooks/usePointerAndScrollResponsiveChartBounds.js +1 -1
  938. package/esm/charts/core/hooks/usePointerAndScrollResponsiveChartBounds.js.map +2 -2
  939. package/esm/charts/core/hooks/useThrottledCallbackOnScroll.js.map +1 -1
  940. package/esm/charts/core/types/chart-data.js +1 -0
  941. package/esm/charts/core/types/text-size.js +1 -0
  942. package/esm/charts/core/types/text-size.js.map +7 -0
  943. package/esm/charts/core/typographyStyles.css +1 -1
  944. package/esm/charts/core/typographyStyles.sty.js +1 -1
  945. package/esm/charts/core/typographyStyles.sty.js.map +1 -1
  946. package/esm/charts/core/utils/formatter-by-ticks.js +1 -1
  947. package/esm/charts/core/utils/formatter-by-ticks.js.map +2 -2
  948. package/esm/charts/core/utils/text-measure.js +38 -0
  949. package/esm/charts/core/utils/text-measure.js.map +7 -0
  950. package/esm/charts/gantt-chart/GanttChartLine.css +1 -1
  951. package/esm/charts/gantt-chart/GanttChartLine.sty.js +1 -1
  952. package/esm/charts/gantt-chart/GanttChartLine.sty.js.map +1 -1
  953. package/esm/charts/gantt-chart/components/GanttChartLineRenderer.css +1 -1
  954. package/esm/charts/gantt-chart/components/GanttChartLineRenderer.js +1 -2
  955. package/esm/charts/gantt-chart/components/GanttChartLineRenderer.js.map +2 -2
  956. package/esm/charts/gantt-chart/components/GanttChartLineRenderer.sty.js +1 -1
  957. package/esm/charts/gantt-chart/components/GanttChartLineRenderer.sty.js.map +1 -1
  958. package/esm/charts/gantt-chart/components/tooltip/GanttChartTooltip.css +1 -1
  959. package/esm/charts/gantt-chart/components/tooltip/GanttChartTooltip.sty.js +1 -1
  960. package/esm/charts/gantt-chart/components/tooltip/GanttChartTooltip.sty.js.map +1 -1
  961. package/esm/charts/gauge/components/GaugeChartLayout/GaugeChartLayout.css +1 -1
  962. package/esm/charts/gauge/components/GaugeChartLayout/GaugeChartLayout.sty.js +1 -1
  963. package/esm/charts/gauge/components/GaugeChartLayout/GaugeChartLayout.sty.js.map +1 -1
  964. package/esm/charts/gauge/components/GaugeChartLayout/GaugeChartToolbar.js +2 -2
  965. package/esm/charts/gauge/components/GaugeChartLayout/GaugeChartToolbar.js.map +2 -2
  966. package/esm/charts/gauge/components/GaugeLabel/GaugeLabel.css +6 -6
  967. package/esm/charts/gauge/components/GaugeLabel/GaugeLabel.sty.js +3 -3
  968. package/esm/charts/gauge/components/GaugeLabel/GaugeLabel.sty.js.map +1 -1
  969. package/esm/charts/gauge/components/GaugeLabelsWrapper/GaugeLabelsWrapper.css +3 -3
  970. package/esm/charts/gauge/components/GaugeLabelsWrapper/GaugeLabelsWrapper.sty.js +1 -1
  971. package/esm/charts/gauge/components/GaugeLabelsWrapper/GaugeLabelsWrapper.sty.js.map +1 -1
  972. package/esm/charts/gauge/components/GaugeLayoutOverlay/GaugeLayoutOverlay.css +4 -4
  973. package/esm/charts/gauge/components/GaugeLayoutOverlay/GaugeLayoutOverlay.js +29 -2
  974. package/esm/charts/gauge/components/GaugeLayoutOverlay/GaugeLayoutOverlay.js.map +2 -2
  975. package/esm/charts/gauge/components/GaugeLayoutOverlay/GaugeLayoutOverlay.sty.js +3 -3
  976. package/esm/charts/gauge/components/GaugeLayoutOverlay/GaugeLayoutOverlay.sty.js.map +1 -1
  977. package/esm/charts/gauge/components/GaugeResponsiveLabel/GaugeResponsiveLabel.css +2 -2
  978. package/esm/charts/gauge/components/GaugeResponsiveLabel/GaugeResponsiveLabel.sty.js +2 -2
  979. package/esm/charts/gauge/components/GaugeResponsiveLabel/GaugeResponsiveLabel.sty.js.map +1 -1
  980. package/esm/charts/histogram/HistogramChart.js +4 -5
  981. package/esm/charts/histogram/HistogramChart.js.map +2 -2
  982. package/esm/charts/histogram/HistogramChartInternal.js +20 -8
  983. package/esm/charts/histogram/HistogramChartInternal.js.map +2 -2
  984. package/esm/charts/histogram/components/axes/HistogramValueBottomAxisArea/HistogramValueBottomAxisArea.css +1 -1
  985. package/esm/charts/histogram/components/axes/HistogramValueBottomAxisArea/HistogramValueBottomAxisArea.sty.js +1 -1
  986. package/esm/charts/histogram/components/axes/HistogramValueBottomAxisArea/HistogramValueBottomAxisArea.sty.js.map +1 -1
  987. package/esm/charts/histogram/components/overlays/HistogramExplore/HistogramTooltip.css +1 -1
  988. package/esm/charts/histogram/components/overlays/HistogramExplore/HistogramTooltip.sty.js +1 -1
  989. package/esm/charts/histogram/components/overlays/HistogramExplore/HistogramTooltip.sty.js.map +1 -1
  990. package/esm/charts/histogram/components/overlays/HistogramOverlays.css +2 -2
  991. package/esm/charts/histogram/components/overlays/HistogramOverlays.sty.js +2 -2
  992. package/esm/charts/histogram/components/overlays/HistogramOverlays.sty.js.map +1 -1
  993. package/esm/charts/honeycomb/HoneycombChart.css +1 -1
  994. package/esm/charts/honeycomb/HoneycombChart.js +6 -3
  995. package/esm/charts/honeycomb/HoneycombChart.js.map +2 -2
  996. package/esm/charts/honeycomb/HoneycombChart.sty.js +1 -1
  997. package/esm/charts/honeycomb/HoneycombChart.sty.js.map +1 -1
  998. package/esm/charts/honeycomb/components/HiveOverlay.css +1 -1
  999. package/esm/charts/honeycomb/components/HiveOverlay.js +2 -10
  1000. package/esm/charts/honeycomb/components/HiveOverlay.js.map +2 -2
  1001. package/esm/charts/honeycomb/components/HiveOverlay.sty.js +1 -1
  1002. package/esm/charts/honeycomb/components/HiveOverlay.sty.js.map +1 -1
  1003. package/esm/charts/honeycomb/components/canvas/HiveCanvasLayout.css +1 -1
  1004. package/esm/charts/honeycomb/components/canvas/HiveCanvasLayout.sty.js +1 -1
  1005. package/esm/charts/honeycomb/components/canvas/HiveCanvasLayout.sty.js.map +1 -1
  1006. package/esm/charts/honeycomb/components/canvas/renderers/CanvasCircleRenderer.js +7 -2
  1007. package/esm/charts/honeycomb/components/canvas/renderers/CanvasCircleRenderer.js.map +2 -2
  1008. package/esm/charts/honeycomb/components/canvas/renderers/CanvasHexagonRenderer.js +9 -5
  1009. package/esm/charts/honeycomb/components/canvas/renderers/CanvasHexagonRenderer.js.map +2 -2
  1010. package/esm/charts/honeycomb/components/canvas/renderers/CanvasSquareRenderer.js +7 -2
  1011. package/esm/charts/honeycomb/components/canvas/renderers/CanvasSquareRenderer.js.map +2 -2
  1012. package/esm/charts/honeycomb/components/canvas/utils/draw-label-and-value.js +108 -21
  1013. package/esm/charts/honeycomb/components/canvas/utils/draw-label-and-value.js.map +2 -2
  1014. package/esm/charts/honeycomb/components/canvas/utils/get-font-sizes.js +39 -0
  1015. package/esm/charts/honeycomb/components/canvas/utils/get-font-sizes.js.map +7 -0
  1016. package/esm/charts/honeycomb/components/canvas/utils/get-truncation-method.js +82 -9
  1017. package/esm/charts/honeycomb/components/canvas/utils/get-truncation-method.js.map +2 -2
  1018. package/esm/charts/honeycomb/components/canvas/utils/measure-node-text-content.js +13 -16
  1019. package/esm/charts/honeycomb/components/canvas/utils/measure-node-text-content.js.map +2 -2
  1020. package/esm/charts/honeycomb/components/canvas/utils/render-text-to-canvas.js +2 -2
  1021. package/esm/charts/honeycomb/components/canvas/utils/render-text-to-canvas.js.map +2 -2
  1022. package/esm/charts/honeycomb/components/canvas/utils/set-font-details-to-context.js +11 -9
  1023. package/esm/charts/honeycomb/components/canvas/utils/set-font-details-to-context.js.map +2 -2
  1024. package/esm/charts/honeycomb/components/toolbar/HoneycombToolbar.js +1 -3
  1025. package/esm/charts/honeycomb/components/toolbar/HoneycombToolbar.js.map +2 -2
  1026. package/esm/charts/honeycomb/constants.js +17 -13
  1027. package/esm/charts/honeycomb/constants.js.map +2 -2
  1028. package/esm/charts/honeycomb/context/honeycomb-color-scheme.context.js.map +1 -1
  1029. package/esm/charts/honeycomb/context/honeycomb-filtered-color-scheme.context.js.map +1 -1
  1030. package/esm/charts/honeycomb/context/honeycomb-text-size.context.js +9 -0
  1031. package/esm/charts/honeycomb/context/honeycomb-text-size.context.js.map +7 -0
  1032. package/esm/charts/honeycomb/hooks/use-honeycomb-chart-config.js +6 -1
  1033. package/esm/charts/honeycomb/hooks/use-honeycomb-chart-config.js.map +2 -2
  1034. package/esm/charts/honeycomb/hooks/use-honeycomb-text-size.js +7 -0
  1035. package/esm/charts/honeycomb/hooks/use-honeycomb-text-size.js.map +7 -0
  1036. package/esm/charts/honeycomb/hooks/use-overlay-events.js +7 -8
  1037. package/esm/charts/honeycomb/hooks/use-overlay-events.js.map +2 -2
  1038. package/esm/charts/honeycomb/providers/honeycomb-base-scale.provider.js.map +2 -2
  1039. package/esm/charts/honeycomb/store/selectors.js +0 -2
  1040. package/esm/charts/honeycomb/store/selectors.js.map +2 -2
  1041. package/esm/charts/honeycomb/store/store.js +0 -13
  1042. package/esm/charts/honeycomb/store/store.js.map +2 -2
  1043. package/esm/charts/honeycomb/types/state.js +0 -3
  1044. package/esm/charts/honeycomb/types/state.js.map +2 -2
  1045. package/esm/charts/honeycomb/utils/build-honeycomb-config.js +19 -5
  1046. package/esm/charts/honeycomb/utils/build-honeycomb-config.js.map +2 -2
  1047. package/esm/charts/honeycomb/utils/normalize-honeycomb-chart-data.js +21 -0
  1048. package/esm/charts/honeycomb/utils/normalize-honeycomb-chart-data.js.map +7 -0
  1049. package/esm/charts/index.js.map +2 -2
  1050. package/esm/charts/meter-bar/shared/components/meter-bar-layout/MeterBarLayout.css +15 -15
  1051. package/esm/charts/meter-bar/shared/components/meter-bar-layout/MeterBarLayout.sty.js +10 -10
  1052. package/esm/charts/meter-bar/shared/components/meter-bar-layout/MeterBarLayout.sty.js.map +1 -1
  1053. package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Icon/Icon.css +2 -2
  1054. package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Icon/Icon.sty.js +1 -1
  1055. package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Icon/Icon.sty.js.map +1 -1
  1056. package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Label/Label.css +1 -1
  1057. package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Label/Label.sty.js +1 -1
  1058. package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Label/Label.sty.js.map +1 -1
  1059. package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Max/Max.css +1 -1
  1060. package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Max/Max.sty.js +1 -1
  1061. package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Max/Max.sty.js.map +1 -1
  1062. package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Min/Min.css +1 -1
  1063. package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Min/Min.sty.js +1 -1
  1064. package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Min/Min.sty.js.map +1 -1
  1065. package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Value/Value.css +1 -1
  1066. package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Value/Value.sty.js +1 -1
  1067. package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Value/Value.sty.js.map +1 -1
  1068. package/esm/charts/meter-bar/shared/components/meter-bar-plot/MeterBarPlot.css +1 -1
  1069. package/esm/charts/meter-bar/shared/components/meter-bar-plot/MeterBarPlot.sty.js +1 -1
  1070. package/esm/charts/meter-bar/shared/components/meter-bar-plot/MeterBarPlot.sty.js.map +1 -1
  1071. package/esm/charts/meter-bar/shared/styles/element-size.css +4 -4
  1072. package/esm/charts/meter-bar/shared/styles/element-size.sty.js +1 -1
  1073. package/esm/charts/meter-bar/shared/styles/element-size.sty.js.map +1 -1
  1074. package/esm/charts/meter-bar/shared/styles.css +1 -1
  1075. package/esm/charts/meter-bar/shared/styles.sty.js +1 -1
  1076. package/esm/charts/meter-bar/shared/styles.sty.js.map +1 -1
  1077. package/esm/charts/meter-bar/single-meter-bar/components/MeterBarChartThresholds/MeterBarChartThresholds.css +1 -1
  1078. package/esm/charts/meter-bar/single-meter-bar/components/MeterBarChartThresholds/MeterBarChartThresholds.sty.js +1 -1
  1079. package/esm/charts/meter-bar/single-meter-bar/components/MeterBarChartThresholds/MeterBarChartThresholds.sty.js.map +1 -1
  1080. package/esm/charts/pie/DonutChart.js +5 -12
  1081. package/esm/charts/pie/DonutChart.js.map +2 -2
  1082. package/esm/charts/pie/PieChart.js +7 -14
  1083. package/esm/charts/pie/PieChart.js.map +2 -2
  1084. package/esm/charts/pie/components/InnerWrapper/components/InnerContainer/InnerContainer.css +1 -1
  1085. package/esm/charts/pie/components/InnerWrapper/components/InnerContainer/InnerContainer.sty.js +1 -1
  1086. package/esm/charts/pie/components/InnerWrapper/components/InnerContainer/InnerContainer.sty.js.map +1 -1
  1087. package/esm/charts/pie/components/InnerWrapper/components/InnerDonut/InnerDonut.css +1 -1
  1088. package/esm/charts/pie/components/InnerWrapper/components/InnerDonut/InnerDonut.sty.js +1 -1
  1089. package/esm/charts/pie/components/InnerWrapper/components/InnerDonut/InnerDonut.sty.js.map +1 -1
  1090. package/esm/charts/pie/components/PieChartOverlays/PieChartOverlays.css +1 -1
  1091. package/esm/charts/pie/components/PieChartOverlays/PieChartOverlays.js +3 -3
  1092. package/esm/charts/pie/components/PieChartOverlays/PieChartOverlays.js.map +2 -2
  1093. package/esm/charts/pie/components/PieChartOverlays/PieChartOverlays.sty.js +1 -1
  1094. package/esm/charts/pie/components/PieChartOverlays/PieChartOverlays.sty.js.map +1 -1
  1095. package/esm/charts/pie/components/PieChartPlot/PieChartPlot.css +1 -1
  1096. package/esm/charts/pie/components/PieChartPlot/PieChartPlot.js +65 -56
  1097. package/esm/charts/pie/components/PieChartPlot/PieChartPlot.js.map +3 -3
  1098. package/esm/charts/pie/components/PieChartPlot/PieChartPlot.sty.js +1 -1
  1099. package/esm/charts/pie/components/PieChartPlot/PieChartPlot.sty.js.map +1 -1
  1100. package/esm/charts/pie/components/PieChartSlice.js +15 -11
  1101. package/esm/charts/pie/components/PieChartSlice.js.map +2 -2
  1102. package/esm/charts/pie/constants.js +2 -0
  1103. package/esm/charts/pie/constants.js.map +2 -2
  1104. package/esm/charts/pie/context/ChartConfigContext.js.map +2 -2
  1105. package/esm/charts/pie/context/PieChartRawDataContext.js.map +2 -2
  1106. package/esm/charts/pie/hooks/useNormalizedPieData.js +20 -0
  1107. package/esm/charts/pie/hooks/useNormalizedPieData.js.map +7 -0
  1108. package/esm/charts/pie/hooks/useOverlayHandlers.js +7 -5
  1109. package/esm/charts/pie/hooks/useOverlayHandlers.js.map +2 -2
  1110. package/esm/charts/pie/hooks/useSliceHandlers.js +29 -3
  1111. package/esm/charts/pie/hooks/useSliceHandlers.js.map +2 -2
  1112. package/esm/charts/pie/providers/ChartProviders.js.map +2 -2
  1113. package/esm/charts/pie/types/pie-chart.config.js.map +2 -2
  1114. package/esm/charts/pie/utils/build-and-download-csv.js.map +2 -2
  1115. package/esm/charts/pie/utils/build-group-threshold.js.map +2 -2
  1116. package/esm/charts/pie/utils/build-slices.js.map +2 -2
  1117. package/esm/charts/pie/utils/format-csv.js.map +2 -2
  1118. package/esm/charts/pie/utils/group-slices-thinner-than-pad-angle.js +2 -1
  1119. package/esm/charts/pie/utils/group-slices-thinner-than-pad-angle.js.map +2 -2
  1120. package/esm/charts/pie/utils/normalize-pie-data.js +20 -0
  1121. package/esm/charts/pie/utils/normalize-pie-data.js.map +7 -0
  1122. package/esm/charts/pie/utils/pie-config.js +2 -1
  1123. package/esm/charts/pie/utils/pie-config.js.map +2 -2
  1124. package/esm/charts/pie/utils/sanitize-toolbar-intents.js +12 -0
  1125. package/esm/charts/pie/utils/sanitize-toolbar-intents.js.map +7 -0
  1126. package/esm/charts/single-value/SingleValue.css +1 -1
  1127. package/esm/charts/single-value/SingleValue.sty.js +1 -1
  1128. package/esm/charts/single-value/SingleValue.sty.js.map +1 -1
  1129. package/esm/charts/single-value-grid/SingleValueGrid.css +2 -2
  1130. package/esm/charts/single-value-grid/SingleValueGrid.sty.js +1 -1
  1131. package/esm/charts/single-value-grid/SingleValueGrid.sty.js.map +1 -1
  1132. package/esm/charts/single-value-grid/components/GlobalFontSizeVariables.css +1 -1
  1133. package/esm/charts/single-value-grid/components/GlobalFontSizeVariables.sty.js +1 -1
  1134. package/esm/charts/single-value-grid/components/GlobalFontSizeVariables.sty.js.map +1 -1
  1135. package/esm/charts/timeseries/TimeseriesChart.js.map +2 -2
  1136. package/esm/charts/timeseries/TimeseriesChartInternal.js +39 -17
  1137. package/esm/charts/timeseries/TimeseriesChartInternal.js.map +2 -2
  1138. package/esm/charts/timeseries/components/axes/TimeseriesTimeBottomAxisArea/TimeseriesTimeBottomAxisArea.css +2 -2
  1139. package/esm/charts/timeseries/components/axes/TimeseriesTimeBottomAxisArea/TimeseriesTimeBottomAxisArea.sty.js +1 -1
  1140. package/esm/charts/timeseries/components/axes/TimeseriesTimeBottomAxisArea/TimeseriesTimeBottomAxisArea.sty.js.map +1 -1
  1141. package/esm/charts/timeseries/components/overlays/TimeseriesOverlays.css +4 -4
  1142. package/esm/charts/timeseries/components/overlays/TimeseriesOverlays.sty.js +4 -4
  1143. package/esm/charts/timeseries/components/overlays/TimeseriesOverlays.sty.js.map +1 -1
  1144. package/esm/charts/timeseries/components/thresholds/ThresholdIndicators.css +2 -2
  1145. package/esm/charts/timeseries/components/thresholds/ThresholdIndicators.sty.js +2 -2
  1146. package/esm/charts/timeseries/components/thresholds/ThresholdIndicators.sty.js.map +1 -1
  1147. package/esm/charts/top-list/TopList.css +1 -1
  1148. package/esm/charts/top-list/TopList.js +11 -7
  1149. package/esm/charts/top-list/TopList.js.map +2 -2
  1150. package/esm/charts/top-list/TopList.sty.js +1 -1
  1151. package/esm/charts/top-list/TopList.sty.js.map +1 -1
  1152. package/esm/charts/top-list/constants.js +2 -1
  1153. package/esm/charts/top-list/constants.js.map +2 -2
  1154. package/esm/charts/tree-map/TreeMap.js +10 -1
  1155. package/esm/charts/tree-map/TreeMap.js.map +2 -2
  1156. package/esm/charts/tree-map/components/TreeMapChartLayout.js +4 -4
  1157. package/esm/charts/tree-map/components/TreeMapChartLayout.js.map +2 -2
  1158. package/esm/charts/tree-map/components/TreeMapLegend/TreeMapCategoricalLegend.js +3 -1
  1159. package/esm/charts/tree-map/components/TreeMapLegend/TreeMapCategoricalLegend.js.map +2 -2
  1160. package/esm/charts/tree-map/components/TreeMapOverlay/TreeMapOverlay.css +1 -1
  1161. package/esm/charts/tree-map/components/TreeMapOverlay/TreeMapOverlay.js +2 -10
  1162. package/esm/charts/tree-map/components/TreeMapOverlay/TreeMapOverlay.js.map +2 -2
  1163. package/esm/charts/tree-map/components/TreeMapOverlay/TreeMapOverlay.sty.js +1 -1
  1164. package/esm/charts/tree-map/components/TreeMapOverlay/TreeMapOverlay.sty.js.map +1 -1
  1165. package/esm/charts/tree-map/components/TreeMapToolbar/TreeMapToolbar.js +2 -4
  1166. package/esm/charts/tree-map/components/TreeMapToolbar/TreeMapToolbar.js.map +2 -2
  1167. package/esm/charts/tree-map/components/canvas/TreeMapSquareRenderer.js +5 -2
  1168. package/esm/charts/tree-map/components/canvas/TreeMapSquareRenderer.js.map +2 -2
  1169. package/esm/charts/tree-map/constants.js +1 -2
  1170. package/esm/charts/tree-map/constants.js.map +2 -2
  1171. package/esm/charts/tree-map/context/TextSizeContext.js.map +2 -2
  1172. package/esm/charts/tree-map/hooks/useOverlayHandlers.js +7 -8
  1173. package/esm/charts/tree-map/hooks/useOverlayHandlers.js.map +2 -2
  1174. package/esm/charts/tree-map/hooks/useTreeMapChartConfig.js.map +2 -2
  1175. package/esm/charts/tree-map/hooks/useTreeMapChartHandlers.js +4 -1
  1176. package/esm/charts/tree-map/hooks/useTreeMapChartHandlers.js.map +2 -2
  1177. package/esm/charts/tree-map/providers/TreeMapChartProviders.js +1 -1
  1178. package/esm/charts/tree-map/providers/TreeMapChartProviders.js.map +2 -2
  1179. package/esm/charts/tree-map/store/selectors.js +1 -3
  1180. package/esm/charts/tree-map/store/selectors.js.map +2 -2
  1181. package/esm/charts/tree-map/store/store.js +0 -3
  1182. package/esm/charts/tree-map/store/store.js.map +2 -2
  1183. package/esm/charts/tree-map/utils/build-labels.js.map +2 -2
  1184. package/esm/charts/tree-map/utils/build-tree-map-chart-config.js.map +2 -2
  1185. package/esm/charts/tree-map/utils/get-legend-interaction-props.js +2 -2
  1186. package/esm/charts/tree-map/utils/get-legend-interaction-props.js.map +2 -2
  1187. package/esm/charts/tree-map/utils/to-hierarchical-props.js +88 -0
  1188. package/esm/charts/tree-map/utils/to-hierarchical-props.js.map +7 -0
  1189. package/esm/charts/xy-chart/XYChart.js +25 -12
  1190. package/esm/charts/xy-chart/XYChart.js.map +2 -2
  1191. package/esm/charts/xy-chart/XYChartRoot.js +4 -2
  1192. package/esm/charts/xy-chart/XYChartRoot.js.map +2 -2
  1193. package/esm/charts/xy-chart/components/axes/AxisArea.css +1 -1
  1194. package/esm/charts/xy-chart/components/axes/AxisArea.sty.js +1 -1
  1195. package/esm/charts/xy-chart/components/axes/AxisArea.sty.js.map +1 -1
  1196. package/esm/charts/xy-chart/components/axes/AxisTickWithTruncation.css +3 -3
  1197. package/esm/charts/xy-chart/components/axes/AxisTickWithTruncation.sty.js +3 -3
  1198. package/esm/charts/xy-chart/components/axes/AxisTickWithTruncation.sty.js.map +1 -1
  1199. package/esm/charts/xy-chart/components/axes/XTickWithTruncation.js.map +2 -2
  1200. package/esm/charts/xy-chart/components/axes/XYChartLeftAxisArea.js +6 -2
  1201. package/esm/charts/xy-chart/components/axes/XYChartLeftAxisArea.js.map +2 -2
  1202. package/esm/charts/xy-chart/components/axes/XYChartRightAxisArea.js +6 -2
  1203. package/esm/charts/xy-chart/components/axes/XYChartRightAxisArea.js.map +2 -2
  1204. package/esm/charts/xy-chart/components/axes/YTickWithTruncation.js.map +2 -2
  1205. package/esm/charts/xy-chart/components/axes/hooks/useXTickOffset.js.map +2 -2
  1206. package/esm/charts/xy-chart/components/axes/hooks/useYTickOffset.js.map +2 -2
  1207. package/esm/charts/xy-chart/components/displays/BarDisplay/BarLabelOverlay.css +3 -3
  1208. package/esm/charts/xy-chart/components/displays/BarDisplay/BarLabelOverlay.sty.js +3 -3
  1209. package/esm/charts/xy-chart/components/displays/BarDisplay/BarLabelOverlay.sty.js.map +1 -1
  1210. package/esm/charts/xy-chart/components/legend/XYLegend/xy-legend.css +1 -1
  1211. package/esm/charts/xy-chart/components/legend/XYLegend/xy-legend.sty.js +1 -1
  1212. package/esm/charts/xy-chart/components/legend/XYLegend/xy-legend.sty.js.map +1 -1
  1213. package/esm/charts/xy-chart/components/overlay/explore/HighlightedPointCanvas.js +32 -6
  1214. package/esm/charts/xy-chart/components/overlay/explore/HighlightedPointCanvas.js.map +2 -2
  1215. package/esm/charts/xy-chart/components/overlay/explore/XYChartCrosshair.css +1 -1
  1216. package/esm/charts/xy-chart/components/overlay/explore/XYChartCrosshair.sty.js +1 -1
  1217. package/esm/charts/xy-chart/components/overlay/explore/XYChartCrosshair.sty.js.map +1 -1
  1218. package/esm/charts/xy-chart/components/overlay/explore/XYChartExplore.css +2 -2
  1219. package/esm/charts/xy-chart/components/overlay/explore/XYChartExplore.sty.js +2 -2
  1220. package/esm/charts/xy-chart/components/overlay/explore/XYChartExplore.sty.js.map +1 -1
  1221. package/esm/charts/xy-chart/components/overlay/explore/XYChartLinearPoint.js +12 -6
  1222. package/esm/charts/xy-chart/components/overlay/explore/XYChartLinearPoint.js.map +2 -2
  1223. package/esm/charts/xy-chart/components/overlay/hooks/useOverlayEvents.js +4 -0
  1224. package/esm/charts/xy-chart/components/overlay/hooks/useOverlayEvents.js.map +2 -2
  1225. package/esm/charts/xy-chart/components/overlay/utils/draw-shape.js +19 -0
  1226. package/esm/charts/xy-chart/components/overlay/utils/draw-shape.js.map +2 -2
  1227. package/esm/charts/xy-chart/components/thresholds/XYChartThresholdIndicators.css +1 -1
  1228. package/esm/charts/xy-chart/components/thresholds/XYChartThresholdIndicators.sty.js +1 -1
  1229. package/esm/charts/xy-chart/components/thresholds/XYChartThresholdIndicators.sty.js.map +1 -1
  1230. package/esm/charts/xy-chart/components/tooltip/HoveredPointTooltip/hooks/getHoveredPointTooltipBodyContent.js +2 -2
  1231. package/esm/charts/xy-chart/components/tooltip/HoveredPointTooltip/hooks/getHoveredPointTooltipBodyContent.js.map +2 -2
  1232. package/esm/charts/xy-chart/components/tooltip/SharedXYChartTooltip/SharedXYChartTooltip.js +23 -22
  1233. package/esm/charts/xy-chart/components/tooltip/SharedXYChartTooltip/SharedXYChartTooltip.js.map +2 -2
  1234. package/esm/charts/xy-chart/components/tooltip/utils/get-cached-separator.js +15 -0
  1235. package/esm/charts/xy-chart/components/tooltip/utils/get-cached-separator.js.map +7 -0
  1236. package/esm/charts/xy-chart/components/tooltip/utils/get-tooltip-formatter.js +4 -2
  1237. package/esm/charts/xy-chart/components/tooltip/utils/get-tooltip-formatter.js.map +2 -2
  1238. package/esm/charts/xy-chart/components/tooltip/utils/tooltip-styles.css +5 -5
  1239. package/esm/charts/xy-chart/components/tooltip/utils/tooltip-styles.sty.js +4 -4
  1240. package/esm/charts/xy-chart/components/tooltip/utils/tooltip-styles.sty.js.map +1 -1
  1241. package/esm/charts/xy-chart/constants/defaults.js +2 -0
  1242. package/esm/charts/xy-chart/constants/defaults.js.map +2 -2
  1243. package/esm/charts/xy-chart/context/XYChartOverlayPerformance.context.js.map +2 -2
  1244. package/esm/charts/xy-chart/hooks/useBuildHoverGrid.js +38 -0
  1245. package/esm/charts/xy-chart/hooks/useBuildHoverGrid.js.map +7 -0
  1246. package/esm/charts/xy-chart/hooks/useBuildOverlayStrategy.js +88 -0
  1247. package/esm/charts/xy-chart/hooks/useBuildOverlayStrategy.js.map +7 -0
  1248. package/esm/charts/xy-chart/hooks/useXYChartDataProvider.js +10 -3
  1249. package/esm/charts/xy-chart/hooks/useXYChartDataProvider.js.map +3 -3
  1250. package/esm/charts/xy-chart/layout/XYChartLayout.css +2 -2
  1251. package/esm/charts/xy-chart/layout/XYChartLayout.sty.js +2 -2
  1252. package/esm/charts/xy-chart/layout/XYChartLayout.sty.js.map +1 -1
  1253. package/esm/charts/xy-chart/providers/XYChartAnnotationsShownIndicatorsProvider.js +7 -9
  1254. package/esm/charts/xy-chart/providers/XYChartAnnotationsShownIndicatorsProvider.js.map +2 -2
  1255. package/esm/charts/xy-chart/providers/XYChartAxesTicksProvider.js +41 -24
  1256. package/esm/charts/xy-chart/providers/XYChartAxesTicksProvider.js.map +2 -2
  1257. package/esm/charts/xy-chart/providers/XYChartOverlayPerformanceProvider.js +16 -61
  1258. package/esm/charts/xy-chart/providers/XYChartOverlayPerformanceProvider.js.map +2 -2
  1259. package/esm/charts/xy-chart/providers/XYChartScalesProvider.js +9 -2
  1260. package/esm/charts/xy-chart/providers/XYChartScalesProvider.js.map +2 -2
  1261. package/esm/charts/xy-chart/utils/build-axis-id-to-min-bar-size.js +28 -0
  1262. package/esm/charts/xy-chart/utils/build-axis-id-to-min-bar-size.js.map +7 -0
  1263. package/esm/charts/xy-chart/utils/build-sorted-entries.js +63 -10
  1264. package/esm/charts/xy-chart/utils/build-sorted-entries.js.map +2 -2
  1265. package/esm/charts/xy-chart/utils/filter-out-of-range-ticks.js +28 -0
  1266. package/esm/charts/xy-chart/utils/filter-out-of-range-ticks.js.map +7 -0
  1267. package/esm/charts/xy-chart/utils/generate-scales-by-axis-id.js +19 -3
  1268. package/esm/charts/xy-chart/utils/generate-scales-by-axis-id.js.map +2 -2
  1269. package/esm/charts/xy-chart/utils/get-ticks-formatted-by-config.js +11 -0
  1270. package/esm/charts/xy-chart/utils/get-ticks-formatted-by-config.js.map +2 -2
  1271. package/esm/charts/xy-chart/utils/query-hovered-grid.js +176 -0
  1272. package/esm/charts/xy-chart/utils/query-hovered-grid.js.map +7 -0
  1273. package/esm/charts/xy-chart/utils/query-shared.js +53 -23
  1274. package/esm/charts/xy-chart/utils/query-shared.js.map +2 -2
  1275. package/esm/charts/xy-chart-adoption/histogram/HistogramToXY.js +11 -50
  1276. package/esm/charts/xy-chart-adoption/histogram/HistogramToXY.js.map +2 -2
  1277. package/esm/charts/xy-chart-adoption/histogram/transformer-annotations-to-xy.js +3 -18
  1278. package/esm/charts/xy-chart-adoption/histogram/transformer-annotations-to-xy.js.map +3 -3
  1279. package/esm/charts/xy-chart-adoption/shared/types/legacy-props.js +1 -0
  1280. package/esm/charts/xy-chart-adoption/shared/types/legacy-props.js.map +7 -0
  1281. package/esm/charts/xy-chart-adoption/shared/types/props.js.map +7 -0
  1282. package/esm/charts/xy-chart-adoption/shared/utils/render-xy-annotations.js +70 -0
  1283. package/esm/charts/xy-chart-adoption/shared/utils/render-xy-annotations.js.map +7 -0
  1284. package/esm/charts/xy-chart-adoption/timeseries/TimeseriesToXY.js +81 -27
  1285. package/esm/charts/xy-chart-adoption/timeseries/TimeseriesToXY.js.map +2 -2
  1286. package/esm/charts/xy-chart-adoption/timeseries/iterate-slots.js +36 -1
  1287. package/esm/charts/xy-chart-adoption/timeseries/iterate-slots.js.map +2 -2
  1288. package/esm/charts/xy-chart-adoption/timeseries/resolve-value-representation.js +7 -0
  1289. package/esm/charts/xy-chart-adoption/timeseries/resolve-value-representation.js.map +7 -0
  1290. package/esm/charts/xy-chart-adoption/timeseries/transformer-annotations-to-xy.js +35 -0
  1291. package/esm/charts/xy-chart-adoption/timeseries/transformer-annotations-to-xy.js.map +7 -0
  1292. package/esm/charts/xy-chart-adoption/timeseries/transformer-data-to-xy.js +7 -6
  1293. package/esm/charts/xy-chart-adoption/timeseries/transformer-data-to-xy.js.map +2 -2
  1294. package/esm/charts/xy-chart-adoption/timeseries/types/timeseries.js.map +2 -2
  1295. package/esm/charts/xy-chart-adoption/timeseries/utils/build-buckets.js +60 -0
  1296. package/esm/charts/xy-chart-adoption/timeseries/utils/build-buckets.js.map +7 -0
  1297. package/esm/charts/xy-chart-adoption/timeseries/utils/collect-annotations-slots.js +58 -0
  1298. package/esm/charts/xy-chart-adoption/timeseries/utils/collect-annotations-slots.js.map +7 -0
  1299. package/esm/charts/xy-chart-adoption/timeseries/utils/map-axis-slots.js +43 -0
  1300. package/esm/charts/xy-chart-adoption/timeseries/utils/map-axis-slots.js.map +7 -0
  1301. package/esm/charts/xy-chart-adoption/timeseries/utils/render-series.js +6 -0
  1302. package/esm/charts/xy-chart-adoption/timeseries/utils/render-series.js.map +2 -2
  1303. package/esm/charts/xy-chart-adoption/timeseries/utils/resolve-gap-policy.js +16 -0
  1304. package/esm/charts/xy-chart-adoption/timeseries/utils/resolve-gap-policy.js.map +7 -0
  1305. package/esm/content/accordion/Accordion.css +14 -14
  1306. package/esm/content/accordion/Accordion.sty.js +8 -8
  1307. package/esm/content/accordion/Accordion.sty.js.map +1 -1
  1308. package/esm/content/ai-loading-indicator/AiLoadingIndicator.css +12 -12
  1309. package/esm/content/ai-loading-indicator/AiLoadingIndicator.sty.js +4 -4
  1310. package/esm/content/ai-loading-indicator/AiLoadingIndicator.sty.js.map +1 -1
  1311. package/esm/content/ai-response/AiResponse.css +5 -5
  1312. package/esm/content/ai-response/AiResponse.sty.js +3 -2
  1313. package/esm/content/ai-response/AiResponse.sty.js.map +2 -2
  1314. package/esm/content/avatar/Avatar.css +13 -13
  1315. package/esm/content/avatar/Avatar.sty.js +4 -4
  1316. package/esm/content/avatar/Avatar.sty.js.map +1 -1
  1317. package/esm/content/avatar-group/AvatarGroup.css +3 -3
  1318. package/esm/content/avatar-group/AvatarGroup.sty.js +2 -2
  1319. package/esm/content/avatar-group/AvatarGroup.sty.js.map +1 -1
  1320. package/esm/content/chip/BaseChip.css +40 -40
  1321. package/esm/content/chip/BaseChip.sty.js +5 -5
  1322. package/esm/content/chip/BaseChip.sty.js.map +1 -1
  1323. package/esm/content/chip/ChipContent.css +11 -11
  1324. package/esm/content/chip/ChipContent.sty.js +2 -2
  1325. package/esm/content/chip/ChipContent.sty.js.map +1 -1
  1326. package/esm/content/chip/ChipDeleteButton.css +19 -19
  1327. package/esm/content/chip/ChipDeleteButton.sty.js +4 -4
  1328. package/esm/content/chip/ChipDeleteButton.sty.js.map +1 -1
  1329. package/esm/content/chip/ChipKey.css +6 -6
  1330. package/esm/content/chip/ChipKey.sty.js +1 -1
  1331. package/esm/content/chip/ChipKey.sty.js.map +1 -1
  1332. package/esm/content/chip/GroupedChip.css +3 -3
  1333. package/esm/content/chip/GroupedChip.sty.js +3 -3
  1334. package/esm/content/chip/GroupedChip.sty.js.map +1 -1
  1335. package/esm/content/chip-group/ChipGroup.css +4 -4
  1336. package/esm/content/chip-group/ChipGroup.js +36 -49
  1337. package/esm/content/chip-group/ChipGroup.js.map +2 -2
  1338. package/esm/content/chip-group/ChipGroup.sty.js +1 -1
  1339. package/esm/content/chip-group/ChipGroup.sty.js.map +1 -1
  1340. package/esm/content/chip-group/Control.css +4 -4
  1341. package/esm/content/chip-group/Control.sty.js +1 -1
  1342. package/esm/content/chip-group/Control.sty.js.map +1 -1
  1343. package/esm/content/chip-group/chip-group-utils.js +34 -0
  1344. package/esm/content/chip-group/chip-group-utils.js.map +7 -0
  1345. package/esm/content/chip-group/state/chip-group-state-reducer.js.map +1 -1
  1346. package/esm/content/code-snippet/CodeHighlight.css +25 -26
  1347. package/esm/content/code-snippet/CodeHighlight.sty.js +10 -6
  1348. package/esm/content/code-snippet/CodeHighlight.sty.js.map +2 -2
  1349. package/esm/content/code-snippet/CodeSnippet.css +31 -5
  1350. package/esm/content/code-snippet/CodeSnippet.js +6 -2
  1351. package/esm/content/code-snippet/CodeSnippet.js.map +2 -2
  1352. package/esm/content/code-snippet/CodeSnippet.sty.js +8 -3
  1353. package/esm/content/code-snippet/CodeSnippet.sty.js.map +2 -2
  1354. package/esm/content/empty-state/EmptyState.css +28 -28
  1355. package/esm/content/empty-state/EmptyState.sty.js +7 -7
  1356. package/esm/content/empty-state/EmptyState.sty.js.map +1 -1
  1357. package/esm/content/empty-state/empty-state-utils.js +2 -9
  1358. package/esm/content/empty-state/empty-state-utils.js.map +2 -2
  1359. package/esm/content/empty-state/slot-components/Footer.css +1 -1
  1360. package/esm/content/empty-state/slot-components/Footer.sty.js +1 -1
  1361. package/esm/content/empty-state/slot-components/Footer.sty.js.map +1 -1
  1362. package/esm/content/empty-state/slot-components/Visual.css +3 -3
  1363. package/esm/content/empty-state/slot-components/Visual.sty.js +1 -1
  1364. package/esm/content/empty-state/slot-components/Visual.sty.js.map +1 -1
  1365. package/esm/content/expandable-text/ExpandableText.css +7 -7
  1366. package/esm/content/expandable-text/ExpandableText.sty.js +2 -2
  1367. package/esm/content/expandable-text/ExpandableText.sty.js.map +1 -1
  1368. package/esm/content/feature-highlight/FeatureHighlight.css +12 -12
  1369. package/esm/content/feature-highlight/FeatureHighlight.js +9 -5
  1370. package/esm/content/feature-highlight/FeatureHighlight.js.map +2 -2
  1371. package/esm/content/feature-highlight/FeatureHighlight.sty.js +3 -3
  1372. package/esm/content/feature-highlight/FeatureHighlight.sty.js.map +1 -1
  1373. package/esm/content/health-indicator/styles.css +23 -23
  1374. package/esm/content/health-indicator/styles.sty.js +1 -1
  1375. package/esm/content/health-indicator/styles.sty.js.map +1 -1
  1376. package/esm/content/index.js.map +2 -2
  1377. package/esm/content/information-overlay/InformationOverlay.css +25 -25
  1378. package/esm/content/information-overlay/InformationOverlay.sty.js +5 -5
  1379. package/esm/content/information-overlay/InformationOverlay.sty.js.map +1 -1
  1380. package/esm/content/keyboard-shortcut/KeyboardShortcut.css +14 -14
  1381. package/esm/content/keyboard-shortcut/KeyboardShortcut.sty.js +2 -2
  1382. package/esm/content/keyboard-shortcut/KeyboardShortcut.sty.js.map +1 -1
  1383. package/esm/content/markdown/Markdown.css +3 -3
  1384. package/esm/content/markdown/Markdown.sty.js +1 -1
  1385. package/esm/content/markdown/Markdown.sty.js.map +1 -1
  1386. package/esm/content/markdown/transformers/typography-mapping.css +9 -9
  1387. package/esm/content/markdown/transformers/typography-mapping.sty.js +6 -6
  1388. package/esm/content/markdown/transformers/typography-mapping.sty.js.map +1 -1
  1389. package/esm/content/microguide/Microguide.css +11 -11
  1390. package/esm/content/microguide/Microguide.sty.js +7 -7
  1391. package/esm/content/microguide/Microguide.sty.js.map +1 -1
  1392. package/esm/content/progress/ProgressBar.css +71 -71
  1393. package/esm/content/progress/ProgressBar.sty.js +5 -5
  1394. package/esm/content/progress/ProgressBar.sty.js.map +1 -1
  1395. package/esm/content/progress/ProgressBarIcon.css +2 -2
  1396. package/esm/content/progress/ProgressBarIcon.sty.js +1 -1
  1397. package/esm/content/progress/ProgressBarIcon.sty.js.map +1 -1
  1398. package/esm/content/progress/ProgressBarLabel.css +3 -3
  1399. package/esm/content/progress/ProgressBarLabel.sty.js +1 -1
  1400. package/esm/content/progress/ProgressBarLabel.sty.js.map +1 -1
  1401. package/esm/content/progress/ProgressBarValue.css +5 -5
  1402. package/esm/content/progress/ProgressBarValue.sty.js +1 -1
  1403. package/esm/content/progress/ProgressBarValue.sty.js.map +1 -1
  1404. package/esm/content/progress/ProgressCircle.css +40 -40
  1405. package/esm/content/progress/ProgressCircle.sty.js +5 -5
  1406. package/esm/content/progress/ProgressCircle.sty.js.map +1 -1
  1407. package/esm/content/release-phase-indicator/ReleasePhaseIndicator.js +4 -2
  1408. package/esm/content/release-phase-indicator/ReleasePhaseIndicator.js.map +2 -2
  1409. package/esm/content/release-phase-indicator/messages.js +5 -0
  1410. package/esm/content/release-phase-indicator/messages.js.map +2 -2
  1411. package/esm/content/shared-components/Visual.css +3 -3
  1412. package/esm/content/shared-components/Visual.sty.js +1 -1
  1413. package/esm/content/shared-components/Visual.sty.js.map +1 -1
  1414. package/esm/content/skeleton/Skeleton.css +7 -7
  1415. package/esm/content/skeleton/Skeleton.sty.js +5 -5
  1416. package/esm/content/skeleton/Skeleton.sty.js.map +1 -1
  1417. package/esm/content/terminology-overlay/TerminologyOverlay.css +4 -4
  1418. package/esm/content/terminology-overlay/TerminologyOverlay.sty.js +1 -1
  1419. package/esm/content/terminology-overlay/TerminologyOverlay.sty.js.map +1 -1
  1420. package/esm/core/components/app-root/AppRoot.css +12 -2
  1421. package/esm/core/components/app-root/AppRoot.js +3 -2
  1422. package/esm/core/components/app-root/AppRoot.js.map +2 -2
  1423. package/esm/core/components/app-root/AppRoot.sty.js +1 -1
  1424. package/esm/core/components/app-root/AppRoot.sty.js.map +1 -1
  1425. package/esm/core/components/app-root/visual-refresh-overrides.js +6 -0
  1426. package/esm/core/components/app-root/visual-refresh-overrides.js.map +2 -2
  1427. package/esm/core/components/error-fallback/ErrorFallback.js.map +7 -0
  1428. package/esm/{filters/filter-field → core/components}/error-fallback/messages.js +4 -4
  1429. package/esm/core/components/error-fallback/messages.js.map +7 -0
  1430. package/esm/core/components/visually-hidden/VisuallyHidden.css +1 -1
  1431. package/esm/core/components/visually-hidden/VisuallyHidden.sty.js +1 -1
  1432. package/esm/core/components/visually-hidden/VisuallyHidden.sty.js.map +1 -1
  1433. package/esm/core/dql/dql-common.js +6 -2
  1434. package/esm/core/dql/dql-common.js.map +2 -2
  1435. package/esm/core/hooks/useVisualRefreshEnabled.js +14 -0
  1436. package/esm/core/hooks/useVisualRefreshEnabled.js.map +7 -0
  1437. package/esm/core/index.js +12 -0
  1438. package/esm/core/index.js.map +2 -2
  1439. package/esm/core/sdk/app-state/AppStateContext.js +40 -0
  1440. package/esm/core/sdk/app-state/AppStateContext.js.map +7 -0
  1441. package/esm/core/sdk/app-state/AppStateProvider.js +94 -0
  1442. package/esm/core/sdk/app-state/AppStateProvider.js.map +7 -0
  1443. package/esm/core/sdk/app-state/app-state-store.js +15 -0
  1444. package/esm/core/sdk/app-state/app-state-store.js.map +7 -0
  1445. package/esm/core/sdk/app-state/useAppState.js +26 -0
  1446. package/esm/core/sdk/app-state/useAppState.js.map +7 -0
  1447. package/esm/core/sdk/app-state/useAppStateInternal.js +199 -0
  1448. package/esm/core/sdk/app-state/useAppStateInternal.js.map +7 -0
  1449. package/esm/core/sdk/app-state/useAppStateValue.js +14 -0
  1450. package/esm/core/sdk/app-state/useAppStateValue.js.map +7 -0
  1451. package/esm/core/sdk/sdk-logger.js +2 -2
  1452. package/esm/core/styles/defaultChartValues.css +1 -1
  1453. package/esm/core/styles/defaultChartValues.sty.js +1 -1
  1454. package/esm/core/styles/defaultChartValues.sty.js.map +1 -1
  1455. package/esm/core/styles/focusRing.css +66 -66
  1456. package/esm/core/styles/focusRing.sty.js +2 -2
  1457. package/esm/core/styles/focusRing.sty.js.map +1 -1
  1458. package/esm/core/styles/focusRingStatic.css +34 -34
  1459. package/esm/core/styles/focusRingStatic.sty.js +1 -1
  1460. package/esm/core/styles/focusRingStatic.sty.js.map +1 -1
  1461. package/esm/core/styles/virtualFocus.css +2 -2
  1462. package/esm/core/styles/virtualFocus.sty.js +1 -1
  1463. package/esm/core/styles/virtualFocus.sty.js.map +1 -1
  1464. package/esm/core/time/timeframeStore/actions/dateTimePicker.js +5 -4
  1465. package/esm/core/time/timeframeStore/actions/dateTimePicker.js.map +2 -2
  1466. package/esm/core/time/validation.js +49 -4
  1467. package/esm/core/time/validation.js.map +2 -2
  1468. package/esm/core/utils/colorUtils.css +60 -60
  1469. package/esm/core/utils/colorUtils.sty.js +2 -2
  1470. package/esm/core/utils/colorUtils.sty.js.map +1 -1
  1471. package/esm/{charts/core → core}/utils/get-tick-value-as-number.js.map +1 -1
  1472. package/esm/core/utils/get-ticks.js +12 -0
  1473. package/esm/core/utils/get-ticks.js.map +7 -0
  1474. package/esm/editors/base-code-editor/BaseCodeEditor.css +147 -135
  1475. package/esm/editors/base-code-editor/BaseCodeEditor.js +151 -5
  1476. package/esm/editors/base-code-editor/BaseCodeEditor.js.map +2 -2
  1477. package/esm/editors/base-code-editor/BaseCodeEditor.sty.js +2 -2
  1478. package/esm/editors/base-code-editor/BaseCodeEditor.sty.js.map +1 -1
  1479. package/esm/editors/base-code-editor/configuration/configure-format-keymap.js +22 -0
  1480. package/esm/editors/base-code-editor/configuration/configure-format-keymap.js.map +7 -0
  1481. package/esm/editors/base-code-editor/configuration/configure-placeholder.js +34 -3
  1482. package/esm/editors/base-code-editor/configuration/configure-placeholder.js.map +2 -2
  1483. package/esm/editors/base-code-editor/configuration/getDefaultConfigurations.js +105 -7
  1484. package/esm/editors/base-code-editor/configuration/getDefaultConfigurations.js.map +3 -3
  1485. package/esm/editors/base-code-editor/utils/key-maps.js +2 -0
  1486. package/esm/editors/base-code-editor/utils/key-maps.js.map +2 -2
  1487. package/esm/editors/code-editor/CodeEditor.js +26 -2
  1488. package/esm/editors/code-editor/CodeEditor.js.map +2 -2
  1489. package/esm/editors/dql-editor/DQLEditor.js +57 -4
  1490. package/esm/editors/dql-editor/DQLEditor.js.map +2 -2
  1491. package/esm/editors/dql-editor/actions-menu/ActionsMenu.css +23 -13
  1492. package/esm/editors/dql-editor/actions-menu/ActionsMenu.js +8 -1
  1493. package/esm/editors/dql-editor/actions-menu/ActionsMenu.js.map +2 -2
  1494. package/esm/editors/dql-editor/actions-menu/ActionsMenu.sty.js +5 -4
  1495. package/esm/editors/dql-editor/actions-menu/ActionsMenu.sty.js.map +2 -2
  1496. package/esm/editors/dql-editor/actions-menu/actions-menu-messages.js +5 -0
  1497. package/esm/editors/dql-editor/actions-menu/actions-menu-messages.js.map +2 -2
  1498. package/esm/editors/dql-editor/dql/SuggestionPart.css +1 -1
  1499. package/esm/editors/dql-editor/dql/SuggestionPart.sty.js +1 -1
  1500. package/esm/editors/dql-editor/dql/SuggestionPart.sty.js.map +1 -1
  1501. package/esm/editors/dql-editor/dql/SuggestionsInfoSection.css +7 -7
  1502. package/esm/editors/dql-editor/dql/SuggestionsInfoSection.js +10 -1
  1503. package/esm/editors/dql-editor/dql/SuggestionsInfoSection.js.map +2 -2
  1504. package/esm/editors/dql-editor/dql/SuggestionsInfoSection.sty.js +3 -3
  1505. package/esm/editors/dql-editor/dql/SuggestionsInfoSection.sty.js.map +1 -1
  1506. package/esm/editors/dql-editor/dql/open-autocomplete.js +21 -3
  1507. package/esm/editors/dql-editor/dql/open-autocomplete.js.map +2 -2
  1508. package/esm/editors/dql-editor/dql/suggestion-autocompletions.js +3 -0
  1509. package/esm/editors/dql-editor/dql/suggestion-autocompletions.js.map +2 -2
  1510. package/esm/editors/index.js.map +2 -2
  1511. package/esm/filters/filter-field/FilterField.css +151 -119
  1512. package/esm/filters/filter-field/FilterField.js +78 -4
  1513. package/esm/filters/filter-field/FilterField.js.map +2 -2
  1514. package/esm/filters/filter-field/FilterField.sty.js +28 -28
  1515. package/esm/filters/filter-field/FilterField.sty.js.map +1 -1
  1516. package/esm/filters/filter-field/components/FilterFieldSuffixButtons.css +3 -3
  1517. package/esm/filters/filter-field/components/FilterFieldSuffixButtons.sty.js +3 -3
  1518. package/esm/filters/filter-field/components/FilterFieldSuffixButtons.sty.js.map +1 -1
  1519. package/esm/filters/filter-field/components/FilterStatement.css +13 -13
  1520. package/esm/filters/filter-field/components/FilterStatement.sty.js +6 -6
  1521. package/esm/filters/filter-field/components/FilterStatement.sty.js.map +1 -1
  1522. package/esm/filters/filter-field/hooks/recent-and-pinned/usePinnedFilterSuggestions.js +1 -1
  1523. package/esm/filters/filter-field/hooks/recent-and-pinned/usePinnedFilterSuggestions.js.map +2 -2
  1524. package/esm/filters/filter-field/hooks/recent-and-pinned/usePinnedFilters.js +35 -28
  1525. package/esm/filters/filter-field/hooks/recent-and-pinned/usePinnedFilters.js.map +2 -2
  1526. package/esm/filters/filter-field/hooks/recent-and-pinned/useRecentFilters.js +24 -22
  1527. package/esm/filters/filter-field/hooks/recent-and-pinned/useRecentFilters.js.map +2 -2
  1528. package/esm/filters/filter-field/hooks/useSuggestions.js +2 -7
  1529. package/esm/filters/filter-field/hooks/useSuggestions.js.map +2 -2
  1530. package/esm/filters/filter-field/state/recent-pinned-store.js +11 -51
  1531. package/esm/filters/filter-field/state/recent-pinned-store.js.map +2 -2
  1532. package/esm/filters/filter-field/suggestions/RecentPinnedSuggestionItem.css +9 -9
  1533. package/esm/filters/filter-field/suggestions/RecentPinnedSuggestionItem.sty.js +2 -2
  1534. package/esm/filters/filter-field/suggestions/RecentPinnedSuggestionItem.sty.js.map +1 -1
  1535. package/esm/filters/filter-field/suggestions/Suggestion.css +24 -24
  1536. package/esm/filters/filter-field/suggestions/Suggestion.sty.js +16 -16
  1537. package/esm/filters/filter-field/suggestions/Suggestion.sty.js.map +1 -1
  1538. package/esm/filters/filter-field/suggestions/SuggestionDetails.css +2 -2
  1539. package/esm/filters/filter-field/suggestions/SuggestionDetails.sty.js +2 -2
  1540. package/esm/filters/filter-field/suggestions/SuggestionDetails.sty.js.map +1 -1
  1541. package/esm/filters/filter-field/suggestions/SuggestionGroup.css +6 -6
  1542. package/esm/filters/filter-field/suggestions/SuggestionGroup.sty.js +3 -3
  1543. package/esm/filters/filter-field/suggestions/SuggestionGroup.sty.js.map +1 -1
  1544. package/esm/filters/filter-field/suggestions/SuggestionGroupLabel.css +1 -1
  1545. package/esm/filters/filter-field/suggestions/SuggestionGroupLabel.sty.js +1 -1
  1546. package/esm/filters/filter-field/suggestions/SuggestionGroupLabel.sty.js.map +1 -1
  1547. package/esm/filters/filter-field/suggestions/SuggestionPin.js +5 -9
  1548. package/esm/filters/filter-field/suggestions/SuggestionPin.js.map +2 -2
  1549. package/esm/filters/filter-field/suggestions/SuggestionTips.css +7 -7
  1550. package/esm/filters/filter-field/suggestions/SuggestionTips.sty.js +5 -5
  1551. package/esm/filters/filter-field/suggestions/SuggestionTips.sty.js.map +1 -1
  1552. package/esm/filters/filter-field/suggestions/SuggestionsOverlay.css +7 -7
  1553. package/esm/filters/filter-field/suggestions/SuggestionsOverlay.sty.js +5 -5
  1554. package/esm/filters/filter-field/suggestions/SuggestionsOverlay.sty.js.map +1 -1
  1555. package/esm/filters/segment-selector/SegmentSelector.css +4 -4
  1556. package/esm/filters/segment-selector/SegmentSelector.js +100 -9
  1557. package/esm/filters/segment-selector/SegmentSelector.js.map +2 -2
  1558. package/esm/filters/segment-selector/SegmentSelector.sty.js +4 -4
  1559. package/esm/filters/segment-selector/SegmentSelector.sty.js.map +1 -1
  1560. package/esm/filters/segment-selector/contexts/SegmentsUI/segmentValidationHelper.js +6 -3
  1561. package/esm/filters/segment-selector/contexts/SegmentsUI/segmentValidationHelper.js.map +2 -2
  1562. package/esm/filters/segment-selector/parts/EmptySegments.css +1 -1
  1563. package/esm/filters/segment-selector/parts/EmptySegments.sty.js +1 -1
  1564. package/esm/filters/segment-selector/parts/EmptySegments.sty.js.map +1 -1
  1565. package/esm/filters/segment-selector/parts/Overlay.css +8 -8
  1566. package/esm/filters/segment-selector/parts/Overlay.js +2 -1
  1567. package/esm/filters/segment-selector/parts/Overlay.js.map +2 -2
  1568. package/esm/filters/segment-selector/parts/Overlay.sty.js +8 -8
  1569. package/esm/filters/segment-selector/parts/Overlay.sty.js.map +1 -1
  1570. package/esm/filters/segment-selector/parts/ShowMorePanel/ShowMorePanel.css +4 -4
  1571. package/esm/filters/segment-selector/parts/ShowMorePanel/ShowMorePanel.sty.js +4 -4
  1572. package/esm/filters/segment-selector/parts/ShowMorePanel/ShowMorePanel.sty.js.map +1 -1
  1573. package/esm/filters/segment-selector/parts/segmentsPresets/SegmentsPresets.css +32 -32
  1574. package/esm/filters/segment-selector/parts/segmentsPresets/SegmentsPresets.sty.js +10 -10
  1575. package/esm/filters/segment-selector/parts/segmentsPresets/SegmentsPresets.sty.js.map +1 -1
  1576. package/esm/filters/segment-selector/parts/selectionBar/SegmentSelect.css +22 -22
  1577. package/esm/filters/segment-selector/parts/selectionBar/SegmentSelect.sty.js +7 -7
  1578. package/esm/filters/segment-selector/parts/selectionBar/SegmentSelect.sty.js.map +1 -1
  1579. package/esm/filters/segment-selector/parts/selectionBar/SegmentSelectorTrigger.css +1 -1
  1580. package/esm/filters/segment-selector/parts/selectionBar/SegmentSelectorTrigger.sty.js +1 -1
  1581. package/esm/filters/segment-selector/parts/selectionBar/SegmentSelectorTrigger.sty.js.map +1 -1
  1582. package/esm/filters/segment-selector/parts/selectionBar/SelectionBar.js +13 -10
  1583. package/esm/filters/segment-selector/parts/selectionBar/SelectionBar.js.map +2 -2
  1584. package/esm/filters/segment-selector/parts/selectionBar/ValueSelect.js +68 -27
  1585. package/esm/filters/segment-selector/parts/selectionBar/ValueSelect.js.map +2 -2
  1586. package/esm/filters/timeframe-selector/TimeframeSelector.css +2 -2
  1587. package/esm/filters/timeframe-selector/TimeframeSelector.js +4 -0
  1588. package/esm/filters/timeframe-selector/TimeframeSelector.js.map +2 -2
  1589. package/esm/filters/timeframe-selector/TimeframeSelector.sty.js +2 -2
  1590. package/esm/filters/timeframe-selector/TimeframeSelector.sty.js.map +1 -1
  1591. package/esm/filters/timeframe-selector/TimeframeSelectorRoot.js +181 -5
  1592. package/esm/filters/timeframe-selector/TimeframeSelectorRoot.js.map +2 -2
  1593. package/esm/filters/timeframe-selector/components/custom-timeframe-selector/CustomTimeframeSelector.css +4 -4
  1594. package/esm/filters/timeframe-selector/components/custom-timeframe-selector/CustomTimeframeSelector.sty.js +3 -3
  1595. package/esm/filters/timeframe-selector/components/custom-timeframe-selector/CustomTimeframeSelector.sty.js.map +1 -1
  1596. package/esm/filters/timeframe-selector/components/overlay/TimeframeSelectorOverlay.css +4 -4
  1597. package/esm/filters/timeframe-selector/components/overlay/TimeframeSelectorOverlay.sty.js +4 -4
  1598. package/esm/filters/timeframe-selector/components/overlay/TimeframeSelectorOverlay.sty.js.map +1 -1
  1599. package/esm/filters/timeframe-selector/components/presets/Presets.css +27 -27
  1600. package/esm/filters/timeframe-selector/components/presets/Presets.sty.js +11 -11
  1601. package/esm/filters/timeframe-selector/components/presets/Presets.sty.js.map +1 -1
  1602. package/esm/filters/timeframe-selector/components/trigger/Trigger.css +11 -11
  1603. package/esm/filters/timeframe-selector/components/trigger/Trigger.js +2 -2
  1604. package/esm/filters/timeframe-selector/components/trigger/Trigger.js.map +2 -2
  1605. package/esm/filters/timeframe-selector/components/trigger/Trigger.sty.js +4 -4
  1606. package/esm/filters/timeframe-selector/components/trigger/Trigger.sty.js.map +1 -1
  1607. package/esm/forms/_base-input/BaseInput.css +99 -99
  1608. package/esm/forms/_base-input/BaseInput.js +32 -5
  1609. package/esm/forms/_base-input/BaseInput.js.map +2 -2
  1610. package/esm/forms/_base-input/BaseInput.sty.js +11 -11
  1611. package/esm/forms/_base-input/BaseInput.sty.js.map +1 -1
  1612. package/esm/forms/_base-input/BaseInputContent.css +7 -7
  1613. package/esm/forms/_base-input/BaseInputContent.sty.js +1 -1
  1614. package/esm/forms/_base-input/BaseInputContent.sty.js.map +1 -1
  1615. package/esm/forms/calendar/Calendar.css +48 -48
  1616. package/esm/forms/calendar/Calendar.sty.js +12 -12
  1617. package/esm/forms/calendar/Calendar.sty.js.map +1 -1
  1618. package/esm/forms/calendar/CalendarRoot.js +69 -14
  1619. package/esm/forms/calendar/CalendarRoot.js.map +2 -2
  1620. package/esm/forms/calendar/components/CalendarItem.css +7 -7
  1621. package/esm/forms/calendar/components/CalendarItem.sty.js +4 -4
  1622. package/esm/forms/calendar/components/CalendarItem.sty.js.map +1 -1
  1623. package/esm/forms/calendar/components/CalendarOutlineIcon.css +8 -8
  1624. package/esm/forms/calendar/components/CalendarOutlineIcon.sty.js +5 -5
  1625. package/esm/forms/calendar/components/CalendarOutlineIcon.sty.js.map +1 -1
  1626. package/esm/forms/calendar/variables.sty.js +2 -2
  1627. package/esm/forms/calendar/variables.sty.js.map +1 -1
  1628. package/esm/forms/checkbox/Checkbox.css +20 -20
  1629. package/esm/forms/checkbox/Checkbox.js +35 -8
  1630. package/esm/forms/checkbox/Checkbox.js.map +2 -2
  1631. package/esm/forms/checkbox/Checkbox.sty.js +3 -3
  1632. package/esm/forms/checkbox/Checkbox.sty.js.map +1 -1
  1633. package/esm/forms/date-time-picker/DateSelector.js +2 -2
  1634. package/esm/forms/date-time-picker/DateSelector.js.map +2 -2
  1635. package/esm/forms/date-time-picker/DateTimePicker.css +75 -75
  1636. package/esm/forms/date-time-picker/DateTimePicker.js +9 -4
  1637. package/esm/forms/date-time-picker/DateTimePicker.js.map +2 -2
  1638. package/esm/forms/date-time-picker/DateTimePicker.sty.js +6 -6
  1639. package/esm/forms/date-time-picker/DateTimePicker.sty.js.map +1 -1
  1640. package/esm/forms/date-time-picker/DateTimePickerRoot.js +70 -3
  1641. package/esm/forms/date-time-picker/DateTimePickerRoot.js.map +2 -2
  1642. package/esm/forms/date-time-range-picker/DateRangeSelector.css +1 -1
  1643. package/esm/forms/date-time-range-picker/DateRangeSelector.js +3 -3
  1644. package/esm/forms/date-time-range-picker/DateRangeSelector.js.map +2 -2
  1645. package/esm/forms/date-time-range-picker/DateRangeSelector.sty.js +1 -1
  1646. package/esm/forms/date-time-range-picker/DateRangeSelector.sty.js.map +1 -1
  1647. package/esm/forms/date-time-range-picker/DateTimeInput.css +11 -11
  1648. package/esm/forms/date-time-range-picker/DateTimeInput.js +25 -3
  1649. package/esm/forms/date-time-range-picker/DateTimeInput.js.map +2 -2
  1650. package/esm/forms/date-time-range-picker/DateTimeInput.sty.js +3 -3
  1651. package/esm/forms/date-time-range-picker/DateTimeInput.sty.js.map +1 -1
  1652. package/esm/forms/date-time-range-picker/DateTimeRangePicker.css +27 -27
  1653. package/esm/forms/date-time-range-picker/DateTimeRangePicker.sty.js +4 -4
  1654. package/esm/forms/date-time-range-picker/DateTimeRangePicker.sty.js.map +1 -1
  1655. package/esm/forms/date-time-range-picker/DateTimeRangePickerRoot.js +111 -3
  1656. package/esm/forms/date-time-range-picker/DateTimeRangePickerRoot.js.map +2 -2
  1657. package/esm/forms/forms-core/components/field-set/FieldSet.css +2 -2
  1658. package/esm/forms/forms-core/components/field-set/FieldSet.sty.js +2 -2
  1659. package/esm/forms/forms-core/components/field-set/FieldSet.sty.js.map +1 -1
  1660. package/esm/forms/forms-core/components/form-field/FormField.sty.js +1 -1
  1661. package/esm/forms/forms-core/components/form-field/FormField.sty.js.map +1 -1
  1662. package/esm/forms/forms-core/components/form-field-messages/FormFieldMessageItem.css +5 -5
  1663. package/esm/forms/forms-core/components/form-field-messages/FormFieldMessageItem.js +9 -5
  1664. package/esm/forms/forms-core/components/form-field-messages/FormFieldMessageItem.js.map +2 -2
  1665. package/esm/forms/forms-core/components/form-field-messages/FormFieldMessageItem.sty.js +2 -2
  1666. package/esm/forms/forms-core/components/form-field-messages/FormFieldMessageItem.sty.js.map +1 -1
  1667. package/esm/forms/forms-core/components/form-field-messages/FormFieldMessages.sty.js +1 -1
  1668. package/esm/forms/forms-core/components/form-field-messages/FormFieldMessages.sty.js.map +1 -1
  1669. package/esm/forms/forms-core/components/label/Label.css +5 -5
  1670. package/esm/forms/forms-core/components/label/Label.sty.js +2 -2
  1671. package/esm/forms/forms-core/components/label/Label.sty.js.map +1 -1
  1672. package/esm/forms/forms-core/hooks/useFormFieldValidation.js +127 -48
  1673. package/esm/forms/forms-core/hooks/useFormFieldValidation.js.map +2 -2
  1674. package/esm/forms/forms-core/state/formfield-messages-state-reducer.js +10 -0
  1675. package/esm/forms/forms-core/state/formfield-messages-state-reducer.js.map +2 -2
  1676. package/esm/forms/hooks/useAutofillEvent.css +8 -8
  1677. package/esm/forms/hooks/useAutofillEvent.sty.js +4 -4
  1678. package/esm/forms/hooks/useAutofillEvent.sty.js.map +1 -1
  1679. package/esm/forms/index.js +10 -0
  1680. package/esm/forms/index.js.map +2 -2
  1681. package/esm/forms/number-input-v2/NumberInput.js +163 -18
  1682. package/esm/forms/number-input-v2/NumberInput.js.map +2 -2
  1683. package/esm/forms/number-input-v2/utils/validation.js.map +2 -2
  1684. package/esm/forms/radio/Radio.js +19 -3
  1685. package/esm/forms/radio/Radio.js.map +2 -2
  1686. package/esm/forms/radio/RadioGroup.js +42 -5
  1687. package/esm/forms/radio/RadioGroup.js.map +2 -2
  1688. package/esm/forms/radio/RadioGroupContext.js.map +2 -2
  1689. package/esm/forms/radio/styles.css +18 -18
  1690. package/esm/forms/radio/styles.sty.js +8 -8
  1691. package/esm/forms/radio/styles.sty.js.map +1 -1
  1692. package/esm/forms/search-input/SearchInput.css +2 -2
  1693. package/esm/forms/search-input/SearchInput.sty.js +1 -1
  1694. package/esm/forms/search-input/SearchInput.sty.js.map +1 -1
  1695. package/esm/forms/search-input/Stepper.css +5 -5
  1696. package/esm/forms/search-input/Stepper.sty.js +3 -3
  1697. package/esm/forms/search-input/Stepper.sty.js.map +1 -1
  1698. package/esm/forms/select/Select.js +74 -18
  1699. package/esm/forms/select/Select.js.map +2 -2
  1700. package/esm/forms/select/components/Control.js +3 -3
  1701. package/esm/forms/select/components/Control.js.map +2 -2
  1702. package/esm/forms/select/components/HiddenSelect.js +8 -6
  1703. package/esm/forms/select/components/HiddenSelect.js.map +2 -2
  1704. package/esm/forms/select/components/MenuList.js +6 -1
  1705. package/esm/forms/select/components/MenuList.js.map +2 -2
  1706. package/esm/forms/select/components/Option.js +12 -3
  1707. package/esm/forms/select/components/Option.js.map +2 -2
  1708. package/esm/forms/select/styles/Select.css +46 -46
  1709. package/esm/forms/select/styles/Select.sty.js +24 -24
  1710. package/esm/forms/select/styles/Select.sty.js.map +1 -1
  1711. package/esm/forms/shared-types.js.map +2 -2
  1712. package/esm/forms/spin-buttons/SpinButton.css +8 -8
  1713. package/esm/forms/spin-buttons/SpinButton.sty.js +2 -2
  1714. package/esm/forms/spin-buttons/SpinButton.sty.js.map +1 -1
  1715. package/esm/forms/switch/Switch.css +36 -36
  1716. package/esm/forms/switch/Switch.js +39 -6
  1717. package/esm/forms/switch/Switch.js.map +2 -2
  1718. package/esm/forms/switch/Switch.sty.js +5 -5
  1719. package/esm/forms/switch/Switch.sty.js.map +1 -1
  1720. package/esm/forms/text-area/TextArea.css +59 -59
  1721. package/esm/forms/text-area/TextArea.js +33 -2
  1722. package/esm/forms/text-area/TextArea.js.map +2 -2
  1723. package/esm/forms/text-area/TextArea.sty.js +3 -3
  1724. package/esm/forms/text-area/TextArea.sty.js.map +1 -1
  1725. package/esm/forms/text-input/TextInput.js.map +2 -2
  1726. package/esm/forms/toggle-button-group/Item.js +17 -3
  1727. package/esm/forms/toggle-button-group/Item.js.map +2 -2
  1728. package/esm/forms/toggle-button-group/ToggleButtonGroup.js +43 -7
  1729. package/esm/forms/toggle-button-group/ToggleButtonGroup.js.map +2 -2
  1730. package/esm/forms/toggle-button-group/contexts/ToggleButtonGroupContext.js.map +2 -2
  1731. package/esm/forms/toggle-button-group/styles.css +58 -58
  1732. package/esm/forms/toggle-button-group/styles.sty.js +15 -15
  1733. package/esm/forms/toggle-button-group/styles.sty.js.map +1 -1
  1734. package/esm/forms/validation/types.js +63 -0
  1735. package/esm/forms/validation/types.js.map +7 -0
  1736. package/esm/forms/validation/useCustomMessageEmitter.js +83 -0
  1737. package/esm/forms/validation/useCustomMessageEmitter.js.map +7 -0
  1738. package/esm/forms/validation/useValidationStateEmitter.js +31 -0
  1739. package/esm/forms/validation/useValidationStateEmitter.js.map +7 -0
  1740. package/esm/forms/validation/validation-builders.js +56 -0
  1741. package/esm/forms/validation/validation-builders.js.map +7 -0
  1742. package/esm/layouts/app-header/AppHeader.css +1 -1
  1743. package/esm/layouts/app-header/AppHeader.sty.js +1 -1
  1744. package/esm/layouts/app-header/AppHeader.sty.js.map +1 -1
  1745. package/esm/layouts/app-header/Logo.js +3 -1
  1746. package/esm/layouts/app-header/Logo.js.map +2 -2
  1747. package/esm/layouts/app-header/Navigation.css +9 -9
  1748. package/esm/layouts/app-header/Navigation.sty.js +5 -5
  1749. package/esm/layouts/app-header/Navigation.sty.js.map +1 -1
  1750. package/esm/layouts/app-header/action-group/ActionButton.css +17 -17
  1751. package/esm/layouts/app-header/action-group/ActionButton.sty.js +3 -3
  1752. package/esm/layouts/app-header/action-group/ActionButton.sty.js.map +1 -1
  1753. package/esm/layouts/app-header/action-group/ActionGroup.css +1 -1
  1754. package/esm/layouts/app-header/action-group/ActionGroup.sty.js +1 -1
  1755. package/esm/layouts/app-header/action-group/ActionGroup.sty.js.map +1 -1
  1756. package/esm/layouts/app-header/action-group/NavItem.css +4 -4
  1757. package/esm/layouts/app-header/action-group/NavItem.sty.js +3 -3
  1758. package/esm/layouts/app-header/action-group/NavItem.sty.js.map +1 -1
  1759. package/esm/layouts/app-header/app-icon/AppIcon.css +4 -4
  1760. package/esm/layouts/app-header/app-icon/AppIcon.sty.js +1 -1
  1761. package/esm/layouts/app-header/app-icon/AppIcon.sty.js.map +1 -1
  1762. package/esm/layouts/container/Container.css +5 -5
  1763. package/esm/layouts/container/Container.sty.js +1 -1
  1764. package/esm/layouts/container/Container.sty.js.map +1 -1
  1765. package/esm/layouts/divider/Divider.css +6 -6
  1766. package/esm/layouts/divider/Divider.sty.js +1 -1
  1767. package/esm/layouts/divider/Divider.sty.js.map +1 -1
  1768. package/esm/layouts/index.js.map +2 -2
  1769. package/esm/layouts/input-group/InputGroup.css +23 -23
  1770. package/esm/layouts/input-group/InputGroup.sty.js +1 -1
  1771. package/esm/layouts/input-group/InputGroup.sty.js.map +1 -1
  1772. package/esm/layouts/page/DetailView.css +3 -3
  1773. package/esm/layouts/page/DetailView.js.map +2 -2
  1774. package/esm/layouts/page/DetailView.sty.js +2 -2
  1775. package/esm/layouts/page/DetailView.sty.js.map +1 -1
  1776. package/esm/layouts/page/Header.css +2 -2
  1777. package/esm/layouts/page/Header.js.map +2 -2
  1778. package/esm/layouts/page/Header.sty.js +1 -1
  1779. package/esm/layouts/page/Header.sty.js.map +1 -1
  1780. package/esm/layouts/page/Main.css +6 -6
  1781. package/esm/layouts/page/Main.js.map +2 -2
  1782. package/esm/layouts/page/Main.sty.js +4 -4
  1783. package/esm/layouts/page/Main.sty.js.map +1 -1
  1784. package/esm/layouts/page/Page.css +2 -2
  1785. package/esm/layouts/page/Page.js.map +2 -2
  1786. package/esm/layouts/page/Page.sty.js +1 -1
  1787. package/esm/layouts/page/Page.sty.js.map +1 -1
  1788. package/esm/layouts/page/PanelControlButton.js.map +2 -2
  1789. package/esm/layouts/page/Sidebar.css +71 -22
  1790. package/esm/layouts/page/Sidebar.js +2 -0
  1791. package/esm/layouts/page/Sidebar.js.map +2 -2
  1792. package/esm/layouts/page/Sidebar.sty.js +8 -8
  1793. package/esm/layouts/page/Sidebar.sty.js.map +1 -1
  1794. package/esm/layouts/page/page-types.js.map +2 -2
  1795. package/esm/layouts/page/panel-types.js.map +2 -2
  1796. package/esm/layouts/page/panel.css +19 -19
  1797. package/esm/layouts/page/panel.sty.js +10 -10
  1798. package/esm/layouts/page/panel.sty.js.map +1 -1
  1799. package/esm/layouts/page-layout/PageLayout.css +10 -10
  1800. package/esm/layouts/page-layout/PageLayout.sty.js +6 -6
  1801. package/esm/layouts/page-layout/PageLayout.sty.js.map +1 -1
  1802. package/esm/layouts/page-layout/details-layout/DetailsControlBar.css +3 -3
  1803. package/esm/layouts/page-layout/details-layout/DetailsControlBar.sty.js +3 -3
  1804. package/esm/layouts/page-layout/details-layout/DetailsControlBar.sty.js.map +1 -1
  1805. package/esm/layouts/page-layout/details-layout/DetailsLayout.css +6 -6
  1806. package/esm/layouts/page-layout/details-layout/DetailsLayout.js +7 -15
  1807. package/esm/layouts/page-layout/details-layout/DetailsLayout.js.map +2 -2
  1808. package/esm/layouts/page-layout/details-layout/DetailsLayout.sty.js +5 -5
  1809. package/esm/layouts/page-layout/details-layout/DetailsLayout.sty.js.map +1 -1
  1810. package/esm/layouts/page-layout/details-layout/Overlay.css +18 -18
  1811. package/esm/layouts/page-layout/details-layout/Overlay.sty.js +4 -4
  1812. package/esm/layouts/page-layout/details-layout/Overlay.sty.js.map +1 -1
  1813. package/esm/layouts/page-layout/shared/portal-slots.js.map +1 -1
  1814. package/esm/layouts/page-layout/sidebar-layout/SidebarLayout.css +38 -38
  1815. package/esm/layouts/page-layout/sidebar-layout/SidebarLayout.sty.js +15 -15
  1816. package/esm/layouts/page-layout/sidebar-layout/SidebarLayout.sty.js.map +1 -1
  1817. package/esm/layouts/split-layout/SplitLayout.css +18 -18
  1818. package/esm/layouts/split-layout/SplitLayout.sty.js +7 -7
  1819. package/esm/layouts/split-layout/SplitLayout.sty.js.map +1 -1
  1820. package/esm/layouts/surface/Surface.css +39 -39
  1821. package/esm/layouts/surface/Surface.sty.js +2 -2
  1822. package/esm/layouts/surface/Surface.sty.js.map +1 -1
  1823. package/esm/layouts/surface/variables.sty.js +1 -1
  1824. package/esm/layouts/surface/variables.sty.js.map +1 -1
  1825. package/esm/layouts/title-bar/TitleBar.css +5 -5
  1826. package/esm/layouts/title-bar/TitleBar.sty.js +4 -4
  1827. package/esm/layouts/title-bar/TitleBar.sty.js.map +1 -1
  1828. package/esm/navigation/breadcrumbs/Breadcrumbs.css +9 -9
  1829. package/esm/navigation/breadcrumbs/Breadcrumbs.sty.js +5 -5
  1830. package/esm/navigation/breadcrumbs/Breadcrumbs.sty.js.map +1 -1
  1831. package/esm/navigation/menu/Content.js +2 -1
  1832. package/esm/navigation/menu/Content.js.map +2 -2
  1833. package/esm/navigation/menu/Item.js +8 -0
  1834. package/esm/navigation/menu/Item.js.map +2 -2
  1835. package/esm/navigation/menu/Menu.css +38 -15
  1836. package/esm/navigation/menu/Menu.sty.js +10 -8
  1837. package/esm/navigation/menu/Menu.sty.js.map +2 -2
  1838. package/esm/navigation/menu/Sub.js +19 -0
  1839. package/esm/navigation/menu/Sub.js.map +2 -2
  1840. package/esm/navigation/menu/SubContent.js +8 -1
  1841. package/esm/navigation/menu/SubContent.js.map +2 -2
  1842. package/esm/navigation/menu/SubTrigger.js +22 -7
  1843. package/esm/navigation/menu/SubTrigger.js.map +2 -2
  1844. package/esm/navigation/menu/contexts/MenuSubLevelContext.js +38 -0
  1845. package/esm/navigation/menu/contexts/MenuSubLevelContext.js.map +7 -0
  1846. package/esm/navigation/tabs/RenderTab.css +14 -14
  1847. package/esm/navigation/tabs/RenderTab.sty.js +3 -3
  1848. package/esm/navigation/tabs/RenderTab.sty.js.map +1 -1
  1849. package/esm/navigation/tabs/TabPanel.css +3 -3
  1850. package/esm/navigation/tabs/TabPanel.sty.js +2 -2
  1851. package/esm/navigation/tabs/TabPanel.sty.js.map +1 -1
  1852. package/esm/navigation/tabs/Tabs.css +9 -9
  1853. package/esm/navigation/tabs/Tabs.sty.js +5 -5
  1854. package/esm/navigation/tabs/Tabs.sty.js.map +1 -1
  1855. package/esm/notifications/notification-settings/NotificationSettings.css +1 -1
  1856. package/esm/notifications/notification-settings/NotificationSettings.sty.js +1 -1
  1857. package/esm/notifications/notification-settings/NotificationSettings.sty.js.map +1 -1
  1858. package/esm/notifications/notification-settings/components/CopyPermissionsButton.js +3 -7
  1859. package/esm/notifications/notification-settings/components/CopyPermissionsButton.js.map +2 -2
  1860. package/esm/notifications/notification-settings/components/ToggleButton.js +3 -1
  1861. package/esm/notifications/notification-settings/components/ToggleButton.js.map +2 -2
  1862. package/esm/notifications/toast/Toast.css +6 -6
  1863. package/esm/notifications/toast/Toast.sty.js +4 -4
  1864. package/esm/notifications/toast/Toast.sty.js.map +1 -1
  1865. package/esm/notifications/toast/ToastContainer.css +17 -17
  1866. package/esm/notifications/toast/ToastContainer.sty.js +1 -1
  1867. package/esm/notifications/toast/ToastContainer.sty.js.map +1 -1
  1868. package/esm/overlays/drawer/Drawer.css +9 -9
  1869. package/esm/overlays/drawer/Drawer.sty.js +5 -5
  1870. package/esm/overlays/drawer/Drawer.sty.js.map +1 -1
  1871. package/esm/overlays/modal/Modal.css +7 -7
  1872. package/esm/overlays/modal/Modal.sty.js +4 -4
  1873. package/esm/overlays/modal/Modal.sty.js.map +1 -1
  1874. package/esm/overlays/overlay/Overlay.css +1 -1
  1875. package/esm/overlays/overlay/Overlay.sty.js +1 -1
  1876. package/esm/overlays/overlay/Overlay.sty.js.map +1 -1
  1877. package/esm/overlays/sheet/Sheet.css +6 -6
  1878. package/esm/overlays/sheet/Sheet.sty.js +5 -5
  1879. package/esm/overlays/sheet/Sheet.sty.js.map +1 -1
  1880. package/esm/overlays/tooltip/tooltip.css +18 -18
  1881. package/esm/overlays/tooltip/tooltip.sty.js +3 -3
  1882. package/esm/overlays/tooltip/tooltip.sty.js.map +1 -1
  1883. package/esm/overlays/utils/popper-modifiers.js +7 -3
  1884. package/esm/overlays/utils/popper-modifiers.js.map +2 -2
  1885. package/esm/styles/colorUtils.css +60 -60
  1886. package/esm/styles/colorUtils.sty.js +2 -2
  1887. package/esm/styles/colorUtils.sty.js.map +1 -1
  1888. package/esm/styles/container.css +47 -47
  1889. package/esm/styles/container.sty.js +2 -2
  1890. package/esm/styles/container.sty.js.map +1 -1
  1891. package/esm/styles/ellipsis.css +1 -1
  1892. package/esm/styles/ellipsis.sty.js +1 -1
  1893. package/esm/styles/ellipsis.sty.js.map +1 -1
  1894. package/esm/styles/field.css +290 -290
  1895. package/esm/styles/field.sty.js +2 -2
  1896. package/esm/styles/field.sty.js.map +1 -1
  1897. package/esm/styles/screen-reader-only.css +1 -1
  1898. package/esm/styles/screen-reader-only.sty.js +1 -1
  1899. package/esm/styles/screen-reader-only.sty.js.map +1 -1
  1900. package/esm/styles/sprinkles.css +262 -262
  1901. package/esm/styles/sprinkles.sty.js +1 -1
  1902. package/esm/styles/sprinkles.sty.js.map +1 -1
  1903. package/esm/styles/textStyle.css +8 -8
  1904. package/esm/styles/textStyle.sty.js +1 -1
  1905. package/esm/styles/textStyle.sty.js.map +1 -1
  1906. package/esm/tables/DataTable/DataTable.css +2 -2
  1907. package/esm/tables/DataTable/DataTable.js +9 -3
  1908. package/esm/tables/DataTable/DataTable.js.map +2 -2
  1909. package/esm/tables/DataTable/DataTable.sty.js +7 -7
  1910. package/esm/tables/DataTable/DataTable.sty.js.map +1 -1
  1911. package/esm/tables/DataTable/components/Alignment.css +6 -6
  1912. package/esm/tables/DataTable/components/Alignment.sty.js +2 -2
  1913. package/esm/tables/DataTable/components/Alignment.sty.js.map +1 -1
  1914. package/esm/tables/DataTable/components/ColumnPinning/DataTablePinningShadowCells.css +6 -6
  1915. package/esm/tables/DataTable/components/ColumnPinning/DataTablePinningShadowCells.sty.js +3 -3
  1916. package/esm/tables/DataTable/components/ColumnPinning/DataTablePinningShadowCells.sty.js.map +1 -1
  1917. package/esm/tables/DataTable/components/DataTableBody.css +2 -2
  1918. package/esm/tables/DataTable/components/DataTableBody.sty.js +2 -2
  1919. package/esm/tables/DataTable/components/DataTableBody.sty.js.map +1 -1
  1920. package/esm/tables/DataTable/components/DataTableCell.css +103 -117
  1921. package/esm/tables/DataTable/components/DataTableCell.sty.js +5 -5
  1922. package/esm/tables/DataTable/components/DataTableCell.sty.js.map +1 -1
  1923. package/esm/tables/DataTable/components/DataTableDefaultCell.css +23 -23
  1924. package/esm/tables/DataTable/components/DataTableDefaultCell.sty.js +1 -1
  1925. package/esm/tables/DataTable/components/DataTableDefaultCell.sty.js.map +1 -1
  1926. package/esm/tables/DataTable/components/DataTableEmptyState.css +6 -6
  1927. package/esm/tables/DataTable/components/DataTableEmptyState.sty.js +2 -2
  1928. package/esm/tables/DataTable/components/DataTableEmptyState.sty.js.map +1 -1
  1929. package/esm/tables/DataTable/components/DataTableHeader.css +2 -2
  1930. package/esm/tables/DataTable/components/DataTableHeader.sty.js +2 -2
  1931. package/esm/tables/DataTable/components/DataTableHeader.sty.js.map +1 -1
  1932. package/esm/tables/DataTable/components/DataTableHeaderCell.css +64 -64
  1933. package/esm/tables/DataTable/components/DataTableHeaderCell.sty.js +23 -23
  1934. package/esm/tables/DataTable/components/DataTableHeaderCell.sty.js.map +1 -1
  1935. package/esm/tables/DataTable/components/DataTableRow.css +13 -13
  1936. package/esm/tables/DataTable/components/DataTableRow.sty.js +1 -1
  1937. package/esm/tables/DataTable/components/DataTableRow.sty.js.map +1 -1
  1938. package/esm/tables/DataTable/components/DataTableScrollShadow.css +10 -10
  1939. package/esm/tables/DataTable/components/DataTableScrollShadow.sty.js +2 -2
  1940. package/esm/tables/DataTable/components/DataTableScrollShadow.sty.js.map +1 -1
  1941. package/esm/tables/DataTable/components/DataTableVirtualizationContainer.css +21 -21
  1942. package/esm/tables/DataTable/components/DataTableVirtualizationContainer.sty.js +1 -1
  1943. package/esm/tables/DataTable/components/DataTableVirtualizationContainer.sty.js.map +1 -1
  1944. package/esm/tables/DataTable/components/SettingsModal/DataTableSettingsModal.css +6 -0
  1945. package/esm/tables/DataTable/components/SettingsModal/DataTableSettingsModal.js +51 -37
  1946. package/esm/tables/DataTable/components/SettingsModal/DataTableSettingsModal.js.map +2 -2
  1947. package/esm/tables/DataTable/components/SettingsModal/DataTableSettingsModal.sty.js +7 -0
  1948. package/esm/tables/DataTable/components/SettingsModal/DataTableSettingsModal.sty.js.map +7 -0
  1949. package/esm/tables/DataTable/components/TableActions/DataTableSelectionChip.css +5 -5
  1950. package/esm/tables/DataTable/components/TableActions/DataTableSelectionChip.sty.js +2 -2
  1951. package/esm/tables/DataTable/components/TableActions/DataTableSelectionChip.sty.js.map +1 -1
  1952. package/esm/tables/DataTable/components/Toolbar/ColumnSettings/ColumnOrderSettings/ColumnOrderSettingsDragAndDrop.css +7 -7
  1953. package/esm/tables/DataTable/components/Toolbar/ColumnSettings/ColumnOrderSettings/ColumnOrderSettingsDragAndDrop.sty.js +3 -3
  1954. package/esm/tables/DataTable/components/Toolbar/ColumnSettings/ColumnOrderSettings/ColumnOrderSettingsDragAndDrop.sty.js.map +1 -1
  1955. package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnSettingsModal.js +46 -7
  1956. package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnSettingsModal.js.map +2 -2
  1957. package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnVisibilitySettings.js +2 -1
  1958. package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnVisibilitySettings.js.map +2 -2
  1959. package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsList.css +19 -7
  1960. package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsList.js +8 -3
  1961. package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsList.js.map +2 -2
  1962. package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsList.sty.js +3 -3
  1963. package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsList.sty.js.map +2 -2
  1964. package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsListItem.css +7 -7
  1965. package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsListItem.sty.js +3 -3
  1966. package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsListItem.sty.js.map +1 -1
  1967. package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableVisibilityFilterControls.css +5 -5
  1968. package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableVisibilityFilterControls.sty.js +3 -3
  1969. package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableVisibilityFilterControls.sty.js.map +1 -1
  1970. package/esm/tables/DataTable/components/Toolbar/ColumnSettings/column-settings-utils.js +72 -3
  1971. package/esm/tables/DataTable/components/Toolbar/ColumnSettings/column-settings-utils.js.map +3 -3
  1972. package/esm/tables/DataTable/components/Toolbar/DataTableToolbar.js +1 -0
  1973. package/esm/tables/DataTable/components/Toolbar/DataTableToolbar.js.map +2 -2
  1974. package/esm/tables/DataTable/components/Toolbar/Download/DataTableDownloadData.css +3 -3
  1975. package/esm/tables/DataTable/components/Toolbar/Download/DataTableDownloadData.sty.js +2 -2
  1976. package/esm/tables/DataTable/components/Toolbar/Download/DataTableDownloadData.sty.js.map +1 -1
  1977. package/esm/tables/DataTable/features/ColumnOrder/ColumnOrder.css +8 -8
  1978. package/esm/tables/DataTable/features/ColumnOrder/ColumnOrder.sty.js +4 -4
  1979. package/esm/tables/DataTable/features/ColumnOrder/ColumnOrder.sty.js.map +1 -1
  1980. package/esm/tables/DataTable/features/ColumnSizing/ColumnSizing.css +3 -3
  1981. package/esm/tables/DataTable/features/ColumnSizing/ColumnSizing.sty.js +1 -1
  1982. package/esm/tables/DataTable/features/ColumnSizing/ColumnSizing.sty.js.map +1 -1
  1983. package/esm/tables/DataTable/features/ColumnTypes/ColumnTypes.css +1 -1
  1984. package/esm/tables/DataTable/features/ColumnTypes/ColumnTypes.sty.js +1 -1
  1985. package/esm/tables/DataTable/features/ColumnTypes/ColumnTypes.sty.js.map +1 -1
  1986. package/esm/tables/DataTable/features/ColumnTypes/column-types-types.js.map +2 -2
  1987. package/esm/tables/DataTable/features/Download/Download.js +1 -1
  1988. package/esm/tables/DataTable/features/Download/Download.js.map +2 -2
  1989. package/esm/tables/DataTable/features/GanttChart/DataTableGanttAnnotationsIndicators.css +1 -1
  1990. package/esm/tables/DataTable/features/GanttChart/DataTableGanttAnnotationsIndicators.sty.js +1 -1
  1991. package/esm/tables/DataTable/features/GanttChart/DataTableGanttAnnotationsIndicators.sty.js.map +1 -1
  1992. package/esm/tables/DataTable/features/GanttChart/DataTableGanttChartCell.css +3 -3
  1993. package/esm/tables/DataTable/features/GanttChart/DataTableGanttChartCell.sty.js +2 -2
  1994. package/esm/tables/DataTable/features/GanttChart/DataTableGanttChartCell.sty.js.map +1 -1
  1995. package/esm/tables/DataTable/features/GanttChart/DataTableGanttChartGrid.css +1 -1
  1996. package/esm/tables/DataTable/features/GanttChart/DataTableGanttChartGrid.js +2 -2
  1997. package/esm/tables/DataTable/features/GanttChart/DataTableGanttChartGrid.js.map +2 -2
  1998. package/esm/tables/DataTable/features/GanttChart/DataTableGanttChartGrid.sty.js +1 -1
  1999. package/esm/tables/DataTable/features/GanttChart/DataTableGanttChartGrid.sty.js.map +1 -1
  2000. package/esm/tables/DataTable/features/GanttChart/DataTableGanttChartHeader.css +4 -4
  2001. package/esm/tables/DataTable/features/GanttChart/DataTableGanttChartHeader.sty.js +1 -1
  2002. package/esm/tables/DataTable/features/GanttChart/DataTableGanttChartHeader.sty.js.map +1 -1
  2003. package/esm/tables/DataTable/features/LoadingState/LoadingState.css +3 -3
  2004. package/esm/tables/DataTable/features/LoadingState/LoadingState.sty.js +3 -3
  2005. package/esm/tables/DataTable/features/LoadingState/LoadingState.sty.js.map +1 -1
  2006. package/esm/tables/DataTable/features/MeterBarChart/MeterBarChart.js.map +2 -2
  2007. package/esm/tables/DataTable/features/RowDetails/RowDetails.css +13 -13
  2008. package/esm/tables/DataTable/features/RowDetails/RowDetails.sty.js +3 -3
  2009. package/esm/tables/DataTable/features/RowDetails/RowDetails.sty.js.map +1 -1
  2010. package/esm/tables/DataTable/features/RowInteractivity/RowInteractivity.css +14 -14
  2011. package/esm/tables/DataTable/features/RowInteractivity/RowInteractivity.sty.js +1 -1
  2012. package/esm/tables/DataTable/features/RowInteractivity/RowInteractivity.sty.js.map +1 -1
  2013. package/esm/tables/DataTable/features/RowOrder/RowOrder.css +8 -8
  2014. package/esm/tables/DataTable/features/RowOrder/RowOrder.sty.js +3 -3
  2015. package/esm/tables/DataTable/features/RowOrder/RowOrder.sty.js.map +1 -1
  2016. package/esm/tables/DataTable/features/RowOrder/components/RowOrderingDragAndDropContext.js +1 -0
  2017. package/esm/tables/DataTable/features/RowOrder/components/RowOrderingDragAndDropContext.js.map +2 -2
  2018. package/esm/tables/DataTable/features/Sorting/Sorting.css +34 -34
  2019. package/esm/tables/DataTable/features/Sorting/Sorting.sty.js +3 -3
  2020. package/esm/tables/DataTable/features/Sorting/Sorting.sty.js.map +1 -1
  2021. package/esm/tables/DataTable/features/SubRows/SubRows.css +19 -19
  2022. package/esm/tables/DataTable/features/SubRows/SubRows.sty.js +5 -5
  2023. package/esm/tables/DataTable/features/SubRows/SubRows.sty.js.map +1 -1
  2024. package/esm/tables/DataTable/features/Thresholds/Thresholds.css +2 -2
  2025. package/esm/tables/DataTable/features/Thresholds/Thresholds.sty.js +3 -3
  2026. package/esm/tables/DataTable/features/Thresholds/Thresholds.sty.js.map +1 -1
  2027. package/esm/tables/DataTable/features/UserActions/RowActions.css +4 -4
  2028. package/esm/tables/DataTable/features/UserActions/RowActions.sty.js +1 -1
  2029. package/esm/tables/DataTable/features/UserActions/RowActions.sty.js.map +1 -1
  2030. package/esm/tables/DataTable/features/UserActions/UserActions.css +18 -18
  2031. package/esm/tables/DataTable/features/UserActions/UserActions.sty.js +2 -2
  2032. package/esm/tables/DataTable/features/UserActions/UserActions.sty.js.map +1 -1
  2033. package/esm/tables/DataTable/messages.js +22 -0
  2034. package/esm/tables/DataTable/messages.js.map +2 -2
  2035. package/esm/tables/SimpleTable/SimpleTable.css +27 -27
  2036. package/esm/tables/SimpleTable/SimpleTable.sty.js +1 -1
  2037. package/esm/tables/SimpleTable/SimpleTable.sty.js.map +1 -1
  2038. package/esm/tables/index.js.map +2 -2
  2039. package/esm/typography/block-quote/Blockquote.css +2 -2
  2040. package/esm/typography/block-quote/Blockquote.sty.js +1 -1
  2041. package/esm/typography/block-quote/Blockquote.sty.js.map +1 -1
  2042. package/esm/typography/code/Code.css +1 -1
  2043. package/esm/typography/code/Code.sty.js +1 -1
  2044. package/esm/typography/code/Code.sty.js.map +1 -1
  2045. package/esm/typography/emphasis/Emphasis.css +1 -1
  2046. package/esm/typography/emphasis/Emphasis.sty.js +1 -1
  2047. package/esm/typography/emphasis/Emphasis.sty.js.map +1 -1
  2048. package/esm/typography/external-link/ExternalLink.css +6 -6
  2049. package/esm/typography/external-link/ExternalLink.sty.js +1 -1
  2050. package/esm/typography/external-link/ExternalLink.sty.js.map +1 -1
  2051. package/esm/typography/heading/Heading.css +7 -7
  2052. package/esm/typography/heading/Heading.sty.js +1 -1
  2053. package/esm/typography/heading/Heading.sty.js.map +1 -1
  2054. package/esm/typography/highlight/Highlight.css +2 -2
  2055. package/esm/typography/highlight/Highlight.sty.js +1 -1
  2056. package/esm/typography/highlight/Highlight.sty.js.map +1 -1
  2057. package/esm/typography/link/Link.css +4 -4
  2058. package/esm/typography/link/Link.sty.js +1 -1
  2059. package/esm/typography/link/Link.sty.js.map +1 -1
  2060. package/esm/typography/list/List.css +4 -4
  2061. package/esm/typography/list/List.sty.js +2 -2
  2062. package/esm/typography/list/List.sty.js.map +1 -1
  2063. package/esm/typography/paragraph/Paragraph.css +3 -3
  2064. package/esm/typography/paragraph/Paragraph.sty.js +1 -1
  2065. package/esm/typography/paragraph/Paragraph.sty.js.map +1 -1
  2066. package/esm/typography/strikethrough/Strikethrough.css +1 -1
  2067. package/esm/typography/strikethrough/Strikethrough.sty.js +1 -1
  2068. package/esm/typography/strikethrough/Strikethrough.sty.js.map +1 -1
  2069. package/esm/typography/strong/Strong.css +1 -1
  2070. package/esm/typography/strong/Strong.sty.js +1 -1
  2071. package/esm/typography/strong/Strong.sty.js.map +1 -1
  2072. package/esm/typography/text/Text.css +3 -3
  2073. package/esm/typography/text/Text.sty.js +1 -1
  2074. package/esm/typography/text/Text.sty.js.map +1 -1
  2075. package/esm/typography/text-ellipsis/TextEllipsis.css +6 -6
  2076. package/esm/typography/text-ellipsis/TextEllipsis.sty.js +2 -2
  2077. package/esm/typography/text-ellipsis/TextEllipsis.sty.js.map +1 -1
  2078. package/filters/filter-field/FilterField.css +151 -119
  2079. package/filters/filter-field/FilterField.js +75 -4
  2080. package/filters/filter-field/FilterField.sty.js +28 -28
  2081. package/filters/filter-field/components/FilterFieldSuffixButtons.css +3 -3
  2082. package/filters/filter-field/components/FilterFieldSuffixButtons.sty.js +3 -3
  2083. package/filters/filter-field/components/FilterStatement.css +13 -13
  2084. package/filters/filter-field/components/FilterStatement.sty.js +6 -6
  2085. package/filters/filter-field/hooks/recent-and-pinned/usePinnedFilterSuggestions.js +1 -1
  2086. package/filters/filter-field/hooks/recent-and-pinned/usePinnedFilters.d.ts +10 -4
  2087. package/filters/filter-field/hooks/recent-and-pinned/usePinnedFilters.js +32 -26
  2088. package/filters/filter-field/hooks/recent-and-pinned/useRecentFilters.d.ts +2 -2
  2089. package/filters/filter-field/hooks/recent-and-pinned/useRecentFilters.js +22 -20
  2090. package/filters/filter-field/hooks/useSuggestions.d.ts +0 -1
  2091. package/filters/filter-field/hooks/useSuggestions.js +1 -6
  2092. package/filters/filter-field/state/recent-pinned-store.d.ts +11 -27
  2093. package/filters/filter-field/state/recent-pinned-store.js +11 -51
  2094. package/filters/filter-field/suggestions/RecentPinnedSuggestionItem.css +9 -9
  2095. package/filters/filter-field/suggestions/RecentPinnedSuggestionItem.sty.js +2 -2
  2096. package/filters/filter-field/suggestions/Suggestion.css +24 -24
  2097. package/filters/filter-field/suggestions/Suggestion.sty.js +16 -16
  2098. package/filters/filter-field/suggestions/SuggestionDetails.css +2 -2
  2099. package/filters/filter-field/suggestions/SuggestionDetails.sty.js +2 -2
  2100. package/filters/filter-field/suggestions/SuggestionGroup.css +6 -6
  2101. package/filters/filter-field/suggestions/SuggestionGroup.sty.js +3 -3
  2102. package/filters/filter-field/suggestions/SuggestionGroupLabel.css +1 -1
  2103. package/filters/filter-field/suggestions/SuggestionGroupLabel.sty.js +1 -1
  2104. package/filters/filter-field/suggestions/SuggestionPin.d.ts +3 -2
  2105. package/filters/filter-field/suggestions/SuggestionPin.js +5 -9
  2106. package/filters/filter-field/suggestions/SuggestionTips.css +7 -7
  2107. package/filters/filter-field/suggestions/SuggestionTips.sty.js +5 -5
  2108. package/filters/filter-field/suggestions/SuggestionsOverlay.css +7 -7
  2109. package/filters/filter-field/suggestions/SuggestionsOverlay.sty.js +5 -5
  2110. package/filters/segment-selector/SegmentSelector.css +4 -4
  2111. package/filters/segment-selector/SegmentSelector.js +91 -7
  2112. package/filters/segment-selector/SegmentSelector.sty.js +4 -4
  2113. package/filters/segment-selector/SegmentSelector.types.d.ts +10 -1
  2114. package/filters/segment-selector/contexts/SegmentsUI/segmentValidationHelper.d.ts +2 -2
  2115. package/filters/segment-selector/contexts/SegmentsUI/segmentValidationHelper.js +4 -3
  2116. package/filters/segment-selector/parts/EmptySegments.css +1 -1
  2117. package/filters/segment-selector/parts/EmptySegments.sty.js +1 -1
  2118. package/filters/segment-selector/parts/Overlay.css +8 -8
  2119. package/filters/segment-selector/parts/Overlay.js +2 -1
  2120. package/filters/segment-selector/parts/Overlay.sty.js +8 -8
  2121. package/filters/segment-selector/parts/ShowMorePanel/ShowMorePanel.css +4 -4
  2122. package/filters/segment-selector/parts/ShowMorePanel/ShowMorePanel.sty.js +4 -4
  2123. package/filters/segment-selector/parts/segmentsPresets/SegmentsPresets.css +32 -32
  2124. package/filters/segment-selector/parts/segmentsPresets/SegmentsPresets.sty.js +10 -10
  2125. package/filters/segment-selector/parts/selectionBar/SegmentSelect.css +22 -22
  2126. package/filters/segment-selector/parts/selectionBar/SegmentSelect.sty.js +7 -7
  2127. package/filters/segment-selector/parts/selectionBar/SegmentSelectorTrigger.css +1 -1
  2128. package/filters/segment-selector/parts/selectionBar/SegmentSelectorTrigger.sty.js +1 -1
  2129. package/filters/segment-selector/parts/selectionBar/SelectionBar.js +11 -10
  2130. package/filters/segment-selector/parts/selectionBar/ValueSelect.js +66 -27
  2131. package/filters/timeframe-selector/TimeframeSelector.css +2 -2
  2132. package/filters/timeframe-selector/TimeframeSelector.js +4 -0
  2133. package/filters/timeframe-selector/TimeframeSelector.sty.js +2 -2
  2134. package/filters/timeframe-selector/TimeframeSelectorRoot.js +177 -4
  2135. package/filters/timeframe-selector/components/custom-timeframe-selector/CustomTimeframeSelector.css +4 -4
  2136. package/filters/timeframe-selector/components/custom-timeframe-selector/CustomTimeframeSelector.sty.js +3 -3
  2137. package/filters/timeframe-selector/components/overlay/TimeframeSelectorOverlay.css +4 -4
  2138. package/filters/timeframe-selector/components/overlay/TimeframeSelectorOverlay.sty.js +4 -4
  2139. package/filters/timeframe-selector/components/presets/Presets.css +27 -27
  2140. package/filters/timeframe-selector/components/presets/Presets.sty.js +11 -11
  2141. package/filters/timeframe-selector/components/trigger/Trigger.css +11 -11
  2142. package/filters/timeframe-selector/components/trigger/Trigger.js +2 -2
  2143. package/filters/timeframe-selector/components/trigger/Trigger.sty.js +4 -4
  2144. package/forms/_base-input/BaseInput.css +99 -99
  2145. package/forms/_base-input/BaseInput.js +28 -4
  2146. package/forms/_base-input/BaseInput.sty.js +11 -11
  2147. package/forms/_base-input/BaseInputContent.css +7 -7
  2148. package/forms/_base-input/BaseInputContent.sty.js +1 -1
  2149. package/forms/_base-input/base-input.types.d.ts +6 -0
  2150. package/forms/calendar/Calendar.css +48 -48
  2151. package/forms/calendar/Calendar.sty.js +12 -12
  2152. package/forms/calendar/CalendarRoot.d.ts +2 -2
  2153. package/forms/calendar/CalendarRoot.js +65 -14
  2154. package/forms/calendar/components/CalendarItem.css +7 -7
  2155. package/forms/calendar/components/CalendarItem.sty.js +4 -4
  2156. package/forms/calendar/components/CalendarOutlineIcon.css +8 -8
  2157. package/forms/calendar/components/CalendarOutlineIcon.sty.js +5 -5
  2158. package/forms/calendar/variables.sty.js +2 -2
  2159. package/forms/checkbox/Checkbox.css +20 -20
  2160. package/forms/checkbox/Checkbox.js +31 -7
  2161. package/forms/checkbox/Checkbox.sty.js +3 -3
  2162. package/forms/date-time-picker/DateSelector.js +2 -2
  2163. package/forms/date-time-picker/DateTimePicker.css +75 -75
  2164. package/forms/date-time-picker/DateTimePicker.js +9 -4
  2165. package/forms/date-time-picker/DateTimePicker.sty.js +6 -6
  2166. package/forms/date-time-picker/DateTimePickerRoot.js +67 -3
  2167. package/forms/date-time-range-picker/DateRangeSelector.css +1 -1
  2168. package/forms/date-time-range-picker/DateRangeSelector.js +2 -2
  2169. package/forms/date-time-range-picker/DateRangeSelector.sty.js +1 -1
  2170. package/forms/date-time-range-picker/DateTimeInput.css +11 -11
  2171. package/forms/date-time-range-picker/DateTimeInput.js +25 -3
  2172. package/forms/date-time-range-picker/DateTimeInput.sty.js +3 -3
  2173. package/forms/date-time-range-picker/DateTimeRangePicker.css +27 -27
  2174. package/forms/date-time-range-picker/DateTimeRangePicker.sty.js +4 -4
  2175. package/forms/date-time-range-picker/DateTimeRangePickerRoot.js +105 -2
  2176. package/forms/forms-core/components/field-set/FieldSet.css +2 -2
  2177. package/forms/forms-core/components/field-set/FieldSet.sty.js +2 -2
  2178. package/forms/forms-core/components/form-field/FormField.sty.js +1 -1
  2179. package/forms/forms-core/components/form-field-messages/FormFieldMessageItem.css +5 -5
  2180. package/forms/forms-core/components/form-field-messages/FormFieldMessageItem.js +9 -5
  2181. package/forms/forms-core/components/form-field-messages/FormFieldMessageItem.sty.js +2 -2
  2182. package/forms/forms-core/components/form-field-messages/FormFieldMessages.sty.js +1 -1
  2183. package/forms/forms-core/components/label/Label.css +5 -5
  2184. package/forms/forms-core/components/label/Label.sty.js +2 -2
  2185. package/forms/forms-core/hooks/useFormFieldValidation.d.ts +24 -6
  2186. package/forms/forms-core/hooks/useFormFieldValidation.js +122 -47
  2187. package/forms/forms-core/state/formfield-messages-state-reducer.d.ts +1 -0
  2188. package/forms/forms-core/state/formfield-messages-state-reducer.js +10 -0
  2189. package/forms/forms-core/types/formfield-messages.types.d.ts +2 -0
  2190. package/forms/hooks/useAutofillEvent.css +8 -8
  2191. package/forms/hooks/useAutofillEvent.sty.js +4 -4
  2192. package/forms/index.d.ts +2 -0
  2193. package/forms/index.js +5 -0
  2194. package/forms/number-input-v2/NumberInput.js +159 -18
  2195. package/forms/number-input-v2/utils/validation.d.ts +2 -1
  2196. package/forms/radio/Radio.js +19 -3
  2197. package/forms/radio/RadioGroup.js +42 -5
  2198. package/forms/radio/RadioGroupContext.d.ts +6 -0
  2199. package/forms/radio/styles.css +18 -18
  2200. package/forms/radio/styles.sty.js +8 -8
  2201. package/forms/search-input/SearchInput.css +2 -2
  2202. package/forms/search-input/SearchInput.sty.js +1 -1
  2203. package/forms/search-input/Stepper.css +5 -5
  2204. package/forms/search-input/Stepper.sty.js +3 -3
  2205. package/forms/select/Select.js +69 -17
  2206. package/forms/select/components/Control.d.ts +1 -1
  2207. package/forms/select/components/Control.js +2 -2
  2208. package/forms/select/components/HiddenSelect.js +8 -6
  2209. package/forms/select/components/MenuList.d.ts +2 -0
  2210. package/forms/select/components/MenuList.js +6 -1
  2211. package/forms/select/components/Option.js +12 -3
  2212. package/forms/select/styles/Select.css +46 -46
  2213. package/forms/select/styles/Select.sty.js +24 -24
  2214. package/forms/shared-types.d.ts +8 -0
  2215. package/forms/spin-buttons/SpinButton.css +8 -8
  2216. package/forms/spin-buttons/SpinButton.sty.js +2 -2
  2217. package/forms/switch/Switch.css +36 -36
  2218. package/forms/switch/Switch.js +35 -5
  2219. package/forms/switch/Switch.sty.js +5 -5
  2220. package/forms/text-area/TextArea.css +59 -59
  2221. package/forms/text-area/TextArea.js +29 -1
  2222. package/forms/text-area/TextArea.sty.js +3 -3
  2223. package/forms/text-input/TextInput.d.ts +1 -1
  2224. package/forms/toggle-button-group/Item.js +17 -3
  2225. package/forms/toggle-button-group/ToggleButtonGroup.js +43 -7
  2226. package/forms/toggle-button-group/contexts/ToggleButtonGroupContext.d.ts +3 -0
  2227. package/forms/toggle-button-group/styles.css +58 -58
  2228. package/forms/toggle-button-group/styles.sty.js +15 -15
  2229. package/forms/validation/types.d.ts +122 -0
  2230. package/forms/validation/types.js +81 -0
  2231. package/forms/validation/useCustomMessageEmitter.d.ts +9 -0
  2232. package/forms/validation/useCustomMessageEmitter.js +98 -0
  2233. package/forms/validation/useValidationStateEmitter.d.ts +7 -0
  2234. package/forms/validation/useValidationStateEmitter.js +49 -0
  2235. package/forms/validation/validation-builders.d.ts +17 -0
  2236. package/forms/validation/validation-builders.js +69 -0
  2237. package/lang/en.json +168 -12
  2238. package/lang/uncompiled/en.json +1113 -1064
  2239. package/layouts/app-header/AppHeader.css +1 -1
  2240. package/layouts/app-header/AppHeader.sty.js +1 -1
  2241. package/layouts/app-header/Logo.d.ts +4 -4
  2242. package/layouts/app-header/Navigation.css +9 -9
  2243. package/layouts/app-header/Navigation.sty.js +5 -5
  2244. package/layouts/app-header/action-group/ActionButton.css +17 -17
  2245. package/layouts/app-header/action-group/ActionButton.sty.js +3 -3
  2246. package/layouts/app-header/action-group/ActionGroup.css +1 -1
  2247. package/layouts/app-header/action-group/ActionGroup.sty.js +1 -1
  2248. package/layouts/app-header/action-group/NavItem.css +4 -4
  2249. package/layouts/app-header/action-group/NavItem.sty.js +3 -3
  2250. package/layouts/app-header/app-icon/AppIcon.css +4 -4
  2251. package/layouts/app-header/app-icon/AppIcon.sty.js +1 -1
  2252. package/layouts/container/Container.css +5 -5
  2253. package/layouts/container/Container.sty.js +1 -1
  2254. package/layouts/divider/Divider.css +6 -6
  2255. package/layouts/divider/Divider.sty.js +1 -1
  2256. package/layouts/input-group/InputGroup.css +23 -23
  2257. package/layouts/input-group/InputGroup.sty.js +1 -1
  2258. package/layouts/page/DetailView.css +3 -3
  2259. package/layouts/page/DetailView.d.ts +17 -4
  2260. package/layouts/page/DetailView.sty.js +2 -2
  2261. package/layouts/page/Header.css +2 -2
  2262. package/layouts/page/Header.d.ts +5 -1
  2263. package/layouts/page/Header.sty.js +1 -1
  2264. package/layouts/page/Main.css +6 -6
  2265. package/layouts/page/Main.d.ts +5 -1
  2266. package/layouts/page/Main.sty.js +4 -4
  2267. package/layouts/page/Page.css +2 -2
  2268. package/layouts/page/Page.d.ts +5 -1
  2269. package/layouts/page/Page.sty.js +1 -1
  2270. package/layouts/page/PanelControlButton.d.ts +5 -1
  2271. package/layouts/page/Sidebar.css +71 -22
  2272. package/layouts/page/Sidebar.d.ts +17 -4
  2273. package/layouts/page/Sidebar.js +2 -0
  2274. package/layouts/page/Sidebar.sty.js +8 -8
  2275. package/layouts/page/page-types.d.ts +14 -3
  2276. package/layouts/page/panel-types.d.ts +3 -0
  2277. package/layouts/page/panel.css +19 -19
  2278. package/layouts/page/panel.sty.js +10 -10
  2279. package/layouts/page-layout/PageLayout.css +10 -10
  2280. package/layouts/page-layout/PageLayout.d.ts +1 -1
  2281. package/layouts/page-layout/PageLayout.sty.js +6 -6
  2282. package/layouts/page-layout/details-layout/DetailsControlBar.css +3 -3
  2283. package/layouts/page-layout/details-layout/DetailsControlBar.sty.js +3 -3
  2284. package/layouts/page-layout/details-layout/DetailsLayout.css +6 -6
  2285. package/layouts/page-layout/details-layout/DetailsLayout.js +7 -15
  2286. package/layouts/page-layout/details-layout/DetailsLayout.sty.js +5 -5
  2287. package/layouts/page-layout/details-layout/Overlay.css +18 -18
  2288. package/layouts/page-layout/details-layout/Overlay.sty.js +4 -4
  2289. package/layouts/page-layout/details-layout/slots.d.ts +1 -1
  2290. package/layouts/page-layout/shared/portal-slots.d.ts +1 -1
  2291. package/layouts/page-layout/shared/slot-config.d.ts +1 -1
  2292. package/layouts/page-layout/sidebar-layout/SidebarLayout.css +38 -38
  2293. package/layouts/page-layout/sidebar-layout/SidebarLayout.sty.js +15 -15
  2294. package/layouts/split-layout/SplitLayout.css +18 -18
  2295. package/layouts/split-layout/SplitLayout.sty.js +7 -7
  2296. package/layouts/surface/Surface.css +39 -39
  2297. package/layouts/surface/Surface.sty.js +2 -2
  2298. package/layouts/surface/variables.sty.js +1 -1
  2299. package/layouts/title-bar/TitleBar.css +5 -5
  2300. package/layouts/title-bar/TitleBar.sty.js +4 -4
  2301. package/migrations/3.2.0/codemods/rename-app-header-deprecated-members.js +1 -1
  2302. package/migrations/3.2.0/codeshift-migration.js +1 -1
  2303. package/migrations/3.2.0/dt-app-migration.js +100 -100
  2304. package/navigation/breadcrumbs/Breadcrumbs.css +9 -9
  2305. package/navigation/breadcrumbs/Breadcrumbs.sty.js +5 -5
  2306. package/navigation/menu/Content.js +2 -1
  2307. package/navigation/menu/Item.js +7 -0
  2308. package/navigation/menu/Menu.css +38 -15
  2309. package/navigation/menu/Menu.sty.d.ts +1 -0
  2310. package/navigation/menu/Menu.sty.js +10 -8
  2311. package/navigation/menu/Sub.js +16 -0
  2312. package/navigation/menu/SubContent.js +8 -1
  2313. package/navigation/menu/SubTrigger.js +17 -5
  2314. package/navigation/menu/contexts/MenuSubLevelContext.d.ts +11 -0
  2315. package/navigation/menu/contexts/MenuSubLevelContext.js +51 -0
  2316. package/navigation/tabs/RenderTab.css +14 -14
  2317. package/navigation/tabs/RenderTab.sty.js +3 -3
  2318. package/navigation/tabs/TabPanel.css +3 -3
  2319. package/navigation/tabs/TabPanel.sty.js +2 -2
  2320. package/navigation/tabs/Tabs.css +9 -9
  2321. package/navigation/tabs/Tabs.sty.js +5 -5
  2322. package/notifications/notification-settings/NotificationSettings.css +1 -1
  2323. package/notifications/notification-settings/NotificationSettings.sty.js +1 -1
  2324. package/notifications/notification-settings/components/CopyPermissionsButton.js +3 -7
  2325. package/notifications/notification-settings/components/ToggleButton.js +3 -1
  2326. package/notifications/toast/Toast.css +6 -6
  2327. package/notifications/toast/Toast.sty.js +4 -4
  2328. package/notifications/toast/ToastContainer.css +17 -17
  2329. package/notifications/toast/ToastContainer.sty.js +1 -1
  2330. package/overlays/drawer/Drawer.css +9 -9
  2331. package/overlays/drawer/Drawer.sty.js +5 -5
  2332. package/overlays/modal/Modal.css +7 -7
  2333. package/overlays/modal/Modal.sty.js +4 -4
  2334. package/overlays/overlay/Overlay.css +1 -1
  2335. package/overlays/overlay/Overlay.sty.js +1 -1
  2336. package/overlays/sheet/Sheet.css +6 -6
  2337. package/overlays/sheet/Sheet.sty.js +5 -5
  2338. package/overlays/tooltip/tooltip.css +18 -18
  2339. package/overlays/tooltip/tooltip.sty.js +3 -3
  2340. package/overlays/utils/popper-modifiers.js +7 -3
  2341. package/package.json +9 -10
  2342. package/styles/colorUtils.css +60 -60
  2343. package/styles/colorUtils.sty.js +2 -2
  2344. package/styles/container.css +47 -47
  2345. package/styles/container.sty.js +2 -2
  2346. package/styles/ellipsis.css +1 -1
  2347. package/styles/ellipsis.sty.js +1 -1
  2348. package/styles/field.css +290 -290
  2349. package/styles/field.sty.js +2 -2
  2350. package/styles/screen-reader-only.css +1 -1
  2351. package/styles/screen-reader-only.sty.js +1 -1
  2352. package/styles/sprinkles.css +262 -262
  2353. package/styles/sprinkles.sty.js +1 -1
  2354. package/styles/textStyle.css +8 -8
  2355. package/styles/textStyle.sty.js +1 -1
  2356. package/tables/DataTable/DataTable.css +2 -2
  2357. package/tables/DataTable/DataTable.d.ts +1 -1
  2358. package/tables/DataTable/DataTable.js +9 -3
  2359. package/tables/DataTable/DataTable.sty.js +7 -7
  2360. package/tables/DataTable/components/Alignment.css +6 -6
  2361. package/tables/DataTable/components/Alignment.sty.js +2 -2
  2362. package/tables/DataTable/components/ColumnPinning/DataTablePinningShadowCells.css +6 -6
  2363. package/tables/DataTable/components/ColumnPinning/DataTablePinningShadowCells.sty.js +3 -3
  2364. package/tables/DataTable/components/DataTableBody.css +2 -2
  2365. package/tables/DataTable/components/DataTableBody.sty.js +2 -2
  2366. package/tables/DataTable/components/DataTableCell.css +103 -117
  2367. package/tables/DataTable/components/DataTableCell.sty.js +5 -5
  2368. package/tables/DataTable/components/DataTableDefaultCell.css +23 -23
  2369. package/tables/DataTable/components/DataTableDefaultCell.sty.js +1 -1
  2370. package/tables/DataTable/components/DataTableEmptyState.css +6 -6
  2371. package/tables/DataTable/components/DataTableEmptyState.sty.js +2 -2
  2372. package/tables/DataTable/components/DataTableHeader.css +2 -2
  2373. package/tables/DataTable/components/DataTableHeader.sty.js +2 -2
  2374. package/tables/DataTable/components/DataTableHeaderCell.css +64 -64
  2375. package/tables/DataTable/components/DataTableHeaderCell.sty.js +23 -23
  2376. package/tables/DataTable/components/DataTableRow.css +13 -13
  2377. package/tables/DataTable/components/DataTableRow.sty.js +1 -1
  2378. package/tables/DataTable/components/DataTableScrollShadow.css +10 -10
  2379. package/tables/DataTable/components/DataTableScrollShadow.sty.js +2 -2
  2380. package/tables/DataTable/components/DataTableVirtualizationContainer.css +21 -21
  2381. package/tables/DataTable/components/DataTableVirtualizationContainer.sty.js +1 -1
  2382. package/tables/DataTable/components/SettingsModal/DataTableSettingsModal.css +6 -0
  2383. package/tables/DataTable/components/SettingsModal/DataTableSettingsModal.d.ts +3 -1
  2384. package/tables/DataTable/components/SettingsModal/DataTableSettingsModal.js +61 -37
  2385. package/tables/DataTable/components/SettingsModal/DataTableSettingsModal.sty.d.ts +1 -0
  2386. package/tables/DataTable/components/SettingsModal/DataTableSettingsModal.sty.js +25 -0
  2387. package/tables/DataTable/components/TableActions/DataTableSelectionChip.css +5 -5
  2388. package/tables/DataTable/components/TableActions/DataTableSelectionChip.sty.js +2 -2
  2389. package/tables/DataTable/components/Toolbar/ColumnSettings/ColumnOrderSettings/ColumnOrderSettingsDragAndDrop.css +7 -7
  2390. package/tables/DataTable/components/Toolbar/ColumnSettings/ColumnOrderSettings/ColumnOrderSettingsDragAndDrop.sty.js +3 -3
  2391. package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnSettingsModal.d.ts +5 -1
  2392. package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnSettingsModal.js +42 -5
  2393. package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnVisibilitySettings.d.ts +1 -1
  2394. package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnVisibilitySettings.js +2 -1
  2395. package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsList.css +19 -7
  2396. package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsList.d.ts +4 -0
  2397. package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsList.js +8 -3
  2398. package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsList.sty.d.ts +6 -6
  2399. package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsList.sty.js +3 -3
  2400. package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsListItem.css +7 -7
  2401. package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsListItem.sty.js +3 -3
  2402. package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableVisibilityFilterControls.css +5 -5
  2403. package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableVisibilityFilterControls.sty.js +3 -3
  2404. package/tables/DataTable/components/Toolbar/ColumnSettings/column-settings-types.d.ts +5 -1
  2405. package/tables/DataTable/components/Toolbar/ColumnSettings/column-settings-utils.d.ts +31 -2
  2406. package/tables/DataTable/components/Toolbar/ColumnSettings/column-settings-utils.js +72 -3
  2407. package/tables/DataTable/components/Toolbar/DataTableToolbar.d.ts +5 -1
  2408. package/tables/DataTable/components/Toolbar/DataTableToolbar.js +1 -0
  2409. package/tables/DataTable/components/Toolbar/Download/DataTableDownloadData.css +3 -3
  2410. package/tables/DataTable/components/Toolbar/Download/DataTableDownloadData.sty.js +2 -2
  2411. package/tables/DataTable/features/ColumnOrder/ColumnOrder.css +8 -8
  2412. package/tables/DataTable/features/ColumnOrder/ColumnOrder.sty.js +4 -4
  2413. package/tables/DataTable/features/ColumnSizing/ColumnSizing.css +3 -3
  2414. package/tables/DataTable/features/ColumnSizing/ColumnSizing.sty.js +1 -1
  2415. package/tables/DataTable/features/ColumnTypes/ColumnTypes.css +1 -1
  2416. package/tables/DataTable/features/ColumnTypes/ColumnTypes.sty.js +1 -1
  2417. package/tables/DataTable/features/ColumnTypes/column-types-types.d.ts +2 -1
  2418. package/tables/DataTable/features/ColumnVisibility/column-visibility-types.d.ts +17 -0
  2419. package/tables/DataTable/features/Download/Download.js +1 -1
  2420. package/tables/DataTable/features/GanttChart/DataTableGanttAnnotationsIndicators.css +1 -1
  2421. package/tables/DataTable/features/GanttChart/DataTableGanttAnnotationsIndicators.sty.js +1 -1
  2422. package/tables/DataTable/features/GanttChart/DataTableGanttChartCell.css +3 -3
  2423. package/tables/DataTable/features/GanttChart/DataTableGanttChartCell.sty.js +2 -2
  2424. package/tables/DataTable/features/GanttChart/DataTableGanttChartGrid.css +1 -1
  2425. package/tables/DataTable/features/GanttChart/DataTableGanttChartGrid.js +3 -3
  2426. package/tables/DataTable/features/GanttChart/DataTableGanttChartGrid.sty.js +1 -1
  2427. package/tables/DataTable/features/GanttChart/DataTableGanttChartHeader.css +4 -4
  2428. package/tables/DataTable/features/GanttChart/DataTableGanttChartHeader.sty.js +1 -1
  2429. package/tables/DataTable/features/LoadingState/LoadingState.css +3 -3
  2430. package/tables/DataTable/features/LoadingState/LoadingState.sty.js +3 -3
  2431. package/tables/DataTable/features/RowDetails/RowDetails.css +13 -13
  2432. package/tables/DataTable/features/RowDetails/RowDetails.sty.js +3 -3
  2433. package/tables/DataTable/features/RowInteractivity/RowInteractivity.css +14 -14
  2434. package/tables/DataTable/features/RowInteractivity/RowInteractivity.sty.js +1 -1
  2435. package/tables/DataTable/features/RowOrder/RowOrder.css +8 -8
  2436. package/tables/DataTable/features/RowOrder/RowOrder.sty.js +3 -3
  2437. package/tables/DataTable/features/RowOrder/components/RowOrderingDragAndDropContext.js +1 -0
  2438. package/tables/DataTable/features/Sorting/Sorting.css +34 -34
  2439. package/tables/DataTable/features/Sorting/Sorting.sty.js +3 -3
  2440. package/tables/DataTable/features/SubRows/SubRows.css +19 -19
  2441. package/tables/DataTable/features/SubRows/SubRows.sty.js +5 -5
  2442. package/tables/DataTable/features/Thresholds/Thresholds.css +2 -2
  2443. package/tables/DataTable/features/Thresholds/Thresholds.sty.js +3 -3
  2444. package/tables/DataTable/features/UserActions/RowActions.css +4 -4
  2445. package/tables/DataTable/features/UserActions/RowActions.sty.js +1 -1
  2446. package/tables/DataTable/features/UserActions/UserActions.css +18 -18
  2447. package/tables/DataTable/features/UserActions/UserActions.sty.js +2 -2
  2448. package/tables/DataTable/messages.d.ts +20 -0
  2449. package/tables/DataTable/messages.js +22 -0
  2450. package/tables/DataTable/public.api.d.ts +5 -3
  2451. package/tables/SimpleTable/SimpleTable.css +27 -27
  2452. package/tables/SimpleTable/SimpleTable.sty.js +1 -1
  2453. package/tables/index.d.ts +1 -1
  2454. package/typography/block-quote/Blockquote.css +2 -2
  2455. package/typography/block-quote/Blockquote.sty.js +1 -1
  2456. package/typography/code/Code.css +1 -1
  2457. package/typography/code/Code.sty.js +1 -1
  2458. package/typography/emphasis/Emphasis.css +1 -1
  2459. package/typography/emphasis/Emphasis.sty.js +1 -1
  2460. package/typography/external-link/ExternalLink.css +6 -6
  2461. package/typography/external-link/ExternalLink.sty.js +1 -1
  2462. package/typography/heading/Heading.css +7 -7
  2463. package/typography/heading/Heading.sty.js +1 -1
  2464. package/typography/highlight/Highlight.css +2 -2
  2465. package/typography/highlight/Highlight.sty.js +1 -1
  2466. package/typography/link/Link.css +4 -4
  2467. package/typography/link/Link.sty.js +1 -1
  2468. package/typography/list/List.css +4 -4
  2469. package/typography/list/List.sty.js +2 -2
  2470. package/typography/paragraph/Paragraph.css +3 -3
  2471. package/typography/paragraph/Paragraph.sty.js +1 -1
  2472. package/typography/strikethrough/Strikethrough.css +1 -1
  2473. package/typography/strikethrough/Strikethrough.sty.js +1 -1
  2474. package/typography/strong/Strong.css +1 -1
  2475. package/typography/strong/Strong.sty.js +1 -1
  2476. package/typography/text/Text.css +3 -3
  2477. package/typography/text/Text.sty.js +1 -1
  2478. package/typography/text-ellipsis/TextEllipsis.css +6 -6
  2479. package/typography/text-ellipsis/TextEllipsis.sty.js +2 -2
  2480. package/charts/core/components/toolbar/utils/estimate-toolbar-width.d.ts +0 -8
  2481. package/charts/honeycomb/components/canvas/utils/define-text-to-render.d.ts +0 -3
  2482. package/charts/honeycomb/components/canvas/utils/define-text-to-render.js +0 -34
  2483. package/charts/tree-map/hooks/useSetOverlayState.d.ts +0 -3
  2484. package/charts/tree-map/utils/text-measure.d.ts +0 -15
  2485. package/content/ai-response/tests/AiResponse-animation.spec.d.ts +0 -1
  2486. package/content/ai-response/tests/AiResponse-animation.spec.js +0 -281
  2487. package/content/ai-response/tests/AiResponse-reduced-motion.spec.d.ts +0 -1
  2488. package/content/ai-response/tests/AiResponse-reduced-motion.spec.js +0 -253
  2489. package/content/ai-response/tests/vite-helpers.d.ts +0 -8
  2490. package/content/ai-response/tests/vite-helpers.js +0 -66
  2491. package/esm/charts/core/components/toolbar/utils/estimate-toolbar-width.js +0 -16
  2492. package/esm/charts/core/components/toolbar/utils/estimate-toolbar-width.js.map +0 -7
  2493. package/esm/charts/honeycomb/components/canvas/utils/define-text-to-render.js +0 -19
  2494. package/esm/charts/honeycomb/components/canvas/utils/define-text-to-render.js.map +0 -7
  2495. package/esm/charts/tree-map/hooks/useSetOverlayState.js +0 -21
  2496. package/esm/charts/tree-map/hooks/useSetOverlayState.js.map +0 -7
  2497. package/esm/charts/tree-map/utils/text-measure.js +0 -41
  2498. package/esm/charts/tree-map/utils/text-measure.js.map +0 -7
  2499. package/esm/content/ai-response/tests/AiResponse-animation.spec.js +0 -295
  2500. package/esm/content/ai-response/tests/AiResponse-animation.spec.js.map +0 -7
  2501. package/esm/content/ai-response/tests/AiResponse-reduced-motion.spec.js +0 -258
  2502. package/esm/content/ai-response/tests/AiResponse-reduced-motion.spec.js.map +0 -7
  2503. package/esm/content/ai-response/tests/vite-helpers.js +0 -50
  2504. package/esm/content/ai-response/tests/vite-helpers.js.map +0 -7
  2505. package/esm/filters/filter-field/contexts/SavedAndRecentQueryClientContext.js +0 -19
  2506. package/esm/filters/filter-field/contexts/SavedAndRecentQueryClientContext.js.map +0 -7
  2507. package/esm/filters/filter-field/error-fallback/ErrorFallback.js.map +0 -7
  2508. package/esm/filters/filter-field/error-fallback/messages.js.map +0 -7
  2509. package/esm/filters/filter-field/hooks/recent-and-pinned/usePersistedFilter.js +0 -163
  2510. package/esm/filters/filter-field/hooks/recent-and-pinned/usePersistedFilter.js.map +0 -7
  2511. package/esm/filters/filter-field/hooks/recent-and-pinned/useRecentFiltersStore.js +0 -25
  2512. package/esm/filters/filter-field/hooks/recent-and-pinned/useRecentFiltersStore.js.map +0 -7
  2513. package/filters/filter-field/contexts/SavedAndRecentQueryClientContext.d.ts +0 -6
  2514. package/filters/filter-field/error-fallback/ErrorFallback.d.ts +0 -7
  2515. package/filters/filter-field/hooks/recent-and-pinned/usePersistedFilter.d.ts +0 -12
  2516. package/filters/filter-field/hooks/recent-and-pinned/usePersistedFilter.js +0 -176
  2517. package/filters/filter-field/hooks/recent-and-pinned/useRecentFiltersStore.d.ts +0 -6
  2518. package/filters/filter-field/hooks/recent-and-pinned/useRecentFiltersStore.js +0 -39
  2519. /package/charts/xy-chart-adoption/{types → shared/types}/props.d.ts +0 -0
  2520. /package/charts/xy-chart-adoption/{types → shared/types}/props.js +0 -0
  2521. /package/{filters/filter-field → core/components}/error-fallback/ErrorFallback.js +0 -0
  2522. /package/{charts/core → core}/utils/get-tick-value-as-number.d.ts +0 -0
  2523. /package/{charts/core → core}/utils/get-tick-value-as-number.js +0 -0
  2524. /package/esm/charts/{xy-chart-adoption/types/props.js.map → core/types/chart-data.js.map} +0 -0
  2525. /package/esm/charts/xy-chart-adoption/{types → shared/types}/props.js +0 -0
  2526. /package/esm/{filters/filter-field → core/components}/error-fallback/ErrorFallback.js +0 -0
  2527. /package/esm/{charts/core → core}/utils/get-tick-value-as-number.js +0 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,2137 @@
1
+ # components
2
+
3
+ ## 3.8.3
4
+
5
+ ### Updates
6
+
7
+ #### FilterField
8
+
9
+ - Fixed recent and pinned filter suggestions not being restored in apps that do not mount an `AppStateProvider`. (APPDEV-19694)
10
+
11
+ ## 3.8.2
12
+
13
+ ### Updates
14
+
15
+ #### SegmentSelector
16
+
17
+ - Increased the maximum number of result records from 10,000 to 15,000. (APPDEV-18655)
18
+
19
+ ## 3.8.1
20
+
21
+ ### Updates
22
+
23
+ #### FilterField
24
+
25
+ - Fixed build warnings due to extra commas in css file (APPDEV-18608)
26
+
27
+ ## 3.8.0
28
+
29
+ ### Dependency updates
30
+
31
+ - Changed peerDependency version range for `@dynatrace-sdk/client-platform-management-service` from `^1.7.0` to `^1.8.0`.
32
+ - `@dynatrace/strato-design-tokens` was updated to version `1.5.1`.
33
+ - `@dynatrace/strato-icons` was updated to version `2.3.1`.
34
+
35
+ ### Deprecations
36
+
37
+ #### Filters
38
+
39
+ - `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)
40
+
41
+ #### Forms
42
+
43
+ - `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)
44
+
45
+ #### CodeEditor
46
+
47
+ - `isControlled` is deprecated from the start and will be removed when fully controlled behavior becomes the default. (APPDEV-5775)
48
+
49
+ #### DataTable
50
+
51
+ - 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)
52
+
53
+ #### DonutChart
54
+
55
+ - Deprecated `DonutChartData` type. Use the unified `ChartData` format with `labelAccessor`/`valueAccessor` instead. (APPDEV-17850)
56
+
57
+ #### DQLEditor
58
+
59
+ - `isControlled` is deprecated from the start and will be removed when fully controlled behavior becomes the default. (APPDEV-5775)
60
+
61
+ #### HoneycombChart
62
+
63
+ - 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.
64
+
65
+ #### Page
66
+
67
+ - Deprecated the `Page` component and all its related types and sub-components. Please use `PageLayout` instead. (APPDEV-18104)
68
+
69
+ #### PieChart
70
+
71
+ - Deprecated `PieChartData` and `SliceData` interfaces. Use the unified `ChartData` format with `labelAccessor`/`valueAccessor` instead. (APPDEV-17850)
72
+
73
+ ### Updates
74
+
75
+ #### General
76
+
77
+ - Changelog files are now included in the published packages for easier agentic access.
78
+
79
+ #### Charts
80
+
81
+ - Fixed the tooltip's series actions menu closing when scrolling inside it. (APPDEV-18359)
82
+ - Fixed tooltip not repositioning when dragging on a fixed-width chart on a mobile device. (APPDEV-18435)
83
+ - Fixed the tooltip from not resetting when the toolbar is clicked or dragged. (APPDEV-18187)
84
+ - The standalone `TopList` component is now available in the Strato package. (APPDEV-17246)
85
+ - Fixed the toolbar auto-collapse logic and added collapse button to `Map` toolbar. (APPDEV-18014)
86
+ - 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)
87
+
88
+ #### Editors
89
+
90
+ - Fixed the caret jumping to the end of the placeholder when an empty editor lost focus. (APPDEV-18218)
91
+ - Fixed the text color of the selected suggestion item, including its prefix, in light mode. (APPDEV-18126)
92
+
93
+ #### Filters
94
+
95
+ - You can now use the `onValidityChange` prop on `FilterField`, `SegmentSelector`, and `TimeframeSelector` to react to validation state changes. (APPDEV-17939)
96
+
97
+ #### Forms
98
+
99
+ - 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)
100
+ - 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)
101
+
102
+ #### Layouts
103
+
104
+ - Changed the `PageLayout.Content` rendered element from `div` to `main` for better screen reader support.
105
+
106
+ #### AnnotationsChart
107
+
108
+ - Fixed annotation value markers from rendering at incorrect positions and not triggering tooltips when right-aligned near the chart edge. (APPDEV-18119)
109
+
110
+ #### AppHeader
111
+
112
+ - The Logo's `releasePhase` prop now also accepts `'new'`, `'deprecated'` and `'early-access'`. (PPFB-801)
113
+
114
+ #### Button
115
+
116
+ - 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)
117
+
118
+ #### CategoricalBarChart
119
+
120
+ - Fixed unpinned `ChartTooltip` from not being properly hidden when scrolling the page. (APPDEV-18095)
121
+
122
+ #### CodeEditor
123
+
124
+ - Keyboard shortcuts for code folding are now possible. See documentation for keybindings.(APPDEV-3639)
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
+ - 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)
128
+
129
+ #### CodeSnippet
130
+
131
+ - Introduced a `fullHeight` prop that allows the component to fill the height of its parent container. (APPDEV-17851)
132
+
133
+ #### DataTable
134
+
135
+ - 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)
136
+ - Fixed the row ordering drag-and-drop live region from being placed inside `[role=grid
137
+ - Fixed the interactive row highlight border becoming misaligned with the pinned column borders at non-100% browser zoom levels. (APPDEV-18333)
138
+ - 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)
139
+ - Fixed column settings search from not matching grouped columns by their group header label. (APPDEV-18217)
140
+ - 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)
141
+ - 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)
142
+
143
+ #### DonutChart
144
+
145
+ - Added support for the unified `ChartData` format (`ChartDatapoint[
146
+
147
+ #### DQLEditor
148
+
149
+ - Tooltips on autocomplete suggestions are now also shown on mouse hover. (APPDEV-17382)
150
+ - 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)
151
+ - 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)
152
+ - 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)
153
+ - DQL formatting is now available via a built-in menu button or keyboard shortcut (`Ctrl-Shift-f`, Mac: `Cmd-Shift-f`). (PRODUCT-12538)
154
+ - Improved DQL autocomplete when replacing existing command tokens, including nested subqueries. (APPDEV-17943)
155
+ - 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)
156
+
157
+ #### FilterField
158
+
159
+ - Aligned the boxShadows to match other inputs when the visual refresh introduced with Strato 3.5.0 is enabled. (APPDEV-17773)
160
+ - Fixed a syntax error message from appearing while the user is actively typing after refocusing a previously-blurred field. (APPDEV-18122)
161
+
162
+ #### GaugeChart
163
+
164
+ - Fixed the toolbar and tooltip not appearing with the first tap on touch devices. (APPDEV-18144)
165
+
166
+ #### HistogramChart
167
+
168
+ - HistogramChart now uses XYChart as its underlying rendering engine. (APPDEV-16422)
169
+
170
+ #### HoneycombChart
171
+
172
+ - Added `textSize` prop to support fixed pixel size and automatic per-tile size selection for tile labels. (APPDEV-14157)
173
+ - Fixed pinned tooltip disappearing when clicking on whitespace. (APPDEV-18423)
174
+ - 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)
175
+
176
+ #### Menu
177
+
178
+ - 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)
179
+
180
+ #### Page
181
+
182
+ - Aligned the styling of the collapsed sidebar with that of the `PageLayout` component. (APPDEV-18295)
183
+
184
+ #### PieChart
185
+
186
+ - Added support for the unified `ChartData` format (`ChartDatapoint[
187
+
188
+ #### ReleasePhaseIndicator
189
+
190
+ - Added `'early-access'` as a new supported phase. (PPFB-801)
191
+
192
+ #### RunQueryButton
193
+
194
+ - 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)
195
+
196
+ #### SegmentSelector
197
+
198
+ - Improved tracking of segment variable usage. (PAPA-34118)
199
+
200
+ #### Select
201
+
202
+ - Fixed a performance issue that caused all options to re-render when hovering a single option. (APPDEV-15702)
203
+ - The hover style for options is now handled via CSS, meaning mouse hover and keyboard focus styles are visually distinct. (APPDEV-15702)
204
+ - Fixed incorrect option heights and blank, over-scroll whitespace on initial open of the virtualised list. (APPDEV-18184)
205
+ - 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)
206
+
207
+ #### TimeframeSelector
208
+
209
+ - Clicking the stepper now saves the shifted value as recently used timeframe. (APPDEV-18225)
210
+
211
+ #### TreeMap
212
+
213
+ - 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)
214
+
215
+ #### XYChart
216
+
217
+ - You can now set `allowDecimals={false}` on a numerical axis to show only whole-integer tick labels. (APPDEV-18068)
218
+ - 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)
219
+ - 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)
220
+
221
+ ## 3.7.1
222
+
223
+ ### Updates
224
+
225
+ #### DataTable
226
+
227
+ - 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)
228
+
229
+ ## 3.7.0
230
+
231
+ ### Deprecations
232
+
233
+ #### Charts
234
+
235
+ - Deprecated legacy `_ChartTooltip` and `InteractiveChartTooltip`. Instead, use `ChartTooltip`.
236
+
237
+ #### HoneycombChart
238
+
239
+ - Deprecated `showLabels` prop in favor of the new `labelsDisplay` prop. When both are set, `labelsDisplay` takes precedence. (APPDEV-17484)
240
+
241
+ #### MeterBarChart
242
+
243
+ - Deprecated `tooltip: boolean` consumer config. Instead, use `tooltip: { hidden?: boolean }`. (APPDEV-17808)
244
+
245
+ #### MultiMeterBarChart
246
+
247
+ - Deprecated `tooltip.enabled` consumer config. Instead, use `tooltip.hidden`. (APPDEV-17808)
248
+
249
+ ### Updates
250
+
251
+ #### General
252
+
253
+ - Removed CodeSandbox preview links from use case examples. (APPDEV-16704)
254
+
255
+ #### Charts
256
+
257
+ - Fixed charts from crashing when an empty string was provided as a color value. (APPDEV-18083)
258
+
259
+ #### Editors
260
+
261
+ - Autocomplete suggestions can now also be selected using the `tab` key. (APPDEV-3426)
262
+
263
+ #### Layouts
264
+
265
+ - 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)
266
+
267
+ #### AnnotationsChart
268
+
269
+ - Fixed annotation markers not being sorted by priority when ungrouped, which had caused incorrect stacking order. (APPDEV-17931)
270
+
271
+ #### Avatar
272
+
273
+ - Fixed initial letter not being vertically centered at non-100% browser zoom levels on Windows. (APPDEV-17890)
274
+ - Fixed font properties not being inherited correctly when an avatar is rendered as a `button` element. (APPDEV-17890)
275
+
276
+ #### CodeEditor
277
+
278
+ - Added a `defaultValue` prop for uncontrolled usage. It sets the initial editor content. Existing `value` behavior is unchanged. (APPDEV-17373)
279
+ - 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)
280
+
281
+ #### DataTable
282
+
283
+ - Column ordering via drag and drop now scrolls correctly when dragging columns to the edge of the table. (APPDEV-17398)
284
+ - The empty state container is now sticky and stays centered within the visible viewport when the table is horizontally scrollable. (APPDEV-17722)
285
+ - Dragging a column header no longer causes the page to scroll unexpectedly. (APPDEV-17906)
286
+ - Fixed an issue in Firefox where resizing a column where `columnOrdering` was enabled incorrectly triggered column dragging. (APPDEV-17925)
287
+ - In tables with sub-rows, custom headers in the sub-row column now use the full width. (APPDEV-16976)
288
+ - 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)
289
+ - 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)
290
+
291
+ #### DateTimePicker
292
+
293
+ - Letter key presses in a number spin button are now silently ignored. (APPDEV-17978)
294
+ - Right-clicking after selecting across multiple fields now shows the browser's native Cut/Copy context menu, without losing the current selection. (APPDEV-17476)
295
+
296
+ #### DQLEditor
297
+
298
+ - Added a `defaultValue` prop for uncontrolled usage. It sets the initial editor content. Existing `value` behavior is unchanged. (APPDEV-17373)
299
+ - `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)
300
+ - 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)
301
+ - 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)
302
+
303
+ #### FilterField
304
+
305
+ - Fixed an issue where clicking the clear button triggered premature validation and caused a brief error state. (APPDEV-15429)
306
+ - Fixed a crash ("Ranges must be added sorted by `from` position") that occurred when CodeMirror produced multiple visible ranges. (APPDEV-17983)
307
+ - Add `removeFilter` value operation helper for programmatically removing filter values from a `FilterField` value string. (APPDEV-17700)
308
+ - Added the `addFilter` value operation helper to programmatically add filter values to a `FilterField` value string. (APPDEV-17699)
309
+
310
+ #### HoneycombChart
311
+
312
+ - Fixed tooltip pinning on touch devices where hover events are never fired before a tap. (APPDEV-18139)
313
+ - Added `labelsDisplay` prop to control which tile label content is shown. (APPDEV-17484)
314
+
315
+ #### Modal
316
+
317
+ - 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)
318
+
319
+ #### Page
320
+
321
+ - Fixed the PageLayout resize handler element space when the visual refresh is enabled. (APPDEV-17898)
322
+
323
+ #### SearchInput
324
+
325
+ - Fixed `SearchInput` stepper from showing "1 / 0" when there were no matches. (APPOBS-33512)
326
+
327
+ #### SegmentSelector
328
+
329
+ - Removed the 320 px width cap on the empty state so `Manage segments` and `Learn more about segments` no longer truncate. (PAPA-33581)
330
+
331
+ #### TimeframeSelector
332
+
333
+ - Fixed the stepper ignoring the controlled value when stepping through timeframes. (APPDEV-18106)
334
+ - Letter key presses in a number spin button are now silently ignored. (APPDEV-17978)
335
+ - 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)
336
+ - Right-clicking after selecting across multiple fields now shows the browser's native Cut/Copy context menu, without losing the current selection. (APPDEV-17476)
337
+ - Selecting a preset after stepping no longer restores the previous stepper position on the next step. (APPDEV-18088)
338
+
339
+ #### Toast
340
+
341
+ - Fixed incorrect icon padding and borders in certain cases due to a CSS specificity issue. (APPDEV-17979)
342
+
343
+ #### TreeMap
344
+
345
+ - Fixed tooltip pinning on touch devices where hover events are never fired before a tap. (APPDEV-18139)
346
+
347
+ #### XYChart
348
+
349
+ - Fixed the rendering of `BarSeries` data points that have only a start value (`x0`/`y0`). These will now default to a 5px width/height.
350
+
351
+ ## 3.6.0
352
+
353
+ ### Updates
354
+
355
+ #### General
356
+
357
+ - Fixed type signatures for `data-dt-value-content` and `data-dt-children-value-content` in `BehaviorTrackingProps` — both are now correctly typed as `boolean`.
358
+
359
+ #### Charts
360
+
361
+ - 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.
362
+ - 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.
363
+
364
+ #### AnnotationsChart
365
+
366
+ - Added custom tooltip support via `AnnotationsChart.Tooltip` slot. (APPDEV-16290)
367
+ - Migrated the old tooltip to use the new unified tooltip.
368
+
369
+ #### CodeSnippet
370
+
371
+ - Null literals are now syntax-highlighted when using the `dql` language. (APPDEV-17731)
372
+ - 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)
373
+ - 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)
374
+
375
+ #### DataTable
376
+
377
+ - `openColumnSettings()` now accepts `resetColumnVisibility`, `resetColumnOrder`, and `resetColumnPinning` to define a custom reset state when opening the column settings modal programmatically. (APPDEV-17273)
378
+ - Fixed sorting arrow disappearing when initially opening the column actions menu via right-click. (APPDEV-17723)
379
+
380
+ #### DateTimePicker
381
+
382
+ - 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)
383
+ - Now copies placeholder text when digits are missing. (APPDEV-17358)
384
+ - Fixed undo reverting more than the last pasted input. (APPDEV-17359)
385
+
386
+ #### DQLEditor
387
+
388
+ - Typing a backtick or other dead-key character on keyboard layouts that require IME composition no longer corrupts the editor content. (APPDEV-17841)
389
+ - 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)
390
+ - Null literals are now syntax-highlighted. (APPDEV-17731)
391
+ - A query between at least two triple-quoted strings in one line is no longer highlighted as a string. (APPDEV-17719)
392
+ - A single-line comment containing consecutive double-quote characters is now correctly highlighted as a comment to the end of the line. (APPDEV-17719)
393
+ - Added `DQLEditor.ActionsMenu` slot that enables a built-in actions menu with "Copy query" and "Open documentation" actions. (APPDEV-17375)
394
+
395
+ #### FilterField
396
+
397
+ - Suggestions now match and highlight eligible details text while keeping operator and generated supported-values details display-only. (APPDEV-17870)
398
+ - Pressing Enter on the clear or pin button triggers the respective button. (APPDEV-17705)
399
+ - Fixed suggestion application when a custom suggestion provides its replacement range in reverse order. (PAPA-33294)
400
+
401
+ #### GaugeChart
402
+
403
+ - Added support for custom tooltip via render function in `GaugeChart.Tooltip` slot. (APPDEV-17878)
404
+
405
+ #### HistogramChart
406
+
407
+ - `HistogramChartXAxisProps` and `HistogramChartYAxisProps` now use the shared `MinScaleBoundary` and `MaxScaleBoundary` types for their min and max props. (APPDEV-13235)
408
+
409
+ #### HoneycombChart
410
+
411
+ - Added support for custom tooltip. (APPDEV-16287)
412
+
413
+ #### Menu
414
+
415
+ - Fixed several outside-click dismissal issues on the Menu component. (APPDEV-16531)
416
+
417
+ #### MeterBarChart
418
+
419
+ - 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)
420
+
421
+ #### MultiMeterBarChart
422
+
423
+ - 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)
424
+
425
+ #### SearchInput
426
+
427
+ - Added an optional stepper. (APPOBS-33512)
428
+
429
+ #### SegmentSelector
430
+
431
+ - The "Manage segments" button now opens the Segments management page in a new browser tab instead of a modal overlay. (PAPA-33167)
432
+ - Now safeguards possible empty strings more thoroughly. (APPDEV-16653)
433
+
434
+ #### Select
435
+
436
+ - 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)
437
+
438
+ #### SingleValue
439
+
440
+ - `SingleValue` and `SingleValueGrid` now accept `aria-label` and `aria-describedby` props for accessibility. (APPDEV-17682)
441
+
442
+ #### TerminologyOverlay
443
+
444
+ - Screen readers now announce the full overlay content when expanded. (APPDEV-17342)
445
+
446
+ #### TimeframeSelector
447
+
448
+ - 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)
449
+ - Fixed unreliable focus of the hour spin button after selecting a date from the calendar. (APPDEV-17353)
450
+ - Now copies placeholder text when digits are missing. (APPDEV-17358)
451
+ - Fixed clear button not dismissing validation errors and apply button not working after clearing. (APPDEV-17664)
452
+ - Navigating between the two inputs using Backspace or Delete no longer deletes content in the destination input. (APPDEV-17478)
453
+ - 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)
454
+ - Now uses the existing date as a reference when populating hours automatically. (APPDEV-17475)
455
+ - Fixed partial `defaultValue` or `value` (only `from` or only `to` set) being silently ignored and treated as if no value was provided. (APPDEV-17663)
456
+ - Fixed undo reverting more than the last pasted input. (APPDEV-17359)
457
+
458
+ #### TimeseriesChart
459
+
460
+ - Fixed the chart staying in pan mode after releasing the mouse over the chart body while dragging the time axis. (APPDEV-17818)
461
+
462
+ #### TreeMap
463
+
464
+ - 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)
465
+ - Added a slot that allows disabling and customizing the tooltip. (APPDEV-16286)
466
+
467
+ #### XYChart
468
+
469
+ - 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)
470
+ - Horizontal axes now display a better number of ticks avoiding collisions for numerical and time domains. (APPDEV-17304)
471
+ - Added an optional `labelAccessor` prop that renders a text label inside each bar. (APPDEV-17241)
472
+ - Fixed stacked/grouped `BarSeries` and stacked `AreaSeries` with `valueRepresentation="relative"` collapsing every bar to 100% when only one series is visible. (APPDEV-17339)
473
+
474
+ ## 3.5.2
475
+
476
+ ### Updates
477
+
478
+ #### General
479
+
480
+ - Fix type signatures for `data-dt-value-content` and `data-dt-children-value-content` in `BehaviorTrackingProps` — both are now correctly typed as `boolean`.
481
+
482
+ #### DQLEditor
483
+
484
+ - 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)
485
+
486
+ ## 3.5.1
487
+
488
+ ### Updates
489
+
490
+ #### Core
491
+
492
+ - 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.
493
+
494
+ #### EmptyState
495
+
496
+ - Image url for visual preset with context `document` and type `something-missing` is now correct.
497
+
498
+ #### FilterField
499
+
500
+ - Fixed focus styles when visual refresh is enabled.
501
+
502
+ ## 3.5.0
503
+
504
+ ### Dependency updates
505
+
506
+ - `@dynatrace/strato-icons` was updated to version `2.3.0`.
507
+ - `@dynatrace/strato-design-tokens` was updated to version `1.5.0`.
508
+
509
+ ### Deprecations
510
+
511
+ #### XYChart
512
+
513
+ - Deprecated `XYChart.CustomTooltip` slot. Use `XYChart.Tooltip` instead. (APPDEV-16900)
514
+
515
+ ### Updates
516
+
517
+ #### General
518
+
519
+ - Components using `useFocusRing` no longer re-render when the input modality changes while they are not focused. (APPDEV-5547)
520
+ - 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)
521
+
522
+ #### Charts
523
+
524
+ - The `ChartTooltip` now allows showing two lines of data within the `Header`. (APPDEV-17272)
525
+ - Fixed `ChartTooltip` so the latest displayed tooltip appears on top. (APPDEV-17620)
526
+
527
+ #### Core
528
+
529
+ - `useFocusRing` with `isMinimal: true` and no explicit `color` now correctly applies the neutral focus ring styles. (APPDEV-17403)
530
+
531
+ #### AnnotationsChart
532
+
533
+ - Annotation indicators now correctly highlight and dim when the chart cursor or tooltip aligns with a marker timeframe. (APPDEV-17635)
534
+
535
+ #### ChipGroup
536
+
537
+ - When the user selects "Show more", the focus remains on the control so they can easily select "Show less". (APPDEV-17212)
538
+ - Made the "Show more" and "Show less" controls properly show the focus ring on keyboard focus. (APPDEV-17403)
539
+
540
+ #### CodeEditor
541
+
542
+ - Virtual focus styles now use consistent design token-based colors and animations. (APPDEV-17187)
543
+
544
+ #### CodeSnippet
545
+
546
+ - Keyword highlighting for DQL language no longer highlights non-keywords, matching the behavior of the `DQLEditor`. (APPDEV-11154)
547
+ - Syntax highlighting for DQL language no longer highlights the colon of a parameter. (APPDEV-11154)
548
+ - Number literals followed by a duration or calendar duration unit suffix are now highlighted when using the `dql` language. (APPDEV-17380)
549
+ - Boolean literals are now syntax-highlighted when using the `dql` language. (APPDEV-17379)
550
+ - Added log-language highlighting support for 16-character hex IDs (letter-leading and digit-leading). (APPDEV-11851)
551
+
552
+ #### DataTable
553
+
554
+ - Fixed vertical alignment of values in sparkline columns. Cells of sparkline columns now correctly stretch to fill the full row height. (APPDEV-17156)
555
+ - 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)
556
+ - The interactive row associated with an open cell or row actions menu is now highlighted while the user interacts with the menu. (APPDEV-17386)
557
+ - Row ordering drag handles now correctly reflect the disabled state for all rows after sorting and clearing sorting. (APPDEV-17657)
558
+ - Fixed an unexpected focus ring appearing on the drag handle after dropping a row via mouse. (APPDEV-17634)
559
+ - When pagination is enabled, the `scrollToRow` function now navigates to the correct page and scrolls to the correct row. (APPDEV-12465)
560
+ - Fixed the focus ring not being visible on the drag handle of the dragged row when reordering rows via keyboard. (APPDEV-17634)
561
+ - Added `log-content` highlighting support for 16-character hex IDs so both letter-leading and digit-leading IDs are highlighted consistently. (APPDEV-11851)
562
+
563
+ #### DonutChart
564
+
565
+ - Now has a slot that allows you to disable and customize the tooltip. (APPDEV-16241)
566
+
567
+ #### DQLEditor
568
+
569
+ - Syntax highlighting no longer highlights commands when they appear at the beginning of another token. (APPDEV-11154)
570
+ - Number literals followed by a duration or calendar duration unit suffix are now highlighted. (APPDEV-17380)
571
+ - Boolean literals are now syntax-highlighted. (APPDEV-17379)
572
+
573
+ #### FilterField
574
+
575
+ - Fixed `validatorMap` key suggestion details not being shown for keys with literal value predicates. (APPDEV-17670)
576
+ - Virtual focus styles now use consistent design token-based colors and animations. (APPDEV-17185)
577
+
578
+ #### HistogramChart
579
+
580
+ - Selection area tooltip now has improved visuals and performance. (APPDEV-16293)
581
+
582
+ #### InputGroup
583
+
584
+ - No longer renders a grid wrapper when no children are provided, preventing unintended spacing in the UI. (APPDEV-17490)
585
+
586
+ #### Menu
587
+
588
+ - Now checks whether code is running in a browser before accessing browser-only APIs, preventing potential SSR (server-side rendering) issues. (APPDEV-17212)
589
+
590
+ #### Page
591
+
592
+ - `PageLayout` is now available as a new, more flexible replacement for `Page`. (APPDEV-17730)
593
+
594
+ #### PieChart
595
+
596
+ - Now has a slot that allows you to disable and customize the tooltip. (APPDEV-16241)
597
+
598
+ #### Select
599
+
600
+ - Virtual focus styles now use consistent design token-based colors and animations. (APPDEV-17185)
601
+
602
+ #### TimeframeSelector
603
+
604
+ - Fixed a duplicate "Please fill in this field" error message that appeared alongside the "Empty timeframe" validation message. (APPDEV-17488)
605
+ - `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.
606
+ - Fixed an issue where selecting a preset item triggered a click on elements below the overlay. (APPDEV-17367)
607
+
608
+ #### TimeseriesChart
609
+
610
+ - Selection area tooltip now has improved visuals and performance. (APPDEV-16293)
611
+
612
+ #### XYChart
613
+
614
+ - Selection area tooltip now has improved visuals and performance. (APPDEV-16293)
615
+ - 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)
616
+
617
+ ## 3.4.1
618
+
619
+ ### Updates
620
+
621
+ #### General
622
+
623
+ - Fix type signatures for `data-dt-value-content` and `data-dt-children-value-content` in `BehaviorTrackingProps` — both are now correctly typed as `boolean`.
624
+
625
+ #### DQLEditor
626
+
627
+ - 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)
628
+
629
+ ## 3.4.0
630
+
631
+ ### Dependency updates
632
+
633
+ - `@dynatrace/strato-design-tokens` was updated to version `1.4.0`.
634
+
635
+ ### Updates
636
+
637
+ #### General
638
+
639
+ - Behavior tracking attributes are now supported in all button components, including `Button`, `IntentButton`, `NotifyButton`, and `RunQueryButton`. (APPDEV-16876)
640
+ - The text and icon color tokens for the success on accent button are now correct. (APPDEV-17388)
641
+ - 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)
642
+ - 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)
643
+ - Added feature flag and css overrides for design tokens for visual refresh. (APPDEV-17223)
644
+
645
+ #### Charts
646
+
647
+ - Annotations now allows metadata for intents. (APPDEV-17129)
648
+ - Chart.Legend now correctly respects the initialRatio prop when the chart is first rendered without data and later receives data. (APPDEV-17415)
649
+ - Legend interactions are now disabled when loading is visible. (APPDEV-16703)
650
+
651
+ #### Core
652
+
653
+ - `useFocusRing` considers the modality correctly when the `focusWithin` flag is set.
654
+
655
+ #### Editors
656
+
657
+ - Default placeholder texts are now shown when no placeholder is explicitly provided. (APPDEV-17048)
658
+
659
+ #### Forms
660
+
661
+ - 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)
662
+ - Default placeholder texts are now shown when no placeholder is explicitly provided. (APPDEV-17048)
663
+
664
+ #### Overlays
665
+
666
+ - 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)
667
+
668
+ #### AnnotationsChart
669
+
670
+ - Fixed an issue in the `AnnotationsChart` where range marker alignment with indicators was incorrect when space is constrained (APPDEV-17128)
671
+
672
+ #### CategoricalBarChart
673
+
674
+ - Threshold indicator tooltips now match the updated chart tooltip design. (APPDEV-16294)
675
+
676
+ #### ChipGroup
677
+
678
+ - The expand/collapse control button now correctly references the chip group via `aria-controls`.
679
+ - The `Show more` control no longer remains visible after all chips are removed. (APPDEV-11526)
680
+ - Dynamically-added chips no longer flash visibly before being hidden behind the `Show more` control. (APPDEV-11526)
681
+
682
+ #### CodeSnippet
683
+
684
+ - Kotlin, Swift, and Groovy are now supported languages. (APPDEV-12954)
685
+
686
+ #### DataTable
687
+
688
+ - The page now remains interactive when cell or column actions menu is open. (APPDEV-17100)
689
+ - When downloading large tables as CSV, a progress indicator is now shown, and the table stays responsive during the download. (APPDEV-13387)
690
+ - Sorting controls are now also available in the column actions menu for any column with sorting enabled. (APPDEV-16866)
691
+ - The buttons for showing/collapsing row details from expandable rows no longer have a broken `aria-controls` reference. (APPDEV-17125)
692
+ - Unpinned columns can now be ordered via drag and drop while other columns are pinned. (APPDEV-16859)
693
+
694
+ #### DateTimePicker
695
+
696
+ - Arrow key navigation on empty spin buttons now cycles correctly through values instead of sticking at "00".
697
+ - Changing the precision while a spin button is partially filled now functions without breaking the input. (APPDEV-17299)
698
+ - Selected SpinButton values can now be deleted via `Delete`, `Backspace`, and `Cut`. (APPDEV-16125)
699
+ - Relative-value expression inputs now support partial text selection and deletion. (APPDEV-17229)
700
+ - Selection behavior for spin buttons when using Shift+ArrowLeft/ArrowRight now allows values to be deselected correctly. (APPDEV-17229)
701
+ - Spinbutton placeholders now use uppercase format (`YYYY`, `MM`, `DD`) for improved clarity and consistency.
702
+
703
+ #### DonutChart
704
+
705
+ - The tooltip has an updated layout and performance improvements. (APPDEV-15962)
706
+
707
+ #### DQLEditor
708
+
709
+ - 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)
710
+ - Autocomplete suggestions now open automatically when the cursor is placed on a new line after existing query content. (APPDEV-17256)
711
+
712
+ #### FilterField
713
+
714
+ - 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)
715
+ - Improved the visual style of pasted content. (APPDEV-16263)
716
+ - `suggestStatementOnValueMatch` now matches values case-insensitively. (APPDEV-17294)
717
+ - Typing a key followed by a space inside a bracket group (`(foo )`, for example) now shows the correct suggestions. (APPDEV-17232)
718
+ - Fixed the highlight range from potentially being out of bounds. (APPDEV-17263)
719
+ - 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)
720
+
721
+ #### GaugeChart
722
+
723
+ - Has a new and improved tooltip, which now also shows by default. (APPDEV-16899)
724
+
725
+ #### HistogramChart
726
+
727
+ - Threshold indicator tooltips now match the updated chart tooltip design. (APPDEV-16294)
728
+
729
+ #### HoneycombChart
730
+
731
+ - The tooltip in the `HoneycombChart` has a renewed view and improved performance. (APPDEV-16285)
732
+
733
+ #### IntentButton
734
+
735
+ - `IntentButton.Item` now supports a disabled state. (APPDEV-17301)
736
+
737
+ #### Label
738
+
739
+ - Now displays a "(read only)" text suffix when the associated form field is read only. (APPDEV-16541)
740
+
741
+ #### Menu
742
+
743
+ - The `Menu` trigger now correctly shows its active state when the `Menu` is open. (APPDEV-16688)
744
+
745
+ #### MeterBarChart
746
+
747
+ - `MeterBarChart.Tooltip` now accepts a `name` prop to customize the label displayed in the tooltip. (APPDEV-16994)
748
+ - Added `Legend` slot with a `hidden` prop. `MeterBarChart.ThresholdLegend` is deprecated in favor of `MeterBarChart.Legend`. (APPDEV-16834)
749
+ - The single meter bar now supports the loading state. (APPDEV-16795)
750
+
751
+ #### Microguide
752
+
753
+ - The overlay is now rendered in the correct position, regardless of style load order. (APPDEV-17240)
754
+
755
+ #### MultiMeterBarChart
756
+
757
+ - The `Legend` slot now supports a `hidden` prop. (APPDEV-16834)
758
+ - The multimeter bar now supports the loading state. (APPDEV-16795)
759
+
760
+ #### PieChart
761
+
762
+ - The tooltip has an updated layout and performance improvements. (APPDEV-15962)
763
+
764
+ #### Select
765
+
766
+ - When opening a second Select on mobile, the first one closes. (APPDEV-17015)
767
+
768
+ #### TimeframeSelector
769
+
770
+ - Arrow key navigation on empty spin buttons now cycles correctly through values instead of sticking at "00".
771
+ - Changing the precision while a spin button is partially filled now functions correctly and doesn't break the input. (APPDEV-17299)
772
+ - Selected `SpinButton` values can now be deleted via `Delete`, `Backspace`, and `Cut`. (APPDEV-16125)
773
+ - Calendar now resets the selection when reopened.
774
+ - DateTime inputs can now be scrolled horizontally on mobile devices. (APPDEV-16852)
775
+ - Fixed spin buttons not restoring properly when an absolute value is set to the same date after fields were manually cleared. (APPDEV-17389)
776
+ - `Select all` in the expression input no longer throws an error when the browser wraps the text content in element nodes. (APPDEV-16987)
777
+ - Relative-value expression inputs now support partial text selection and deletion. (APPDEV-17229)
778
+ - Fixed pasting invalid expressions into the from-input from replacing the arrow separator. (APPDEV-17277)
779
+ - Selection behavior for spin buttons when using Shift+ArrowLeft/ArrowRight now allows values to be deselected correctly. (APPDEV-17229)
780
+ - 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)
781
+ - Fixed copying from a single focused field.
782
+ - Pasting formatted dates and times is now supported. (APPDEV-16822)
783
+ - Spinbutton placeholders now use uppercase format (`YYYY`, `MM`, `DD`) for improved clarity and consistency.
784
+
785
+ #### TimeseriesChart
786
+
787
+ - Threshold indicator tooltips now match the updated chart tooltip design. (APPDEV-16294)
788
+
789
+ #### Toast
790
+
791
+ - No longer displays incorrect visual styles. (APPDEV-17316)
792
+
793
+ #### TreeMap
794
+
795
+ - 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)
796
+ - Errors thrown inside the `formatter` prop are now correctly caught and rendered as the `ErrorState`. (APPDEV-17319)
797
+ - 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)
798
+
799
+ #### XYChart
800
+
801
+ - Fixed an issue that caused `AreaSeries` to show duplicate gap datapoints when stacked.
802
+ - `BarSeries` that are grouped by category now have grid lines, making them easier to see. (APPDEV-17201)
803
+ - Fixed thresholds are no longer hidden when their assigned axis is filtered out via the legend. (APPDEV-16553)
804
+ - 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.
805
+ - Threshold indicator tooltips now match the updated chart tooltip design. (APPDEV-16294)
806
+
807
+ ## 3.3.3
808
+
809
+ ### Updates
810
+
811
+ #### FilterField
812
+
813
+ - Now catches pending promise rejections on the FilterField saveRecentFilters imperative handle. (APPDEV-17372)
814
+
815
+ ## 3.3.2
816
+
817
+ ### Updates
818
+
819
+ #### FilterField
820
+
821
+ - 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)
822
+
823
+ ## 3.3.1
824
+
825
+ ### Updates
826
+
827
+ #### Page
828
+
829
+ - User-provided `data-dt-name` and `data-dt-properties` attributes on `Page.PanelControlButton` are no longer overridden by the default values. (APPDEV-17287)
830
+
831
+ #### TimeframeSelector
832
+
833
+ - Fixed preset and recent suggestions being incorrectly disabled when `max` is set to an expression value (e.g. `now`). (APPDEV-17327)
834
+
835
+ #### ToggleButtonGroup
836
+
837
+ - User-provided `data-dt-name` attribute on `ToggleButtonGroup.Item` is no longer overridden by the default value. (APPDEV-17287)
838
+
839
+ #### Tooltip
840
+
841
+ - User-provided `data-dt-name` attribute on the trigger is no longer overridden by the default value. (APPDEV-17287)
842
+
843
+ ## 3.3.0
844
+
845
+ ### Dependency updates
846
+
847
+ - Changed peerDependency version range for `@dynatrace-sdk/client-notifications-v2` from `^1.0.0` to `^1.0.0 | ^2.0.0`.
848
+ - `@dynatrace/strato-icons` was updated to version `2.2.0`.
849
+
850
+ ### Deprecations
851
+
852
+ #### FilterField
853
+
854
+ - The object notation of the `validatorMap` component's `keyPredicates` is now deprecated. Use the array notation instead. (APPDEV-15798)
855
+
856
+ Instead of accepting an object, the `keyPredicates` now have to be provided as an array. See the example below:
857
+
858
+ ```diff
859
+ const validatorMap = {
860
+ - keyPredicates: {
861
+ - myKey1: {
862
+ - valuePredicate: ...
863
+ - },
864
+ - myKey2: {
865
+ - valuePredicate: ...
866
+ - },
867
+ - },
868
+ + keyPredicates: [
869
+ + {
870
+ + key: 'myKey1',
871
+ + valuePredicate: ...
872
+ + },
873
+ + {
874
+ + key: 'myKey2',
875
+ + valuePredicate: ...
876
+ + },
877
+ +
878
+ ```
879
+
880
+ - 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.
881
+
882
+ ```diff
883
+ const validatorMap = {
884
+ keyPredicates: [
885
+ {
886
+ key: 'myKey1',
887
+ - valuePredicate: {
888
+ - type: ['String', 'Number']
889
+ - },
890
+ + valueType: ['String', 'Number']
891
+ },
892
+ {
893
+ key: 'myKey2',
894
+ valuePredicate: [
895
+ 'warning',
896
+ 'error',
897
+ - { type: 'String' }
898
+ ],
899
+ + valueType: 'String',
900
+ },
901
+ ],
902
+ };
903
+ ```
904
+
905
+ - The `FilterFieldDuration` type is now deprecated. Instead of providing durations as `{ value: ..., unit: ...}` objects in the `validatorMap`, use simple strings instead.
906
+
907
+ ```diff
908
+ const validatorMap = {
909
+ keyPredicates: [
910
+ {
911
+ key: 'myKey1',
912
+ valuePredicate: [
913
+ - { value: 10, unit: 'ms' },
914
+ - { value: 1, unit: 's' },
915
+ + '10ms',
916
+ + '1s',
917
+ ],
918
+ },
919
+ ],
920
+ };
921
+ ```
922
+
923
+ #### TimeframeSelector
924
+
925
+ - Deprecated `clearable` prop in favor of the new built-in clear button. (APPDEV-16374)
926
+
927
+ ### Updates
928
+
929
+ #### Charts
930
+
931
+ - Fixed an issue where the annotations tooltip would grow beyond its intended size when the description text is long. (APPDEV-17117)
932
+ - The legend now prevents highlighting series when hovering between the margins of the elements. (APPDEV-16894)
933
+
934
+ #### Editors
935
+
936
+ - 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)
937
+
938
+ #### Accordion
939
+
940
+ - Added `data-dt-properties` attribute to the section trigger and section header.
941
+
942
+ #### AppHeader
943
+
944
+ - Spacing between the logo text and the release phase indicator was corrected. (APPDEV-16591)
945
+
946
+ #### convertToColumns
947
+
948
+ - The `timeframe` columns now accept ISO date strings for `start` and `end` values in addition to `Date` objects. (APPDEV-17007)
949
+
950
+ #### DataTable
951
+
952
+ - Column headers now display sort order indicators when multiple columns are sorted simultaneously. (APPDEV-10404)
953
+ - 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)
954
+ - Fixed an issue that occurs in rare cases due to a rendering timing issue. (APPDEV-16787)
955
+ - Built-in `TableActionsMenu` (`CopyItem`, `LineWrap`, `HideColumn`, `ColumnOrder`, `ColumnPinning`, `ColumnFontStyle`) actions now have `onSelect` callback available. (APPDEV-4846)
956
+ - `MeterBarChart` tooltip in `meterbar` columns is now unpinned on click outside the chart or tooltip. (APPDEV-16627)
957
+ - Sparkline columns allow configuration for `min`, `max` and `scale` of the `yAxis`. (APPDEV-16840)
958
+ - The column resize handle now meets ARIA requirements and no longer causes an `aria-required-children` violation.
959
+ - 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.
960
+ - The imperative handle now exposes `getDisplayedRowIds`, which returns the IDs of the displayed rows in their display order. (APPDEV-16929)
961
+ - Column reordering via drag and drop now meets ARIA requirements and no longer causes an `aria-required-children` violation.
962
+
963
+ #### DateTimePicker
964
+
965
+ - Added `data-dt-properties` attribute to the calendar's header, day, month, and year buttons.
966
+ - Now supports clearing the selected value via a built-in clear button. (APPDEV-16374)
967
+
968
+ #### ExpandableText
969
+
970
+ - Added `data-dt-properties` attribute to the 'Show more' and 'Show less' buttons.
971
+
972
+ #### FilterField
973
+
974
+ - 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)
975
+ - Custom validation functions are now called for each element in a value list. (APPDEV-17106)
976
+ - 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)
977
+ - 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)
978
+ - 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)
979
+ - The `valuePredicate` function is now called correctly for values of type `Variable`.
980
+ - Typing a relative timeframe character (`n`, `+`, `-`, `@`) while focused on an absolute date input now automatically switches to relative timeframe mode. (APPDEV-16134)
981
+
982
+ #### FocusScope
983
+
984
+ - Focus-visible (focus ring) is now prevented when focus is moved after pointer interaction. (APPDEV-16864)
985
+
986
+ #### GaugeChart
987
+
988
+ - GaugeChart now supports loading prop. (APPDEV-16152)
989
+
990
+ #### HealthIndicator
991
+
992
+ - `HealthIndicator.Label` no longer causes an `aria-prohibited-attr` accessibility violation. (APPDEV-16907)
993
+
994
+ #### HistogramChart
995
+
996
+ - 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)
997
+
998
+ #### HoneycombChart
999
+
1000
+ - Fixed a bug that prevented showing a tooltip in the area where three hexagons meet. (APPDEV-17154)
1001
+
1002
+ #### MeterBarChart
1003
+
1004
+ - The tooltip has an updated layout and performance improvements. (APPDEV-16627)
1005
+
1006
+ #### Microguide
1007
+
1008
+ - Added `data-dt-properties` attribute to the 'Next' and 'Got it' buttons.
1009
+
1010
+ #### MultiMeterBarChart
1011
+
1012
+ - The tooltip has an updated layout and performance improvements. (APPDEV-16627)
1013
+
1014
+ #### Page
1015
+
1016
+ - Added `data-dt-properties` attribute to the 'Expand' and 'Collapse' buttons, 'Close' button, and resize handles.
1017
+
1018
+ #### PasswordInput
1019
+
1020
+ - Added `data-dt-properties` attribute to the 'Show password' and 'Hide password' buttons.
1021
+
1022
+ #### SegmentSelector
1023
+
1024
+ - Added `data-dt-properties` attribute to the 'Pin' and 'Unpin' buttons, and the 'Show more' and 'Show less' buttons.
1025
+
1026
+ #### Select
1027
+
1028
+ - Added `data-dt-properties` attribute to the 'Select all' control.
1029
+
1030
+ #### Sparkline
1031
+
1032
+ - 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)
1033
+
1034
+ #### Tabs
1035
+
1036
+ - Page no longer scrolls when you click on a tab. (APPDEV-16831)
1037
+
1038
+ #### TimeframeSelector
1039
+
1040
+ - The value of the `TimeframeSelector` can now still be adjusted after selecting everything with `Cmd/Ctrl+a`. (APPDEV-16861)
1041
+ - 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)
1042
+ - Added `data-dt-properties` attribute to the 'Apply' button, preset timeframes, and recent timeframes.
1043
+ - Now supports clearing the selected value via a built-in 'Clear' button. (APPDEV-16374)
1044
+ - Improved support for pasting ISO timestamps or timeframes. Additionally, there's now the possibility to undo after pasting. (APPDEV-16124)
1045
+
1046
+ #### TimeseriesChart
1047
+
1048
+ - 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)
1049
+
1050
+ #### ToggleButtonGroup
1051
+
1052
+ - Removed redundant `aria-checked` attribute from the radio input to resolve an accessibility conflict (WCAG 4.1.2). (APPDEV-16861)
1053
+ - Added `data-dt-name` attribute to the toggle item.
1054
+
1055
+ #### TreeMap
1056
+
1057
+ - The width of the treemap tooltip is now limited, as with the other charts. (APPDEV-16905)
1058
+
1059
+ #### XYChart
1060
+
1061
+ - Fixed a bug that caused series with the id '0' to not be able to be highlighted.
1062
+ - 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)
1063
+ - The default tooltip in explore mode got an updated layout, refreshed visual design, and performance improvements. (APPDEV-16266)
1064
+
1065
+ ## 3.2.2
1066
+
1067
+ ### Updates
1068
+
1069
+ #### FilterField
1070
+
1071
+ - Now catches pending promise rejections on the FilterField saveRecentFilters imperative handle. (APPDEV-17372)
1072
+
1073
+ ## 3.2.1
1074
+
1075
+ ### Updates
1076
+
1077
+ #### General
1078
+
1079
+ - Updates DTFlow to not use font auto hinting on the font and improve legibility.
1080
+
1081
+ ## 3.2.0
1082
+
1083
+ ### Dependency updates
1084
+
1085
+ - `@dynatrace/strato-icons` was updated to version `2.1.1`.
1086
+
1087
+ ### Deprecations
1088
+
1089
+ #### AppHeader
1090
+
1091
+ - Deprecated `AppHeader.AppNavLink` (use `AppHeader.Logo`), `AppHeader.NavItems` (use `AppHeader.Navigation`), `AppHeader.NavItem` (use `AppHeader.NavigationItem`), and `AppNavLinkInternalOwnProps`. (APPDEV-12515)
1092
+
1093
+ ### Updates
1094
+
1095
+ #### General
1096
+
1097
+ - Reduced motion media query now overrides timings on tokens. (APPDEV-17018)
1098
+ - DTFlow version 1.2 is now used. (APPDEV-16887)
1099
+
1100
+ #### Charts
1101
+
1102
+ - Meter bars tooltip now appears also on grayed area. (APPDEV-16799)
1103
+ - Meter bars supports now unit, width and height. (APPDEV-15934)
1104
+ - Toolbar now supports behavioral tracking props. (APPDEV-16378)
1105
+ - After triggering a series actions its corresponding item gets the highlighting removed. (APPDEV-16665)
1106
+
1107
+ #### Overlays
1108
+
1109
+ - Add support for behavior tracking props on overlay components. (APPDEV-16801)
1110
+
1111
+ #### Accordion
1112
+
1113
+ - Added `data-dt-name` attributes to the section trigger and section header. (APPDEV-16670)
1114
+
1115
+ #### AppHeader
1116
+
1117
+ - `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)
1118
+ - Added `data-dt-name` attribute to the app icon. (APPDEV-16671)
1119
+
1120
+ #### CategoricalBarChart
1121
+
1122
+ - `CategoricalBarChart` now supports behavioral tracking properties (APPDEV-16515)
1123
+
1124
+ #### CodeEditor
1125
+
1126
+ - The line-number gutter no longer disappears when the gutter marker is placed at an out-of-bounds line number. (APPDEV-16705)
1127
+
1128
+ #### CodeSnippet
1129
+
1130
+ - 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)
1131
+ - Added `data-dt-name` attribute to the copy button. (APPDEV-16670)
1132
+
1133
+ #### DataTable
1134
+
1135
+ - Selecting text inside the table no longer triggers row activation. (APPDEV-16654)
1136
+ - The event passed to `onActiveRowChange` is now a `click` event (previously `pointerup`); middle mouse button clicks pass an `auxclick` event. (APPDEV-16654)
1137
+ - Scrollable tables now keep correct row heights when `lineWrap` is enabled and previously virtualized rows scroll back into view. (APPDEV-16699)
1138
+ - Added `data-dt-name` attributes to the toolbar line wrap button and the column line wrap action. (APPDEV-16670)
1139
+ - Columns no longer resize when hovering a header with column actions in a condensed or comfortable table. (APPDEV-16981)
1140
+ - 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)
1141
+
1142
+ #### DateTimePicker
1143
+
1144
+ - Added `data-dt-name` attributes to the button opening the calendar, and the calendar's header, day, month, year, and stepper buttons. (APPDEV-16671)
1145
+ - 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)
1146
+
1147
+ #### DonutChart
1148
+
1149
+ - `DonutChart` now supports behavioral tracking props. (APPDEV-16600)
1150
+
1151
+ #### DQLEditor
1152
+
1153
+ - Added `data-dt-name` attribute to autocomplete suggestion items and the "Learn more" link. (APPDEV-16670)
1154
+
1155
+ #### ExpandableText
1156
+
1157
+ - Added `data-dt-name` attributes to the show more and show less buttons. (APPDEV-16670)
1158
+
1159
+ #### FeatureHighlight
1160
+
1161
+ - Added `data-dt-name` attribute to the close button. (APPDEV-16670)
1162
+
1163
+ #### FilterBar
1164
+
1165
+ - `data-dt-name` attribute is now available on the "Add filter" button. (APPDEV-16603)
1166
+
1167
+ #### FilterField
1168
+
1169
+ - Fixed `onFilter` being incorrectly called when the clear button is clicked (APPDEV-16623)
1170
+ - Silently handle missing pinned or recent filter state instead of logging an error warning. (APPDEV-16875)
1171
+ - 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)
1172
+
1173
+ #### GaugeChart
1174
+
1175
+ - `GaugeChart` now supports behavioral tracking props. (APPDEV-16600)
1176
+
1177
+ #### HelpMenu
1178
+
1179
+ - Added `data-dt-name` attributes to the menu trigger and icon. (APPDEV-16671)
1180
+
1181
+ #### HistogramChart
1182
+
1183
+ - `HistogramChart` now supports behavioral tracking properties (APPDEV-16515)
1184
+ - Now the prop `width` for the histogram accepts CSS string values (e.g., `"100%"`, `"500px"`) in addition to numeric values. (APPDEV-15226)
1185
+
1186
+ #### Menu
1187
+
1188
+ - Stop calling the SDK function `getIntentLink` twice when the `Menu.Intent` component is rendered. (PAPA-32034)
1189
+
1190
+ #### MessageContainer
1191
+
1192
+ - 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)
1193
+
1194
+ #### MeterBarChart
1195
+
1196
+ - `MeterBarChart` now supports behavioral tracking props. (APPDEV-16600)
1197
+
1198
+ #### Microguide
1199
+
1200
+ - Added `data-dt-name` attributes to the close, back, next, and got it buttons. (APPDEV-16670)
1201
+
1202
+ #### Modal
1203
+
1204
+ - Added `data-dt-name` attribute to the close button. (APPDEV-16671)
1205
+
1206
+ #### MultiMeterBarChart
1207
+
1208
+ - `MultiMeterBarChart` now supports behavioral tracking props. (APPDEV-16600)
1209
+
1210
+ #### Page
1211
+
1212
+ - 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)
1213
+
1214
+ #### PasswordInput
1215
+
1216
+ - Added `data-dt-name` attribute to the button for showing and hiding the password. (APPDEV-16671)
1217
+
1218
+ #### PieChart
1219
+
1220
+ - `PieChart` now supports behavioral tracking props. (APPDEV-16600)
1221
+
1222
+ #### ReleasePhaseIndicator
1223
+
1224
+ - 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)
1225
+
1226
+ #### SegmentSelector
1227
+
1228
+ - `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)
1229
+ - The SegmentSelector doesn't close when deselecting a segment variable. (APPDEV-16678)
1230
+
1231
+ #### Select
1232
+
1233
+ - The `Select.Filter` input now has an `aria-label` set to comply with accessibility standards. (APPDEV-16713)
1234
+ - Added `data-dt-name` attribute to the "Select All" element. (APPDEV-16671)
1235
+
1236
+ #### TimeframeSelector
1237
+
1238
+ - 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)
1239
+ - After selecting a timeframe via the Calendar, the focus is now moved to the time input of the start date. (APPDEV-16131)
1240
+ - `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)
1241
+
1242
+ #### TimeseriesChart
1243
+
1244
+ - `TimeseriesChart` now supports behavioral tracking properties (APPDEV-16515)
1245
+ - the `width` prop now accepts CSS unit strings like `"100%"` or `"500px"` in addition to numeric pixel values. (APPDEV-15225)
1246
+
1247
+ #### Toast
1248
+
1249
+ - Added `data-dt-name` attribute to the close button. (APPDEV-16671)
1250
+
1251
+ #### TreeMap
1252
+
1253
+ - `TreeMap` now supports behavioral tracking props. (APPDEV-16600)
1254
+
1255
+ #### XYChart
1256
+
1257
+ - `XYChart` now supports proper nice ticks for any unit format (APPDEV-16140)
1258
+ - `XYChart` now supports behavioral tracking properties (APPDEV-16515)
1259
+ - numerical axes with unit-converting formatters now produce round, human-readable tick values in the target unit as GiB (APPDEV-14514)
1260
+
1261
+ ## 3.1.5
1262
+
1263
+ ### Updates
1264
+
1265
+ #### FilterField
1266
+
1267
+ - Now catches pending promise rejections on the FilterField saveRecentFilters imperative handle. (APPDEV-17372)
1268
+
1269
+ ## 3.1.4
1270
+
1271
+ ### Updates
1272
+
1273
+ #### SegmentSelector
1274
+
1275
+ - The SegmentSelector doesn't close when deselecting a segment variable. (APPDEV-16678)
1276
+
1277
+ ## 3.1.3
1278
+
1279
+ ### Updates
1280
+
1281
+ #### DataTable
1282
+
1283
+ - Table no longer crashes due to the row virtualizer attempting to measure detached DOM elements. (APPDEV-16862)
1284
+
1285
+ ## 3.1.2
1286
+
1287
+ ### Updates
1288
+
1289
+ #### DataTable
1290
+
1291
+ - No longer spreads configuration props to DataTable DOM element.
1292
+
1293
+ ## 3.1.1
1294
+
1295
+ ### Updates
1296
+
1297
+ #### FilterField
1298
+
1299
+ - Reduce number of requests for recent and pinned filters. (APPDEV-16748)
1300
+
1301
+ ## 3.1.0
1302
+
1303
+ ### Dependency updates
1304
+
1305
+ - `@dynatrace/strato-icons` was updated to version `2.1.0`.
1306
+
1307
+ ### Deprecations
1308
+
1309
+ #### AiLoadingIndicator
1310
+
1311
+ - The `aria-disabled` prop is deprecated, as the attribute is only intended for interactive elements.
1312
+
1313
+ #### DataTable
1314
+
1315
+ - Column type `date` is now deprecated. Use `datetime` instead. (APPDEV-4005)
1316
+
1317
+ - The `onDownloadData` on the `DataTable` element is now deprecated. Please use it via the `DataTable.DownloadData` toolbar slot instead. (APPDEV-16234)
1318
+
1319
+ #### TimeframeSelector
1320
+
1321
+ - The `_isSelected` prop on the `TimeframeSelector.PresetItem` slot is now deprecated. (APPDEV-16158)
1322
+
1323
+ ### Updates
1324
+
1325
+ #### General
1326
+
1327
+ - 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)
1328
+ - 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)
1329
+
1330
+ #### Charts
1331
+
1332
+ - Applied a more performant width/height/truncation method to Honeycomb, Pie, Donut, Treemap, Sparkline, and Single Value. (APPDEV-15420)
1333
+ - The chart legend only shows an outline when the navigation is done via the keyboard. (APPDEV-16596)
1334
+ - Fixed magnifier to dynamically round values based on the value per pixel. (APPDEV-16624)
1335
+
1336
+ #### Overlays
1337
+
1338
+ - Possibly overlapping overlays are now closed when focusing the `FilterField`. (APPDEV-16114)
1339
+
1340
+ #### AnnotationsChart
1341
+
1342
+ - Fixed annotation marker symbols in the tooltip not being visible on dark theme. (APPDEV-16715)
1343
+ - 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)
1344
+
1345
+ #### CategoricalBarChart
1346
+
1347
+ - The `width` prop now accepts CSS string values (e.g., `"100%"`, `"500px"`) in addition to numeric values.
1348
+
1349
+ #### convertToColumns
1350
+
1351
+ - Now maps `timestamp` and `timeframe` fields to `datetime` column type instead of the deprecated `date`. (APPDEV-4005)
1352
+
1353
+ #### DataTable
1354
+
1355
+ - 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)
1356
+ - 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)
1357
+ - The `onDownloadData` callback is now available on the `DataTable.DownloadData` toolbar slot. (APPDEV-16234)
1358
+ - Batch selection now handles changing data and selection across multiple tables correctly. (APPDEV-16683)
1359
+ - Sparkline columns allow configuration of the `xAxis`. (APPDEV-13820)
1360
+ - 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)
1361
+ - 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)
1362
+
1363
+ #### DateTimePicker
1364
+
1365
+ - No longer shows a transition animation when navigating between date and time spin buttons so that the selection highlight switches instantly. (APPDEV-16135)
1366
+
1367
+ #### DonutChart
1368
+
1369
+ - `width` prop now accepts string values and the unit for the data accepts Unit type, SliceUnit deprecated. (APPDEV-15409)
1370
+
1371
+ #### FilterField
1372
+
1373
+ - The `validatorMap` now supports `displayValue` and `details` on keys and values, enabling richer suggestions with labels and descriptions. (APPDEV-16298)
1374
+ - 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)
1375
+ - Custom validation types can now be defined via the `customTypes` prop, allowing type-specific value constraints to be used in the `validatorMap`. (APPDEV-16028)
1376
+ - 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)
1377
+
1378
+ #### FormField
1379
+
1380
+ - Validation now automatically updates when validation-related props (like `required`) change dynamically. (APPDEV-16103)
1381
+
1382
+ #### GaugeChart
1383
+
1384
+ - 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)
1385
+ - 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)
1386
+ - Now the GaugeChart supports units. (APPDEV-15935)
1387
+
1388
+ #### HoneycombChart
1389
+
1390
+ - HoneycombChart now supports behavioral tracking properties. (APPDEV-16377)
1391
+
1392
+ #### NumberInput
1393
+
1394
+ - `NumberInput` is now deprecated in favor of `NumberInputV2`.
1395
+
1396
+ #### NumberInputV2
1397
+
1398
+ - Introduce `NumberInputV2`. `NumberInputV2` aligns with the current forms architecture and delivers more consistent input behavior across Strato form controls.
1399
+
1400
+ API changes to consider when migrating:
1401
+
1402
+ - `min` and `max` now accept `number | undefined` (previously `number | string | undefined`).
1403
+ - Parsing/formatting is stricter and locale-aware, including intermediate input states and paste normalization.
1404
+ - `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)
1405
+
1406
+ #### Overlay
1407
+
1408
+ - Fixed empty `aria-labelledby` attribute being rendered when no label is provided, which violated accessibility guidelines. (APPDEV-16714)
1409
+
1410
+ #### PieChart
1411
+
1412
+ - `width` prop now accepts string values and the unit for the data accepts Unit type, SliceUnit deprecated. (APPDEV-15409)
1413
+
1414
+ #### Radio
1415
+
1416
+ - Remove redundant `aria-checked` attribute from native radio inputs to fix accessibility violation. (APPDEV-16711)
1417
+
1418
+ #### SegmentSelector
1419
+
1420
+ - Add default aria-label which is also shown in an empty compact SegmentSelector. (APPDEV-16433)
1421
+
1422
+ #### Select
1423
+
1424
+ - 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)
1425
+
1426
+ #### SingleValue
1427
+
1428
+ - `SingleValue` now supports behavioral tracking properties. (APPDEV-16377)
1429
+
1430
+ #### SingleValueGrid
1431
+
1432
+ - `SingleValueGrid` now supports behavioral tracking properties. (APPDEV-16377)
1433
+ - `seriesActions` now receives the full data record for each item, including all custom fields, instead of only `value` and `label`. (APPDEV-16619)
1434
+
1435
+ #### Sparkline
1436
+
1437
+ - `Sparkline` now supports behavioral tracking properties. (APPDEV-16377) (APPDEV-16377)
1438
+ - 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)
1439
+
1440
+ #### TimeframeSelector
1441
+
1442
+ - Recently used timeframes are now displayed in the overlay. (APPDEV-16158)
1443
+ - Fixed a race condition that could sporadically show `Start time must be before end time.` while typing in the end time field. (APPDEV-16690)
1444
+ - No longer shows a transition animation when navigating between date and time spin buttons so that the selection highlight switches instantly. (APPDEV-16135)
1445
+ - When applying a timeframe with one empty field, it is now filled with "Now". (APPDEV-16130)
1446
+
1447
+ #### ToggleButtonGroup
1448
+
1449
+ - Styles for `aria-disabled` are now correctly applied. (APPDEV-16682)
1450
+
1451
+ #### TreeMap
1452
+
1453
+ - ColorRules now work consistently regardless of `nameAccessor` value. (APPDEV-16559)
1454
+ - The `width` prop now accepts string or number and also added an unit prop. (APPDEV-15408)
1455
+
1456
+ #### XYChart
1457
+
1458
+ - `AreaSeries` is now available in the strato package. (APPDEV-15176)
1459
+ - The `width` prop now accepts CSS string values (e.g., `"100%"`, `"500px"`) in addition to numeric values.
1460
+ - Added legend filtering and actions for series and rect categorical interactions by default. (APPDEV-15180)
1461
+ - Fixed tooltip to show the topmost overlapping series instead of the first one. (APPDEV-16253)
1462
+
1463
+ ## 3.0.3
1464
+
1465
+ ### Updates
1466
+
1467
+ #### FilterField
1468
+
1469
+ - Now catches pending promise rejections on the FilterField saveRecentFilters imperative handle. (APPDEV-17372)
1470
+
1471
+ ## 3.0.2
1472
+
1473
+ ### Updates
1474
+
1475
+ #### DataTable
1476
+
1477
+ - Table no longer crashes due to the row virtualizer attempting to measure detached DOM elements. (APPDEV-16862)
1478
+
1479
+ ## 3.0.0
1480
+
1481
+ ### Breaking changes
1482
+
1483
+ #### Button
1484
+
1485
+ - Removed the deprecated `readOnly` property. (APPDEV-13937)
1486
+
1487
+ ### Dependency updates
1488
+
1489
+ - `@dynatrace/strato-icons` was updated to version `2.0.0`.
1490
+ - Added `@dynatrace-sdk/units` as a peer dependency with version range `^1.5.0`. (APPDEV-10467)
1491
+ - Changed peerDependency version range for `@dynatrace-sdk/navigation` from `^1.3.0 || ^2.0.0` to `^2.1.0`. (APPDEV-10467)
1492
+
1493
+ ### Updates
1494
+
1495
+ #### ToggleButtonGroup
1496
+
1497
+ - Fixed a react warning about missing keys on each child.
1498
+
1499
+ ## 3.0.0-rc.0
1500
+
1501
+ ## 1.18.0
1502
+
1503
+ ### Dependency updates
1504
+
1505
+ - `@dynatrace/strato-icons` was updated to version `1.13.0`.
1506
+
1507
+ ### Updates
1508
+
1509
+ #### General
1510
+
1511
+ - Fixed broken links in the documentation. (PRODUCT-9394)
1512
+
1513
+ ## 1.17.0
1514
+
1515
+ ### Updates
1516
+
1517
+ #### Core
1518
+
1519
+ - `useFocusRing` hook is now available to apply custom focus styles to components. (APPDEV-14256)
1520
+
1521
+ #### IntentButton
1522
+
1523
+ - Deprecated `IntentButtonProps` as they will be replaced by the `IntentButtonProps` from `strato-components-preview`.
1524
+
1525
+ ## 1.16.1
1526
+
1527
+ ### Updates
1528
+
1529
+ #### Core
1530
+
1531
+ - Adds the Behavioral Tracking Props interface to the API. (APPDEV-15861)
1532
+
1533
+ ## 1.16.0
1534
+
1535
+ ### Dependency updates
1536
+
1537
+ - `@dynatrace/strato-icons` was updated to version `1.12.0`.
1538
+ - `@dynatrace/strato-design-tokens` was updated to version `1.3.1`.
1539
+
1540
+ ### Deprecations
1541
+
1542
+ #### IntentButton
1543
+
1544
+ - 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)
1545
+
1546
+ ### Updates
1547
+
1548
+ #### ExternalLink
1549
+
1550
+ - Copying the link text no longer copies a zero width no-break space. (APPDEV-15655)
1551
+ - 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)
1552
+
1553
+ #### TextEllipsis
1554
+
1555
+ - The `Intl.Segmenter` will now be created only when needed and not on import. (APPDEV-15823)
1556
+
1557
+ ## 1.15.0
1558
+
1559
+ ### Dependency updates
1560
+
1561
+ - `@dynatrace/strato-icons` was updated to version `1.11.1`.
1562
+ - `@dynatrace/strato-design-tokens` was updated to version `1.3.0`.
1563
+
1564
+ ### Updates
1565
+
1566
+ #### Highlight
1567
+
1568
+ - Now uses CSS Custom Highlight API instead of the `<mark>` HTML element. (APPDEV-14731)
1569
+
1570
+ ## 1.14.0
1571
+
1572
+ ### Dependency updates
1573
+
1574
+ - `@dynatrace/strato-icons` was updated to version `1.11.0`.
1575
+
1576
+ ### Updates
1577
+
1578
+ #### AppRoot
1579
+
1580
+ - Added `translationsRootPath` to props of `AppRoot` to configure language resource path. (APPDEV-15400)
1581
+
1582
+ #### ExternalLink
1583
+
1584
+ - Now respects custom `textDecoration` styles. (APPDEV-15438)
1585
+
1586
+ #### Link
1587
+
1588
+ - Now respects custom `textDecoration` styles. (APPDEV-15438)
1589
+
1590
+ ## 1.13.0
1591
+
1592
+ ### Dependency updates
1593
+
1594
+ - `@dynatrace/strato-design-tokens` was updated to version `1.2.0`.
1595
+ - `@dynatrace/strato-icons` was updated to version `1.10.0`.
1596
+
1597
+ ## 1.12.0
1598
+
1599
+ ### Dependency updates
1600
+
1601
+ - `@dynatrace/strato-design-tokens` was updated to version `1.1.4`.
1602
+ - `@dynatrace/strato-icons` was updated to version `1.9.0`.
1603
+ - Changed peerDependency version range for `@dynatrace-sdk/units` from `^1.0.2` to `^1.3.1`. (APPDEV-14636)
1604
+
1605
+ ### Updates
1606
+
1607
+ #### General
1608
+
1609
+ - Slowed animation timings for the `ProgressBar`, `ProgressCircle`, `Skeleton`, and `SkeletonText` components. (APPDEV-14758)
1610
+
1611
+ #### Skeleton
1612
+
1613
+ - Improved animations. (APPDEV-14760)
1614
+
1615
+ #### SkeletonText
1616
+
1617
+ - Improved animations. (APPDEV-14760)
1618
+
1619
+ ## 1.11.0
1620
+
1621
+ ### Dependency updates
1622
+
1623
+ - `@dynatrace/strato-design-tokens` was updated to version `1.1.3`.
1624
+ - `@dynatrace/strato-icons` was updated to version `1.8.0`.
1625
+
1626
+ ### Updates
1627
+
1628
+ #### General
1629
+
1630
+ - A `useId` hook is now provided, allowing css-ident safe IDs to be generated. (APPDEV-14808)
1631
+
1632
+ #### AppRoot
1633
+
1634
+ - The look and feel of scrollbars in Firefox is now aligned with the experience in Chrome.
1635
+
1636
+ #### Link
1637
+
1638
+ - The underline now appears correctly based on whether the link is focused via keyboard. (APPDEV-14816)
1639
+
1640
+ ## 1.10.0
1641
+
1642
+ ### Dependency updates
1643
+
1644
+ - `@dynatrace/strato-icons` was updated to version `1.7.0`.
1645
+ - `@dynatrace/strato-design-tokens` was updated to version `1.1.2`.
1646
+
1647
+ ## 1.9.2
1648
+
1649
+ ### General
1650
+
1651
+ - Unicode ranges for Roboto fallback are now removed.
1652
+
1653
+ ## 1.9.1
1654
+
1655
+ :::note Dependency updates
1656
+
1657
+ - `@dynatrace/strato-icons` was updated to version `1.6.1`.
1658
+ - `@dynatrace/strato-design-tokens` was updated to version `1.1.1`.
1659
+
1660
+ :::
1661
+
1662
+ ### General
1663
+
1664
+ - Font definitions are now directly added to the apps css bundle.
1665
+
1666
+ ### ExternalLink
1667
+
1668
+ - The underline of the link is now displayed correctly based on whether it is focused via keyboard. (APPDEV-14521)
1669
+
1670
+ ## 1.9.0
1671
+
1672
+ ### FocusScope
1673
+
1674
+ - The prop `data-testid` can now be set on the component. (APPDEV-13925)
1675
+
1676
+ ## 1.8.1
1677
+
1678
+ ### TextEllipsis
1679
+
1680
+ - When `truncationMode` is set to `start`, punctuation characters are now rendered correctly at the start of the string. (APPDEV-14072)
1681
+
1682
+ ## 1.8.0
1683
+
1684
+ :::note Dependency updates
1685
+
1686
+ - `@dynatrace/strato-design-tokens` was updated to version `1.1.0`.
1687
+ - `@dynatrace/strato-icons` was updated to version `1.6.0`.
1688
+
1689
+ :::
1690
+
1691
+ ## 1.7.3
1692
+
1693
+ ### Typography
1694
+
1695
+ - Removes canvas from DOM. (APPDEV-13639)
1696
+
1697
+ ## 1.7.2
1698
+
1699
+ ### Typography
1700
+
1701
+ - Removed canvas from DOM. (APPDEV-13639)
1702
+
1703
+ ## 1.7.1
1704
+
1705
+ :::note Dependency updates
1706
+
1707
+ - `@dynatrace/strato-icons` was updated to version `1.5.1`.
1708
+
1709
+ :::
1710
+
1711
+ ## 1.7.0
1712
+
1713
+ ### Core
1714
+
1715
+ - Removed internal `_isStringChildren`, `_useId`, `_uuidv4`, and `_mulberry32` utility. (APPDEV-12775)
1716
+
1717
+ ### TextEllipsis
1718
+
1719
+ - `truncationMode="middle"` now fully supports emoji characters. (APPDEV-13186)
1720
+ - `TruncationMode` is now available as a public type. (APPDEV-12065)
1721
+
1722
+ ## 1.6.2
1723
+
1724
+ ### Core
1725
+
1726
+ - Add internal `_isStringChildren`, `_useId`, `_uuidv4`, and `_mulberry32` back for 1.6.x compatibility. (APPDEV-13282)
1727
+
1728
+ ## 1.6.1
1729
+
1730
+ - Documentation update
1731
+
1732
+ ## 1.6.0
1733
+
1734
+ :::note Dependency updates
1735
+
1736
+ - Changed peerDependency version range for `@dynatrace-sdk/navigation` from `^1.3.0` to `^1.3.0 || ^2.0.0`.
1737
+ - `@dynatrace/strato-icons` was updated to version `1.5.0`.
1738
+
1739
+ :::
1740
+
1741
+ ## 1.5.0
1742
+
1743
+ :::note Dependency updates
1744
+
1745
+ - Changed peerDependency version range for `react-intl` from `^6.0.8` to `^6.0.8 || ^7.0.0`.
1746
+ - `@dynatrace/strato-design-tokens` was updated to version `1.0.1`.
1747
+ - `@dynatrace/strato-icons` was updated to version `1.4.0`.
1748
+
1749
+ :::
1750
+
1751
+ ### Button
1752
+
1753
+ - Hover animation was updated to be more responsive. (APPDEV-12827)
1754
+
1755
+ ### Highlight
1756
+
1757
+ - Now preserves whitespace around the highlighted term. (APPDEV-12895)
1758
+
1759
+ ### TextEllipsis
1760
+
1761
+ - When `truncationMode` is set to `start`, punctuation characters are now rendered correctly at the end of the string. (APPDEV-12900)
1762
+
1763
+ ## 1.4.0
1764
+
1765
+ :::note Dependency updates
1766
+
1767
+ - `@dynatrace/strato-icons` was updated to version `1.3.0`.
1768
+
1769
+ :::
1770
+
1771
+ ### Highlight
1772
+
1773
+ - Added support for using `FormattedMessage` within the `Highlight` component. (APPDEV-12687)
1774
+ - Highlighted text reflows correctly when wrapped inside a smaller container. (APPDEV-12666)
1775
+
1776
+ ## 1.3.0
1777
+
1778
+ :::note Dependency updates
1779
+
1780
+ - `@dynatrace/strato-icons` was updated to version `1.2.0`.
1781
+
1782
+ :::
1783
+
1784
+ ## 1.2.0
1785
+
1786
+ ### Highlight
1787
+
1788
+ - Whitespaces are preserved when the `Highlight` component is rendered inside an element styled with `display: 'flex'`. (APPDEV-12362)
1789
+
1790
+ ### Surface
1791
+
1792
+ - Now uses correct selected border with a 2px transparent gap. (APPDEV-11985)
1793
+
1794
+ ## 1.1.0
1795
+
1796
+ :::note Dependency updates
1797
+
1798
+ - `@dynatrace/strato-icons` was updated to version `1.1.0`.
1799
+
1800
+ :::
1801
+
1802
+ ### TextEllipsis
1803
+
1804
+ - Text with ellipsis with `truncationMode="middle"` can grow when resizing. (APPDEV-11597)
1805
+
1806
+ ## 1.0.0
1807
+
1808
+ :::caution Breaking changes
1809
+
1810
+ **General**
1811
+
1812
+ - Removed deprecated testing subpackage. Please use the `@dynatrace/strato-components-testing` package now. (APPDEV-9460)
1813
+
1814
+ 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.
1815
+
1816
+ The `render` function is still exported in the testing package, as it makes testing strato components easier.
1817
+
1818
+ For more information on how to setup and use `@dynatrace/strato-components-testing` please look into package's readme.
1819
+
1820
+ **Core**
1821
+
1822
+ - `roleVariants` and `RoleVariantType` are now removed, as they are no longer used. (APPDEV-11235)
1823
+
1824
+ **ProgressBar**
1825
+
1826
+ - 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)
1827
+
1828
+ **ProgressCircle**
1829
+
1830
+ - 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)
1831
+
1832
+ :::
1833
+
1834
+ :::note Dependency updates
1835
+
1836
+ - Changed peerDependency version range for `@dynatrace-sdk/app-environment` from `^1.0.0` to `^1.1.0`. (APPDEV-11243)
1837
+ - Changed peerDependency version range for `@dynatrace-sdk/navigation` from `^1.2.1` to `^1.3.0`. (APPDEV-11243)
1838
+ - Changed peerDependency version range for `@dynatrace-sdk/error-handlers` from `^1.0.0` to `^1.3.1`. (APPDEV-11243)
1839
+ - Changed peerDependency version range for `@dynatrace-sdk/user-preferences` from `^1.1.0` to `^1.1.1`. (APPDEV-11243)
1840
+ - `@dynatrace/strato-design-tokens` was updated to version `1.0.0`.
1841
+ - `@dynatrace/strato-icons` was updated to version `1.0.0`.
1842
+
1843
+ :::
1844
+
1845
+ ## 0.85.120
1846
+
1847
+ ### TextEllipsis
1848
+
1849
+ - Text now displays correctly in Firefox when the parent container has `max-width: max-content`. (APPDEV-12006)
1850
+
1851
+ ## 0.85.110
1852
+
1853
+ :::note Deprecations
1854
+
1855
+ **Button**
1856
+
1857
+ - Deprecated `readOnly` prop, please use `disabled` instead. (APPDEV-11549)
1858
+
1859
+ :::
1860
+
1861
+ ### General
1862
+
1863
+ - `useBreakpoint` hook now has better SSR support.
1864
+
1865
+ ### Content
1866
+
1867
+ - `ProgressBar` and `ProgressCircle` now inherit the `Container`'s color, if used inside it.
1868
+
1869
+ ### Core
1870
+
1871
+ - Added `FocusScope` component. (APPDEV-11591)
1872
+
1873
+ ## 0.85.100
1874
+
1875
+ :::note Dependency updates
1876
+
1877
+ - `@dynatrace/strato-icons` was updated to version `0.39.4`.
1878
+
1879
+ :::
1880
+
1881
+ :::note Deprecations
1882
+
1883
+ **Content**
1884
+
1885
+ - Deprecated the `variant` prop from `ProgressBarProps` and `ProgressCircleProps`, which will be removed in favor of the `color` prop.
1886
+
1887
+ **Core**
1888
+
1889
+ - Deprecated the `RoleVariantType`, which will be removed. You can use `'neutral' | 'primary' | 'success' | 'warning' | 'critical'` instead, as the `onAccent` option will be dropped.
1890
+
1891
+ :::
1892
+
1893
+ ### Typography
1894
+
1895
+ - CSS text ellipsis from a wrapping element is now correctly applied to the `Link` and `ExternalLink` component. (APPDEV-11491)
1896
+
1897
+ ## 0.85.90
1898
+
1899
+ :::note Dependency updates
1900
+
1901
+ - Added `@dynatrace/strato-design-tokens` as a peer dependency with version range `~0.20.0`.
1902
+ - Added `@dynatrace/strato-icons` as a peer dependency with version range `~0.39.0`.
1903
+
1904
+ :::
1905
+
1906
+ ### General
1907
+
1908
+ - Moved `@dynatrace/strato-design-tokens` and `@dynatrace/strato-icons` to peerDependencies and relaxed the version range. (APPDEV-9911)
1909
+ - 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.
1910
+
1911
+ ## 0.85.80
1912
+
1913
+ ### ExternalLink
1914
+
1915
+ - The `ExternalLink`'s icon now remains on the same line as its preceding word, even when there are line breaks.
1916
+
1917
+ ### IntentButton
1918
+
1919
+ - Now accepts `ReactNode` as children instead of only strings.
1920
+
1921
+ ### TextEllipsis
1922
+
1923
+ - Now `onTextOverflow` is also called when `TextEllipsis` is used inside another component that already handles text truncation.
1924
+
1925
+ ## 0.85.70
1926
+
1927
+ :::note Deprecations
1928
+
1929
+ **General**
1930
+
1931
+ - Testing subpackage exports are now marked as deprecated. Please use `@dynatrace/strato-components-testing` instead.
1932
+
1933
+ :::
1934
+
1935
+ ## 0.85.60
1936
+
1937
+ :::note Dependency updates
1938
+
1939
+ - `@dynatrace/strato-icons` was updated to version `0.39.3`.
1940
+
1941
+ :::
1942
+
1943
+ ## 0.85.50
1944
+
1945
+ ### Typography
1946
+
1947
+ - `Heading` and `Paragraph` now inherit their color from their container by default.
1948
+
1949
+ ## 0.85.41
1950
+
1951
+ ### Layouts
1952
+
1953
+ - Annotate exported styles accordingly.
1954
+
1955
+ ## 0.85.40
1956
+
1957
+ ### General
1958
+
1959
+ - Added missing vanilla-extract dependencies to the package.
1960
+
1961
+ ### Button
1962
+
1963
+ - Displays number `0` when used as child.
1964
+
1965
+ ## 0.85.32
1966
+
1967
+ - Documentation update
1968
+
1969
+ ## 0.85.31
1970
+
1971
+ :::note Dependency updates
1972
+
1973
+ - Added missing vanilla-extract dependencies to the package.
1974
+
1975
+ :::
1976
+
1977
+ ## 0.85.30
1978
+
1979
+ :::note Dependency updates
1980
+
1981
+ - `@dynatrace/strato-icons` was updated to version `0.39.2`.
1982
+
1983
+ :::
1984
+
1985
+ ### UseBreakpoint
1986
+
1987
+ - `useBreakpoint` has been moved from `@dynatrace/strato-components-preview/core` to `@dynatrace/strato-components/layouts` and a migration script has been provided.
1988
+
1989
+ ## 0.85.21
1990
+
1991
+ - Documentation update
1992
+
1993
+ ## 0.85.20
1994
+
1995
+ ### IntentButton
1996
+
1997
+ - `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.
1998
+
1999
+ ### Skeleton
2000
+
2001
+ - `Skeleton` has been moved from `@dynatrace/strato-components-preview/layouts-core` to `@dynatrace/strato-components/content` and a migration script has been provided.
2002
+
2003
+ ### SkeletonText
2004
+
2005
+ - `SkeletonText` has been moved from `@dynatrace/strato-components-preview/layouts-core` to `@dynatrace/strato-components/content` and a migration script has been provided.
2006
+
2007
+ ### Surface
2008
+
2009
+ - `Surface` has been moved from `@dynatrace/strato-components-preview/layouts-core` to `@dynatrace/strato-components/layouts` and a migration script has been provided.
2010
+
2011
+ ## 0.85.11
2012
+
2013
+ - Documentation update
2014
+
2015
+ ## 0.85.10
2016
+
2017
+ :::note Dependency updates
2018
+
2019
+ - `@dynatrace/strato-icons` was updated to version `0.39.1`.
2020
+ - `@dynatrace/strato-design-tokens` was updated to version `0.20.40`.
2021
+
2022
+ :::
2023
+
2024
+ ### Button
2025
+
2026
+ - `Button` has been moved from `@dynatrace/strato-components-preview/buttons` to `@dynatrace/strato-components/buttons` and a migration script has been provided.
2027
+
2028
+ ## 0.85.0
2029
+
2030
+ :::caution Breaking changes
2031
+
2032
+ **General**
2033
+
2034
+ - Drop react 17 support.
2035
+ - Drop @testing-library/react 12 support.
2036
+ - Drop @testing-library/user-event 13 support.
2037
+
2038
+ :::
2039
+
2040
+ :::note Dependency updates
2041
+
2042
+ - `@dynatrace/strato-icons` was updated to version `0.39.0`.
2043
+
2044
+ :::
2045
+
2046
+ ### General
2047
+
2048
+ - Add @testing-library/react 15 support.
2049
+
2050
+ ## 0.84.51
2051
+
2052
+ ### General
2053
+
2054
+ - Content subpackage is now exported from the `@dynatrace/strato-components` entrypoint.
2055
+
2056
+ ## 0.84.50
2057
+
2058
+ :::note Dependency updates
2059
+
2060
+ - `@dynatrace/strato-icons` was updated to version `0.38.0`.
2061
+
2062
+ :::
2063
+
2064
+ ### Container
2065
+
2066
+ - `Container` has been moved from `@dynatrace/strato-components-preview/layouts-core` to `@dynatrace/strato-components/layouts` and a migration script has been provided.
2067
+
2068
+ ### Flex
2069
+
2070
+ - `Flex` has been moved from `@dynatrace/strato-components-preview/layouts-core` to `@dynatrace/strato-components/layouts` and a migration script has been provided.
2071
+
2072
+ ### Grid
2073
+
2074
+ - `Grid` has been moved from `@dynatrace/strato-components-preview/layouts-core` to `@dynatrace/strato-components/layouts` and a migration script has been provided.
2075
+
2076
+ ### ProgressBar, ProgressCircle
2077
+
2078
+ - `ProgressBar` and `ProgressCircle` have been moved from `@dynatrace/strato-components-preview/core` to `@dynatrace/strato-components/content` and a migration script has been provided.
2079
+
2080
+ ## 0.84.42
2081
+
2082
+ - Documentation update
2083
+
2084
+ ## 0.84.41
2085
+
2086
+ - Documentation update
2087
+
2088
+ ## 0.84.40
2089
+
2090
+ :::note Dependency updates
2091
+
2092
+ - `@dynatrace/strato-design-tokens` was updated to version `0.20.30`.
2093
+
2094
+ :::
2095
+
2096
+ ### Typography
2097
+
2098
+ - Typography is migrated from `@dynatrace/strato-components-preview/typography` to `@dynatrace/strato-components/typography` and a migration script has been provided.
2099
+
2100
+ ### Divider
2101
+
2102
+ - Divider has been moved from `@dynatrace/strato-components-preview/typography` to `@dynatrace/strato-components/layouts` and a migration script has been provided.
2103
+
2104
+ ## 0.84.31
2105
+
2106
+ - Documentation update
2107
+
2108
+ ## 0.84.30
2109
+
2110
+ :::note Dependency updates
2111
+
2112
+ - `@dynatrace/strato-design-tokens` was updated to version `0.20.20`.
2113
+
2114
+ :::
2115
+
2116
+ ## 0.84.21
2117
+
2118
+ - Documentation update
2119
+
2120
+ ## 0.84.20
2121
+
2122
+ ## 0.84.12
2123
+
2124
+ - Documentation update
2125
+
2126
+ ## 0.84.11
2127
+
2128
+ :::note Dependency updates
2129
+
2130
+ - `@dynatrace/strato-design-tokens` was updated to version `0.20.10`.
2131
+ - `@dynatrace/strato-icons` was updated to version `0.37.0`.
2132
+
2133
+ :::
2134
+
2135
+ ### AppRoot
2136
+
2137
+ - `AppRoot` component was moved from `@dynatrace/strato-components-preview`.