@univerjs-pro/engine-chart 0.10.1 → 0.10.2-nightly.202508080617
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 +12 -12
- package/lib/umd/index.js +1 -1
- package/package.json +4 -4
package/lib/types/index.d.ts
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
|
-
export {
|
|
2
|
-
export type { IChartModelInitParams } from './model/mode-converter/mode-converter';
|
|
3
|
-
export type { DimensionDefinitionLoose, IChartDataSource, IDimensionDefinition, IUniverDataSet, OptionDataValue, } from './types';
|
|
4
|
-
export { ChartModel } from './model/chart-model';
|
|
1
|
+
export { AreaLineStyle, AxisAlignEnum, AxisValueType, CategoryType, ChartAttributeBits, ChartBorderDashType, ChartSourceDataTypeEnum, ChartTrendlineType, ChartTypeBits, DataOrientation, InvalidValueType, IRuntimeAxisPosition, IRuntimeAxisPriority, LabelAlignEnum, LabelContentType, LegendPositionEnum, LinePointShape, PieLabelPosition, RadarShape, RelationChartLayoutEnum, SelectModeEnum, SeriesLabelPosition, StackType, TextAlign, TextVerticalAlign, TitlePositionEnum, WaterfallSeriesTypeEnum, WaterfallStackTypeEnum, WordCloudShapeEnum, } from './enum';
|
|
5
2
|
export { buildChartData } from './model/chart-data-operators/build-chart-data';
|
|
6
3
|
export { findCategoryIndexes, findCategoryOperator, findHeaderOperator, findSeriesOperator, pieSeriesFilterOperator } from './model/chart-data-operators/operators';
|
|
4
|
+
export { ChartModel } from './model/chart-model';
|
|
5
|
+
export { CHART_DEBOUNCE_TIME } from './model/chart-model';
|
|
6
|
+
export { ChartThemeService, registerChartThemeService } from './model/chart-theme.service';
|
|
7
7
|
export { getThemeAxesByType } from './model/constants/build-in-theme';
|
|
8
8
|
export { themeDefault, UniverTheme1, UniverTheme2, UniverTheme3, UniverTheme4, UniverTheme5, UniverTheme6, UniverThemeGradient1, UniverThemeGradient2, UniverThemeGradient3, UniverThemeGradient4, UniverThemeGradient5, UniverThemeGradient6, } from './model/constants/build-in-theme';
|
|
9
9
|
export type { IEchartTheme } from './model/constants/build-in-theme';
|
|
10
|
-
export { ChartThemeService, registerChartThemeService } from './model/chart-theme.service';
|
|
11
|
-
export { registerWordCloudChartMakImageService, WordCloudMuskImageService } from './model/word-cloud-musk-image.service';
|
|
12
|
-
export { defaultChartConfig, themeColors } from './model/constants/default-chart-style';
|
|
13
10
|
export { getThemeProps } from './model/constants/build-in-theme';
|
|
14
|
-
export {
|
|
15
|
-
export { chartBitsUtils, chartTypeCanUseTrendLine } from './util';
|
|
16
|
-
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';
|
|
11
|
+
export { defaultChartConfig, themeColors } from './model/constants/default-chart-style';
|
|
17
12
|
export { EChartRenderModel } from './model/echart-render-model';
|
|
18
|
-
export { convertModelFromInitData, convertModelToSpec, generateChartModelContext } from './model/mode-converter/mode-converter';
|
|
19
13
|
export { echartToChartModelInit, isChartModelInit } from './model/echart-to-chart-model-init';
|
|
14
|
+
export type { IChartModelInitParams } from './model/mode-converter/mode-converter';
|
|
15
|
+
export { convertModelFromInitData, convertModelToSpec, generateChartModelContext } from './model/mode-converter/mode-converter';
|
|
16
|
+
export { registerWordCloudChartMakImageService, WordCloudMuskImageService } from './model/word-cloud-musk-image.service';
|
|
17
|
+
export { ChartDataSource } from './source/chart-source';
|
|
20
18
|
export { StaticChartSource } from './source/static-chart-source';
|
|
19
|
+
export type { DimensionDefinitionLoose, IChartDataSource, IDimensionDefinition, IUniverDataSet, OptionDataValue, } from './types';
|
|
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
|
+
export { chartBitsUtils, chartTypeCanUseTrendLine } from './util';
|
|
21
22
|
export { WordCloudResourceConfig } from './word-cloud-resource/word-cloud-resource-config';
|
|
22
|
-
export { CHART_DEBOUNCE_TIME } from './model/chart-model';
|