@datapos/datapos-shared 0.3.239 → 0.3.241
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.
|
@@ -41,7 +41,7 @@ export interface PresentationVisualCartesianChartViewConfig extends Presentation
|
|
|
41
41
|
categoryId: 'cartesianChart';
|
|
42
42
|
typeId: PresentationCartesianTypeId;
|
|
43
43
|
}
|
|
44
|
-
export type PresentationCartesianTypeId = 'areaLine' | 'areaSpline' | 'bar' | 'column' | 'line' | '
|
|
44
|
+
export type PresentationCartesianTypeId = 'areaLine' | 'areaSpline' | 'bar' | 'column' | 'line' | 'spline';
|
|
45
45
|
export interface PresentationVisualChordDiagramViewConfig extends PresentationVisualViewConfig {
|
|
46
46
|
categoryId: 'chordDiagram';
|
|
47
47
|
}
|
|
@@ -52,7 +52,7 @@ export interface PresentationVisualPolarChartViewConfig extends PresentationVisu
|
|
|
52
52
|
categoryId: 'polarChart';
|
|
53
53
|
typeId: PresentationPolarTypeId;
|
|
54
54
|
}
|
|
55
|
-
export type PresentationPolarTypeId = 'areaLine' | 'areaRange' | 'areaSpline' | 'column' | 'line' | 'spline';
|
|
55
|
+
export type PresentationPolarTypeId = 'areaLine' | 'areaRange' | 'areaSpline' | 'column' | 'columnRange' | 'line' | 'spline';
|
|
56
56
|
export interface PresentationVisualRangeChartViewConfig extends PresentationVisualViewConfig {
|
|
57
57
|
categoryId: 'rangeChart';
|
|
58
58
|
typeId: PresentationRangeTypeId;
|
package/package.json
CHANGED