@datapos/datapos-shared 0.3.238 → 0.3.240
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.
|
@@ -3,10 +3,6 @@ export interface PresentationConfig extends ComponentConfig {
|
|
|
3
3
|
content: string;
|
|
4
4
|
order: number;
|
|
5
5
|
}
|
|
6
|
-
export type PresentationCategoryId = 'cartesianChart' | 'chordDiagram' | 'periodFlowBoundariesChart' | 'polarChart' | 'rangeChart' | 'sankeyDiagram' | 'streamGraph' | 'valueTable';
|
|
7
|
-
export type PresentationCartesianTypeId = 'areaLine' | 'areaSpline' | 'bar' | 'column' | 'line' | 'pyramid' | 'spline';
|
|
8
|
-
export type PresentationPolarTypeId = 'areaLine' | 'areaRange' | 'areaSpline' | 'column' | 'line' | 'spline';
|
|
9
|
-
export type PresentationRangeTypeId = 'areaLine' | 'areaSpline' | 'bar' | 'column';
|
|
10
6
|
export type PresentationVisualConfig = {
|
|
11
7
|
content: PresentationVisualContentConfig;
|
|
12
8
|
views: PresentationVisualViewConfig[];
|
|
@@ -40,10 +36,12 @@ export interface PresentationVisualViewConfig {
|
|
|
40
36
|
categoryId: PresentationCategoryId;
|
|
41
37
|
default?: boolean;
|
|
42
38
|
}
|
|
39
|
+
export type PresentationCategoryId = 'cartesianChart' | 'chordDiagram' | 'periodFlowBoundariesChart' | 'polarChart' | 'rangeChart' | 'sankeyDiagram' | 'streamGraph' | 'valueTable';
|
|
43
40
|
export interface PresentationVisualCartesianChartViewConfig extends PresentationVisualViewConfig {
|
|
44
41
|
categoryId: 'cartesianChart';
|
|
45
42
|
typeId: PresentationCartesianTypeId;
|
|
46
43
|
}
|
|
44
|
+
export type PresentationCartesianTypeId = 'areaLine' | 'areaSpline' | 'bar' | 'column' | 'line' | 'spline';
|
|
47
45
|
export interface PresentationVisualChordDiagramViewConfig extends PresentationVisualViewConfig {
|
|
48
46
|
categoryId: 'chordDiagram';
|
|
49
47
|
}
|
|
@@ -54,10 +52,12 @@ export interface PresentationVisualPolarChartViewConfig extends PresentationVisu
|
|
|
54
52
|
categoryId: 'polarChart';
|
|
55
53
|
typeId: PresentationPolarTypeId;
|
|
56
54
|
}
|
|
55
|
+
export type PresentationPolarTypeId = 'areaLine' | 'areaRange' | 'areaSpline' | 'column' | 'line' | 'spline';
|
|
57
56
|
export interface PresentationVisualRangeChartViewConfig extends PresentationVisualViewConfig {
|
|
58
57
|
categoryId: 'rangeChart';
|
|
59
58
|
typeId: PresentationRangeTypeId;
|
|
60
59
|
}
|
|
60
|
+
export type PresentationRangeTypeId = 'areaLine' | 'areaSpline' | 'bar' | 'column';
|
|
61
61
|
export interface PresentationVisualSankeyDiagramViewConfig extends PresentationVisualViewConfig {
|
|
62
62
|
categoryId: 'sankeyDiagram';
|
|
63
63
|
}
|
package/package.json
CHANGED