@dynatrace/strato-components 3.7.1 → 3.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3207) hide show
  1. package/CHANGELOG.md +2258 -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.d.ts +2 -2
  13. package/charts/categorical-bar/components/interactions/hooks/useSeriesActionClickHandler.js +1 -6
  14. package/charts/categorical-bar/components/interactions/overlays/CategoricalBarChartInspectOverlay.css +2 -2
  15. package/charts/categorical-bar/components/interactions/overlays/CategoricalBarChartInspectOverlay.sty.js +2 -2
  16. package/charts/categorical-bar/components/interactions/tooltip/CategoricalBarChartTooltip.js +67 -38
  17. package/charts/categorical-bar/hooks/store/state-setters.d.ts +2 -2
  18. package/charts/categorical-bar/hooks/store/state-setters.js +3 -1
  19. package/charts/categorical-bar/layout/CategoricalGridLayout.js +1 -2
  20. package/charts/core/components/annotations/AnnotationsAtom.css +1 -1
  21. package/charts/core/components/annotations/AnnotationsAtom.d.ts +7 -0
  22. package/charts/core/components/annotations/AnnotationsAtom.js +4 -2
  23. package/charts/core/components/annotations/AnnotationsAtom.sty.js +1 -1
  24. package/charts/core/components/annotations/components/AnnotationsRenderer.d.ts +1 -0
  25. package/charts/core/components/annotations/components/AnnotationsRenderer.js +22 -5
  26. package/charts/core/components/annotations/components/canvas/AnnotationsCanvasLayout.css +1 -1
  27. package/charts/core/components/annotations/components/canvas/AnnotationsCanvasLayout.sty.js +1 -1
  28. package/charts/core/components/annotations/components/canvas/displays/AnnotationsChartDisplay.js +18 -12
  29. package/charts/core/components/annotations/components/canvas/displays/AnnotationsMarkersDisplay.js +3 -1
  30. package/charts/core/components/annotations/components/canvas/displays/AnnotationsTrackDisplay.d.ts +1 -1
  31. package/charts/core/components/annotations/components/canvas/displays/AnnotationsTrackDisplay.js +9 -4
  32. package/charts/core/components/annotations/components/canvas/renderers/RangeMarkerRenderer.js +6 -3
  33. package/charts/core/components/annotations/components/canvas/renderers/value-marker-renderer/ValueMarkerRenderer.d.ts +1 -0
  34. package/charts/core/components/annotations/components/canvas/renderers/value-marker-renderer/ValueMarkerRenderer.js +11 -6
  35. package/charts/core/components/annotations/components/canvas/utils/calculate-marker-width-and-content.js +1 -2
  36. package/charts/core/components/annotations/components/canvas/utils/render-text-in-canvas.d.ts +1 -1
  37. package/charts/core/components/annotations/components/canvas/utils/render-text-in-canvas.js +3 -7
  38. package/charts/core/components/annotations/components/displays/AnnotationsNumericalDisplay.d.ts +1 -0
  39. package/charts/core/components/annotations/components/displays/AnnotationsTimeDisplay.d.ts +1 -0
  40. package/charts/core/components/annotations/components/overlays/AnnotationsOverlays.css +1 -1
  41. package/charts/core/components/annotations/components/overlays/AnnotationsOverlays.js +4 -2
  42. package/charts/core/components/annotations/components/overlays/AnnotationsOverlays.sty.js +1 -1
  43. package/charts/core/components/annotations/components/overlays/AnnotationsScrollWrapper.css +1 -1
  44. package/charts/core/components/annotations/components/overlays/AnnotationsScrollWrapper.sty.js +1 -1
  45. package/charts/core/components/annotations/components/tooltip/AnnotationsDefaultTooltipContent.js +161 -73
  46. package/charts/core/components/annotations/components/tooltip/AnnotationsOverlayTooltip.d.ts +1 -1
  47. package/charts/core/components/annotations/components/tooltip/AnnotationsOverlayTooltip.js +1 -1
  48. package/charts/core/components/annotations/constants.d.ts +0 -1
  49. package/charts/core/components/annotations/constants.js +0 -2
  50. package/charts/core/components/annotations/contexts/AnnotationsConfig.context.d.ts +7 -0
  51. package/charts/core/components/annotations/contexts/AnnotationsConfig.context.js +2 -1
  52. package/charts/core/components/annotations/hooks/useAnnotationsHandlers.d.ts +4 -2
  53. package/charts/core/components/annotations/hooks/useAnnotationsHandlers.js +7 -2
  54. package/charts/core/components/annotations/hooks/useGroupedAnnotationsData.d.ts +7 -2
  55. package/charts/core/components/annotations/hooks/useGroupedAnnotationsData.js +10 -3
  56. package/charts/core/components/annotations/hooks/useMarkerEventHandlers.d.ts +3 -2
  57. package/charts/core/components/annotations/hooks/useMarkerEventHandlers.js +12 -5
  58. package/charts/core/components/annotations/hooks/useOverlayEvents.d.ts +3 -2
  59. package/charts/core/components/annotations/hooks/useOverlayEvents.js +36 -17
  60. package/charts/core/components/annotations/types/annotations-marker-props.d.ts +5 -0
  61. package/charts/core/components/annotations/types/event-handlers.d.ts +3 -2
  62. package/charts/core/components/annotations/types/marker.d.ts +10 -4
  63. package/charts/core/components/annotations/utils/aggregate-markers-coords.js +24 -14
  64. package/charts/core/components/annotations/utils/calculate-marker-dimension.d.ts +2 -1
  65. package/charts/core/components/annotations/utils/define-marker-color.d.ts +9 -4
  66. package/charts/core/components/annotations/utils/define-marker-color.js +6 -3
  67. package/charts/core/components/annotations/utils/get-marker-pixel-extent.d.ts +4 -0
  68. package/charts/core/components/annotations/utils/get-marker-pixel-extent.js +88 -0
  69. package/charts/core/components/annotations/utils/process-annotation-tracks-data.d.ts +7 -1
  70. package/charts/core/components/annotations/utils/process-annotation-tracks-data.js +88 -36
  71. package/charts/core/components/annotations/utils/resolve-value-marker-hit-area.d.ts +3 -0
  72. package/charts/core/components/annotations/utils/resolve-value-marker-hit-area.js +32 -0
  73. package/charts/core/components/axes/Axis.css +1 -1
  74. package/charts/core/components/axes/Axis.js +2 -5
  75. package/charts/core/components/axes/Axis.sty.js +1 -1
  76. package/charts/core/components/axes/AxisPrimitive.d.ts +31 -0
  77. package/charts/core/components/axes/AxisPrimitive.js +221 -0
  78. package/charts/core/components/axes/components/CategoryBottomAxis.js +3 -3
  79. package/charts/core/components/axes/components/CategoryLeftAxis.js +2 -2
  80. package/charts/core/components/axes/components/PanningControls/PanningControls.css +16 -16
  81. package/charts/core/components/axes/components/PanningControls/PanningControls.sty.js +2 -2
  82. package/charts/core/components/axes/components/TickLabel.d.ts +1 -1
  83. package/charts/core/components/axes/components/TimeTableHeaderAxis.js +2 -2
  84. package/charts/core/components/axes/components/ValueTableHeaderAxis.js +2 -2
  85. package/charts/core/components/axes/constants.d.ts +0 -1
  86. package/charts/core/components/axes/constants.js +0 -2
  87. package/charts/core/components/axes/types.d.ts +50 -3
  88. package/charts/core/components/axes/utils/get-tick-label-props.d.ts +1 -23
  89. package/charts/core/components/axes/utils/get-tick-label-props.js +45 -4
  90. package/charts/core/components/chart-grid/ChartGrid.css +3 -3
  91. package/charts/core/components/chart-grid/ChartGrid.sty.js +3 -3
  92. package/charts/core/components/chart-grid/ChartGridArea.js +2 -12
  93. package/charts/core/components/chart-grid/constants.d.ts +23 -0
  94. package/charts/core/components/chart-grid/constants.js +33 -0
  95. package/charts/core/components/chart-grid/providers/GridPlotSizeProvider.js +2 -12
  96. package/charts/core/components/chart-layout/components/styles.css +15 -15
  97. package/charts/core/components/chart-layout/components/styles.sty.js +4 -4
  98. package/charts/core/components/chart-states/ChartState.css +4 -4
  99. package/charts/core/components/chart-states/ChartState.sty.js +4 -4
  100. package/charts/core/components/crosshair/HorizontalCrosshair.js +6 -4
  101. package/charts/core/components/crosshair/VerticalCrosshair.js +7 -5
  102. package/charts/core/components/crosshair/components/Magnifier.css +7 -7
  103. package/charts/core/components/crosshair/components/Magnifier.sty.js +7 -7
  104. package/charts/core/components/grid/Grid.d.ts +5 -2
  105. package/charts/core/components/grid/Grid.js +1 -4
  106. package/charts/core/components/grid/GridColumns.d.ts +6 -3
  107. package/charts/core/components/grid/GridColumns.js +9 -7
  108. package/charts/core/components/grid/GridLine.d.ts +15 -5
  109. package/charts/core/components/grid/GridLine.js +5 -4
  110. package/charts/core/components/grid/GridLines.d.ts +2 -2
  111. package/charts/core/components/grid/GridRows.d.ts +6 -3
  112. package/charts/core/components/grid/GridRows.js +9 -7
  113. package/charts/core/components/grid/utils/compute-grid-lines.d.ts +3 -0
  114. package/charts/core/components/grid/utils/compute-grid-lines.js +35 -0
  115. package/charts/core/components/grid/utils/should-highlight-zero-line.d.ts +2 -2
  116. package/charts/core/components/interactions-overlay/InteractionsOverlay.css +5 -5
  117. package/charts/core/components/interactions-overlay/InteractionsOverlay.sty.js +2 -2
  118. package/charts/core/components/legend/categorical/ChartLegend.css +1 -1
  119. package/charts/core/components/legend/categorical/ChartLegend.sty.js +1 -1
  120. package/charts/core/components/legend/categorical/components/ChartLegendIcon/ChartLegendIcon.css +3 -3
  121. package/charts/core/components/legend/categorical/components/ChartLegendIcon/ChartLegendIcon.sty.js +3 -3
  122. package/charts/core/components/legend/categorical/components/ChartLegendItem/ChartLegendItem.css +17 -17
  123. package/charts/core/components/legend/categorical/components/ChartLegendItem/ChartLegendItem.sty.js +6 -6
  124. package/charts/core/components/legend/categorical/components/ChartLegendSeriesActions/ChartLegendSeriesActions.css +3 -3
  125. package/charts/core/components/legend/categorical/components/ChartLegendSeriesActions/ChartLegendSeriesActions.sty.js +1 -1
  126. package/charts/core/components/legend/categorical/components/ChartVirtualizedLegendGrid.css +8 -8
  127. package/charts/core/components/legend/categorical/components/ChartVirtualizedLegendGrid.sty.js +4 -4
  128. package/charts/core/components/legend/range/RangeLegend.css +3 -3
  129. package/charts/core/components/legend/range/RangeLegend.sty.js +1 -1
  130. package/charts/core/components/legend/range/components/RangeLegendBoundaryLabel/RangeLegendBoundaryLabel.css +2 -2
  131. package/charts/core/components/legend/range/components/RangeLegendBoundaryLabel/RangeLegendBoundaryLabel.sty.js +1 -1
  132. package/charts/core/components/legend/range/components/RangeLegendItemLabel/RangeLegendItemLabel.css +1 -1
  133. package/charts/core/components/legend/range/components/RangeLegendItemLabel/RangeLegendItemLabel.sty.js +1 -1
  134. package/charts/core/components/legend/range/components/RangeLegendItemMarker/RangeLegendItemMarker.css +3 -3
  135. package/charts/core/components/legend/range/components/RangeLegendItemMarker/RangeLegendItemMarker.sty.js +1 -1
  136. package/charts/core/components/legend/range/components/RangeLegendMarkers/RangeLegendMarkers.css +3 -3
  137. package/charts/core/components/legend/range/components/RangeLegendMarkers/RangeLegendMarkers.sty.js +1 -1
  138. package/charts/core/components/legend/range/components/RangeLegendSegments/RangeLegendSegments.css +5 -5
  139. package/charts/core/components/legend/range/components/RangeLegendSegments/RangeLegendSegments.sty.js +1 -1
  140. package/charts/core/components/loader-overlay/LoaderOverlay.css +2 -2
  141. package/charts/core/components/loader-overlay/LoaderOverlay.sty.js +2 -2
  142. package/charts/core/components/overlay-tooltip/components/DynamicTooltip.js +7 -3
  143. package/charts/core/components/overlay-tooltip/components/DynamicTooltipRenderer.js +3 -3
  144. package/charts/core/components/overlay-tooltip/components/TooltipPortal.js +7 -1
  145. package/charts/core/components/overlay-tooltip/components/global-actions/actions.css +4 -4
  146. package/charts/core/components/overlay-tooltip/components/global-actions/actions.sty.js +2 -2
  147. package/charts/core/components/overlay-tooltip/components/header/Header.css +6 -6
  148. package/charts/core/components/overlay-tooltip/components/header/Header.sty.js +6 -6
  149. package/charts/core/components/overlay-tooltip/components/series/Series.js +2 -2
  150. package/charts/core/components/overlay-tooltip/components/series/seriesSymbol.css +2 -2
  151. package/charts/core/components/overlay-tooltip/components/series/seriesSymbol.sty.js +2 -2
  152. package/charts/core/components/overlay-tooltip/defaults.js +1 -1
  153. package/charts/core/components/overlay-tooltip/tooltip.css +52 -52
  154. package/charts/core/components/overlay-tooltip/tooltip.sty.js +39 -39
  155. package/charts/core/components/overlay-tooltip/types.d.ts +1 -1
  156. package/charts/core/components/overlay-tooltip/useTooltipActions.js +8 -0
  157. package/charts/core/components/overlay-tooltip/utils/is-scroll-ignored.d.ts +2 -0
  158. package/charts/core/components/overlay-tooltip/utils/is-scroll-ignored.js +28 -0
  159. package/charts/core/components/overlays/ChartOverlaysBorder.css +8 -5
  160. package/charts/core/components/overlays/ChartOverlaysBorder.d.ts +3 -1
  161. package/charts/core/components/overlays/ChartOverlaysBorder.js +11 -3
  162. package/charts/core/components/overlays/ChartOverlaysBorder.sty.d.ts +1 -0
  163. package/charts/core/components/overlays/ChartOverlaysBorder.sty.js +7 -5
  164. package/charts/core/components/selection-area/SelectionArea.css +9 -9
  165. package/charts/core/components/selection-area/SelectionArea.sty.js +4 -4
  166. package/charts/core/components/series-action/ChartActionsMenuAsync.js +3 -1
  167. package/charts/core/components/shape/BubbleShape/BubbleShape.css +5 -5
  168. package/charts/core/components/shape/BubbleShape/BubbleShape.sty.js +3 -3
  169. package/charts/core/components/shape/EmojiShape/EmojiShape.css +3 -3
  170. package/charts/core/components/shape/EmojiShape/EmojiShape.sty.js +1 -1
  171. package/charts/core/components/shape/IconShape/IconShape.css +3 -3
  172. package/charts/core/components/shape/IconShape/IconShape.sty.js +1 -1
  173. package/charts/core/components/shape/styles/DataPointShape.css +8 -8
  174. package/charts/core/components/shape/styles/DataPointShape.sty.js +4 -4
  175. package/charts/core/components/shared-chart-interactions/SharedChartInteractions.css +1 -1
  176. package/charts/core/components/shared-chart-interactions/SharedChartInteractions.sty.js +1 -1
  177. package/charts/core/components/single-value-renderer/SingleValueRenderer.css +5 -5
  178. package/charts/core/components/single-value-renderer/SingleValueRenderer.sty.js +5 -5
  179. package/charts/core/components/single-value-renderer/components/ContentGrid.css +1 -1
  180. package/charts/core/components/single-value-renderer/components/ContentGrid.sty.js +1 -1
  181. package/charts/core/components/single-value-renderer/components/Icon.css +3 -3
  182. package/charts/core/components/single-value-renderer/components/Icon.sty.js +2 -2
  183. package/charts/core/components/single-value-renderer/components/Label.css +1 -1
  184. package/charts/core/components/single-value-renderer/components/Label.sty.js +1 -1
  185. package/charts/core/components/single-value-renderer/components/SingleValueToolbar.css +1 -1
  186. package/charts/core/components/single-value-renderer/components/SingleValueToolbar.js +0 -1
  187. package/charts/core/components/single-value-renderer/components/SingleValueToolbar.sty.js +1 -1
  188. package/charts/core/components/single-value-renderer/components/Value.css +5 -5
  189. package/charts/core/components/single-value-renderer/components/Value.sty.js +3 -3
  190. package/charts/core/components/single-value-renderer/components/trend/Trend.css +3 -3
  191. package/charts/core/components/single-value-renderer/components/trend/Trend.sty.js +3 -3
  192. package/charts/core/components/single-value-renderer/components/trend/components/Icon.css +2 -2
  193. package/charts/core/components/single-value-renderer/components/trend/components/Icon.sty.js +1 -1
  194. package/charts/core/components/sparkline-display/Sparkline.css +6 -6
  195. package/charts/core/components/sparkline-display/Sparkline.sty.js +2 -2
  196. package/charts/core/components/sparkline-display/SparklineContainer.js +14 -9
  197. package/charts/core/components/sparkline-display/utils/get-sparkline-y-scale.js +4 -0
  198. package/charts/core/components/text-ellipsis/ChartTextEllipsis.css +7 -7
  199. package/charts/core/components/text-ellipsis/ChartTextEllipsis.sty.js +3 -3
  200. package/charts/core/components/threshold-bar/indicators/ThresholdIndicator.js +40 -21
  201. package/charts/core/components/threshold-bar/markers/CircleMarker.js +1 -2
  202. package/charts/core/components/threshold-bar/markers/PillMarker.js +1 -2
  203. package/charts/core/components/threshold-bar/styles.css +9 -9
  204. package/charts/core/components/threshold-bar/styles.sty.js +2 -2
  205. package/charts/core/components/toolbar/ChartToolbarRenderer.css +16 -16
  206. package/charts/core/components/toolbar/ChartToolbarRenderer.js +16 -6
  207. package/charts/core/components/toolbar/ChartToolbarRenderer.sty.js +8 -8
  208. package/charts/core/components/toolbar/components/ChartDataMenu.css +2 -2
  209. package/charts/core/components/toolbar/components/ChartDataMenu.sty.js +1 -1
  210. package/charts/core/components/toolbar/components/Control.css +17 -17
  211. package/charts/core/components/toolbar/components/Control.sty.js +5 -5
  212. package/charts/core/components/toolbar/components/ToolbarMenu.css +4 -4
  213. package/charts/core/components/toolbar/components/ToolbarMenu.sty.js +2 -2
  214. package/charts/core/components/toolbar/types.d.ts +4 -2
  215. package/charts/core/components/tooltip/ChartTooltip/ChartTooltip.css +6 -6
  216. package/charts/core/components/tooltip/ChartTooltip/ChartTooltip.sty.js +2 -2
  217. package/charts/core/components/tooltip/ChartTooltip/components/ActionItem/ActionItem.css +8 -8
  218. package/charts/core/components/tooltip/ChartTooltip/components/ActionItem/ActionItem.sty.js +3 -3
  219. package/charts/core/components/tooltip/ChartTooltip/components/SeriesItem/SeriesItem.css +2 -2
  220. package/charts/core/components/tooltip/ChartTooltip/components/SeriesItem/SeriesItem.sty.js +1 -1
  221. package/charts/core/components/tooltip/ChartTooltip/components/TimeFrameHeader/TimeFrameHeader.css +1 -1
  222. package/charts/core/components/tooltip/ChartTooltip/components/TimeFrameHeader/TimeFrameHeader.sty.js +1 -1
  223. package/charts/core/components/tooltip/InteractiveChartTooltip/components/BasicChartTooltip/BasicChartTooltip.css +6 -6
  224. package/charts/core/components/tooltip/InteractiveChartTooltip/components/BasicChartTooltip/BasicChartTooltip.sty.js +2 -2
  225. package/charts/core/components/tooltip/InteractiveChartTooltip/components/InteractiveChartTooltip.css +7 -7
  226. package/charts/core/components/tooltip/InteractiveChartTooltip/components/InteractiveChartTooltip.sty.js +6 -6
  227. package/charts/core/components/tooltip/InteractiveChartTooltip/headers/HeaderTooltip.css +1 -1
  228. package/charts/core/components/tooltip/InteractiveChartTooltip/headers/HeaderTooltip.sty.js +1 -1
  229. package/charts/core/components/tooltip/section-components/TooltipFooter/TooltipFooter.css +1 -1
  230. package/charts/core/components/tooltip/section-components/TooltipFooter/TooltipFooter.sty.js +1 -1
  231. package/charts/core/components/tooltip/section-components/TooltipHeader/TooltipHeader.css +2 -2
  232. package/charts/core/components/tooltip/section-components/TooltipHeader/TooltipHeader.sty.js +1 -1
  233. package/charts/core/components/tooltip/section-components/TooltipInfoContent/TooltipInfoContent.css +1 -1
  234. package/charts/core/components/tooltip/section-components/TooltipInfoContent/TooltipInfoContent.sty.js +1 -1
  235. package/charts/core/components/tooltip/section-components/TooltipItem/TooltipItem.css +3 -3
  236. package/charts/core/components/tooltip/section-components/TooltipItem/TooltipItem.sty.js +2 -2
  237. package/charts/core/components/tooltip/section-components/TooltipSymbolContent/TooltipSymbolContent.css +1 -1
  238. package/charts/core/components/tooltip/section-components/TooltipSymbolContent/TooltipSymbolContent.sty.js +1 -1
  239. package/charts/core/components/tooltip/section-components/VirtualizedTooltipBody/VirtualizedTooltipBody.css +2 -2
  240. package/charts/core/components/tooltip/section-components/VirtualizedTooltipBody/VirtualizedTooltipBody.sty.js +2 -2
  241. package/charts/core/components/tooltip/shared/styles/SeriesBasedContent.css +12 -12
  242. package/charts/core/components/tooltip/shared/styles/SeriesBasedContent.sty.js +7 -7
  243. package/charts/core/components/tooltip/shared/styles/TooltipBody.css +1 -1
  244. package/charts/core/components/tooltip/shared/styles/TooltipBody.sty.js +1 -1
  245. package/charts/core/components/tooltip-atoms/components/HeaderChipAtom/HeaderChipAtom.css +1 -1
  246. package/charts/core/components/tooltip-atoms/components/HeaderChipAtom/HeaderChipAtom.sty.js +1 -1
  247. package/charts/core/components/tooltip-atoms/components/styles.css +4 -4
  248. package/charts/core/components/tooltip-atoms/components/styles.sty.js +4 -4
  249. package/charts/core/components/zoom/ZoomCursors.css +2 -2
  250. package/charts/core/components/zoom/ZoomCursors.sty.js +3 -3
  251. package/charts/core/constants.d.ts +7 -0
  252. package/charts/core/constants.js +2 -0
  253. package/charts/core/hooks/useOverlayEventHandlers.d.ts +10 -11
  254. package/charts/core/hooks/useOverlayEventHandlers.js +40 -20
  255. package/charts/core/hooks/usePointerAndScrollResponsiveChartBounds.js +1 -1
  256. package/charts/core/hooks/useThrottledCallbackOnResize.js +2 -12
  257. package/charts/core/hooks/useThrottledCallbackOnScroll.d.ts +1 -1
  258. package/charts/core/hooks/useThrottledResizeObserver.js +2 -12
  259. package/charts/core/types/chart-data.d.ts +13 -0
  260. package/charts/core/types/chart-data.js +15 -0
  261. package/charts/core/types/text-size.d.ts +7 -0
  262. package/charts/core/types/text-size.js +15 -0
  263. package/charts/core/typographyStyles.css +1 -1
  264. package/charts/core/typographyStyles.sty.js +1 -1
  265. package/charts/core/utils/formatter-by-ticks.d.ts +4 -5
  266. package/charts/core/utils/formatter-by-ticks.js +4 -4
  267. package/charts/core/utils/text-measure.d.ts +34 -0
  268. package/charts/{tree-map → core}/utils/text-measure.js +19 -19
  269. package/charts/gantt-chart/GanttChartLine.css +1 -1
  270. package/charts/gantt-chart/GanttChartLine.sty.js +1 -1
  271. package/charts/gantt-chart/components/GanttChartLineRenderer.css +1 -1
  272. package/charts/gantt-chart/components/GanttChartLineRenderer.js +1 -2
  273. package/charts/gantt-chart/components/GanttChartLineRenderer.sty.js +1 -1
  274. package/charts/gantt-chart/components/tooltip/GanttChartTooltip.css +1 -1
  275. package/charts/gantt-chart/components/tooltip/GanttChartTooltip.sty.js +1 -1
  276. package/charts/gauge/components/GaugeChartLayout/GaugeChartLayout.css +1 -1
  277. package/charts/gauge/components/GaugeChartLayout/GaugeChartLayout.sty.js +1 -1
  278. package/charts/gauge/components/GaugeChartLayout/GaugeChartToolbar.d.ts +2 -0
  279. package/charts/gauge/components/GaugeChartLayout/GaugeChartToolbar.js +2 -2
  280. package/charts/gauge/components/GaugeChartTooltip/GaugeOverlayTooltip.js +1 -1
  281. package/charts/gauge/components/GaugeLabel/GaugeLabel.css +6 -6
  282. package/charts/gauge/components/GaugeLabel/GaugeLabel.sty.js +3 -3
  283. package/charts/gauge/components/GaugeLabelsWrapper/GaugeLabelsWrapper.css +3 -3
  284. package/charts/gauge/components/GaugeLabelsWrapper/GaugeLabelsWrapper.sty.js +1 -1
  285. package/charts/gauge/components/GaugeLayoutOverlay/GaugeLayoutOverlay.css +4 -4
  286. package/charts/gauge/components/GaugeLayoutOverlay/GaugeLayoutOverlay.js +51 -3
  287. package/charts/gauge/components/GaugeLayoutOverlay/GaugeLayoutOverlay.sty.js +3 -3
  288. package/charts/gauge/components/GaugeResponsiveLabel/GaugeResponsiveLabel.css +2 -2
  289. package/charts/gauge/components/GaugeResponsiveLabel/GaugeResponsiveLabel.sty.js +2 -2
  290. package/charts/gauge/utils/is-in-gauge-hit-area.d.ts +9 -0
  291. package/charts/gauge/utils/is-in-gauge-hit-area.js +37 -0
  292. package/charts/histogram/HistogramChart.d.ts +3 -3
  293. package/charts/histogram/HistogramChart.js +4 -5
  294. package/charts/histogram/HistogramChartInternal.js +18 -11
  295. package/charts/histogram/components/annotations-histogram/HistogramAnnotationsArea.js +26 -34
  296. package/charts/histogram/components/axes/HistogramValueBottomAxisArea/HistogramValueBottomAxisArea.css +1 -1
  297. package/charts/histogram/components/axes/HistogramValueBottomAxisArea/HistogramValueBottomAxisArea.sty.js +1 -1
  298. package/charts/histogram/components/overlays/HistogramExplore/HistogramTooltip.css +1 -1
  299. package/charts/histogram/components/overlays/HistogramExplore/HistogramTooltip.sty.js +1 -1
  300. package/charts/histogram/components/overlays/HistogramOverlays.css +2 -2
  301. package/charts/histogram/components/overlays/HistogramOverlays.sty.js +2 -2
  302. package/charts/histogram/components/overlays/HistogramOverlaysBorder.js +5 -1
  303. package/charts/histogram/components/toolbar/HistogramToolbar.js +0 -1
  304. package/charts/honeycomb/HoneycombChart.css +1 -1
  305. package/charts/honeycomb/HoneycombChart.js +6 -3
  306. package/charts/honeycomb/HoneycombChart.sty.js +1 -1
  307. package/charts/honeycomb/components/HiveOverlay.css +1 -1
  308. package/charts/honeycomb/components/HiveOverlay.js +2 -10
  309. package/charts/honeycomb/components/HiveOverlay.sty.js +1 -1
  310. package/charts/honeycomb/components/canvas/HiveCanvasLayout.css +1 -1
  311. package/charts/honeycomb/components/canvas/HiveCanvasLayout.sty.js +1 -1
  312. package/charts/honeycomb/components/canvas/renderers/CanvasCircleRenderer.js +7 -2
  313. package/charts/honeycomb/components/canvas/renderers/CanvasHexagonRenderer.js +9 -5
  314. package/charts/honeycomb/components/canvas/renderers/CanvasSquareRenderer.js +7 -2
  315. package/charts/honeycomb/components/canvas/utils/draw-label-and-value.d.ts +2 -1
  316. package/charts/honeycomb/components/canvas/utils/draw-label-and-value.js +100 -20
  317. package/charts/honeycomb/components/canvas/utils/get-font-sizes.d.ts +5 -0
  318. package/charts/honeycomb/components/canvas/utils/get-font-sizes.js +52 -0
  319. package/charts/honeycomb/components/canvas/utils/get-truncation-method.d.ts +3 -1
  320. package/charts/honeycomb/components/canvas/utils/get-truncation-method.js +78 -8
  321. package/charts/honeycomb/components/canvas/utils/measure-node-text-content.d.ts +2 -1
  322. package/charts/honeycomb/components/canvas/utils/measure-node-text-content.js +13 -16
  323. package/charts/honeycomb/components/canvas/utils/render-text-to-canvas.d.ts +1 -1
  324. package/charts/honeycomb/components/canvas/utils/render-text-to-canvas.js +2 -2
  325. package/charts/honeycomb/components/canvas/utils/set-font-details-to-context.d.ts +1 -1
  326. package/charts/honeycomb/components/canvas/utils/set-font-details-to-context.js +11 -9
  327. package/charts/honeycomb/components/toolbar/HoneycombToolbar.js +1 -3
  328. package/charts/honeycomb/components/tooltip/HoneycombOverlayTooltip.js +1 -1
  329. package/charts/honeycomb/constants.d.ts +8 -4
  330. package/charts/honeycomb/constants.js +17 -13
  331. package/charts/honeycomb/context/honeycomb-color-scheme.context.d.ts +1 -1
  332. package/charts/honeycomb/context/honeycomb-filtered-color-scheme.context.d.ts +1 -1
  333. package/charts/honeycomb/context/honeycomb-text-size.context.d.ts +2 -0
  334. package/charts/{core/components/toolbar/utils/estimate-toolbar-width.js → honeycomb/context/honeycomb-text-size.context.js} +8 -15
  335. package/charts/honeycomb/hooks/use-honeycomb-chart-config.js +6 -1
  336. package/charts/honeycomb/hooks/use-honeycomb-color-scheme.context.d.ts +1 -1
  337. package/charts/honeycomb/hooks/use-honeycomb-filtered-color-scheme.d.ts +1 -1
  338. package/charts/honeycomb/hooks/use-honeycomb-text-size.d.ts +1 -0
  339. package/charts/honeycomb/hooks/use-honeycomb-text-size.js +25 -0
  340. package/charts/honeycomb/hooks/use-overlay-events.d.ts +4 -5
  341. package/charts/honeycomb/hooks/use-overlay-events.js +4 -7
  342. package/charts/honeycomb/store/selectors.d.ts +0 -1
  343. package/charts/honeycomb/store/selectors.js +0 -2
  344. package/charts/honeycomb/store/store.d.ts +1 -2
  345. package/charts/honeycomb/store/store.js +0 -13
  346. package/charts/honeycomb/types/honeycomb-config-properties.d.ts +8 -1
  347. package/charts/honeycomb/types/honeycomb-internal.d.ts +4 -1
  348. package/charts/honeycomb/types/honeycomb.d.ts +53 -10
  349. package/charts/honeycomb/types/state.d.ts +0 -4
  350. package/charts/honeycomb/types/state.js +0 -3
  351. package/charts/honeycomb/utils/build-honeycomb-config.d.ts +3 -2
  352. package/charts/honeycomb/utils/build-honeycomb-config.js +17 -4
  353. package/charts/honeycomb/utils/normalize-honeycomb-chart-data.d.ts +17 -0
  354. package/charts/honeycomb/utils/normalize-honeycomb-chart-data.js +39 -0
  355. package/charts/index.d.ts +7 -5
  356. package/charts/meter-bar/multi-meter-bar/components/MultiMeterBarChartOverlay/MultiMeterBarChartOverlayWithTooltip.js +1 -1
  357. package/charts/meter-bar/shared/components/meter-bar-layout/MeterBarLayout.css +15 -15
  358. package/charts/meter-bar/shared/components/meter-bar-layout/MeterBarLayout.sty.js +10 -10
  359. package/charts/meter-bar/shared/components/meter-bar-layout/slots/Icon/Icon.css +2 -2
  360. package/charts/meter-bar/shared/components/meter-bar-layout/slots/Icon/Icon.sty.js +1 -1
  361. package/charts/meter-bar/shared/components/meter-bar-layout/slots/Label/Label.css +1 -1
  362. package/charts/meter-bar/shared/components/meter-bar-layout/slots/Label/Label.sty.js +1 -1
  363. package/charts/meter-bar/shared/components/meter-bar-layout/slots/Max/Max.css +1 -1
  364. package/charts/meter-bar/shared/components/meter-bar-layout/slots/Max/Max.sty.js +1 -1
  365. package/charts/meter-bar/shared/components/meter-bar-layout/slots/Min/Min.css +1 -1
  366. package/charts/meter-bar/shared/components/meter-bar-layout/slots/Min/Min.sty.js +1 -1
  367. package/charts/meter-bar/shared/components/meter-bar-layout/slots/Value/Value.css +1 -1
  368. package/charts/meter-bar/shared/components/meter-bar-layout/slots/Value/Value.sty.js +1 -1
  369. package/charts/meter-bar/shared/components/meter-bar-plot/MeterBarPlot.css +1 -1
  370. package/charts/meter-bar/shared/components/meter-bar-plot/MeterBarPlot.sty.js +1 -1
  371. package/charts/meter-bar/shared/styles/element-size.css +4 -4
  372. package/charts/meter-bar/shared/styles/element-size.sty.js +1 -1
  373. package/charts/meter-bar/shared/styles.css +1 -1
  374. package/charts/meter-bar/shared/styles.sty.js +1 -1
  375. package/charts/meter-bar/single-meter-bar/components/MeterBarChartOverlay/MeterBarChartOverlayWithTooltip.js +1 -1
  376. package/charts/meter-bar/single-meter-bar/components/MeterBarChartThresholds/MeterBarChartThresholds.css +1 -1
  377. package/charts/meter-bar/single-meter-bar/components/MeterBarChartThresholds/MeterBarChartThresholds.sty.js +1 -1
  378. package/charts/pie/DonutChart.d.ts +2 -3
  379. package/charts/pie/DonutChart.js +6 -13
  380. package/charts/pie/PieChart.d.ts +2 -3
  381. package/charts/pie/PieChart.js +8 -15
  382. package/charts/pie/components/InnerWrapper/components/InnerContainer/InnerContainer.css +1 -1
  383. package/charts/pie/components/InnerWrapper/components/InnerContainer/InnerContainer.sty.js +1 -1
  384. package/charts/pie/components/InnerWrapper/components/InnerDonut/InnerDonut.css +1 -1
  385. package/charts/pie/components/InnerWrapper/components/InnerDonut/InnerDonut.sty.js +1 -1
  386. package/charts/pie/components/PieChartOverlays/PieChartOverlays.css +1 -1
  387. package/charts/pie/components/PieChartOverlays/PieChartOverlays.js +3 -3
  388. package/charts/pie/components/PieChartOverlays/PieChartOverlays.sty.js +1 -1
  389. package/charts/pie/components/PieChartPlot/PieChartPlot.css +1 -1
  390. package/charts/pie/components/PieChartPlot/PieChartPlot.js +59 -54
  391. package/charts/pie/components/PieChartPlot/PieChartPlot.sty.js +1 -1
  392. package/charts/pie/components/PieChartSlice.js +15 -11
  393. package/charts/pie/components/PieChartTooltip/PieChartTooltip.js +1 -1
  394. package/charts/pie/constants.d.ts +1 -0
  395. package/charts/pie/constants.js +2 -0
  396. package/charts/pie/context/ChartConfigContext.d.ts +1 -0
  397. package/charts/pie/hooks/useNormalizedPieData.d.ts +7 -0
  398. package/charts/pie/hooks/useNormalizedPieData.js +38 -0
  399. package/charts/pie/hooks/useOverlayHandlers.d.ts +3 -2
  400. package/charts/pie/hooks/useOverlayHandlers.js +7 -5
  401. package/charts/pie/hooks/useSliceHandlers.d.ts +4 -3
  402. package/charts/pie/hooks/useSliceHandlers.js +29 -3
  403. package/charts/pie/types/pie-chart.config.d.ts +102 -37
  404. package/charts/pie/utils/group-slices-thinner-than-pad-angle.js +2 -1
  405. package/charts/pie/utils/normalize-pie-data.d.ts +29 -0
  406. package/charts/pie/utils/normalize-pie-data.js +38 -0
  407. package/charts/pie/utils/pie-config.js +2 -1
  408. package/charts/pie/utils/sanitize-toolbar-intents.d.ts +2 -0
  409. package/charts/{tree-map/hooks/useSetOverlayState.js → pie/utils/sanitize-toolbar-intents.js} +9 -18
  410. package/charts/single-value/SingleValue.css +1 -1
  411. package/charts/single-value/SingleValue.sty.js +1 -1
  412. package/charts/single-value-grid/SingleValueGrid.css +2 -2
  413. package/charts/single-value-grid/SingleValueGrid.sty.js +1 -1
  414. package/charts/single-value-grid/components/GlobalFontSizeVariables.css +1 -1
  415. package/charts/single-value-grid/components/GlobalFontSizeVariables.sty.js +1 -1
  416. package/charts/timeseries/TimeseriesChart.d.ts +1 -1
  417. package/charts/timeseries/TimeseriesChartInternal.d.ts +4 -0
  418. package/charts/timeseries/TimeseriesChartInternal.js +40 -23
  419. package/charts/timeseries/components/annotations-timeseries/TimeseriesChartAnnotationsArea.js +25 -33
  420. package/charts/timeseries/components/axes/TimeseriesTimeBottomAxisArea/TimeseriesTimeBottomAxisArea.css +2 -2
  421. package/charts/timeseries/components/axes/TimeseriesTimeBottomAxisArea/TimeseriesTimeBottomAxisArea.sty.js +1 -1
  422. package/charts/timeseries/components/overlays/TimeseriesChartOverlaysBorder.js +5 -1
  423. package/charts/timeseries/components/overlays/TimeseriesOverlays.css +4 -4
  424. package/charts/timeseries/components/overlays/TimeseriesOverlays.sty.js +4 -4
  425. package/charts/timeseries/components/thresholds/ThresholdIndicators.css +2 -2
  426. package/charts/timeseries/components/thresholds/ThresholdIndicators.sty.js +2 -2
  427. package/charts/timeseries/components/toolbar/TimeseriesChartToolbar.js +0 -1
  428. package/charts/timeseries/slots/Tooltip.d.ts +4 -1
  429. package/charts/top-list/TopList.css +1 -1
  430. package/charts/top-list/TopList.d.ts +13 -1
  431. package/charts/top-list/TopList.js +23 -8
  432. package/charts/top-list/TopList.sty.js +1 -1
  433. package/charts/top-list/constants.d.ts +1 -4
  434. package/charts/top-list/constants.js +2 -1
  435. package/charts/top-list/types/top-list.d.ts +11 -0
  436. package/charts/tree-map/TreeMap.d.ts +2 -3
  437. package/charts/tree-map/TreeMap.js +10 -1
  438. package/charts/tree-map/components/TreeMapCanvas.d.ts +1 -1
  439. package/charts/tree-map/components/TreeMapChartLayout.js +4 -4
  440. package/charts/tree-map/components/TreeMapCluster.d.ts +1 -1
  441. package/charts/tree-map/components/TreeMapInternal.js +28 -32
  442. package/charts/tree-map/components/TreeMapLegend/TreeMapCategoricalLegend.js +3 -1
  443. package/charts/tree-map/components/TreeMapOverlay/TreeMapOverlay.css +1 -1
  444. package/charts/tree-map/components/TreeMapOverlay/TreeMapOverlay.js +2 -10
  445. package/charts/tree-map/components/TreeMapOverlay/TreeMapOverlay.sty.js +1 -1
  446. package/charts/tree-map/components/TreeMapToolbar/TreeMapToolbar.js +2 -4
  447. package/charts/tree-map/components/TreeMapTooltip/TreeMapOverlayTooltip.js +1 -1
  448. package/charts/tree-map/components/canvas/TreeMapSquareRenderer.js +4 -2
  449. package/charts/tree-map/constants.d.ts +4 -2
  450. package/charts/tree-map/constants.js +1 -2
  451. package/charts/tree-map/context/TextSizeContext.d.ts +3 -2
  452. package/charts/tree-map/hooks/useOverlayHandlers.d.ts +4 -5
  453. package/charts/tree-map/hooks/useOverlayHandlers.js +4 -7
  454. package/charts/tree-map/hooks/useSetHierarchyNodes.d.ts +1 -1
  455. package/charts/tree-map/hooks/useTreeMapChartConfig.d.ts +2 -2
  456. package/charts/tree-map/hooks/useTreeMapChartHandlers.js +4 -1
  457. package/charts/tree-map/hooks/useVisibleNodes.js +7 -1
  458. package/charts/tree-map/providers/TreeMapChartProviders.d.ts +2 -1
  459. package/charts/tree-map/providers/TreeMapChartProviders.js +1 -1
  460. package/charts/tree-map/store/selectors.d.ts +2 -3
  461. package/charts/tree-map/store/selectors.js +1 -3
  462. package/charts/tree-map/store/store.js +0 -3
  463. package/charts/tree-map/types/state.d.ts +1 -4
  464. package/charts/tree-map/types/treemap.d.ts +27 -10
  465. package/charts/tree-map/utils/build-labels.d.ts +1 -1
  466. package/charts/tree-map/utils/build-overlay-tooltip-data.d.ts +1 -1
  467. package/charts/tree-map/utils/build-tree-map-chart-config.d.ts +2 -2
  468. package/charts/tree-map/utils/get-cluster-position.d.ts +1 -1
  469. package/charts/tree-map/utils/get-filtered-nodes.d.ts +2 -1
  470. package/charts/tree-map/utils/get-filtered-nodes.js +23 -2
  471. package/charts/tree-map/utils/get-legend-interaction-props.d.ts +1 -1
  472. package/charts/tree-map/utils/get-legend-interaction-props.js +2 -2
  473. package/charts/tree-map/utils/get-node-color.d.ts +1 -1
  474. package/charts/tree-map/utils/get-node-dimension.d.ts +1 -1
  475. package/charts/tree-map/utils/get-node-opacity.d.ts +1 -1
  476. package/charts/tree-map/utils/get-node-position.d.ts +1 -1
  477. package/charts/tree-map/utils/get-tooltip-data.d.ts +1 -1
  478. package/charts/tree-map/utils/get-tooltip-item.d.ts +1 -1
  479. package/charts/tree-map/utils/node-padding.d.ts +1 -1
  480. package/charts/tree-map/utils/should-draw-leaf-node.d.ts +1 -1
  481. package/charts/tree-map/utils/split-nodes-by-depth.d.ts +1 -1
  482. package/charts/tree-map/utils/to-hierarchical-props.d.ts +2 -0
  483. package/charts/tree-map/utils/to-hierarchical-props.js +106 -0
  484. package/charts/xy-chart/XYChart.js +20 -12
  485. package/charts/xy-chart/XYChartRoot.js +4 -2
  486. package/charts/xy-chart/components/annotations/XYChartAnnotationsArea.js +29 -34
  487. package/charts/xy-chart/components/annotations/utils/get-indicators-from-annotations.js +1 -0
  488. package/charts/xy-chart/components/axes/AxisArea.css +1 -1
  489. package/charts/xy-chart/components/axes/AxisArea.sty.js +1 -1
  490. package/charts/xy-chart/components/axes/AxisTickWithTruncation.css +3 -3
  491. package/charts/xy-chart/components/axes/AxisTickWithTruncation.sty.js +3 -3
  492. package/charts/xy-chart/components/axes/XTickWithTruncation.d.ts +1 -1
  493. package/charts/xy-chart/components/axes/XYChartLeftAxisArea.js +5 -1
  494. package/charts/xy-chart/components/axes/XYChartRightAxisArea.js +5 -1
  495. package/charts/xy-chart/components/axes/YTickWithTruncation.d.ts +1 -1
  496. package/charts/xy-chart/components/axes/hooks/useXTickOffset.d.ts +1 -1
  497. package/charts/xy-chart/components/axes/hooks/useYTickOffset.d.ts +1 -1
  498. package/charts/xy-chart/components/displays/BarDisplay/BarDisplay.js +1 -1
  499. package/charts/xy-chart/components/displays/BarDisplay/BarLabelOverlay.css +3 -3
  500. package/charts/xy-chart/components/displays/BarDisplay/BarLabelOverlay.js +4 -2
  501. package/charts/xy-chart/components/displays/BarDisplay/BarLabelOverlay.sty.js +3 -3
  502. package/charts/xy-chart/components/displays/bar-accessors.d.ts +7 -0
  503. package/charts/xy-chart/components/displays/bar-accessors.js +7 -0
  504. package/charts/xy-chart/components/legend/XYLegend/XYLegend.js +1 -1
  505. package/charts/xy-chart/components/legend/XYLegend/xy-legend.css +1 -1
  506. package/charts/xy-chart/components/legend/XYLegend/xy-legend.sty.js +1 -1
  507. package/charts/xy-chart/components/overlay/explore/HighlightedPointCanvas.d.ts +3 -2
  508. package/charts/xy-chart/components/overlay/explore/HighlightedPointCanvas.js +27 -5
  509. package/charts/xy-chart/components/overlay/explore/XYChartCrosshair.css +1 -1
  510. package/charts/xy-chart/components/overlay/explore/XYChartCrosshair.sty.js +1 -1
  511. package/charts/xy-chart/components/overlay/explore/XYChartExplore.css +2 -2
  512. package/charts/xy-chart/components/overlay/explore/XYChartExplore.sty.js +2 -2
  513. package/charts/xy-chart/components/overlay/explore/XYChartLinearPoint.js +12 -6
  514. package/charts/xy-chart/components/overlay/hooks/useApplyPanDelta.js +5 -1
  515. package/charts/xy-chart/components/overlay/hooks/useApplyZoomDelta.js +5 -1
  516. package/charts/xy-chart/components/overlay/hooks/useOverlayEvents.js +4 -0
  517. package/charts/xy-chart/components/overlay/hooks/useResetInteractions.js +11 -6
  518. package/charts/xy-chart/components/overlay/hooks/useZoomToSelection.js +10 -6
  519. package/charts/xy-chart/components/overlay/utils/draw-shape.d.ts +1 -0
  520. package/charts/xy-chart/components/overlay/utils/draw-shape.js +19 -0
  521. package/charts/xy-chart/components/thresholds/XYChartThresholdIndicators.css +1 -1
  522. package/charts/xy-chart/components/thresholds/XYChartThresholdIndicators.sty.js +1 -1
  523. package/charts/xy-chart/components/toolbar/XYChartToolbar.js +0 -1
  524. package/charts/xy-chart/components/tooltip/ClosestPointTooltip/ClosestPointTooltip.js +8 -3
  525. package/charts/xy-chart/components/tooltip/ClosestPointTooltip/closestPointTooltipHeaderUtils.d.ts +1 -0
  526. package/charts/xy-chart/components/tooltip/ClosestPointTooltip/closestPointTooltipHeaderUtils.js +2 -1
  527. package/charts/xy-chart/components/tooltip/HoveredPointTooltip/HoveredPointTooltip.js +8 -3
  528. package/charts/xy-chart/components/tooltip/HoveredPointTooltip/hooks/getHoveredPointTooltipBodyContent.js +2 -2
  529. package/charts/xy-chart/components/tooltip/HoveredPointTooltip/hoveredPointTooltipHeaderUtils.d.ts +7 -0
  530. package/charts/xy-chart/components/tooltip/HoveredPointTooltip/hoveredPointTooltipHeaderUtils.js +14 -2
  531. package/charts/xy-chart/components/tooltip/SharedXYChartTooltip/SharedXYChartTooltip.js +42 -22
  532. package/charts/xy-chart/components/tooltip/SharedXYChartTooltip/sharedXYChartTooltipUtils.d.ts +1 -0
  533. package/charts/xy-chart/components/tooltip/SharedXYChartTooltip/sharedXYChartTooltipUtils.js +9 -2
  534. package/charts/xy-chart/components/tooltip/TopListTooltip.js +1 -1
  535. package/charts/xy-chart/components/tooltip/XYChartTooltipContent.js +1 -1
  536. package/charts/xy-chart/components/tooltip/utils/get-cached-separator.d.ts +12 -0
  537. package/charts/xy-chart/components/tooltip/utils/get-cached-separator.js +33 -0
  538. package/charts/xy-chart/components/tooltip/utils/get-color.js +3 -0
  539. package/charts/xy-chart/components/tooltip/utils/get-tooltip-formatter.js +4 -2
  540. package/charts/xy-chart/components/tooltip/utils/tooltip-styles.css +5 -5
  541. package/charts/xy-chart/components/tooltip/utils/tooltip-styles.sty.js +4 -4
  542. package/charts/xy-chart/constants/defaults.d.ts +1 -2
  543. package/charts/xy-chart/constants/defaults.js +2 -2
  544. package/charts/xy-chart/context/XYChartOverlayPerformance.context.d.ts +17 -0
  545. package/charts/xy-chart/context/XYChartTooltip.context.d.ts +2 -1
  546. package/charts/xy-chart/hooks/useBuildHoverGrid.d.ts +12 -0
  547. package/charts/xy-chart/hooks/useBuildHoverGrid.js +56 -0
  548. package/charts/xy-chart/hooks/useBuildOverlayStrategy.d.ts +16 -0
  549. package/charts/xy-chart/hooks/useBuildOverlayStrategy.js +102 -0
  550. package/charts/xy-chart/hooks/useColorRule.js +10 -0
  551. package/charts/xy-chart/hooks/useXYChartDataProvider.js +10 -3
  552. package/charts/xy-chart/layout/XYChartLayout.css +2 -2
  553. package/charts/xy-chart/layout/XYChartLayout.sty.js +2 -2
  554. package/charts/xy-chart/processing-strategies/strategies/area-series.d.ts +10 -2
  555. package/charts/xy-chart/processing-strategies/strategies/area-series.js +241 -4
  556. package/charts/xy-chart/processing-strategies/strategies/bar-series.d.ts +3 -0
  557. package/charts/xy-chart/processing-strategies/strategies/bar-series.js +36 -23
  558. package/charts/xy-chart/processing-strategies/strategies/base-series.d.ts +1 -1
  559. package/charts/xy-chart/processing-strategies/strategies/dot-series.d.ts +1 -0
  560. package/charts/xy-chart/processing-strategies/strategies/dot-series.js +5 -2
  561. package/charts/xy-chart/processing-strategies/strategies/line-series.d.ts +6 -3
  562. package/charts/xy-chart/processing-strategies/strategies/line-series.js +112 -4
  563. package/charts/xy-chart/processing-strategies/strategies/rect-series.d.ts +1 -0
  564. package/charts/xy-chart/processing-strategies/strategies/rect-series.js +4 -1
  565. package/charts/xy-chart/processing-strategies/utils/series-naming/get-series-name.d.ts +1 -1
  566. package/charts/xy-chart/processing-strategies/utils/series-naming/get-series-name.js +25 -7
  567. package/charts/xy-chart/providers/XYChartAnnotationsShownIndicatorsProvider.js +7 -9
  568. package/charts/xy-chart/providers/XYChartAxesTicksProvider.js +41 -24
  569. package/charts/xy-chart/providers/XYChartOverlayPerformanceProvider.js +14 -54
  570. package/charts/xy-chart/providers/XYChartScalesProvider.js +9 -2
  571. package/charts/xy-chart/slots/Annotations/Marker.d.ts +2 -0
  572. package/charts/xy-chart/types/xy-chart-internals.d.ts +1 -0
  573. package/charts/xy-chart/types/xy-chart-props.d.ts +15 -1
  574. package/charts/xy-chart/utils/build-and-download-csv.js +2 -1
  575. package/charts/xy-chart/utils/build-axis-id-to-min-bar-size.d.ts +2 -0
  576. package/charts/xy-chart/utils/build-axis-id-to-min-bar-size.js +46 -0
  577. package/charts/xy-chart/utils/build-sorted-entries.d.ts +40 -18
  578. package/charts/xy-chart/utils/build-sorted-entries.js +63 -10
  579. package/charts/xy-chart/utils/coloring/apply-color-rule-to-bar-series.d.ts +3 -0
  580. package/charts/xy-chart/utils/coloring/apply-color-rule-to-bar-series.js +58 -0
  581. package/charts/xy-chart/utils/coloring/apply-color-rule-to-series-metadata.js +2 -1
  582. package/charts/xy-chart/utils/coloring/bar-datapoint-matches-color-rule.d.ts +4 -0
  583. package/charts/xy-chart/utils/coloring/bar-datapoint-matches-color-rule.js +29 -0
  584. package/charts/xy-chart/utils/coloring/has-series-matching-datapoint.js +3 -1
  585. package/charts/xy-chart/utils/filter-out-of-range-ticks.d.ts +3 -0
  586. package/charts/xy-chart/utils/filter-out-of-range-ticks.js +46 -0
  587. package/charts/xy-chart/utils/generate-scales-by-axis-id.d.ts +1 -1
  588. package/charts/xy-chart/utils/generate-scales-by-axis-id.js +19 -3
  589. package/charts/xy-chart/utils/get-ticks-formatted-by-config.d.ts +5 -1
  590. package/charts/xy-chart/utils/get-ticks-formatted-by-config.js +11 -0
  591. package/charts/xy-chart/utils/iterate-slots.js +2 -1
  592. package/charts/xy-chart/utils/query-get-closest-point.d.ts +6 -2
  593. package/charts/xy-chart/utils/query-get-closest-point.js +59 -0
  594. package/charts/xy-chart/utils/query-hovered-grid.d.ts +31 -0
  595. package/charts/xy-chart/utils/query-hovered-grid.js +191 -0
  596. package/charts/xy-chart/utils/query-shared.d.ts +2 -2
  597. package/charts/xy-chart/utils/query-shared.js +53 -23
  598. package/charts/xy-chart/utils/query-single.d.ts +6 -2
  599. package/charts/xy-chart/utils/query-single.js +17 -2
  600. package/charts/xy-chart-adoption/categorical-bar/transformer-data-to-xy.d.ts +9 -0
  601. package/charts/xy-chart-adoption/categorical-bar/transformer-data-to-xy.js +49 -0
  602. package/charts/xy-chart-adoption/histogram/HistogramToXY.d.ts +1 -2
  603. package/charts/xy-chart-adoption/histogram/HistogramToXY.js +19 -50
  604. package/charts/xy-chart-adoption/histogram/transformer-annotations-to-xy.d.ts +1 -17
  605. package/charts/xy-chart-adoption/histogram/transformer-annotations-to-xy.js +19 -33
  606. package/charts/xy-chart-adoption/histogram/transformer-thresholds-to-xy.d.ts +2 -2
  607. package/charts/xy-chart-adoption/histogram/transformer-thresholds-to-xy.js +13 -61
  608. package/charts/xy-chart-adoption/shared/types/legacy-props.d.ts +11 -0
  609. package/charts/xy-chart-adoption/shared/types/legacy-props.js +15 -0
  610. package/charts/xy-chart-adoption/shared/utils/render-xy-annotations.d.ts +28 -0
  611. package/charts/xy-chart-adoption/shared/utils/render-xy-annotations.js +90 -0
  612. package/charts/xy-chart-adoption/shared/utils/thresholds/reduce-thresholds-to-xy.d.ts +15 -0
  613. package/charts/xy-chart-adoption/shared/utils/thresholds/reduce-thresholds-to-xy.js +58 -0
  614. package/charts/xy-chart-adoption/timeseries/TimeseriesToXY.d.ts +3 -0
  615. package/charts/xy-chart-adoption/timeseries/TimeseriesToXY.js +126 -49
  616. package/charts/xy-chart-adoption/timeseries/constants.d.ts +21 -0
  617. package/charts/xy-chart-adoption/timeseries/constants.js +76 -0
  618. package/charts/xy-chart-adoption/timeseries/hooks/use-timeseries-chart-config.d.ts +9 -0
  619. package/charts/xy-chart-adoption/timeseries/hooks/use-timeseries-chart-config.js +37 -0
  620. package/charts/xy-chart-adoption/timeseries/iterate-slots.d.ts +14 -1
  621. package/charts/xy-chart-adoption/timeseries/iterate-slots.js +46 -1
  622. package/charts/xy-chart-adoption/timeseries/map-series-actions.js +2 -2
  623. package/charts/xy-chart-adoption/timeseries/resolve-value-representation.d.ts +6 -0
  624. package/charts/{timeseries/components/annotations-timeseries/constants.js → xy-chart-adoption/timeseries/resolve-value-representation.js} +7 -5
  625. package/charts/xy-chart-adoption/timeseries/transformer-annotations-to-xy.d.ts +4 -0
  626. package/charts/xy-chart-adoption/timeseries/transformer-annotations-to-xy.js +54 -0
  627. package/charts/xy-chart-adoption/timeseries/transformer-data-to-xy.d.ts +8 -6
  628. package/charts/xy-chart-adoption/timeseries/transformer-data-to-xy.js +11 -11
  629. package/charts/xy-chart-adoption/timeseries/types/internal-types.d.ts +2 -2
  630. package/charts/xy-chart-adoption/timeseries/types/timeseries-config.d.ts +100 -0
  631. package/charts/xy-chart-adoption/timeseries/types/timeseries-config.js +15 -0
  632. package/charts/xy-chart-adoption/timeseries/types/timeseries.d.ts +32 -5
  633. package/charts/xy-chart-adoption/timeseries/types/toolbar.d.ts +10 -0
  634. package/charts/xy-chart-adoption/timeseries/types/toolbar.js +15 -0
  635. package/charts/xy-chart-adoption/timeseries/utils/build-buckets.d.ts +15 -0
  636. package/charts/xy-chart-adoption/timeseries/utils/build-buckets.js +78 -0
  637. package/charts/xy-chart-adoption/timeseries/utils/build-timeseries-imperative-handle.d.ts +11 -2
  638. package/charts/xy-chart-adoption/timeseries/utils/build-timeseries-imperative-handle.js +3 -2
  639. package/charts/xy-chart-adoption/timeseries/utils/chart-configuration.d.ts +39 -0
  640. package/charts/xy-chart-adoption/timeseries/utils/chart-configuration.js +289 -0
  641. package/charts/xy-chart-adoption/timeseries/utils/collect-annotations-slots.d.ts +15 -0
  642. package/charts/xy-chart-adoption/timeseries/utils/collect-annotations-slots.js +76 -0
  643. package/charts/xy-chart-adoption/timeseries/utils/derive-xychart-props-from-config.d.ts +27 -0
  644. package/charts/xy-chart-adoption/timeseries/utils/derive-xychart-props-from-config.js +30 -0
  645. package/charts/xy-chart-adoption/timeseries/utils/iterate-config-slots.d.ts +3 -0
  646. package/charts/xy-chart-adoption/timeseries/utils/iterate-config-slots.js +189 -0
  647. package/charts/xy-chart-adoption/timeseries/utils/map-axis-slots.d.ts +21 -0
  648. package/charts/xy-chart-adoption/timeseries/utils/map-axis-slots.js +61 -0
  649. package/charts/xy-chart-adoption/timeseries/utils/render-series.js +14 -2
  650. package/charts/xy-chart-adoption/timeseries/utils/resolve-gap-policy.d.ts +2 -0
  651. package/charts/xy-chart-adoption/timeseries/utils/resolve-gap-policy.js +34 -0
  652. package/charts/xy-chart-adoption/timeseries/utils/serialize-timeseries-config.d.ts +13 -0
  653. package/charts/xy-chart-adoption/timeseries/utils/serialize-timeseries-config.js +37 -0
  654. package/charts/xy-chart-adoption/timeseries/utils/transformer-thresholds-to-xy.d.ts +4 -0
  655. package/charts/xy-chart-adoption/timeseries/utils/transformer-thresholds-to-xy.js +36 -0
  656. package/content/accordion/Accordion.css +14 -14
  657. package/content/accordion/Accordion.sty.js +8 -8
  658. package/content/accordion/AccordionSection.js +2 -2
  659. package/content/ai-loading-indicator/AiLoadingIndicator.css +12 -12
  660. package/content/ai-loading-indicator/AiLoadingIndicator.sty.js +4 -4
  661. package/content/ai-response/AiResponse.css +5 -5
  662. package/content/ai-response/AiResponse.sty.js +3 -2
  663. package/content/avatar/Avatar.css +13 -13
  664. package/content/avatar/Avatar.sty.js +4 -4
  665. package/content/avatar-group/AvatarGroup.css +3 -3
  666. package/content/avatar-group/AvatarGroup.sty.js +2 -2
  667. package/content/chip/BaseChip.css +40 -40
  668. package/content/chip/BaseChip.sty.js +5 -5
  669. package/content/chip/ChipContent.css +11 -11
  670. package/content/chip/ChipContent.sty.js +2 -2
  671. package/content/chip/ChipDeleteButton.css +19 -19
  672. package/content/chip/ChipDeleteButton.sty.js +4 -4
  673. package/content/chip/ChipKey.css +6 -6
  674. package/content/chip/ChipKey.sty.js +1 -1
  675. package/content/chip/GroupedChip.css +3 -3
  676. package/content/chip/GroupedChip.sty.js +3 -3
  677. package/content/chip-group/ChipGroup.css +4 -4
  678. package/content/chip-group/ChipGroup.d.ts +1 -1
  679. package/content/chip-group/ChipGroup.js +33 -49
  680. package/content/chip-group/ChipGroup.sty.js +1 -1
  681. package/content/chip-group/Control.css +4 -4
  682. package/content/chip-group/Control.sty.js +1 -1
  683. package/content/chip-group/chip-group-utils.d.ts +33 -0
  684. package/content/chip-group/chip-group-utils.js +52 -0
  685. package/content/chip-group/state/chip-group-state-reducer.d.ts +1 -1
  686. package/content/code-snippet/CodeHighlight.css +25 -26
  687. package/content/code-snippet/CodeHighlight.sty.d.ts +7 -2
  688. package/content/code-snippet/CodeHighlight.sty.js +10 -6
  689. package/content/code-snippet/CodeSnippet.css +31 -5
  690. package/content/code-snippet/CodeSnippet.d.ts +23 -8
  691. package/content/code-snippet/CodeSnippet.js +6 -2
  692. package/content/code-snippet/CodeSnippet.sty.d.ts +16 -0
  693. package/content/code-snippet/CodeSnippet.sty.js +8 -3
  694. package/content/empty-state/EmptyState.css +28 -28
  695. package/content/empty-state/EmptyState.sty.js +7 -7
  696. package/content/empty-state/EmptyStateWrapper.js +2 -2
  697. package/content/empty-state/empty-state-utils.js +2 -9
  698. package/content/empty-state/slot-components/Footer.css +1 -1
  699. package/content/empty-state/slot-components/Footer.sty.js +1 -1
  700. package/content/empty-state/slot-components/Visual.css +3 -3
  701. package/content/empty-state/slot-components/Visual.sty.js +1 -1
  702. package/content/expandable-text/ExpandableText.css +7 -7
  703. package/content/expandable-text/ExpandableText.sty.js +2 -2
  704. package/content/feature-highlight/FeatureHighlight.css +12 -12
  705. package/content/feature-highlight/FeatureHighlight.js +9 -5
  706. package/content/feature-highlight/FeatureHighlight.sty.js +3 -3
  707. package/content/health-indicator/styles.css +23 -23
  708. package/content/health-indicator/styles.sty.js +1 -1
  709. package/content/index.d.ts +1 -1
  710. package/content/information-overlay/InformationOverlay.css +25 -25
  711. package/content/information-overlay/InformationOverlay.sty.js +5 -5
  712. package/content/keyboard-shortcut/KeyboardShortcut.css +14 -14
  713. package/content/keyboard-shortcut/KeyboardShortcut.sty.js +2 -2
  714. package/content/markdown/Markdown.css +3 -3
  715. package/content/markdown/Markdown.sty.js +1 -1
  716. package/content/markdown/transformers/typography-mapping.css +9 -9
  717. package/content/markdown/transformers/typography-mapping.sty.js +6 -6
  718. package/content/microguide/Microguide.css +11 -11
  719. package/content/microguide/Microguide.sty.js +7 -7
  720. package/content/progress/ProgressBar.css +71 -71
  721. package/content/progress/ProgressBar.sty.js +5 -5
  722. package/content/progress/ProgressBarIcon.css +2 -2
  723. package/content/progress/ProgressBarIcon.sty.js +1 -1
  724. package/content/progress/ProgressBarLabel.css +3 -3
  725. package/content/progress/ProgressBarLabel.sty.js +1 -1
  726. package/content/progress/ProgressBarValue.css +5 -5
  727. package/content/progress/ProgressBarValue.sty.js +1 -1
  728. package/content/progress/ProgressCircle.css +40 -40
  729. package/content/progress/ProgressCircle.sty.js +5 -5
  730. package/content/release-phase-indicator/ReleasePhaseIndicator.d.ts +2 -2
  731. package/content/release-phase-indicator/ReleasePhaseIndicator.js +4 -2
  732. package/content/release-phase-indicator/messages.d.ts +5 -0
  733. package/content/release-phase-indicator/messages.js +5 -0
  734. package/content/shared-components/Visual.css +3 -3
  735. package/content/shared-components/Visual.sty.js +1 -1
  736. package/content/skeleton/Skeleton.css +7 -7
  737. package/content/skeleton/Skeleton.sty.js +5 -5
  738. package/content/terminology-overlay/TerminologyOverlay.css +4 -4
  739. package/content/terminology-overlay/TerminologyOverlay.sty.js +1 -1
  740. package/core/components/app-root/AppRoot.css +12 -2
  741. package/core/components/app-root/AppRoot.js +3 -2
  742. package/core/components/app-root/AppRoot.sty.js +1 -1
  743. package/core/components/app-root/visual-refresh-overrides.d.ts +6 -0
  744. package/core/components/app-root/visual-refresh-overrides.js +6 -0
  745. package/core/components/error-fallback/ErrorFallback.d.ts +8 -0
  746. package/{filters/filter-field → core/components}/error-fallback/messages.d.ts +0 -1
  747. package/{filters/filter-field → core/components}/error-fallback/messages.js +4 -4
  748. package/core/components/visually-hidden/VisuallyHidden.css +1 -1
  749. package/core/components/visually-hidden/VisuallyHidden.sty.js +1 -1
  750. package/core/dql/dql-common.js +6 -2
  751. package/core/hooks/useResizeObserver.d.ts +26 -0
  752. package/core/hooks/useResizeObserver.js +136 -0
  753. package/core/hooks/useVisualRefreshEnabled.d.ts +4 -0
  754. package/core/hooks/useVisualRefreshEnabled.js +32 -0
  755. package/core/index.d.ts +3 -0
  756. package/core/index.js +6 -0
  757. package/core/sdk/app-state/AppStateContext.d.ts +26 -0
  758. package/{filters/filter-field/contexts/SavedAndRecentQueryClientContext.js → core/sdk/app-state/AppStateContext.js} +15 -7
  759. package/core/sdk/app-state/AppStateProvider.d.ts +24 -0
  760. package/core/sdk/app-state/AppStateProvider.js +97 -0
  761. package/core/sdk/app-state/app-state-store.d.ts +14 -0
  762. package/core/sdk/app-state/app-state-store.js +30 -0
  763. package/core/sdk/app-state/useAppState.d.ts +15 -0
  764. package/core/sdk/app-state/useAppState.js +40 -0
  765. package/core/sdk/app-state/useAppStateInternal.d.ts +28 -0
  766. package/core/sdk/app-state/useAppStateInternal.js +143 -0
  767. package/core/sdk/app-state/useAppStateValue.d.ts +28 -0
  768. package/core/sdk/app-state/useAppStateValue.js +32 -0
  769. package/core/sdk/sdk-logger.js +2 -2
  770. package/core/styles/defaultChartValues.css +1 -1
  771. package/core/styles/defaultChartValues.sty.js +1 -1
  772. package/core/styles/focusRing.css +66 -66
  773. package/core/styles/focusRing.sty.js +2 -2
  774. package/core/styles/focusRingStatic.css +34 -34
  775. package/core/styles/focusRingStatic.sty.js +1 -1
  776. package/core/styles/virtualFocus.css +2 -2
  777. package/core/styles/virtualFocus.sty.js +1 -1
  778. package/core/time/timeframeStore/actions/dateTimePicker.js +5 -4
  779. package/core/time/timeframeStore/actions/timeframeSelector.js +5 -2
  780. package/core/time/validation.d.ts +28 -3
  781. package/core/time/validation.js +49 -4
  782. package/core/types/form-control-props.d.ts +6 -0
  783. package/core/types/form-control-state.d.ts +10 -3
  784. package/core/utils/colorUtils.css +60 -60
  785. package/core/utils/colorUtils.sty.js +2 -2
  786. package/core/utils/get-ticks.d.ts +29 -0
  787. package/core/utils/get-ticks.js +30 -0
  788. package/editors/base-code-editor/BaseCodeEditor.css +152 -143
  789. package/editors/base-code-editor/BaseCodeEditor.d.ts +51 -21
  790. package/editors/base-code-editor/BaseCodeEditor.js +182 -21
  791. package/editors/base-code-editor/BaseCodeEditor.sty.js +2 -2
  792. package/editors/base-code-editor/configuration/configure-format-keymap.d.ts +12 -0
  793. package/editors/base-code-editor/configuration/configure-format-keymap.js +40 -0
  794. package/editors/base-code-editor/configuration/configure-placeholder.d.ts +6 -1
  795. package/editors/base-code-editor/configuration/configure-placeholder.js +31 -2
  796. package/editors/base-code-editor/configuration/getDefaultConfigurations.js +101 -6
  797. package/editors/base-code-editor/configuration/language-extensions.d.ts +1 -1
  798. package/editors/base-code-editor/utils/compute-minimal-change.d.ts +9 -0
  799. package/editors/base-code-editor/utils/compute-minimal-change.js +35 -0
  800. package/editors/base-code-editor/utils/key-maps.js +2 -0
  801. package/editors/base-code-editor/utils/run-foldings.d.ts +6 -3
  802. package/editors/base-code-editor/utils/run-foldings.js +37 -15
  803. package/editors/code-editor/CodeEditor.d.ts +7 -69
  804. package/editors/code-editor/CodeEditor.js +24 -1
  805. package/editors/dql-editor/DQLEditor.d.ts +7 -69
  806. package/editors/dql-editor/DQLEditor.js +63 -14
  807. package/editors/dql-editor/actions-menu/ActionsMenu.css +27 -13
  808. package/editors/dql-editor/actions-menu/ActionsMenu.d.ts +7 -3
  809. package/editors/dql-editor/actions-menu/ActionsMenu.js +18 -1
  810. package/editors/dql-editor/actions-menu/ActionsMenu.sty.d.ts +17 -4
  811. package/editors/dql-editor/actions-menu/ActionsMenu.sty.js +8 -5
  812. package/editors/dql-editor/actions-menu/actions-menu-messages.d.ts +5 -0
  813. package/editors/dql-editor/actions-menu/actions-menu-messages.js +5 -0
  814. package/editors/dql-editor/dql/SuggestionPart.css +1 -1
  815. package/editors/dql-editor/dql/SuggestionPart.sty.js +1 -1
  816. package/editors/dql-editor/dql/SuggestionsInfoSection.css +7 -7
  817. package/editors/dql-editor/dql/SuggestionsInfoSection.js +10 -1
  818. package/editors/dql-editor/dql/SuggestionsInfoSection.sty.js +3 -3
  819. package/editors/dql-editor/dql/dql-fold-service.d.ts +9 -0
  820. package/editors/dql-editor/dql/dql-fold-service.js +181 -0
  821. package/editors/dql-editor/dql/dql-language.js +4 -1
  822. package/editors/dql-editor/dql/get-suggestions.d.ts +5 -2
  823. package/editors/dql-editor/dql/get-suggestions.js +1 -2
  824. package/editors/dql-editor/dql/open-autocomplete.js +24 -3
  825. package/editors/dql-editor/dql/suggestion-autocompletions.d.ts +8 -1
  826. package/editors/dql-editor/dql/suggestion-autocompletions.js +33 -16
  827. package/editors/index.d.ts +1 -1
  828. package/esm/buttons/button/Button.css +15 -15
  829. package/esm/buttons/button/Button.js +5 -4
  830. package/esm/buttons/button/Button.js.map +2 -2
  831. package/esm/buttons/button/Button.sty.js +4 -4
  832. package/esm/buttons/button/Button.sty.js.map +1 -1
  833. package/esm/buttons/intent-button/IntentButton.css +1 -1
  834. package/esm/buttons/intent-button/IntentButton.sty.js +1 -1
  835. package/esm/buttons/intent-button/IntentButton.sty.js.map +1 -1
  836. package/esm/buttons/intent-button/IntentButtonWithResponse.js +2 -2
  837. package/esm/buttons/intent-button/IntentButtonWithResponse.js.map +2 -2
  838. package/esm/buttons/notify-button/NotifyButton.css +2 -2
  839. package/esm/buttons/notify-button/NotifyButton.sty.js +2 -2
  840. package/esm/buttons/notify-button/NotifyButton.sty.js.map +1 -1
  841. package/esm/buttons/run-query-button/RunQueryButton.js +7 -14
  842. package/esm/buttons/run-query-button/RunQueryButton.js.map +2 -2
  843. package/esm/charts/categorical-bar/components/interactions/hooks/useSeriesActionClickHandler.js +1 -6
  844. package/esm/charts/categorical-bar/components/interactions/hooks/useSeriesActionClickHandler.js.map +2 -2
  845. package/esm/charts/categorical-bar/components/interactions/overlays/CategoricalBarChartInspectOverlay.css +2 -2
  846. package/esm/charts/categorical-bar/components/interactions/overlays/CategoricalBarChartInspectOverlay.sty.js +2 -2
  847. package/esm/charts/categorical-bar/components/interactions/overlays/CategoricalBarChartInspectOverlay.sty.js.map +1 -1
  848. package/esm/charts/categorical-bar/components/interactions/tooltip/CategoricalBarChartTooltip.js +67 -38
  849. package/esm/charts/categorical-bar/components/interactions/tooltip/CategoricalBarChartTooltip.js.map +2 -2
  850. package/esm/charts/categorical-bar/hooks/store/state-setters.js +3 -1
  851. package/esm/charts/categorical-bar/hooks/store/state-setters.js.map +2 -2
  852. package/esm/charts/categorical-bar/layout/CategoricalGridLayout.js +1 -2
  853. package/esm/charts/categorical-bar/layout/CategoricalGridLayout.js.map +2 -2
  854. package/esm/charts/core/components/annotations/AnnotationsAtom.css +1 -1
  855. package/esm/charts/core/components/annotations/AnnotationsAtom.js +4 -2
  856. package/esm/charts/core/components/annotations/AnnotationsAtom.js.map +2 -2
  857. package/esm/charts/core/components/annotations/AnnotationsAtom.sty.js +1 -1
  858. package/esm/charts/core/components/annotations/AnnotationsAtom.sty.js.map +1 -1
  859. package/esm/charts/core/components/annotations/components/AnnotationsRenderer.js +23 -6
  860. package/esm/charts/core/components/annotations/components/AnnotationsRenderer.js.map +2 -2
  861. package/esm/charts/core/components/annotations/components/canvas/AnnotationsCanvasLayout.css +1 -1
  862. package/esm/charts/core/components/annotations/components/canvas/AnnotationsCanvasLayout.sty.js +1 -1
  863. package/esm/charts/core/components/annotations/components/canvas/AnnotationsCanvasLayout.sty.js.map +1 -1
  864. package/esm/charts/core/components/annotations/components/canvas/displays/AnnotationsChartDisplay.js +18 -12
  865. package/esm/charts/core/components/annotations/components/canvas/displays/AnnotationsChartDisplay.js.map +2 -2
  866. package/esm/charts/core/components/annotations/components/canvas/displays/AnnotationsMarkersDisplay.js +3 -1
  867. package/esm/charts/core/components/annotations/components/canvas/displays/AnnotationsMarkersDisplay.js.map +2 -2
  868. package/esm/charts/core/components/annotations/components/canvas/displays/AnnotationsTrackDisplay.js +9 -5
  869. package/esm/charts/core/components/annotations/components/canvas/displays/AnnotationsTrackDisplay.js.map +2 -2
  870. package/esm/charts/core/components/annotations/components/canvas/renderers/RangeMarkerRenderer.js +6 -3
  871. package/esm/charts/core/components/annotations/components/canvas/renderers/RangeMarkerRenderer.js.map +2 -2
  872. package/esm/charts/core/components/annotations/components/canvas/renderers/value-marker-renderer/ValueMarkerRenderer.js +11 -6
  873. package/esm/charts/core/components/annotations/components/canvas/renderers/value-marker-renderer/ValueMarkerRenderer.js.map +2 -2
  874. package/esm/charts/core/components/annotations/components/canvas/utils/calculate-marker-width-and-content.js +1 -2
  875. package/esm/charts/core/components/annotations/components/canvas/utils/calculate-marker-width-and-content.js.map +2 -2
  876. package/esm/charts/core/components/annotations/components/canvas/utils/render-text-in-canvas.js +3 -7
  877. package/esm/charts/core/components/annotations/components/canvas/utils/render-text-in-canvas.js.map +2 -2
  878. package/esm/charts/core/components/annotations/components/displays/AnnotationsNumericalDisplay.js.map +2 -2
  879. package/esm/charts/core/components/annotations/components/displays/AnnotationsTimeDisplay.js.map +2 -2
  880. package/esm/charts/core/components/annotations/components/overlays/AnnotationsOverlays.css +1 -1
  881. package/esm/charts/core/components/annotations/components/overlays/AnnotationsOverlays.js +4 -2
  882. package/esm/charts/core/components/annotations/components/overlays/AnnotationsOverlays.js.map +2 -2
  883. package/esm/charts/core/components/annotations/components/overlays/AnnotationsOverlays.sty.js +1 -1
  884. package/esm/charts/core/components/annotations/components/overlays/AnnotationsOverlays.sty.js.map +1 -1
  885. package/esm/charts/core/components/annotations/components/overlays/AnnotationsScrollWrapper.css +1 -1
  886. package/esm/charts/core/components/annotations/components/overlays/AnnotationsScrollWrapper.sty.js +1 -1
  887. package/esm/charts/core/components/annotations/components/overlays/AnnotationsScrollWrapper.sty.js.map +1 -1
  888. package/esm/charts/core/components/annotations/components/tooltip/AnnotationsDefaultTooltipContent.js +165 -74
  889. package/esm/charts/core/components/annotations/components/tooltip/AnnotationsDefaultTooltipContent.js.map +2 -2
  890. package/esm/charts/core/components/annotations/components/tooltip/AnnotationsOverlayTooltip.js +1 -1
  891. package/esm/charts/core/components/annotations/components/tooltip/AnnotationsOverlayTooltip.js.map +2 -2
  892. package/esm/charts/core/components/annotations/constants.js +0 -2
  893. package/esm/charts/core/components/annotations/constants.js.map +2 -2
  894. package/esm/charts/core/components/annotations/contexts/AnnotationsConfig.context.js +2 -1
  895. package/esm/charts/core/components/annotations/contexts/AnnotationsConfig.context.js.map +2 -2
  896. package/esm/charts/core/components/annotations/hooks/useAnnotationsHandlers.js +7 -2
  897. package/esm/charts/core/components/annotations/hooks/useAnnotationsHandlers.js.map +2 -2
  898. package/esm/charts/core/components/annotations/hooks/useGroupedAnnotationsData.js +10 -3
  899. package/esm/charts/core/components/annotations/hooks/useGroupedAnnotationsData.js.map +2 -2
  900. package/esm/charts/core/components/annotations/hooks/useMarkerEventHandlers.js +12 -5
  901. package/esm/charts/core/components/annotations/hooks/useMarkerEventHandlers.js.map +2 -2
  902. package/esm/charts/core/components/annotations/hooks/useOverlayEvents.js +39 -21
  903. package/esm/charts/core/components/annotations/hooks/useOverlayEvents.js.map +2 -2
  904. package/esm/charts/core/components/annotations/utils/aggregate-markers-coords.js +25 -18
  905. package/esm/charts/core/components/annotations/utils/aggregate-markers-coords.js.map +2 -2
  906. package/esm/charts/core/components/annotations/utils/calculate-marker-dimension.js.map +2 -2
  907. package/esm/charts/core/components/annotations/utils/define-marker-color.js +6 -3
  908. package/esm/charts/core/components/annotations/utils/define-marker-color.js.map +2 -2
  909. package/esm/charts/core/components/annotations/utils/get-marker-pixel-extent.js +72 -0
  910. package/esm/charts/core/components/annotations/utils/get-marker-pixel-extent.js.map +7 -0
  911. package/esm/charts/core/components/annotations/utils/process-annotation-tracks-data.js +92 -37
  912. package/esm/charts/core/components/annotations/utils/process-annotation-tracks-data.js.map +2 -2
  913. package/esm/charts/core/components/annotations/utils/resolve-value-marker-hit-area.js +14 -0
  914. package/esm/charts/core/components/annotations/utils/resolve-value-marker-hit-area.js.map +7 -0
  915. package/esm/charts/core/components/axes/Axis.css +1 -1
  916. package/esm/charts/core/components/axes/Axis.js +2 -6
  917. package/esm/charts/core/components/axes/Axis.js.map +2 -2
  918. package/esm/charts/core/components/axes/Axis.sty.js +1 -1
  919. package/esm/charts/core/components/axes/Axis.sty.js.map +1 -1
  920. package/esm/charts/core/components/axes/AxisPrimitive.js +203 -0
  921. package/esm/charts/core/components/axes/AxisPrimitive.js.map +7 -0
  922. package/esm/charts/core/components/axes/components/CategoryBottomAxis.js +2 -2
  923. package/esm/charts/core/components/axes/components/CategoryBottomAxis.js.map +2 -2
  924. package/esm/charts/core/components/axes/components/CategoryLeftAxis.js +1 -1
  925. package/esm/charts/core/components/axes/components/CategoryLeftAxis.js.map +2 -2
  926. package/esm/charts/core/components/axes/components/PanningControls/PanningControls.css +16 -16
  927. package/esm/charts/core/components/axes/components/PanningControls/PanningControls.sty.js +2 -2
  928. package/esm/charts/core/components/axes/components/PanningControls/PanningControls.sty.js.map +1 -1
  929. package/esm/charts/core/components/axes/components/TickLabel.js.map +2 -2
  930. package/esm/charts/core/components/axes/components/TimeTableHeaderAxis.js +1 -1
  931. package/esm/charts/core/components/axes/components/TimeTableHeaderAxis.js.map +2 -2
  932. package/esm/charts/core/components/axes/components/ValueTableHeaderAxis.js +1 -1
  933. package/esm/charts/core/components/axes/components/ValueTableHeaderAxis.js.map +2 -2
  934. package/esm/charts/core/components/axes/constants.js +0 -2
  935. package/esm/charts/core/components/axes/constants.js.map +2 -2
  936. package/esm/charts/core/components/axes/types.js.map +2 -2
  937. package/esm/charts/core/components/axes/utils/get-tick-label-props.js +45 -4
  938. package/esm/charts/core/components/axes/utils/get-tick-label-props.js.map +2 -2
  939. package/esm/charts/core/components/chart-grid/ChartGrid.css +3 -3
  940. package/esm/charts/core/components/chart-grid/ChartGrid.sty.js +3 -3
  941. package/esm/charts/core/components/chart-grid/ChartGrid.sty.js.map +1 -1
  942. package/esm/charts/core/components/chart-grid/ChartGridArea.js +1 -1
  943. package/esm/charts/core/components/chart-grid/ChartGridArea.js.map +2 -2
  944. package/esm/charts/core/components/chart-grid/constants.js +15 -0
  945. package/esm/charts/core/components/chart-grid/constants.js.map +7 -0
  946. package/esm/charts/core/components/chart-grid/providers/GridPlotSizeProvider.js +1 -1
  947. package/esm/charts/core/components/chart-grid/providers/GridPlotSizeProvider.js.map +2 -2
  948. package/esm/charts/core/components/chart-layout/components/styles.css +15 -15
  949. package/esm/charts/core/components/chart-layout/components/styles.sty.js +4 -4
  950. package/esm/charts/core/components/chart-layout/components/styles.sty.js.map +1 -1
  951. package/esm/charts/core/components/chart-states/ChartState.css +4 -4
  952. package/esm/charts/core/components/chart-states/ChartState.sty.js +4 -4
  953. package/esm/charts/core/components/chart-states/ChartState.sty.js.map +1 -1
  954. package/esm/charts/core/components/crosshair/HorizontalCrosshair.js +6 -4
  955. package/esm/charts/core/components/crosshair/HorizontalCrosshair.js.map +2 -2
  956. package/esm/charts/core/components/crosshair/VerticalCrosshair.js +7 -5
  957. package/esm/charts/core/components/crosshair/VerticalCrosshair.js.map +2 -2
  958. package/esm/charts/core/components/crosshair/components/Magnifier.css +7 -7
  959. package/esm/charts/core/components/crosshair/components/Magnifier.sty.js +7 -7
  960. package/esm/charts/core/components/crosshair/components/Magnifier.sty.js.map +1 -1
  961. package/esm/charts/core/components/grid/Grid.js +1 -4
  962. package/esm/charts/core/components/grid/Grid.js.map +2 -2
  963. package/esm/charts/core/components/grid/GridColumns.js +9 -7
  964. package/esm/charts/core/components/grid/GridColumns.js.map +2 -2
  965. package/esm/charts/core/components/grid/GridLine.js +5 -4
  966. package/esm/charts/core/components/grid/GridLine.js.map +2 -2
  967. package/esm/charts/core/components/grid/GridLines.js.map +2 -2
  968. package/esm/charts/core/components/grid/GridRows.js +9 -7
  969. package/esm/charts/core/components/grid/GridRows.js.map +2 -2
  970. package/esm/charts/core/components/grid/utils/compute-grid-lines.js +17 -0
  971. package/esm/charts/core/components/grid/utils/compute-grid-lines.js.map +7 -0
  972. package/esm/charts/core/components/grid/utils/should-highlight-zero-line.js.map +1 -1
  973. package/esm/charts/core/components/interactions-overlay/InteractionsOverlay.css +5 -5
  974. package/esm/charts/core/components/interactions-overlay/InteractionsOverlay.sty.js +2 -2
  975. package/esm/charts/core/components/interactions-overlay/InteractionsOverlay.sty.js.map +1 -1
  976. package/esm/charts/core/components/legend/categorical/ChartLegend.css +1 -1
  977. package/esm/charts/core/components/legend/categorical/ChartLegend.sty.js +1 -1
  978. package/esm/charts/core/components/legend/categorical/ChartLegend.sty.js.map +1 -1
  979. package/esm/charts/core/components/legend/categorical/components/ChartLegendIcon/ChartLegendIcon.css +3 -3
  980. package/esm/charts/core/components/legend/categorical/components/ChartLegendIcon/ChartLegendIcon.sty.js +3 -3
  981. package/esm/charts/core/components/legend/categorical/components/ChartLegendIcon/ChartLegendIcon.sty.js.map +1 -1
  982. package/esm/charts/core/components/legend/categorical/components/ChartLegendItem/ChartLegendItem.css +17 -17
  983. package/esm/charts/core/components/legend/categorical/components/ChartLegendItem/ChartLegendItem.sty.js +6 -6
  984. package/esm/charts/core/components/legend/categorical/components/ChartLegendItem/ChartLegendItem.sty.js.map +1 -1
  985. package/esm/charts/core/components/legend/categorical/components/ChartLegendSeriesActions/ChartLegendSeriesActions.css +3 -3
  986. package/esm/charts/core/components/legend/categorical/components/ChartLegendSeriesActions/ChartLegendSeriesActions.sty.js +1 -1
  987. package/esm/charts/core/components/legend/categorical/components/ChartLegendSeriesActions/ChartLegendSeriesActions.sty.js.map +1 -1
  988. package/esm/charts/core/components/legend/categorical/components/ChartVirtualizedLegendGrid.css +8 -8
  989. package/esm/charts/core/components/legend/categorical/components/ChartVirtualizedLegendGrid.sty.js +4 -4
  990. package/esm/charts/core/components/legend/categorical/components/ChartVirtualizedLegendGrid.sty.js.map +1 -1
  991. package/esm/charts/core/components/legend/range/RangeLegend.css +3 -3
  992. package/esm/charts/core/components/legend/range/RangeLegend.sty.js +1 -1
  993. package/esm/charts/core/components/legend/range/RangeLegend.sty.js.map +1 -1
  994. package/esm/charts/core/components/legend/range/components/RangeLegendBoundaryLabel/RangeLegendBoundaryLabel.css +2 -2
  995. package/esm/charts/core/components/legend/range/components/RangeLegendBoundaryLabel/RangeLegendBoundaryLabel.sty.js +1 -1
  996. package/esm/charts/core/components/legend/range/components/RangeLegendBoundaryLabel/RangeLegendBoundaryLabel.sty.js.map +1 -1
  997. package/esm/charts/core/components/legend/range/components/RangeLegendItemLabel/RangeLegendItemLabel.css +1 -1
  998. package/esm/charts/core/components/legend/range/components/RangeLegendItemLabel/RangeLegendItemLabel.sty.js +1 -1
  999. package/esm/charts/core/components/legend/range/components/RangeLegendItemLabel/RangeLegendItemLabel.sty.js.map +1 -1
  1000. package/esm/charts/core/components/legend/range/components/RangeLegendItemMarker/RangeLegendItemMarker.css +3 -3
  1001. package/esm/charts/core/components/legend/range/components/RangeLegendItemMarker/RangeLegendItemMarker.sty.js +1 -1
  1002. package/esm/charts/core/components/legend/range/components/RangeLegendItemMarker/RangeLegendItemMarker.sty.js.map +1 -1
  1003. package/esm/charts/core/components/legend/range/components/RangeLegendMarkers/RangeLegendMarkers.css +3 -3
  1004. package/esm/charts/core/components/legend/range/components/RangeLegendMarkers/RangeLegendMarkers.sty.js +1 -1
  1005. package/esm/charts/core/components/legend/range/components/RangeLegendMarkers/RangeLegendMarkers.sty.js.map +1 -1
  1006. package/esm/charts/core/components/legend/range/components/RangeLegendSegments/RangeLegendSegments.css +5 -5
  1007. package/esm/charts/core/components/legend/range/components/RangeLegendSegments/RangeLegendSegments.sty.js +1 -1
  1008. package/esm/charts/core/components/legend/range/components/RangeLegendSegments/RangeLegendSegments.sty.js.map +1 -1
  1009. package/esm/charts/core/components/loader-overlay/LoaderOverlay.css +2 -2
  1010. package/esm/charts/core/components/loader-overlay/LoaderOverlay.sty.js +2 -2
  1011. package/esm/charts/core/components/loader-overlay/LoaderOverlay.sty.js.map +1 -1
  1012. package/esm/charts/core/components/overlay-tooltip/components/DynamicTooltip.js +7 -3
  1013. package/esm/charts/core/components/overlay-tooltip/components/DynamicTooltip.js.map +2 -2
  1014. package/esm/charts/core/components/overlay-tooltip/components/DynamicTooltipRenderer.js +3 -3
  1015. package/esm/charts/core/components/overlay-tooltip/components/DynamicTooltipRenderer.js.map +2 -2
  1016. package/esm/charts/core/components/overlay-tooltip/components/TooltipPortal.js +7 -1
  1017. package/esm/charts/core/components/overlay-tooltip/components/TooltipPortal.js.map +2 -2
  1018. package/esm/charts/core/components/overlay-tooltip/components/global-actions/actions.css +4 -4
  1019. package/esm/charts/core/components/overlay-tooltip/components/global-actions/actions.sty.js +2 -2
  1020. package/esm/charts/core/components/overlay-tooltip/components/global-actions/actions.sty.js.map +1 -1
  1021. package/esm/charts/core/components/overlay-tooltip/components/header/Header.css +6 -6
  1022. package/esm/charts/core/components/overlay-tooltip/components/header/Header.sty.js +6 -6
  1023. package/esm/charts/core/components/overlay-tooltip/components/header/Header.sty.js.map +1 -1
  1024. package/esm/charts/core/components/overlay-tooltip/components/series/Series.js +2 -2
  1025. package/esm/charts/core/components/overlay-tooltip/components/series/Series.js.map +2 -2
  1026. package/esm/charts/core/components/overlay-tooltip/components/series/seriesSymbol.css +2 -2
  1027. package/esm/charts/core/components/overlay-tooltip/components/series/seriesSymbol.sty.js +2 -2
  1028. package/esm/charts/core/components/overlay-tooltip/components/series/seriesSymbol.sty.js.map +1 -1
  1029. package/esm/charts/core/components/overlay-tooltip/defaults.js +1 -1
  1030. package/esm/charts/core/components/overlay-tooltip/defaults.js.map +2 -2
  1031. package/esm/charts/core/components/overlay-tooltip/tooltip.css +52 -52
  1032. package/esm/charts/core/components/overlay-tooltip/tooltip.sty.js +39 -39
  1033. package/esm/charts/core/components/overlay-tooltip/tooltip.sty.js.map +1 -1
  1034. package/esm/charts/core/components/overlay-tooltip/types.js.map +1 -1
  1035. package/esm/charts/core/components/overlay-tooltip/useTooltipActions.js +8 -0
  1036. package/esm/charts/core/components/overlay-tooltip/useTooltipActions.js.map +2 -2
  1037. package/esm/charts/core/components/overlay-tooltip/utils/is-scroll-ignored.js +10 -0
  1038. package/esm/charts/core/components/overlay-tooltip/utils/is-scroll-ignored.js.map +7 -0
  1039. package/esm/charts/core/components/overlays/ChartOverlaysBorder.css +8 -5
  1040. package/esm/charts/core/components/overlays/ChartOverlaysBorder.js +12 -3
  1041. package/esm/charts/core/components/overlays/ChartOverlaysBorder.js.map +2 -2
  1042. package/esm/charts/core/components/overlays/ChartOverlaysBorder.sty.js +7 -5
  1043. package/esm/charts/core/components/overlays/ChartOverlaysBorder.sty.js.map +2 -2
  1044. package/esm/charts/core/components/selection-area/SelectionArea.css +9 -9
  1045. package/esm/charts/core/components/selection-area/SelectionArea.sty.js +4 -4
  1046. package/esm/charts/core/components/selection-area/SelectionArea.sty.js.map +1 -1
  1047. package/esm/charts/core/components/series-action/ChartActionsMenuAsync.js +3 -1
  1048. package/esm/charts/core/components/series-action/ChartActionsMenuAsync.js.map +2 -2
  1049. package/esm/charts/core/components/shape/BubbleShape/BubbleShape.css +5 -5
  1050. package/esm/charts/core/components/shape/BubbleShape/BubbleShape.sty.js +3 -3
  1051. package/esm/charts/core/components/shape/BubbleShape/BubbleShape.sty.js.map +1 -1
  1052. package/esm/charts/core/components/shape/EmojiShape/EmojiShape.css +3 -3
  1053. package/esm/charts/core/components/shape/EmojiShape/EmojiShape.sty.js +1 -1
  1054. package/esm/charts/core/components/shape/EmojiShape/EmojiShape.sty.js.map +1 -1
  1055. package/esm/charts/core/components/shape/IconShape/IconShape.css +3 -3
  1056. package/esm/charts/core/components/shape/IconShape/IconShape.sty.js +1 -1
  1057. package/esm/charts/core/components/shape/IconShape/IconShape.sty.js.map +1 -1
  1058. package/esm/charts/core/components/shape/styles/DataPointShape.css +8 -8
  1059. package/esm/charts/core/components/shape/styles/DataPointShape.sty.js +4 -4
  1060. package/esm/charts/core/components/shape/styles/DataPointShape.sty.js.map +1 -1
  1061. package/esm/charts/core/components/shared-chart-interactions/SharedChartInteractions.css +1 -1
  1062. package/esm/charts/core/components/shared-chart-interactions/SharedChartInteractions.sty.js +1 -1
  1063. package/esm/charts/core/components/shared-chart-interactions/SharedChartInteractions.sty.js.map +1 -1
  1064. package/esm/charts/core/components/single-value-renderer/SingleValueRenderer.css +5 -5
  1065. package/esm/charts/core/components/single-value-renderer/SingleValueRenderer.sty.js +5 -5
  1066. package/esm/charts/core/components/single-value-renderer/SingleValueRenderer.sty.js.map +1 -1
  1067. package/esm/charts/core/components/single-value-renderer/components/ContentGrid.css +1 -1
  1068. package/esm/charts/core/components/single-value-renderer/components/ContentGrid.sty.js +1 -1
  1069. package/esm/charts/core/components/single-value-renderer/components/ContentGrid.sty.js.map +1 -1
  1070. package/esm/charts/core/components/single-value-renderer/components/Icon.css +3 -3
  1071. package/esm/charts/core/components/single-value-renderer/components/Icon.sty.js +2 -2
  1072. package/esm/charts/core/components/single-value-renderer/components/Icon.sty.js.map +1 -1
  1073. package/esm/charts/core/components/single-value-renderer/components/Label.css +1 -1
  1074. package/esm/charts/core/components/single-value-renderer/components/Label.sty.js +1 -1
  1075. package/esm/charts/core/components/single-value-renderer/components/Label.sty.js.map +1 -1
  1076. package/esm/charts/core/components/single-value-renderer/components/SingleValueToolbar.css +1 -1
  1077. package/esm/charts/core/components/single-value-renderer/components/SingleValueToolbar.js +0 -1
  1078. package/esm/charts/core/components/single-value-renderer/components/SingleValueToolbar.js.map +2 -2
  1079. package/esm/charts/core/components/single-value-renderer/components/SingleValueToolbar.sty.js +1 -1
  1080. package/esm/charts/core/components/single-value-renderer/components/SingleValueToolbar.sty.js.map +1 -1
  1081. package/esm/charts/core/components/single-value-renderer/components/Value.css +5 -5
  1082. package/esm/charts/core/components/single-value-renderer/components/Value.sty.js +3 -3
  1083. package/esm/charts/core/components/single-value-renderer/components/Value.sty.js.map +1 -1
  1084. package/esm/charts/core/components/single-value-renderer/components/trend/Trend.css +3 -3
  1085. package/esm/charts/core/components/single-value-renderer/components/trend/Trend.sty.js +3 -3
  1086. package/esm/charts/core/components/single-value-renderer/components/trend/Trend.sty.js.map +1 -1
  1087. package/esm/charts/core/components/single-value-renderer/components/trend/components/Icon.css +2 -2
  1088. package/esm/charts/core/components/single-value-renderer/components/trend/components/Icon.sty.js +1 -1
  1089. package/esm/charts/core/components/single-value-renderer/components/trend/components/Icon.sty.js.map +1 -1
  1090. package/esm/charts/core/components/sparkline-display/Sparkline.css +6 -6
  1091. package/esm/charts/core/components/sparkline-display/Sparkline.sty.js +2 -2
  1092. package/esm/charts/core/components/sparkline-display/Sparkline.sty.js.map +1 -1
  1093. package/esm/charts/core/components/sparkline-display/SparklineContainer.js +14 -9
  1094. package/esm/charts/core/components/sparkline-display/SparklineContainer.js.map +2 -2
  1095. package/esm/charts/core/components/sparkline-display/utils/get-sparkline-y-scale.js +4 -0
  1096. package/esm/charts/core/components/sparkline-display/utils/get-sparkline-y-scale.js.map +2 -2
  1097. package/esm/charts/core/components/text-ellipsis/ChartTextEllipsis.css +7 -7
  1098. package/esm/charts/core/components/text-ellipsis/ChartTextEllipsis.sty.js +3 -3
  1099. package/esm/charts/core/components/text-ellipsis/ChartTextEllipsis.sty.js.map +1 -1
  1100. package/esm/charts/core/components/threshold-bar/indicators/ThresholdIndicator.js +40 -21
  1101. package/esm/charts/core/components/threshold-bar/indicators/ThresholdIndicator.js.map +2 -2
  1102. package/esm/charts/core/components/threshold-bar/markers/CircleMarker.js +1 -2
  1103. package/esm/charts/core/components/threshold-bar/markers/CircleMarker.js.map +2 -2
  1104. package/esm/charts/core/components/threshold-bar/markers/PillMarker.js +1 -2
  1105. package/esm/charts/core/components/threshold-bar/markers/PillMarker.js.map +2 -2
  1106. package/esm/charts/core/components/threshold-bar/styles.css +9 -9
  1107. package/esm/charts/core/components/threshold-bar/styles.sty.js +2 -2
  1108. package/esm/charts/core/components/threshold-bar/styles.sty.js.map +1 -1
  1109. package/esm/charts/core/components/toolbar/ChartToolbarRenderer.css +16 -16
  1110. package/esm/charts/core/components/toolbar/ChartToolbarRenderer.js +16 -6
  1111. package/esm/charts/core/components/toolbar/ChartToolbarRenderer.js.map +2 -2
  1112. package/esm/charts/core/components/toolbar/ChartToolbarRenderer.sty.js +8 -8
  1113. package/esm/charts/core/components/toolbar/ChartToolbarRenderer.sty.js.map +1 -1
  1114. package/esm/charts/core/components/toolbar/components/ChartDataMenu.css +2 -2
  1115. package/esm/charts/core/components/toolbar/components/ChartDataMenu.sty.js +1 -1
  1116. package/esm/charts/core/components/toolbar/components/ChartDataMenu.sty.js.map +1 -1
  1117. package/esm/charts/core/components/toolbar/components/Control.css +17 -17
  1118. package/esm/charts/core/components/toolbar/components/Control.sty.js +5 -5
  1119. package/esm/charts/core/components/toolbar/components/Control.sty.js.map +1 -1
  1120. package/esm/charts/core/components/toolbar/components/ToolbarMenu.css +4 -4
  1121. package/esm/charts/core/components/toolbar/components/ToolbarMenu.sty.js +2 -2
  1122. package/esm/charts/core/components/toolbar/components/ToolbarMenu.sty.js.map +1 -1
  1123. package/esm/charts/core/components/toolbar/types.js.map +1 -1
  1124. package/esm/charts/core/components/tooltip/ChartTooltip/ChartTooltip.css +6 -6
  1125. package/esm/charts/core/components/tooltip/ChartTooltip/ChartTooltip.sty.js +2 -2
  1126. package/esm/charts/core/components/tooltip/ChartTooltip/ChartTooltip.sty.js.map +1 -1
  1127. package/esm/charts/core/components/tooltip/ChartTooltip/components/ActionItem/ActionItem.css +8 -8
  1128. package/esm/charts/core/components/tooltip/ChartTooltip/components/ActionItem/ActionItem.sty.js +3 -3
  1129. package/esm/charts/core/components/tooltip/ChartTooltip/components/ActionItem/ActionItem.sty.js.map +1 -1
  1130. package/esm/charts/core/components/tooltip/ChartTooltip/components/SeriesItem/SeriesItem.css +2 -2
  1131. package/esm/charts/core/components/tooltip/ChartTooltip/components/SeriesItem/SeriesItem.sty.js +1 -1
  1132. package/esm/charts/core/components/tooltip/ChartTooltip/components/SeriesItem/SeriesItem.sty.js.map +1 -1
  1133. package/esm/charts/core/components/tooltip/ChartTooltip/components/TimeFrameHeader/TimeFrameHeader.css +1 -1
  1134. package/esm/charts/core/components/tooltip/ChartTooltip/components/TimeFrameHeader/TimeFrameHeader.sty.js +1 -1
  1135. package/esm/charts/core/components/tooltip/ChartTooltip/components/TimeFrameHeader/TimeFrameHeader.sty.js.map +1 -1
  1136. package/esm/charts/core/components/tooltip/InteractiveChartTooltip/components/BasicChartTooltip/BasicChartTooltip.css +6 -6
  1137. package/esm/charts/core/components/tooltip/InteractiveChartTooltip/components/BasicChartTooltip/BasicChartTooltip.sty.js +2 -2
  1138. package/esm/charts/core/components/tooltip/InteractiveChartTooltip/components/BasicChartTooltip/BasicChartTooltip.sty.js.map +1 -1
  1139. package/esm/charts/core/components/tooltip/InteractiveChartTooltip/components/InteractiveChartTooltip.css +7 -7
  1140. package/esm/charts/core/components/tooltip/InteractiveChartTooltip/components/InteractiveChartTooltip.sty.js +6 -6
  1141. package/esm/charts/core/components/tooltip/InteractiveChartTooltip/components/InteractiveChartTooltip.sty.js.map +1 -1
  1142. package/esm/charts/core/components/tooltip/InteractiveChartTooltip/headers/HeaderTooltip.css +1 -1
  1143. package/esm/charts/core/components/tooltip/InteractiveChartTooltip/headers/HeaderTooltip.sty.js +1 -1
  1144. package/esm/charts/core/components/tooltip/InteractiveChartTooltip/headers/HeaderTooltip.sty.js.map +1 -1
  1145. package/esm/charts/core/components/tooltip/section-components/TooltipFooter/TooltipFooter.css +1 -1
  1146. package/esm/charts/core/components/tooltip/section-components/TooltipFooter/TooltipFooter.sty.js +1 -1
  1147. package/esm/charts/core/components/tooltip/section-components/TooltipFooter/TooltipFooter.sty.js.map +1 -1
  1148. package/esm/charts/core/components/tooltip/section-components/TooltipHeader/TooltipHeader.css +2 -2
  1149. package/esm/charts/core/components/tooltip/section-components/TooltipHeader/TooltipHeader.sty.js +1 -1
  1150. package/esm/charts/core/components/tooltip/section-components/TooltipHeader/TooltipHeader.sty.js.map +1 -1
  1151. package/esm/charts/core/components/tooltip/section-components/TooltipInfoContent/TooltipInfoContent.css +1 -1
  1152. package/esm/charts/core/components/tooltip/section-components/TooltipInfoContent/TooltipInfoContent.sty.js +1 -1
  1153. package/esm/charts/core/components/tooltip/section-components/TooltipInfoContent/TooltipInfoContent.sty.js.map +1 -1
  1154. package/esm/charts/core/components/tooltip/section-components/TooltipItem/TooltipItem.css +3 -3
  1155. package/esm/charts/core/components/tooltip/section-components/TooltipItem/TooltipItem.sty.js +2 -2
  1156. package/esm/charts/core/components/tooltip/section-components/TooltipItem/TooltipItem.sty.js.map +1 -1
  1157. package/esm/charts/core/components/tooltip/section-components/TooltipSymbolContent/TooltipSymbolContent.css +1 -1
  1158. package/esm/charts/core/components/tooltip/section-components/TooltipSymbolContent/TooltipSymbolContent.sty.js +1 -1
  1159. package/esm/charts/core/components/tooltip/section-components/TooltipSymbolContent/TooltipSymbolContent.sty.js.map +1 -1
  1160. package/esm/charts/core/components/tooltip/section-components/VirtualizedTooltipBody/VirtualizedTooltipBody.css +2 -2
  1161. package/esm/charts/core/components/tooltip/section-components/VirtualizedTooltipBody/VirtualizedTooltipBody.sty.js +2 -2
  1162. package/esm/charts/core/components/tooltip/section-components/VirtualizedTooltipBody/VirtualizedTooltipBody.sty.js.map +1 -1
  1163. package/esm/charts/core/components/tooltip/shared/styles/SeriesBasedContent.css +12 -12
  1164. package/esm/charts/core/components/tooltip/shared/styles/SeriesBasedContent.sty.js +7 -7
  1165. package/esm/charts/core/components/tooltip/shared/styles/SeriesBasedContent.sty.js.map +1 -1
  1166. package/esm/charts/core/components/tooltip/shared/styles/TooltipBody.css +1 -1
  1167. package/esm/charts/core/components/tooltip/shared/styles/TooltipBody.sty.js +1 -1
  1168. package/esm/charts/core/components/tooltip/shared/styles/TooltipBody.sty.js.map +1 -1
  1169. package/esm/charts/core/components/tooltip-atoms/components/HeaderChipAtom/HeaderChipAtom.css +1 -1
  1170. package/esm/charts/core/components/tooltip-atoms/components/HeaderChipAtom/HeaderChipAtom.sty.js +1 -1
  1171. package/esm/charts/core/components/tooltip-atoms/components/HeaderChipAtom/HeaderChipAtom.sty.js.map +1 -1
  1172. package/esm/charts/core/components/tooltip-atoms/components/styles.css +4 -4
  1173. package/esm/charts/core/components/tooltip-atoms/components/styles.sty.js +4 -4
  1174. package/esm/charts/core/components/tooltip-atoms/components/styles.sty.js.map +1 -1
  1175. package/esm/charts/core/components/zoom/ZoomCursors.css +2 -2
  1176. package/esm/charts/core/components/zoom/ZoomCursors.sty.js +3 -3
  1177. package/esm/charts/core/components/zoom/ZoomCursors.sty.js.map +1 -1
  1178. package/esm/charts/core/constants.js +2 -0
  1179. package/esm/charts/core/constants.js.map +2 -2
  1180. package/esm/charts/core/hooks/useOverlayEventHandlers.js +40 -20
  1181. package/esm/charts/core/hooks/useOverlayEventHandlers.js.map +2 -2
  1182. package/esm/charts/core/hooks/usePointerAndScrollResponsiveChartBounds.js +1 -1
  1183. package/esm/charts/core/hooks/usePointerAndScrollResponsiveChartBounds.js.map +2 -2
  1184. package/esm/charts/core/hooks/useThrottledCallbackOnResize.js +1 -1
  1185. package/esm/charts/core/hooks/useThrottledCallbackOnResize.js.map +2 -2
  1186. package/esm/charts/core/hooks/useThrottledCallbackOnScroll.js.map +1 -1
  1187. package/esm/charts/core/hooks/useThrottledResizeObserver.js +1 -1
  1188. package/esm/charts/core/hooks/useThrottledResizeObserver.js.map +2 -2
  1189. package/esm/charts/core/types/chart-data.js +1 -0
  1190. package/esm/charts/core/types/text-size.js +1 -0
  1191. package/esm/charts/core/types/text-size.js.map +7 -0
  1192. package/esm/charts/core/typographyStyles.css +1 -1
  1193. package/esm/charts/core/typographyStyles.sty.js +1 -1
  1194. package/esm/charts/core/typographyStyles.sty.js.map +1 -1
  1195. package/esm/charts/core/utils/formatter-by-ticks.js +1 -1
  1196. package/esm/charts/core/utils/formatter-by-ticks.js.map +2 -2
  1197. package/esm/charts/core/utils/text-measure.js +38 -0
  1198. package/esm/charts/core/utils/text-measure.js.map +7 -0
  1199. package/esm/charts/gantt-chart/GanttChartLine.css +1 -1
  1200. package/esm/charts/gantt-chart/GanttChartLine.sty.js +1 -1
  1201. package/esm/charts/gantt-chart/GanttChartLine.sty.js.map +1 -1
  1202. package/esm/charts/gantt-chart/components/GanttChartLineRenderer.css +1 -1
  1203. package/esm/charts/gantt-chart/components/GanttChartLineRenderer.js +1 -2
  1204. package/esm/charts/gantt-chart/components/GanttChartLineRenderer.js.map +2 -2
  1205. package/esm/charts/gantt-chart/components/GanttChartLineRenderer.sty.js +1 -1
  1206. package/esm/charts/gantt-chart/components/GanttChartLineRenderer.sty.js.map +1 -1
  1207. package/esm/charts/gantt-chart/components/tooltip/GanttChartTooltip.css +1 -1
  1208. package/esm/charts/gantt-chart/components/tooltip/GanttChartTooltip.sty.js +1 -1
  1209. package/esm/charts/gantt-chart/components/tooltip/GanttChartTooltip.sty.js.map +1 -1
  1210. package/esm/charts/gauge/components/GaugeChartLayout/GaugeChartLayout.css +1 -1
  1211. package/esm/charts/gauge/components/GaugeChartLayout/GaugeChartLayout.sty.js +1 -1
  1212. package/esm/charts/gauge/components/GaugeChartLayout/GaugeChartLayout.sty.js.map +1 -1
  1213. package/esm/charts/gauge/components/GaugeChartLayout/GaugeChartToolbar.js +2 -2
  1214. package/esm/charts/gauge/components/GaugeChartLayout/GaugeChartToolbar.js.map +2 -2
  1215. package/esm/charts/gauge/components/GaugeChartTooltip/GaugeOverlayTooltip.js +1 -1
  1216. package/esm/charts/gauge/components/GaugeChartTooltip/GaugeOverlayTooltip.js.map +2 -2
  1217. package/esm/charts/gauge/components/GaugeLabel/GaugeLabel.css +6 -6
  1218. package/esm/charts/gauge/components/GaugeLabel/GaugeLabel.sty.js +3 -3
  1219. package/esm/charts/gauge/components/GaugeLabel/GaugeLabel.sty.js.map +1 -1
  1220. package/esm/charts/gauge/components/GaugeLabelsWrapper/GaugeLabelsWrapper.css +3 -3
  1221. package/esm/charts/gauge/components/GaugeLabelsWrapper/GaugeLabelsWrapper.sty.js +1 -1
  1222. package/esm/charts/gauge/components/GaugeLabelsWrapper/GaugeLabelsWrapper.sty.js.map +1 -1
  1223. package/esm/charts/gauge/components/GaugeLayoutOverlay/GaugeLayoutOverlay.css +4 -4
  1224. package/esm/charts/gauge/components/GaugeLayoutOverlay/GaugeLayoutOverlay.js +56 -3
  1225. package/esm/charts/gauge/components/GaugeLayoutOverlay/GaugeLayoutOverlay.js.map +2 -2
  1226. package/esm/charts/gauge/components/GaugeLayoutOverlay/GaugeLayoutOverlay.sty.js +3 -3
  1227. package/esm/charts/gauge/components/GaugeLayoutOverlay/GaugeLayoutOverlay.sty.js.map +1 -1
  1228. package/esm/charts/gauge/components/GaugeResponsiveLabel/GaugeResponsiveLabel.css +2 -2
  1229. package/esm/charts/gauge/components/GaugeResponsiveLabel/GaugeResponsiveLabel.sty.js +2 -2
  1230. package/esm/charts/gauge/components/GaugeResponsiveLabel/GaugeResponsiveLabel.sty.js.map +1 -1
  1231. package/esm/charts/gauge/utils/is-in-gauge-hit-area.js +19 -0
  1232. package/esm/charts/gauge/utils/is-in-gauge-hit-area.js.map +7 -0
  1233. package/esm/charts/histogram/HistogramChart.js +4 -5
  1234. package/esm/charts/histogram/HistogramChart.js.map +2 -2
  1235. package/esm/charts/histogram/HistogramChartInternal.js +19 -9
  1236. package/esm/charts/histogram/HistogramChartInternal.js.map +2 -2
  1237. package/esm/charts/histogram/components/annotations-histogram/HistogramAnnotationsArea.js +24 -32
  1238. package/esm/charts/histogram/components/annotations-histogram/HistogramAnnotationsArea.js.map +2 -2
  1239. package/esm/charts/histogram/components/axes/HistogramValueBottomAxisArea/HistogramValueBottomAxisArea.css +1 -1
  1240. package/esm/charts/histogram/components/axes/HistogramValueBottomAxisArea/HistogramValueBottomAxisArea.sty.js +1 -1
  1241. package/esm/charts/histogram/components/axes/HistogramValueBottomAxisArea/HistogramValueBottomAxisArea.sty.js.map +1 -1
  1242. package/esm/charts/histogram/components/overlays/HistogramExplore/HistogramTooltip.css +1 -1
  1243. package/esm/charts/histogram/components/overlays/HistogramExplore/HistogramTooltip.sty.js +1 -1
  1244. package/esm/charts/histogram/components/overlays/HistogramExplore/HistogramTooltip.sty.js.map +1 -1
  1245. package/esm/charts/histogram/components/overlays/HistogramOverlays.css +2 -2
  1246. package/esm/charts/histogram/components/overlays/HistogramOverlays.sty.js +2 -2
  1247. package/esm/charts/histogram/components/overlays/HistogramOverlays.sty.js.map +1 -1
  1248. package/esm/charts/histogram/components/overlays/HistogramOverlaysBorder.js +5 -1
  1249. package/esm/charts/histogram/components/overlays/HistogramOverlaysBorder.js.map +2 -2
  1250. package/esm/charts/histogram/components/toolbar/HistogramToolbar.js +0 -1
  1251. package/esm/charts/histogram/components/toolbar/HistogramToolbar.js.map +2 -2
  1252. package/esm/charts/honeycomb/HoneycombChart.css +1 -1
  1253. package/esm/charts/honeycomb/HoneycombChart.js +6 -3
  1254. package/esm/charts/honeycomb/HoneycombChart.js.map +2 -2
  1255. package/esm/charts/honeycomb/HoneycombChart.sty.js +1 -1
  1256. package/esm/charts/honeycomb/HoneycombChart.sty.js.map +1 -1
  1257. package/esm/charts/honeycomb/components/HiveOverlay.css +1 -1
  1258. package/esm/charts/honeycomb/components/HiveOverlay.js +2 -10
  1259. package/esm/charts/honeycomb/components/HiveOverlay.js.map +2 -2
  1260. package/esm/charts/honeycomb/components/HiveOverlay.sty.js +1 -1
  1261. package/esm/charts/honeycomb/components/HiveOverlay.sty.js.map +1 -1
  1262. package/esm/charts/honeycomb/components/canvas/HiveCanvasLayout.css +1 -1
  1263. package/esm/charts/honeycomb/components/canvas/HiveCanvasLayout.sty.js +1 -1
  1264. package/esm/charts/honeycomb/components/canvas/HiveCanvasLayout.sty.js.map +1 -1
  1265. package/esm/charts/honeycomb/components/canvas/renderers/CanvasCircleRenderer.js +7 -2
  1266. package/esm/charts/honeycomb/components/canvas/renderers/CanvasCircleRenderer.js.map +2 -2
  1267. package/esm/charts/honeycomb/components/canvas/renderers/CanvasHexagonRenderer.js +9 -5
  1268. package/esm/charts/honeycomb/components/canvas/renderers/CanvasHexagonRenderer.js.map +2 -2
  1269. package/esm/charts/honeycomb/components/canvas/renderers/CanvasSquareRenderer.js +7 -2
  1270. package/esm/charts/honeycomb/components/canvas/renderers/CanvasSquareRenderer.js.map +2 -2
  1271. package/esm/charts/honeycomb/components/canvas/utils/draw-label-and-value.js +108 -21
  1272. package/esm/charts/honeycomb/components/canvas/utils/draw-label-and-value.js.map +2 -2
  1273. package/esm/charts/honeycomb/components/canvas/utils/get-font-sizes.js +39 -0
  1274. package/esm/charts/honeycomb/components/canvas/utils/get-font-sizes.js.map +7 -0
  1275. package/esm/charts/honeycomb/components/canvas/utils/get-truncation-method.js +82 -9
  1276. package/esm/charts/honeycomb/components/canvas/utils/get-truncation-method.js.map +2 -2
  1277. package/esm/charts/honeycomb/components/canvas/utils/measure-node-text-content.js +13 -16
  1278. package/esm/charts/honeycomb/components/canvas/utils/measure-node-text-content.js.map +2 -2
  1279. package/esm/charts/honeycomb/components/canvas/utils/render-text-to-canvas.js +2 -2
  1280. package/esm/charts/honeycomb/components/canvas/utils/render-text-to-canvas.js.map +2 -2
  1281. package/esm/charts/honeycomb/components/canvas/utils/set-font-details-to-context.js +11 -9
  1282. package/esm/charts/honeycomb/components/canvas/utils/set-font-details-to-context.js.map +2 -2
  1283. package/esm/charts/honeycomb/components/toolbar/HoneycombToolbar.js +1 -3
  1284. package/esm/charts/honeycomb/components/toolbar/HoneycombToolbar.js.map +2 -2
  1285. package/esm/charts/honeycomb/components/tooltip/HoneycombOverlayTooltip.js +1 -1
  1286. package/esm/charts/honeycomb/components/tooltip/HoneycombOverlayTooltip.js.map +2 -2
  1287. package/esm/charts/honeycomb/constants.js +17 -13
  1288. package/esm/charts/honeycomb/constants.js.map +2 -2
  1289. package/esm/charts/honeycomb/context/honeycomb-color-scheme.context.js.map +1 -1
  1290. package/esm/charts/honeycomb/context/honeycomb-filtered-color-scheme.context.js.map +1 -1
  1291. package/esm/charts/honeycomb/context/honeycomb-text-size.context.js +9 -0
  1292. package/esm/charts/honeycomb/context/honeycomb-text-size.context.js.map +7 -0
  1293. package/esm/charts/honeycomb/hooks/use-honeycomb-chart-config.js +6 -1
  1294. package/esm/charts/honeycomb/hooks/use-honeycomb-chart-config.js.map +2 -2
  1295. package/esm/charts/honeycomb/hooks/use-honeycomb-text-size.js +7 -0
  1296. package/esm/charts/honeycomb/hooks/use-honeycomb-text-size.js.map +7 -0
  1297. package/esm/charts/honeycomb/hooks/use-overlay-events.js +7 -8
  1298. package/esm/charts/honeycomb/hooks/use-overlay-events.js.map +2 -2
  1299. package/esm/charts/honeycomb/providers/honeycomb-base-scale.provider.js.map +2 -2
  1300. package/esm/charts/honeycomb/store/selectors.js +0 -2
  1301. package/esm/charts/honeycomb/store/selectors.js.map +2 -2
  1302. package/esm/charts/honeycomb/store/store.js +0 -13
  1303. package/esm/charts/honeycomb/store/store.js.map +2 -2
  1304. package/esm/charts/honeycomb/types/state.js +0 -3
  1305. package/esm/charts/honeycomb/types/state.js.map +2 -2
  1306. package/esm/charts/honeycomb/utils/build-honeycomb-config.js +19 -5
  1307. package/esm/charts/honeycomb/utils/build-honeycomb-config.js.map +2 -2
  1308. package/esm/charts/honeycomb/utils/normalize-honeycomb-chart-data.js +21 -0
  1309. package/esm/charts/honeycomb/utils/normalize-honeycomb-chart-data.js.map +7 -0
  1310. package/esm/charts/index.js.map +2 -2
  1311. package/esm/charts/meter-bar/multi-meter-bar/components/MultiMeterBarChartOverlay/MultiMeterBarChartOverlayWithTooltip.js +1 -1
  1312. package/esm/charts/meter-bar/multi-meter-bar/components/MultiMeterBarChartOverlay/MultiMeterBarChartOverlayWithTooltip.js.map +2 -2
  1313. package/esm/charts/meter-bar/shared/components/meter-bar-layout/MeterBarLayout.css +15 -15
  1314. package/esm/charts/meter-bar/shared/components/meter-bar-layout/MeterBarLayout.sty.js +10 -10
  1315. package/esm/charts/meter-bar/shared/components/meter-bar-layout/MeterBarLayout.sty.js.map +1 -1
  1316. package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Icon/Icon.css +2 -2
  1317. package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Icon/Icon.sty.js +1 -1
  1318. package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Icon/Icon.sty.js.map +1 -1
  1319. package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Label/Label.css +1 -1
  1320. package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Label/Label.sty.js +1 -1
  1321. package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Label/Label.sty.js.map +1 -1
  1322. package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Max/Max.css +1 -1
  1323. package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Max/Max.sty.js +1 -1
  1324. package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Max/Max.sty.js.map +1 -1
  1325. package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Min/Min.css +1 -1
  1326. package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Min/Min.sty.js +1 -1
  1327. package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Min/Min.sty.js.map +1 -1
  1328. package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Value/Value.css +1 -1
  1329. package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Value/Value.sty.js +1 -1
  1330. package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Value/Value.sty.js.map +1 -1
  1331. package/esm/charts/meter-bar/shared/components/meter-bar-plot/MeterBarPlot.css +1 -1
  1332. package/esm/charts/meter-bar/shared/components/meter-bar-plot/MeterBarPlot.sty.js +1 -1
  1333. package/esm/charts/meter-bar/shared/components/meter-bar-plot/MeterBarPlot.sty.js.map +1 -1
  1334. package/esm/charts/meter-bar/shared/styles/element-size.css +4 -4
  1335. package/esm/charts/meter-bar/shared/styles/element-size.sty.js +1 -1
  1336. package/esm/charts/meter-bar/shared/styles/element-size.sty.js.map +1 -1
  1337. package/esm/charts/meter-bar/shared/styles.css +1 -1
  1338. package/esm/charts/meter-bar/shared/styles.sty.js +1 -1
  1339. package/esm/charts/meter-bar/shared/styles.sty.js.map +1 -1
  1340. package/esm/charts/meter-bar/single-meter-bar/components/MeterBarChartOverlay/MeterBarChartOverlayWithTooltip.js +1 -1
  1341. package/esm/charts/meter-bar/single-meter-bar/components/MeterBarChartOverlay/MeterBarChartOverlayWithTooltip.js.map +2 -2
  1342. package/esm/charts/meter-bar/single-meter-bar/components/MeterBarChartThresholds/MeterBarChartThresholds.css +1 -1
  1343. package/esm/charts/meter-bar/single-meter-bar/components/MeterBarChartThresholds/MeterBarChartThresholds.sty.js +1 -1
  1344. package/esm/charts/meter-bar/single-meter-bar/components/MeterBarChartThresholds/MeterBarChartThresholds.sty.js.map +1 -1
  1345. package/esm/charts/pie/DonutChart.js +5 -12
  1346. package/esm/charts/pie/DonutChart.js.map +2 -2
  1347. package/esm/charts/pie/PieChart.js +7 -14
  1348. package/esm/charts/pie/PieChart.js.map +2 -2
  1349. package/esm/charts/pie/components/InnerWrapper/components/InnerContainer/InnerContainer.css +1 -1
  1350. package/esm/charts/pie/components/InnerWrapper/components/InnerContainer/InnerContainer.sty.js +1 -1
  1351. package/esm/charts/pie/components/InnerWrapper/components/InnerContainer/InnerContainer.sty.js.map +1 -1
  1352. package/esm/charts/pie/components/InnerWrapper/components/InnerDonut/InnerDonut.css +1 -1
  1353. package/esm/charts/pie/components/InnerWrapper/components/InnerDonut/InnerDonut.sty.js +1 -1
  1354. package/esm/charts/pie/components/InnerWrapper/components/InnerDonut/InnerDonut.sty.js.map +1 -1
  1355. package/esm/charts/pie/components/PieChartOverlays/PieChartOverlays.css +1 -1
  1356. package/esm/charts/pie/components/PieChartOverlays/PieChartOverlays.js +3 -3
  1357. package/esm/charts/pie/components/PieChartOverlays/PieChartOverlays.js.map +2 -2
  1358. package/esm/charts/pie/components/PieChartOverlays/PieChartOverlays.sty.js +1 -1
  1359. package/esm/charts/pie/components/PieChartOverlays/PieChartOverlays.sty.js.map +1 -1
  1360. package/esm/charts/pie/components/PieChartPlot/PieChartPlot.css +1 -1
  1361. package/esm/charts/pie/components/PieChartPlot/PieChartPlot.js +65 -56
  1362. package/esm/charts/pie/components/PieChartPlot/PieChartPlot.js.map +3 -3
  1363. package/esm/charts/pie/components/PieChartPlot/PieChartPlot.sty.js +1 -1
  1364. package/esm/charts/pie/components/PieChartPlot/PieChartPlot.sty.js.map +1 -1
  1365. package/esm/charts/pie/components/PieChartSlice.js +15 -11
  1366. package/esm/charts/pie/components/PieChartSlice.js.map +2 -2
  1367. package/esm/charts/pie/components/PieChartTooltip/PieChartTooltip.js +1 -1
  1368. package/esm/charts/pie/components/PieChartTooltip/PieChartTooltip.js.map +2 -2
  1369. package/esm/charts/pie/constants.js +2 -0
  1370. package/esm/charts/pie/constants.js.map +2 -2
  1371. package/esm/charts/pie/context/ChartConfigContext.js.map +2 -2
  1372. package/esm/charts/pie/context/PieChartRawDataContext.js.map +2 -2
  1373. package/esm/charts/pie/hooks/useNormalizedPieData.js +20 -0
  1374. package/esm/charts/pie/hooks/useNormalizedPieData.js.map +7 -0
  1375. package/esm/charts/pie/hooks/useOverlayHandlers.js +7 -5
  1376. package/esm/charts/pie/hooks/useOverlayHandlers.js.map +2 -2
  1377. package/esm/charts/pie/hooks/useSliceHandlers.js +29 -3
  1378. package/esm/charts/pie/hooks/useSliceHandlers.js.map +2 -2
  1379. package/esm/charts/pie/providers/ChartProviders.js.map +2 -2
  1380. package/esm/charts/pie/types/pie-chart.config.js.map +2 -2
  1381. package/esm/charts/pie/utils/build-and-download-csv.js.map +2 -2
  1382. package/esm/charts/pie/utils/build-group-threshold.js.map +2 -2
  1383. package/esm/charts/pie/utils/build-slices.js.map +2 -2
  1384. package/esm/charts/pie/utils/format-csv.js.map +2 -2
  1385. package/esm/charts/pie/utils/group-slices-thinner-than-pad-angle.js +2 -1
  1386. package/esm/charts/pie/utils/group-slices-thinner-than-pad-angle.js.map +2 -2
  1387. package/esm/charts/pie/utils/normalize-pie-data.js +20 -0
  1388. package/esm/charts/pie/utils/normalize-pie-data.js.map +7 -0
  1389. package/esm/charts/pie/utils/pie-config.js +2 -1
  1390. package/esm/charts/pie/utils/pie-config.js.map +2 -2
  1391. package/esm/charts/pie/utils/sanitize-toolbar-intents.js +12 -0
  1392. package/esm/charts/pie/utils/sanitize-toolbar-intents.js.map +7 -0
  1393. package/esm/charts/single-value/SingleValue.css +1 -1
  1394. package/esm/charts/single-value/SingleValue.sty.js +1 -1
  1395. package/esm/charts/single-value/SingleValue.sty.js.map +1 -1
  1396. package/esm/charts/single-value-grid/SingleValueGrid.css +2 -2
  1397. package/esm/charts/single-value-grid/SingleValueGrid.sty.js +1 -1
  1398. package/esm/charts/single-value-grid/SingleValueGrid.sty.js.map +1 -1
  1399. package/esm/charts/single-value-grid/components/GlobalFontSizeVariables.css +1 -1
  1400. package/esm/charts/single-value-grid/components/GlobalFontSizeVariables.sty.js +1 -1
  1401. package/esm/charts/single-value-grid/components/GlobalFontSizeVariables.sty.js.map +1 -1
  1402. package/esm/charts/timeseries/TimeseriesChart.js.map +2 -2
  1403. package/esm/charts/timeseries/TimeseriesChartInternal.js +38 -18
  1404. package/esm/charts/timeseries/TimeseriesChartInternal.js.map +2 -2
  1405. package/esm/charts/timeseries/components/annotations-timeseries/TimeseriesChartAnnotationsArea.js +24 -32
  1406. package/esm/charts/timeseries/components/annotations-timeseries/TimeseriesChartAnnotationsArea.js.map +2 -2
  1407. package/esm/charts/timeseries/components/axes/TimeseriesTimeBottomAxisArea/TimeseriesTimeBottomAxisArea.css +2 -2
  1408. package/esm/charts/timeseries/components/axes/TimeseriesTimeBottomAxisArea/TimeseriesTimeBottomAxisArea.sty.js +1 -1
  1409. package/esm/charts/timeseries/components/axes/TimeseriesTimeBottomAxisArea/TimeseriesTimeBottomAxisArea.sty.js.map +1 -1
  1410. package/esm/charts/timeseries/components/overlays/TimeseriesChartOverlaysBorder.js +5 -1
  1411. package/esm/charts/timeseries/components/overlays/TimeseriesChartOverlaysBorder.js.map +2 -2
  1412. package/esm/charts/timeseries/components/overlays/TimeseriesOverlays.css +4 -4
  1413. package/esm/charts/timeseries/components/overlays/TimeseriesOverlays.sty.js +4 -4
  1414. package/esm/charts/timeseries/components/overlays/TimeseriesOverlays.sty.js.map +1 -1
  1415. package/esm/charts/timeseries/components/thresholds/ThresholdIndicators.css +2 -2
  1416. package/esm/charts/timeseries/components/thresholds/ThresholdIndicators.sty.js +2 -2
  1417. package/esm/charts/timeseries/components/thresholds/ThresholdIndicators.sty.js.map +1 -1
  1418. package/esm/charts/timeseries/components/toolbar/TimeseriesChartToolbar.js +0 -1
  1419. package/esm/charts/timeseries/components/toolbar/TimeseriesChartToolbar.js.map +2 -2
  1420. package/esm/charts/timeseries/slots/Tooltip.js.map +2 -2
  1421. package/esm/charts/top-list/TopList.css +1 -1
  1422. package/esm/charts/top-list/TopList.js +25 -10
  1423. package/esm/charts/top-list/TopList.js.map +2 -2
  1424. package/esm/charts/top-list/TopList.sty.js +1 -1
  1425. package/esm/charts/top-list/TopList.sty.js.map +1 -1
  1426. package/esm/charts/top-list/constants.js +2 -1
  1427. package/esm/charts/top-list/constants.js.map +2 -2
  1428. package/esm/charts/tree-map/TreeMap.js +10 -1
  1429. package/esm/charts/tree-map/TreeMap.js.map +2 -2
  1430. package/esm/charts/tree-map/components/TreeMapCanvas.js.map +1 -1
  1431. package/esm/charts/tree-map/components/TreeMapChartLayout.js +4 -4
  1432. package/esm/charts/tree-map/components/TreeMapChartLayout.js.map +2 -2
  1433. package/esm/charts/tree-map/components/TreeMapCluster.js.map +1 -1
  1434. package/esm/charts/tree-map/components/TreeMapInternal.js +29 -33
  1435. package/esm/charts/tree-map/components/TreeMapInternal.js.map +2 -2
  1436. package/esm/charts/tree-map/components/TreeMapLegend/TreeMapCategoricalLegend.js +3 -1
  1437. package/esm/charts/tree-map/components/TreeMapLegend/TreeMapCategoricalLegend.js.map +2 -2
  1438. package/esm/charts/tree-map/components/TreeMapOverlay/TreeMapOverlay.css +1 -1
  1439. package/esm/charts/tree-map/components/TreeMapOverlay/TreeMapOverlay.js +2 -10
  1440. package/esm/charts/tree-map/components/TreeMapOverlay/TreeMapOverlay.js.map +2 -2
  1441. package/esm/charts/tree-map/components/TreeMapOverlay/TreeMapOverlay.sty.js +1 -1
  1442. package/esm/charts/tree-map/components/TreeMapOverlay/TreeMapOverlay.sty.js.map +1 -1
  1443. package/esm/charts/tree-map/components/TreeMapToolbar/TreeMapToolbar.js +2 -4
  1444. package/esm/charts/tree-map/components/TreeMapToolbar/TreeMapToolbar.js.map +2 -2
  1445. package/esm/charts/tree-map/components/TreeMapTooltip/TreeMapOverlayTooltip.js +1 -1
  1446. package/esm/charts/tree-map/components/TreeMapTooltip/TreeMapOverlayTooltip.js.map +2 -2
  1447. package/esm/charts/tree-map/components/canvas/TreeMapSquareRenderer.js +5 -2
  1448. package/esm/charts/tree-map/components/canvas/TreeMapSquareRenderer.js.map +2 -2
  1449. package/esm/charts/tree-map/constants.js +1 -2
  1450. package/esm/charts/tree-map/constants.js.map +2 -2
  1451. package/esm/charts/tree-map/context/TextSizeContext.js.map +2 -2
  1452. package/esm/charts/tree-map/hooks/useOverlayHandlers.js +7 -8
  1453. package/esm/charts/tree-map/hooks/useOverlayHandlers.js.map +2 -2
  1454. package/esm/charts/tree-map/hooks/useSetHierarchyNodes.js.map +1 -1
  1455. package/esm/charts/tree-map/hooks/useTreeMapChartConfig.js.map +2 -2
  1456. package/esm/charts/tree-map/hooks/useTreeMapChartHandlers.js +4 -1
  1457. package/esm/charts/tree-map/hooks/useTreeMapChartHandlers.js.map +2 -2
  1458. package/esm/charts/tree-map/hooks/useVisibleNodes.js +7 -1
  1459. package/esm/charts/tree-map/hooks/useVisibleNodes.js.map +2 -2
  1460. package/esm/charts/tree-map/providers/TreeMapChartProviders.js +1 -1
  1461. package/esm/charts/tree-map/providers/TreeMapChartProviders.js.map +2 -2
  1462. package/esm/charts/tree-map/store/selectors.js +1 -3
  1463. package/esm/charts/tree-map/store/selectors.js.map +2 -2
  1464. package/esm/charts/tree-map/store/store.js +0 -3
  1465. package/esm/charts/tree-map/store/store.js.map +2 -2
  1466. package/esm/charts/tree-map/utils/build-labels.js.map +2 -2
  1467. package/esm/charts/tree-map/utils/build-overlay-tooltip-data.js.map +1 -1
  1468. package/esm/charts/tree-map/utils/build-tree-map-chart-config.js.map +2 -2
  1469. package/esm/charts/tree-map/utils/get-cluster-position.js.map +1 -1
  1470. package/esm/charts/tree-map/utils/get-filtered-nodes.js +23 -2
  1471. package/esm/charts/tree-map/utils/get-filtered-nodes.js.map +2 -2
  1472. package/esm/charts/tree-map/utils/get-legend-interaction-props.js +2 -2
  1473. package/esm/charts/tree-map/utils/get-legend-interaction-props.js.map +2 -2
  1474. package/esm/charts/tree-map/utils/get-node-color.js.map +1 -1
  1475. package/esm/charts/tree-map/utils/get-node-dimension.js.map +1 -1
  1476. package/esm/charts/tree-map/utils/get-node-opacity.js.map +1 -1
  1477. package/esm/charts/tree-map/utils/get-node-position.js.map +1 -1
  1478. package/esm/charts/tree-map/utils/get-tooltip-data.js.map +1 -1
  1479. package/esm/charts/tree-map/utils/get-tooltip-item.js.map +1 -1
  1480. package/esm/charts/tree-map/utils/node-padding.js.map +1 -1
  1481. package/esm/charts/tree-map/utils/should-draw-leaf-node.js.map +1 -1
  1482. package/esm/charts/tree-map/utils/split-nodes-by-depth.js.map +1 -1
  1483. package/esm/charts/tree-map/utils/to-hierarchical-props.js +88 -0
  1484. package/esm/charts/tree-map/utils/to-hierarchical-props.js.map +7 -0
  1485. package/esm/charts/xy-chart/XYChart.js +24 -16
  1486. package/esm/charts/xy-chart/XYChart.js.map +2 -2
  1487. package/esm/charts/xy-chart/XYChartRoot.js +4 -2
  1488. package/esm/charts/xy-chart/XYChartRoot.js.map +2 -2
  1489. package/esm/charts/xy-chart/components/annotations/XYChartAnnotationsArea.js +29 -34
  1490. package/esm/charts/xy-chart/components/annotations/XYChartAnnotationsArea.js.map +2 -2
  1491. package/esm/charts/xy-chart/components/annotations/utils/get-indicators-from-annotations.js +1 -0
  1492. package/esm/charts/xy-chart/components/annotations/utils/get-indicators-from-annotations.js.map +2 -2
  1493. package/esm/charts/xy-chart/components/axes/AxisArea.css +1 -1
  1494. package/esm/charts/xy-chart/components/axes/AxisArea.sty.js +1 -1
  1495. package/esm/charts/xy-chart/components/axes/AxisArea.sty.js.map +1 -1
  1496. package/esm/charts/xy-chart/components/axes/AxisTickWithTruncation.css +3 -3
  1497. package/esm/charts/xy-chart/components/axes/AxisTickWithTruncation.sty.js +3 -3
  1498. package/esm/charts/xy-chart/components/axes/AxisTickWithTruncation.sty.js.map +1 -1
  1499. package/esm/charts/xy-chart/components/axes/XTickWithTruncation.js.map +2 -2
  1500. package/esm/charts/xy-chart/components/axes/XYChartLeftAxisArea.js +6 -2
  1501. package/esm/charts/xy-chart/components/axes/XYChartLeftAxisArea.js.map +2 -2
  1502. package/esm/charts/xy-chart/components/axes/XYChartRightAxisArea.js +6 -2
  1503. package/esm/charts/xy-chart/components/axes/XYChartRightAxisArea.js.map +2 -2
  1504. package/esm/charts/xy-chart/components/axes/YTickWithTruncation.js.map +2 -2
  1505. package/esm/charts/xy-chart/components/axes/hooks/useXTickOffset.js.map +2 -2
  1506. package/esm/charts/xy-chart/components/axes/hooks/useYTickOffset.js.map +2 -2
  1507. package/esm/charts/xy-chart/components/displays/BarDisplay/BarDisplay.js +2 -1
  1508. package/esm/charts/xy-chart/components/displays/BarDisplay/BarDisplay.js.map +2 -2
  1509. package/esm/charts/xy-chart/components/displays/BarDisplay/BarLabelOverlay.css +3 -3
  1510. package/esm/charts/xy-chart/components/displays/BarDisplay/BarLabelOverlay.js +4 -2
  1511. package/esm/charts/xy-chart/components/displays/BarDisplay/BarLabelOverlay.js.map +2 -2
  1512. package/esm/charts/xy-chart/components/displays/BarDisplay/BarLabelOverlay.sty.js +3 -3
  1513. package/esm/charts/xy-chart/components/displays/BarDisplay/BarLabelOverlay.sty.js.map +1 -1
  1514. package/esm/charts/xy-chart/components/displays/bar-accessors.js +7 -0
  1515. package/esm/charts/xy-chart/components/displays/bar-accessors.js.map +2 -2
  1516. package/esm/charts/xy-chart/components/legend/XYLegend/XYLegend.js +1 -1
  1517. package/esm/charts/xy-chart/components/legend/XYLegend/XYLegend.js.map +1 -1
  1518. package/esm/charts/xy-chart/components/legend/XYLegend/xy-legend.css +1 -1
  1519. package/esm/charts/xy-chart/components/legend/XYLegend/xy-legend.sty.js +1 -1
  1520. package/esm/charts/xy-chart/components/legend/XYLegend/xy-legend.sty.js.map +1 -1
  1521. package/esm/charts/xy-chart/components/overlay/explore/HighlightedPointCanvas.js +32 -6
  1522. package/esm/charts/xy-chart/components/overlay/explore/HighlightedPointCanvas.js.map +2 -2
  1523. package/esm/charts/xy-chart/components/overlay/explore/XYChartCrosshair.css +1 -1
  1524. package/esm/charts/xy-chart/components/overlay/explore/XYChartCrosshair.sty.js +1 -1
  1525. package/esm/charts/xy-chart/components/overlay/explore/XYChartCrosshair.sty.js.map +1 -1
  1526. package/esm/charts/xy-chart/components/overlay/explore/XYChartExplore.css +2 -2
  1527. package/esm/charts/xy-chart/components/overlay/explore/XYChartExplore.sty.js +2 -2
  1528. package/esm/charts/xy-chart/components/overlay/explore/XYChartExplore.sty.js.map +1 -1
  1529. package/esm/charts/xy-chart/components/overlay/explore/XYChartLinearPoint.js +12 -6
  1530. package/esm/charts/xy-chart/components/overlay/explore/XYChartLinearPoint.js.map +2 -2
  1531. package/esm/charts/xy-chart/components/overlay/hooks/useApplyPanDelta.js +5 -1
  1532. package/esm/charts/xy-chart/components/overlay/hooks/useApplyPanDelta.js.map +2 -2
  1533. package/esm/charts/xy-chart/components/overlay/hooks/useApplyZoomDelta.js +5 -1
  1534. package/esm/charts/xy-chart/components/overlay/hooks/useApplyZoomDelta.js.map +2 -2
  1535. package/esm/charts/xy-chart/components/overlay/hooks/useOverlayEvents.js +4 -0
  1536. package/esm/charts/xy-chart/components/overlay/hooks/useOverlayEvents.js.map +2 -2
  1537. package/esm/charts/xy-chart/components/overlay/hooks/useResetInteractions.js +12 -7
  1538. package/esm/charts/xy-chart/components/overlay/hooks/useResetInteractions.js.map +2 -2
  1539. package/esm/charts/xy-chart/components/overlay/hooks/useZoomToSelection.js +10 -6
  1540. package/esm/charts/xy-chart/components/overlay/hooks/useZoomToSelection.js.map +2 -2
  1541. package/esm/charts/xy-chart/components/overlay/utils/draw-shape.js +19 -0
  1542. package/esm/charts/xy-chart/components/overlay/utils/draw-shape.js.map +2 -2
  1543. package/esm/charts/xy-chart/components/thresholds/XYChartThresholdIndicators.css +1 -1
  1544. package/esm/charts/xy-chart/components/thresholds/XYChartThresholdIndicators.sty.js +1 -1
  1545. package/esm/charts/xy-chart/components/thresholds/XYChartThresholdIndicators.sty.js.map +1 -1
  1546. package/esm/charts/xy-chart/components/toolbar/XYChartToolbar.js +0 -1
  1547. package/esm/charts/xy-chart/components/toolbar/XYChartToolbar.js.map +2 -2
  1548. package/esm/charts/xy-chart/components/tooltip/ClosestPointTooltip/ClosestPointTooltip.js +8 -3
  1549. package/esm/charts/xy-chart/components/tooltip/ClosestPointTooltip/ClosestPointTooltip.js.map +2 -2
  1550. package/esm/charts/xy-chart/components/tooltip/ClosestPointTooltip/closestPointTooltipHeaderUtils.js +2 -1
  1551. package/esm/charts/xy-chart/components/tooltip/ClosestPointTooltip/closestPointTooltipHeaderUtils.js.map +2 -2
  1552. package/esm/charts/xy-chart/components/tooltip/HoveredPointTooltip/HoveredPointTooltip.js +8 -3
  1553. package/esm/charts/xy-chart/components/tooltip/HoveredPointTooltip/HoveredPointTooltip.js.map +2 -2
  1554. package/esm/charts/xy-chart/components/tooltip/HoveredPointTooltip/hooks/getHoveredPointTooltipBodyContent.js +2 -2
  1555. package/esm/charts/xy-chart/components/tooltip/HoveredPointTooltip/hooks/getHoveredPointTooltipBodyContent.js.map +2 -2
  1556. package/esm/charts/xy-chart/components/tooltip/HoveredPointTooltip/hoveredPointTooltipHeaderUtils.js +14 -2
  1557. package/esm/charts/xy-chart/components/tooltip/HoveredPointTooltip/hoveredPointTooltipHeaderUtils.js.map +2 -2
  1558. package/esm/charts/xy-chart/components/tooltip/SharedXYChartTooltip/SharedXYChartTooltip.js +42 -22
  1559. package/esm/charts/xy-chart/components/tooltip/SharedXYChartTooltip/SharedXYChartTooltip.js.map +2 -2
  1560. package/esm/charts/xy-chart/components/tooltip/SharedXYChartTooltip/sharedXYChartTooltipUtils.js +9 -2
  1561. package/esm/charts/xy-chart/components/tooltip/SharedXYChartTooltip/sharedXYChartTooltipUtils.js.map +2 -2
  1562. package/esm/charts/xy-chart/components/tooltip/TopListTooltip.js +1 -1
  1563. package/esm/charts/xy-chart/components/tooltip/TopListTooltip.js.map +2 -2
  1564. package/esm/charts/xy-chart/components/tooltip/XYChartTooltipContent.js +1 -1
  1565. package/esm/charts/xy-chart/components/tooltip/XYChartTooltipContent.js.map +2 -2
  1566. package/esm/charts/xy-chart/components/tooltip/utils/get-cached-separator.js +15 -0
  1567. package/esm/charts/xy-chart/components/tooltip/utils/get-cached-separator.js.map +7 -0
  1568. package/esm/charts/xy-chart/components/tooltip/utils/get-color.js +4 -1
  1569. package/esm/charts/xy-chart/components/tooltip/utils/get-color.js.map +2 -2
  1570. package/esm/charts/xy-chart/components/tooltip/utils/get-tooltip-formatter.js +4 -2
  1571. package/esm/charts/xy-chart/components/tooltip/utils/get-tooltip-formatter.js.map +2 -2
  1572. package/esm/charts/xy-chart/components/tooltip/utils/tooltip-styles.css +5 -5
  1573. package/esm/charts/xy-chart/components/tooltip/utils/tooltip-styles.sty.js +4 -4
  1574. package/esm/charts/xy-chart/components/tooltip/utils/tooltip-styles.sty.js.map +1 -1
  1575. package/esm/charts/xy-chart/constants/defaults.js +2 -2
  1576. package/esm/charts/xy-chart/constants/defaults.js.map +2 -2
  1577. package/esm/charts/xy-chart/context/XYChartOverlayPerformance.context.js.map +2 -2
  1578. package/esm/charts/xy-chart/context/XYChartTooltip.context.js.map +2 -2
  1579. package/esm/charts/xy-chart/hooks/useBuildHoverGrid.js +38 -0
  1580. package/esm/charts/xy-chart/hooks/useBuildHoverGrid.js.map +7 -0
  1581. package/esm/charts/xy-chart/hooks/useBuildOverlayStrategy.js +88 -0
  1582. package/esm/charts/xy-chart/hooks/useBuildOverlayStrategy.js.map +7 -0
  1583. package/esm/charts/xy-chart/hooks/useColorRule.js +11 -0
  1584. package/esm/charts/xy-chart/hooks/useColorRule.js.map +2 -2
  1585. package/esm/charts/xy-chart/hooks/useXYChartDataProvider.js +10 -3
  1586. package/esm/charts/xy-chart/hooks/useXYChartDataProvider.js.map +3 -3
  1587. package/esm/charts/xy-chart/layout/XYChartAxisBorder.js.map +2 -2
  1588. package/esm/charts/xy-chart/layout/XYChartLayout.css +2 -2
  1589. package/esm/charts/xy-chart/layout/XYChartLayout.sty.js +2 -2
  1590. package/esm/charts/xy-chart/layout/XYChartLayout.sty.js.map +1 -1
  1591. package/esm/charts/xy-chart/processing-strategies/strategies/area-series.js +243 -5
  1592. package/esm/charts/xy-chart/processing-strategies/strategies/area-series.js.map +2 -2
  1593. package/esm/charts/xy-chart/processing-strategies/strategies/bar-series.js +37 -24
  1594. package/esm/charts/xy-chart/processing-strategies/strategies/bar-series.js.map +2 -2
  1595. package/esm/charts/xy-chart/processing-strategies/strategies/dot-series.js +5 -2
  1596. package/esm/charts/xy-chart/processing-strategies/strategies/dot-series.js.map +2 -2
  1597. package/esm/charts/xy-chart/processing-strategies/strategies/line-series.js +114 -5
  1598. package/esm/charts/xy-chart/processing-strategies/strategies/line-series.js.map +2 -2
  1599. package/esm/charts/xy-chart/processing-strategies/strategies/rect-series.js +4 -1
  1600. package/esm/charts/xy-chart/processing-strategies/strategies/rect-series.js.map +2 -2
  1601. package/esm/charts/xy-chart/processing-strategies/utils/series-naming/get-series-name.js +25 -7
  1602. package/esm/charts/xy-chart/processing-strategies/utils/series-naming/get-series-name.js.map +2 -2
  1603. package/esm/charts/xy-chart/providers/XYChartAnnotationsShownIndicatorsProvider.js +7 -9
  1604. package/esm/charts/xy-chart/providers/XYChartAnnotationsShownIndicatorsProvider.js.map +2 -2
  1605. package/esm/charts/xy-chart/providers/XYChartAxesTicksProvider.js +41 -24
  1606. package/esm/charts/xy-chart/providers/XYChartAxesTicksProvider.js.map +2 -2
  1607. package/esm/charts/xy-chart/providers/XYChartOverlayPerformanceProvider.js +19 -62
  1608. package/esm/charts/xy-chart/providers/XYChartOverlayPerformanceProvider.js.map +2 -2
  1609. package/esm/charts/xy-chart/providers/XYChartScalesProvider.js +9 -2
  1610. package/esm/charts/xy-chart/providers/XYChartScalesProvider.js.map +2 -2
  1611. package/esm/charts/xy-chart/slots/Annotations/Marker.js.map +2 -2
  1612. package/esm/charts/xy-chart/types/xy-chart-internals.js.map +2 -2
  1613. package/esm/charts/xy-chart/utils/build-and-download-csv.js +2 -1
  1614. package/esm/charts/xy-chart/utils/build-and-download-csv.js.map +2 -2
  1615. package/esm/charts/xy-chart/utils/build-axis-id-to-min-bar-size.js +28 -0
  1616. package/esm/charts/xy-chart/utils/build-axis-id-to-min-bar-size.js.map +7 -0
  1617. package/esm/charts/xy-chart/utils/build-sorted-entries.js +63 -10
  1618. package/esm/charts/xy-chart/utils/build-sorted-entries.js.map +2 -2
  1619. package/esm/charts/xy-chart/utils/coloring/apply-color-rule-to-bar-series.js +40 -0
  1620. package/esm/charts/xy-chart/utils/coloring/apply-color-rule-to-bar-series.js.map +7 -0
  1621. package/esm/charts/xy-chart/utils/coloring/apply-color-rule-to-series-metadata.js +2 -1
  1622. package/esm/charts/xy-chart/utils/coloring/apply-color-rule-to-series-metadata.js.map +2 -2
  1623. package/esm/charts/xy-chart/utils/coloring/bar-datapoint-matches-color-rule.js +11 -0
  1624. package/esm/charts/xy-chart/utils/coloring/bar-datapoint-matches-color-rule.js.map +7 -0
  1625. package/esm/charts/xy-chart/utils/coloring/has-series-matching-datapoint.js +3 -1
  1626. package/esm/charts/xy-chart/utils/coloring/has-series-matching-datapoint.js.map +2 -2
  1627. package/esm/charts/xy-chart/utils/filter-out-of-range-ticks.js +28 -0
  1628. package/esm/charts/xy-chart/utils/filter-out-of-range-ticks.js.map +7 -0
  1629. package/esm/charts/xy-chart/utils/generate-scales-by-axis-id.js +19 -3
  1630. package/esm/charts/xy-chart/utils/generate-scales-by-axis-id.js.map +2 -2
  1631. package/esm/charts/xy-chart/utils/get-ticks-formatted-by-config.js +11 -0
  1632. package/esm/charts/xy-chart/utils/get-ticks-formatted-by-config.js.map +2 -2
  1633. package/esm/charts/xy-chart/utils/iterate-slots.js +2 -1
  1634. package/esm/charts/xy-chart/utils/iterate-slots.js.map +2 -2
  1635. package/esm/charts/xy-chart/utils/query-get-closest-point.js +59 -0
  1636. package/esm/charts/xy-chart/utils/query-get-closest-point.js.map +2 -2
  1637. package/esm/charts/xy-chart/utils/query-hovered-grid.js +176 -0
  1638. package/esm/charts/xy-chart/utils/query-hovered-grid.js.map +7 -0
  1639. package/esm/charts/xy-chart/utils/query-shared.js +53 -23
  1640. package/esm/charts/xy-chart/utils/query-shared.js.map +2 -2
  1641. package/esm/charts/xy-chart/utils/query-single.js +20 -2
  1642. package/esm/charts/xy-chart/utils/query-single.js.map +2 -2
  1643. package/esm/charts/xy-chart-adoption/categorical-bar/transformer-data-to-xy.js +31 -0
  1644. package/esm/charts/xy-chart-adoption/categorical-bar/transformer-data-to-xy.js.map +7 -0
  1645. package/esm/charts/xy-chart-adoption/histogram/HistogramToXY.js +21 -55
  1646. package/esm/charts/xy-chart-adoption/histogram/HistogramToXY.js.map +2 -2
  1647. package/esm/charts/xy-chart-adoption/histogram/transformer-annotations-to-xy.js +4 -18
  1648. package/esm/charts/xy-chart-adoption/histogram/transformer-annotations-to-xy.js.map +3 -3
  1649. package/esm/charts/xy-chart-adoption/histogram/transformer-thresholds-to-xy.js +16 -64
  1650. package/esm/charts/xy-chart-adoption/histogram/transformer-thresholds-to-xy.js.map +2 -2
  1651. package/esm/charts/xy-chart-adoption/shared/types/legacy-props.js +1 -0
  1652. package/esm/charts/xy-chart-adoption/shared/types/legacy-props.js.map +7 -0
  1653. package/esm/charts/xy-chart-adoption/shared/types/props.js.map +7 -0
  1654. package/esm/charts/xy-chart-adoption/shared/utils/render-xy-annotations.js +72 -0
  1655. package/esm/charts/xy-chart-adoption/shared/utils/render-xy-annotations.js.map +7 -0
  1656. package/esm/charts/xy-chart-adoption/shared/utils/thresholds/reduce-thresholds-to-xy.js +40 -0
  1657. package/esm/charts/xy-chart-adoption/shared/utils/thresholds/reduce-thresholds-to-xy.js.map +7 -0
  1658. package/esm/charts/xy-chart-adoption/timeseries/TimeseriesToXY.js +130 -49
  1659. package/esm/charts/xy-chart-adoption/timeseries/TimeseriesToXY.js.map +2 -2
  1660. package/esm/charts/xy-chart-adoption/timeseries/constants.js +60 -0
  1661. package/esm/charts/xy-chart-adoption/timeseries/constants.js.map +7 -0
  1662. package/esm/charts/xy-chart-adoption/timeseries/hooks/use-timeseries-chart-config.js +22 -0
  1663. package/esm/charts/xy-chart-adoption/timeseries/hooks/use-timeseries-chart-config.js.map +7 -0
  1664. package/esm/charts/xy-chart-adoption/timeseries/iterate-slots.js +48 -1
  1665. package/esm/charts/xy-chart-adoption/timeseries/iterate-slots.js.map +2 -2
  1666. package/esm/charts/xy-chart-adoption/timeseries/map-series-actions.js +2 -2
  1667. package/esm/charts/xy-chart-adoption/timeseries/map-series-actions.js.map +2 -2
  1668. package/esm/charts/xy-chart-adoption/timeseries/resolve-value-representation.js +7 -0
  1669. package/esm/charts/xy-chart-adoption/timeseries/resolve-value-representation.js.map +7 -0
  1670. package/esm/charts/xy-chart-adoption/timeseries/transformer-annotations-to-xy.js +36 -0
  1671. package/esm/charts/xy-chart-adoption/timeseries/transformer-annotations-to-xy.js.map +7 -0
  1672. package/esm/charts/xy-chart-adoption/timeseries/transformer-data-to-xy.js +11 -11
  1673. package/esm/charts/xy-chart-adoption/timeseries/transformer-data-to-xy.js.map +2 -2
  1674. package/esm/charts/xy-chart-adoption/timeseries/types/timeseries-config.js +1 -0
  1675. package/esm/charts/xy-chart-adoption/timeseries/types/timeseries-config.js.map +7 -0
  1676. package/esm/charts/xy-chart-adoption/timeseries/types/timeseries.js.map +2 -2
  1677. package/esm/charts/xy-chart-adoption/timeseries/types/toolbar.js +1 -0
  1678. package/esm/charts/xy-chart-adoption/timeseries/types/toolbar.js.map +7 -0
  1679. package/esm/charts/xy-chart-adoption/timeseries/utils/build-buckets.js +60 -0
  1680. package/esm/charts/xy-chart-adoption/timeseries/utils/build-buckets.js.map +7 -0
  1681. package/esm/charts/xy-chart-adoption/timeseries/utils/build-timeseries-imperative-handle.js +3 -2
  1682. package/esm/charts/xy-chart-adoption/timeseries/utils/build-timeseries-imperative-handle.js.map +2 -2
  1683. package/esm/charts/xy-chart-adoption/timeseries/utils/chart-configuration.js +288 -0
  1684. package/esm/charts/xy-chart-adoption/timeseries/utils/chart-configuration.js.map +7 -0
  1685. package/esm/charts/xy-chart-adoption/timeseries/utils/collect-annotations-slots.js +58 -0
  1686. package/esm/charts/xy-chart-adoption/timeseries/utils/collect-annotations-slots.js.map +7 -0
  1687. package/esm/charts/xy-chart-adoption/timeseries/utils/derive-xychart-props-from-config.js +12 -0
  1688. package/esm/charts/xy-chart-adoption/timeseries/utils/derive-xychart-props-from-config.js.map +7 -0
  1689. package/esm/charts/xy-chart-adoption/timeseries/utils/iterate-config-slots.js +173 -0
  1690. package/esm/charts/xy-chart-adoption/timeseries/utils/iterate-config-slots.js.map +7 -0
  1691. package/esm/charts/xy-chart-adoption/timeseries/utils/map-axis-slots.js +43 -0
  1692. package/esm/charts/xy-chart-adoption/timeseries/utils/map-axis-slots.js.map +7 -0
  1693. package/esm/charts/xy-chart-adoption/timeseries/utils/render-series.js +14 -2
  1694. package/esm/charts/xy-chart-adoption/timeseries/utils/render-series.js.map +2 -2
  1695. package/esm/charts/xy-chart-adoption/timeseries/utils/resolve-gap-policy.js +16 -0
  1696. package/esm/charts/xy-chart-adoption/timeseries/utils/resolve-gap-policy.js.map +7 -0
  1697. package/esm/charts/xy-chart-adoption/timeseries/utils/serialize-timeseries-config.js +19 -0
  1698. package/esm/charts/xy-chart-adoption/timeseries/utils/serialize-timeseries-config.js.map +7 -0
  1699. package/esm/charts/xy-chart-adoption/timeseries/utils/transformer-thresholds-to-xy.js +20 -0
  1700. package/esm/charts/xy-chart-adoption/timeseries/utils/transformer-thresholds-to-xy.js.map +7 -0
  1701. package/esm/content/accordion/Accordion.css +14 -14
  1702. package/esm/content/accordion/Accordion.sty.js +8 -8
  1703. package/esm/content/accordion/Accordion.sty.js.map +1 -1
  1704. package/esm/content/accordion/AccordionSection.js +1 -1
  1705. package/esm/content/accordion/AccordionSection.js.map +2 -2
  1706. package/esm/content/ai-loading-indicator/AiLoadingIndicator.css +12 -12
  1707. package/esm/content/ai-loading-indicator/AiLoadingIndicator.sty.js +4 -4
  1708. package/esm/content/ai-loading-indicator/AiLoadingIndicator.sty.js.map +1 -1
  1709. package/esm/content/ai-response/AiResponse.css +5 -5
  1710. package/esm/content/ai-response/AiResponse.sty.js +3 -2
  1711. package/esm/content/ai-response/AiResponse.sty.js.map +2 -2
  1712. package/esm/content/avatar/Avatar.css +13 -13
  1713. package/esm/content/avatar/Avatar.sty.js +4 -4
  1714. package/esm/content/avatar/Avatar.sty.js.map +1 -1
  1715. package/esm/content/avatar-group/AvatarGroup.css +3 -3
  1716. package/esm/content/avatar-group/AvatarGroup.sty.js +2 -2
  1717. package/esm/content/avatar-group/AvatarGroup.sty.js.map +1 -1
  1718. package/esm/content/chip/BaseChip.css +40 -40
  1719. package/esm/content/chip/BaseChip.sty.js +5 -5
  1720. package/esm/content/chip/BaseChip.sty.js.map +1 -1
  1721. package/esm/content/chip/ChipContent.css +11 -11
  1722. package/esm/content/chip/ChipContent.sty.js +2 -2
  1723. package/esm/content/chip/ChipContent.sty.js.map +1 -1
  1724. package/esm/content/chip/ChipDeleteButton.css +19 -19
  1725. package/esm/content/chip/ChipDeleteButton.sty.js +4 -4
  1726. package/esm/content/chip/ChipDeleteButton.sty.js.map +1 -1
  1727. package/esm/content/chip/ChipKey.css +6 -6
  1728. package/esm/content/chip/ChipKey.sty.js +1 -1
  1729. package/esm/content/chip/ChipKey.sty.js.map +1 -1
  1730. package/esm/content/chip/GroupedChip.css +3 -3
  1731. package/esm/content/chip/GroupedChip.sty.js +3 -3
  1732. package/esm/content/chip/GroupedChip.sty.js.map +1 -1
  1733. package/esm/content/chip-group/ChipGroup.css +4 -4
  1734. package/esm/content/chip-group/ChipGroup.js +36 -49
  1735. package/esm/content/chip-group/ChipGroup.js.map +2 -2
  1736. package/esm/content/chip-group/ChipGroup.sty.js +1 -1
  1737. package/esm/content/chip-group/ChipGroup.sty.js.map +1 -1
  1738. package/esm/content/chip-group/Control.css +4 -4
  1739. package/esm/content/chip-group/Control.sty.js +1 -1
  1740. package/esm/content/chip-group/Control.sty.js.map +1 -1
  1741. package/esm/content/chip-group/chip-group-utils.js +34 -0
  1742. package/esm/content/chip-group/chip-group-utils.js.map +7 -0
  1743. package/esm/content/chip-group/state/chip-group-state-reducer.js.map +1 -1
  1744. package/esm/content/code-snippet/CodeHighlight.css +25 -26
  1745. package/esm/content/code-snippet/CodeHighlight.sty.js +10 -6
  1746. package/esm/content/code-snippet/CodeHighlight.sty.js.map +2 -2
  1747. package/esm/content/code-snippet/CodeSnippet.css +31 -5
  1748. package/esm/content/code-snippet/CodeSnippet.js +6 -2
  1749. package/esm/content/code-snippet/CodeSnippet.js.map +2 -2
  1750. package/esm/content/code-snippet/CodeSnippet.sty.js +8 -3
  1751. package/esm/content/code-snippet/CodeSnippet.sty.js.map +2 -2
  1752. package/esm/content/empty-state/EmptyState.css +28 -28
  1753. package/esm/content/empty-state/EmptyState.sty.js +7 -7
  1754. package/esm/content/empty-state/EmptyState.sty.js.map +1 -1
  1755. package/esm/content/empty-state/EmptyStateWrapper.js +1 -1
  1756. package/esm/content/empty-state/EmptyStateWrapper.js.map +2 -2
  1757. package/esm/content/empty-state/empty-state-utils.js +2 -9
  1758. package/esm/content/empty-state/empty-state-utils.js.map +2 -2
  1759. package/esm/content/empty-state/slot-components/Footer.css +1 -1
  1760. package/esm/content/empty-state/slot-components/Footer.sty.js +1 -1
  1761. package/esm/content/empty-state/slot-components/Footer.sty.js.map +1 -1
  1762. package/esm/content/empty-state/slot-components/Visual.css +3 -3
  1763. package/esm/content/empty-state/slot-components/Visual.sty.js +1 -1
  1764. package/esm/content/empty-state/slot-components/Visual.sty.js.map +1 -1
  1765. package/esm/content/expandable-text/ExpandableText.css +7 -7
  1766. package/esm/content/expandable-text/ExpandableText.sty.js +2 -2
  1767. package/esm/content/expandable-text/ExpandableText.sty.js.map +1 -1
  1768. package/esm/content/feature-highlight/FeatureHighlight.css +12 -12
  1769. package/esm/content/feature-highlight/FeatureHighlight.js +9 -5
  1770. package/esm/content/feature-highlight/FeatureHighlight.js.map +2 -2
  1771. package/esm/content/feature-highlight/FeatureHighlight.sty.js +3 -3
  1772. package/esm/content/feature-highlight/FeatureHighlight.sty.js.map +1 -1
  1773. package/esm/content/health-indicator/styles.css +23 -23
  1774. package/esm/content/health-indicator/styles.sty.js +1 -1
  1775. package/esm/content/health-indicator/styles.sty.js.map +1 -1
  1776. package/esm/content/index.js.map +2 -2
  1777. package/esm/content/information-overlay/InformationOverlay.css +25 -25
  1778. package/esm/content/information-overlay/InformationOverlay.sty.js +5 -5
  1779. package/esm/content/information-overlay/InformationOverlay.sty.js.map +1 -1
  1780. package/esm/content/keyboard-shortcut/KeyboardShortcut.css +14 -14
  1781. package/esm/content/keyboard-shortcut/KeyboardShortcut.sty.js +2 -2
  1782. package/esm/content/keyboard-shortcut/KeyboardShortcut.sty.js.map +1 -1
  1783. package/esm/content/markdown/Markdown.css +3 -3
  1784. package/esm/content/markdown/Markdown.sty.js +1 -1
  1785. package/esm/content/markdown/Markdown.sty.js.map +1 -1
  1786. package/esm/content/markdown/transformers/typography-mapping.css +9 -9
  1787. package/esm/content/markdown/transformers/typography-mapping.sty.js +6 -6
  1788. package/esm/content/markdown/transformers/typography-mapping.sty.js.map +1 -1
  1789. package/esm/content/microguide/Microguide.css +11 -11
  1790. package/esm/content/microguide/Microguide.sty.js +7 -7
  1791. package/esm/content/microguide/Microguide.sty.js.map +1 -1
  1792. package/esm/content/progress/ProgressBar.css +71 -71
  1793. package/esm/content/progress/ProgressBar.sty.js +5 -5
  1794. package/esm/content/progress/ProgressBar.sty.js.map +1 -1
  1795. package/esm/content/progress/ProgressBarIcon.css +2 -2
  1796. package/esm/content/progress/ProgressBarIcon.sty.js +1 -1
  1797. package/esm/content/progress/ProgressBarIcon.sty.js.map +1 -1
  1798. package/esm/content/progress/ProgressBarLabel.css +3 -3
  1799. package/esm/content/progress/ProgressBarLabel.sty.js +1 -1
  1800. package/esm/content/progress/ProgressBarLabel.sty.js.map +1 -1
  1801. package/esm/content/progress/ProgressBarValue.css +5 -5
  1802. package/esm/content/progress/ProgressBarValue.sty.js +1 -1
  1803. package/esm/content/progress/ProgressBarValue.sty.js.map +1 -1
  1804. package/esm/content/progress/ProgressCircle.css +40 -40
  1805. package/esm/content/progress/ProgressCircle.sty.js +5 -5
  1806. package/esm/content/progress/ProgressCircle.sty.js.map +1 -1
  1807. package/esm/content/release-phase-indicator/ReleasePhaseIndicator.js +4 -2
  1808. package/esm/content/release-phase-indicator/ReleasePhaseIndicator.js.map +2 -2
  1809. package/esm/content/release-phase-indicator/messages.js +5 -0
  1810. package/esm/content/release-phase-indicator/messages.js.map +2 -2
  1811. package/esm/content/shared-components/Visual.css +3 -3
  1812. package/esm/content/shared-components/Visual.sty.js +1 -1
  1813. package/esm/content/shared-components/Visual.sty.js.map +1 -1
  1814. package/esm/content/skeleton/Skeleton.css +7 -7
  1815. package/esm/content/skeleton/Skeleton.sty.js +5 -5
  1816. package/esm/content/skeleton/Skeleton.sty.js.map +1 -1
  1817. package/esm/content/terminology-overlay/TerminologyOverlay.css +4 -4
  1818. package/esm/content/terminology-overlay/TerminologyOverlay.sty.js +1 -1
  1819. package/esm/content/terminology-overlay/TerminologyOverlay.sty.js.map +1 -1
  1820. package/esm/core/components/app-root/AppRoot.css +12 -2
  1821. package/esm/core/components/app-root/AppRoot.js +3 -2
  1822. package/esm/core/components/app-root/AppRoot.js.map +2 -2
  1823. package/esm/core/components/app-root/AppRoot.sty.js +1 -1
  1824. package/esm/core/components/app-root/AppRoot.sty.js.map +1 -1
  1825. package/esm/core/components/app-root/visual-refresh-overrides.js +6 -0
  1826. package/esm/core/components/app-root/visual-refresh-overrides.js.map +2 -2
  1827. package/esm/core/components/error-fallback/ErrorFallback.js.map +7 -0
  1828. package/esm/{filters/filter-field → core/components}/error-fallback/messages.js +4 -4
  1829. package/esm/core/components/error-fallback/messages.js.map +7 -0
  1830. package/esm/core/components/visually-hidden/VisuallyHidden.css +1 -1
  1831. package/esm/core/components/visually-hidden/VisuallyHidden.sty.js +1 -1
  1832. package/esm/core/components/visually-hidden/VisuallyHidden.sty.js.map +1 -1
  1833. package/esm/core/dql/dql-common.js +6 -2
  1834. package/esm/core/dql/dql-common.js.map +2 -2
  1835. package/esm/core/hooks/useFormControlState.js.map +2 -2
  1836. package/esm/core/hooks/useResizeObserver.js +124 -0
  1837. package/esm/core/hooks/useResizeObserver.js.map +7 -0
  1838. package/esm/core/hooks/useVisualRefreshEnabled.js +14 -0
  1839. package/esm/core/hooks/useVisualRefreshEnabled.js.map +7 -0
  1840. package/esm/core/index.js +12 -0
  1841. package/esm/core/index.js.map +2 -2
  1842. package/esm/core/sdk/app-state/AppStateContext.js +27 -0
  1843. package/esm/core/sdk/app-state/AppStateContext.js.map +7 -0
  1844. package/esm/core/sdk/app-state/AppStateProvider.js +87 -0
  1845. package/esm/core/sdk/app-state/AppStateProvider.js.map +7 -0
  1846. package/esm/core/sdk/app-state/app-state-store.js +12 -0
  1847. package/esm/core/sdk/app-state/app-state-store.js.map +7 -0
  1848. package/esm/core/sdk/app-state/useAppState.js +26 -0
  1849. package/esm/core/sdk/app-state/useAppState.js.map +7 -0
  1850. package/esm/core/sdk/app-state/useAppStateInternal.js +125 -0
  1851. package/esm/core/sdk/app-state/useAppStateInternal.js.map +7 -0
  1852. package/esm/core/sdk/app-state/useAppStateValue.js +14 -0
  1853. package/esm/core/sdk/app-state/useAppStateValue.js.map +7 -0
  1854. package/esm/core/sdk/sdk-logger.js +2 -2
  1855. package/esm/core/styles/defaultChartValues.css +1 -1
  1856. package/esm/core/styles/defaultChartValues.sty.js +1 -1
  1857. package/esm/core/styles/defaultChartValues.sty.js.map +1 -1
  1858. package/esm/core/styles/focusRing.css +66 -66
  1859. package/esm/core/styles/focusRing.sty.js +2 -2
  1860. package/esm/core/styles/focusRing.sty.js.map +1 -1
  1861. package/esm/core/styles/focusRingStatic.css +34 -34
  1862. package/esm/core/styles/focusRingStatic.sty.js +1 -1
  1863. package/esm/core/styles/focusRingStatic.sty.js.map +1 -1
  1864. package/esm/core/styles/virtualFocus.css +2 -2
  1865. package/esm/core/styles/virtualFocus.sty.js +1 -1
  1866. package/esm/core/styles/virtualFocus.sty.js.map +1 -1
  1867. package/esm/core/time/timeframeStore/actions/dateTimePicker.js +5 -4
  1868. package/esm/core/time/timeframeStore/actions/dateTimePicker.js.map +2 -2
  1869. package/esm/core/time/timeframeStore/actions/timeframeSelector.js +5 -2
  1870. package/esm/core/time/timeframeStore/actions/timeframeSelector.js.map +2 -2
  1871. package/esm/core/time/validation.js +49 -4
  1872. package/esm/core/time/validation.js.map +2 -2
  1873. package/esm/core/utils/colorUtils.css +60 -60
  1874. package/esm/core/utils/colorUtils.sty.js +2 -2
  1875. package/esm/core/utils/colorUtils.sty.js.map +1 -1
  1876. package/esm/{charts/core → core}/utils/get-tick-value-as-number.js.map +1 -1
  1877. package/esm/core/utils/get-ticks.js +12 -0
  1878. package/esm/core/utils/get-ticks.js.map +7 -0
  1879. package/esm/editors/base-code-editor/BaseCodeEditor.css +152 -143
  1880. package/esm/editors/base-code-editor/BaseCodeEditor.js +184 -22
  1881. package/esm/editors/base-code-editor/BaseCodeEditor.js.map +2 -2
  1882. package/esm/editors/base-code-editor/BaseCodeEditor.sty.js +2 -2
  1883. package/esm/editors/base-code-editor/BaseCodeEditor.sty.js.map +1 -1
  1884. package/esm/editors/base-code-editor/configuration/configure-format-keymap.js +22 -0
  1885. package/esm/editors/base-code-editor/configuration/configure-format-keymap.js.map +7 -0
  1886. package/esm/editors/base-code-editor/configuration/configure-placeholder.js +34 -3
  1887. package/esm/editors/base-code-editor/configuration/configure-placeholder.js.map +2 -2
  1888. package/esm/editors/base-code-editor/configuration/getDefaultConfigurations.js +103 -7
  1889. package/esm/editors/base-code-editor/configuration/getDefaultConfigurations.js.map +2 -2
  1890. package/esm/editors/base-code-editor/utils/compute-minimal-change.js +17 -0
  1891. package/esm/editors/base-code-editor/utils/compute-minimal-change.js.map +7 -0
  1892. package/esm/editors/base-code-editor/utils/key-maps.js +2 -0
  1893. package/esm/editors/base-code-editor/utils/key-maps.js.map +2 -2
  1894. package/esm/editors/base-code-editor/utils/run-foldings.js +38 -16
  1895. package/esm/editors/base-code-editor/utils/run-foldings.js.map +2 -2
  1896. package/esm/editors/code-editor/CodeEditor.js +27 -2
  1897. package/esm/editors/code-editor/CodeEditor.js.map +2 -2
  1898. package/esm/editors/dql-editor/DQLEditor.js +67 -15
  1899. package/esm/editors/dql-editor/DQLEditor.js.map +2 -2
  1900. package/esm/editors/dql-editor/actions-menu/ActionsMenu.css +27 -13
  1901. package/esm/editors/dql-editor/actions-menu/ActionsMenu.js +19 -1
  1902. package/esm/editors/dql-editor/actions-menu/ActionsMenu.js.map +2 -2
  1903. package/esm/editors/dql-editor/actions-menu/ActionsMenu.sty.js +8 -5
  1904. package/esm/editors/dql-editor/actions-menu/ActionsMenu.sty.js.map +2 -2
  1905. package/esm/editors/dql-editor/actions-menu/actions-menu-messages.js +5 -0
  1906. package/esm/editors/dql-editor/actions-menu/actions-menu-messages.js.map +2 -2
  1907. package/esm/editors/dql-editor/dql/SuggestionPart.css +1 -1
  1908. package/esm/editors/dql-editor/dql/SuggestionPart.sty.js +1 -1
  1909. package/esm/editors/dql-editor/dql/SuggestionPart.sty.js.map +1 -1
  1910. package/esm/editors/dql-editor/dql/SuggestionsInfoSection.css +7 -7
  1911. package/esm/editors/dql-editor/dql/SuggestionsInfoSection.js +10 -1
  1912. package/esm/editors/dql-editor/dql/SuggestionsInfoSection.js.map +2 -2
  1913. package/esm/editors/dql-editor/dql/SuggestionsInfoSection.sty.js +3 -3
  1914. package/esm/editors/dql-editor/dql/SuggestionsInfoSection.sty.js.map +1 -1
  1915. package/esm/editors/dql-editor/dql/dql-fold-service.js +163 -0
  1916. package/esm/editors/dql-editor/dql/dql-fold-service.js.map +7 -0
  1917. package/esm/editors/dql-editor/dql/dql-language.js +5 -2
  1918. package/esm/editors/dql-editor/dql/dql-language.js.map +2 -2
  1919. package/esm/editors/dql-editor/dql/get-suggestions.js +1 -2
  1920. package/esm/editors/dql-editor/dql/get-suggestions.js.map +2 -2
  1921. package/esm/editors/dql-editor/dql/open-autocomplete.js +24 -3
  1922. package/esm/editors/dql-editor/dql/open-autocomplete.js.map +2 -2
  1923. package/esm/editors/dql-editor/dql/suggestion-autocompletions.js +33 -16
  1924. package/esm/editors/dql-editor/dql/suggestion-autocompletions.js.map +3 -3
  1925. package/esm/editors/index.js.map +2 -2
  1926. package/esm/filters/filter-field/FilterField.css +151 -119
  1927. package/esm/filters/filter-field/FilterField.js +96 -43
  1928. package/esm/filters/filter-field/FilterField.js.map +2 -2
  1929. package/esm/filters/filter-field/FilterField.sty.js +28 -28
  1930. package/esm/filters/filter-field/FilterField.sty.js.map +1 -1
  1931. package/esm/filters/filter-field/components/FilterFieldSuffixButtons.css +3 -3
  1932. package/esm/filters/filter-field/components/FilterFieldSuffixButtons.sty.js +3 -3
  1933. package/esm/filters/filter-field/components/FilterFieldSuffixButtons.sty.js.map +1 -1
  1934. package/esm/filters/filter-field/components/FilterStatement.css +17 -13
  1935. package/esm/filters/filter-field/components/FilterStatement.js +124 -28
  1936. package/esm/filters/filter-field/components/FilterStatement.js.map +3 -3
  1937. package/esm/filters/filter-field/components/FilterStatement.sty.js +8 -6
  1938. package/esm/filters/filter-field/components/FilterStatement.sty.js.map +2 -2
  1939. package/esm/filters/filter-field/hooks/recent-and-pinned/usePinnedFilterSuggestions.js +1 -1
  1940. package/esm/filters/filter-field/hooks/recent-and-pinned/usePinnedFilterSuggestions.js.map +2 -2
  1941. package/esm/filters/filter-field/hooks/recent-and-pinned/usePinnedFilters.js +35 -28
  1942. package/esm/filters/filter-field/hooks/recent-and-pinned/usePinnedFilters.js.map +2 -2
  1943. package/esm/filters/filter-field/hooks/recent-and-pinned/useRecentFilters.js +24 -22
  1944. package/esm/filters/filter-field/hooks/recent-and-pinned/useRecentFilters.js.map +2 -2
  1945. package/esm/filters/filter-field/hooks/useSuggestions.js +2 -7
  1946. package/esm/filters/filter-field/hooks/useSuggestions.js.map +2 -2
  1947. package/esm/filters/filter-field/state/recent-pinned-store.js +11 -51
  1948. package/esm/filters/filter-field/state/recent-pinned-store.js.map +2 -2
  1949. package/esm/filters/filter-field/suggestions/RecentPinnedSuggestionItem.css +9 -9
  1950. package/esm/filters/filter-field/suggestions/RecentPinnedSuggestionItem.js +1 -1
  1951. package/esm/filters/filter-field/suggestions/RecentPinnedSuggestionItem.js.map +1 -1
  1952. package/esm/filters/filter-field/suggestions/RecentPinnedSuggestionItem.sty.js +2 -2
  1953. package/esm/filters/filter-field/suggestions/RecentPinnedSuggestionItem.sty.js.map +1 -1
  1954. package/esm/filters/filter-field/suggestions/Suggestion.css +24 -24
  1955. package/esm/filters/filter-field/suggestions/Suggestion.sty.js +16 -16
  1956. package/esm/filters/filter-field/suggestions/Suggestion.sty.js.map +1 -1
  1957. package/esm/filters/filter-field/suggestions/SuggestionDetails.css +2 -2
  1958. package/esm/filters/filter-field/suggestions/SuggestionDetails.sty.js +2 -2
  1959. package/esm/filters/filter-field/suggestions/SuggestionDetails.sty.js.map +1 -1
  1960. package/esm/filters/filter-field/suggestions/SuggestionGroup.css +6 -6
  1961. package/esm/filters/filter-field/suggestions/SuggestionGroup.sty.js +3 -3
  1962. package/esm/filters/filter-field/suggestions/SuggestionGroup.sty.js.map +1 -1
  1963. package/esm/filters/filter-field/suggestions/SuggestionGroupLabel.css +1 -1
  1964. package/esm/filters/filter-field/suggestions/SuggestionGroupLabel.sty.js +1 -1
  1965. package/esm/filters/filter-field/suggestions/SuggestionGroupLabel.sty.js.map +1 -1
  1966. package/esm/filters/filter-field/suggestions/SuggestionPin.js +5 -9
  1967. package/esm/filters/filter-field/suggestions/SuggestionPin.js.map +2 -2
  1968. package/esm/filters/filter-field/suggestions/SuggestionTips.css +7 -7
  1969. package/esm/filters/filter-field/suggestions/SuggestionTips.sty.js +5 -5
  1970. package/esm/filters/filter-field/suggestions/SuggestionTips.sty.js.map +1 -1
  1971. package/esm/filters/filter-field/suggestions/SuggestionsOverlay.css +7 -7
  1972. package/esm/filters/filter-field/suggestions/SuggestionsOverlay.sty.js +5 -5
  1973. package/esm/filters/filter-field/suggestions/SuggestionsOverlay.sty.js.map +1 -1
  1974. package/esm/filters/filter-field/utils/conversion/lezer-tree-conversion/parent-node/group.js +7 -1
  1975. package/esm/filters/filter-field/utils/conversion/lezer-tree-conversion/parent-node/group.js.map +2 -2
  1976. package/esm/filters/filter-field/utils/conversion/lezer-tree-conversion/parent-node/statement.js +6 -1
  1977. package/esm/filters/filter-field/utils/conversion/lezer-tree-conversion/parent-node/statement.js.map +2 -2
  1978. package/esm/filters/filter-field/utils/conversion/tree-precedence.js +1 -1
  1979. package/esm/filters/filter-field/utils/conversion/tree-precedence.js.map +2 -2
  1980. package/esm/filters/filter-field/utils/statement-status-registry.js +5 -0
  1981. package/esm/filters/filter-field/utils/statement-status-registry.js.map +7 -0
  1982. package/esm/filters/segment-selector/SegmentSelector.css +4 -4
  1983. package/esm/filters/segment-selector/SegmentSelector.js +113 -15
  1984. package/esm/filters/segment-selector/SegmentSelector.js.map +2 -2
  1985. package/esm/filters/segment-selector/SegmentSelector.sty.js +4 -4
  1986. package/esm/filters/segment-selector/SegmentSelector.sty.js.map +1 -1
  1987. package/esm/filters/segment-selector/contexts/SegmentsCache/SegmentsCache.js +1 -17
  1988. package/esm/filters/segment-selector/contexts/SegmentsCache/SegmentsCache.js.map +2 -2
  1989. package/esm/filters/segment-selector/contexts/SegmentsUI/SegmentsUIReducer.js +14 -11
  1990. package/esm/filters/segment-selector/contexts/SegmentsUI/SegmentsUIReducer.js.map +3 -3
  1991. package/esm/filters/segment-selector/contexts/SegmentsUI/segmentValidationHelper.js +71 -10
  1992. package/esm/filters/segment-selector/contexts/SegmentsUI/segmentValidationHelper.js.map +2 -2
  1993. package/esm/filters/segment-selector/parts/EmptySegments.css +1 -1
  1994. package/esm/filters/segment-selector/parts/EmptySegments.sty.js +1 -1
  1995. package/esm/filters/segment-selector/parts/EmptySegments.sty.js.map +1 -1
  1996. package/esm/filters/segment-selector/parts/Overlay.css +8 -8
  1997. package/esm/filters/segment-selector/parts/Overlay.js +2 -1
  1998. package/esm/filters/segment-selector/parts/Overlay.js.map +2 -2
  1999. package/esm/filters/segment-selector/parts/Overlay.sty.js +8 -8
  2000. package/esm/filters/segment-selector/parts/Overlay.sty.js.map +1 -1
  2001. package/esm/filters/segment-selector/parts/ShowMorePanel/ShowMorePanel.css +4 -4
  2002. package/esm/filters/segment-selector/parts/ShowMorePanel/ShowMorePanel.sty.js +4 -4
  2003. package/esm/filters/segment-selector/parts/ShowMorePanel/ShowMorePanel.sty.js.map +1 -1
  2004. package/esm/filters/segment-selector/parts/segmentsPresets/SegmentsPresets.css +32 -32
  2005. package/esm/filters/segment-selector/parts/segmentsPresets/SegmentsPresets.sty.js +10 -10
  2006. package/esm/filters/segment-selector/parts/segmentsPresets/SegmentsPresets.sty.js.map +1 -1
  2007. package/esm/filters/segment-selector/parts/selectionBar/SegmentSelect.css +22 -22
  2008. package/esm/filters/segment-selector/parts/selectionBar/SegmentSelect.sty.js +7 -7
  2009. package/esm/filters/segment-selector/parts/selectionBar/SegmentSelect.sty.js.map +1 -1
  2010. package/esm/filters/segment-selector/parts/selectionBar/SegmentSelectorTrigger.css +1 -1
  2011. package/esm/filters/segment-selector/parts/selectionBar/SegmentSelectorTrigger.sty.js +1 -1
  2012. package/esm/filters/segment-selector/parts/selectionBar/SegmentSelectorTrigger.sty.js.map +1 -1
  2013. package/esm/filters/segment-selector/parts/selectionBar/SelectionBar.js +40 -27
  2014. package/esm/filters/segment-selector/parts/selectionBar/SelectionBar.js.map +2 -2
  2015. package/esm/filters/segment-selector/parts/selectionBar/ValueSelect.js +107 -59
  2016. package/esm/filters/segment-selector/parts/selectionBar/ValueSelect.js.map +3 -3
  2017. package/esm/filters/segment-selector/segmentMessages.js +5 -0
  2018. package/esm/filters/segment-selector/segmentMessages.js.map +2 -2
  2019. package/esm/filters/segment-selector/utils.js +2 -1
  2020. package/esm/filters/segment-selector/utils.js.map +2 -2
  2021. package/esm/filters/timeframe-selector/TimeframeSelector.css +2 -2
  2022. package/esm/filters/timeframe-selector/TimeframeSelector.js +14 -10
  2023. package/esm/filters/timeframe-selector/TimeframeSelector.js.map +2 -2
  2024. package/esm/filters/timeframe-selector/TimeframeSelector.sty.js +2 -2
  2025. package/esm/filters/timeframe-selector/TimeframeSelector.sty.js.map +1 -1
  2026. package/esm/filters/timeframe-selector/TimeframeSelectorRoot.js +200 -21
  2027. package/esm/filters/timeframe-selector/TimeframeSelectorRoot.js.map +2 -2
  2028. package/esm/filters/timeframe-selector/components/custom-timeframe-selector/CustomTimeframeSelector.css +4 -4
  2029. package/esm/filters/timeframe-selector/components/custom-timeframe-selector/CustomTimeframeSelector.js +25 -3
  2030. package/esm/filters/timeframe-selector/components/custom-timeframe-selector/CustomTimeframeSelector.js.map +2 -2
  2031. package/esm/filters/timeframe-selector/components/custom-timeframe-selector/CustomTimeframeSelector.sty.js +3 -3
  2032. package/esm/filters/timeframe-selector/components/custom-timeframe-selector/CustomTimeframeSelector.sty.js.map +1 -1
  2033. package/esm/filters/timeframe-selector/components/overlay/TimeframeSelectorOverlay.css +4 -4
  2034. package/esm/filters/timeframe-selector/components/overlay/TimeframeSelectorOverlay.sty.js +4 -4
  2035. package/esm/filters/timeframe-selector/components/overlay/TimeframeSelectorOverlay.sty.js.map +1 -1
  2036. package/esm/filters/timeframe-selector/components/presets/Presets.css +27 -27
  2037. package/esm/filters/timeframe-selector/components/presets/Presets.sty.js +11 -11
  2038. package/esm/filters/timeframe-selector/components/presets/Presets.sty.js.map +1 -1
  2039. package/esm/filters/timeframe-selector/components/stepper/StepperButton.js +2 -2
  2040. package/esm/filters/timeframe-selector/components/stepper/StepperButton.js.map +2 -2
  2041. package/esm/filters/timeframe-selector/components/trigger/Trigger.css +11 -11
  2042. package/esm/filters/timeframe-selector/components/trigger/Trigger.js +2 -2
  2043. package/esm/filters/timeframe-selector/components/trigger/Trigger.js.map +2 -2
  2044. package/esm/filters/timeframe-selector/components/trigger/Trigger.sty.js +4 -4
  2045. package/esm/filters/timeframe-selector/components/trigger/Trigger.sty.js.map +1 -1
  2046. package/esm/filters/timeframe-selector/utils/stepper-helpers.js +10 -17
  2047. package/esm/filters/timeframe-selector/utils/stepper-helpers.js.map +2 -2
  2048. package/esm/forms/_base-input/BaseInput.css +99 -99
  2049. package/esm/forms/_base-input/BaseInput.js +55 -25
  2050. package/esm/forms/_base-input/BaseInput.js.map +2 -2
  2051. package/esm/forms/_base-input/BaseInput.sty.js +11 -11
  2052. package/esm/forms/_base-input/BaseInput.sty.js.map +1 -1
  2053. package/esm/forms/_base-input/BaseInputContent.css +7 -7
  2054. package/esm/forms/_base-input/BaseInputContent.sty.js +1 -1
  2055. package/esm/forms/_base-input/BaseInputContent.sty.js.map +1 -1
  2056. package/esm/forms/calendar/Calendar.css +48 -48
  2057. package/esm/forms/calendar/Calendar.js +13 -5
  2058. package/esm/forms/calendar/Calendar.js.map +2 -2
  2059. package/esm/forms/calendar/Calendar.sty.js +12 -12
  2060. package/esm/forms/calendar/Calendar.sty.js.map +1 -1
  2061. package/esm/forms/calendar/CalendarRoot.js +69 -14
  2062. package/esm/forms/calendar/CalendarRoot.js.map +2 -2
  2063. package/esm/forms/calendar/components/CalendarItem.css +7 -7
  2064. package/esm/forms/calendar/components/CalendarItem.sty.js +4 -4
  2065. package/esm/forms/calendar/components/CalendarItem.sty.js.map +1 -1
  2066. package/esm/forms/calendar/components/CalendarOutlineIcon.css +8 -8
  2067. package/esm/forms/calendar/components/CalendarOutlineIcon.sty.js +5 -5
  2068. package/esm/forms/calendar/components/CalendarOutlineIcon.sty.js.map +1 -1
  2069. package/esm/forms/calendar/variables.sty.js +2 -2
  2070. package/esm/forms/calendar/variables.sty.js.map +1 -1
  2071. package/esm/forms/checkbox/Checkbox.css +20 -20
  2072. package/esm/forms/checkbox/Checkbox.js +49 -24
  2073. package/esm/forms/checkbox/Checkbox.js.map +2 -2
  2074. package/esm/forms/checkbox/Checkbox.sty.js +3 -3
  2075. package/esm/forms/checkbox/Checkbox.sty.js.map +1 -1
  2076. package/esm/forms/date-time-picker/DateSelector.js +2 -2
  2077. package/esm/forms/date-time-picker/DateSelector.js.map +2 -2
  2078. package/esm/forms/date-time-picker/DateTimePicker.css +75 -75
  2079. package/esm/forms/date-time-picker/DateTimePicker.js +17 -14
  2080. package/esm/forms/date-time-picker/DateTimePicker.js.map +2 -2
  2081. package/esm/forms/date-time-picker/DateTimePicker.sty.js +6 -6
  2082. package/esm/forms/date-time-picker/DateTimePicker.sty.js.map +1 -1
  2083. package/esm/forms/date-time-picker/DateTimePickerRoot.js +86 -28
  2084. package/esm/forms/date-time-picker/DateTimePickerRoot.js.map +2 -2
  2085. package/esm/forms/date-time-range-picker/DateRangeSelector.css +1 -1
  2086. package/esm/forms/date-time-range-picker/DateRangeSelector.js +3 -3
  2087. package/esm/forms/date-time-range-picker/DateRangeSelector.js.map +2 -2
  2088. package/esm/forms/date-time-range-picker/DateRangeSelector.sty.js +1 -1
  2089. package/esm/forms/date-time-range-picker/DateRangeSelector.sty.js.map +1 -1
  2090. package/esm/forms/date-time-range-picker/DateTimeInput.css +11 -11
  2091. package/esm/forms/date-time-range-picker/DateTimeInput.js +27 -13
  2092. package/esm/forms/date-time-range-picker/DateTimeInput.js.map +2 -2
  2093. package/esm/forms/date-time-range-picker/DateTimeInput.sty.js +3 -3
  2094. package/esm/forms/date-time-range-picker/DateTimeInput.sty.js.map +1 -1
  2095. package/esm/forms/date-time-range-picker/DateTimeRangePicker.css +27 -27
  2096. package/esm/forms/date-time-range-picker/DateTimeRangePicker.js +9 -11
  2097. package/esm/forms/date-time-range-picker/DateTimeRangePicker.js.map +2 -2
  2098. package/esm/forms/date-time-range-picker/DateTimeRangePicker.sty.js +4 -4
  2099. package/esm/forms/date-time-range-picker/DateTimeRangePicker.sty.js.map +1 -1
  2100. package/esm/forms/date-time-range-picker/DateTimeRangePickerRoot.js +125 -20
  2101. package/esm/forms/date-time-range-picker/DateTimeRangePickerRoot.js.map +2 -2
  2102. package/esm/forms/forms-core/components/field-set/FieldSet.css +2 -2
  2103. package/esm/forms/forms-core/components/field-set/FieldSet.sty.js +2 -2
  2104. package/esm/forms/forms-core/components/field-set/FieldSet.sty.js.map +1 -1
  2105. package/esm/forms/forms-core/components/form-field/FormField.js +3 -1
  2106. package/esm/forms/forms-core/components/form-field/FormField.js.map +2 -2
  2107. package/esm/forms/forms-core/components/form-field/FormField.sty.js +1 -1
  2108. package/esm/forms/forms-core/components/form-field/FormField.sty.js.map +1 -1
  2109. package/esm/forms/forms-core/components/form-field/FormFieldContextProvider.js +82 -16
  2110. package/esm/forms/forms-core/components/form-field/FormFieldContextProvider.js.map +2 -2
  2111. package/esm/forms/forms-core/components/form-field/FormFieldMessageContextProvider.js +45 -7
  2112. package/esm/forms/forms-core/components/form-field/FormFieldMessageContextProvider.js.map +2 -2
  2113. package/esm/forms/forms-core/components/form-field-group/FormFieldGroup.js +149 -0
  2114. package/esm/forms/forms-core/components/form-field-group/FormFieldGroup.js.map +7 -0
  2115. package/esm/forms/forms-core/components/form-field-messages/FormFieldMessageItem.css +5 -5
  2116. package/esm/forms/forms-core/components/form-field-messages/FormFieldMessageItem.js +11 -6
  2117. package/esm/forms/forms-core/components/form-field-messages/FormFieldMessageItem.js.map +2 -2
  2118. package/esm/forms/forms-core/components/form-field-messages/FormFieldMessageItem.sty.js +2 -2
  2119. package/esm/forms/forms-core/components/form-field-messages/FormFieldMessageItem.sty.js.map +1 -1
  2120. package/esm/forms/forms-core/components/form-field-messages/FormFieldMessages.sty.js +1 -1
  2121. package/esm/forms/forms-core/components/form-field-messages/FormFieldMessages.sty.js.map +1 -1
  2122. package/esm/forms/forms-core/components/label/Label.css +5 -5
  2123. package/esm/forms/forms-core/components/label/Label.js +18 -5
  2124. package/esm/forms/forms-core/components/label/Label.js.map +2 -2
  2125. package/esm/forms/forms-core/components/label/Label.sty.js +2 -2
  2126. package/esm/forms/forms-core/components/label/Label.sty.js.map +1 -1
  2127. package/esm/forms/forms-core/contexts/FormFieldContext.js +12 -2
  2128. package/esm/forms/forms-core/contexts/FormFieldContext.js.map +2 -2
  2129. package/esm/forms/forms-core/hooks/useFormControl.js +143 -0
  2130. package/esm/forms/forms-core/hooks/useFormControl.js.map +7 -0
  2131. package/esm/forms/forms-core/hooks/useFormFieldContext.js +12 -1
  2132. package/esm/forms/forms-core/hooks/useFormFieldContext.js.map +2 -2
  2133. package/esm/forms/forms-core/hooks/useFormFieldValidation.js +127 -48
  2134. package/esm/forms/forms-core/hooks/useFormFieldValidation.js.map +2 -2
  2135. package/esm/forms/forms-core/state/formfield-messages-state-reducer.js +37 -11
  2136. package/esm/forms/forms-core/state/formfield-messages-state-reducer.js.map +2 -2
  2137. package/esm/forms/forms-core/state/formfield-state-reducer.js +20 -5
  2138. package/esm/forms/forms-core/state/formfield-state-reducer.js.map +2 -2
  2139. package/esm/forms/forms-core/time/helpers.js +1 -1
  2140. package/esm/forms/forms-core/time/helpers.js.map +2 -2
  2141. package/esm/forms/hooks/useAutofillEvent.css +8 -8
  2142. package/esm/forms/hooks/useAutofillEvent.sty.js +4 -4
  2143. package/esm/forms/hooks/useAutofillEvent.sty.js.map +1 -1
  2144. package/esm/forms/index.js +10 -0
  2145. package/esm/forms/index.js.map +2 -2
  2146. package/esm/forms/number-input/NumberInputBase.js +10 -11
  2147. package/esm/forms/number-input/NumberInputBase.js.map +2 -2
  2148. package/esm/forms/number-input-v2/NumberInput.js +81 -17
  2149. package/esm/forms/number-input-v2/NumberInput.js.map +2 -2
  2150. package/esm/forms/number-input-v2/utils/validation.js +0 -17
  2151. package/esm/forms/number-input-v2/utils/validation.js.map +2 -2
  2152. package/esm/forms/password-input/PasswordInput.js +1 -0
  2153. package/esm/forms/password-input/PasswordInput.js.map +2 -2
  2154. package/esm/forms/radio/Radio.js +30 -8
  2155. package/esm/forms/radio/Radio.js.map +2 -2
  2156. package/esm/forms/radio/RadioGroup.js +68 -27
  2157. package/esm/forms/radio/RadioGroup.js.map +2 -2
  2158. package/esm/forms/radio/RadioGroupContext.js.map +2 -2
  2159. package/esm/forms/radio/styles.css +18 -18
  2160. package/esm/forms/radio/styles.sty.js +8 -8
  2161. package/esm/forms/radio/styles.sty.js.map +1 -1
  2162. package/esm/forms/search-input/SearchInput.css +2 -2
  2163. package/esm/forms/search-input/SearchInput.js.map +2 -2
  2164. package/esm/forms/search-input/SearchInput.sty.js +1 -1
  2165. package/esm/forms/search-input/SearchInput.sty.js.map +1 -1
  2166. package/esm/forms/search-input/Stepper.css +5 -5
  2167. package/esm/forms/search-input/Stepper.sty.js +3 -3
  2168. package/esm/forms/search-input/Stepper.sty.js.map +1 -1
  2169. package/esm/forms/select/Select.js +93 -26
  2170. package/esm/forms/select/Select.js.map +2 -2
  2171. package/esm/forms/select/components/Control.js +6 -10
  2172. package/esm/forms/select/components/Control.js.map +2 -2
  2173. package/esm/forms/select/components/HiddenSelect.js +8 -6
  2174. package/esm/forms/select/components/HiddenSelect.js.map +2 -2
  2175. package/esm/forms/select/components/MenuList.js +6 -1
  2176. package/esm/forms/select/components/MenuList.js.map +2 -2
  2177. package/esm/forms/select/components/Option.js +12 -3
  2178. package/esm/forms/select/components/Option.js.map +2 -2
  2179. package/esm/forms/select/styles/Select.css +46 -46
  2180. package/esm/forms/select/styles/Select.sty.js +24 -24
  2181. package/esm/forms/select/styles/Select.sty.js.map +1 -1
  2182. package/esm/forms/shared-types.js.map +2 -2
  2183. package/esm/forms/spin-buttons/SpinButton.css +8 -8
  2184. package/esm/forms/spin-buttons/SpinButton.sty.js +2 -2
  2185. package/esm/forms/spin-buttons/SpinButton.sty.js.map +1 -1
  2186. package/esm/forms/switch/Switch.css +36 -36
  2187. package/esm/forms/switch/Switch.js +56 -20
  2188. package/esm/forms/switch/Switch.js.map +2 -2
  2189. package/esm/forms/switch/Switch.sty.js +5 -5
  2190. package/esm/forms/switch/Switch.sty.js.map +1 -1
  2191. package/esm/forms/text-area/TextArea.css +59 -59
  2192. package/esm/forms/text-area/TextArea.js +55 -18
  2193. package/esm/forms/text-area/TextArea.js.map +2 -2
  2194. package/esm/forms/text-area/TextArea.sty.js +3 -3
  2195. package/esm/forms/text-area/TextArea.sty.js.map +1 -1
  2196. package/esm/forms/text-input/TextInput.js.map +2 -2
  2197. package/esm/forms/toggle-button-group/Item.js +27 -7
  2198. package/esm/forms/toggle-button-group/Item.js.map +2 -2
  2199. package/esm/forms/toggle-button-group/ToggleButtonGroup.js +58 -16
  2200. package/esm/forms/toggle-button-group/ToggleButtonGroup.js.map +2 -2
  2201. package/esm/forms/toggle-button-group/contexts/ToggleButtonGroupContext.js.map +2 -2
  2202. package/esm/forms/toggle-button-group/styles.css +58 -58
  2203. package/esm/forms/toggle-button-group/styles.sty.js +15 -15
  2204. package/esm/forms/toggle-button-group/styles.sty.js.map +1 -1
  2205. package/esm/forms/validation/types.js +64 -0
  2206. package/esm/forms/validation/types.js.map +7 -0
  2207. package/esm/forms/validation/useCustomMessageEmitter.js +83 -0
  2208. package/esm/forms/validation/useCustomMessageEmitter.js.map +7 -0
  2209. package/esm/forms/validation/useValidationStateEmitter.js +31 -0
  2210. package/esm/forms/validation/useValidationStateEmitter.js.map +7 -0
  2211. package/esm/forms/validation/validation-builders.js +56 -0
  2212. package/esm/forms/validation/validation-builders.js.map +7 -0
  2213. package/esm/layouts/app-header/AppHeader.css +1 -1
  2214. package/esm/layouts/app-header/AppHeader.sty.js +1 -1
  2215. package/esm/layouts/app-header/AppHeader.sty.js.map +1 -1
  2216. package/esm/layouts/app-header/Logo.js +3 -1
  2217. package/esm/layouts/app-header/Logo.js.map +2 -2
  2218. package/esm/layouts/app-header/Navigation.css +9 -9
  2219. package/esm/layouts/app-header/Navigation.sty.js +5 -5
  2220. package/esm/layouts/app-header/Navigation.sty.js.map +1 -1
  2221. package/esm/layouts/app-header/action-group/ActionButton.css +17 -17
  2222. package/esm/layouts/app-header/action-group/ActionButton.sty.js +3 -3
  2223. package/esm/layouts/app-header/action-group/ActionButton.sty.js.map +1 -1
  2224. package/esm/layouts/app-header/action-group/ActionGroup.css +1 -1
  2225. package/esm/layouts/app-header/action-group/ActionGroup.sty.js +1 -1
  2226. package/esm/layouts/app-header/action-group/ActionGroup.sty.js.map +1 -1
  2227. package/esm/layouts/app-header/action-group/NavItem.css +4 -4
  2228. package/esm/layouts/app-header/action-group/NavItem.sty.js +3 -3
  2229. package/esm/layouts/app-header/action-group/NavItem.sty.js.map +1 -1
  2230. package/esm/layouts/app-header/app-icon/AppIcon.css +4 -4
  2231. package/esm/layouts/app-header/app-icon/AppIcon.sty.js +1 -1
  2232. package/esm/layouts/app-header/app-icon/AppIcon.sty.js.map +1 -1
  2233. package/esm/layouts/container/Container.css +5 -5
  2234. package/esm/layouts/container/Container.sty.js +1 -1
  2235. package/esm/layouts/container/Container.sty.js.map +1 -1
  2236. package/esm/layouts/divider/Divider.css +6 -6
  2237. package/esm/layouts/divider/Divider.sty.js +1 -1
  2238. package/esm/layouts/divider/Divider.sty.js.map +1 -1
  2239. package/esm/layouts/index.js.map +2 -2
  2240. package/esm/layouts/input-group/InputGroup.css +23 -23
  2241. package/esm/layouts/input-group/InputGroup.sty.js +1 -1
  2242. package/esm/layouts/input-group/InputGroup.sty.js.map +1 -1
  2243. package/esm/layouts/page/DetailView.css +3 -3
  2244. package/esm/layouts/page/DetailView.js.map +2 -2
  2245. package/esm/layouts/page/DetailView.sty.js +2 -2
  2246. package/esm/layouts/page/DetailView.sty.js.map +1 -1
  2247. package/esm/layouts/page/Header.css +2 -2
  2248. package/esm/layouts/page/Header.js.map +2 -2
  2249. package/esm/layouts/page/Header.sty.js +1 -1
  2250. package/esm/layouts/page/Header.sty.js.map +1 -1
  2251. package/esm/layouts/page/Main.css +6 -6
  2252. package/esm/layouts/page/Main.js.map +2 -2
  2253. package/esm/layouts/page/Main.sty.js +4 -4
  2254. package/esm/layouts/page/Main.sty.js.map +1 -1
  2255. package/esm/layouts/page/Page.css +2 -2
  2256. package/esm/layouts/page/Page.js.map +2 -2
  2257. package/esm/layouts/page/Page.sty.js +1 -1
  2258. package/esm/layouts/page/Page.sty.js.map +1 -1
  2259. package/esm/layouts/page/Panel.js.map +2 -2
  2260. package/esm/layouts/page/PanelControlButton.js.map +2 -2
  2261. package/esm/layouts/page/Sidebar.css +71 -22
  2262. package/esm/layouts/page/Sidebar.js +2 -0
  2263. package/esm/layouts/page/Sidebar.js.map +2 -2
  2264. package/esm/layouts/page/Sidebar.sty.js +8 -8
  2265. package/esm/layouts/page/Sidebar.sty.js.map +1 -1
  2266. package/esm/layouts/page/page-context.js.map +2 -2
  2267. package/esm/layouts/page/page-types.js.map +2 -2
  2268. package/esm/layouts/page/panel-context.js.map +2 -2
  2269. package/esm/layouts/page/panel-types.js.map +2 -2
  2270. package/esm/layouts/page/panel.css +19 -19
  2271. package/esm/layouts/page/panel.sty.js +10 -10
  2272. package/esm/layouts/page/panel.sty.js.map +1 -1
  2273. package/esm/layouts/page-layout/PageLayout.css +10 -10
  2274. package/esm/layouts/page-layout/PageLayout.sty.js +6 -6
  2275. package/esm/layouts/page-layout/PageLayout.sty.js.map +1 -1
  2276. package/esm/layouts/page-layout/details-layout/DetailsControlBar.css +3 -3
  2277. package/esm/layouts/page-layout/details-layout/DetailsControlBar.sty.js +3 -3
  2278. package/esm/layouts/page-layout/details-layout/DetailsControlBar.sty.js.map +1 -1
  2279. package/esm/layouts/page-layout/details-layout/DetailsLayout.css +6 -6
  2280. package/esm/layouts/page-layout/details-layout/DetailsLayout.js +70 -30
  2281. package/esm/layouts/page-layout/details-layout/DetailsLayout.js.map +2 -2
  2282. package/esm/layouts/page-layout/details-layout/DetailsLayout.sty.js +5 -5
  2283. package/esm/layouts/page-layout/details-layout/DetailsLayout.sty.js.map +1 -1
  2284. package/esm/layouts/page-layout/details-layout/Overlay.css +18 -18
  2285. package/esm/layouts/page-layout/details-layout/Overlay.js +12 -6
  2286. package/esm/layouts/page-layout/details-layout/Overlay.js.map +2 -2
  2287. package/esm/layouts/page-layout/details-layout/Overlay.sty.js +4 -4
  2288. package/esm/layouts/page-layout/details-layout/Overlay.sty.js.map +1 -1
  2289. package/esm/layouts/page-layout/details-layout/useLayoutState.js +3 -1
  2290. package/esm/layouts/page-layout/details-layout/useLayoutState.js.map +2 -2
  2291. package/esm/layouts/page-layout/shared/portal-slots.js +23 -3
  2292. package/esm/layouts/page-layout/shared/portal-slots.js.map +2 -2
  2293. package/esm/layouts/page-layout/shared/useBreakpointCollapse.js +16 -4
  2294. package/esm/layouts/page-layout/shared/useBreakpointCollapse.js.map +2 -2
  2295. package/esm/layouts/page-layout/sidebar-layout/SidebarLayout.css +38 -38
  2296. package/esm/layouts/page-layout/sidebar-layout/SidebarLayout.sty.js +15 -15
  2297. package/esm/layouts/page-layout/sidebar-layout/SidebarLayout.sty.js.map +1 -1
  2298. package/esm/layouts/page-layout/sidebar-layout/useLayoutState.js +3 -1
  2299. package/esm/layouts/page-layout/sidebar-layout/useLayoutState.js.map +2 -2
  2300. package/esm/layouts/split-layout/SplitLayout.css +21 -18
  2301. package/esm/layouts/split-layout/SplitLayout.js +2 -1
  2302. package/esm/layouts/split-layout/SplitLayout.js.map +2 -2
  2303. package/esm/layouts/split-layout/SplitLayout.sty.js +7 -7
  2304. package/esm/layouts/split-layout/SplitLayout.sty.js.map +1 -1
  2305. package/esm/layouts/split-layout/slots.js +3 -1
  2306. package/esm/layouts/split-layout/slots.js.map +2 -2
  2307. package/esm/layouts/split-layout/useSplitSizing.js +45 -21
  2308. package/esm/layouts/split-layout/useSplitSizing.js.map +2 -2
  2309. package/esm/layouts/surface/Surface.css +39 -39
  2310. package/esm/layouts/surface/Surface.sty.js +2 -2
  2311. package/esm/layouts/surface/Surface.sty.js.map +1 -1
  2312. package/esm/layouts/surface/variables.sty.js +1 -1
  2313. package/esm/layouts/surface/variables.sty.js.map +1 -1
  2314. package/esm/layouts/title-bar/TitleBar.css +5 -5
  2315. package/esm/layouts/title-bar/TitleBar.sty.js +4 -4
  2316. package/esm/layouts/title-bar/TitleBar.sty.js.map +1 -1
  2317. package/esm/navigation/breadcrumbs/Breadcrumbs.css +9 -9
  2318. package/esm/navigation/breadcrumbs/Breadcrumbs.sty.js +5 -5
  2319. package/esm/navigation/breadcrumbs/Breadcrumbs.sty.js.map +1 -1
  2320. package/esm/navigation/menu/Content.js +2 -1
  2321. package/esm/navigation/menu/Content.js.map +2 -2
  2322. package/esm/navigation/menu/Item.js +8 -0
  2323. package/esm/navigation/menu/Item.js.map +2 -2
  2324. package/esm/navigation/menu/Menu.css +38 -15
  2325. package/esm/navigation/menu/Menu.sty.js +10 -8
  2326. package/esm/navigation/menu/Menu.sty.js.map +2 -2
  2327. package/esm/navigation/menu/Sub.js +19 -0
  2328. package/esm/navigation/menu/Sub.js.map +2 -2
  2329. package/esm/navigation/menu/SubContent.js +8 -1
  2330. package/esm/navigation/menu/SubContent.js.map +2 -2
  2331. package/esm/navigation/menu/SubTrigger.js +22 -7
  2332. package/esm/navigation/menu/SubTrigger.js.map +2 -2
  2333. package/esm/navigation/menu/contexts/MenuSubLevelContext.js +38 -0
  2334. package/esm/navigation/menu/contexts/MenuSubLevelContext.js.map +7 -0
  2335. package/esm/navigation/tabs/RenderTab.css +14 -14
  2336. package/esm/navigation/tabs/RenderTab.sty.js +3 -3
  2337. package/esm/navigation/tabs/RenderTab.sty.js.map +1 -1
  2338. package/esm/navigation/tabs/TabPanel.css +3 -3
  2339. package/esm/navigation/tabs/TabPanel.sty.js +2 -2
  2340. package/esm/navigation/tabs/TabPanel.sty.js.map +1 -1
  2341. package/esm/navigation/tabs/Tabs.css +9 -9
  2342. package/esm/navigation/tabs/Tabs.js +1 -1
  2343. package/esm/navigation/tabs/Tabs.js.map +2 -2
  2344. package/esm/navigation/tabs/Tabs.sty.js +5 -5
  2345. package/esm/navigation/tabs/Tabs.sty.js.map +1 -1
  2346. package/esm/notifications/notification-settings/NotificationSettings.css +1 -1
  2347. package/esm/notifications/notification-settings/NotificationSettings.sty.js +1 -1
  2348. package/esm/notifications/notification-settings/NotificationSettings.sty.js.map +1 -1
  2349. package/esm/notifications/notification-settings/components/CopyPermissionsButton.js +3 -7
  2350. package/esm/notifications/notification-settings/components/CopyPermissionsButton.js.map +2 -2
  2351. package/esm/notifications/notification-settings/components/PermissionInfo.js +17 -20
  2352. package/esm/notifications/notification-settings/components/PermissionInfo.js.map +2 -2
  2353. package/esm/notifications/notification-settings/components/ToggleButton.js +3 -1
  2354. package/esm/notifications/notification-settings/components/ToggleButton.js.map +2 -2
  2355. package/esm/notifications/toast/Toast.css +6 -6
  2356. package/esm/notifications/toast/Toast.sty.js +4 -4
  2357. package/esm/notifications/toast/Toast.sty.js.map +1 -1
  2358. package/esm/notifications/toast/ToastContainer.css +17 -17
  2359. package/esm/notifications/toast/ToastContainer.sty.js +1 -1
  2360. package/esm/notifications/toast/ToastContainer.sty.js.map +1 -1
  2361. package/esm/overlays/drawer/Drawer.css +9 -9
  2362. package/esm/overlays/drawer/Drawer.sty.js +5 -5
  2363. package/esm/overlays/drawer/Drawer.sty.js.map +1 -1
  2364. package/esm/overlays/modal/Modal.css +56 -8
  2365. package/esm/overlays/modal/Modal.js +3 -34
  2366. package/esm/overlays/modal/Modal.js.map +2 -2
  2367. package/esm/overlays/modal/Modal.sty.js +10 -4
  2368. package/esm/overlays/modal/Modal.sty.js.map +2 -2
  2369. package/esm/overlays/overlay/Overlay.css +1 -1
  2370. package/esm/overlays/overlay/Overlay.sty.js +1 -1
  2371. package/esm/overlays/overlay/Overlay.sty.js.map +1 -1
  2372. package/esm/overlays/sheet/Sheet.css +14 -8
  2373. package/esm/overlays/sheet/Sheet.sty.js +5 -5
  2374. package/esm/overlays/sheet/Sheet.sty.js.map +1 -1
  2375. package/esm/overlays/tooltip/tooltip.css +18 -18
  2376. package/esm/overlays/tooltip/tooltip.sty.js +3 -3
  2377. package/esm/overlays/tooltip/tooltip.sty.js.map +1 -1
  2378. package/esm/overlays/utils/popper-modifiers.js +7 -3
  2379. package/esm/overlays/utils/popper-modifiers.js.map +2 -2
  2380. package/esm/styles/colorUtils.css +60 -60
  2381. package/esm/styles/colorUtils.sty.js +2 -2
  2382. package/esm/styles/colorUtils.sty.js.map +1 -1
  2383. package/esm/styles/container.css +47 -47
  2384. package/esm/styles/container.sty.js +2 -2
  2385. package/esm/styles/container.sty.js.map +1 -1
  2386. package/esm/styles/ellipsis.css +1 -1
  2387. package/esm/styles/ellipsis.sty.js +1 -1
  2388. package/esm/styles/ellipsis.sty.js.map +1 -1
  2389. package/esm/styles/field.css +290 -290
  2390. package/esm/styles/field.sty.js +2 -2
  2391. package/esm/styles/field.sty.js.map +1 -1
  2392. package/esm/styles/screen-reader-only.css +1 -1
  2393. package/esm/styles/screen-reader-only.sty.js +1 -1
  2394. package/esm/styles/screen-reader-only.sty.js.map +1 -1
  2395. package/esm/styles/sprinkles.css +262 -262
  2396. package/esm/styles/sprinkles.sty.js +1 -1
  2397. package/esm/styles/sprinkles.sty.js.map +1 -1
  2398. package/esm/styles/textStyle.css +8 -8
  2399. package/esm/styles/textStyle.sty.js +1 -1
  2400. package/esm/styles/textStyle.sty.js.map +1 -1
  2401. package/esm/tables/DataTable/DataTable.css +2 -2
  2402. package/esm/tables/DataTable/DataTable.js +14 -5
  2403. package/esm/tables/DataTable/DataTable.js.map +2 -2
  2404. package/esm/tables/DataTable/DataTable.sty.js +7 -7
  2405. package/esm/tables/DataTable/DataTable.sty.js.map +1 -1
  2406. package/esm/tables/DataTable/components/Alignment.css +6 -6
  2407. package/esm/tables/DataTable/components/Alignment.sty.js +2 -2
  2408. package/esm/tables/DataTable/components/Alignment.sty.js.map +1 -1
  2409. package/esm/tables/DataTable/components/ColumnPinning/DataTablePinningShadowCells.css +6 -6
  2410. package/esm/tables/DataTable/components/ColumnPinning/DataTablePinningShadowCells.sty.js +3 -3
  2411. package/esm/tables/DataTable/components/ColumnPinning/DataTablePinningShadowCells.sty.js.map +1 -1
  2412. package/esm/tables/DataTable/components/DataTableBody.css +2 -2
  2413. package/esm/tables/DataTable/components/DataTableBody.sty.js +2 -2
  2414. package/esm/tables/DataTable/components/DataTableBody.sty.js.map +1 -1
  2415. package/esm/tables/DataTable/components/DataTableCell.css +103 -117
  2416. package/esm/tables/DataTable/components/DataTableCell.sty.js +5 -5
  2417. package/esm/tables/DataTable/components/DataTableCell.sty.js.map +1 -1
  2418. package/esm/tables/DataTable/components/DataTableDefaultCell.css +23 -23
  2419. package/esm/tables/DataTable/components/DataTableDefaultCell.sty.js +1 -1
  2420. package/esm/tables/DataTable/components/DataTableDefaultCell.sty.js.map +1 -1
  2421. package/esm/tables/DataTable/components/DataTableEmptyState.css +6 -6
  2422. package/esm/tables/DataTable/components/DataTableEmptyState.sty.js +2 -2
  2423. package/esm/tables/DataTable/components/DataTableEmptyState.sty.js.map +1 -1
  2424. package/esm/tables/DataTable/components/DataTableHeader.css +2 -2
  2425. package/esm/tables/DataTable/components/DataTableHeader.sty.js +2 -2
  2426. package/esm/tables/DataTable/components/DataTableHeader.sty.js.map +1 -1
  2427. package/esm/tables/DataTable/components/DataTableHeaderCell.css +64 -64
  2428. package/esm/tables/DataTable/components/DataTableHeaderCell.sty.js +23 -23
  2429. package/esm/tables/DataTable/components/DataTableHeaderCell.sty.js.map +1 -1
  2430. package/esm/tables/DataTable/components/DataTableRow.css +13 -13
  2431. package/esm/tables/DataTable/components/DataTableRow.sty.js +1 -1
  2432. package/esm/tables/DataTable/components/DataTableRow.sty.js.map +1 -1
  2433. package/esm/tables/DataTable/components/DataTableScrollShadow.css +10 -10
  2434. package/esm/tables/DataTable/components/DataTableScrollShadow.sty.js +2 -2
  2435. package/esm/tables/DataTable/components/DataTableScrollShadow.sty.js.map +1 -1
  2436. package/esm/tables/DataTable/components/DataTableVirtualizationContainer.css +21 -21
  2437. package/esm/tables/DataTable/components/DataTableVirtualizationContainer.js +6 -0
  2438. package/esm/tables/DataTable/components/DataTableVirtualizationContainer.js.map +2 -2
  2439. package/esm/tables/DataTable/components/DataTableVirtualizationContainer.sty.js +1 -1
  2440. package/esm/tables/DataTable/components/DataTableVirtualizationContainer.sty.js.map +1 -1
  2441. package/esm/tables/DataTable/components/SettingsModal/DataTableSettingsModal.css +6 -0
  2442. package/esm/tables/DataTable/components/SettingsModal/DataTableSettingsModal.js +51 -37
  2443. package/esm/tables/DataTable/components/SettingsModal/DataTableSettingsModal.js.map +2 -2
  2444. package/esm/tables/DataTable/components/SettingsModal/DataTableSettingsModal.sty.js +7 -0
  2445. package/esm/tables/DataTable/components/SettingsModal/DataTableSettingsModal.sty.js.map +7 -0
  2446. package/esm/tables/DataTable/components/TableActions/DataTableSelectionChip.css +5 -5
  2447. package/esm/tables/DataTable/components/TableActions/DataTableSelectionChip.sty.js +2 -2
  2448. package/esm/tables/DataTable/components/TableActions/DataTableSelectionChip.sty.js.map +1 -1
  2449. package/esm/tables/DataTable/components/Toolbar/ColumnSettings/ColumnOrderSettings/ColumnOrderSettingsDragAndDrop.css +7 -7
  2450. package/esm/tables/DataTable/components/Toolbar/ColumnSettings/ColumnOrderSettings/ColumnOrderSettingsDragAndDrop.js +2 -2
  2451. package/esm/tables/DataTable/components/Toolbar/ColumnSettings/ColumnOrderSettings/ColumnOrderSettingsDragAndDrop.js.map +2 -2
  2452. package/esm/tables/DataTable/components/Toolbar/ColumnSettings/ColumnOrderSettings/ColumnOrderSettingsDragAndDrop.sty.js +3 -3
  2453. package/esm/tables/DataTable/components/Toolbar/ColumnSettings/ColumnOrderSettings/ColumnOrderSettingsDragAndDrop.sty.js.map +1 -1
  2454. package/esm/tables/DataTable/components/Toolbar/ColumnSettings/ColumnOrderSettings/column-order-settings-dnd-utils.js +11 -20
  2455. package/esm/tables/DataTable/components/Toolbar/ColumnSettings/ColumnOrderSettings/column-order-settings-dnd-utils.js.map +2 -2
  2456. package/esm/tables/DataTable/components/Toolbar/ColumnSettings/ColumnPinningMenu.js +2 -2
  2457. package/esm/tables/DataTable/components/Toolbar/ColumnSettings/ColumnPinningMenu.js.map +2 -2
  2458. package/esm/tables/DataTable/components/Toolbar/ColumnSettings/ColumnVisibilityToggle.js +52 -0
  2459. package/esm/tables/DataTable/components/Toolbar/ColumnSettings/ColumnVisibilityToggle.js.map +7 -0
  2460. package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnSettingsModal.js +46 -7
  2461. package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnSettingsModal.js.map +2 -2
  2462. package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnVisibilitySettings.js +2 -1
  2463. package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnVisibilitySettings.js.map +2 -2
  2464. package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsList.css +25 -8
  2465. package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsList.js +77 -27
  2466. package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsList.js.map +2 -2
  2467. package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsList.sty.js +3 -3
  2468. package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsList.sty.js.map +2 -2
  2469. package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsListItem.css +32 -14
  2470. package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsListItem.js +39 -15
  2471. package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsListItem.js.map +2 -2
  2472. package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsListItem.sty.js +12 -4
  2473. package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsListItem.sty.js.map +2 -2
  2474. package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsSectionHeader.css +12 -0
  2475. package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsSectionHeader.js +29 -0
  2476. package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsSectionHeader.js.map +7 -0
  2477. package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsSectionHeader.sty.js +8 -0
  2478. package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsSectionHeader.sty.js.map +7 -0
  2479. package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableVisibilityFilterControls.css +5 -5
  2480. package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableVisibilityFilterControls.sty.js +3 -3
  2481. package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableVisibilityFilterControls.sty.js.map +1 -1
  2482. package/esm/tables/DataTable/components/Toolbar/ColumnSettings/column-settings-test-utils.js +34 -0
  2483. package/esm/tables/DataTable/components/Toolbar/ColumnSettings/column-settings-test-utils.js.map +7 -0
  2484. package/esm/tables/DataTable/components/Toolbar/ColumnSettings/column-settings-utils.js +72 -3
  2485. package/esm/tables/DataTable/components/Toolbar/ColumnSettings/column-settings-utils.js.map +3 -3
  2486. package/esm/tables/DataTable/components/Toolbar/DataTableToolbar.js +4 -0
  2487. package/esm/tables/DataTable/components/Toolbar/DataTableToolbar.js.map +2 -2
  2488. package/esm/tables/DataTable/components/Toolbar/DataTableToolbarMenu.js +2 -1
  2489. package/esm/tables/DataTable/components/Toolbar/DataTableToolbarMenu.js.map +2 -2
  2490. package/esm/tables/DataTable/components/Toolbar/Download/DataTableDownloadData.css +3 -3
  2491. package/esm/tables/DataTable/components/Toolbar/Download/DataTableDownloadData.js +11 -4
  2492. package/esm/tables/DataTable/components/Toolbar/Download/DataTableDownloadData.js.map +2 -2
  2493. package/esm/tables/DataTable/components/Toolbar/Download/DataTableDownloadData.sty.js +2 -2
  2494. package/esm/tables/DataTable/components/Toolbar/Download/DataTableDownloadData.sty.js.map +1 -1
  2495. package/esm/tables/DataTable/features/ColumnOrder/ColumnOrder.css +8 -8
  2496. package/esm/tables/DataTable/features/ColumnOrder/ColumnOrder.sty.js +4 -4
  2497. package/esm/tables/DataTable/features/ColumnOrder/ColumnOrder.sty.js.map +1 -1
  2498. package/esm/tables/DataTable/features/ColumnOrder/column-order-dnd-utils.js +1 -1
  2499. package/esm/tables/DataTable/features/ColumnOrder/column-order-dnd-utils.js.map +2 -2
  2500. package/esm/tables/DataTable/features/ColumnSizing/ColumnSizing.css +3 -3
  2501. package/esm/tables/DataTable/features/ColumnSizing/ColumnSizing.sty.js +1 -1
  2502. package/esm/tables/DataTable/features/ColumnSizing/ColumnSizing.sty.js.map +1 -1
  2503. package/esm/tables/DataTable/features/ColumnTypes/ColumnTypes.css +1 -1
  2504. package/esm/tables/DataTable/features/ColumnTypes/ColumnTypes.sty.js +1 -1
  2505. package/esm/tables/DataTable/features/ColumnTypes/ColumnTypes.sty.js.map +1 -1
  2506. package/esm/tables/DataTable/features/ColumnTypes/column-types-types.js.map +2 -2
  2507. package/esm/tables/DataTable/features/Config.js +8 -4
  2508. package/esm/tables/DataTable/features/Config.js.map +2 -2
  2509. package/esm/tables/DataTable/features/Download/Download.js +73 -16
  2510. package/esm/tables/DataTable/features/Download/Download.js.map +2 -2
  2511. package/esm/tables/DataTable/features/Download/useDownload.js +1 -0
  2512. package/esm/tables/DataTable/features/Download/useDownload.js.map +2 -2
  2513. package/esm/tables/DataTable/features/GanttChart/DataTableGanttAnnotationsIndicators.css +1 -1
  2514. package/esm/tables/DataTable/features/GanttChart/DataTableGanttAnnotationsIndicators.sty.js +1 -1
  2515. package/esm/tables/DataTable/features/GanttChart/DataTableGanttAnnotationsIndicators.sty.js.map +1 -1
  2516. package/esm/tables/DataTable/features/GanttChart/DataTableGanttChartCell.css +3 -3
  2517. package/esm/tables/DataTable/features/GanttChart/DataTableGanttChartCell.sty.js +2 -2
  2518. package/esm/tables/DataTable/features/GanttChart/DataTableGanttChartCell.sty.js.map +1 -1
  2519. package/esm/tables/DataTable/features/GanttChart/DataTableGanttChartGrid.css +1 -1
  2520. package/esm/tables/DataTable/features/GanttChart/DataTableGanttChartGrid.js +2 -2
  2521. package/esm/tables/DataTable/features/GanttChart/DataTableGanttChartGrid.js.map +2 -2
  2522. package/esm/tables/DataTable/features/GanttChart/DataTableGanttChartGrid.sty.js +1 -1
  2523. package/esm/tables/DataTable/features/GanttChart/DataTableGanttChartGrid.sty.js.map +1 -1
  2524. package/esm/tables/DataTable/features/GanttChart/DataTableGanttChartHeader.css +4 -4
  2525. package/esm/tables/DataTable/features/GanttChart/DataTableGanttChartHeader.js +2 -0
  2526. package/esm/tables/DataTable/features/GanttChart/DataTableGanttChartHeader.js.map +2 -2
  2527. package/esm/tables/DataTable/features/GanttChart/DataTableGanttChartHeader.sty.js +1 -1
  2528. package/esm/tables/DataTable/features/GanttChart/DataTableGanttChartHeader.sty.js.map +1 -1
  2529. package/esm/tables/DataTable/features/LoadingState/LoadingState.css +3 -3
  2530. package/esm/tables/DataTable/features/LoadingState/LoadingState.sty.js +3 -3
  2531. package/esm/tables/DataTable/features/LoadingState/LoadingState.sty.js.map +1 -1
  2532. package/esm/tables/DataTable/features/MeterBarChart/MeterBarChart.js.map +2 -2
  2533. package/esm/tables/DataTable/features/RowDetails/RowDetails.css +13 -13
  2534. package/esm/tables/DataTable/features/RowDetails/RowDetails.sty.js +3 -3
  2535. package/esm/tables/DataTable/features/RowDetails/RowDetails.sty.js.map +1 -1
  2536. package/esm/tables/DataTable/features/RowInteractivity/RowInteractivity.css +14 -14
  2537. package/esm/tables/DataTable/features/RowInteractivity/RowInteractivity.sty.js +1 -1
  2538. package/esm/tables/DataTable/features/RowInteractivity/RowInteractivity.sty.js.map +1 -1
  2539. package/esm/tables/DataTable/features/RowOrder/RowOrder.css +8 -8
  2540. package/esm/tables/DataTable/features/RowOrder/RowOrder.sty.js +3 -3
  2541. package/esm/tables/DataTable/features/RowOrder/RowOrder.sty.js.map +1 -1
  2542. package/esm/tables/DataTable/features/RowOrder/RowOrderColumnDef.js +46 -13
  2543. package/esm/tables/DataTable/features/RowOrder/RowOrderColumnDef.js.map +2 -2
  2544. package/esm/tables/DataTable/features/RowOrder/components/RowOrderingDragAndDropContext.js +1 -0
  2545. package/esm/tables/DataTable/features/RowOrder/components/RowOrderingDragAndDropContext.js.map +2 -2
  2546. package/esm/tables/DataTable/features/RowOrder/useRowOrder.js +6 -0
  2547. package/esm/tables/DataTable/features/RowOrder/useRowOrder.js.map +2 -2
  2548. package/esm/tables/DataTable/features/Sorting/Sorting.css +34 -34
  2549. package/esm/tables/DataTable/features/Sorting/Sorting.sty.js +3 -3
  2550. package/esm/tables/DataTable/features/Sorting/Sorting.sty.js.map +1 -1
  2551. package/esm/tables/DataTable/features/SubRows/SubRows.css +19 -19
  2552. package/esm/tables/DataTable/features/SubRows/SubRows.sty.js +5 -5
  2553. package/esm/tables/DataTable/features/SubRows/SubRows.sty.js.map +1 -1
  2554. package/esm/tables/DataTable/features/Thresholds/Thresholds.css +2 -2
  2555. package/esm/tables/DataTable/features/Thresholds/Thresholds.sty.js +3 -3
  2556. package/esm/tables/DataTable/features/Thresholds/Thresholds.sty.js.map +1 -1
  2557. package/esm/tables/DataTable/features/UserActions/FloatingMenu.js +19 -10
  2558. package/esm/tables/DataTable/features/UserActions/FloatingMenu.js.map +2 -2
  2559. package/esm/tables/DataTable/features/UserActions/InlineUserActionsMenu.js +24 -7
  2560. package/esm/tables/DataTable/features/UserActions/InlineUserActionsMenu.js.map +2 -2
  2561. package/esm/tables/DataTable/features/UserActions/RowActions.css +4 -4
  2562. package/esm/tables/DataTable/features/UserActions/RowActions.sty.js +1 -1
  2563. package/esm/tables/DataTable/features/UserActions/RowActions.sty.js.map +1 -1
  2564. package/esm/tables/DataTable/features/UserActions/RowActionsColumnDef.js +23 -4
  2565. package/esm/tables/DataTable/features/UserActions/RowActionsColumnDef.js.map +2 -2
  2566. package/esm/tables/DataTable/features/UserActions/UserActions.css +19 -18
  2567. package/esm/tables/DataTable/features/UserActions/UserActions.sty.js +2 -2
  2568. package/esm/tables/DataTable/features/UserActions/UserActions.sty.js.map +1 -1
  2569. package/esm/tables/DataTable/features/UserActions/useCloseFloatingMenuOnScroll.js +88 -0
  2570. package/esm/tables/DataTable/features/UserActions/useCloseFloatingMenuOnScroll.js.map +7 -0
  2571. package/esm/tables/DataTable/features/UserActions/useCloseMenuOnScroll.js +60 -0
  2572. package/esm/tables/DataTable/features/UserActions/useCloseMenuOnScroll.js.map +7 -0
  2573. package/esm/tables/DataTable/hooks/useTableRootResize.js +3 -1
  2574. package/esm/tables/DataTable/hooks/useTableRootResize.js.map +2 -2
  2575. package/esm/tables/DataTable/messages.js +67 -0
  2576. package/esm/tables/DataTable/messages.js.map +2 -2
  2577. package/esm/tables/SimpleTable/SimpleTable.css +27 -27
  2578. package/esm/tables/SimpleTable/SimpleTable.sty.js +1 -1
  2579. package/esm/tables/SimpleTable/SimpleTable.sty.js.map +1 -1
  2580. package/esm/tables/hooks/useLockedRowOrder.js +9 -3
  2581. package/esm/tables/hooks/useLockedRowOrder.js.map +2 -2
  2582. package/esm/tables/index.js.map +2 -2
  2583. package/esm/tables/utils/replace-urls-with-links.js +15 -3
  2584. package/esm/tables/utils/replace-urls-with-links.js.map +2 -2
  2585. package/esm/typography/block-quote/Blockquote.css +2 -2
  2586. package/esm/typography/block-quote/Blockquote.sty.js +1 -1
  2587. package/esm/typography/block-quote/Blockquote.sty.js.map +1 -1
  2588. package/esm/typography/code/Code.css +1 -1
  2589. package/esm/typography/code/Code.sty.js +1 -1
  2590. package/esm/typography/code/Code.sty.js.map +1 -1
  2591. package/esm/typography/emphasis/Emphasis.css +1 -1
  2592. package/esm/typography/emphasis/Emphasis.sty.js +1 -1
  2593. package/esm/typography/emphasis/Emphasis.sty.js.map +1 -1
  2594. package/esm/typography/external-link/ExternalLink.css +6 -6
  2595. package/esm/typography/external-link/ExternalLink.js +12 -0
  2596. package/esm/typography/external-link/ExternalLink.js.map +2 -2
  2597. package/esm/typography/external-link/ExternalLink.sty.js +1 -1
  2598. package/esm/typography/external-link/ExternalLink.sty.js.map +1 -1
  2599. package/esm/typography/heading/Heading.css +7 -7
  2600. package/esm/typography/heading/Heading.sty.js +1 -1
  2601. package/esm/typography/heading/Heading.sty.js.map +1 -1
  2602. package/esm/typography/highlight/Highlight.css +2 -2
  2603. package/esm/typography/highlight/Highlight.sty.js +1 -1
  2604. package/esm/typography/highlight/Highlight.sty.js.map +1 -1
  2605. package/esm/typography/link/Link.css +4 -4
  2606. package/esm/typography/link/Link.sty.js +1 -1
  2607. package/esm/typography/link/Link.sty.js.map +1 -1
  2608. package/esm/typography/list/List.css +4 -4
  2609. package/esm/typography/list/List.sty.js +2 -2
  2610. package/esm/typography/list/List.sty.js.map +1 -1
  2611. package/esm/typography/paragraph/Paragraph.css +3 -3
  2612. package/esm/typography/paragraph/Paragraph.sty.js +1 -1
  2613. package/esm/typography/paragraph/Paragraph.sty.js.map +1 -1
  2614. package/esm/typography/strikethrough/Strikethrough.css +1 -1
  2615. package/esm/typography/strikethrough/Strikethrough.sty.js +1 -1
  2616. package/esm/typography/strikethrough/Strikethrough.sty.js.map +1 -1
  2617. package/esm/typography/strong/Strong.css +1 -1
  2618. package/esm/typography/strong/Strong.sty.js +1 -1
  2619. package/esm/typography/strong/Strong.sty.js.map +1 -1
  2620. package/esm/typography/text/Text.css +3 -3
  2621. package/esm/typography/text/Text.sty.js +1 -1
  2622. package/esm/typography/text/Text.sty.js.map +1 -1
  2623. package/esm/typography/text-ellipsis/TextEllipsis.css +6 -6
  2624. package/esm/typography/text-ellipsis/TextEllipsis.js +1 -1
  2625. package/esm/typography/text-ellipsis/TextEllipsis.js.map +2 -2
  2626. package/esm/typography/text-ellipsis/TextEllipsis.sty.js +2 -2
  2627. package/esm/typography/text-ellipsis/TextEllipsis.sty.js.map +1 -1
  2628. package/filters/filter-field/FilterField.css +151 -119
  2629. package/filters/filter-field/FilterField.js +93 -43
  2630. package/filters/filter-field/FilterField.sty.js +28 -28
  2631. package/filters/filter-field/components/FilterFieldSuffixButtons.css +3 -3
  2632. package/filters/filter-field/components/FilterFieldSuffixButtons.sty.js +3 -3
  2633. package/filters/filter-field/components/FilterStatement.css +17 -13
  2634. package/filters/filter-field/components/FilterStatement.js +121 -25
  2635. package/filters/filter-field/components/FilterStatement.sty.d.ts +1 -0
  2636. package/filters/filter-field/components/FilterStatement.sty.js +8 -6
  2637. package/filters/filter-field/hooks/recent-and-pinned/usePinnedFilterSuggestions.js +1 -1
  2638. package/filters/filter-field/hooks/recent-and-pinned/usePinnedFilters.d.ts +10 -4
  2639. package/filters/filter-field/hooks/recent-and-pinned/usePinnedFilters.js +32 -26
  2640. package/filters/filter-field/hooks/recent-and-pinned/useRecentFilters.d.ts +2 -2
  2641. package/filters/filter-field/hooks/recent-and-pinned/useRecentFilters.js +22 -20
  2642. package/filters/filter-field/hooks/useSuggestions.d.ts +0 -1
  2643. package/filters/filter-field/hooks/useSuggestions.js +1 -6
  2644. package/filters/filter-field/state/recent-pinned-store.d.ts +11 -27
  2645. package/filters/filter-field/state/recent-pinned-store.js +11 -51
  2646. package/filters/filter-field/suggestions/RecentPinnedSuggestionItem.css +9 -9
  2647. package/filters/filter-field/suggestions/RecentPinnedSuggestionItem.js +1 -1
  2648. package/filters/filter-field/suggestions/RecentPinnedSuggestionItem.sty.js +2 -2
  2649. package/filters/filter-field/suggestions/Suggestion.css +24 -24
  2650. package/filters/filter-field/suggestions/Suggestion.sty.js +16 -16
  2651. package/filters/filter-field/suggestions/SuggestionDetails.css +2 -2
  2652. package/filters/filter-field/suggestions/SuggestionDetails.sty.js +2 -2
  2653. package/filters/filter-field/suggestions/SuggestionGroup.css +6 -6
  2654. package/filters/filter-field/suggestions/SuggestionGroup.sty.js +3 -3
  2655. package/filters/filter-field/suggestions/SuggestionGroupLabel.css +1 -1
  2656. package/filters/filter-field/suggestions/SuggestionGroupLabel.sty.js +1 -1
  2657. package/filters/filter-field/suggestions/SuggestionPin.d.ts +3 -2
  2658. package/filters/filter-field/suggestions/SuggestionPin.js +5 -9
  2659. package/filters/filter-field/suggestions/SuggestionTips.css +7 -7
  2660. package/filters/filter-field/suggestions/SuggestionTips.sty.js +5 -5
  2661. package/filters/filter-field/suggestions/SuggestionsOverlay.css +7 -7
  2662. package/filters/filter-field/suggestions/SuggestionsOverlay.sty.js +5 -5
  2663. package/filters/filter-field/utils/conversion/lezer-tree-conversion/parent-node/group.js +7 -1
  2664. package/filters/filter-field/utils/conversion/lezer-tree-conversion/parent-node/statement.d.ts +3 -1
  2665. package/filters/filter-field/utils/conversion/lezer-tree-conversion/parent-node/statement.js +6 -1
  2666. package/filters/filter-field/utils/conversion/tree-precedence.js +1 -1
  2667. package/filters/filter-field/utils/statement-status-registry.d.ts +3 -0
  2668. package/{charts/histogram/components/annotations-histogram/constants.js → filters/filter-field/utils/statement-status-registry.js} +5 -5
  2669. package/filters/segment-selector/SegmentSelector.css +4 -4
  2670. package/filters/segment-selector/SegmentSelector.js +104 -13
  2671. package/filters/segment-selector/SegmentSelector.sty.js +4 -4
  2672. package/filters/segment-selector/SegmentSelector.types.d.ts +10 -1
  2673. package/filters/segment-selector/contexts/SegmentsCache/SegmentsCache.d.ts +7 -3
  2674. package/filters/segment-selector/contexts/SegmentsCache/SegmentsCache.js +1 -17
  2675. package/filters/segment-selector/contexts/SegmentsUI/SegmentsUIReducer.js +14 -11
  2676. package/filters/segment-selector/contexts/SegmentsUI/segmentValidationHelper.d.ts +11 -2
  2677. package/filters/segment-selector/contexts/SegmentsUI/segmentValidationHelper.js +65 -10
  2678. package/filters/segment-selector/parts/EmptySegments.css +1 -1
  2679. package/filters/segment-selector/parts/EmptySegments.sty.js +1 -1
  2680. package/filters/segment-selector/parts/Overlay.css +8 -8
  2681. package/filters/segment-selector/parts/Overlay.js +2 -1
  2682. package/filters/segment-selector/parts/Overlay.sty.js +8 -8
  2683. package/filters/segment-selector/parts/ShowMorePanel/ShowMorePanel.css +4 -4
  2684. package/filters/segment-selector/parts/ShowMorePanel/ShowMorePanel.sty.js +4 -4
  2685. package/filters/segment-selector/parts/segmentsPresets/SegmentsPresets.css +32 -32
  2686. package/filters/segment-selector/parts/segmentsPresets/SegmentsPresets.sty.js +10 -10
  2687. package/filters/segment-selector/parts/selectionBar/SegmentSelect.css +22 -22
  2688. package/filters/segment-selector/parts/selectionBar/SegmentSelect.sty.js +7 -7
  2689. package/filters/segment-selector/parts/selectionBar/SegmentSelectorTrigger.css +1 -1
  2690. package/filters/segment-selector/parts/selectionBar/SegmentSelectorTrigger.sty.js +1 -1
  2691. package/filters/segment-selector/parts/selectionBar/SelectionBar.js +38 -27
  2692. package/filters/segment-selector/parts/selectionBar/ValueSelect.js +105 -59
  2693. package/filters/segment-selector/segmentMessages.d.ts +5 -0
  2694. package/filters/segment-selector/segmentMessages.js +5 -0
  2695. package/filters/segment-selector/utils.d.ts +8 -0
  2696. package/filters/segment-selector/utils.js +2 -1
  2697. package/filters/timeframe-selector/TimeframeSelector.css +2 -2
  2698. package/filters/timeframe-selector/TimeframeSelector.js +14 -10
  2699. package/filters/timeframe-selector/TimeframeSelector.sty.js +2 -2
  2700. package/filters/timeframe-selector/TimeframeSelectorRoot.d.ts +4 -1
  2701. package/filters/timeframe-selector/TimeframeSelectorRoot.js +196 -20
  2702. package/filters/timeframe-selector/components/custom-timeframe-selector/CustomTimeframeSelector.css +4 -4
  2703. package/filters/timeframe-selector/components/custom-timeframe-selector/CustomTimeframeSelector.js +25 -3
  2704. package/filters/timeframe-selector/components/custom-timeframe-selector/CustomTimeframeSelector.sty.js +3 -3
  2705. package/filters/timeframe-selector/components/overlay/TimeframeSelectorOverlay.css +4 -4
  2706. package/filters/timeframe-selector/components/overlay/TimeframeSelectorOverlay.sty.js +4 -4
  2707. package/filters/timeframe-selector/components/presets/Presets.css +27 -27
  2708. package/filters/timeframe-selector/components/presets/Presets.sty.js +11 -11
  2709. package/filters/timeframe-selector/components/stepper/StepperButton.js +2 -2
  2710. package/filters/timeframe-selector/components/trigger/Trigger.css +11 -11
  2711. package/filters/timeframe-selector/components/trigger/Trigger.js +2 -2
  2712. package/filters/timeframe-selector/components/trigger/Trigger.sty.js +4 -4
  2713. package/filters/timeframe-selector/utils/stepper-helpers.d.ts +2 -2
  2714. package/filters/timeframe-selector/utils/stepper-helpers.js +10 -17
  2715. package/forms/_base-input/BaseInput.css +99 -99
  2716. package/forms/_base-input/BaseInput.js +51 -24
  2717. package/forms/_base-input/BaseInput.sty.js +11 -11
  2718. package/forms/_base-input/BaseInputContent.css +7 -7
  2719. package/forms/_base-input/BaseInputContent.sty.js +1 -1
  2720. package/forms/_base-input/base-input.types.d.ts +6 -0
  2721. package/forms/calendar/Calendar.css +48 -48
  2722. package/forms/calendar/Calendar.js +13 -5
  2723. package/forms/calendar/Calendar.sty.js +12 -12
  2724. package/forms/calendar/CalendarRoot.d.ts +2 -2
  2725. package/forms/calendar/CalendarRoot.js +65 -14
  2726. package/forms/calendar/components/CalendarItem.css +7 -7
  2727. package/forms/calendar/components/CalendarItem.sty.js +4 -4
  2728. package/forms/calendar/components/CalendarOutlineIcon.css +8 -8
  2729. package/forms/calendar/components/CalendarOutlineIcon.sty.js +5 -5
  2730. package/forms/calendar/variables.sty.js +2 -2
  2731. package/forms/checkbox/Checkbox.css +20 -20
  2732. package/forms/checkbox/Checkbox.js +45 -23
  2733. package/forms/checkbox/Checkbox.sty.js +3 -3
  2734. package/forms/date-time-picker/DateSelector.js +2 -2
  2735. package/forms/date-time-picker/DateTimePicker.css +75 -75
  2736. package/forms/date-time-picker/DateTimePicker.js +17 -14
  2737. package/forms/date-time-picker/DateTimePicker.sty.js +6 -6
  2738. package/forms/date-time-picker/DateTimePickerRoot.d.ts +4 -1
  2739. package/forms/date-time-picker/DateTimePickerRoot.js +83 -28
  2740. package/forms/date-time-range-picker/DateRangeSelector.css +1 -1
  2741. package/forms/date-time-range-picker/DateRangeSelector.js +2 -2
  2742. package/forms/date-time-range-picker/DateRangeSelector.sty.js +1 -1
  2743. package/forms/date-time-range-picker/DateTimeInput.css +11 -11
  2744. package/forms/date-time-range-picker/DateTimeInput.js +27 -13
  2745. package/forms/date-time-range-picker/DateTimeInput.sty.js +3 -3
  2746. package/forms/date-time-range-picker/DateTimeRangePicker.css +27 -27
  2747. package/forms/date-time-range-picker/DateTimeRangePicker.js +9 -11
  2748. package/forms/date-time-range-picker/DateTimeRangePicker.sty.js +4 -4
  2749. package/forms/date-time-range-picker/DateTimeRangePickerRoot.d.ts +4 -1
  2750. package/forms/date-time-range-picker/DateTimeRangePickerRoot.js +119 -19
  2751. package/forms/date-time-range-picker/types.d.ts +3 -0
  2752. package/forms/forms-core/components/field-set/FieldSet.css +2 -2
  2753. package/forms/forms-core/components/field-set/FieldSet.sty.js +2 -2
  2754. package/forms/forms-core/components/form-field/FormField.js +3 -1
  2755. package/forms/forms-core/components/form-field/FormField.sty.js +1 -1
  2756. package/forms/forms-core/components/form-field/FormFieldContextProvider.d.ts +6 -1
  2757. package/forms/forms-core/components/form-field/FormFieldContextProvider.js +78 -14
  2758. package/forms/forms-core/components/form-field/FormFieldMessageContextProvider.d.ts +4 -1
  2759. package/forms/forms-core/components/form-field/FormFieldMessageContextProvider.js +43 -7
  2760. package/forms/forms-core/components/form-field-group/FormFieldGroup.d.ts +47 -0
  2761. package/forms/forms-core/components/form-field-group/FormFieldGroup.js +159 -0
  2762. package/forms/forms-core/components/form-field-messages/FormFieldMessageItem.css +5 -5
  2763. package/forms/forms-core/components/form-field-messages/FormFieldMessageItem.js +11 -6
  2764. package/forms/forms-core/components/form-field-messages/FormFieldMessageItem.sty.js +2 -2
  2765. package/forms/forms-core/components/form-field-messages/FormFieldMessages.sty.js +1 -1
  2766. package/forms/forms-core/components/label/Label.css +5 -5
  2767. package/forms/forms-core/components/label/Label.js +17 -4
  2768. package/forms/forms-core/components/label/Label.sty.js +2 -2
  2769. package/forms/forms-core/contexts/FormFieldContext.d.ts +35 -0
  2770. package/forms/forms-core/contexts/FormFieldContext.js +12 -2
  2771. package/forms/forms-core/hooks/useFormControl.d.ts +105 -0
  2772. package/forms/forms-core/hooks/useFormControl.js +154 -0
  2773. package/forms/forms-core/hooks/useFormFieldContext.d.ts +13 -1
  2774. package/forms/forms-core/hooks/useFormFieldContext.js +12 -1
  2775. package/forms/forms-core/hooks/useFormFieldValidation.d.ts +24 -6
  2776. package/forms/forms-core/hooks/useFormFieldValidation.js +122 -47
  2777. package/forms/forms-core/state/formfield-messages-state-reducer.d.ts +13 -6
  2778. package/forms/forms-core/state/formfield-messages-state-reducer.js +37 -11
  2779. package/forms/forms-core/state/formfield-state-reducer.d.ts +12 -0
  2780. package/forms/forms-core/state/formfield-state-reducer.js +20 -5
  2781. package/forms/forms-core/time/helpers.js +1 -1
  2782. package/forms/forms-core/types/formfield-messages.types.d.ts +8 -1
  2783. package/forms/forms-core/types/formfield.types.d.ts +6 -1
  2784. package/forms/hooks/useAutofillEvent.css +8 -8
  2785. package/forms/hooks/useAutofillEvent.sty.js +4 -4
  2786. package/forms/index.d.ts +2 -0
  2787. package/forms/index.js +5 -0
  2788. package/forms/number-input/NumberInputBase.js +10 -11
  2789. package/forms/number-input-v2/NumberInput.js +73 -16
  2790. package/forms/number-input-v2/utils/validation.d.ts +2 -8
  2791. package/forms/number-input-v2/utils/validation.js +0 -15
  2792. package/forms/password-input/PasswordInput.js +1 -0
  2793. package/forms/radio/Radio.js +30 -8
  2794. package/forms/radio/RadioGroup.js +68 -27
  2795. package/forms/radio/RadioGroupContext.d.ts +6 -0
  2796. package/forms/radio/styles.css +18 -18
  2797. package/forms/radio/styles.sty.js +8 -8
  2798. package/forms/search-input/SearchInput.css +2 -2
  2799. package/forms/search-input/SearchInput.sty.js +1 -1
  2800. package/forms/search-input/Stepper.css +5 -5
  2801. package/forms/search-input/Stepper.sty.js +3 -3
  2802. package/forms/select/Select.d.ts +9 -0
  2803. package/forms/select/Select.js +88 -25
  2804. package/forms/select/components/Control.d.ts +1 -1
  2805. package/forms/select/components/Control.js +5 -9
  2806. package/forms/select/components/HiddenSelect.js +8 -6
  2807. package/forms/select/components/MenuList.d.ts +2 -0
  2808. package/forms/select/components/MenuList.js +6 -1
  2809. package/forms/select/components/Option.js +12 -3
  2810. package/forms/select/styles/Select.css +46 -46
  2811. package/forms/select/styles/Select.sty.js +24 -24
  2812. package/forms/shared-types.d.ts +8 -0
  2813. package/forms/spin-buttons/SpinButton.css +8 -8
  2814. package/forms/spin-buttons/SpinButton.sty.js +2 -2
  2815. package/forms/switch/Switch.css +36 -36
  2816. package/forms/switch/Switch.js +52 -19
  2817. package/forms/switch/Switch.sty.js +5 -5
  2818. package/forms/text-area/TextArea.css +59 -59
  2819. package/forms/text-area/TextArea.js +51 -17
  2820. package/forms/text-area/TextArea.sty.js +3 -3
  2821. package/forms/text-input/TextInput.d.ts +1 -1
  2822. package/forms/toggle-button-group/Item.js +27 -7
  2823. package/forms/toggle-button-group/ToggleButtonGroup.js +58 -16
  2824. package/forms/toggle-button-group/contexts/ToggleButtonGroupContext.d.ts +3 -0
  2825. package/forms/toggle-button-group/styles.css +58 -58
  2826. package/forms/toggle-button-group/styles.sty.js +15 -15
  2827. package/forms/validation/types.d.ts +123 -0
  2828. package/forms/validation/types.js +82 -0
  2829. package/forms/validation/useCustomMessageEmitter.d.ts +9 -0
  2830. package/forms/validation/useCustomMessageEmitter.js +98 -0
  2831. package/forms/validation/useValidationStateEmitter.d.ts +7 -0
  2832. package/forms/validation/useValidationStateEmitter.js +49 -0
  2833. package/forms/validation/validation-builders.d.ts +17 -0
  2834. package/forms/validation/validation-builders.js +69 -0
  2835. package/lang/en.json +347 -12
  2836. package/lang/ja.json +168 -12
  2837. package/lang/uncompiled/en.json +1149 -1064
  2838. package/lang/uncompiled/ja.json +48 -6
  2839. package/layouts/app-header/AppHeader.css +1 -1
  2840. package/layouts/app-header/AppHeader.sty.js +1 -1
  2841. package/layouts/app-header/Logo.d.ts +4 -4
  2842. package/layouts/app-header/Navigation.css +9 -9
  2843. package/layouts/app-header/Navigation.sty.js +5 -5
  2844. package/layouts/app-header/action-group/ActionButton.css +17 -17
  2845. package/layouts/app-header/action-group/ActionButton.sty.js +3 -3
  2846. package/layouts/app-header/action-group/ActionGroup.css +1 -1
  2847. package/layouts/app-header/action-group/ActionGroup.sty.js +1 -1
  2848. package/layouts/app-header/action-group/NavItem.css +4 -4
  2849. package/layouts/app-header/action-group/NavItem.sty.js +3 -3
  2850. package/layouts/app-header/app-icon/AppIcon.css +4 -4
  2851. package/layouts/app-header/app-icon/AppIcon.sty.js +1 -1
  2852. package/layouts/container/Container.css +5 -5
  2853. package/layouts/container/Container.sty.js +1 -1
  2854. package/layouts/divider/Divider.css +6 -6
  2855. package/layouts/divider/Divider.sty.js +1 -1
  2856. package/layouts/input-group/InputGroup.css +23 -23
  2857. package/layouts/input-group/InputGroup.sty.js +1 -1
  2858. package/layouts/page/DetailView.css +3 -3
  2859. package/layouts/page/DetailView.d.ts +17 -4
  2860. package/layouts/page/DetailView.sty.js +2 -2
  2861. package/layouts/page/Header.css +2 -2
  2862. package/layouts/page/Header.d.ts +5 -1
  2863. package/layouts/page/Header.sty.js +1 -1
  2864. package/layouts/page/Main.css +6 -6
  2865. package/layouts/page/Main.d.ts +5 -1
  2866. package/layouts/page/Main.sty.js +4 -4
  2867. package/layouts/page/Page.css +2 -2
  2868. package/layouts/page/Page.d.ts +5 -1
  2869. package/layouts/page/Page.sty.js +1 -1
  2870. package/layouts/page/PanelControlButton.d.ts +5 -1
  2871. package/layouts/page/Sidebar.css +71 -22
  2872. package/layouts/page/Sidebar.d.ts +17 -4
  2873. package/layouts/page/Sidebar.js +2 -0
  2874. package/layouts/page/Sidebar.sty.js +8 -8
  2875. package/layouts/page/page-types.d.ts +14 -3
  2876. package/layouts/page/panel-types.d.ts +3 -0
  2877. package/layouts/page/panel.css +19 -19
  2878. package/layouts/page/panel.sty.js +10 -10
  2879. package/layouts/page-layout/PageLayout.css +10 -10
  2880. package/layouts/page-layout/PageLayout.d.ts +1 -1
  2881. package/layouts/page-layout/PageLayout.sty.js +6 -6
  2882. package/layouts/page-layout/details-layout/DetailsControlBar.css +3 -3
  2883. package/layouts/page-layout/details-layout/DetailsControlBar.sty.js +3 -3
  2884. package/layouts/page-layout/details-layout/DetailsLayout.css +6 -6
  2885. package/layouts/page-layout/details-layout/DetailsLayout.js +66 -28
  2886. package/layouts/page-layout/details-layout/DetailsLayout.sty.js +5 -5
  2887. package/layouts/page-layout/details-layout/Overlay.css +18 -18
  2888. package/layouts/page-layout/details-layout/Overlay.d.ts +6 -1
  2889. package/layouts/page-layout/details-layout/Overlay.js +12 -6
  2890. package/layouts/page-layout/details-layout/Overlay.sty.js +4 -4
  2891. package/layouts/page-layout/details-layout/slots.d.ts +12 -2
  2892. package/layouts/page-layout/details-layout/useLayoutState.js +3 -1
  2893. package/layouts/page-layout/shared/collapsible.d.ts +8 -0
  2894. package/layouts/page-layout/shared/portal-slots.d.ts +1 -1
  2895. package/layouts/page-layout/shared/portal-slots.js +20 -2
  2896. package/layouts/page-layout/shared/slot-config.d.ts +1 -1
  2897. package/layouts/page-layout/shared/useBreakpointCollapse.d.ts +15 -12
  2898. package/layouts/page-layout/shared/useBreakpointCollapse.js +17 -15
  2899. package/layouts/page-layout/sidebar-layout/SidebarLayout.css +38 -38
  2900. package/layouts/page-layout/sidebar-layout/SidebarLayout.sty.js +15 -15
  2901. package/layouts/page-layout/sidebar-layout/slots.d.ts +1 -0
  2902. package/layouts/page-layout/sidebar-layout/useLayoutState.js +3 -1
  2903. package/layouts/split-layout/SplitLayout.css +21 -18
  2904. package/layouts/split-layout/SplitLayout.js +2 -1
  2905. package/layouts/split-layout/SplitLayout.sty.js +7 -7
  2906. package/layouts/split-layout/slots.d.ts +7 -0
  2907. package/layouts/split-layout/slots.js +3 -1
  2908. package/layouts/split-layout/useSplitSizing.d.ts +1 -0
  2909. package/layouts/split-layout/useSplitSizing.js +46 -32
  2910. package/layouts/surface/Surface.css +39 -39
  2911. package/layouts/surface/Surface.sty.js +2 -2
  2912. package/layouts/surface/variables.sty.js +1 -1
  2913. package/layouts/title-bar/TitleBar.css +5 -5
  2914. package/layouts/title-bar/TitleBar.sty.js +4 -4
  2915. package/migrations/3.2.0/codemods/rename-app-header-deprecated-members.js +1 -1
  2916. package/migrations/3.2.0/codeshift-migration.js +1 -1
  2917. package/migrations/3.2.0/dt-app-migration.js +100 -100
  2918. package/navigation/breadcrumbs/Breadcrumbs.css +9 -9
  2919. package/navigation/breadcrumbs/Breadcrumbs.sty.js +5 -5
  2920. package/navigation/menu/Content.js +2 -1
  2921. package/navigation/menu/Item.js +7 -0
  2922. package/navigation/menu/Menu.css +38 -15
  2923. package/navigation/menu/Menu.sty.d.ts +1 -0
  2924. package/navigation/menu/Menu.sty.js +10 -8
  2925. package/navigation/menu/Sub.js +16 -0
  2926. package/navigation/menu/SubContent.js +8 -1
  2927. package/navigation/menu/SubTrigger.js +17 -5
  2928. package/navigation/menu/contexts/MenuSubLevelContext.d.ts +11 -0
  2929. package/navigation/menu/contexts/MenuSubLevelContext.js +51 -0
  2930. package/navigation/tabs/RenderTab.css +14 -14
  2931. package/navigation/tabs/RenderTab.sty.js +3 -3
  2932. package/navigation/tabs/TabPanel.css +3 -3
  2933. package/navigation/tabs/TabPanel.sty.js +2 -2
  2934. package/navigation/tabs/Tabs.css +9 -9
  2935. package/navigation/tabs/Tabs.js +2 -2
  2936. package/navigation/tabs/Tabs.sty.js +5 -5
  2937. package/notifications/notification-settings/NotificationSettings.css +1 -1
  2938. package/notifications/notification-settings/NotificationSettings.sty.js +1 -1
  2939. package/notifications/notification-settings/components/CopyPermissionsButton.js +3 -7
  2940. package/notifications/notification-settings/components/PermissionInfo.js +17 -20
  2941. package/notifications/notification-settings/components/ToggleButton.js +3 -1
  2942. package/notifications/toast/Toast.css +6 -6
  2943. package/notifications/toast/Toast.sty.js +4 -4
  2944. package/notifications/toast/ToastContainer.css +17 -17
  2945. package/notifications/toast/ToastContainer.sty.js +1 -1
  2946. package/overlays/drawer/Drawer.css +9 -9
  2947. package/overlays/drawer/Drawer.sty.js +5 -5
  2948. package/overlays/modal/Modal.css +56 -8
  2949. package/overlays/modal/Modal.js +3 -34
  2950. package/overlays/modal/Modal.sty.d.ts +3 -0
  2951. package/overlays/modal/Modal.sty.js +10 -4
  2952. package/overlays/overlay/Overlay.css +1 -1
  2953. package/overlays/overlay/Overlay.sty.js +1 -1
  2954. package/overlays/sheet/Sheet.css +14 -8
  2955. package/overlays/sheet/Sheet.sty.js +5 -5
  2956. package/overlays/tooltip/tooltip.css +18 -18
  2957. package/overlays/tooltip/tooltip.sty.js +3 -3
  2958. package/overlays/utils/popper-modifiers.js +7 -3
  2959. package/package.json +18 -20
  2960. package/styles/colorUtils.css +60 -60
  2961. package/styles/colorUtils.sty.js +2 -2
  2962. package/styles/container.css +47 -47
  2963. package/styles/container.sty.js +2 -2
  2964. package/styles/ellipsis.css +1 -1
  2965. package/styles/ellipsis.sty.js +1 -1
  2966. package/styles/field.css +290 -290
  2967. package/styles/field.sty.js +2 -2
  2968. package/styles/screen-reader-only.css +1 -1
  2969. package/styles/screen-reader-only.sty.js +1 -1
  2970. package/styles/sprinkles.css +262 -262
  2971. package/styles/sprinkles.sty.js +1 -1
  2972. package/styles/textStyle.css +8 -8
  2973. package/styles/textStyle.sty.js +1 -1
  2974. package/tables/DataTable/DataTable.css +2 -2
  2975. package/tables/DataTable/DataTable.d.ts +1 -1
  2976. package/tables/DataTable/DataTable.js +14 -5
  2977. package/tables/DataTable/DataTable.sty.js +7 -7
  2978. package/tables/DataTable/components/Alignment.css +6 -6
  2979. package/tables/DataTable/components/Alignment.sty.js +2 -2
  2980. package/tables/DataTable/components/ColumnPinning/DataTablePinningShadowCells.css +6 -6
  2981. package/tables/DataTable/components/ColumnPinning/DataTablePinningShadowCells.sty.js +3 -3
  2982. package/tables/DataTable/components/DataTableBody.css +2 -2
  2983. package/tables/DataTable/components/DataTableBody.sty.js +2 -2
  2984. package/tables/DataTable/components/DataTableCell.css +103 -117
  2985. package/tables/DataTable/components/DataTableCell.sty.js +5 -5
  2986. package/tables/DataTable/components/DataTableDefaultCell.css +23 -23
  2987. package/tables/DataTable/components/DataTableDefaultCell.sty.js +1 -1
  2988. package/tables/DataTable/components/DataTableEmptyState.css +6 -6
  2989. package/tables/DataTable/components/DataTableEmptyState.sty.js +2 -2
  2990. package/tables/DataTable/components/DataTableHeader.css +2 -2
  2991. package/tables/DataTable/components/DataTableHeader.sty.js +2 -2
  2992. package/tables/DataTable/components/DataTableHeaderCell.css +64 -64
  2993. package/tables/DataTable/components/DataTableHeaderCell.sty.js +23 -23
  2994. package/tables/DataTable/components/DataTableRow.css +13 -13
  2995. package/tables/DataTable/components/DataTableRow.sty.js +1 -1
  2996. package/tables/DataTable/components/DataTableScrollShadow.css +10 -10
  2997. package/tables/DataTable/components/DataTableScrollShadow.sty.js +2 -2
  2998. package/tables/DataTable/components/DataTableVirtualizationContainer.css +21 -21
  2999. package/tables/DataTable/components/DataTableVirtualizationContainer.js +6 -0
  3000. package/tables/DataTable/components/DataTableVirtualizationContainer.sty.js +1 -1
  3001. package/tables/DataTable/components/SettingsModal/DataTableSettingsModal.css +6 -0
  3002. package/tables/DataTable/components/SettingsModal/DataTableSettingsModal.d.ts +3 -1
  3003. package/tables/DataTable/components/SettingsModal/DataTableSettingsModal.js +61 -37
  3004. package/tables/DataTable/components/SettingsModal/DataTableSettingsModal.sty.d.ts +1 -0
  3005. package/tables/DataTable/components/SettingsModal/DataTableSettingsModal.sty.js +25 -0
  3006. package/tables/DataTable/components/TableActions/DataTableSelectionChip.css +5 -5
  3007. package/tables/DataTable/components/TableActions/DataTableSelectionChip.sty.js +2 -2
  3008. package/tables/DataTable/components/Toolbar/ColumnSettings/ColumnOrderSettings/ColumnOrderSettingsDragAndDrop.css +7 -7
  3009. package/tables/DataTable/components/Toolbar/ColumnSettings/ColumnOrderSettings/ColumnOrderSettingsDragAndDrop.js +1 -1
  3010. package/tables/DataTable/components/Toolbar/ColumnSettings/ColumnOrderSettings/ColumnOrderSettingsDragAndDrop.sty.js +3 -3
  3011. package/tables/DataTable/components/Toolbar/ColumnSettings/ColumnOrderSettings/column-order-settings-dnd-utils.d.ts +1 -1
  3012. package/tables/DataTable/components/Toolbar/ColumnSettings/ColumnOrderSettings/column-order-settings-dnd-utils.js +11 -20
  3013. package/tables/DataTable/components/Toolbar/ColumnSettings/ColumnPinningMenu.js +1 -1
  3014. package/tables/DataTable/components/Toolbar/ColumnSettings/ColumnVisibilityToggle.d.ts +30 -0
  3015. package/tables/DataTable/components/Toolbar/ColumnSettings/ColumnVisibilityToggle.js +70 -0
  3016. package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnSettingsModal.d.ts +5 -1
  3017. package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnSettingsModal.js +42 -5
  3018. package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnVisibilitySettings.d.ts +1 -1
  3019. package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnVisibilitySettings.js +2 -1
  3020. package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsList.css +25 -8
  3021. package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsList.d.ts +5 -1
  3022. package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsList.js +77 -27
  3023. package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsList.sty.d.ts +10 -2
  3024. package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsList.sty.js +3 -3
  3025. package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsListItem.css +32 -14
  3026. package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsListItem.d.ts +8 -3
  3027. package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsListItem.js +39 -15
  3028. package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsListItem.sty.d.ts +4 -0
  3029. package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsListItem.sty.js +12 -4
  3030. package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsSectionHeader.css +12 -0
  3031. package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsSectionHeader.d.ts +23 -0
  3032. package/tables/DataTable/components/Toolbar/ColumnSettings/{ColumnVisibilityCheckbox.js → DataTableColumnsSectionHeader.js} +23 -23
  3033. package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsSectionHeader.sty.d.ts +2 -0
  3034. package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsSectionHeader.sty.js +26 -0
  3035. package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableVisibilityFilterControls.css +5 -5
  3036. package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableVisibilityFilterControls.sty.js +3 -3
  3037. package/tables/DataTable/components/Toolbar/ColumnSettings/column-settings-test-utils.d.ts +8 -0
  3038. package/tables/DataTable/components/Toolbar/ColumnSettings/column-settings-test-utils.js +52 -0
  3039. package/tables/DataTable/components/Toolbar/ColumnSettings/column-settings-types.d.ts +17 -1
  3040. package/tables/DataTable/components/Toolbar/ColumnSettings/column-settings-utils.d.ts +31 -2
  3041. package/tables/DataTable/components/Toolbar/ColumnSettings/column-settings-utils.js +72 -3
  3042. package/tables/DataTable/components/Toolbar/DataTableToolbar.d.ts +14 -1
  3043. package/tables/DataTable/components/Toolbar/DataTableToolbar.js +4 -0
  3044. package/tables/DataTable/components/Toolbar/DataTableToolbarMenu.d.ts +4 -0
  3045. package/tables/DataTable/components/Toolbar/DataTableToolbarMenu.js +2 -1
  3046. package/tables/DataTable/components/Toolbar/Download/DataTableDownloadData.css +3 -3
  3047. package/tables/DataTable/components/Toolbar/Download/DataTableDownloadData.d.ts +2 -1
  3048. package/tables/DataTable/components/Toolbar/Download/DataTableDownloadData.js +11 -4
  3049. package/tables/DataTable/components/Toolbar/Download/DataTableDownloadData.sty.js +2 -2
  3050. package/tables/DataTable/features/ColumnOrder/ColumnOrder.css +8 -8
  3051. package/tables/DataTable/features/ColumnOrder/ColumnOrder.sty.js +4 -4
  3052. package/tables/DataTable/features/ColumnOrder/column-order-dnd-utils.js +1 -1
  3053. package/tables/DataTable/features/ColumnSizing/ColumnSizing.css +3 -3
  3054. package/tables/DataTable/features/ColumnSizing/ColumnSizing.sty.js +1 -1
  3055. package/tables/DataTable/features/ColumnTypes/ColumnTypes.css +1 -1
  3056. package/tables/DataTable/features/ColumnTypes/ColumnTypes.sty.js +1 -1
  3057. package/tables/DataTable/features/ColumnTypes/column-types-types.d.ts +2 -1
  3058. package/tables/DataTable/features/ColumnVisibility/column-visibility-types.d.ts +17 -0
  3059. package/tables/DataTable/features/Config.js +8 -4
  3060. package/tables/DataTable/features/Download/Download.d.ts +7 -5
  3061. package/tables/DataTable/features/Download/Download.js +73 -16
  3062. package/tables/DataTable/features/Download/download-types.d.ts +52 -3
  3063. package/tables/DataTable/features/Download/useDownload.d.ts +2 -0
  3064. package/tables/DataTable/features/Download/useDownload.js +1 -0
  3065. package/tables/DataTable/features/GanttChart/DataTableGanttAnnotationsIndicators.css +1 -1
  3066. package/tables/DataTable/features/GanttChart/DataTableGanttAnnotationsIndicators.sty.js +1 -1
  3067. package/tables/DataTable/features/GanttChart/DataTableGanttChartCell.css +3 -3
  3068. package/tables/DataTable/features/GanttChart/DataTableGanttChartCell.sty.js +2 -2
  3069. package/tables/DataTable/features/GanttChart/DataTableGanttChartGrid.css +1 -1
  3070. package/tables/DataTable/features/GanttChart/DataTableGanttChartGrid.js +3 -3
  3071. package/tables/DataTable/features/GanttChart/DataTableGanttChartGrid.sty.js +1 -1
  3072. package/tables/DataTable/features/GanttChart/DataTableGanttChartHeader.css +4 -4
  3073. package/tables/DataTable/features/GanttChart/DataTableGanttChartHeader.js +2 -0
  3074. package/tables/DataTable/features/GanttChart/DataTableGanttChartHeader.sty.js +1 -1
  3075. package/tables/DataTable/features/LoadingState/LoadingState.css +3 -3
  3076. package/tables/DataTable/features/LoadingState/LoadingState.sty.js +3 -3
  3077. package/tables/DataTable/features/RowDetails/RowDetails.css +13 -13
  3078. package/tables/DataTable/features/RowDetails/RowDetails.sty.js +3 -3
  3079. package/tables/DataTable/features/RowInteractivity/RowInteractivity.css +14 -14
  3080. package/tables/DataTable/features/RowInteractivity/RowInteractivity.sty.js +1 -1
  3081. package/tables/DataTable/features/RowOrder/RowOrder.css +8 -8
  3082. package/tables/DataTable/features/RowOrder/RowOrder.sty.js +3 -3
  3083. package/tables/DataTable/features/RowOrder/RowOrderColumnDef.js +46 -13
  3084. package/tables/DataTable/features/RowOrder/components/RowOrderingDragAndDropContext.js +1 -0
  3085. package/tables/DataTable/features/RowOrder/row-order-types.d.ts +27 -0
  3086. package/tables/DataTable/features/RowOrder/useRowOrder.js +6 -0
  3087. package/tables/DataTable/features/Sorting/Sorting.css +34 -34
  3088. package/tables/DataTable/features/Sorting/Sorting.sty.js +3 -3
  3089. package/tables/DataTable/features/SubRows/SubRows.css +19 -19
  3090. package/tables/DataTable/features/SubRows/SubRows.sty.js +5 -5
  3091. package/tables/DataTable/features/Thresholds/Thresholds.css +2 -2
  3092. package/tables/DataTable/features/Thresholds/Thresholds.sty.js +3 -3
  3093. package/tables/DataTable/features/UserActions/FloatingMenu.js +18 -9
  3094. package/tables/DataTable/features/UserActions/InlineUserActionsMenu.js +19 -6
  3095. package/tables/DataTable/features/UserActions/RowActions.css +4 -4
  3096. package/tables/DataTable/features/UserActions/RowActions.sty.js +1 -1
  3097. package/tables/DataTable/features/UserActions/RowActionsColumnDef.js +22 -4
  3098. package/tables/DataTable/features/UserActions/UserActions.css +19 -18
  3099. package/tables/DataTable/features/UserActions/UserActions.sty.js +2 -2
  3100. package/tables/DataTable/features/UserActions/useCloseFloatingMenuOnScroll.d.ts +14 -0
  3101. package/tables/DataTable/features/UserActions/useCloseFloatingMenuOnScroll.js +106 -0
  3102. package/tables/DataTable/features/UserActions/useCloseMenuOnScroll.d.ts +13 -0
  3103. package/tables/DataTable/features/UserActions/useCloseMenuOnScroll.js +78 -0
  3104. package/tables/DataTable/hooks/useTableRootResize.d.ts +2 -2
  3105. package/tables/DataTable/hooks/useTableRootResize.js +2 -12
  3106. package/tables/DataTable/messages.d.ts +65 -0
  3107. package/tables/DataTable/messages.js +67 -0
  3108. package/tables/DataTable/public.api.d.ts +20 -6
  3109. package/tables/SimpleTable/SimpleTable.css +27 -27
  3110. package/tables/SimpleTable/SimpleTable.sty.js +1 -1
  3111. package/tables/hooks/useLockedRowOrder.d.ts +22 -1
  3112. package/tables/hooks/useLockedRowOrder.js +9 -3
  3113. package/tables/index.d.ts +2 -2
  3114. package/tables/utils/replace-urls-with-links.js +15 -3
  3115. package/typography/block-quote/Blockquote.css +2 -2
  3116. package/typography/block-quote/Blockquote.sty.js +1 -1
  3117. package/typography/code/Code.css +1 -1
  3118. package/typography/code/Code.sty.js +1 -1
  3119. package/typography/emphasis/Emphasis.css +1 -1
  3120. package/typography/emphasis/Emphasis.sty.js +1 -1
  3121. package/typography/external-link/ExternalLink.css +6 -6
  3122. package/typography/external-link/ExternalLink.js +12 -0
  3123. package/typography/external-link/ExternalLink.sty.js +1 -1
  3124. package/typography/heading/Heading.css +7 -7
  3125. package/typography/heading/Heading.sty.js +1 -1
  3126. package/typography/highlight/Highlight.css +2 -2
  3127. package/typography/highlight/Highlight.sty.js +1 -1
  3128. package/typography/link/Link.css +4 -4
  3129. package/typography/link/Link.sty.js +1 -1
  3130. package/typography/list/List.css +4 -4
  3131. package/typography/list/List.sty.js +2 -2
  3132. package/typography/paragraph/Paragraph.css +3 -3
  3133. package/typography/paragraph/Paragraph.sty.js +1 -1
  3134. package/typography/strikethrough/Strikethrough.css +1 -1
  3135. package/typography/strikethrough/Strikethrough.sty.js +1 -1
  3136. package/typography/strong/Strong.css +1 -1
  3137. package/typography/strong/Strong.sty.js +1 -1
  3138. package/typography/text/Text.css +3 -3
  3139. package/typography/text/Text.sty.js +1 -1
  3140. package/typography/text-ellipsis/TextEllipsis.css +6 -6
  3141. package/typography/text-ellipsis/TextEllipsis.js +2 -2
  3142. package/typography/text-ellipsis/TextEllipsis.sty.js +2 -2
  3143. package/charts/core/components/toolbar/utils/estimate-toolbar-width.d.ts +0 -8
  3144. package/charts/histogram/components/annotations-histogram/constants.d.ts +0 -2
  3145. package/charts/honeycomb/components/canvas/utils/define-text-to-render.d.ts +0 -3
  3146. package/charts/honeycomb/components/canvas/utils/define-text-to-render.js +0 -34
  3147. package/charts/timeseries/components/annotations-timeseries/constants.d.ts +0 -2
  3148. package/charts/tree-map/hooks/useSetOverlayState.d.ts +0 -3
  3149. package/charts/tree-map/utils/text-measure.d.ts +0 -15
  3150. package/content/ai-response/tests/AiResponse-animation.spec.d.ts +0 -1
  3151. package/content/ai-response/tests/AiResponse-animation.spec.js +0 -281
  3152. package/content/ai-response/tests/AiResponse-reduced-motion.spec.d.ts +0 -1
  3153. package/content/ai-response/tests/AiResponse-reduced-motion.spec.js +0 -253
  3154. package/content/ai-response/tests/vite-helpers.d.ts +0 -8
  3155. package/content/ai-response/tests/vite-helpers.js +0 -66
  3156. package/esm/charts/core/components/toolbar/utils/estimate-toolbar-width.js +0 -16
  3157. package/esm/charts/core/components/toolbar/utils/estimate-toolbar-width.js.map +0 -7
  3158. package/esm/charts/histogram/components/annotations-histogram/constants.js +0 -5
  3159. package/esm/charts/histogram/components/annotations-histogram/constants.js.map +0 -7
  3160. package/esm/charts/honeycomb/components/canvas/utils/define-text-to-render.js +0 -19
  3161. package/esm/charts/honeycomb/components/canvas/utils/define-text-to-render.js.map +0 -7
  3162. package/esm/charts/timeseries/components/annotations-timeseries/constants.js +0 -5
  3163. package/esm/charts/timeseries/components/annotations-timeseries/constants.js.map +0 -7
  3164. package/esm/charts/tree-map/hooks/useSetOverlayState.js +0 -21
  3165. package/esm/charts/tree-map/hooks/useSetOverlayState.js.map +0 -7
  3166. package/esm/charts/tree-map/utils/text-measure.js +0 -41
  3167. package/esm/charts/tree-map/utils/text-measure.js.map +0 -7
  3168. package/esm/content/ai-response/tests/AiResponse-animation.spec.js +0 -295
  3169. package/esm/content/ai-response/tests/AiResponse-animation.spec.js.map +0 -7
  3170. package/esm/content/ai-response/tests/AiResponse-reduced-motion.spec.js +0 -258
  3171. package/esm/content/ai-response/tests/AiResponse-reduced-motion.spec.js.map +0 -7
  3172. package/esm/content/ai-response/tests/vite-helpers.js +0 -50
  3173. package/esm/content/ai-response/tests/vite-helpers.js.map +0 -7
  3174. package/esm/filters/filter-field/contexts/SavedAndRecentQueryClientContext.js +0 -19
  3175. package/esm/filters/filter-field/contexts/SavedAndRecentQueryClientContext.js.map +0 -7
  3176. package/esm/filters/filter-field/error-fallback/ErrorFallback.js.map +0 -7
  3177. package/esm/filters/filter-field/error-fallback/messages.js.map +0 -7
  3178. package/esm/filters/filter-field/hooks/recent-and-pinned/usePersistedFilter.js +0 -163
  3179. package/esm/filters/filter-field/hooks/recent-and-pinned/usePersistedFilter.js.map +0 -7
  3180. package/esm/filters/filter-field/hooks/recent-and-pinned/useRecentFiltersStore.js +0 -25
  3181. package/esm/filters/filter-field/hooks/recent-and-pinned/useRecentFiltersStore.js.map +0 -7
  3182. package/esm/forms/forms-core/hooks/useSyncedFormControlProps.js +0 -61
  3183. package/esm/forms/forms-core/hooks/useSyncedFormControlProps.js.map +0 -7
  3184. package/esm/forms/hooks/useInputHint.js +0 -25
  3185. package/esm/forms/hooks/useInputHint.js.map +0 -7
  3186. package/esm/tables/DataTable/components/Toolbar/ColumnSettings/ColumnVisibilityCheckbox.js +0 -29
  3187. package/esm/tables/DataTable/components/Toolbar/ColumnSettings/ColumnVisibilityCheckbox.js.map +0 -7
  3188. package/filters/filter-field/contexts/SavedAndRecentQueryClientContext.d.ts +0 -6
  3189. package/filters/filter-field/error-fallback/ErrorFallback.d.ts +0 -7
  3190. package/filters/filter-field/hooks/recent-and-pinned/usePersistedFilter.d.ts +0 -12
  3191. package/filters/filter-field/hooks/recent-and-pinned/usePersistedFilter.js +0 -176
  3192. package/filters/filter-field/hooks/recent-and-pinned/useRecentFiltersStore.d.ts +0 -6
  3193. package/filters/filter-field/hooks/recent-and-pinned/useRecentFiltersStore.js +0 -39
  3194. package/forms/forms-core/hooks/useSyncedFormControlProps.d.ts +0 -18
  3195. package/forms/forms-core/hooks/useSyncedFormControlProps.js +0 -79
  3196. package/forms/hooks/useInputHint.d.ts +0 -23
  3197. package/forms/hooks/useInputHint.js +0 -43
  3198. package/tables/DataTable/components/Toolbar/ColumnSettings/ColumnVisibilityCheckbox.d.ts +0 -26
  3199. /package/charts/xy-chart-adoption/{types → shared/types}/props.d.ts +0 -0
  3200. /package/charts/xy-chart-adoption/{types → shared/types}/props.js +0 -0
  3201. /package/{filters/filter-field → core/components}/error-fallback/ErrorFallback.js +0 -0
  3202. /package/{charts/core → core}/utils/get-tick-value-as-number.d.ts +0 -0
  3203. /package/{charts/core → core}/utils/get-tick-value-as-number.js +0 -0
  3204. /package/esm/charts/{xy-chart-adoption/types/props.js.map → core/types/chart-data.js.map} +0 -0
  3205. /package/esm/charts/xy-chart-adoption/{types → shared/types}/props.js +0 -0
  3206. /package/esm/{filters/filter-field → core/components}/error-fallback/ErrorFallback.js +0 -0
  3207. /package/esm/{charts/core → core}/utils/get-tick-value-as-number.js +0 -0
@@ -1,2170 +1,2255 @@
1
1
  {
2
+ "+1GjcNJdKJiZg6v/": {
3
+ "translation": "Package versions",
4
+ "notes": "HelpMenu entry that opens the package versions modal"
5
+ },
2
6
  "+8N30Kx6cXgWSja4": {
3
- "notes": "Applies pan to the right",
4
- "translation": "Pan right"
7
+ "translation": "Pan right",
8
+ "notes": "Applies pan to the right"
5
9
  },
6
10
  "+BUznwQEJTiILiAa": {
7
- "notes": "Message to display by default for adding more Filters to the FilterBar.",
8
- "translation": "Add filter"
11
+ "translation": "Add filter",
12
+ "notes": "Message to display by default for adding more Filters to the FilterBar."
9
13
  },
10
14
  "+Jc1Pz2t25AcHil0": {
11
- "notes": "Chip label indicating a feature is newly released",
12
- "translation": "New"
15
+ "translation": "New",
16
+ "notes": "Chip label indicating a feature is newly released"
13
17
  },
14
18
  "+MYvp4qc5Ti3ddoO": {
15
- "notes": "Key shortcut in a tooltip shown when hovering the \"Zoom in\" action in the time series chart toolbar",
16
- "translation": "Up"
19
+ "translation": "Up",
20
+ "notes": "Key shortcut in a tooltip shown when hovering the \"Zoom in\" action in the time series chart toolbar"
17
21
  },
18
22
  "+Q75VFLIzDqeN+do": {
19
- "notes": "Filter field unsupported search operator and logical or",
20
- "translation": "Filter and search statements can only be combined using an {allowedOperator}."
23
+ "translation": "Filter and search statements can only be combined using an {allowedOperator}.",
24
+ "notes": "Filter field unsupported search operator and logical or"
21
25
  },
22
26
  "+Vxz7rIFW86zQsz8": {
23
- "notes": "When all columns are hidden, this is shown in the main table area.",
24
- "translation": "All table columns are hidden."
27
+ "translation": "All table columns are hidden.",
28
+ "notes": "When all columns are hidden, this is shown in the main table area."
25
29
  },
26
30
  "+jn6HNnzB4IDIbZu": {
27
- "notes": "Microguide Next button.",
28
- "translation": "Next"
31
+ "translation": "Next",
32
+ "notes": "Microguide Next button."
29
33
  },
30
34
  "+kn/ILSk7yxtVqQ/": {
31
- "notes": "Error message if the segment was removed but is still selected.",
32
- "translation": "This segment doesn't exist anymore. Please remove it from the selection."
35
+ "translation": "This segment doesn't exist anymore. Please remove it from the selection.",
36
+ "notes": "Error message if the segment was removed but is still selected."
33
37
  },
34
38
  "+mEjL2q8RACwzIMR": {
35
- "notes": "Label for the button that switches the details panel to overlay mode.",
36
- "translation": "Switch to overlay"
39
+ "translation": "Switch to overlay",
40
+ "notes": "Label for the button that switches the details panel to overlay mode."
37
41
  },
38
42
  "+qNOmVAE1opriSnf": {
39
- "notes": "Filter field greater than or equal operator description",
40
- "translation": "Greater than or equal to"
43
+ "translation": "Greater than or equal to",
44
+ "notes": "Filter field greater than or equal operator description"
41
45
  },
42
46
  "+uTtPJkLATW51CDB": {
43
- "notes": "FieldSet Label in SegmentSelector Overlay.",
44
- "translation": "Filter by segments"
47
+ "translation": "Filter by segments",
48
+ "notes": "FieldSet Label in SegmentSelector Overlay."
45
49
  },
46
50
  "/4+vzbJXQx9/bHQ9": {
47
- "notes": "Text label for the value in the tooltip. Displayed when hovering over Pie, Meterbar, Treemap, Rect and Honeycomb geometries.",
48
- "translation": "Value"
51
+ "translation": "Value",
52
+ "notes": "Text label for the value in the tooltip. Displayed when hovering over Pie, Meterbar, Treemap, Rect and Honeycomb geometries."
49
53
  },
50
54
  "/DJNcsGLrHi/d+Cy": {
51
- "notes": "Label for the download group in the table actions menu",
52
- "translation": "Download CSV"
55
+ "translation": "Download CSV",
56
+ "notes": "Label for the download group in the table actions menu"
53
57
  },
54
58
  "/H3rbOvaR6bAasVo": {
55
- "notes": "Select component clear selection button.",
56
- "translation": "Clear selection"
59
+ "translation": "Clear selection",
60
+ "notes": "Select component clear selection button."
57
61
  },
58
62
  "/SFvkA0WT3AVdLhH": {
59
- "notes": "Details shown for JSONPath key suggestions.",
60
- "translation": "Filter JSON attributes"
63
+ "translation": "Filter JSON attributes",
64
+ "notes": "Details shown for JSONPath key suggestions."
61
65
  },
62
66
  "/cBMcieLHGw0wJxk": {
63
- "notes": "Status message that resetting column settings to default was successful.",
64
- "translation": "Successfully reset everything to default."
67
+ "translation": "Successfully reset everything to default.",
68
+ "notes": "Status message that resetting column settings to default was successful."
65
69
  },
66
70
  "/cwiOkubC69MZmRu": {
67
- "notes": "Error message for input that the browser is unable to convert, e.g. string for a number input.",
68
- "translation": "Please provide input in a valid format."
71
+ "translation": "Please provide input in a valid format.",
72
+ "notes": "Error message for input that the browser is unable to convert, e.g. string for a number input."
69
73
  },
70
74
  "/dH1ZDxCvqGesp4H": {
71
- "notes": "Invalid value error for boolean type",
72
- "translation": "Invalid filter value. The supported values for this key are 'true' and 'false'."
75
+ "translation": "Invalid filter value. The supported values for this key are 'true' and 'false'.",
76
+ "notes": "Invalid value error for boolean type"
73
77
  },
74
78
  "/gODMPYFdp49RodI": {
75
- "notes": "Message shown if the starts-with operator can be used with the current value.",
76
- "translation": "Starts with {value}"
79
+ "translation": "Starts with {value}",
80
+ "notes": "Message shown if the starts-with operator can be used with the current value."
77
81
  },
78
82
  "/jHof2z8yLr/qa9U": {
79
- "notes": "Filter field unsupported group",
80
- "translation": "Grouping statements is not supported in the basic syntax mode."
83
+ "translation": "Grouping statements is not supported in the basic syntax mode.",
84
+ "notes": "Filter field unsupported group"
81
85
  },
82
86
  "01469lp26TkXjPEz": {
83
- "notes": "Label for the panel control button.",
84
- "translation": "Open {panelName}"
87
+ "translation": "Open {panelName}",
88
+ "notes": "Label for the panel control button."
85
89
  },
86
90
  "0VRyxKUSWrEGrYLJ": {
87
- "notes": "Message shown for value suggestions restricted by a validator map (only SmartscapeIds are valid)",
88
- "translation": "Supported values: SmartscapeIds"
91
+ "translation": "Supported values: SmartscapeIds",
92
+ "notes": "Message shown for value suggestions restricted by a validator map (only SmartscapeIds are valid)"
89
93
  },
90
94
  "0Y8wN2jk+BAa2NoC": {
91
- "notes": "Error message for a date or a timeframe later then the expected maximum.",
92
- "translation": "Please select a {term} earlier than {max}."
95
+ "translation": "Please select a {term} earlier than {max}.",
96
+ "notes": "Error message for a date or a timeframe later then the expected maximum."
93
97
  },
94
98
  "0h7hXAauFUZKiVcD": {
95
- "notes": "Label for IP address type used in mixed type error messages",
96
- "translation": "IP address"
99
+ "translation": "IP address",
100
+ "notes": "Label for IP address type used in mixed type error messages"
97
101
  },
98
102
  "0mIAvvhLoJG6DVyY": {
99
- "notes": "Default placeholder for code editor when the language is YAML.",
100
- "translation": "Add YAML"
103
+ "translation": "Add YAML",
104
+ "notes": "Default placeholder for code editor when the language is YAML."
101
105
  },
102
106
  "0ntbampPIxNnacS8": {
103
- "notes": "Panel name translation",
104
- "translation": "Detail View"
107
+ "translation": "Detail View",
108
+ "notes": "Panel name translation"
105
109
  },
106
110
  "0pTypH/J5FqapHUE": {
107
- "notes": "Filter field invalid value error",
108
- "translation": "Invalid filter value."
111
+ "translation": "Invalid filter value.",
112
+ "notes": "Filter field invalid value error"
109
113
  },
110
114
  "0yl3EugW5oCHVbO1": {
111
- "notes": "Close the microguide.",
112
- "translation": "Close microguide"
115
+ "translation": "Close microguide",
116
+ "notes": "Close the microguide."
113
117
  },
114
118
  "14mVeqEFpqD2fpev": {
115
- "notes": "Error message for input that value is higher then the max.",
116
- "translation": "Value must be less or equal to {max}."
119
+ "translation": "Value must be less or equal to {max}.",
120
+ "notes": "Error message for input that value is higher then the max."
117
121
  },
118
122
  "1HXxdMWF9JUS/EWC": {
119
- "notes": "Applies pan to the left",
120
- "translation": "Pan left"
123
+ "translation": "Pan left",
124
+ "notes": "Applies pan to the left"
121
125
  },
122
126
  "1TnPlwjdgpaLY1uE": {
123
- "notes": "Filter field incomplete group error",
124
- "translation": "A group seems to be missing a bracket."
127
+ "translation": "A group seems to be missing a bracket.",
128
+ "notes": "Filter field incomplete group error"
125
129
  },
126
130
  "1cycyeSJyv4MEQyz": {
127
- "notes": "Aria label for the list of timeframe presets.",
128
- "translation": "List of timeframe presets"
131
+ "translation": "List of timeframe presets",
132
+ "notes": "Aria label for the list of timeframe presets."
129
133
  },
130
134
  "1e3uPo8SoI4NA2dZ": {
131
- "notes": "Text in a tooltip shown when hovering a legend series to show it",
132
- "translation": "Show"
135
+ "translation": "Show",
136
+ "notes": "Text in a tooltip shown when hovering a legend series to show it"
133
137
  },
134
138
  "1fdceSDwpC0elRzY": {
135
- "notes": "Screen reader announcement for the count of recently used filter suggestions available for selection.",
136
- "translation": "{value} recently used suggestion(s)."
139
+ "translation": "{value} recently used suggestion(s).",
140
+ "notes": "Screen reader announcement for the count of recently used filter suggestions available for selection."
137
141
  },
138
142
  "1ierRkr3xtpxyOXK": {
139
- "notes": "Timeframe formatter: timeframe-millisecond",
140
- "translation": "{prefix, select, past {Last} future {Next} relativeFuture {In} other {}} {offset, plural, one {# millisecond} other {# milliseconds}}{suffix}"
143
+ "translation": "{prefix, select, past {Last} future {Next} relativeFuture {In} other {}} {offset, plural, one {# millisecond} other {# milliseconds}}{suffix}",
144
+ "notes": "Timeframe formatter: timeframe-millisecond"
141
145
  },
142
146
  "1paaTnYOwnYa5MKF": {
143
- "notes": "Text label for the node in the tooltip. Displayed when hovering over Treemap and Honeycomb geometries.",
144
- "translation": "Node"
147
+ "translation": "Node",
148
+ "notes": "Text label for the node in the tooltip. Displayed when hovering over Treemap and Honeycomb geometries."
145
149
  },
146
150
  "1qd7igf1SoPYptNg": {
147
- "notes": "Text in the tooltip header showing the number of selected data points",
148
- "translation": "{count} data points"
151
+ "translation": "{count} data points",
152
+ "notes": "Text in the tooltip header showing the number of selected data points"
149
153
  },
150
154
  "1xChk0S6M7Z4tXFB": {
151
- "notes": "Filter field unsupported search operator",
152
- "translation": "The search operator is not supported in this filter field."
155
+ "translation": "The search operator is not supported in this filter field.",
156
+ "notes": "Filter field unsupported search operator"
153
157
  },
154
158
  "1yn5LJXBZlEagfkL": {
155
- "notes": "Filter field missing key error",
156
- "translation": "The filter key is missing."
159
+ "translation": "The filter key is missing.",
160
+ "notes": "Filter field missing key error"
157
161
  },
158
162
  "2+ypcBK9NuQ5zg1k": {
159
- "notes": "Aria label used for the close button of the information",
160
- "translation": "Close message"
163
+ "translation": "Close message",
164
+ "notes": "Aria label used for the close button of the information"
161
165
  },
162
166
  "21mG229oVCMPPsYY": {
163
- "notes": "Shown for the reset button of the FilterBar.",
164
- "translation": "Reset filters"
167
+ "translation": "Reset filters",
168
+ "notes": "Shown for the reset button of the FilterBar."
165
169
  },
166
170
  "2BSsAVmKpHHX76YB": {
167
- "notes": "Filter field invalid wildcard operator in list",
168
- "translation": "Wildcards '*' aren't supported in lists. To include an asterisk in a value, escape it by adding a backslash '\\' in front or wrapping the value in double quotes."
171
+ "translation": "Wildcards '*' aren't supported in lists. To include an asterisk in a value, escape it by adding a backslash '\\' in front or wrapping the value in double quotes.",
172
+ "notes": "Filter field invalid wildcard operator in list"
169
173
  },
170
174
  "2DJQNdEozwBZPASX": {
171
- "notes": "Invalid value error for text type",
172
- "translation": "Invalid filter value. Only text values are supported for this key."
175
+ "translation": "Invalid filter value. Only text values are supported for this key.",
176
+ "notes": "Invalid value error for text type"
173
177
  },
174
178
  "2TgksAr68bjM6G9M": {
175
- "notes": "Filter field in operator description",
176
- "translation": "Matches one or more values in a list of values"
179
+ "translation": "Matches one or more values in a list of values",
180
+ "notes": "Filter field in operator description"
177
181
  },
178
182
  "2YBMATuaXx9/4zBP": {
179
- "notes": "Aria label to scroll the tabs to the right",
180
- "translation": "scroll tabs right"
183
+ "translation": "scroll tabs right",
184
+ "notes": "Aria label to scroll the tabs to the right"
181
185
  },
182
186
  "2w4ytnIw5OSGcvDR": {
183
- "notes": "Column action menu item for sorting a column in ascending order (single sort).",
184
- "translation": "Sort ascending"
187
+ "translation": "Sort ascending",
188
+ "notes": "Column action menu item for sorting a column in ascending order (single sort)."
185
189
  },
186
190
  "2zjArS0xoR2Fy4/o": {
187
- "notes": "Text in a tooltip shown when hovering the \"Reset\" action in the time series chart toolbar",
188
- "translation": "Reset"
191
+ "translation": "Reset",
192
+ "notes": "Text in a tooltip shown when hovering the \"Reset\" action in the time series chart toolbar"
189
193
  },
190
194
  "313HlKgYmTnqRqJU": {
191
- "notes": "Message shown when suggestions are currently loaded.",
192
- "translation": "Loading suggestions"
195
+ "translation": "Loading suggestions",
196
+ "notes": "Message shown when suggestions are currently loaded."
193
197
  },
194
198
  "3J6qHQEUwDxvZuIl": {
195
- "notes": "Default label for the progress-bar.",
196
- "translation": "Loading"
199
+ "translation": "Loading",
200
+ "notes": "Default label for the progress-bar."
197
201
  },
198
202
  "3ZX0IG+5tekB89nr": {
199
- "notes": "Default placeholder text for the multi select.",
200
- "translation": "Select options"
203
+ "translation": "Select options",
204
+ "notes": "Default placeholder text for the multi select."
201
205
  },
202
206
  "3jYmiQ54m6nCawn6": {
203
- "notes": "Empty state message shown if no key or value is provided yet.",
204
- "translation": "{value, select, false {Search for a phrase} other {Search{value}}}"
207
+ "translation": "{value, select, false {Search for a phrase} other {Search{value}}}",
208
+ "notes": "Empty state message shown if no key or value is provided yet."
205
209
  },
206
210
  "3oBNy/ExeWqmMWha": {
207
- "notes": "Fallback label used for XY chart series when no valid name accessor value is provided.",
208
- "translation": "Series {index}"
211
+ "translation": "Series {index}",
212
+ "notes": "Fallback label used for XY chart series when no valid name accessor value is provided."
209
213
  },
210
214
  "3zpFLdLODjLHgabp": {
211
- "notes": "Invalid value error for UID type",
212
- "translation": "Invalid filter value. Only uid64, uid128 and uuid formats are supported for this key."
215
+ "translation": "Invalid filter value. Only uid64, uid128 and uuid formats are supported for this key.",
216
+ "notes": "Invalid value error for UID type"
213
217
  },
214
218
  "42g95tLLPXcqbFLl": {
215
- "notes": "The abbreviation of the day part of a date value",
216
- "translation": "DD"
219
+ "translation": "DD",
220
+ "notes": "The abbreviation of the day part of a date value"
217
221
  },
218
222
  "44M+LwJIb1lbO5Ev": {
219
- "notes": "Filter field not in operator description",
220
- "translation": "Doesn't match one or more values in a list of values"
223
+ "translation": "Doesn't match one or more values in a list of values",
224
+ "notes": "Filter field not in operator description"
221
225
  },
222
226
  "47orYkGnlAr7+sPw": {
223
- "notes": "Text in the cell action item for copying the content of the table cell to the clipboard.",
224
- "translation": "Copy value"
227
+ "translation": "Copy value",
228
+ "notes": "Text in the cell action item for copying the content of the table cell to the clipboard."
225
229
  },
226
230
  "4Dfz/uq2jb0sD782": {
227
- "notes": "Message shown for value suggestions restricted by a validator map (only \"true\" and \"false\" are valid)",
228
- "translation": "Supported values: 'true', 'false'"
231
+ "translation": "Supported values: 'true', 'false'",
232
+ "notes": "Message shown for value suggestions restricted by a validator map (only \"true\" and \"false\" are valid)"
229
233
  },
230
234
  "4ER0rfN8lI3HtaFd": {
231
- "notes": "Label for the collapsed Avatars.",
232
- "translation": "Group of Avatars. {hiddenAvatars} hidden, {totalAvatars} total users"
235
+ "translation": "Group of Avatars. {hiddenAvatars} hidden, {totalAvatars} total users",
236
+ "notes": "Label for the collapsed Avatars."
233
237
  },
234
238
  "4NCInqG2qgKe0TSA": {
235
- "notes": "Aria description announcing the current sorting state and priority in multi-column sorting.",
236
- "translation": "Sorted {direction, select, asc {ascending} desc {descending} other {unsorted}}, sort priority {priority} of {total}."
239
+ "translation": "Sorted {direction, select, asc {ascending} desc {descending} other {unsorted}}, sort priority {priority} of {total}.",
240
+ "notes": "Aria description announcing the current sorting state and priority in multi-column sorting."
237
241
  },
238
242
  "4PipZ2Z07Q9epib1": {
239
- "notes": "Aria label for the filter inside the select",
240
- "translation": "Search available options"
243
+ "translation": "Search available options",
244
+ "notes": "Aria label for the filter inside the select"
241
245
  },
242
246
  "4ccf9fJlKURtBw/8": {
243
- "notes": "Aria label for the pasted content suggestion group.",
244
- "translation": "Suggestions for pasted content"
247
+ "translation": "Suggestions for pasted content",
248
+ "notes": "Aria label for the pasted content suggestion group."
245
249
  },
246
250
  "4yANH5gdmW1efk0I": {
247
- "notes": "Start and end values are missing.",
248
- "translation": "Please enter a start and end time."
251
+ "translation": "Please enter a start and end time.",
252
+ "notes": "Start and end values are missing."
249
253
  },
250
254
  "5+yhrNhI2AlQmDAo": {
251
- "notes": "The abbreviation of the hour part of a time value",
252
- "translation": "hh"
255
+ "translation": "hh",
256
+ "notes": "The abbreviation of the hour part of a time value"
253
257
  },
254
258
  "568KZGFcxrq95nEC": {
255
- "notes": "Headline to group recently used segments presets.",
256
- "translation": "Pinned in {appName}"
259
+ "translation": "Pinned in {appName}",
260
+ "notes": "Headline to group recently used segments presets."
261
+ },
262
+ "5BpZ1y39lJ+Q6BOs": {
263
+ "translation": "Displaying more than {limit} {limit, plural, one {column} other {columns}} may affect this table's performance.",
264
+ "notes": "Warning message shown in column settings modal when the number of visible columns exceeds the warning threshold."
257
265
  },
258
266
  "5Byu0D+YGc1DoTBc": {
259
- "notes": "Filter field invalid logical operator",
260
- "translation": "A logical operator cannot occur in this position."
267
+ "translation": "A logical operator cannot occur in this position.",
268
+ "notes": "Filter field invalid logical operator"
261
269
  },
262
270
  "5E11MLQX1RFMIXOL": {
263
- "notes": "Message shown if a generic value may be available in the suggestion.",
264
- "translation": "Use{value}as value"
271
+ "translation": "Use{value}as value",
272
+ "notes": "Message shown if a generic value may be available in the suggestion."
265
273
  },
266
274
  "5LZ+8QkdLQxXxC7M": {
267
- "notes": "Text in a tooltip shown when hovering the \"Download data\" button in the histogram chart toolbar",
268
- "translation": "Download as CSV"
275
+ "translation": "Download as CSV",
276
+ "notes": "Text in a tooltip shown when hovering the \"Download data\" button in the histogram chart toolbar"
269
277
  },
270
278
  "5XoVjJUQ5b86MLW+": {
271
- "notes": "Error message for input that value is lower then the max.",
272
- "translation": "Value must be higher or equal to {min}."
279
+ "translation": "Value must be higher or equal to {min}.",
280
+ "notes": "Error message for input that value is lower then the max."
273
281
  },
274
282
  "5eX0f5J5OWwoQNSw": {
275
- "notes": "Sub-menu trigger label for sorting actions in the column actions menu.",
276
- "translation": "Sort"
283
+ "translation": "Sort",
284
+ "notes": "Sub-menu trigger label for sorting actions in the column actions menu."
277
285
  },
278
286
  "5i26Rr1LLz0OIGNJ": {
279
- "notes": "Aria label for the DateTimePicker clear button.",
280
- "translation": "Clear date and time"
287
+ "translation": "Clear date and time",
288
+ "notes": "Aria label for the DateTimePicker clear button."
281
289
  },
282
290
  "62QNu9Nw8T2nbJHu": {
283
- "notes": "Label for SmartscapeId type used in mixed type error messages",
284
- "translation": "SmartscapeId"
291
+ "translation": "SmartscapeId",
292
+ "notes": "Label for SmartscapeId type used in mixed type error messages"
285
293
  },
286
294
  "6GOnX5pixiNcVALE": {
287
- "notes": "Text in the tooltip header showing that are no data points selected",
288
- "translation": "No data points"
295
+ "translation": "No data points",
296
+ "notes": "Text in the tooltip header showing that are no data points selected"
289
297
  },
290
298
  "6Ut4st/DFcfYJorv": {
291
- "notes": "Aria description announcing the current sorting state of the column header.",
292
- "translation": "Sorted {direction, select, asc {ascending} desc {descending} other {unsorted}}."
299
+ "translation": "Sorted {direction, select, asc {ascending} desc {descending} other {unsorted}}.",
300
+ "notes": "Aria description announcing the current sorting state of the column header."
293
301
  },
294
302
  "6ZC5vGSgjnplvo7x": {
295
- "notes": "Additional information text used for the notify button overlay when notifications are enabled",
296
- "translation": "You'll be notified about updates via email."
303
+ "translation": "You'll be notified about updates via email.",
304
+ "notes": "Additional information text used for the notify button overlay when notifications are enabled"
297
305
  },
298
306
  "6vA3zfYytiSPVBZV": {
299
- "notes": "Text in a tooltip shown when clicking a tooltip item and hovering the copy button next to its name",
300
- "translation": "Copy name"
307
+ "translation": "Copy name",
308
+ "notes": "Text in a tooltip shown when clicking a tooltip item and hovering the copy button next to its name"
309
+ },
310
+ "7/hGI/teTlqSMko6": {
311
+ "translation": "Format query",
312
+ "notes": "Menu item label to format the DQL query."
301
313
  },
302
314
  "72DlIwYKB9UTEzlA": {
303
- "notes": "Empty state message if no variables for the segment are available.",
304
- "translation": "No values for this segment available. You can manage this segment in {link}."
315
+ "translation": "No values for this segment available. You can manage this segment in {link}.",
316
+ "notes": "Empty state message if no variables for the segment are available."
305
317
  },
306
318
  "7IzOa/lx4Dc/qLGo": {
307
- "notes": "Aria-label for the close notification button.",
308
- "translation": "Close notification"
319
+ "translation": "Close notification",
320
+ "notes": "Aria-label for the close notification button."
309
321
  },
310
322
  "7M6Jd0cEy/ruEDEZ": {
311
- "notes": "Message shown if the contains operator can be used with the current value.",
312
- "translation": "Contains {value}"
323
+ "translation": "Contains {value}",
324
+ "notes": "Message shown if the contains operator can be used with the current value."
313
325
  },
314
326
  "7cB3GSVBVIfSrN8y": {
315
- "notes": "Message for the generic error toast",
316
- "translation": "Something went wrong. Please try again later."
327
+ "translation": "Something went wrong. Please try again later.",
328
+ "notes": "Message for the generic error toast"
317
329
  },
318
330
  "7eS8L2HEADvzM6q2": {
319
- "notes": "Filter field invalid search operator inside group",
320
- "translation": "Search statements aren't supported in groups."
331
+ "translation": "Search statements aren't supported in groups.",
332
+ "notes": "Filter field invalid search operator inside group"
321
333
  },
322
334
  "7tnC6f9ag1/zG/vh": {
323
- "notes": "Default placeholder for text input.",
324
- "translation": "Add text"
335
+ "translation": "Add text",
336
+ "notes": "Default placeholder for text input."
325
337
  },
326
338
  "7vkTbyAZNeY/qa9p": {
327
- "notes": "Text for SegmentSelector Trigger when multiple segments are selected.",
328
- "translation": "{length} segments"
339
+ "translation": "{length} segments",
340
+ "notes": "Text for SegmentSelector Trigger when multiple segments are selected."
329
341
  },
330
342
  "7zZeVBfEiXm3xbwL": {
331
- "notes": "Filter field starts-with operator description",
332
- "translation": "Starts with"
343
+ "translation": "Starts with",
344
+ "notes": "Filter field starts-with operator description"
333
345
  },
334
346
  "83QccW/P4JcNgO6M": {
335
- "notes": "Invalid value error when multiple types are allowed for a key",
336
- "translation": "Invalid filter value. Only values of type {allowedTypes} are supported for this key."
347
+ "translation": "Invalid filter value. Only values of type {allowedTypes} are supported for this key.",
348
+ "notes": "Invalid value error when multiple types are allowed for a key"
337
349
  },
338
350
  "89sBAyzLbeW6GyPJ": {
339
- "notes": "Given from and to values are invalid",
340
- "translation": "Invalid start and end time. Expected format: {expectedFormat}, -2h or -2d@d"
351
+ "translation": "Invalid start and end time. Expected format: {expectedFormat}, -2h or -2d@d",
352
+ "notes": "Given from and to values are invalid"
341
353
  },
342
354
  "8KQslb+aIgOg9wbA": {
343
- "notes": "Message shown for value suggestions restricted by a validator map (only Timestamps are valid)",
344
- "translation": "Supported values: Timestamps"
355
+ "translation": "Supported values: Timestamps",
356
+ "notes": "Message shown for value suggestions restricted by a validator map (only Timestamps are valid)"
345
357
  },
346
358
  "8a6rHEksmq2fZCQl": {
347
- "notes": "Aria label used for data table expandable row trigger.",
348
- "translation": "{isDetailsOpen, select, true {Collapse} other {Expand}} row with id {id}"
359
+ "translation": "{isDetailsOpen, select, true {Collapse} other {Expand}} row with id {id}",
360
+ "notes": "Aria label used for data table expandable row trigger."
361
+ },
362
+ "8bfwTDfvbh8A1Rkz": {
363
+ "translation": "Early Access",
364
+ "notes": "Chip label indicating a feature or an app is in early access release phase"
349
365
  },
350
366
  "8fzPtb8YMF5R1xlh": {
351
- "notes": "Filter field not-ends-with operator description",
352
- "translation": "Doesn't end with"
367
+ "translation": "Doesn't end with",
368
+ "notes": "Filter field not-ends-with operator description"
353
369
  },
354
370
  "8kqNkvIZtJIon5xR": {
355
- "notes": "Heading for the recently used timeframes.",
356
- "translation": "Recently used"
371
+ "translation": "Recently used",
372
+ "notes": "Heading for the recently used timeframes."
357
373
  },
358
374
  "8lZa/1S3ydSfb3iO": {
359
- "notes": "Message shown if the contains operator is not supported for this key.",
360
- "translation": "Contains is not supported for this key."
375
+ "translation": "Contains is not supported for this key.",
376
+ "notes": "Message shown if the contains operator is not supported for this key."
361
377
  },
362
378
  "9/nhbjHpPPAhMbHo": {
363
379
  "translation": "About this app"
364
380
  },
365
381
  "91t8w7tO+iaic/Z+": {
366
- "notes": "Text displaying the page indicator when there is only 1 page in the table",
367
- "translation": "1 of 1"
382
+ "translation": "1 of 1",
383
+ "notes": "Text displaying the page indicator when there is only 1 page in the table"
368
384
  },
369
385
  "92og/kC9Mmwxmmg0": {
370
- "notes": "Chip label indicating a feature or an app is in preview release phase",
371
- "translation": "Preview"
386
+ "translation": "Preview",
387
+ "notes": "Chip label indicating a feature or an app is in preview release phase"
372
388
  },
373
389
  "986buSbL34GVFlBf": {
374
- "notes": "Shown for collapsible text.",
375
- "translation": "Show less"
390
+ "translation": "Show less",
391
+ "notes": "Shown for collapsible text."
376
392
  },
377
393
  "9AzZAjitLsfniU2y": {
378
- "notes": "Default placeholder for code editor when the language is TSX.",
379
- "translation": "Add TSX"
394
+ "translation": "Add TSX",
395
+ "notes": "Default placeholder for code editor when the language is TSX."
380
396
  },
381
397
  "9IaEBlhZa5HXmHA+": {
382
- "notes": "Aria label for the pin/unpin button in the filter field suggestions",
383
- "translation": "{isPinned, select, true {Unpin} other {Pin}} filter with value \"{filterString}"
398
+ "translation": "{isPinned, select, true {Unpin} other {Pin}} filter with value \"{filterString}",
399
+ "notes": "Aria label for the pin/unpin button in the filter field suggestions"
384
400
  },
385
401
  "9JhiinIAmqWKBJae": {
386
- "notes": "Text in a tooltip shown when hovering the \"Download data\" button in the pie chart toolbar",
387
- "translation": "Download as CSV"
402
+ "translation": "Download as CSV",
403
+ "notes": "Text in a tooltip shown when hovering the \"Download data\" button in the pie chart toolbar"
388
404
  },
389
405
  "9MaYq2HH+ggxyA1g": {
390
- "notes": "Aria label for DataTable column actions trigger",
391
- "translation": "Trigger column actions"
406
+ "translation": "Trigger column actions",
407
+ "notes": "Aria label for DataTable column actions trigger"
392
408
  },
393
409
  "9RcckxxccNTcNVf9": {
394
410
  "translation": "Sidebar"
395
411
  },
396
412
  "9SDB/Tz9eGlVpihz": {
397
- "notes": "Message to display when there is an error",
398
- "translation": "An error occurred"
413
+ "translation": "An error occurred",
414
+ "notes": "Message to display when there is an error"
399
415
  },
400
416
  "9XjoWQoeIKxStpgZ": {
401
- "notes": "Error message for a date or a timeframe earlier than the required minimum.",
402
- "translation": "Please select a {term} later than {min}."
417
+ "translation": "Please select a {term} later than {min}.",
418
+ "notes": "Error message for a date or a timeframe earlier than the required minimum."
403
419
  },
404
420
  "9xnhCHCgU7NGIxiX": {
405
- "notes": "Message shown if the not-starts-with operator can be used with the current value.",
406
- "translation": "Doesn't start with {value}"
421
+ "translation": "Doesn't start with {value}",
422
+ "notes": "Message shown if the not-starts-with operator can be used with the current value."
407
423
  },
408
424
  "A1+FGKx7bONltqJV": {
409
- "notes": "Resets column settings to default",
410
- "translation": "Reset to default"
425
+ "translation": "Reset to default",
426
+ "notes": "Resets column settings to default"
411
427
  },
412
428
  "A9Pdb5T48IHfEauq": {
413
- "notes": "Aria label for the date time picker overlay.",
414
- "translation": "Calendar overlay for picking a date"
429
+ "translation": "Calendar overlay for picking a date",
430
+ "notes": "Aria label for the date time picker overlay."
415
431
  },
416
432
  "ABXa8Ni5H9+ZO7E0": {
417
- "notes": "Filter field missing operator",
418
- "translation": "Missing operator."
433
+ "translation": "Missing operator.",
434
+ "notes": "Filter field missing operator"
419
435
  },
420
436
  "ADLDZ8spJCrDx/6Q": {
421
- "notes": "Timeframe duration formatter: timeframe-hour",
422
- "translation": "{offset, plural, one {# hour} other {# hours}}"
437
+ "translation": "{offset, plural, one {# hour} other {# hours}}",
438
+ "notes": "Timeframe duration formatter: timeframe-hour"
423
439
  },
424
440
  "AHh4uuTMLAOichXS": {
425
- "notes": "Text in a tooltip shown when hovering the \"Pan\" mode in the histogram chart toolbar",
426
- "translation": "Pan mode"
441
+ "translation": "Pan mode",
442
+ "notes": "Text in a tooltip shown when hovering the \"Pan\" mode in the histogram chart toolbar"
427
443
  },
428
444
  "ARdI7d8cJxHnUayP": {
429
- "notes": "Label for the expand / collapse button.",
430
- "translation": "Show {count} {moreOrLess}"
445
+ "translation": "Show {count} {moreOrLess}",
446
+ "notes": "Label for the expand / collapse button."
431
447
  },
432
448
  "AYfNQEjfwenkbxsg": {
433
- "notes": "Timeframe duration formatter: timeframe-month",
434
- "translation": "{offset, plural, one {# month} other {# months}}"
449
+ "translation": "{offset, plural, one {# month} other {# months}}",
450
+ "notes": "Timeframe duration formatter: timeframe-month"
435
451
  },
436
452
  "Ah9w1glbeyevy7N+": {
437
- "notes": "Aria-label for sortable columns that are not yet sorted in any direction.",
438
- "translation": "Icon indicating that the column is sortable"
453
+ "translation": "Icon indicating that the column is sortable",
454
+ "notes": "Aria-label for sortable columns that are not yet sorted in any direction."
439
455
  },
440
456
  "B/DeQ4xCT/IrvyuQ": {
441
- "notes": "Timeframe formatter: timeframe-full-day",
442
- "translation": "Full day"
457
+ "translation": "Full day",
458
+ "notes": "Timeframe formatter: timeframe-full-day"
443
459
  },
444
460
  "B0JVHiCeA3v550+2": {
445
- "notes": "Text in the menu item for pinning the column to the right.",
446
- "translation": "Pin right"
461
+ "translation": "Pin right",
462
+ "notes": "Text in the menu item for pinning the column to the right."
447
463
  },
448
464
  "B1od+sZZT/rP8Plf": {
449
- "notes": "Text in a tooltip shown when hovering the \"Download data\" button in the chart toolbar",
450
- "translation": "Download as CSV"
465
+ "translation": "Download as CSV",
466
+ "notes": "Text in a tooltip shown when hovering the \"Download data\" button in the chart toolbar"
451
467
  },
452
468
  "B3Rj3sRBMMfDBuzK": {
453
- "notes": "Default placeholder for password input.",
454
- "translation": "Add password"
469
+ "translation": "Add password",
470
+ "notes": "Default placeholder for password input."
455
471
  },
456
472
  "BAfEyw7BhyJX3dfC": {
457
- "notes": "Aria label for the suggestions overlay",
458
- "translation": "Suggestions"
473
+ "translation": "Suggestions",
474
+ "notes": "Aria label for the suggestions overlay"
459
475
  },
460
476
  "BDzwWccOiezgFJp3": {
461
- "notes": "Aria label for the list of recently used timeframes.",
462
- "translation": "List of recently used timeframes"
477
+ "translation": "List of recently used timeframes",
478
+ "notes": "Aria label for the list of recently used timeframes."
463
479
  },
464
480
  "BEx30+lYFzO9WeY5": {
465
- "notes": "Range header tooltip text",
466
- "translation": "to"
481
+ "translation": "to",
482
+ "notes": "Range header tooltip text"
467
483
  },
468
484
  "BYUJpW8TBonAxnYd": {
469
- "notes": "Accessible label for the sidebar panel.",
470
- "translation": "Sidebar"
485
+ "translation": "Sidebar",
486
+ "notes": "Accessible label for the sidebar panel."
471
487
  },
472
488
  "BfMOguQOfnAxwOI6": {
473
- "notes": "Message shown for value suggestions restricted by a validator map (only UIDs are valid)",
474
- "translation": "Supported values: UIDs"
489
+ "translation": "Supported values: UIDs",
490
+ "notes": "Message shown for value suggestions restricted by a validator map (only UIDs are valid)"
475
491
  },
476
492
  "BfrmGp7APB2nlQRw": {
477
- "notes": "Timeframe formatter: timeframe-roundDown-week",
478
- "translation": "{prefix, select, previous {Previous} next {Next} other {This}} {amount, plural, one {week} other {# weeks}}"
493
+ "translation": "{prefix, select, previous {Previous} next {Next} other {This}} {amount, plural, one {week} other {# weeks}}",
494
+ "notes": "Timeframe formatter: timeframe-roundDown-week"
479
495
  },
480
496
  "BlGZxVNh87aTe30G": {
481
- "notes": "Timeframe formatter: timeframe-today",
482
- "translation": "Today"
497
+ "translation": "Today",
498
+ "notes": "Timeframe formatter: timeframe-today"
483
499
  },
484
500
  "Bo8Z1UaJVL3ONFo8": {
485
- "notes": "The abbreviation of the month part of a date value",
486
- "translation": "MM"
501
+ "translation": "MM",
502
+ "notes": "The abbreviation of the month part of a date value"
503
+ },
504
+ "BqRVinIeQxz83n1M": {
505
+ "translation": "Hidden",
506
+ "notes": "Label of the chip shown next to a hidden column in the column settings modal."
487
507
  },
488
508
  "BxL/OHRXGQ4NxkRA": {
489
- "notes": "Column action menu item for sorting a column in descending order (single sort).",
490
- "translation": "Sort descending"
509
+ "translation": "Sort descending",
510
+ "notes": "Column action menu item for sorting a column in descending order (single sort)."
491
511
  },
492
512
  "CQIPnzlUQ9+DqtjP": {
493
- "notes": "Text shown in the tooltip as the default action when performing a select interaction in the xy chart",
494
- "translation": "Zoom to selection"
513
+ "translation": "Zoom to selection",
514
+ "notes": "Text shown in the tooltip as the default action when performing a select interaction in the xy chart"
495
515
  },
496
516
  "CZzImkwrQi9rMTqS": {
497
- "notes": "Label for downloading only the selected rows",
498
- "translation": "Selected rows"
517
+ "translation": "Selected rows",
518
+ "notes": "Label for downloading only the selected rows"
499
519
  },
500
520
  "Ce/f2UdApbmNAeEM": {
501
- "notes": "Filter field not equals operator description",
502
- "translation": "Doesn’t equal"
521
+ "translation": "Doesn’t equal",
522
+ "notes": "Filter field not equals operator description"
503
523
  },
504
524
  "CerADEHqR/6IVmHr": {
505
- "notes": "Placeholder for the filter inside the select",
506
- "translation": "Search"
525
+ "translation": "Search",
526
+ "notes": "Placeholder for the filter inside the select"
507
527
  },
508
528
  "CjpZq81r1HsdNxp0": {
509
- "notes": "Timeframe formatter: timeframe-roundDown-year",
510
- "translation": "{prefix, select, previous {Previous} next {Next} other {This}} {amount, plural, one {year} other {# years}}"
529
+ "translation": "{prefix, select, previous {Previous} next {Next} other {This}} {amount, plural, one {year} other {# years}}",
530
+ "notes": "Timeframe formatter: timeframe-roundDown-year"
511
531
  },
512
532
  "CrdM30eeqaF3mlZr": {
513
- "notes": "Label for the row drag handle.",
514
- "translation": "Drag to order row \"{rowId}\"."
533
+ "translation": "Drag to order row \"{rowId}\".",
534
+ "notes": "Label for the row drag handle."
515
535
  },
516
536
  "Cv2AP7VKybeuopCP": {
517
- "notes": "Aria label to scroll the tabs to the left",
518
- "translation": "scroll tabs left"
537
+ "translation": "scroll tabs left",
538
+ "notes": "Aria label to scroll the tabs to the left"
519
539
  },
520
540
  "CwGi8xbTtV+fdsu5": {
521
- "notes": "Label for button used to run a query",
522
- "translation": "Run query"
541
+ "translation": "Run query",
542
+ "notes": "Label for button used to run a query"
523
543
  },
524
544
  "CzhNdiuuquVgEUTg": {
525
- "notes": "Message shown if all available segments have been selected.",
526
- "translation": "No other segments available."
545
+ "translation": "No other segments available.",
546
+ "notes": "Message shown if all available segments have been selected."
527
547
  },
528
548
  "DHZv33G8z3rNPFeq": {
529
- "notes": "Key shortcut in a tooltip shown when hovering the \"Zoom in\" action in the xy chart toolbar",
530
- "translation": "Up"
549
+ "translation": "Up",
550
+ "notes": "Key shortcut in a tooltip shown when hovering the \"Zoom in\" action in the xy chart toolbar"
531
551
  },
532
552
  "DKFIWE64kHV1ohuk": {
533
- "notes": "Message to display if the from and to dates are in the wrong order.",
534
- "translation": "'from' date should be before 'to' date"
553
+ "translation": "'from' date should be before 'to' date",
554
+ "notes": "Message to display if the from and to dates are in the wrong order."
535
555
  },
536
556
  "DMJP39IduNdB3wO3": {
537
- "notes": "Timeframe formatter: timeframe-second",
538
- "translation": "{prefix, select, past {Last} future {Next} relativeFuture {In} other {}} {offset, plural, one {# second} other {# seconds}}{suffix}"
557
+ "translation": "{prefix, select, past {Last} future {Next} relativeFuture {In} other {}} {offset, plural, one {# second} other {# seconds}}{suffix}",
558
+ "notes": "Timeframe formatter: timeframe-second"
539
559
  },
540
560
  "DV3d5lBJda+EHJja": {
541
- "notes": "Shown for expandable text.",
542
- "translation": "Show more"
561
+ "translation": "Show more",
562
+ "notes": "Shown for expandable text."
563
+ },
564
+ "DXbY+p0kaQthdZgP": {
565
+ "translation": "Pinned to right",
566
+ "notes": "Section header for columns pinned to the right in the column settings modal."
543
567
  },
544
568
  "DXoXEb27LMuapbC4": {
545
- "notes": "The aria label for the hour input of a time.",
546
- "translation": "{prefix}hour"
569
+ "translation": "{prefix}hour",
570
+ "notes": "The aria label for the hour input of a time."
547
571
  },
548
572
  "DoSCFZmkm4Wgk+9J": {
549
- "notes": "Tooltip information for the column settings button",
550
- "translation": "Column settings"
573
+ "translation": "Column settings",
574
+ "notes": "Tooltip information for the column settings button"
551
575
  },
552
576
  "DswaMGT7rt2ajcbI": {
553
- "notes": "Button in the SegmentSelector overlay to apply the segment selection.",
554
- "translation": "Apply"
577
+ "translation": "Apply",
578
+ "notes": "Button in the SegmentSelector overlay to apply the segment selection."
555
579
  },
556
580
  "Dz8K7VMW5UFpwetG": {
557
- "notes": "The aria label for the day input of a date.",
558
- "translation": "{prefix}day"
581
+ "translation": "{prefix}day",
582
+ "notes": "The aria label for the day input of a date."
559
583
  },
560
584
  "E1oTbKDAzXJo/hs/": {
561
- "notes": "Filter field not exists operator description",
562
- "translation": "Doesn't exist in any form"
585
+ "translation": "Doesn't exist in any form",
586
+ "notes": "Filter field not exists operator description"
563
587
  },
564
588
  "E7kKT3Td1FKB37wr": {
565
- "notes": "Default placeholder for the text area input.",
566
- "translation": "Add text"
589
+ "translation": "Add text",
590
+ "notes": "Default placeholder for the text area input."
567
591
  },
568
592
  "EBcYgbL0S1T6EpS2": {
569
- "notes": "Aria-label for the code editors.",
570
- "translation": "Code Editor"
593
+ "translation": "Code Editor",
594
+ "notes": "Aria-label for the code editors."
571
595
  },
572
596
  "ECZzXUfKYwLWko5n": {
573
- "notes": "Timeframe formatter: timeframe-day",
574
- "translation": "{prefix, select, past {Last} future {Next} relativeFuture {In} other {}} {offset, plural, one {# day} other {# days}}{suffix}"
597
+ "translation": "{prefix, select, past {Last} future {Next} relativeFuture {In} other {}} {offset, plural, one {# day} other {# days}}{suffix}",
598
+ "notes": "Timeframe formatter: timeframe-day"
575
599
  },
576
600
  "EG+qZn4zIajJ41CP": {
577
- "notes": "Shown for the reset timeframe button of the timeframe selector.",
578
- "translation": "Reset timeframe"
601
+ "translation": "Reset timeframe",
602
+ "notes": "Shown for the reset timeframe button of the timeframe selector."
579
603
  },
580
604
  "EKDlkAM4+D7rcALf": {
581
- "notes": "Timeframe label shown in the TimeframeSelector overlay.",
582
- "translation": "Timeframe"
605
+ "translation": "Timeframe",
606
+ "notes": "Timeframe label shown in the TimeframeSelector overlay."
583
607
  },
584
608
  "ERAhDK0Wy/n7Sd2e": {
585
- "notes": "The abbreviation of the fractional of the second part of a time value",
586
- "translation": "sss"
609
+ "translation": "sss",
610
+ "notes": "The abbreviation of the fractional of the second part of a time value"
587
611
  },
588
612
  "EWfCcasdyt/QUnjk": {
589
- "notes": "Label for DataTable loading state.",
590
- "translation": "Loading data"
613
+ "translation": "Loading data",
614
+ "notes": "Label for DataTable loading state."
591
615
  },
592
616
  "EsLvnx9UfUL/bZ/r": {
593
- "notes": "Select all option in the Select component.",
594
- "translation": "Select all"
617
+ "translation": "Select all",
618
+ "notes": "Select all option in the Select component."
595
619
  },
596
620
  "Ew2zazlMNmEr1jna": {
597
- "notes": "Invalid value error for IP address type",
598
- "translation": "Invalid filter value. Only IPv4 and IPv6 addresses are supported for this key."
621
+ "translation": "Invalid filter value. Only IPv4 and IPv6 addresses are supported for this key.",
622
+ "notes": "Invalid value error for IP address type"
599
623
  },
600
624
  "ExRdGipMUK2Tldxd": {
601
- "notes": "Message shown when access control permissions (read) are missing and segments are already applied.",
602
- "translation": "Segments are applied but your assigned access control policies don't permit you to read them."
625
+ "translation": "Segments are applied but your assigned access control policies don't permit you to read them.",
626
+ "notes": "Message shown when access control permissions (read) are missing and segments are already applied."
603
627
  },
604
628
  "F6H1FQ86mt53ZgVL": {
605
- "notes": "Default label for the intent button component.",
606
- "translation": "Open with..."
629
+ "translation": "Open with...",
630
+ "notes": "Default label for the intent button component."
607
631
  },
608
632
  "F78crM1uQumIOJdh": {
609
- "notes": "Column settings button default text",
610
- "translation": "Columns"
633
+ "translation": "Columns",
634
+ "notes": "Column settings button default text"
611
635
  },
612
636
  "F7t2bxwXuoFZkUcl": {
613
- "notes": "Column action menu item for removing sorting for this column.",
614
- "translation": "Clear sorting"
637
+ "translation": "Clear sorting",
638
+ "notes": "Column action menu item for removing sorting for this column."
639
+ },
640
+ "FIMM9WXC8Kwieah3": {
641
+ "translation": "At least 1 column must be shown.",
642
+ "notes": "Error message shown in column settings modal when the user tries to apply changes with no visible columns."
615
643
  },
616
644
  "FJE1QgzcKO8lKmt4": {
617
- "notes": "Toggle selection for an individual row",
618
- "translation": "Toggle row selection for row with id \"{id}\"."
645
+ "translation": "Toggle row selection for row with id \"{id}\".",
646
+ "notes": "Toggle selection for an individual row"
647
+ },
648
+ "FWPcCUBJ8OXZAxdJ": {
649
+ "translation": "Pinned to left",
650
+ "notes": "Section header for columns pinned to the left in the column settings modal."
619
651
  },
620
652
  "FbK3miEv64PNHk2r": {
621
- "notes": "Timeframe formatter: timeframe-tomorrow",
622
- "translation": "Tomorrow"
653
+ "translation": "Tomorrow",
654
+ "notes": "Timeframe formatter: timeframe-tomorrow"
623
655
  },
624
656
  "Fik0kx8pJ4hkEZUZ": {
625
- "notes": "Filter field invalid comparator",
626
- "translation": "Invalid comparator. Allowed comparators are: {allowedComparators}."
657
+ "translation": "Invalid comparator. Allowed comparators are: {allowedComparators}.",
658
+ "notes": "Filter field invalid comparator"
627
659
  },
628
660
  "Fr3cNB5JDQGaGwae": {
629
- "notes": "Default placeholder for search input.",
630
- "translation": "Search"
661
+ "translation": "Search",
662
+ "notes": "Default placeholder for search input."
631
663
  },
632
664
  "FxsZTOljj8LWcZO0": {
633
- "notes": "Text in a tooltip shown by default when hovering",
634
- "translation": "Copy"
665
+ "translation": "Copy",
666
+ "notes": "Text in a tooltip shown by default when hovering"
635
667
  },
636
668
  "G0h1f2oRxQ8RBqNt": {
637
- "notes": "Filter field suggestion tip - link to filter field documentation.",
638
- "translation": "Filter syntax"
669
+ "translation": "Filter syntax",
670
+ "notes": "Filter field suggestion tip - link to filter field documentation."
639
671
  },
640
672
  "G7XpORU3bjxuwkZF": {
641
- "notes": "Label for UID type used in mixed type error messages",
642
- "translation": "UID"
673
+ "translation": "UID",
674
+ "notes": "Label for UID type used in mixed type error messages"
643
675
  },
644
676
  "GFd2oJ+U46/o0aMy": {
645
- "notes": "Tooltip message when the tooltip is too big and shows the first selected segment and +X more for the remaining.",
646
- "translation": "+{number} more"
677
+ "translation": "+{number} more",
678
+ "notes": "Tooltip message when the tooltip is too big and shows the first selected segment and +X more for the remaining."
647
679
  },
648
680
  "GH0lEEpNg7HJ9sA6": {
649
- "notes": "Label text shown in the notify button trigger",
650
- "translation": "Notifications"
681
+ "translation": "Notifications",
682
+ "notes": "Label text shown in the notify button trigger"
651
683
  },
652
684
  "GLK6cN59tiRO9GDp": {
653
- "notes": "Label for the previous match button",
654
- "translation": "Previous match"
685
+ "translation": "Previous match",
686
+ "notes": "Label for the previous match button"
655
687
  },
656
688
  "GUeetpTpusqFkMi+": {
657
- "notes": "From value is missing.",
658
- "translation": "Please enter a start time."
689
+ "translation": "Please enter a start time.",
690
+ "notes": "From value is missing."
659
691
  },
660
692
  "GeQL1Mbr4RzmlFJk": {
661
- "notes": "Text that is separating between multiple Segments in one preset.",
662
- "translation": "and"
693
+ "translation": "and",
694
+ "notes": "Text that is separating between multiple Segments in one preset."
663
695
  },
664
696
  "GhC5F6ZRFGDVs41W": {
665
- "notes": "Default placeholder text shown in the filter field.",
666
- "translation": "Type to filter"
697
+ "translation": "Type to filter",
698
+ "notes": "Default placeholder text shown in the filter field."
667
699
  },
668
700
  "GixTwN/AsVWJprz2": {
669
- "notes": "Timeframe formatter: timeframe-remaining-day",
670
- "translation": "Remaining day"
701
+ "translation": "Remaining day",
702
+ "notes": "Timeframe formatter: timeframe-remaining-day"
671
703
  },
672
704
  "HChaOEcqD6o/jiDX": {
673
- "notes": "Message shown if the starts-with operator is not supported for this key.",
674
- "translation": "Starts-with is not supported for this key."
705
+ "translation": "Starts-with is not supported for this key.",
706
+ "notes": "Message shown if the starts-with operator is not supported for this key."
675
707
  },
676
708
  "HH0Od0c8jGTsxDda": {
677
- "notes": "Filter field suggestion tip - navigate suggestions.",
678
- "translation": "Navigate"
709
+ "translation": "Navigate",
710
+ "notes": "Filter field suggestion tip - navigate suggestions."
679
711
  },
680
712
  "HL9dGWGnhYkm7OyC": {
681
- "notes": "Given to value is invalid",
682
- "translation": "Invalid end time. Expected format: {expectedFormat}, -2h or -2d@d"
713
+ "translation": "Invalid end time. Expected format: {expectedFormat}, -2h or -2d@d",
714
+ "notes": "Given to value is invalid"
683
715
  },
684
716
  "HPbv8ZQrbBL7hRCT": {
685
- "notes": "Just now marker in the FilterField recent suggestions",
686
- "translation": "Just now"
717
+ "translation": "Just now",
718
+ "notes": "Just now marker in the FilterField recent suggestions"
687
719
  },
688
720
  "HPt4l9OCXddkPdak": {
689
- "notes": "Aria text for more than 10 suggestions.",
690
- "translation": "{suggestionsLength} suggestions available."
721
+ "translation": "{suggestionsLength} suggestions available.",
722
+ "notes": "Aria text for more than 10 suggestions."
691
723
  },
692
724
  "Hb5phHuz1zWpI7/Z": {
693
- "notes": "Text in the column action item for changing the column order, moving column to the left.",
694
- "translation": "Move left"
725
+ "translation": "Move left",
726
+ "notes": "Text in the column action item for changing the column order, moving column to the left."
695
727
  },
696
728
  "HeCgwHWBVFbPEvNZ": {
697
- "notes": "Text in a tooltip shown when hovering the \"Reset\" action in the histogram chart toolbar",
698
- "translation": "Reset"
729
+ "translation": "Reset",
730
+ "notes": "Text in a tooltip shown when hovering the \"Reset\" action in the histogram chart toolbar"
699
731
  },
700
732
  "HnUFKqpr47NWwlve": {
701
- "notes": "Label for the grid intents in the SingleValueGrid toolbar",
702
- "translation": "Grid options"
733
+ "translation": "Grid options",
734
+ "notes": "Label for the grid intents in the SingleValueGrid toolbar"
703
735
  },
704
736
  "HpRsCrp1SmD+zRFu": {
705
- "notes": "Timeframe formatter: timeframe-roundDown-minute",
706
- "translation": "{prefix, select, previous {Previous} next {Next} other {This}} {amount, plural, one {minute} other {# minutes}}"
737
+ "translation": "{prefix, select, previous {Previous} next {Next} other {This}} {amount, plural, one {minute} other {# minutes}}",
738
+ "notes": "Timeframe formatter: timeframe-roundDown-minute"
707
739
  },
708
740
  "HzfsDA+42BHW9xeE": {
709
- "notes": "Aria label for the filter statements suggestion group.",
710
- "translation": "Suggestions for filter statements"
741
+ "translation": "Suggestions for filter statements",
742
+ "notes": "Aria label for the filter statements suggestion group."
711
743
  },
712
744
  "HzhWa5UT4EGJIstf": {
713
- "notes": "Text displaying the amount of pages.",
714
- "translation": "of {totalPages}"
745
+ "translation": "of {totalPages}",
746
+ "notes": "Text displaying the amount of pages."
715
747
  },
716
748
  "IK8qCfDGg9HgIHQC": {
717
- "notes": "Default placeholder for URL input.",
718
- "translation": "Add URL"
749
+ "translation": "Add URL",
750
+ "notes": "Default placeholder for URL input."
719
751
  },
720
752
  "IOULVwhMHJJA+fW7": {
721
- "notes": "Message for when search filter does not match any items.",
722
- "translation": "No items found."
753
+ "translation": "No items found.",
754
+ "notes": "Message for when search filter does not match any items."
723
755
  },
724
756
  "IU+dkogAuDAabi52": {
725
- "notes": "Suffix for the moving a duration of the timeframe forward or backward, that is shown in the tooltip",
726
- "translation": "{suffix}"
757
+ "translation": "{suffix}",
758
+ "notes": "Suffix for the moving a duration of the timeframe forward or backward, that is shown in the tooltip"
727
759
  },
728
760
  "Ia87HCOLBoxMcV9t": {
729
761
  "translation": "Share feedback"
730
762
  },
731
- "IigYU5spaVAkF/1K": {
732
- "notes": "Button text for trying to recover the filter field state from an invalid state",
733
- "translation": "Reset"
734
- },
735
763
  "IjB05bsdexXUZ1sw": {
736
- "notes": "Text in a tooltip shown when hovering the \"Zoom out\" action in the xy chart toolbar",
737
- "translation": "Zoom out"
764
+ "translation": "Zoom out",
765
+ "notes": "Text in a tooltip shown when hovering the \"Zoom out\" action in the xy chart toolbar"
738
766
  },
739
767
  "Ir0YCuBX6vOM4t0J": {
740
- "notes": "Default placeholder for the DQLEditor.",
741
- "translation": "Add DQL"
768
+ "translation": "Add DQL",
769
+ "notes": "Default placeholder for the DQLEditor."
742
770
  },
743
771
  "ItflQisz88wfEcF+": {
744
- "notes": "Timeframe duration formatter: timeframe-quarter",
745
- "translation": "{offset, plural, one {# quarter} other {# quarters}}"
772
+ "translation": "{offset, plural, one {# quarter} other {# quarters}}",
773
+ "notes": "Timeframe duration formatter: timeframe-quarter"
746
774
  },
747
775
  "J2NKmHJhslvMRQcz": {
748
- "notes": "Invalid value error for number type",
749
- "translation": "Invalid filter value. Only numerical values are supported for this key."
776
+ "translation": "Invalid filter value. Only numerical values are supported for this key.",
777
+ "notes": "Invalid value error for number type"
750
778
  },
751
779
  "J9M12SSZNn2dKokI": {
752
- "notes": "Label for button used to rerun a query after it was successful",
753
- "translation": "Run query"
780
+ "translation": "Run query",
781
+ "notes": "Label for button used to rerun a query after it was successful"
754
782
  },
755
783
  "JLMJNMOPi2dCAbD1": {
756
- "notes": "Label for the next match button",
757
- "translation": "Next match"
784
+ "translation": "Next match",
785
+ "notes": "Label for the next match button"
758
786
  },
759
787
  "JNqvsQ757QGyZ+wN": {
760
- "notes": "Text in a tooltip shown when hovering the \"Zoom\" mode in the chart toolbar",
761
- "translation": "Zoom mode"
788
+ "translation": "Zoom mode",
789
+ "notes": "Text in a tooltip shown when hovering the \"Zoom\" mode in the chart toolbar"
762
790
  },
763
791
  "JOIA3jQfIIkgnW04": {
764
- "notes": "Error message for input that is shorter than the maxLength.",
765
- "translation": "Please shorten this text to {maxLength} characters or less."
766
- },
767
- "JYch5LSreqEKVk0q": {
768
- "notes": "The message that is shown once the filter field reaches an invalid state when an uncaught exception was thrown",
769
- "translation": "An error occurred"
792
+ "translation": "Please shorten this text to {maxLength} characters or less.",
793
+ "notes": "Error message for input that is shorter than the maxLength."
770
794
  },
771
795
  "JZunLfAY47K5StQb": {
772
- "notes": "Filter field less than operator description",
773
- "translation": "Less than"
796
+ "translation": "Less than",
797
+ "notes": "Filter field less than operator description"
774
798
  },
775
799
  "JfsC0aOiAl7G3esV": {
776
- "notes": "Aria label used to describe the delete chip button.",
777
- "translation": "Delete chip"
800
+ "translation": "Delete chip",
801
+ "notes": "Aria label used to describe the delete chip button."
778
802
  },
779
803
  "JlWcGe/hRo/kyTD+": {
780
- "notes": "Timeframe duration formatter: timeframe-minute",
781
- "translation": "{offset, plural, one {# minute} other {# minutes}}"
804
+ "translation": "{offset, plural, one {# minute} other {# minutes}}",
805
+ "notes": "Timeframe duration formatter: timeframe-minute"
782
806
  },
783
807
  "JmaVR5qUnuxE3qnb": {
784
808
  "translation": "Keyboard shortcuts"
785
809
  },
786
810
  "JzYy8MUVfPcyf4l5": {
787
- "notes": "External link icon that describes the external link icon",
788
- "translation": "Opening the link in a new window"
811
+ "translation": "Opening the link in a new window",
812
+ "notes": "External link icon that describes the external link icon"
789
813
  },
790
814
  "Jzdt1FVhHSO1Lmg9": {
791
- "notes": "Given dates are not within the valid range.",
792
- "translation": "Only dates before {to} are available."
815
+ "translation": "Only dates before {to} are available.",
816
+ "notes": "Given dates are not within the valid range."
793
817
  },
794
818
  "K+rYESaxckSqgeF/": {
795
- "notes": "Description for unavailable segment variables, e.g. if the variable is not available any longer.",
796
- "translation": "Unavailable"
819
+ "translation": "Unavailable",
820
+ "notes": "Description for unavailable segment variables, e.g. if the variable is not available any longer."
797
821
  },
798
822
  "K2M82PM/gcTo3fjq": {
799
- "notes": "Text shown for the datetimerangepicker calendar trigger.",
800
- "translation": "DateRangePicker calendar trigger"
823
+ "translation": "DateRangePicker calendar trigger",
824
+ "notes": "Text shown for the datetimerangepicker calendar trigger."
801
825
  },
802
826
  "KAAzM9PVtiJno9ks": {
803
- "notes": "Aria label to add to the `next` button",
804
- "translation": "Go to next page."
827
+ "translation": "Go to next page.",
828
+ "notes": "Aria label to add to the `next` button"
805
829
  },
806
830
  "KETnWaCwo9qLRQrI": {
807
- "notes": "Given dates are not within the valid range.",
808
- "translation": "Only dates after {min} are available."
831
+ "translation": "Only dates after {min} are available.",
832
+ "notes": "Given dates are not within the valid range."
809
833
  },
810
834
  "KgAwef2nXv2+/xgE": {
811
- "notes": "The abbreviation of the year part of a date value",
812
- "translation": "YYYY"
835
+ "translation": "YYYY",
836
+ "notes": "The abbreviation of the year part of a date value"
813
837
  },
814
838
  "KlA+bTF6CnwSnbCJ": {
815
- "notes": "Text in a tooltip shown when hovering the \"Zoom\" mode in the timeseries chart toolbar",
816
- "translation": "Zoom mode"
839
+ "translation": "Zoom mode",
840
+ "notes": "Text in a tooltip shown when hovering the \"Zoom\" mode in the timeseries chart toolbar"
817
841
  },
818
842
  "KxAo/sbsalGLDonj": {
819
- "notes": "Toggle selection for all rows on the page",
820
- "translation": "{nextSelection, select, select {Select} deselect {Deselect} other{}} all rows {scope, select, page {on current page} all {in the table} other {}}"
843
+ "translation": "{nextSelection, select, select {Select} deselect {Deselect} other{}} all rows {scope, select, page {on current page} all {in the table} other {}}",
844
+ "notes": "Toggle selection for all rows on the page"
821
845
  },
822
846
  "KzBG7IQ4sG79Dlpy": {
823
- "notes": "Tooltip message for a disabled timeframe.",
824
- "translation": "The timeframe exceeds the limits supported in this app."
847
+ "translation": "The timeframe exceeds the limits supported in this app.",
848
+ "notes": "Tooltip message for a disabled timeframe."
825
849
  },
826
850
  "L/D6X7Ee5PYWzl3i": {
827
851
  "translation": "Show more actions"
828
852
  },
829
853
  "L4FYL0HqCIFzBkzf": {
830
- "notes": "Text for the pin button of a segment preset.",
831
- "translation": "Pin"
854
+ "translation": "Pin",
855
+ "notes": "Text for the pin button of a segment preset."
832
856
  },
833
857
  "L6ZeI3XBOuh0L/CT": {
834
- "notes": "Timeframe duration formatter: timeframe-millisecond",
835
- "translation": "{offset, plural, one {# millisecond} other {# milliseconds}}"
858
+ "translation": "{offset, plural, one {# millisecond} other {# milliseconds}}",
859
+ "notes": "Timeframe duration formatter: timeframe-millisecond"
836
860
  },
837
861
  "LAcIIvdezwZIzQG+": {
838
- "notes": "Filter field empty inclusion value",
839
- "translation": "The 'in' operator doesn't support empty lists."
862
+ "translation": "The 'in' operator doesn't support empty lists.",
863
+ "notes": "Filter field empty inclusion value"
840
864
  },
841
865
  "LCNiBr0aBntMq391": {
842
- "notes": "Label for page selection dropdown.",
843
- "translation": "Page"
866
+ "translation": "Page",
867
+ "notes": "Label for page selection dropdown."
844
868
  },
845
869
  "LJ0fyD2++VZgZ5g0": {
846
- "notes": "Label for the button that collapses the sidebar.",
847
- "translation": "Collapse sidebar"
870
+ "translation": "Collapse sidebar",
871
+ "notes": "Label for the button that collapses the sidebar."
848
872
  },
849
873
  "LNWPcycjuDPimFKd": {
850
- "notes": "Error message for a date or a timeframe outside the selectable range.",
851
- "translation": "Please select a {term} within the range of {min} and {max}."
874
+ "translation": "Please select a {term} within the range of {min} and {max}.",
875
+ "notes": "Error message for a date or a timeframe outside the selectable range."
852
876
  },
853
877
  "LOWAzLWj0fknrnEb": {
854
- "notes": "Filter field suggestion tip - apply filter.",
855
- "translation": "Apply filter"
878
+ "translation": "Apply filter",
879
+ "notes": "Filter field suggestion tip - apply filter."
856
880
  },
857
881
  "LQ8VkjDPP6CnNrhf": {
858
- "notes": "Text in the column action item for hiding the column.",
859
- "translation": "Hide column"
882
+ "translation": "Hide column",
883
+ "notes": "Text in the column action item for hiding the column."
884
+ },
885
+ "LaYAv5QEhDEHqVMW": {
886
+ "translation": "Version"
860
887
  },
861
888
  "LgOM6mSxWTUB+NI/": {
862
- "notes": "Text in a tooltip shown when hovering the manually collapsed toolbar's menu button in the time series chart toolbar",
863
- "translation": "Chart tools"
889
+ "translation": "Chart tools",
890
+ "notes": "Text in a tooltip shown when hovering the manually collapsed toolbar's menu button in the time series chart toolbar"
864
891
  },
865
892
  "LhnAiI2sqynNbsba": {
866
- "notes": "Error message indicating that something with the current selection is wrong and, therefore, should be checked.",
867
- "translation": "The applied segments are outdated. Please check your selection in the overlay."
893
+ "translation": "The applied segments are outdated. Please check your selection in the overlay.",
894
+ "notes": "Error message indicating that something with the current selection is wrong and, therefore, should be checked."
868
895
  },
869
896
  "LoBSMcHvTQEABp39": {
870
- "notes": "The aria label for the month input of a date.",
871
- "translation": "{prefix}month"
897
+ "translation": "{prefix}month",
898
+ "notes": "The aria label for the month input of a date."
872
899
  },
873
900
  "M6eNgatb2wf4fQ3I": {
874
- "notes": "Textbox to enter a dql timeframe expression.",
875
- "translation": "{ariaLabelPrefix} expression"
901
+ "translation": "{ariaLabelPrefix} expression",
902
+ "notes": "Textbox to enter a dql timeframe expression."
903
+ },
904
+ "MJmQVUKWduRqcQ2F": {
905
+ "translation": "{isHidden, select, true {Show} other {Hide}} {columnName}",
906
+ "notes": "Aria label for the button toggling the visibility of a column in the column settings. columnName is the display label of the column."
876
907
  },
877
908
  "MYBFw8pxHVA1QTDj": {
878
- "notes": "Panel name translation",
879
- "translation": "Sidebar"
909
+ "translation": "Sidebar",
910
+ "notes": "Panel name translation"
880
911
  },
881
912
  "MYfVMxPsAgOn8JSP": {
882
- "notes": "Only values which are a whole number of steps from the step base are valid. The step base is min if specified, value otherwise, or 0 if neither is provided.",
883
- "translation": "Value must be a multiple of {step}, starting from {min}."
913
+ "translation": "Value must be a multiple of {step}, starting from {min}.",
914
+ "notes": "Only values which are a whole number of steps from the step base are valid. The step base is min if specified, value otherwise, or 0 if neither is provided."
884
915
  },
885
916
  "Mexo5VI0BZU5Mw8b": {
886
- "notes": "Message shown in the empty state of the segmentsSelector.",
887
- "translation": "No segments configured."
917
+ "translation": "No segments configured.",
918
+ "notes": "Message shown in the empty state of the segmentsSelector."
888
919
  },
889
920
  "Mh5VCfdpjmGhMnOB": {
890
- "notes": "Label for the multi-column sorting group in the column actions menu.",
891
- "translation": "Multi-column sorting"
921
+ "translation": "Multi-column sorting",
922
+ "notes": "Label for the multi-column sorting group in the column actions menu."
892
923
  },
893
924
  "MlwM+/jonCtjJ+L7": {
894
- "notes": "Default placeholder for the time input.",
895
- "translation": "Add time"
925
+ "translation": "Add time",
926
+ "notes": "Default placeholder for the time input."
896
927
  },
897
928
  "MsfOpUQyZ0eEZ/5T": {
898
- "notes": "Display text for the link to the SegmentsManager app.",
899
- "translation": "Manage segments"
929
+ "translation": "Manage segments",
930
+ "notes": "Display text for the link to the SegmentsManager app."
900
931
  },
901
932
  "N200he2aabhApHz+": {
902
- "notes": "Text label for the x-value in the tooltip for the XYChart.",
903
- "translation": "X-value"
933
+ "translation": "X-value",
934
+ "notes": "Text label for the x-value in the tooltip for the XYChart."
904
935
  },
905
936
  "N27hQ6LyGqdym2Yi": {
906
- "notes": "Microguide Back button.",
907
- "translation": "Back"
937
+ "translation": "Back",
938
+ "notes": "Microguide Back button."
908
939
  },
909
940
  "NF0tLfJTokD/xw5B": {
910
- "notes": "Label for the button that expands the sidebar.",
911
- "translation": "Expand sidebar"
941
+ "translation": "Expand sidebar",
942
+ "notes": "Label for the button that expands the sidebar."
912
943
  },
913
944
  "NXdoElYQZNKea1Sc": {
914
- "notes": "Aria label fallback for Information overlay trigger",
915
- "translation": "Open additional information."
945
+ "translation": "Open additional information.",
946
+ "notes": "Aria label fallback for Information overlay trigger"
916
947
  },
917
948
  "Nar807M4NJhqMw/T": {
918
949
  "translation": "Try in Playground"
919
950
  },
920
951
  "Ncd2jCwVN8H1vf6M": {
921
- "notes": "Screen reader announcement indicating that additional suggestions exist beyond the first five displayed.",
922
- "translation": "This is just an overview, more suggestions might be available. Explore the list by navigating with the arrow keys or continue typing to filter."
952
+ "translation": "This is just an overview, more suggestions might be available. Explore the list by navigating with the arrow keys or continue typing to filter.",
953
+ "notes": "Screen reader announcement indicating that additional suggestions exist beyond the first five displayed."
923
954
  },
924
955
  "Nlzd/zJ2XP7vZMvE": {
925
- "notes": "Given dates are not within the valid range.",
926
- "translation": "Only dates between {from} {to} are available."
956
+ "translation": "Only dates between {from} {to} are available.",
957
+ "notes": "Given dates are not within the valid range."
927
958
  },
928
959
  "Np6+N27mrjvIJEls": {
929
- "notes": "Shown for the apply button of the timeframe selector.",
930
- "translation": "Apply"
960
+ "translation": "Apply",
961
+ "notes": "Shown for the apply button of the timeframe selector."
931
962
  },
932
963
  "NwDE2g2nYFjxPG9v": {
933
- "notes": "Menu item label to copy the DQL query to the clipboard.",
934
- "translation": "Copy query"
964
+ "translation": "Copy query",
965
+ "notes": "Menu item label to copy the DQL query to the clipboard."
935
966
  },
936
967
  "OEhnk3JokTy0c/JX": {
937
- "notes": "Aria label for the IntentButton menu trigger.",
938
- "translation": "Open intent menu"
968
+ "translation": "Open intent menu",
969
+ "notes": "Aria label for the IntentButton menu trigger."
939
970
  },
940
971
  "OLs+1KIFFvyM4iJv": {
941
- "notes": "Label for boolean type used in mixed type error messages",
942
- "translation": "boolean"
972
+ "translation": "boolean",
973
+ "notes": "Label for boolean type used in mixed type error messages"
943
974
  },
944
975
  "ONYnUtFidz4+6NmE": {
945
- "notes": "Given dates are not within the valid range.",
946
- "translation": "Only dates before {max} are available."
976
+ "translation": "Only dates before {max} are available.",
977
+ "notes": "Given dates are not within the valid range."
947
978
  },
948
979
  "OVHWs31OggLCgWSq": {
949
- "notes": "Label for the copy details button in SegmentsOverlay.",
950
- "translation": "Copy details"
980
+ "translation": "Copy details",
981
+ "notes": "Label for the copy details button in SegmentsOverlay."
982
+ },
983
+ "OmNf7ak/Kcv7wP3u": {
984
+ "translation": "Data table",
985
+ "notes": "Default accessible name for the DataTable component when no aria-label or aria-labelledby is provided."
951
986
  },
952
987
  "OwC/n+tx4kFWA3l3": {
953
988
  "translation": "Primary series name"
954
989
  },
955
990
  "PCUD8a2q2mhgGcgg": {
956
- "notes": "Default placeholder for code editor when the language is JSX.",
957
- "translation": "Add JSX"
991
+ "translation": "Add JSX",
992
+ "notes": "Default placeholder for code editor when the language is JSX."
958
993
  },
959
994
  "PjDGLO7+f1/CNRR0": {
960
- "notes": "Filter field empty suggestions message.",
961
- "translation": "No suggestions"
995
+ "translation": "No suggestions",
996
+ "notes": "Filter field empty suggestions message."
962
997
  },
963
998
  "PkWNcYRn4iWtpXnu": {
964
- "notes": "Filter field unsupported logical operator",
965
- "translation": "The logical `OR` operator is not supported in the basic syntax mode."
999
+ "translation": "The logical `OR` operator is not supported in the basic syntax mode.",
1000
+ "notes": "Filter field unsupported logical operator"
966
1001
  },
967
1002
  "Psa1yEbRJtw20yK3": {
968
- "notes": "Aria-label for selecting current page index.",
969
- "translation": "Select current page"
1003
+ "translation": "Select current page",
1004
+ "notes": "Aria-label for selecting current page index."
970
1005
  },
971
1006
  "Pyb778wli2buPWzS": {
972
- "notes": "Error state message for the gantt chart.",
973
- "translation": "An error occurred."
1007
+ "translation": "An error occurred.",
1008
+ "notes": "Error state message for the gantt chart."
974
1009
  },
975
1010
  "Q7HxEz/6LQ+CtEXo": {
976
- "notes": "Tooltip for the pin/unpin if the limit is reached.",
977
- "translation": "You can’t pin more than 10 items"
1011
+ "translation": "You can’t pin more than 10 items",
1012
+ "notes": "Tooltip for the pin/unpin if the limit is reached."
978
1013
  },
979
1014
  "Q7Mgijk38uWvSnlW": {
980
- "notes": "Filter field missing space error",
981
- "translation": "A space seems to be missing."
1015
+ "translation": "A space seems to be missing.",
1016
+ "notes": "Filter field missing space error"
982
1017
  },
983
1018
  "QF4myF79Hrp3e/0Q": {
984
- "notes": "Description for the start time of the preset item value, that is shown in the tooltip",
985
- "translation": "Start"
1019
+ "translation": "Start",
1020
+ "notes": "Description for the start time of the preset item value, that is shown in the tooltip"
986
1021
  },
987
1022
  "QGNAMlfBaYn7aCLl": {
988
- "notes": "Headline for recently used filters suggestions in the filter field",
989
- "translation": "Recently used filters"
1023
+ "translation": "Recently used filters",
1024
+ "notes": "Headline for recently used filters suggestions in the filter field"
990
1025
  },
991
1026
  "QHmb9sWOEor8eTYI": {
992
- "notes": "Annotation tooltip title value range",
993
- "translation": "Value range"
1027
+ "translation": "Value range",
1028
+ "notes": "Annotation tooltip title value range"
994
1029
  },
995
1030
  "QPVwTdDxajDwh62B": {
996
- "notes": "Label next to the Ctrl+Space keyboard shortcut in the DQL editor autocomplete info section, describing the action the shortcut triggers.",
997
- "translation": "Open"
1031
+ "translation": "Open",
1032
+ "notes": "Label next to the Ctrl+Space keyboard shortcut in the DQL editor autocomplete info section, describing the action the shortcut triggers."
998
1033
  },
999
1034
  "QXOCOrq5Seu+1A93": {
1000
- "notes": "Given dates are not within the valid range.",
1001
- "translation": "Only dates after {from} are available."
1035
+ "translation": "Only dates after {from} are available.",
1036
+ "notes": "Given dates are not within the valid range."
1002
1037
  },
1003
1038
  "QZdQoUnAWKJYAyK2": {
1004
- "notes": "Headline to group recently used segments presets.",
1005
- "translation": "Recently used"
1039
+ "translation": "Recently used",
1040
+ "notes": "Headline to group recently used segments presets."
1006
1041
  },
1007
1042
  "QbeiZKf6kqgyTp3m": {
1008
1043
  "translation": "Secondary series name"
1009
1044
  },
1010
1045
  "Qm0/7EQKVXjS9tDM": {
1011
- "notes": "Given dates are not within the valid range.",
1012
- "translation": "Only dates between {min} {max} are available."
1046
+ "translation": "Only dates between {min} {max} are available.",
1047
+ "notes": "Given dates are not within the valid range."
1048
+ },
1049
+ "QsCiOjrrvWmpOx/R": {
1050
+ "translation": "{columnName} can't be {isHidden, select, true {shown} other {hidden}}",
1051
+ "notes": "Aria label for the visibility toggle of a column whose visibility can't be changed. columnName is the display label of the column."
1013
1052
  },
1014
1053
  "QsKlSIxE+Yp58CUG": {
1015
- "notes": "Timeframe selector required timeframe error hint.",
1016
- "translation": "Empty timeframe."
1054
+ "translation": "Empty timeframe.",
1055
+ "notes": "Timeframe selector required timeframe error hint."
1017
1056
  },
1018
1057
  "QsfELKqpB23/KKWM": {
1019
- "notes": "Label for the panel control button.",
1020
- "translation": "Close {panelName}"
1058
+ "translation": "Close {panelName}",
1059
+ "notes": "Label for the panel control button."
1021
1060
  },
1022
1061
  "R78oo6l2CKe2fY1R": {
1023
- "notes": "Message shown for value suggestions restricted by a validator map (only IP addresses are valid)",
1024
- "translation": "Supported values: IP addresses"
1062
+ "translation": "Supported values: IP addresses",
1063
+ "notes": "Message shown for value suggestions restricted by a validator map (only IP addresses are valid)"
1025
1064
  },
1026
1065
  "RL8FCY3ia3BTX2cU": {
1027
- "notes": "Filter field suggestion tip - close suggestions.",
1028
- "translation": "Close"
1066
+ "translation": "Close",
1067
+ "notes": "Filter field suggestion tip - close suggestions."
1029
1068
  },
1030
1069
  "RPdRdtDJumoOO3os": {
1031
- "notes": "Tooltip text for pin button.",
1032
- "translation": "Pin in {appName}"
1070
+ "translation": "Pin in {appName}",
1071
+ "notes": "Tooltip text for pin button."
1033
1072
  },
1034
1073
  "RRZCQqo1jlLlwIyS": {
1035
- "notes": "Text in a tooltip shown when hovering the \"Zoom out\" action in the histogram chart toolbar",
1036
- "translation": "Zoom out"
1074
+ "translation": "Zoom out",
1075
+ "notes": "Text in a tooltip shown when hovering the \"Zoom out\" action in the histogram chart toolbar"
1037
1076
  },
1038
1077
  "RST92XLweEz0Qott": {
1039
- "notes": "Label for the button that switches the details panel to split mode.",
1040
- "translation": "Switch to side-by-side"
1078
+ "translation": "Switch to side-by-side",
1079
+ "notes": "Label for the button that switches the details panel to split mode."
1041
1080
  },
1042
1081
  "RSp2nSscx4hJgP2P": {
1043
- "notes": "Filter field exists operator description",
1044
- "translation": "Exists in any form"
1082
+ "translation": "Exists in any form",
1083
+ "notes": "Filter field exists operator description"
1045
1084
  },
1046
1085
  "RicigT+v0BvVWaSt": {
1047
- "notes": "Aria label for DataTable draggable header",
1048
- "translation": "Drag to reorder \"{column}\" column"
1086
+ "translation": "Drag to reorder \"{column}\" column",
1087
+ "notes": "Aria label for DataTable draggable header"
1049
1088
  },
1050
1089
  "Ro/9HWdwiItr3Ter": {
1051
- "notes": "Timeframe formatter: timeframe-roundDown-month",
1052
- "translation": "{prefix, select, previous {Previous} next {Next} other {This}} {amount, plural, one {month} other {# months}}"
1090
+ "translation": "{prefix, select, previous {Previous} next {Next} other {This}} {amount, plural, one {month} other {# months}}",
1091
+ "notes": "Timeframe formatter: timeframe-roundDown-month"
1053
1092
  },
1054
1093
  "RoNWrUBQf8gR7lxZ": {
1055
- "notes": "Empty state message if no variables for the segment are available.",
1056
- "translation": "No values for this segment available. You can manage this segment in settings."
1094
+ "translation": "No values for this segment available. You can manage this segment in settings.",
1095
+ "notes": "Empty state message if no variables for the segment are available."
1057
1096
  },
1058
1097
  "Rrlag1wRQFMpYHX7": {
1059
- "notes": "Text in a tooltip shown when clicking a geo map tooltip item and hovering the copy button next to its coordinates",
1060
- "translation": "Copy coordinates"
1098
+ "translation": "Copy coordinates",
1099
+ "notes": "Text in a tooltip shown when clicking a geo map tooltip item and hovering the copy button next to its coordinates"
1061
1100
  },
1062
1101
  "RuGHpilISAqb1dDM": {
1063
- "notes": "Placeholder for the trigger of the select within the segmentSelector Overlay.",
1064
- "translation": "Select value"
1102
+ "translation": "Select value",
1103
+ "notes": "Placeholder for the trigger of the select within the segmentSelector Overlay."
1065
1104
  },
1066
1105
  "Rx7WtBPx/tyQ5h+j": {
1067
- "notes": "Text in a tooltip shown when hovering \"Move\" action in the time series chart toolbar",
1068
- "translation": "Move"
1106
+ "translation": "Move",
1107
+ "notes": "Text in a tooltip shown when hovering \"Move\" action in the time series chart toolbar"
1069
1108
  },
1070
1109
  "RxaXcljpkrMAErS9": {
1071
- "notes": "Text in the column action item for changing the column order, moving column to the right.",
1072
- "translation": "Move right"
1110
+ "translation": "Move right",
1111
+ "notes": "Text in the column action item for changing the column order, moving column to the right."
1073
1112
  },
1074
1113
  "S3llhud3ydpS6ObI": {
1075
- "notes": "or",
1076
- "translation": "or"
1114
+ "translation": "or",
1115
+ "notes": "or"
1077
1116
  },
1078
1117
  "S6z4dIJ7FiELVt5X": {
1079
- "notes": "Aria-label for the remove button of a segments select.",
1080
- "translation": "Remove segment"
1118
+ "translation": "Remove segment",
1119
+ "notes": "Aria-label for the remove button of a segments select."
1081
1120
  },
1082
1121
  "SPSPRmp+gABk1LGQ": {
1083
- "notes": "Timeframe formatter: timeframe-minute",
1084
- "translation": "{prefix, select, past {Last} future {Next} relativeFuture {In} other {}} {offset, plural, one {# minute} other {# minutes}}{suffix}"
1122
+ "translation": "{prefix, select, past {Last} future {Next} relativeFuture {In} other {}} {offset, plural, one {# minute} other {# minutes}}{suffix}",
1123
+ "notes": "Timeframe formatter: timeframe-minute"
1085
1124
  },
1086
1125
  "Siq71+wvTgBerJXL": {
1087
- "notes": "Text in a tooltip shown when hovering the \"Explore\" mode in the chart toolbar",
1088
- "translation": "Explore mode"
1126
+ "translation": "Explore mode",
1127
+ "notes": "Text in a tooltip shown when hovering the \"Explore\" mode in the chart toolbar"
1089
1128
  },
1090
1129
  "Sovq/8OI4lXhwuJJ": {
1091
- "notes": "from / to",
1092
- "translation": "to"
1130
+ "translation": "to",
1131
+ "notes": "from / to"
1093
1132
  },
1094
1133
  "SzcXIJL/aWzjy5Ig": {
1095
- "notes": "Aria-label for the + in the \"add segment\" button to convey the functionality.",
1096
- "translation": "Add"
1134
+ "translation": "Add",
1135
+ "notes": "Aria-label for the + in the \"add segment\" button to convey the functionality."
1097
1136
  },
1098
1137
  "TGpKHavTfvNDG6nB": {
1099
- "notes": "Message shown for value suggestions restricted by a validator map (only numbers are valid)",
1100
- "translation": "Supported values: Numbers"
1138
+ "translation": "Supported values: Numbers",
1139
+ "notes": "Message shown for value suggestions restricted by a validator map (only numbers are valid)"
1101
1140
  },
1102
1141
  "THNwSvfvDSXAUapi": {
1103
- "notes": "Shown after copying to clipboard",
1104
- "translation": "Copied"
1142
+ "translation": "Copied",
1143
+ "notes": "Shown after copying to clipboard"
1105
1144
  },
1106
1145
  "TIVnKWerQ6BuCdAB": {
1107
- "notes": "Search placeholder",
1108
- "translation": "Search"
1146
+ "translation": "Search",
1147
+ "notes": "Search placeholder"
1109
1148
  },
1110
1149
  "TKRQN9BIBeD8VT1I": {
1111
- "notes": "Key shortcut in a tooltip shown when hovering the \"Zoom out\" action in the time series chart toolbar",
1112
- "translation": "Down"
1150
+ "translation": "Down",
1151
+ "notes": "Key shortcut in a tooltip shown when hovering the \"Zoom out\" action in the time series chart toolbar"
1113
1152
  },
1114
1153
  "TNgy+4XtLPGHfZu2": {
1115
- "notes": "Filter field matches-phrase operator description",
1116
- "translation": "Matches phrase"
1154
+ "translation": "Matches phrase",
1155
+ "notes": "Filter field matches-phrase operator description"
1117
1156
  },
1118
1157
  "TTCLEQtF7ylLxvEx": {
1119
- "notes": "Text in a tooltip shown when hovering the \"Explore\" mode in the time series chart toolbar",
1120
- "translation": "Explore mode"
1158
+ "translation": "Explore mode",
1159
+ "notes": "Text in a tooltip shown when hovering the \"Explore\" mode in the time series chart toolbar"
1121
1160
  },
1122
1161
  "TY3F/kE6n91t0TL0": {
1123
1162
  "translation": "What's new"
1124
1163
  },
1125
1164
  "Tr/buzcgyjaGCFM7": {
1126
- "notes": "Filter field not-matches-phrase operator description",
1127
- "translation": "Does not match phrase"
1165
+ "translation": "Does not match phrase",
1166
+ "notes": "Filter field not-matches-phrase operator description"
1128
1167
  },
1129
1168
  "TuHiu5OflYhkrvKy": {
1130
- "notes": "Timeframe duration formatter: timeframe-week",
1131
- "translation": "{offset, plural, one {# week} other {# weeks}}"
1169
+ "translation": "{offset, plural, one {# week} other {# weeks}}",
1170
+ "notes": "Timeframe duration formatter: timeframe-week"
1132
1171
  },
1133
1172
  "U09aNQxYT1yrJ4eJ": {
1134
- "notes": "Default message when no options are available in the select.",
1135
- "translation": "No results found"
1173
+ "translation": "No results found",
1174
+ "notes": "Default message when no options are available in the select."
1136
1175
  },
1137
1176
  "U4LTHt7BSgC51Yri": {
1138
- "notes": "Filter field empty group error",
1139
- "translation": "A group cannot be empty."
1177
+ "translation": "A group cannot be empty.",
1178
+ "notes": "Filter field empty group error"
1140
1179
  },
1141
1180
  "U59PIse3upSvDblc": {
1142
- "notes": "Error message shown if the from and to values of a timeframe are both invalid",
1143
- "translation": "Invalid timeframe"
1181
+ "translation": "Invalid timeframe",
1182
+ "notes": "Error message shown if the from and to values of a timeframe are both invalid"
1183
+ },
1184
+ "U5fgWD8U9siN4Gse": {
1185
+ "translation": "Yes"
1144
1186
  },
1145
1187
  "U7gUoyCRKRniBDOp": {
1146
- "notes": "Press the button to Pan to the left",
1147
- "translation": "Pan to the left"
1188
+ "translation": "Pan to the left",
1189
+ "notes": "Press the button to Pan to the left"
1148
1190
  },
1149
1191
  "UBJSASimMVkN5w7p": {
1150
- "notes": "Aria label to add to each day button",
1151
- "translation": "Select day"
1192
+ "translation": "Select day",
1193
+ "notes": "Aria label to add to each day button"
1152
1194
  },
1153
1195
  "UK0OoP7XF++evklW": {
1154
- "notes": "Label for the button that closes the details panel.",
1155
- "translation": "Close details"
1196
+ "translation": "Close details",
1197
+ "notes": "Label for the button that closes the details panel."
1198
+ },
1199
+ "UZ1xW95v+ePFi3HE": {
1200
+ "translation": "Column can't be {isHidden, select, true {shown} other {hidden}}",
1201
+ "notes": "Tooltip for the visibility toggle of a column whose visibility can't be changed."
1156
1202
  },
1157
1203
  "Ua7PnIRWAcErpii9": {
1158
- "notes": "Hint for entering JSONPath syntax in the FilterField.",
1159
- "translation": "Filter JSON attributes using dot notation. For example:"
1204
+ "translation": "Filter JSON attributes using dot notation. For example:",
1205
+ "notes": "Hint for entering JSONPath syntax in the FilterField."
1160
1206
  },
1161
1207
  "UdBwDtbEgD8ojnmL": {
1162
- "notes": "Description for the tooltip of an unlisted segment.",
1163
- "translation": "Someone else applied this segment, which is usually not available to you. You can only view or remove it."
1208
+ "translation": "Someone else applied this segment, which is usually not available to you. You can only view or remove it.",
1209
+ "notes": "Description for the tooltip of an unlisted segment."
1164
1210
  },
1165
1211
  "Uuc6xAAPyctyHamM": {
1166
- "notes": "Text shown for the datetimepicker calendar trigger.",
1167
- "translation": "Datepicker calendar trigger"
1212
+ "translation": "Datepicker calendar trigger",
1213
+ "notes": "Text shown for the datetimepicker calendar trigger."
1168
1214
  },
1169
1215
  "V09xUXtpHEVFRBsh": {
1170
- "notes": "Timeframe formatter: timeframe-roundDown-day",
1171
- "translation": "{prefix, select, previous {Previous} next {Next} other {This}} {amount, plural, one {day} other {# days}}"
1216
+ "translation": "{prefix, select, previous {Previous} next {Next} other {This}} {amount, plural, one {day} other {# days}}",
1217
+ "notes": "Timeframe formatter: timeframe-roundDown-day"
1172
1218
  },
1173
1219
  "V4fGRjKxu0XkK3nm": {
1174
- "notes": "Timeframe formatter: timeframe-roundDown-quarter",
1175
- "translation": "{prefix, select, previous {Previous} next {Next} other {This}} {amount, plural, one {quarter} other {# quarters}}"
1220
+ "translation": "{prefix, select, previous {Previous} next {Next} other {This}} {amount, plural, one {quarter} other {# quarters}}",
1221
+ "notes": "Timeframe formatter: timeframe-roundDown-quarter"
1176
1222
  },
1177
1223
  "V6W9BJ4sF8Y+2/Si": {
1178
- "notes": "Text label for the series in the tooltip. Displayed when hovering XYChart datapoints.",
1179
- "translation": "Series"
1224
+ "translation": "Series",
1225
+ "notes": "Text label for the series in the tooltip. Displayed when hovering XYChart datapoints."
1180
1226
  },
1181
1227
  "V92OBR9Gk9REQKUu": {
1182
- "notes": "Message to display when no table columns are configured.",
1183
- "translation": "No table columns configured."
1228
+ "translation": "No table columns configured.",
1229
+ "notes": "Message to display when no table columns are configured."
1184
1230
  },
1185
1231
  "VL8nEatHCgCkS4Yw": {
1186
- "notes": "Text in a tooltip shown when hovering the \"X-axis zoom\" mode in the time series chart toolbar",
1187
- "translation": "X-axis zoom"
1232
+ "translation": "X-axis zoom",
1233
+ "notes": "Text in a tooltip shown when hovering the \"X-axis zoom\" mode in the time series chart toolbar"
1188
1234
  },
1189
1235
  "VTvQ7p6QQyABl+XP": {
1190
- "notes": "Error message shown if the from value of a timeframe is invalid",
1191
- "translation": "The 'from' field is invalid."
1236
+ "translation": "The 'from' field is invalid.",
1237
+ "notes": "Error message shown if the from value of a timeframe is invalid"
1192
1238
  },
1193
1239
  "VXB6h9uDSpOZsvwP": {
1194
- "notes": "Text displayed when hovering the threshold point or pill and no default label has been set",
1195
- "translation": "Threshold"
1240
+ "translation": "Threshold",
1241
+ "notes": "Text displayed when hovering the threshold point or pill and no default label has been set"
1196
1242
  },
1197
1243
  "VYHp9Wzie7wOmBmf": {
1198
- "notes": "Aria label for the DQL editor actions menu trigger button.",
1199
- "translation": "DQL editor actions"
1244
+ "translation": "DQL editor actions",
1245
+ "notes": "Aria label for the DQL editor actions menu trigger button."
1200
1246
  },
1201
1247
  "VkfutNWZVq0loZNC": {
1202
- "notes": "Message to display when no data is available",
1203
- "translation": "No data available."
1248
+ "translation": "No data available.",
1249
+ "notes": "Message to display when no data is available"
1204
1250
  },
1205
1251
  "VlyElrRtYeguIlZS": {
1206
- "notes": "Timeframe selector required from field error hint.",
1207
- "translation": "The 'from' field is required."
1252
+ "translation": "The 'from' field is required.",
1253
+ "notes": "Timeframe selector required from field error hint."
1208
1254
  },
1209
1255
  "VoHb/9htaX3GgMyA": {
1210
- "notes": "Prefix for the moving a duration of the timeframe forward or backward, that is shown in the tooltip",
1211
- "translation": "Move"
1256
+ "translation": "Move",
1257
+ "notes": "Prefix for the moving a duration of the timeframe forward or backward, that is shown in the tooltip"
1212
1258
  },
1213
1259
  "VoqQWp9yEM0QM8eF": {
1214
- "notes": "Aria label to add to the `previous` button",
1215
- "translation": "Go to previous page."
1260
+ "translation": "Go to previous page.",
1261
+ "notes": "Aria label to add to the `previous` button"
1216
1262
  },
1217
1263
  "Vp5mQzQ25g1cKY0D": {
1218
- "notes": "Title for the Configure notifications menu item",
1219
- "translation": "Configure notifications"
1264
+ "translation": "Configure notifications",
1265
+ "notes": "Title for the Configure notifications menu item"
1220
1266
  },
1221
1267
  "VsLm4+Io4PguyLI+": {
1222
- "notes": "Filter field equals operator description",
1223
- "translation": "Equals"
1268
+ "translation": "Equals",
1269
+ "notes": "Filter field equals operator description"
1224
1270
  },
1225
1271
  "VwnLYpww5VUT3cdu": {
1226
- "notes": "Chip label indicating a feature is deprecated",
1227
- "translation": "Deprecated"
1272
+ "translation": "Deprecated",
1273
+ "notes": "Chip label indicating a feature is deprecated"
1228
1274
  },
1229
1275
  "W+rTy8UuFKDho3mc": {
1230
- "notes": "Placeholder shown for the timeframe selector.",
1231
- "translation": "Select timeframe"
1276
+ "translation": "Select timeframe",
1277
+ "notes": "Placeholder shown for the timeframe selector."
1232
1278
  },
1233
1279
  "W2KEm8AIcM8pOixf": {
1234
- "notes": "App version label",
1235
- "translation": "Version {version}"
1280
+ "translation": "Version {version}",
1281
+ "notes": "App version label"
1236
1282
  },
1237
1283
  "WCZAUtmjwNCm5iwa": {
1238
- "notes": "Label for the menu trigger to open app-header navigation.",
1239
- "translation": "Open app navigation"
1284
+ "translation": "Open app navigation",
1285
+ "notes": "Label for the menu trigger to open app-header navigation."
1240
1286
  },
1241
1287
  "WD6kswCbAgSXwMnO": {
1242
- "notes": "The aria label for the second input of a time.",
1243
- "translation": "{prefix}second"
1288
+ "translation": "{prefix}second",
1289
+ "notes": "The aria label for the second input of a time."
1244
1290
  },
1245
1291
  "WDNrzGxjR2Q0PO0t": {
1246
- "notes": "Filter field greater than operator description",
1247
- "translation": "Greater than"
1292
+ "translation": "Greater than",
1293
+ "notes": "Filter field greater than operator description"
1248
1294
  },
1249
1295
  "WGVOUOAZiBC2rWlk": {
1250
- "notes": "Label for the column drag handle in the column settings.",
1251
- "translation": "Drag to order column \"{columnId}\"."
1296
+ "translation": "Drag to order column \"{columnId}\".",
1297
+ "notes": "Label for the column drag handle in the column settings."
1252
1298
  },
1253
1299
  "WgyyLcd/Xq9voOe4": {
1254
- "notes": "Message to display when a threshold is dynamic",
1255
- "translation": "Dynamic"
1300
+ "translation": "Dynamic",
1301
+ "notes": "Message to display when a threshold is dynamic"
1256
1302
  },
1257
1303
  "WxdPgLpYTL0pyM92": {
1258
- "notes": "Label for the clear segments button when segments are applied but the user has no permissions.",
1259
- "translation": "Clear segments"
1304
+ "translation": "Clear segments",
1305
+ "notes": "Label for the clear segments button when segments are applied but the user has no permissions."
1260
1306
  },
1261
1307
  "X9SZ3eLw4rz/ODZQ": {
1262
- "notes": "Default placeholder for the date time input.",
1263
- "translation": "Add date and time"
1308
+ "translation": "Add date and time",
1309
+ "notes": "Default placeholder for the date time input."
1264
1310
  },
1265
1311
  "XC7nO0JIPg0R0kBw": {
1266
- "notes": "Default placeholder for the date input.",
1267
- "translation": "Add date"
1312
+ "translation": "Add date",
1313
+ "notes": "Default placeholder for the date input."
1268
1314
  },
1269
1315
  "XOE5zKTRmqYLBnRf": {
1270
- "notes": "Label for the copy action in the tooltip, where field is the name of the field to be copied",
1271
- "translation": "Copy {field}"
1316
+ "translation": "Copy {field}",
1317
+ "notes": "Label for the copy action in the tooltip, where field is the name of the field to be copied"
1272
1318
  },
1273
1319
  "XPLMI3aOe8TwFwJc": {
1274
- "notes": "Text in a tooltip shown when hovering a legend series to hide it",
1275
- "translation": "Hide"
1320
+ "translation": "Hide",
1321
+ "notes": "Text in a tooltip shown when hovering a legend series to hide it"
1276
1322
  },
1277
1323
  "XQHEJyt2t/js0TGr": {
1278
- "notes": "Close the feature highlight.",
1279
- "translation": "Close feature highlight"
1324
+ "translation": "Close feature highlight",
1325
+ "notes": "Close the feature highlight."
1280
1326
  },
1281
1327
  "XRD3go4HQunmYuM4": {
1282
- "notes": "Message shown if the ends-with operator is not supported for this key.",
1283
- "translation": "Ends-with is not supported for this key."
1328
+ "translation": "Ends-with is not supported for this key.",
1329
+ "notes": "Message shown if the ends-with operator is not supported for this key."
1284
1330
  },
1285
1331
  "XXsHBFWgU7wZSd8V": {
1286
- "notes": "Default placeholder for code editor when the language is JSON.",
1287
- "translation": "Add JSON"
1332
+ "translation": "Add JSON",
1333
+ "notes": "Default placeholder for code editor when the language is JSON."
1288
1334
  },
1289
1335
  "XmYqCKn9iEfBoSSL": {
1290
- "notes": "Menu item label to open the DQL documentation in a new browser tab.",
1291
- "translation": "Open documentation"
1336
+ "translation": "Open documentation",
1337
+ "notes": "Menu item label to open the DQL documentation in a new browser tab."
1292
1338
  },
1293
1339
  "Xug47ebOKpTzuLj1": {
1294
- "notes": "Set the font style of the column text.",
1295
- "translation": "Change font: default"
1340
+ "translation": "Change font: default",
1341
+ "notes": "Set the font style of the column text."
1296
1342
  },
1297
1343
  "Xup0Ti6gaxC1KDSY": {
1298
- "notes": "The abbreviation of the minute part of a time value",
1299
- "translation": "mm"
1344
+ "translation": "mm",
1345
+ "notes": "The abbreviation of the minute part of a time value"
1300
1346
  },
1301
1347
  "Xxl1F0GNIQlu2LSH": {
1302
- "notes": "Short version of the display text for the link to the segments documentation.",
1303
- "translation": "Learn more"
1348
+ "translation": "Learn more",
1349
+ "notes": "Short version of the display text for the link to the segments documentation."
1304
1350
  },
1305
1351
  "Y/6wwuz1ueL+7V2j": {
1306
- "notes": "Tooltip text for pinning limit.",
1307
- "translation": "You can't pin more than 10 items."
1352
+ "translation": "You can't pin more than 10 items.",
1353
+ "notes": "Tooltip text for pinning limit."
1308
1354
  },
1309
1355
  "Y0Ru/2gdHx6uuwvl": {
1310
- "notes": "Text in a tooltip shown when hovering \"Expand\" action in the time series chart toolbar",
1311
- "translation": "Expand toolbar"
1356
+ "translation": "Expand toolbar",
1357
+ "notes": "Text in a tooltip shown when hovering \"Expand\" action in the time series chart toolbar"
1312
1358
  },
1313
1359
  "YF5nfeV6l4Yc8Wom": {
1314
- "notes": "Text label for the category in the tooltip. Displayed when hovering over Pie chart.",
1315
- "translation": "Category"
1360
+ "translation": "Category",
1361
+ "notes": "Text label for the category in the tooltip. Displayed when hovering over Pie chart."
1316
1362
  },
1317
1363
  "YINK0Te9FAqCqP/C": {
1318
- "notes": "Label used to describe the button that toggles notify button notifications on or off",
1319
- "translation": "Turn {notificationEnabled, select, true {off} other {on}} notifications"
1364
+ "translation": "Turn {notificationEnabled, select, true {off} other {on}} notifications",
1365
+ "notes": "Label used to describe the button that toggles notify button notifications on or off"
1366
+ },
1367
+ "YTE4r9D1o7r/DV13": {
1368
+ "translation": "An error occurred",
1369
+ "notes": "The message shown when a component reaches an invalid state due to an uncaught exception."
1320
1370
  },
1321
1371
  "Yi8j4dchtpkwn/OB": {
1322
- "notes": "Shown for elements that trigger a copy to clipboard",
1323
- "translation": "Copy"
1372
+ "translation": "Copy",
1373
+ "notes": "Shown for elements that trigger a copy to clipboard"
1324
1374
  },
1325
1375
  "YithM+0sfIXQLp9+": {
1326
- "notes": "Describes the action of the sub rows trigger",
1327
- "translation": "{expandState, select, expand {Expand} other {Collapse}} all subrows"
1376
+ "translation": "{expandState, select, expand {Expand} other {Collapse}} all subrows",
1377
+ "notes": "Describes the action of the sub rows trigger"
1328
1378
  },
1329
1379
  "Ym3RUHtaLVFsGlaM": {
1330
- "notes": "Label for the resize handle of the panel to resize it with drag and drop or keyboard.",
1331
- "translation": "Resize {label} panel"
1380
+ "translation": "Resize {label} panel",
1381
+ "notes": "Label for the resize handle of the panel to resize it with drag and drop or keyboard."
1332
1382
  },
1333
1383
  "YqEOqKR9iZt3qY0t": {
1334
- "notes": "Tooltip information for the download table button while download is in progress.",
1335
- "translation": "Downloading table data"
1384
+ "translation": "Downloading table data",
1385
+ "notes": "Tooltip information for the download table button while download is in progress."
1336
1386
  },
1337
1387
  "ZFLXYT4zoCbKvGNP": {
1338
- "notes": "Display text for the link to the segments documentation.",
1339
- "translation": "Learn more about segments"
1388
+ "translation": "Learn more about segments",
1389
+ "notes": "Display text for the link to the segments documentation."
1340
1390
  },
1341
1391
  "ZGvbau7roOR3vlCG": {
1342
- "notes": "Text in the menu item for unpinning the column.",
1343
- "translation": "Unpin"
1392
+ "translation": "Unpin",
1393
+ "notes": "Text in the menu item for unpinning the column."
1344
1394
  },
1345
1395
  "Za5bQfBDnyyur0mw": {
1346
- "notes": "Call to action for cancelable query button",
1347
- "translation": "Cancel query"
1396
+ "translation": "Cancel query",
1397
+ "notes": "Call to action for cancelable query button"
1348
1398
  },
1349
1399
  "Zc+msrZVGPNk84Lu": {
1350
- "notes": "Filter field ends-with operator description",
1351
- "translation": "Ends with"
1400
+ "translation": "Ends with",
1401
+ "notes": "Filter field ends-with operator description"
1402
+ },
1403
+ "ZhUT5iq6+B7hRPfb": {
1404
+ "translation": "{isHidden, select, true {Show} other {Hide}} column",
1405
+ "notes": "Tooltip for the button toggling the visibility of a column in the column settings."
1352
1406
  },
1353
1407
  "ZqPD+GJnri7vlLul": {
1354
- "notes": "Message shown for value suggestions restricted by a validator map (only durations are valid)",
1355
- "translation": "Supported values: Durations"
1408
+ "translation": "Supported values: Durations",
1409
+ "notes": "Message shown for value suggestions restricted by a validator map (only durations are valid)"
1356
1410
  },
1357
1411
  "Zr87lY6T9UiaWuMD": {
1358
- "notes": "Empty state message shown if no key or value is provided yet.",
1359
- "translation": "Start typing to enter a {suggestionType}."
1412
+ "translation": "Start typing to enter a {suggestionType}.",
1413
+ "notes": "Empty state message shown if no key or value is provided yet."
1360
1414
  },
1361
1415
  "ZrxrsiqabWfxne/q": {
1362
- "notes": "Default placeholder for code editor when the language is Markdown.",
1363
- "translation": "Add Markdown"
1416
+ "translation": "Add Markdown",
1417
+ "notes": "Default placeholder for code editor when the language is Markdown."
1364
1418
  },
1365
1419
  "ZsZq59BFxrIW5JzO": {
1366
- "notes": "Tooltip for pinning or unpinning the column depending on its current state.",
1367
- "translation": "{isUnpinned, select, true {Pin column} other {Pin/Unpin column}}"
1420
+ "translation": "{isUnpinned, select, true {Pin column} other {Pin/Unpin column}}",
1421
+ "notes": "Tooltip for pinning or unpinning the column depending on its current state."
1368
1422
  },
1369
1423
  "ZvsC1dVcKeywqOWW": {
1370
- "notes": "Description for the duration of the timeframe, that is shown in the tooltip",
1371
- "translation": "Duration"
1424
+ "translation": "Duration",
1425
+ "notes": "Description for the duration of the timeframe, that is shown in the tooltip"
1372
1426
  },
1373
1427
  "a9uVGc0cPE1OqAJj": {
1374
- "notes": "The aria label for the day period (am/pm) input of a time.",
1375
- "translation": "{prefix}day period"
1428
+ "translation": "{prefix}day period",
1429
+ "notes": "The aria label for the day period (am/pm) input of a time."
1376
1430
  },
1377
1431
  "aB3uCeB71q6UURBy": {
1378
- "notes": "Aria-label for close modal button.",
1379
- "translation": "Close modal"
1432
+ "translation": "Close modal",
1433
+ "notes": "Aria-label for close modal button."
1380
1434
  },
1381
1435
  "aGMowcWvdm+5M63D": {
1382
- "notes": "Error message shown when the selected segment has variables but does not expect any.",
1383
- "translation": "This segment is no longer using variables. Click apply to refresh it."
1436
+ "translation": "This segment is no longer using variables. Click apply to refresh it.",
1437
+ "notes": "Error message shown when the selected segment has variables but does not expect any."
1384
1438
  },
1385
1439
  "aNWYfuuoyg/TEftI": {
1386
- "notes": "Timeframe formatter: timeframe-hour",
1387
- "translation": "{prefix, select, past {Last} future {Next} relativeFuture {In} other {}} {offset, plural, one {# hour} other {# hours}}{suffix}"
1440
+ "translation": "{prefix, select, past {Last} future {Next} relativeFuture {In} other {}} {offset, plural, one {# hour} other {# hours}}{suffix}",
1441
+ "notes": "Timeframe formatter: timeframe-hour"
1388
1442
  },
1389
1443
  "aNafGo8pDA0dJBLo": {
1390
- "notes": "Label for string type used in mixed type error messages",
1391
- "translation": "text"
1444
+ "translation": "text",
1445
+ "notes": "Label for string type used in mixed type error messages"
1392
1446
  },
1393
1447
  "aRc3KoQgfpti2E9M": {
1394
- "notes": "Aria label to add to each month button",
1395
- "translation": "Select month"
1448
+ "translation": "Select month",
1449
+ "notes": "Aria label to add to each month button"
1396
1450
  },
1397
1451
  "aUi1nca6cF4KJPSw": {
1398
- "notes": "Filter field unsupported position operator",
1399
- "translation": "A position operator cannot occur in this position."
1452
+ "translation": "A position operator cannot occur in this position.",
1453
+ "notes": "Filter field unsupported position operator"
1400
1454
  },
1401
1455
  "aYOFXw5HKPdKKWSu": {
1402
- "notes": "Text in a tooltip shown when clicking a tooltip series and copying its series name",
1403
- "translation": "Copied"
1456
+ "translation": "Copied",
1457
+ "notes": "Text in a tooltip shown when clicking a tooltip series and copying its series name"
1404
1458
  },
1405
1459
  "af0kT/X4xYo3usY+": {
1406
- "notes": "Text displayed in the tooltip as the first action when zoom is enabled and a select interaction is performed on the Timeseries chart.",
1407
- "translation": "Zoom to selection"
1460
+ "translation": "Zoom to selection",
1461
+ "notes": "Text displayed in the tooltip as the first action when zoom is enabled and a select interaction is performed on the Timeseries chart."
1408
1462
  },
1409
1463
  "ait1f+4Ly9rcloeq": {
1410
- "notes": "Label for duration type used in mixed type error messages",
1411
- "translation": "duration"
1464
+ "translation": "duration",
1465
+ "notes": "Label for duration type used in mixed type error messages"
1412
1466
  },
1413
1467
  "aj7w8W3lv+e41SJB": {
1414
- "notes": "Tooltip for the pin/unpin button in the filter field suggestions",
1415
- "translation": "{isPinned, select, true {Unpin} other {Pin}} filter"
1468
+ "translation": "{isPinned, select, true {Unpin} other {Pin}} filter",
1469
+ "notes": "Tooltip for the pin/unpin button in the filter field suggestions"
1416
1470
  },
1417
1471
  "ajJBzmvnE0ruvyfn": {
1418
- "notes": "Invalid value error for SmartscapeId type",
1419
- "translation": "Invalid filter value. Only SmartscapeIds are supported for this key."
1472
+ "translation": "Invalid filter value. Only SmartscapeIds are supported for this key.",
1473
+ "notes": "Invalid value error for SmartscapeId type"
1420
1474
  },
1421
1475
  "an4qwOaAQd8t60m5": {
1422
- "notes": "Aria label for the interactive row trigger button.",
1423
- "translation": "{isActivated, select, true {Deactivate} other {Activate}} row with id \"{rowId}\"."
1476
+ "translation": "{isActivated, select, true {Deactivate} other {Activate}} row with id \"{rowId}\".",
1477
+ "notes": "Aria label for the interactive row trigger button."
1424
1478
  },
1425
1479
  "anCkyfyzovTz3qtv": {
1426
- "notes": "Link text in the DQL editor autocomplete info section, pointing to the external DQL syntax documentation.",
1427
- "translation": "DQL syntax"
1480
+ "translation": "DQL syntax",
1481
+ "notes": "Link text in the DQL editor autocomplete info section, pointing to the external DQL syntax documentation."
1428
1482
  },
1429
1483
  "aqGvcDl8n+XdhJiq": {
1430
- "notes": "Column visibility button text",
1431
- "translation": "{hiddenColumnCount} {hiddenColumnCount, plural, one {column} other {columns}} hidden"
1484
+ "translation": "{hiddenColumnCount} {hiddenColumnCount, plural, one {column} other {columns}} hidden",
1485
+ "notes": "Column visibility button text"
1432
1486
  },
1433
1487
  "arDem4VUr6iNJ1A3": {
1434
- "notes": "Text in a tooltip shown when hovering the \"Zoom out\" action in the time series chart toolbar",
1435
- "translation": "Zoom out"
1488
+ "translation": "Zoom out",
1489
+ "notes": "Text in a tooltip shown when hovering the \"Zoom out\" action in the time series chart toolbar"
1436
1490
  },
1437
1491
  "b16Ain2TkJO1zJU6": {
1438
- "notes": "Label for the button that sets the end time of a range selection to the current date and time.",
1439
- "translation": "Set end time to now"
1492
+ "translation": "Set end time to now",
1493
+ "notes": "Label for the button that sets the end time of a range selection to the current date and time."
1440
1494
  },
1441
1495
  "b5WOrn1oLsbJsvD8": {
1442
- "notes": "Column action menu item for multi-sorting a column in descending order when the column is already part of a multi-sort.",
1443
- "translation": "Change to descending"
1496
+ "translation": "Change to descending",
1497
+ "notes": "Column action menu item for multi-sorting a column in descending order when the column is already part of a multi-sort."
1444
1498
  },
1445
1499
  "b8jNkkwzLHYDkasb": {
1446
- "notes": "Text shown on the expanding button within the provided list, when currently expanded.",
1447
- "translation": "Show {isExpanded, select, true {less} false {more} other{}}"
1500
+ "translation": "Show {isExpanded, select, true {less} false {more} other{}}",
1501
+ "notes": "Text shown on the expanding button within the provided list, when currently expanded."
1448
1502
  },
1449
1503
  "bOr27M/3lXQFBWyp": {
1450
- "notes": "Annotation tooltip title value",
1451
- "translation": "Value"
1504
+ "translation": "Value",
1505
+ "notes": "Annotation tooltip title value"
1452
1506
  },
1453
1507
  "bvs68jg9q7RnuWgF": {
1454
- "notes": "Text in the tooltip header showing the number of selected data points",
1455
- "translation": "{count} data point"
1508
+ "translation": "{count} data point",
1509
+ "notes": "Text in the tooltip header showing the number of selected data points"
1456
1510
  },
1457
1511
  "bvvqbArXvzAMOUit": {
1458
- "notes": "Press the button to Pan to the right",
1459
- "translation": "Pan to the right"
1512
+ "translation": "Pan to the right",
1513
+ "notes": "Press the button to Pan to the right"
1460
1514
  },
1461
1515
  "bx7cExKj4X9tpZgs": {
1462
- "notes": "Hint to copy details to share with an admin.",
1463
- "translation": "Please copy the details and share them with your admin."
1516
+ "translation": "Please copy the details and share them with your admin.",
1517
+ "notes": "Hint to copy details to share with an admin."
1464
1518
  },
1465
1519
  "cBlxys3qfILuKMaG": {
1466
- "notes": "Hint to display in the timeframe selector if a min and a max date is set.",
1467
- "translation": "Only dates between {min} {max} are available."
1520
+ "translation": "Only dates between {min} {max} are available.",
1521
+ "notes": "Hint to display in the timeframe selector if a min and a max date is set."
1468
1522
  },
1469
1523
  "cycz+bYG+VH7Of4e": {
1470
- "notes": "Label for the loading state.",
1471
- "translation": "Loading"
1524
+ "translation": "Loading",
1525
+ "notes": "Label for the loading state."
1472
1526
  },
1473
1527
  "d4ODG2WkdaedSe5s": {
1474
- "notes": "Aria label for the search suggestion group.",
1475
- "translation": "Search suggestion"
1528
+ "translation": "Search suggestion",
1529
+ "notes": "Aria label for the search suggestion group."
1476
1530
  },
1477
1531
  "d7CsKWrzLvzuObN6": {
1478
- "notes": "Timeframe selector required to field error hint.",
1479
- "translation": "The 'to' field is required."
1532
+ "translation": "The 'to' field is required.",
1533
+ "notes": "Timeframe selector required to field error hint."
1534
+ },
1535
+ "dDHj3yQ8W+M8/6Cy": {
1536
+ "translation": "Package"
1480
1537
  },
1481
1538
  "dIZIXjFpJvLPz3+g": {
1482
- "notes": "Text in the tooltip header indicating the end of the selected range",
1483
- "translation": "to"
1539
+ "translation": "to",
1540
+ "notes": "Text in the tooltip header indicating the end of the selected range"
1484
1541
  },
1485
1542
  "dTJ8Pdj8Xm9Uh9Y+": {
1486
- "notes": "Text in a tooltip shown when hovering \"Collapse\" action in the time series chart toolbar",
1487
- "translation": "Collapse toolbar"
1543
+ "translation": "Collapse toolbar",
1544
+ "notes": "Text in a tooltip shown when hovering \"Collapse\" action in the time series chart toolbar"
1488
1545
  },
1489
1546
  "dtWYZ7eG/P5QCKp5": {
1490
- "notes": "Screen reader announcement for the count of user-pinned filter suggestions available for selection.",
1491
- "translation": "{value} pinned filter suggestion(s)."
1547
+ "translation": "{value} pinned filter suggestion(s).",
1548
+ "notes": "Screen reader announcement for the count of user-pinned filter suggestions available for selection."
1492
1549
  },
1493
1550
  "dxcsnLOTenNXGZkn": {
1494
- "notes": "Text in the column action item for disabling line wrap for the column.",
1495
- "translation": "Disable line wrap"
1551
+ "translation": "Disable line wrap",
1552
+ "notes": "Text in the column action item for disabling line wrap for the column."
1496
1553
  },
1497
1554
  "dyadgwpDBQLyqJaa": {
1498
- "notes": "Filter field not-starts-with operator description",
1499
- "translation": "Doesn't start with"
1555
+ "translation": "Doesn't start with",
1556
+ "notes": "Filter field not-starts-with operator description"
1500
1557
  },
1501
1558
  "e2L/mGCBvRqDTvq2": {
1502
- "notes": "Label for the clear all button.",
1503
- "translation": "Clear all"
1559
+ "translation": "Clear all",
1560
+ "notes": "Label for the clear all button."
1504
1561
  },
1505
1562
  "eII4gA0InOVMB0Uh": {
1506
- "notes": "Aria text when there are no available suggestion.",
1507
- "translation": "No suggestions available."
1563
+ "translation": "No suggestions available.",
1564
+ "notes": "Aria text when there are no available suggestion."
1508
1565
  },
1509
1566
  "eJrsgl5/4XpLIWxo": {
1510
- "notes": "Message shown when access control permissions are missing and no segments are applied.",
1511
- "translation": "Your assigned access control policies don't permit you to use segments."
1567
+ "translation": "Your assigned access control policies don't permit you to use segments.",
1568
+ "notes": "Message shown when access control permissions are missing and no segments are applied."
1512
1569
  },
1513
1570
  "eONO7S5ZXY7V+R6d": {
1514
- "notes": "Text in button that opens a menu with more actions in the chart toolbar",
1515
- "translation": "More options"
1571
+ "translation": "More options",
1572
+ "notes": "Text in button that opens a menu with more actions in the chart toolbar"
1516
1573
  },
1517
1574
  "eYRqhWFzgj9ne5TC": {
1518
- "notes": "Error message shown when a segment variable is identified by a first column array.",
1519
- "translation": "The first column of a variable cannot be an array."
1575
+ "translation": "The first column of a variable cannot be an array.",
1576
+ "notes": "Error message shown when a segment variable is identified by a first column array."
1520
1577
  },
1521
1578
  "eZkDqSXP6kwDUc5d": {
1522
- "notes": "Timeframe formatter: invalid",
1523
- "translation": "invalid timeframe"
1579
+ "translation": "invalid timeframe",
1580
+ "notes": "Timeframe formatter: invalid"
1524
1581
  },
1525
1582
  "euRey+Fz9NxskAuO": {
1526
- "notes": "Cancel button text",
1527
- "translation": "Cancel"
1583
+ "translation": "Cancel",
1584
+ "notes": "Cancel button text"
1528
1585
  },
1529
1586
  "ewgHQuXKDMK7CzyQ": {
1530
- "notes": "Timeframe formatter: timeframe-to",
1531
- "translation": "to"
1587
+ "translation": "to",
1588
+ "notes": "Timeframe formatter: timeframe-to"
1532
1589
  },
1533
1590
  "f4/NcUWxDYnAQ68s": {
1534
- "notes": "Text in \"Download data\" button in the chart toolbar",
1535
- "translation": "Download as CSV"
1591
+ "translation": "Download as CSV",
1592
+ "notes": "Text in \"Download data\" button in the chart toolbar"
1536
1593
  },
1537
1594
  "fE+5JaLlWXQ3dlNm": {
1538
- "notes": "Set the font style of the column text.",
1539
- "translation": "Change font: monospace"
1595
+ "translation": "Change font: monospace",
1596
+ "notes": "Set the font style of the column text."
1540
1597
  },
1541
1598
  "fHGjouAXIpSTl8T2": {
1542
- "notes": "Description for the end time of the preset item value, that is shown in the tooltip",
1543
- "translation": "End"
1599
+ "translation": "End",
1600
+ "notes": "Description for the end time of the preset item value, that is shown in the tooltip"
1544
1601
  },
1545
1602
  "fIr5C8WQPnYfAMr5": {
1546
- "notes": "Default placeholder for code editor when no language is set.",
1547
- "translation": "Add code"
1603
+ "translation": "Add code",
1604
+ "notes": "Default placeholder for code editor when no language is set."
1548
1605
  },
1549
1606
  "fJPc1Tw4jSAEp5KQ": {
1550
- "notes": "Message shown if the not-ends-with operator can be used with the current value.",
1551
- "translation": "Doesn't end with {value}"
1607
+ "translation": "Doesn't end with {value}",
1608
+ "notes": "Message shown if the not-ends-with operator can be used with the current value."
1552
1609
  },
1553
1610
  "fLfhKO8cXlo3vW5M": {
1554
- "notes": "Error message for input that doesn't match the expected type.",
1555
- "translation": "Please provide a value that matches the requested type ({type})."
1611
+ "translation": "Please provide a value that matches the requested type ({type}).",
1612
+ "notes": "Error message for input that doesn't match the expected type."
1556
1613
  },
1557
1614
  "fMy6q/KKOqbvCA3H": {
1558
- "notes": "Textbox to enter a relative or absolute timeframe from value.",
1559
- "translation": "DateTime from"
1615
+ "translation": "DateTime from",
1616
+ "notes": "Textbox to enter a relative or absolute timeframe from value."
1560
1617
  },
1561
1618
  "fg8x33u8t5tYtlE9": {
1562
- "notes": "Default placeholder for code editor when the language is JavaScript.",
1563
- "translation": "Add JavaScript"
1619
+ "translation": "Add JavaScript",
1620
+ "notes": "Default placeholder for code editor when the language is JavaScript."
1564
1621
  },
1565
1622
  "fzkORq3AsvX/NtMB": {
1566
- "notes": "Microguide Got it button at last step.",
1567
- "translation": "Got it"
1623
+ "translation": "Got it",
1624
+ "notes": "Microguide Got it button at last step."
1568
1625
  },
1569
1626
  "g1/iHBY5uUDFWT6o": {
1570
- "notes": "Text in a tooltip shown when hovering the \"Zoom in\" action in the histogram chart toolbar",
1571
- "translation": "Zoom in"
1627
+ "translation": "Zoom in",
1628
+ "notes": "Text in a tooltip shown when hovering the \"Zoom in\" action in the histogram chart toolbar"
1572
1629
  },
1573
1630
  "g16jcz6++0Pvr3BY": {
1574
- "notes": "Text displayed in the tooltip as the first action when zoom is enabled and a select interaction is performed on the Histogram chart.",
1575
- "translation": "Zoom to selection"
1631
+ "translation": "Zoom to selection",
1632
+ "notes": "Text displayed in the tooltip as the first action when zoom is enabled and a select interaction is performed on the Histogram chart."
1576
1633
  },
1577
1634
  "g1uJ6PuX78GYkCnv": {
1578
- "notes": "Text used for the notify button toast heading when the limit is reached.",
1579
- "translation": "Notification couldn't be created"
1635
+ "translation": "Notification couldn't be created",
1636
+ "notes": "Text used for the notify button toast heading when the limit is reached."
1580
1637
  },
1581
1638
  "g2fLjUNdQ/qPFLMn": {
1582
- "notes": "Row count shown alongside each download option",
1583
- "translation": "{noOfRows, plural, one {# row} other {# rows}}"
1639
+ "translation": "{noOfRows, plural, one {# row} other {# rows}}",
1640
+ "notes": "Row count shown alongside each download option"
1584
1641
  },
1585
1642
  "g5VGRS4KVxg346o4": {
1586
- "notes": "Filter field screen reader announcement for opened suggestions.",
1587
- "translation": "Suggestions overlay opened. You can navigate to a suggestion with the arrow up or arrow down key and select it by pressing enter. Please continue typing to filter."
1643
+ "translation": "Suggestions overlay opened. You can navigate to a suggestion with the arrow up or arrow down key and select it by pressing enter. Please continue typing to filter.",
1644
+ "notes": "Filter field screen reader announcement for opened suggestions."
1588
1645
  },
1589
1646
  "gAPECRr427W1IZEa": {
1590
- "notes": "Text in a tooltip shown when hovering the \"Explore\" mode in the histogram chart toolbar",
1591
- "translation": "Explore mode"
1647
+ "translation": "Explore mode",
1648
+ "notes": "Text in a tooltip shown when hovering the \"Explore\" mode in the histogram chart toolbar"
1592
1649
  },
1593
1650
  "gIQd1giAq7WNDZp6": {
1594
- "notes": "Timeframe duration formatter: timeframe-day",
1595
- "translation": "{offset, plural, one {# day} other {# days}}"
1651
+ "translation": "{offset, plural, one {# day} other {# days}}",
1652
+ "notes": "Timeframe duration formatter: timeframe-day"
1596
1653
  },
1597
1654
  "gVTqz8lR6St4GyrT": {
1598
- "notes": "Label for the button that sets the start time of a range selection to the current date and time.",
1599
- "translation": "Set start time to now"
1655
+ "translation": "Set start time to now",
1656
+ "notes": "Label for the button that sets the start time of a range selection to the current date and time."
1657
+ },
1658
+ "gWxS/SvdlKY80JRI": {
1659
+ "translation": "No"
1600
1660
  },
1601
1661
  "gbREY3JeG/Gnn5VH": {
1602
- "notes": "Aria text for less than 10 suggestions.",
1603
- "translation": "{suggestionsLength} suggestions available: {combinedSuggestions}"
1662
+ "translation": "{suggestionsLength} suggestions available: {combinedSuggestions}",
1663
+ "notes": "Aria text for less than 10 suggestions."
1604
1664
  },
1605
1665
  "gg76gjIy5leuPbMT": {
1606
- "notes": "Label for button indicating that an error has occurred while running the query. Click to retry.",
1607
- "translation": "Error (click to retry)"
1666
+ "translation": "Error (click to retry)",
1667
+ "notes": "Label for button indicating that an error has occurred while running the query. Click to retry."
1608
1668
  },
1609
1669
  "ggfg/kIzwBCNyGCm": {
1610
- "notes": "Default placeholder text for the single select.",
1611
- "translation": "Select an option"
1670
+ "translation": "Select an option",
1671
+ "notes": "Default placeholder text for the single select."
1612
1672
  },
1613
1673
  "gllJsm/rrRr/LIng": {
1614
- "notes": "Text in a tooltip shown when hovering the \"Zoom\" mode in the histogram chart toolbar",
1615
- "translation": "Zoom mode"
1674
+ "translation": "Zoom mode",
1675
+ "notes": "Text in a tooltip shown when hovering the \"Zoom\" mode in the histogram chart toolbar"
1616
1676
  },
1617
1677
  "gnKOHMjpyzk6hNcF": {
1618
- "notes": "Start of timeframe",
1619
- "translation": "Start time"
1678
+ "translation": "Start time",
1679
+ "notes": "Start of timeframe"
1620
1680
  },
1621
1681
  "grMCOLy6cDAqdO7V": {
1622
- "notes": "Aria label for DataTable header resize handler",
1623
- "translation": "Change size for \"{column}\" column"
1682
+ "translation": "Change size for \"{column}\" column",
1683
+ "notes": "Aria label for DataTable header resize handler"
1624
1684
  },
1625
1685
  "gzgHXY7+xENWvOfC": {
1626
- "notes": "Timeframe duration formatter: timeframe-year",
1627
- "translation": "{offset, plural, one {# year} other {# years}}"
1686
+ "translation": "{offset, plural, one {# year} other {# years}}",
1687
+ "notes": "Timeframe duration formatter: timeframe-year"
1628
1688
  },
1629
1689
  "hIBEZw/eT6Nb+dz3": {
1630
- "notes": "Text appended to a label when the associated form field is read-only.",
1631
- "translation": "(read only)"
1690
+ "translation": "(read only)",
1691
+ "notes": "Text appended to a label when the associated form field is read-only."
1632
1692
  },
1633
1693
  "hIK5810KwQytwP1q": {
1634
- "notes": "DateTimePicker required value is missing.",
1635
- "translation": "Please fill in this field."
1694
+ "translation": "Please fill in this field.",
1695
+ "notes": "DateTimePicker required value is missing."
1636
1696
  },
1637
1697
  "hi3IodOo0ygpihhY": {
1638
- "notes": "Label for button indicating that a query is loading",
1639
- "translation": "Running"
1698
+ "translation": "Running",
1699
+ "notes": "Label for button indicating that a query is loading"
1640
1700
  },
1641
1701
  "hnsZ5MLEj9V3vVxP": {
1642
- "notes": "Aria label for the overlay of the timeframe selector.",
1643
- "translation": "Timeframe selector overlay for providing a custom timeframe or selecting one of the presets"
1702
+ "translation": "Timeframe selector overlay for providing a custom timeframe or selecting one of the presets",
1703
+ "notes": "Aria label for the overlay of the timeframe selector."
1644
1704
  },
1645
1705
  "i7ML7nsvim1vfXlT": {
1646
- "notes": "Label next to the Esc keyboard shortcut in the DQL editor autocomplete info section, describing the action the shortcut triggers.",
1647
- "translation": "Close"
1706
+ "translation": "Close",
1707
+ "notes": "Label next to the Esc keyboard shortcut in the DQL editor autocomplete info section, describing the action the shortcut triggers."
1648
1708
  },
1649
1709
  "iN3ZVFNmBN0hzG0I": {
1650
- "notes": "Text in a tooltip shown when hovering the \"Zoom in\" action in the time series chart toolbar",
1651
- "translation": "Zoom in"
1710
+ "translation": "Zoom in",
1711
+ "notes": "Text in a tooltip shown when hovering the \"Zoom in\" action in the time series chart toolbar"
1652
1712
  },
1653
1713
  "iO0lZy6i8mjT0jzt": {
1654
- "notes": "Column action menu item for multi-sorting a column in ascending order when the column is already part of a multi-sort.",
1655
- "translation": "Change to ascending"
1714
+ "translation": "Change to ascending",
1715
+ "notes": "Column action menu item for multi-sorting a column in ascending order when the column is already part of a multi-sort."
1656
1716
  },
1657
1717
  "iQMNfVmL/0auzXXf": {
1658
- "notes": "Suggestion to enter the pasted text into the FilterField.",
1659
- "translation": "Apply filter syntax"
1718
+ "translation": "Apply filter syntax",
1719
+ "notes": "Suggestion to enter the pasted text into the FilterField."
1660
1720
  },
1661
1721
  "ibW/chmVU64qftcF": {
1662
- "notes": "Text used for the notify button toast content when the limit is reached.",
1663
- "translation": "No notification could be created, the limit for notification type {notificationType} is reached."
1722
+ "translation": "No notification could be created, the limit for notification type {notificationType} is reached.",
1723
+ "notes": "Text used for the notify button toast content when the limit is reached."
1664
1724
  },
1665
1725
  "iuy+4WgQ89QDvgl+": {
1666
- "notes": "Headline for recently used filters suggestions in the filter field",
1667
- "translation": "Pinned filters"
1726
+ "translation": "Pinned filters",
1727
+ "notes": "Headline for recently used filters suggestions in the filter field"
1668
1728
  },
1669
1729
  "iygPRzX1n+gL7TLR": {
1670
- "notes": "Aria-label for the loading view within the SegmentSelector Overlay.",
1671
- "translation": "Loading segments"
1730
+ "translation": "Loading segments",
1731
+ "notes": "Aria-label for the loading view within the SegmentSelector Overlay."
1672
1732
  },
1673
1733
  "j7ELo0pUXF1X46+R": {
1674
- "notes": "Filter field invalid wildcard operator",
1675
- "translation": "This wildcard operator is not valid for this key."
1734
+ "translation": "This wildcard operator is not valid for this key.",
1735
+ "notes": "Filter field invalid wildcard operator"
1676
1736
  },
1677
1737
  "jT47SZ4EuoZYSr9x": {
1678
- "notes": "Filter field not-contains operator description",
1679
- "translation": "Doesn't contain"
1738
+ "translation": "Doesn't contain",
1739
+ "notes": "Filter field not-contains operator description"
1680
1740
  },
1681
1741
  "jZte4Ia6a1UkBwpv": {
1682
- "notes": "Timeframe formatter: timeframe-month",
1683
- "translation": "{prefix, select, past {Last} future {Next} relativeFuture {In} other {}} {offset, plural, one {# month} other {# months}}{suffix}"
1742
+ "translation": "{prefix, select, past {Last} future {Next} relativeFuture {In} other {}} {offset, plural, one {# month} other {# months}}{suffix}",
1743
+ "notes": "Timeframe formatter: timeframe-month"
1684
1744
  },
1685
1745
  "jc4XDeI4sf7aLs2W": {
1686
1746
  "translation": "Value"
1687
1747
  },
1688
1748
  "jishWwgadkdK/YkI": {
1689
- "notes": "Aria label used for the notify button trigger",
1690
- "translation": "Toggle notify button notifications overlay"
1749
+ "translation": "Toggle notify button notifications overlay",
1750
+ "notes": "Aria label used for the notify button trigger"
1691
1751
  },
1692
1752
  "jtrx2KCeXnLeA8Kd": {
1693
- "notes": "Filter field incomplete statement error",
1694
- "translation": "The filter field statement is incomplete."
1753
+ "translation": "The filter field statement is incomplete.",
1754
+ "notes": "Filter field incomplete statement error"
1695
1755
  },
1696
1756
  "k+MFecbA4aJKNSbM": {
1697
- "notes": "Empty state message for the gantt chart.",
1698
- "translation": "No data has been provided."
1757
+ "translation": "No data has been provided.",
1758
+ "notes": "Empty state message for the gantt chart."
1699
1759
  },
1700
1760
  "k3/OeMKig2l4gCEJ": {
1701
- "notes": "Label for number type used in mixed type error messages",
1702
- "translation": "number"
1761
+ "translation": "number",
1762
+ "notes": "Label for number type used in mixed type error messages"
1703
1763
  },
1704
1764
  "kCk8ZqQbTzdkw3WN": {
1705
- "notes": "Describes the action of the sub rows trigger",
1706
- "translation": "{expandState, select, expand {Expand} other {Collapse}} subrow with id \"{id}\"."
1765
+ "translation": "{expandState, select, expand {Expand} other {Collapse}} subrow with id \"{id}\".",
1766
+ "notes": "Describes the action of the sub rows trigger"
1707
1767
  },
1708
1768
  "kOQNUENAg02eeaTY": {
1709
1769
  "translation": "Get started"
1710
1770
  },
1711
1771
  "kbjLqK2W/E1NyaKH": {
1712
- "notes": "Text label for the y-value in the tooltip. Displayed when hovering over XYChart datapoints.",
1713
- "translation": "Y-value"
1772
+ "translation": "Y-value",
1773
+ "notes": "Text label for the y-value in the tooltip. Displayed when hovering over XYChart datapoints."
1714
1774
  },
1715
1775
  "kctf0+Hea33LxYTL": {
1716
- "notes": "Filter field missing value error",
1717
- "translation": "The filter value is missing."
1776
+ "translation": "The filter value is missing.",
1777
+ "notes": "Filter field missing value error"
1718
1778
  },
1719
1779
  "kq1Ips7kEIlJ2yFv": {
1720
- "notes": "Aria label for DataTable header button that toggles sorting and allows for drag and drop column reordering.",
1721
- "translation": "Change sorting for \"{column}\" column to {direction, select, asc {ascending} desc {descending} other {unset}} or drag to reorder \"{column}\" column."
1780
+ "translation": "Change sorting for \"{column}\" column to {direction, select, asc {ascending} desc {descending} other {unset}} or drag to reorder \"{column}\" column.",
1781
+ "notes": "Aria label for DataTable header button that toggles sorting and allows for drag and drop column reordering."
1722
1782
  },
1723
1783
  "ktoTdX660gW5R80Z": {
1724
- "notes": "The abbreviation of the second part of a time value",
1725
- "translation": "ss"
1784
+ "translation": "ss",
1785
+ "notes": "The abbreviation of the second part of a time value"
1726
1786
  },
1727
1787
  "l1RC/QWjUJWHIM++": {
1728
- "notes": "Filter field duplicate position operator error",
1729
- "translation": "A position operator can only occur before or after a doublequote, not both."
1788
+ "translation": "A position operator can only occur before or after a doublequote, not both.",
1789
+ "notes": "Filter field duplicate position operator error"
1730
1790
  },
1731
1791
  "lCYAKjQqWpqlsSEs": {
1732
- "notes": "Text in a tooltip shown when hovering the \"Download data\" button in the categorical bar chart toolbar",
1733
- "translation": "Download as CSV"
1792
+ "translation": "Download as CSV",
1793
+ "notes": "Text in a tooltip shown when hovering the \"Download data\" button in the categorical bar chart toolbar"
1734
1794
  },
1735
1795
  "lLbR2C5+S97CTJ4v": {
1736
- "notes": "Filter field invalid characters",
1737
- "translation": "Reserved characters aren't allowed in keys or values. Escape them by adding a backslash '\\' in front or wrapping the whole string in double quotes."
1796
+ "translation": "Reserved characters aren't allowed in keys or values. Escape them by adding a backslash '\\' in front or wrapping the whole string in double quotes.",
1797
+ "notes": "Filter field invalid characters"
1738
1798
  },
1739
1799
  "laIylhVFbIvEZrxt": {
1740
- "notes": "Error message for missing input.",
1741
- "translation": "Please fill in this field."
1800
+ "translation": "Please fill in this field.",
1801
+ "notes": "Error message for missing input."
1742
1802
  },
1743
1803
  "lrDYNZ+hnaBD30/j": {
1744
- "notes": "Filter field incomplete statement error",
1745
- "translation": "Incomplete filter statement. A valid statement consists of key, comparator, and value. Alternatively, add {operator} in front to search for this phrase in all data."
1804
+ "translation": "Incomplete filter statement. A valid statement consists of key, comparator, and value. Alternatively, add {operator} in front to search for this phrase in all data.",
1805
+ "notes": "Filter field incomplete statement error"
1746
1806
  },
1747
1807
  "lu2hmVHtfcnVRPtz": {
1748
- "notes": "Text to display when choosing the number of rows per page.",
1749
- "translation": "rows per page"
1808
+ "translation": "rows per page",
1809
+ "notes": "Text to display when choosing the number of rows per page."
1750
1810
  },
1751
1811
  "ly03uOR7VGcWb+pG": {
1752
- "notes": "Timeframe formatter: timeframe-year",
1753
- "translation": "{prefix, select, past {Last} future {Next} relativeFuture {In} other {}} {offset, plural, one {# year} other {# years}}{suffix}"
1812
+ "translation": "{prefix, select, past {Last} future {Next} relativeFuture {In} other {}} {offset, plural, one {# year} other {# years}}{suffix}",
1813
+ "notes": "Timeframe formatter: timeframe-year"
1814
+ },
1815
+ "ly1XN52z5b521OrX": {
1816
+ "translation": "Duplicate"
1754
1817
  },
1755
1818
  "m5z+3UJ4Q3absAi5": {
1756
- "notes": "Timeframe formatter: timeframe-quarter",
1757
- "translation": "{prefix, select, past {Last} future {Next} relativeFuture {In} other {}} {offset, plural, one {# quarter} other {# quarters}}{suffix}"
1819
+ "translation": "{prefix, select, past {Last} future {Next} relativeFuture {In} other {}} {offset, plural, one {# quarter} other {# quarters}}{suffix}",
1820
+ "notes": "Timeframe formatter: timeframe-quarter"
1758
1821
  },
1759
1822
  "mG+nMDkU8bB8zLlO": {
1760
- "notes": "Timeframe duration formatter: timeframe-second",
1761
- "translation": "{offset, plural, one {# second} other {# seconds}}"
1823
+ "translation": "{offset, plural, one {# second} other {# seconds}}",
1824
+ "notes": "Timeframe duration formatter: timeframe-second"
1762
1825
  },
1763
1826
  "mS6CPzO+pMJLetSA": {
1764
- "notes": "Aria label used for the clear button inside the filter field.",
1765
- "translation": "Clear filter"
1827
+ "translation": "Clear filter",
1828
+ "notes": "Aria label used for the clear button inside the filter field."
1766
1829
  },
1767
1830
  "mSrICwXdDHSlEwIq": {
1768
- "notes": "Additional information text used for the notify button overlay when notifications are disabled",
1769
- "translation": "You won't be notified about updates via email."
1831
+ "translation": "You won't be notified about updates via email.",
1832
+ "notes": "Additional information text used for the notify button overlay when notifications are disabled"
1770
1833
  },
1771
1834
  "mTmhCH1Z7z3TY8Jo": {
1772
- "notes": "Aria label for DataTable header button that toggles sorting",
1773
- "translation": "Change sorting for \"{column}\" column to {direction, select, asc {ascending} desc {descending} other {unset}}"
1835
+ "translation": "Change sorting for \"{column}\" column to {direction, select, asc {ascending} desc {descending} other {unset}}",
1836
+ "notes": "Aria label for DataTable header button that toggles sorting"
1774
1837
  },
1775
1838
  "mXDFppLKSC7oX/Ba": {
1776
- "notes": "Message shown if the not-contains operator can be used with the current value.",
1777
- "translation": "Doesn't contain {value}"
1839
+ "translation": "Doesn't contain {value}",
1840
+ "notes": "Message shown if the not-contains operator can be used with the current value."
1778
1841
  },
1779
1842
  "mYmd/xMZulbADHsY": {
1780
- "notes": "Text shown on the expanding button within the SegmentSelector preset list, when currently expanded.",
1781
- "translation": "Show {isExpanded, select, true {less} false {more} other{}}"
1843
+ "translation": "Show {isExpanded, select, true {less} false {more} other{}}",
1844
+ "notes": "Text shown on the expanding button within the SegmentSelector preset list, when currently expanded."
1845
+ },
1846
+ "miecKI74dxONRE98": {
1847
+ "translation": "Clear {sortDirection, select, ascending {ascending} descending {descending} other {}} sort order to drag and drop rows",
1848
+ "notes": "Tooltip shown on a disabled row drag handle when reordering is unavailable because the table is sorted."
1849
+ },
1850
+ "ml+Pyzyh+p8TWy3Z": {
1851
+ "translation": "Unpinned",
1852
+ "notes": "Section header for columns that are not pinned in the column settings modal."
1782
1853
  },
1783
1854
  "mscZH1VbXmfXn9BL": {
1784
- "notes": "Text in a tooltip shown when hovering the \"Zoom in\" action in the xy chart toolbar",
1785
- "translation": "Zoom in"
1855
+ "translation": "Zoom in",
1856
+ "notes": "Text in a tooltip shown when hovering the \"Zoom in\" action in the xy chart toolbar"
1786
1857
  },
1787
1858
  "mtKUJAn0mf0dbG4E": {
1788
- "notes": "Message shown when access control permissions are missing but a query with segments was run.",
1789
- "translation": "Your assigned access control policies don't permit you to read or apply segments."
1859
+ "translation": "Your assigned access control policies don't permit you to read or apply segments.",
1860
+ "notes": "Message shown when access control permissions are missing but a query with segments was run."
1790
1861
  },
1791
1862
  "n17DpsKydU3rdqK9": {
1792
- "notes": "Tooltip information for the download table button.",
1793
- "translation": "Download table data"
1863
+ "translation": "Download table data",
1864
+ "notes": "Tooltip information for the download table button."
1865
+ },
1866
+ "n1zi/yl5dOaxTrfN": {
1867
+ "translation": "Reset",
1868
+ "notes": "Button text for trying to recover a component from an invalid state."
1794
1869
  },
1795
1870
  "n3kHNMq0wIDbAVfm": {
1796
- "notes": "Label for downloading current page rows",
1797
- "translation": "Current page"
1871
+ "translation": "Current page",
1872
+ "notes": "Label for downloading current page rows"
1798
1873
  },
1799
1874
  "nDzGVBRq+V8ulNuu": {
1800
- "notes": "Text in the tooltip header showing the number of selected data points in multiple series",
1801
- "translation": "{count, plural, one {# data point} other {# data points}} across {seriesCount} series"
1875
+ "translation": "{count, plural, one {# data point} other {# data points}} across {seriesCount} series",
1876
+ "notes": "Text in the tooltip header showing the number of selected data points in multiple series"
1802
1877
  },
1803
1878
  "nIw/xeiGNJsj+a+5": {
1804
- "notes": "Hint shown when searching for a segment variable that isn't in the list.",
1805
- "translation": "No matching values for this segment found."
1879
+ "translation": "No matching values for this segment found.",
1880
+ "notes": "Hint shown when searching for a segment variable that isn't in the list."
1806
1881
  },
1807
1882
  "nS4QPK3zNih9UAZs": {
1808
- "notes": "Position operator not supported for used comparator.",
1809
- "translation": "Invalid combination of position operators and comparator. Allowed comparators: =, !="
1883
+ "translation": "Invalid combination of position operators and comparator. Allowed comparators: =, !=",
1884
+ "notes": "Position operator not supported for used comparator."
1810
1885
  },
1811
1886
  "nZQixLAUTDhflk9Q": {
1812
- "notes": "Screen reader announcement introducing additional suggestion categories such as recent, pinned, or search suggestions.",
1813
- "translation": "Additionally available suggestions:"
1887
+ "translation": "Additionally available suggestions:",
1888
+ "notes": "Screen reader announcement introducing additional suggestion categories such as recent, pinned, or search suggestions."
1814
1889
  },
1815
1890
  "nZk5lg177+CQcO/Z": {
1816
- "notes": "The aria label for the year input of a date.",
1817
- "translation": "{prefix}year"
1891
+ "translation": "{prefix}year",
1892
+ "notes": "The aria label for the year input of a date."
1818
1893
  },
1819
1894
  "npzzIhowJGIZhj8d": {
1820
1895
  "translation": "Documentation"
1821
1896
  },
1822
1897
  "ntRg2/q/0hsoJ9+r": {
1823
- "notes": "Text in a tooltip shown when hovering the \"Pan\" mode in the time series chart toolbar",
1824
- "translation": "Pan mode"
1898
+ "translation": "Pan mode",
1899
+ "notes": "Text in a tooltip shown when hovering the \"Pan\" mode in the time series chart toolbar"
1825
1900
  },
1826
1901
  "o3A99RFWS+N7bJe8": {
1827
- "notes": "Accessible label for the details panel.",
1828
- "translation": "Details"
1902
+ "translation": "Details",
1903
+ "notes": "Accessible label for the details panel."
1829
1904
  },
1830
1905
  "oA42meteX3Ww5Zo5": {
1831
1906
  "translation": "App navigation"
1832
1907
  },
1833
1908
  "oDh+EhNRRqQQkNAS": {
1834
- "notes": "Column action menu item for multi-sorting a column in ascending order.",
1835
- "translation": "Add as ascending"
1909
+ "translation": "Add as ascending",
1910
+ "notes": "Column action menu item for multi-sorting a column in ascending order."
1836
1911
  },
1837
1912
  "oSKhN7fSy19ei878": {
1838
- "notes": "Placeholder for the trigger of the select within the segmentSelector Overlay.",
1839
- "translation": "Select segment"
1913
+ "translation": "Select segment",
1914
+ "notes": "Placeholder for the trigger of the select within the segmentSelector Overlay."
1840
1915
  },
1841
1916
  "oVgkJujKiRvYqIFQ": {
1842
- "notes": "Apply button text",
1843
- "translation": "Apply"
1917
+ "translation": "Apply",
1918
+ "notes": "Apply button text"
1844
1919
  },
1845
1920
  "ovlsWnQ6TNpxUzyF": {
1846
- "notes": "Hint shown when searching for a segment variable that isn't in the list.",
1847
- "translation": "No matching segments found. If you’re looking for a segment value, select the segment first."
1921
+ "translation": "No matching segments found. If you’re looking for a segment value, select the segment first.",
1922
+ "notes": "Hint shown when searching for a segment variable that isn't in the list."
1848
1923
  },
1849
1924
  "p/8O9bMs2knnRDWA": {
1850
- "notes": "Screen reader announcement for the availability of the logical OR operator as a suggestion option.",
1851
- "translation": "Logical operator suggestion: OR"
1925
+ "translation": "Logical operator suggestion: OR",
1926
+ "notes": "Screen reader announcement for the availability of the logical OR operator as a suggestion option."
1852
1927
  },
1853
1928
  "p5Aa2CtWutuGwudB": {
1854
- "notes": "Timeframe formatter: timeframe-week",
1855
- "translation": "{prefix, select, past {Last} future {Next} relativeFuture {In} other {}} {offset, plural, one {# week} other {# weeks}}{suffix}"
1929
+ "translation": "{prefix, select, past {Last} future {Next} relativeFuture {In} other {}} {offset, plural, one {# week} other {# weeks}}{suffix}",
1930
+ "notes": "Timeframe formatter: timeframe-week"
1856
1931
  },
1857
1932
  "pFUmTVhQadk/rQkO": {
1858
- "notes": "Message shown as a default key suggestions.",
1859
- "translation": "Use{value}as key"
1933
+ "translation": "Use{value}as key",
1934
+ "notes": "Message shown as a default key suggestions."
1860
1935
  },
1861
1936
  "pGR/6J+2uPcvCSju": {
1862
- "notes": "The aria label for the minute input of a time.",
1863
- "translation": "{prefix}minute"
1937
+ "translation": "{prefix}minute",
1938
+ "notes": "The aria label for the minute input of a time."
1864
1939
  },
1865
1940
  "pRBtzsvqzp1/QqAV": {
1866
- "notes": "Aria label to add to each year button",
1867
- "translation": "Select year"
1941
+ "translation": "Select year",
1942
+ "notes": "Aria label to add to each year button"
1868
1943
  },
1869
1944
  "psQtWNyQryNFymrs": {
1870
- "notes": "Text in the tooltip header showing the number of selected data points in multiple categories",
1871
- "translation": "{count, plural, one {# data point} other {# data points}} in {seriesCount, plural, one {# category} other {# categories}}"
1945
+ "translation": "{count, plural, one {# data point} other {# data points}} in {seriesCount, plural, one {# category} other {# categories}}",
1946
+ "notes": "Text in the tooltip header showing the number of selected data points in multiple categories"
1872
1947
  },
1873
1948
  "q/AKqzat66d0tRr7": {
1874
- "notes": "Text for SegmentSelector Trigger when no segment is selected yet.",
1875
- "translation": "Filter by segments"
1949
+ "translation": "Filter by segments",
1950
+ "notes": "Text for SegmentSelector Trigger when no segment is selected yet."
1876
1951
  },
1877
1952
  "q9YfvvFrRo1n8wvN": {
1878
- "notes": "Display text for the link to the timeframe selector documentation.",
1879
- "translation": "Learn more"
1953
+ "translation": "Learn more",
1954
+ "notes": "Display text for the link to the timeframe selector documentation."
1880
1955
  },
1881
1956
  "qDnh6SFkeo10shlI": {
1882
- "notes": "Error message shown when no value is selected.",
1883
- "translation": "At least one value must be selected."
1957
+ "translation": "At least one value must be selected.",
1958
+ "notes": "Error message shown when no value is selected."
1884
1959
  },
1885
1960
  "qEw4R8BQ3vYI7C8R": {
1886
- "notes": "Text used for the notify button toast button text",
1887
- "translation": "Copy missing permissions"
1961
+ "translation": "Copy missing permissions",
1962
+ "notes": "Text used for the notify button toast button text"
1888
1963
  },
1889
1964
  "qPeX7AgKbKzBFqGZ": {
1890
- "notes": "Error message for input that doesn't follow the requested pattern.",
1891
- "translation": "Please match the format requested."
1965
+ "translation": "Please match the format requested.",
1966
+ "notes": "Error message for input that doesn't follow the requested pattern."
1892
1967
  },
1893
1968
  "qoM4Je2O4h920xx0": {
1894
- "notes": "Text displayed when the pie chart dataset is invalid",
1895
- "translation": "No data can be displayed because the value is 0"
1969
+ "translation": "No data can be displayed because the value is 0",
1970
+ "notes": "Text displayed when the pie chart dataset is invalid"
1896
1971
  },
1897
1972
  "qpf+aqg3hXoviypu": {
1898
- "notes": "Aria label for the DateTimePicker calendar input used for form validation.",
1899
- "translation": "Calendar for picking a date"
1973
+ "translation": "Calendar for picking a date",
1974
+ "notes": "Aria label for the DateTimePicker calendar input used for form validation."
1900
1975
  },
1901
1976
  "r/XpT4mat98jCrup": {
1902
- "notes": "Given value is invalid",
1903
- "translation": "Invalid time. Expected format: {expectedFormat}, -2h or -2d@d"
1977
+ "translation": "Invalid time. Expected format: {expectedFormat}, -2h or -2d@d",
1978
+ "notes": "Given value is invalid"
1904
1979
  },
1905
1980
  "r2DiyNP5gUAg0s5f": {
1906
- "notes": "Given dates are not within the valid range.",
1907
- "translation": "Selected time is outside of the valid range."
1981
+ "translation": "Selected time is outside of the valid range.",
1982
+ "notes": "Given dates are not within the valid range."
1908
1983
  },
1909
1984
  "r2QQIGUPC6lQhGDf": {
1910
- "notes": "Aria-label for logical operator suggestions in the filter field",
1911
- "translation": "Logical operator suggestions"
1985
+ "translation": "Logical operator suggestions",
1986
+ "notes": "Aria-label for logical operator suggestions in the filter field"
1912
1987
  },
1913
1988
  "r3yl8iiNQEDjjS+I": {
1914
- "notes": "Timeframe formatter: timeframe-yesterday",
1915
- "translation": "Yesterday"
1989
+ "translation": "Yesterday",
1990
+ "notes": "Timeframe formatter: timeframe-yesterday"
1916
1991
  },
1917
1992
  "rR+xf1BGWvDgZVww": {
1918
1993
  "translation": "Detail View"
1919
1994
  },
1920
1995
  "rfUQCaEOsY282TT4": {
1921
- "notes": "Filter field invalid key error",
1922
- "translation": "Invalid filter key."
1996
+ "translation": "Invalid filter key.",
1997
+ "notes": "Filter field invalid key error"
1923
1998
  },
1924
1999
  "rilMmuTx1q34cH6K": {
1925
- "notes": "Label for the Configure notifications menu item",
1926
- "translation": "Configure notifications"
2000
+ "translation": "Configure notifications",
2001
+ "notes": "Label for the Configure notifications menu item"
1927
2002
  },
1928
2003
  "rivnln20bnbWI1vP": {
1929
- "notes": "Aria label for DataTable cell actions trigger",
1930
- "translation": "Trigger cell actions"
2004
+ "translation": "Trigger cell actions",
2005
+ "notes": "Aria label for DataTable cell actions trigger"
1931
2006
  },
1932
2007
  "rm7eAPvUS8J1G8TZ": {
1933
- "notes": "Error message shown if the to value of a timeframe is invalid",
1934
- "translation": "The 'to' field is invalid."
2008
+ "translation": "The 'to' field is invalid.",
2009
+ "notes": "Error message shown if the to value of a timeframe is invalid"
1935
2010
  },
1936
2011
  "rrkUQoVNb46Jbd/8": {
1937
- "notes": "Default placeholder for the number input.",
1938
- "translation": "Add number"
2012
+ "translation": "Add number",
2013
+ "notes": "Default placeholder for the number input."
1939
2014
  },
1940
2015
  "s/C94DAW5sfrWYkU": {
1941
- "notes": "Message shown if the ends-with operator can be used with the current value.",
1942
- "translation": "Ends with {value}"
2016
+ "translation": "Ends with {value}",
2017
+ "notes": "Message shown if the ends-with operator can be used with the current value."
1943
2018
  },
1944
2019
  "sAS3aHsvApXTajqr": {
1945
- "notes": "Timeframe formatter: timeframe-now",
1946
- "translation": "Now"
2020
+ "translation": "Now",
2021
+ "notes": "Timeframe formatter: timeframe-now"
1947
2022
  },
1948
2023
  "sGxf5yRVhyC8Fpo/": {
1949
- "notes": "End of timeframe",
1950
- "translation": "End time"
2024
+ "translation": "End time",
2025
+ "notes": "End of timeframe"
1951
2026
  },
1952
2027
  "sI/bFgg4u46KiHYZ": {
1953
- "notes": "Text in between the from/to value displayed in the tooltip for the xy chart rect series",
1954
- "translation": ""
2028
+ "translation": "",
2029
+ "notes": "Text in between the from/to value displayed in the tooltip for the xy chart rect series"
1955
2030
  },
1956
2031
  "sITxaoPwIvMbTOY3": {
1957
- "notes": "Timeframe duration formatter: move-absolute-date",
1958
- "translation": "{years, select, 0 {} other {{years, plural, one {# year } other {# years }}}}{months, select, 0 {} other {{months, plural, one {# month } other {# months }}}}{days, select, 0 {} other {{days, plural, one {# day } other {# days }}}}{hours, select, 0 {} other {{hours, plural, one {# hour } other {# hours }}}}{minutes, select, 0 {} other {{minutes, plural, one {# minute } other {# minutes }}}}{seconds, select, 0 {} other {{seconds, plural, one {# second } other {# seconds }}}}{milliseconds, select, 0 {} other {{milliseconds, plural, one {# millisecond } other {# milliseconds }}}}"
2032
+ "translation": "{years, select, 0 {} other {{years, plural, one {# year } other {# years }}}}{months, select, 0 {} other {{months, plural, one {# month } other {# months }}}}{days, select, 0 {} other {{days, plural, one {# day } other {# days }}}}{hours, select, 0 {} other {{hours, plural, one {# hour } other {# hours }}}}{minutes, select, 0 {} other {{minutes, plural, one {# minute } other {# minutes }}}}{seconds, select, 0 {} other {{seconds, plural, one {# second } other {# seconds }}}}{milliseconds, select, 0 {} other {{milliseconds, plural, one {# millisecond } other {# milliseconds }}}}",
2033
+ "notes": "Timeframe duration formatter: move-absolute-date"
1959
2034
  },
1960
2035
  "sJeuQTGrzcMvd6fY": {
1961
- "notes": "Error message for input that is shorter than the minLength.",
1962
- "translation": "Please lengthen this text to {minLength} characters or more."
2036
+ "translation": "Please lengthen this text to {minLength} characters or more.",
2037
+ "notes": "Error message for input that is shorter than the minLength."
1963
2038
  },
1964
2039
  "sml/MjQVnkAeawyF": {
1965
- "notes": "Text label for the coordinates value in the geo map tooltip. Displayed when hovering over geo map layers.",
1966
- "translation": "Coordinates"
2040
+ "translation": "Coordinates",
2041
+ "notes": "Text label for the coordinates value in the geo map tooltip. Displayed when hovering over geo map layers."
1967
2042
  },
1968
2043
  "stPGS1LgPweLqQcm": {
1969
- "notes": "Invalid value error for timestamp type",
1970
- "translation": "Invalid filter value. Only timestamps in ISO8601 format are supported for this key."
2044
+ "translation": "Invalid filter value. Only timestamps in ISO8601 format are supported for this key.",
2045
+ "notes": "Invalid value error for timestamp type"
1971
2046
  },
1972
2047
  "supuOfI2cSrNKOZ/": {
1973
- "notes": "Given from value is invalid",
1974
- "translation": "Invalid start time. Expected format: {expectedFormat}, -2h or -2d@d"
2048
+ "translation": "Invalid start time. Expected format: {expectedFormat}, -2h or -2d@d",
2049
+ "notes": "Given from value is invalid"
1975
2050
  },
1976
2051
  "swS1rIU8VQep1PDq": {
1977
- "notes": "Default aria label for the filter field",
1978
- "translation": "Filter field"
2052
+ "translation": "Filter field",
2053
+ "notes": "Default aria label for the filter field"
1979
2054
  },
1980
2055
  "tC4AzRIolPCwyigk": {
1981
- "notes": "Filter field invalid inclusion value",
1982
- "translation": "The 'in' operator requires values to be wrapped in brackets, separated by a comma."
2056
+ "translation": "The 'in' operator requires values to be wrapped in brackets, separated by a comma.",
2057
+ "notes": "Filter field invalid inclusion value"
1983
2058
  },
1984
2059
  "tChYdhQqWeoYUZrd": {
1985
- "notes": "Filter field contains operator description",
1986
- "translation": "Contains"
2060
+ "translation": "Contains",
2061
+ "notes": "Filter field contains operator description"
1987
2062
  },
1988
2063
  "tDvUEsdbUj+XNZTR": {
1989
- "notes": "Label for downloading all table rows",
1990
- "translation": "All"
2064
+ "translation": "All",
2065
+ "notes": "Label for downloading all table rows"
1991
2066
  },
1992
2067
  "tT1Q91yIBC2+wpsM": {
1993
- "notes": "Aria-label for selecting current page size.",
1994
- "translation": "Select page size"
2068
+ "translation": "Select page size",
2069
+ "notes": "Aria-label for selecting current page size."
1995
2070
  },
1996
2071
  "tfHTZkRc7sr/Ypcl": {
1997
- "notes": "End value is missing.",
1998
- "translation": "Please enter an end time."
2072
+ "translation": "Please enter an end time.",
2073
+ "notes": "End value is missing."
1999
2074
  },
2000
2075
  "tgL6QEjmq+ArASFk": {
2001
- "notes": "Text in a tooltip shown when hovering the password input icon to show the password",
2002
- "translation": "Show password"
2076
+ "translation": "Show password",
2077
+ "notes": "Text in a tooltip shown when hovering the password input icon to show the password"
2003
2078
  },
2004
2079
  "tjTPi9AKvehOhky2": {
2005
- "notes": "Text used for the notify button toast content text",
2006
- "translation": "No permission to turn {notificationEnabled, select, true {off} other {on}} notifications"
2080
+ "translation": "No permission to turn {notificationEnabled, select, true {off} other {on}} notifications",
2081
+ "notes": "Text used for the notify button toast content text"
2007
2082
  },
2008
2083
  "tw9ulrSgegYXHq69": {
2009
- "notes": "Label for the current match position",
2010
- "translation": "Match {current} of {total}"
2084
+ "translation": "Match {current} of {total}",
2085
+ "notes": "Label for the current match position"
2011
2086
  },
2012
2087
  "tznlZbNaiUJ1dPqb": {
2013
- "notes": "Column settings modal title",
2014
- "translation": "Columns"
2088
+ "translation": "Columns",
2089
+ "notes": "Column settings modal title"
2090
+ },
2091
+ "u0KgUM/9t1gS7DB9": {
2092
+ "translation": "Filter Dependencies"
2015
2093
  },
2016
2094
  "u55UYpLvXi//xGEn": {
2017
- "notes": "Link text to segments app in empty state message if no variables for the segment are available.",
2018
- "translation": "settings"
2095
+ "translation": "settings",
2096
+ "notes": "Link text to segments app in empty state message if no variables for the segment are available."
2019
2097
  },
2020
2098
  "u5xmuzxNDovVbbQX": {
2021
- "notes": "Text in a tooltip shown when hovering the \"Download data\" button in the time series chart toolbar",
2022
- "translation": "Download as CSV"
2099
+ "translation": "Download as CSV",
2100
+ "notes": "Text in a tooltip shown when hovering the \"Download data\" button in the time series chart toolbar"
2023
2101
  },
2024
2102
  "uCbwlgMp2BNGzNro": {
2025
- "notes": "Text for the unpin button of a segment preset.",
2026
- "translation": "Unpin"
2103
+ "translation": "Unpin",
2104
+ "notes": "Text for the unpin button of a segment preset."
2027
2105
  },
2028
2106
  "uDo0yY4voNQ3eiN7": {
2029
- "notes": "Text in a tooltip shown when hovering the expanded toolbar's menu button in the time series chart toolbar",
2030
- "translation": "Change mode"
2107
+ "translation": "Change mode",
2108
+ "notes": "Text in a tooltip shown when hovering the expanded toolbar's menu button in the time series chart toolbar"
2109
+ },
2110
+ "uIY0S6+5RUL68Rsd": {
2111
+ "translation": "Displaying more than {limit} {limit, plural, one {column} other {columns}} is not allowed.",
2112
+ "notes": "Error message shown in column settings modal when the number of visible columns exceeds the error threshold."
2031
2113
  },
2032
2114
  "ut5dPv/qM9qMEW4a": {
2033
- "notes": "Error message shown when the Input in the FilterField has an invalid syntax.",
2034
- "translation": "Invalid syntax."
2115
+ "translation": "Invalid syntax.",
2116
+ "notes": "Error message shown when the Input in the FilterField has an invalid syntax."
2035
2117
  },
2036
2118
  "uuhhc3nEZptwtV2E": {
2037
- "notes": "Textbox to enter a relative or absolute timeframe to value.",
2038
- "translation": "DateTime to"
2119
+ "translation": "DateTime to",
2120
+ "notes": "Textbox to enter a relative or absolute timeframe to value."
2039
2121
  },
2040
2122
  "vEoSirMyZ5RMVdsR": {
2041
- "notes": "Timeframe formatter: timeframe-roundDown-hour",
2042
- "translation": "{prefix, select, previous {Previous} next {Next} other {This}} {amount, plural, one {hour} other {# hours}}"
2123
+ "translation": "{prefix, select, previous {Previous} next {Next} other {This}} {amount, plural, one {hour} other {# hours}}",
2124
+ "notes": "Timeframe formatter: timeframe-roundDown-hour"
2043
2125
  },
2044
2126
  "vJ/eXvQ9OL/qVOcs": {
2045
- "notes": "Filter field less than or equal operator description",
2046
- "translation": "Less than or equal to"
2127
+ "translation": "Less than or equal to",
2128
+ "notes": "Filter field less than or equal operator description"
2047
2129
  },
2048
2130
  "vMt3ZRHwBods5xzM": {
2049
- "notes": "Text in a tooltip shown when hovering the password input icon to hide the password",
2050
- "translation": "Hide password"
2131
+ "translation": "Hide password",
2132
+ "notes": "Text in a tooltip shown when hovering the password input icon to hide the password"
2051
2133
  },
2052
2134
  "vN/5FvuU1Cfk1/Ep": {
2053
- "notes": "Empty state message shown if no suggestions can be found.",
2054
- "translation": "No matching suggestions found."
2135
+ "translation": "No matching suggestions found.",
2136
+ "notes": "Empty state message shown if no suggestions can be found."
2137
+ },
2138
+ "vkJWCbh6wLAsnHfT": {
2139
+ "translation": "Built with"
2055
2140
  },
2056
2141
  "vwffeGCYNgFdxEUq": {
2057
- "notes": "Label for timestamp type used in mixed type error messages",
2058
- "translation": "timestamp"
2142
+ "translation": "timestamp",
2143
+ "notes": "Label for timestamp type used in mixed type error messages"
2059
2144
  },
2060
2145
  "wJb5aQ8q06TidoIt": {
2061
- "notes": "Tooltip information for the toolbar menu button",
2062
- "translation": "More options"
2146
+ "translation": "More options",
2147
+ "notes": "Tooltip information for the toolbar menu button"
2063
2148
  },
2064
2149
  "wa4ct2vRPvqd0Uif": {
2065
- "notes": "The aria label for the millisecond input of a time.",
2066
- "translation": "{prefix}millisecond"
2150
+ "translation": "{prefix}millisecond",
2151
+ "notes": "The aria label for the millisecond input of a time."
2067
2152
  },
2068
2153
  "wjx6xe/Gmj4hLt7b": {
2069
- "notes": "Text in a tooltip shown when hovering the \"Pan\" mode in the chart toolbar",
2070
- "translation": "Pan mode"
2154
+ "translation": "Pan mode",
2155
+ "notes": "Text in a tooltip shown when hovering the \"Pan\" mode in the chart toolbar"
2071
2156
  },
2072
2157
  "wtm8N4m0hully7OX": {
2073
- "notes": "Display text for segment variable values that are an empty string.",
2074
- "translation": "Empty value"
2158
+ "translation": "Empty value",
2159
+ "notes": "Display text for segment variable values that are an empty string."
2075
2160
  },
2076
2161
  "x2bmZRg98b0KodlW": {
2077
2162
  "translation": "Breadcrumb"
2078
2163
  },
2079
2164
  "x3FIfL6niq1MnAvw": {
2080
- "notes": "Text used for the notify button overlay/tost content text",
2081
- "translation": "Copy and share missing permissions with your admin"
2165
+ "translation": "Copy and share missing permissions with your admin",
2166
+ "notes": "Text used for the notify button overlay/tost content text"
2082
2167
  },
2083
2168
  "xFQW8ah15nm5hjiI": {
2084
- "notes": "Message to display for the total count of selected rows.",
2085
- "translation": "selected"
2169
+ "translation": "selected",
2170
+ "notes": "Message to display for the total count of selected rows."
2086
2171
  },
2087
2172
  "xHrhU3DP4e0nge7c": {
2088
2173
  "translation": "Help"
2089
2174
  },
2090
2175
  "xT9m8P49DpYVR1pg": {
2091
- "notes": "Default placeholder for code editor when the language is TypeScript.",
2092
- "translation": "Add TypeScript"
2176
+ "translation": "Add TypeScript",
2177
+ "notes": "Default placeholder for code editor when the language is TypeScript."
2093
2178
  },
2094
2179
  "xYagPfCP0AY72G3+": {
2095
- "notes": "Show or hide all checkbox label",
2096
- "translation": "Show/hide all"
2180
+ "translation": "Show/hide all",
2181
+ "notes": "Show or hide all checkbox label"
2097
2182
  },
2098
2183
  "xcSpnebtYoA/jEJY": {
2099
- "notes": "Default placeholder for email input.",
2100
- "translation": "Add email"
2184
+ "translation": "Add email",
2185
+ "notes": "Default placeholder for email input."
2101
2186
  },
2102
2187
  "xdkxTaZ7SAkarRJX": {
2103
- "notes": "Text label for the segment in the tooltip. Displayed when hovering over Meterbar chart.",
2104
- "translation": "Segment"
2188
+ "translation": "Segment",
2189
+ "notes": "Text label for the segment in the tooltip. Displayed when hovering over Meterbar chart."
2105
2190
  },
2106
2191
  "xjwKUTJHlmtA/V/n": {
2107
- "notes": "Default placeholder for phone number input.",
2108
- "translation": "Add phone number"
2192
+ "translation": "Add phone number",
2193
+ "notes": "Default placeholder for phone number input."
2109
2194
  },
2110
2195
  "y6H3/FIKpIl6XBRA": {
2111
- "notes": "Text label for the location series header in the geo map tooltip. Displayed when hovering over geo map layers.",
2112
- "translation": "Location"
2196
+ "translation": "Location",
2197
+ "notes": "Text label for the location series header in the geo map tooltip. Displayed when hovering over geo map layers."
2113
2198
  },
2114
2199
  "yBhOkj2PXbKg2Tjc": {
2115
- "notes": "Invalid value error for duration type",
2116
- "translation": "Invalid filter value. Only durations are supported as values for this key, for example, '200ms'."
2200
+ "translation": "Invalid filter value. Only durations are supported as values for this key, for example, '200ms'.",
2201
+ "notes": "Invalid value error for duration type"
2117
2202
  },
2118
2203
  "yJBeHrP0dl2h/JIx": {
2119
- "notes": "Message for an empty search result in the segment select.",
2120
- "translation": "No matching segments found. If you’re looking for a segment value, select the segment first."
2204
+ "translation": "No matching segments found. If you’re looking for a segment value, select the segment first.",
2205
+ "notes": "Message for an empty search result in the segment select."
2121
2206
  },
2122
2207
  "yPyYlsR+hsqOmSHt": {
2123
- "notes": "Title for generic error toast",
2124
- "translation": "Error"
2208
+ "translation": "Error",
2209
+ "notes": "Title for generic error toast"
2125
2210
  },
2126
2211
  "yRTBrmuLLhgDytyG": {
2127
- "notes": "Text in the column action item for enabling line wrap for the column.",
2128
- "translation": "Enable line wrap"
2212
+ "translation": "Enable line wrap",
2213
+ "notes": "Text in the column action item for enabling line wrap for the column."
2129
2214
  },
2130
2215
  "ylJmm6+j/5dJx8/1": {
2131
- "notes": "Text used for the notify button overlay heading",
2132
- "translation": "Notifications are turned {notificationEnabled, select, true {on} other {off}}"
2216
+ "translation": "Notifications are turned {notificationEnabled, select, true {on} other {off}}",
2217
+ "notes": "Text used for the notify button overlay heading"
2133
2218
  },
2134
2219
  "ymTPa3UIE2oxpoEr": {
2135
- "notes": "Aria-label for menu trigger for collapsed resource links on mobile.",
2136
- "translation": "Open to find further resources"
2220
+ "translation": "Open to find further resources",
2221
+ "notes": "Aria-label for menu trigger for collapsed resource links on mobile."
2137
2222
  },
2138
2223
  "z5mvEP+L6qdzvis2": {
2139
- "notes": "Key shortcut in a tooltip shown when hovering the \"Zoom out\" action in xy chart toolbar",
2140
- "translation": "Down"
2224
+ "translation": "Down",
2225
+ "notes": "Key shortcut in a tooltip shown when hovering the \"Zoom out\" action in xy chart toolbar"
2141
2226
  },
2142
2227
  "z6Q99ieTCziyTcca": {
2143
- "notes": "Text in the menu item for pinning the column to the left.",
2144
- "translation": "Pin left"
2228
+ "translation": "Pin left",
2229
+ "notes": "Text in the menu item for pinning the column to the left."
2145
2230
  },
2146
2231
  "zO6bZxirK3VNMSDB": {
2147
- "notes": "Text label displayed in the tooltip footer when the tooltip is not pinned, prompting the user to pin it.",
2148
- "translation": "Pin to access actions"
2232
+ "translation": "Pin to access actions",
2233
+ "notes": "Text label displayed in the tooltip footer when the tooltip is not pinned, prompting the user to pin it."
2149
2234
  },
2150
2235
  "zSm9YklUFyPurvQU": {
2151
- "notes": "Screen reader announcement introducing the list of available filter suggestions.",
2152
- "translation": "Available suggestions:"
2236
+ "translation": "Available suggestions:",
2237
+ "notes": "Screen reader announcement introducing the list of available filter suggestions."
2153
2238
  },
2154
2239
  "zX4r/Y8gJL1C8+5e": {
2155
- "notes": "Aria label for the DateTimeRangePicker clear button.",
2156
- "translation": "Clear date and time range"
2240
+ "translation": "Clear date and time range",
2241
+ "notes": "Aria label for the DateTimeRangePicker clear button."
2157
2242
  },
2158
2243
  "zfKEZtJ/4td7IY+1": {
2159
- "notes": "Text in a tooltip shown when hovering the \"Reset\" action in the xy chart toolbar",
2160
- "translation": "Reset"
2244
+ "translation": "Reset",
2245
+ "notes": "Text in a tooltip shown when hovering the \"Reset\" action in the xy chart toolbar"
2161
2246
  },
2162
2247
  "zgKXUXme0dmc9SsD": {
2163
- "notes": "Column action menu item for multi-sorting a column in descending order.",
2164
- "translation": "Add as descending"
2248
+ "translation": "Add as descending",
2249
+ "notes": "Column action menu item for multi-sorting a column in descending order."
2165
2250
  },
2166
2251
  "znJQdrgHo0UbGJLV": {
2167
- "notes": "Timeframe formatter: timeframe-roundDown-second",
2168
- "translation": "{prefix, select, previous {Previous} next {Next} other {This}} {amount, plural, one {second} other {# seconds}}"
2252
+ "translation": "{prefix, select, previous {Previous} next {Next} other {This}} {amount, plural, one {second} other {# seconds}}",
2253
+ "notes": "Timeframe formatter: timeframe-roundDown-second"
2169
2254
  }
2170
2255
  }