@datapos/datapos-shared 0.3.216 → 0.3.217
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.
|
@@ -32,6 +32,9 @@ export interface PresentationVisualCartesianViewConfig extends PresentationVisua
|
|
|
32
32
|
export interface PresentationVisualChordDiagramViewConfig extends PresentationVisualViewConfig {
|
|
33
33
|
categoryId: 'chordDiagram';
|
|
34
34
|
}
|
|
35
|
+
export interface PresentationVisualPeriodFlowBoundariesViewConfig extends PresentationVisualViewConfig {
|
|
36
|
+
categoryId: 'periodFlowBoundaries';
|
|
37
|
+
}
|
|
35
38
|
export interface PresentationVisualPolarViewConfig extends PresentationVisualViewConfig {
|
|
36
39
|
categoryId: 'polar';
|
|
37
40
|
typeId: 'area' | 'column' | 'line';
|
|
@@ -45,8 +45,8 @@ 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, PresentationVisualCartesianViewConfig, PresentationVisualChordDiagramViewConfig, PresentationVisualPolarViewConfig, PresentationVisualRangeViewConfig, PresentationVisualSankeyDiagramViewConfig, PresentationVisualStreamgraphViewConfig, PresentationVisualValuesViewConfig } from './component/presenter/presentation';
|
|
49
|
-
export type { PresentationVisualViewType, PresentationVisualCartesianViewType, PresentationVisualChordViewType, PresentationVisualPolarViewType, PresentationVisualRangeViewType, PresentationVisualSankeyDiagramViewType, PresentationVisualStreamgraphViewType, PresentationVisualValuesViewType } from './component/presenter/presentation';
|
|
48
|
+
export type { PresentationVisualConfig, PresentationVisualContentConfig, PresentationVisualViewConfig, PresentationVisualCartesianViewConfig, PresentationVisualChordDiagramViewConfig, PresentationVisualPeriodFlowBoundariesViewConfig, PresentationVisualPolarViewConfig, PresentationVisualRangeViewConfig, PresentationVisualSankeyDiagramViewConfig, PresentationVisualStreamgraphViewConfig, PresentationVisualValuesViewConfig } from './component/presenter/presentation';
|
|
49
|
+
export type { PresentationVisualViewType, PresentationVisualCartesianViewType, PresentationVisualChordViewType, PresentationVisualPeriodFLowBoundariesViewType, PresentationVisualPolarViewType, PresentationVisualRangeViewType, PresentationVisualSankeyDiagramViewType, PresentationVisualStreamgraphViewType, PresentationVisualValuesViewType } from './component/presenter/presentation';
|
|
50
50
|
export interface ContextOperationSettings {
|
|
51
51
|
accountId?: string;
|
|
52
52
|
appCheckToken?: string;
|
package/package.json
CHANGED