@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.
- package/dist/{colors-C7lR_GcP.d.ts → colors-DCZIiIJc.d.ts} +4 -1
- package/dist/{colors-mGINWEDU.d.cts → colors-ZWoPd9Xl.d.cts} +4 -1
- package/dist/index.cjs +9 -9
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +9 -9
- package/dist/index.js.map +1 -1
- package/dist/server.d.cts +1 -1
- package/dist/server.d.ts +1 -1
- package/package.json +1 -1
|
@@ -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 {
|