@datapos/datapos-shared 0.3.216 → 0.3.218

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.
@@ -20,7 +20,7 @@ const w = 0, S = (e) => e, N = () => Date.now(), D = {
20
20
  cartesian_pyramid: { categoryId: "cartesian", typeId: "line", label: { "en-gb": "Pyramid" }, options: { highchartsType: "line" } },
21
21
  cartesian_spline: { categoryId: "cartesian", typeId: "line", label: { "en-gb": "Spline" }, options: { highchartsType: "line" } },
22
22
  chordDiagram: { categoryId: "chordDiagram", label: { "en-gb": "Chord Diagram" }, options: {} },
23
- periodFLowBoundaries: { categoryId: "periodFLowBoundaries", label: { "en-gb": "Period Flow & Boundaries" }, options: {} },
23
+ periodFlowBoundaries: { categoryId: "periodFlowBoundaries", label: { "en-gb": "Period Flow & Boundaries" }, options: {} },
24
24
  polar_area: { categoryId: "polar", typeId: "area", label: { "en-gb": "Radar (Area)" }, options: { highchartsType: "area" } },
25
25
  polar_column: { categoryId: "polar", typeId: "column", label: { "en-gb": "Radar (Column)" }, options: { highchartsType: "column" } },
26
26
  polar_line: { categoryId: "polar", typeId: "line", label: { "en-gb": "Radar (Line)" }, options: { highchartsType: "line" } },
@@ -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';
@@ -65,7 +68,7 @@ export type PresentationVisualChordViewType = {
65
68
  options: {};
66
69
  };
67
70
  export type PresentationVisualPeriodFLowBoundariesViewType = {
68
- categoryId: 'periodFLowBoundaries';
71
+ categoryId: 'periodFlowBoundaries';
69
72
  label: Record<string, string>;
70
73
  options: {};
71
74
  };
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@datapos/datapos-shared",
3
- "version": "0.3.216",
3
+ "version": "0.3.218",
4
4
  "description": "A TypeScript library containing common declarations and utilities used across other Data Positioning repositories.",
5
5
  "license": "MIT",
6
6
  "private": false,