@texturehq/edges 5.1.5 → 5.1.6

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.
@@ -1247,9 +1247,12 @@ interface ChartContextType {
1247
1247
  categoryColors?: Record<string, string>;
1248
1248
  /** Category labels for translating category values */
1249
1249
  categoryLabels?: Record<string, string>;
1250
+ /** Set by the engines: whether the chart has already played its entrance (see `useChartEntrance`). */
1251
+ entrance?: {
1252
+ played: boolean;
1253
+ };
1250
1254
  }
1251
1255
  declare const ChartContext: React$1.Context<ChartContextType | null>;
1252
-
1253
1256
  declare const useChartContext: () => ChartContextType;
1254
1257
 
1255
1258
  interface BaseDataPoint {
@@ -1247,9 +1247,12 @@ interface ChartContextType {
1247
1247
  categoryColors?: Record<string, string>;
1248
1248
  /** Category labels for translating category values */
1249
1249
  categoryLabels?: Record<string, string>;
1250
+ /** Set by the engines: whether the chart has already played its entrance (see `useChartEntrance`). */
1251
+ entrance?: {
1252
+ played: boolean;
1253
+ };
1250
1254
  }
1251
1255
  declare const ChartContext: React$1.Context<ChartContextType | null>;
1252
-
1253
1256
  declare const useChartContext: () => ChartContextType;
1254
1257
 
1255
1258
  interface BaseDataPoint {