@univerjs-pro/engine-chart 0.15.0-insiders.20260106-79b11f9 → 0.15.0-insiders.20260107-3d1cfdf
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/lib/cjs/index.js +1 -1
- package/lib/es/index.js +1 -1
- package/lib/index.js +1 -1
- package/lib/types/index.d.ts +1 -1
- package/lib/types/model/mode-converter/converters/word-cloud-converter.d.ts +1 -0
- package/lib/types/utils/echarts.d.ts +1 -1
- package/lib/umd/index.js +1 -1
- package/package.json +3 -3
package/lib/types/index.d.ts
CHANGED
|
@@ -19,5 +19,5 @@ export { StaticChartSource } from './source/static-chart-source';
|
|
|
19
19
|
export type { DimensionDefinitionLoose, IChartDataSource, IDimensionDefinition, IUniverDataSet, OptionDataValue, } from './types';
|
|
20
20
|
export type { ChartDataSourceValue, ChartDataSourceValues, ChartStyle, DeepPartial, IAllSeriesStyle, IAxisOptions, IChartConfig, IChartContext, IChartData, IChartDataAggregation, IChartDataCategory, IChartDataSeries, IChartHostRect, IChartInstance, IChartRenderModel, IChartSnapshot, IChartStyle, IGridLineStyle, ILabelStyle, ILegendStyle, IPieLabelStyle, IPointStyle, IRelationForceOptions, IRuntimeAxis, ISeriesLabelStyle, ISeriesStyle, ITrendLine, RightYAxisOptions, } from './types';
|
|
21
21
|
export { chartBitsUtils, chartTypeCanUseTrendLine } from './util';
|
|
22
|
-
export
|
|
22
|
+
export * from './utils/echarts';
|
|
23
23
|
export { WordCloudResourceConfig } from './word-cloud-resource/word-cloud-resource-config';
|
|
@@ -69,6 +69,7 @@ export interface IWordCloudSeriesOption {
|
|
|
69
69
|
gridSize?: number;
|
|
70
70
|
drawOutOfBound?: boolean;
|
|
71
71
|
layoutAnimation?: boolean;
|
|
72
|
+
keepAspect?: boolean;
|
|
72
73
|
data?: IWorldCloudDataItem[];
|
|
73
74
|
}
|
|
74
75
|
export declare const wordCloudChartConverter: IChartRenderSpecConverter<EChartSpec>;
|
|
@@ -13,4 +13,4 @@ export declare const echarts: {
|
|
|
13
13
|
registerPreprocessor: typeof registerPreprocessor;
|
|
14
14
|
util: typeof util;
|
|
15
15
|
};
|
|
16
|
-
export type { BarSeriesOption, DatasetComponentOption, ECharts, EChartsOption, FunnelSeriesOption, LegendComponentOption, LineSeriesOption, XAXisComponentOption, } from 'echarts';
|
|
16
|
+
export type { BarSeriesOption, DatasetComponentOption, ECharts, EChartsInitOpts, EChartsOption, FunnelSeriesOption, LegendComponentOption, LineSeriesOption, XAXisComponentOption, } from 'echarts';
|