@polastack/design-system 0.1.29 → 0.1.30

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -873,6 +873,8 @@ declare function getChartTheme(): {
873
873
  textColor: string;
874
874
  tooltipBg: string;
875
875
  tooltipBorder: string;
876
+ /** Hover cursor fill — theme-aware for dark mode */
877
+ cursorFill: string;
876
878
  fontSize: number;
877
879
  fontFamily: string;
878
880
  };
package/dist/index.js CHANGED
@@ -4364,6 +4364,8 @@ function getChartTheme() {
4364
4364
  textColor: cssVar("--color-neutral-500", chartColors.text.light),
4365
4365
  tooltipBg: cssVar("--color-surface-raised", "#ffffff"),
4366
4366
  tooltipBorder: cssVar("--color-border", "#e4e4e7"),
4367
+ /** Hover cursor fill — theme-aware for dark mode */
4368
+ cursorFill: cssVar("--color-surface-muted", "#f4f4f5"),
4367
4369
  fontSize: 12,
4368
4370
  fontFamily: 'Inter, "Noto Sans JP", sans-serif'
4369
4371
  };