@datapos/datapos-shared 0.3.227 → 0.3.229
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.
|
@@ -4,6 +4,9 @@ export interface PresentationConfig extends ComponentConfig {
|
|
|
4
4
|
order: number;
|
|
5
5
|
}
|
|
6
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 = 'area' | 'column' | 'line';
|
|
9
|
+
export type PresentationRangeTypeId = 'area' | 'bar' | 'column';
|
|
7
10
|
export type PresentationVisualConfig = {
|
|
8
11
|
content: PresentationVisualContentConfig;
|
|
9
12
|
views: PresentationVisualViewConfig[];
|
|
@@ -39,7 +42,7 @@ export interface PresentationVisualViewConfig {
|
|
|
39
42
|
}
|
|
40
43
|
export interface PresentationVisualCartesianChartViewConfig extends PresentationVisualViewConfig {
|
|
41
44
|
categoryId: 'cartesianChart';
|
|
42
|
-
typeId:
|
|
45
|
+
typeId: PresentationCartesianTypeId;
|
|
43
46
|
}
|
|
44
47
|
export interface PresentationVisualChordDiagramViewConfig extends PresentationVisualViewConfig {
|
|
45
48
|
categoryId: 'chordDiagram';
|
|
@@ -49,11 +52,11 @@ export interface PresentationVisualPeriodFlowBoundariesChartViewConfig extends P
|
|
|
49
52
|
}
|
|
50
53
|
export interface PresentationVisualPolarChartViewConfig extends PresentationVisualViewConfig {
|
|
51
54
|
categoryId: 'polarChart';
|
|
52
|
-
typeId:
|
|
55
|
+
typeId: PresentationPolarTypeId;
|
|
53
56
|
}
|
|
54
57
|
export interface PresentationVisualRangeChartViewConfig extends PresentationVisualViewConfig {
|
|
55
58
|
categoryId: 'rangeChart';
|
|
56
|
-
typeId:
|
|
59
|
+
typeId: PresentationRangeTypeId;
|
|
57
60
|
}
|
|
58
61
|
export interface PresentationVisualSankeyDiagramViewConfig extends PresentationVisualViewConfig {
|
|
59
62
|
categoryId: 'sankeyDiagram';
|
|
@@ -69,7 +72,7 @@ export interface PresentationVisualViewType {
|
|
|
69
72
|
}
|
|
70
73
|
export interface PresentationVisualCartesianChartViewType extends PresentationVisualViewType {
|
|
71
74
|
categoryId: 'cartesianChart';
|
|
72
|
-
typeId:
|
|
75
|
+
typeId: PresentationCartesianTypeId;
|
|
73
76
|
label: Record<string, string>;
|
|
74
77
|
}
|
|
75
78
|
export interface PresentationVisualChordDiagramViewType extends PresentationVisualViewType {
|
|
@@ -82,12 +85,12 @@ export interface PresentationVisualPeriodFlowBoundariesChartViewType extends Pre
|
|
|
82
85
|
}
|
|
83
86
|
export interface PresentationVisualPolarChartViewType extends PresentationVisualViewType {
|
|
84
87
|
categoryId: 'polarChart';
|
|
85
|
-
typeId:
|
|
88
|
+
typeId: PresentationPolarTypeId;
|
|
86
89
|
label: Record<string, string>;
|
|
87
90
|
}
|
|
88
91
|
export interface PresentationVisualRangeChartViewType extends PresentationVisualViewType {
|
|
89
92
|
categoryId: 'rangeChart';
|
|
90
|
-
typeId:
|
|
93
|
+
typeId: PresentationRangeTypeId;
|
|
91
94
|
label: Record<string, string>;
|
|
92
95
|
}
|
|
93
96
|
export interface PresentationVisualSankeyDiagramViewType extends PresentationVisualViewType {
|
|
@@ -45,7 +45,7 @@ export type { EventQueryConfig, EventQueryLocalisedConfig } from './component/ev
|
|
|
45
45
|
export type { Informer, InformerConfig, InformerLocalisedConfig, InformerTools } from './component/informer';
|
|
46
46
|
export type { Presenter, PresenterConfig, PresenterLocalisedConfig } from './component/presenter';
|
|
47
47
|
export type { PresentationConfig, PresentationView } from './component/presenter/presentation';
|
|
48
|
-
export type { PresentationVisualConfig, PresentationVisualContentConfig, PresentationVisualViewConfig, PresentationVisualCartesianChartViewConfig, PresentationVisualChordDiagramViewConfig, PresentationVisualPeriodFlowBoundariesChartViewConfig, PresentationVisualPolarChartViewConfig, PresentationVisualRangeChartViewConfig, PresentationVisualSankeyDiagramViewConfig, PresentationVisualStreamGraphViewConfig, PresentationVisualValueTableViewConfig } from './component/presenter/presentation';
|
|
48
|
+
export type { PresentationCategoryId, PresentationCartesianTypeId, PresentationPolarTypeId, PresentationRangeTypeId, PresentationVisualConfig, PresentationVisualContentConfig, PresentationVisualViewConfig, PresentationVisualCartesianChartViewConfig, PresentationVisualChordDiagramViewConfig, PresentationVisualPeriodFlowBoundariesChartViewConfig, PresentationVisualPolarChartViewConfig, PresentationVisualRangeChartViewConfig, PresentationVisualSankeyDiagramViewConfig, PresentationVisualStreamGraphViewConfig, PresentationVisualValueTableViewConfig } from './component/presenter/presentation';
|
|
49
49
|
export type { PresentationVisualViewType, PresentationVisualCartesianChartViewType, PresentationVisualChordDiagramViewType, PresentationVisualPeriodFlowBoundariesChartViewType, PresentationVisualPolarChartViewType, PresentationVisualRangeChartViewType, PresentationVisualSankeyDiagramViewType, PresentationVisualStreamGraphViewType, PresentationVisualValueTableViewType } from './component/presenter/presentation';
|
|
50
50
|
export interface ContextOperationSettings {
|
|
51
51
|
accountId?: string;
|
package/package.json
CHANGED