@juspay/svelte-ui-components 2.85.0 → 2.87.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.
@@ -167,6 +167,12 @@ export type OptionalBarChartProperties = {
167
167
  * thumbnails alongside a full chart.
168
168
  */
169
169
  hideBarGraphics?: boolean;
170
+ /** Legend items become click/keyboard toggles for series visibility. */
171
+ interactiveLegend?: boolean;
172
+ /** Hide the legend when the measured chart width is below this px value; 0 disables. */
173
+ hideLegendBelow?: number;
174
+ /** Render the tooltip into document.body (position:fixed) so scroll/overflow ancestors never clip it. */
175
+ tooltipPortal?: boolean;
170
176
  testId?: string;
171
177
  classes?: string;
172
178
  };