semiotic 3.0.0-beta.4 → 3.0.0-beta.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/CLAUDE.md +81 -126
- package/README.md +6 -3
- package/ai/cli.js +72 -0
- package/dist/CategoryColors.d.ts +48 -0
- package/dist/ChartGrid.d.ts +37 -0
- package/dist/ContextLayout.d.ts +38 -0
- package/dist/charts/index.d.ts +2 -0
- package/dist/charts/shared/statisticalOverlays.d.ts +76 -0
- package/dist/charts/shared/types.d.ts +4 -0
- package/dist/charts/shared/validateChartData.d.ts +3 -0
- package/dist/charts/shared/withChartWrapper.d.ts +18 -0
- package/dist/charts/xy/AreaChart.d.ts +22 -1
- package/dist/charts/xy/ConnectedScatterplot.d.ts +60 -0
- package/dist/charts/xy/LineChart.d.ts +12 -0
- package/dist/network.min.js +1 -1
- package/dist/network.module.min.js +1 -1
- package/dist/ordinal.min.js +1 -1
- package/dist/ordinal.module.min.js +1 -1
- package/dist/realtime.min.js +1 -1
- package/dist/realtime.module.min.js +1 -1
- package/dist/semiotic-ai.d.ts +8 -0
- package/dist/semiotic-ai.min.js +1 -1
- package/dist/semiotic-ai.module.min.js +1 -1
- package/dist/semiotic-data.min.js +1 -1
- package/dist/semiotic-data.module.min.js +1 -1
- package/dist/semiotic-xy.d.ts +1 -0
- package/dist/semiotic.d.ts +9 -3
- package/dist/semiotic.min.js +1 -1
- package/dist/semiotic.module.min.js +1 -1
- package/dist/server.min.js +1 -1
- package/dist/server.module.min.js +1 -1
- package/dist/stream/DataSourceAdapter.d.ts +3 -0
- package/dist/stream/PipelineStore.d.ts +6 -0
- package/dist/stream/SceneGraph.d.ts +1 -1
- package/dist/stream/keyboardNav.d.ts +39 -0
- package/dist/stream/networkTypes.d.ts +2 -0
- package/dist/stream/ordinalTypes.d.ts +2 -0
- package/dist/stream/types.d.ts +24 -0
- package/dist/stream/useResponsiveSize.d.ts +10 -0
- package/dist/xy.min.js +1 -1
- package/dist/xy.module.min.js +1 -1
- package/package.json +6 -2
package/dist/semiotic-ai.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ export { LineChart } from "./charts/xy/LineChart";
|
|
|
2
2
|
export { AreaChart } from "./charts/xy/AreaChart";
|
|
3
3
|
export { StackedAreaChart } from "./charts/xy/StackedAreaChart";
|
|
4
4
|
export { Scatterplot } from "./charts/xy/Scatterplot";
|
|
5
|
+
export { ConnectedScatterplot } from "./charts/xy/ConnectedScatterplot";
|
|
5
6
|
export { BubbleChart } from "./charts/xy/BubbleChart";
|
|
6
7
|
export { Heatmap } from "./charts/xy/Heatmap";
|
|
7
8
|
export { ScatterplotMatrix } from "./charts/xy/ScatterplotMatrix";
|
|
@@ -35,10 +36,17 @@ export { ThemeProvider, useTheme } from "./ThemeProvider";
|
|
|
35
36
|
export { exportChart } from "./export/exportChart";
|
|
36
37
|
export { ChartContainer } from "./ChartContainer";
|
|
37
38
|
export type { ChartContainerProps, ChartContainerHandle } from "./ChartContainer";
|
|
39
|
+
export { ChartGrid } from "./ChartGrid";
|
|
40
|
+
export type { ChartGridProps } from "./ChartGrid";
|
|
41
|
+
export { ContextLayout } from "./ContextLayout";
|
|
42
|
+
export type { ContextLayoutProps } from "./ContextLayout";
|
|
43
|
+
export { CategoryColorProvider, useCategoryColors } from "./CategoryColors";
|
|
44
|
+
export type { CategoryColorMap, CategoryColorProviderProps } from "./CategoryColors";
|
|
38
45
|
export { DetailsPanel } from "./DetailsPanel";
|
|
39
46
|
export type { DetailsPanelProps } from "./DetailsPanel";
|
|
40
47
|
export { validateProps } from "./charts/shared/validateProps";
|
|
41
48
|
export type { ValidationResult } from "./charts/shared/validateProps";
|
|
49
|
+
export type { AnomalyConfig, ForecastConfig } from "./charts/shared/statisticalOverlays";
|
|
42
50
|
export { toConfig, fromConfig, toURL, fromURL, copyConfig, configToJSX } from "./export/chartConfig";
|
|
43
51
|
export type { ChartConfig, ToConfigOptions, CopyFormat } from "./export/chartConfig";
|
|
44
52
|
export { serializeSelections, deserializeSelections } from "./export/selectionSerializer";
|