@univerjs-pro/engine-chart 0.25.1 → 1.0.0-alpha.1
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/enum.d.ts +3 -0
- package/lib/types/index.d.ts +23 -20
- package/lib/types/{model → models}/chart-data-operators/operators.d.ts +6 -10
- package/lib/types/{model → models}/chart-model.d.ts +152 -115
- package/lib/types/models/chart-runtime-axes.d.ts +38 -0
- package/lib/types/models/chart-runtime-style.d.ts +12 -0
- package/lib/types/{model → models}/constants/default-chart-style.d.ts +4 -2
- package/lib/types/{model → models}/echart-render-model.d.ts +6 -1
- package/lib/types/models/mode-converter/converters/word-cloud-converter.d.ts +2 -0
- package/lib/types/{model → models}/mode-converter/mode-converter.d.ts +2 -2
- package/lib/types/models/mode-converter/render-spec-operators/implicit-category-axis.operator.d.ts +2 -0
- package/lib/types/{model → models}/mode-converter/render-spec-operators/index.d.ts +2 -0
- package/lib/types/models/mode-converter/render-spec-operators/legend-size.d.ts +2 -0
- package/lib/types/models/mode-converter/render-spec-operators/rtl-render-spec.operator.d.ts +2 -0
- package/lib/types/models/mode-converter/render-spec-operators/tool-tip-operator.d.ts +37 -0
- package/lib/types/models/mode-converter/render-spec-operators/tool-tip-renderer.d.ts +15 -0
- package/lib/types/{model → models}/word-cloud-musk-image.service.d.ts +1 -1
- package/lib/types/source/option-data-value.d.ts +3 -0
- package/lib/types/source/source-util.d.ts +2 -2
- package/lib/types/source/static-chart-source.d.ts +1 -0
- package/lib/types/types.d.ts +21 -8
- package/lib/types/util.d.ts +2 -1
- package/lib/types/utils/echarts.d.ts +3 -2
- package/lib/types/word-cloud-resource/word-cloud-shape-resource.d.ts +5 -0
- package/lib/types/wordcloud-chart/adapters/echarts/chart-view.d.ts +7 -0
- package/lib/types/wordcloud-chart/adapters/echarts/echarts-options.d.ts +24 -0
- package/lib/types/wordcloud-chart/adapters/echarts/install.d.ts +4 -0
- package/lib/types/wordcloud-chart/adapters/echarts/layout-register.d.ts +5 -0
- package/lib/types/wordcloud-chart/adapters/echarts/layout.d.ts +82 -0
- package/lib/types/wordcloud-chart/adapters/echarts/render-config.d.ts +57 -0
- package/lib/types/wordcloud-chart/adapters/echarts/series-model.d.ts +7 -0
- package/lib/types/wordcloud-chart/adapters/echarts/text-measurer.d.ts +12 -0
- package/lib/types/wordcloud-chart/adapters/echarts/words.d.ts +47 -0
- package/lib/types/wordcloud-chart/canvas.d.ts +8 -0
- package/lib/types/wordcloud-chart/core/collision/bitset-board.d.ts +45 -0
- package/lib/types/wordcloud-chart/core/collision/box-shape-engine.d.ts +31 -0
- package/lib/types/wordcloud-chart/core/collision/engine.d.ts +67 -0
- package/lib/types/wordcloud-chart/core/collision/failure-cache.d.ts +6 -0
- package/lib/types/wordcloud-chart/core/collision/footprint.d.ts +13 -0
- package/lib/types/wordcloud-chart/core/collision/glyph-shape-engine.d.ts +49 -0
- package/lib/types/wordcloud-chart/core/collision/grid.d.ts +10 -0
- package/lib/types/wordcloud-chart/core/collision/types.d.ts +1 -0
- package/lib/types/wordcloud-chart/core/layout/candidates.d.ts +15 -0
- package/lib/types/wordcloud-chart/core/layout/font-scale.d.ts +66 -0
- package/lib/types/wordcloud-chart/core/layout/layout-config.d.ts +3 -0
- package/lib/types/wordcloud-chart/core/layout/layout.d.ts +4 -0
- package/lib/types/wordcloud-chart/core/layout/phases.d.ts +12 -0
- package/lib/types/wordcloud-chart/core/layout/place-word.d.ts +12 -0
- package/lib/types/wordcloud-chart/core/layout/placement-stats.d.ts +7 -0
- package/lib/types/wordcloud-chart/core/layout/placement-types.d.ts +28 -0
- package/lib/types/wordcloud-chart/core/layout/placement-word-manager.d.ts +23 -0
- package/lib/types/wordcloud-chart/core/layout/rotation.d.ts +10 -0
- package/lib/types/wordcloud-chart/core/layout/runtime-mask.d.ts +6 -0
- package/lib/types/wordcloud-chart/core/layout/search-plan.d.ts +51 -0
- package/lib/types/wordcloud-chart/core/layout/types.d.ts +1 -0
- package/lib/types/wordcloud-chart/core/layout/word-prepare.d.ts +3 -0
- package/lib/types/wordcloud-chart/core/layout/word-shrink.d.ts +39 -0
- package/lib/types/wordcloud-chart/core/random/seed.d.ts +3 -0
- package/lib/types/wordcloud-chart/core/shape/built-in-shapes.d.ts +14 -0
- package/lib/types/wordcloud-chart/core/shape/shape-mask.d.ts +12 -0
- package/lib/types/wordcloud-chart/core/shape/shape-profile.d.ts +20 -0
- package/lib/types/wordcloud-chart/core/shape/sprite-shape.d.ts +19 -0
- package/lib/types/wordcloud-chart/core/shape/types.d.ts +1 -0
- package/lib/types/wordcloud-chart/core/text/formatter.d.ts +2 -0
- package/lib/types/wordcloud-chart/core/text/measure.d.ts +8 -0
- package/lib/types/wordcloud-chart/core/text/normalize.d.ts +2 -0
- package/lib/types/wordcloud-chart/core/text/sprite.d.ts +17 -0
- package/lib/types/wordcloud-chart/core/text/types.d.ts +1 -0
- package/lib/types/wordcloud-chart/core/types/layout.d.ts +81 -0
- package/lib/types/wordcloud-chart/core/types/option.d.ts +1 -0
- package/lib/types/wordcloud-chart/core/types/shape.d.ts +1 -0
- package/lib/types/wordcloud-chart/core/types/word.d.ts +1 -0
- package/lib/types/wordcloud-chart/defaults.d.ts +70 -0
- package/lib/types/wordcloud-chart/echarts.d.ts +2 -0
- package/lib/types/wordcloud-chart/index.d.ts +11 -0
- package/lib/types/wordcloud-chart/types.d.ts +339 -0
- package/lib/types/wordcloud-chart/word-cloud-render-config.d.ts +30 -0
- package/lib/umd/index.js +1 -1
- package/package.json +5 -5
- package/lib/types/model/mode-converter/converters/word-cloud-converter.d.ts +0 -76
- package/lib/types/model/mode-converter/render-spec-operators/tool-tip-operator.d.ts +0 -3
- /package/lib/types/{model → models}/chart-data-operators/build-chart-data.d.ts +0 -0
- /package/lib/types/{model → models}/chart-data-operators/index.d.ts +0 -0
- /package/lib/types/{model → models}/chart-locale-texts.d.ts +0 -0
- /package/lib/types/{model → models}/chart-theme.service.d.ts +0 -0
- /package/lib/types/{model → models}/constants/build-in-theme/default.d.ts +0 -0
- /package/lib/types/{model → models}/constants/build-in-theme/index.d.ts +0 -0
- /package/lib/types/{model → models}/constants/build-in-theme/theme-util.d.ts +0 -0
- /package/lib/types/{model → models}/constants/build-in-theme/types.d.ts +0 -0
- /package/lib/types/{model → models}/constants/build-in-theme/univer-gradient1.d.ts +0 -0
- /package/lib/types/{model → models}/constants/build-in-theme/univer-gradient2.d.ts +0 -0
- /package/lib/types/{model → models}/constants/build-in-theme/univer-gradient3.d.ts +0 -0
- /package/lib/types/{model → models}/constants/build-in-theme/univer-gradient4.d.ts +0 -0
- /package/lib/types/{model → models}/constants/build-in-theme/univer-gradient5.d.ts +0 -0
- /package/lib/types/{model → models}/constants/build-in-theme/univer-gradient6.d.ts +0 -0
- /package/lib/types/{model → models}/constants/build-in-theme/univer1.d.ts +0 -0
- /package/lib/types/{model → models}/constants/build-in-theme/univer2.d.ts +0 -0
- /package/lib/types/{model → models}/constants/build-in-theme/univer3.d.ts +0 -0
- /package/lib/types/{model → models}/constants/build-in-theme/univer4.d.ts +0 -0
- /package/lib/types/{model → models}/constants/build-in-theme/univer5.d.ts +0 -0
- /package/lib/types/{model → models}/constants/build-in-theme/univer6.d.ts +0 -0
- /package/lib/types/{model → models}/constants/default.d.ts +0 -0
- /package/lib/types/{model → models}/data-context-transformers/bar-data-context-transformer.d.ts +0 -0
- /package/lib/types/{model → models}/data-context-transformers/box-plot-data-context-transformer.d.ts +0 -0
- /package/lib/types/{model → models}/data-context-transformers/line-like-context-transformer.d.ts +0 -0
- /package/lib/types/{model → models}/data-context-transformers/pareto-data-context-transformer.d.ts +0 -0
- /package/lib/types/{model → models}/data-context-transformers/percent-data-context-transformer.d.ts +0 -0
- /package/lib/types/{model → models}/data-context-transformers/pie-data-context-transformer.d.ts +0 -0
- /package/lib/types/{model → models}/data-context-transformers/word-cloud-data-context-transform.d.ts +0 -0
- /package/lib/types/{model → models}/echart-to-chart-model-init.d.ts +0 -0
- /package/lib/types/{model → models}/mode-converter/converters/boxplot-chart-converter.d.ts +0 -0
- /package/lib/types/{model → models}/mode-converter/converters/bubble-chart-converter.d.ts +0 -0
- /package/lib/types/{model → models}/mode-converter/converters/combination-chart-converter.d.ts +0 -0
- /package/lib/types/{model → models}/mode-converter/converters/constants.d.ts +0 -0
- /package/lib/types/{model → models}/mode-converter/converters/funnel-chart-converter.d.ts +0 -0
- /package/lib/types/{model → models}/mode-converter/converters/heatmap-chart-convert.d.ts +0 -0
- /package/lib/types/{model → models}/mode-converter/converters/pareto-chart-converter.d.ts +0 -0
- /package/lib/types/{model → models}/mode-converter/converters/pie-chart-converter.d.ts +0 -0
- /package/lib/types/{model → models}/mode-converter/converters/radar-chart-converter.d.ts +0 -0
- /package/lib/types/{model → models}/mode-converter/converters/relation-chart-converter.d.ts +0 -0
- /package/lib/types/{model → models}/mode-converter/converters/sankey-chart-converter.d.ts +0 -0
- /package/lib/types/{model → models}/mode-converter/converters/scatter-chart-converter.d.ts +0 -0
- /package/lib/types/{model → models}/mode-converter/converters/tools.d.ts +0 -0
- /package/lib/types/{model → models}/mode-converter/converters/waterfall-chart-converter.d.ts +0 -0
- /package/lib/types/{model → models}/mode-converter/render-spec-operators/axis-title.operator.d.ts +0 -0
- /package/lib/types/{model → models}/mode-converter/render-spec-operators/bubble-style.operator.d.ts +0 -0
- /package/lib/types/{model → models}/mode-converter/render-spec-operators/chart-axes.operator.d.ts +0 -0
- /package/lib/types/{model → models}/mode-converter/render-spec-operators/chart-box-style.operator.d.ts +0 -0
- /package/lib/types/{model → models}/mode-converter/render-spec-operators/empty-style-operator.d.ts +0 -0
- /package/lib/types/{model → models}/mode-converter/render-spec-operators/font-size.operator.d.ts +0 -0
- /package/lib/types/{model → models}/mode-converter/render-spec-operators/grid-operator.d.ts +0 -0
- /package/lib/types/{model → models}/mode-converter/render-spec-operators/heatmap-chart-operator.d.ts +0 -0
- /package/lib/types/{model → models}/mode-converter/render-spec-operators/hover-mark-style.operator.d.ts +0 -0
- /package/lib/types/{model → models}/mode-converter/render-spec-operators/invalid-value-style.operator.d.ts +0 -0
- /package/lib/types/{model → models}/mode-converter/render-spec-operators/legend-style.operator.d.ts +0 -0
- /package/lib/types/{model → models}/mode-converter/render-spec-operators/line-like-style.operator.d.ts +0 -0
- /package/lib/types/{model → models}/mode-converter/render-spec-operators/operator-types.d.ts +0 -0
- /package/lib/types/{model → models}/mode-converter/render-spec-operators/pie-style.operator.d.ts +0 -0
- /package/lib/types/{model → models}/mode-converter/render-spec-operators/radar-style.operator.d.ts +0 -0
- /package/lib/types/{model → models}/mode-converter/render-spec-operators/relation-chart-operator/relation-chart-operator.d.ts +0 -0
- /package/lib/types/{model → models}/mode-converter/render-spec-operators/relation-chart-operator/relation-force-directed-layout.d.ts +0 -0
- /package/lib/types/{model → models}/mode-converter/render-spec-operators/sankey-chart-operator.d.ts +0 -0
- /package/lib/types/{model → models}/mode-converter/render-spec-operators/scatter-style.operator.d.ts +0 -0
- /package/lib/types/{model → models}/mode-converter/render-spec-operators/series-style-operator/pareto-series-style.handler.d.ts +0 -0
- /package/lib/types/{model → models}/mode-converter/render-spec-operators/series-style-operator/series-chart-style.handler.d.ts +0 -0
- /package/lib/types/{model → models}/mode-converter/render-spec-operators/series-style-operator/series-data-label.handler.d.ts +0 -0
- /package/lib/types/{model → models}/mode-converter/render-spec-operators/series-style-operator/series-style-operator.d.ts +0 -0
- /package/lib/types/{model → models}/mode-converter/render-spec-operators/series-style-operator/waterfall-series-style-operator.d.ts +0 -0
- /package/lib/types/{model → models}/mode-converter/render-spec-operators/stack.operator.d.ts +0 -0
- /package/lib/types/{model → models}/mode-converter/render-spec-operators/theme.operator.d.ts +0 -0
- /package/lib/types/{model → models}/mode-converter/render-spec-operators/title-style.operator.d.ts +0 -0
- /package/lib/types/{model → models}/mode-converter/render-spec-operators/tools.d.ts +0 -0
- /package/lib/types/{model → models}/mode-converter/render-spec-operators/trend-line/trend-line.operator.d.ts +0 -0
- /package/lib/types/{model → models}/mode-converter/render-spec-operators/trend-line/trendline-util.d.ts +0 -0
- /package/lib/types/{model → models}/mode-converter/render-spec-operators/visual-map-operator.d.ts +0 -0
- /package/lib/types/{model → models}/mode-converter/render-spec-operators/watermark.operator.d.ts +0 -0
- /package/lib/types/{model → models}/spec-converter/spec-converter.d.ts +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@univerjs-pro/engine-chart",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.0-alpha.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Chart data model and rendering utilities for Univer Pro.",
|
|
6
6
|
"author": "DreamNum Co., Ltd. <developer@univer.ai>",
|
|
@@ -51,15 +51,15 @@
|
|
|
51
51
|
"rxjs": ">=7.0.0"
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
|
-
"@univerjs/core": "0.
|
|
55
|
-
"@univerjs/engine-render": "0.
|
|
54
|
+
"@univerjs/core": "1.0.0-alpha.1",
|
|
55
|
+
"@univerjs/engine-render": "1.0.0-alpha.1"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
58
|
"echarts": "5.6.0",
|
|
59
59
|
"rxjs": "7.8.2",
|
|
60
60
|
"typescript": "^6.0.3",
|
|
61
|
-
"vitest": "^4.1.
|
|
62
|
-
"@univerjs-infra/shared": "0.
|
|
61
|
+
"vitest": "^4.1.9",
|
|
62
|
+
"@univerjs-infra/shared": "1.0.0-alpha.1"
|
|
63
63
|
},
|
|
64
64
|
"scripts": {
|
|
65
65
|
"test": "vitest run",
|
|
@@ -1,76 +0,0 @@
|
|
|
1
|
-
import type { EChartSpec, IChartRenderSpecConverter } from '../../../types';
|
|
2
|
-
interface IWordCloudTextStyle {
|
|
3
|
-
color?: string;
|
|
4
|
-
fontStyle?: string;
|
|
5
|
-
fontWeight?: string | number;
|
|
6
|
-
fontFamily?: string;
|
|
7
|
-
fontSize?: number | string;
|
|
8
|
-
align?: string;
|
|
9
|
-
verticalAlign?: string;
|
|
10
|
-
baseline?: string;
|
|
11
|
-
opacity?: number;
|
|
12
|
-
lineHeight?: number;
|
|
13
|
-
backgroundColor?: string | {
|
|
14
|
-
image: HTMLImageElement | HTMLCanvasElement | string;
|
|
15
|
-
};
|
|
16
|
-
borderColor?: string;
|
|
17
|
-
borderWidth?: number;
|
|
18
|
-
borderType?: string;
|
|
19
|
-
borderDashOffset?: number;
|
|
20
|
-
borderRadius?: number | number[];
|
|
21
|
-
padding?: number | number[];
|
|
22
|
-
width?: number | string;
|
|
23
|
-
height?: number;
|
|
24
|
-
textBorderColor?: string;
|
|
25
|
-
textBorderWidth?: number;
|
|
26
|
-
textBorderType?: string;
|
|
27
|
-
textBorderDashOffset?: number;
|
|
28
|
-
textShadowBlur?: number;
|
|
29
|
-
textShadowColor?: string;
|
|
30
|
-
textShadowOffsetX?: number;
|
|
31
|
-
textShadowOffsetY?: number;
|
|
32
|
-
}
|
|
33
|
-
export interface IWorldCloudDataItem {
|
|
34
|
-
name?: string;
|
|
35
|
-
value?: number | number[];
|
|
36
|
-
textStyle?: IWordCloudTextStyle;
|
|
37
|
-
emphasis?: {
|
|
38
|
-
textStyle?: IWordCloudTextStyle;
|
|
39
|
-
};
|
|
40
|
-
}
|
|
41
|
-
export interface IWordCloudSeriesOption {
|
|
42
|
-
mainType?: 'series';
|
|
43
|
-
type?: 'wordCloud';
|
|
44
|
-
silent?: boolean;
|
|
45
|
-
blendMode?: string;
|
|
46
|
-
/**
|
|
47
|
-
* Cursor when mouse on the elements
|
|
48
|
-
*/
|
|
49
|
-
cursor?: string;
|
|
50
|
-
width?: number | string;
|
|
51
|
-
height?: number | string;
|
|
52
|
-
top?: number | string;
|
|
53
|
-
right?: number | string;
|
|
54
|
-
bottom?: number | string;
|
|
55
|
-
left?: number | string;
|
|
56
|
-
textStyle?: IWordCloudTextStyle | {
|
|
57
|
-
color?: (params?: any) => string;
|
|
58
|
-
};
|
|
59
|
-
emphasis?: {
|
|
60
|
-
focus?: 'self' | 'series' | 'none';
|
|
61
|
-
blurScope?: 'coordinateSystem' | 'global' | 'series';
|
|
62
|
-
textStyle?: IWordCloudTextStyle;
|
|
63
|
-
};
|
|
64
|
-
shape?: string;
|
|
65
|
-
maskImage?: HTMLImageElement | HTMLCanvasElement;
|
|
66
|
-
sizeRange?: number[];
|
|
67
|
-
rotationRange?: number[];
|
|
68
|
-
rotationStep?: number;
|
|
69
|
-
gridSize?: number;
|
|
70
|
-
drawOutOfBound?: boolean;
|
|
71
|
-
layoutAnimation?: boolean;
|
|
72
|
-
keepAspect?: boolean;
|
|
73
|
-
data?: IWorldCloudDataItem[];
|
|
74
|
-
}
|
|
75
|
-
export declare const wordCloudChartConverter: IChartRenderSpecConverter<EChartSpec>;
|
|
76
|
-
export {};
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/lib/types/{model → models}/data-context-transformers/bar-data-context-transformer.d.ts
RENAMED
|
File without changes
|
/package/lib/types/{model → models}/data-context-transformers/box-plot-data-context-transformer.d.ts
RENAMED
|
File without changes
|
/package/lib/types/{model → models}/data-context-transformers/line-like-context-transformer.d.ts
RENAMED
|
File without changes
|
/package/lib/types/{model → models}/data-context-transformers/pareto-data-context-transformer.d.ts
RENAMED
|
File without changes
|
/package/lib/types/{model → models}/data-context-transformers/percent-data-context-transformer.d.ts
RENAMED
|
File without changes
|
/package/lib/types/{model → models}/data-context-transformers/pie-data-context-transformer.d.ts
RENAMED
|
File without changes
|
/package/lib/types/{model → models}/data-context-transformers/word-cloud-data-context-transform.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/lib/types/{model → models}/mode-converter/converters/combination-chart-converter.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/lib/types/{model → models}/mode-converter/converters/waterfall-chart-converter.d.ts
RENAMED
|
File without changes
|
/package/lib/types/{model → models}/mode-converter/render-spec-operators/axis-title.operator.d.ts
RENAMED
|
File without changes
|
/package/lib/types/{model → models}/mode-converter/render-spec-operators/bubble-style.operator.d.ts
RENAMED
|
File without changes
|
/package/lib/types/{model → models}/mode-converter/render-spec-operators/chart-axes.operator.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
/package/lib/types/{model → models}/mode-converter/render-spec-operators/empty-style-operator.d.ts
RENAMED
|
File without changes
|
/package/lib/types/{model → models}/mode-converter/render-spec-operators/font-size.operator.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
/package/lib/types/{model → models}/mode-converter/render-spec-operators/heatmap-chart-operator.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/lib/types/{model → models}/mode-converter/render-spec-operators/legend-style.operator.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
/package/lib/types/{model → models}/mode-converter/render-spec-operators/operator-types.d.ts
RENAMED
|
File without changes
|
/package/lib/types/{model → models}/mode-converter/render-spec-operators/pie-style.operator.d.ts
RENAMED
|
File without changes
|
/package/lib/types/{model → models}/mode-converter/render-spec-operators/radar-style.operator.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/lib/types/{model → models}/mode-converter/render-spec-operators/sankey-chart-operator.d.ts
RENAMED
|
File without changes
|
/package/lib/types/{model → models}/mode-converter/render-spec-operators/scatter-style.operator.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/lib/types/{model → models}/mode-converter/render-spec-operators/stack.operator.d.ts
RENAMED
|
File without changes
|
/package/lib/types/{model → models}/mode-converter/render-spec-operators/theme.operator.d.ts
RENAMED
|
File without changes
|
/package/lib/types/{model → models}/mode-converter/render-spec-operators/title-style.operator.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/lib/types/{model → models}/mode-converter/render-spec-operators/visual-map-operator.d.ts
RENAMED
|
File without changes
|
/package/lib/types/{model → models}/mode-converter/render-spec-operators/watermark.operator.d.ts
RENAMED
|
File without changes
|
|
File without changes
|