@datapos/datapos-shared 0.3.228 → 0.3.230
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.
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
const
|
|
1
|
+
const E = ["createObject", "dropObject", "removeRecords", "upsertRecords"], I = ["findObject", "getRecord", "listNodes", "previewObject", "retrieveRecords"];
|
|
2
2
|
function x() {
|
|
3
|
-
function e(
|
|
3
|
+
function e(a, t, r) {
|
|
4
4
|
r.textContent = "Cytoscape.js diagram goes here...";
|
|
5
5
|
}
|
|
6
6
|
return { render: e };
|
|
7
7
|
}
|
|
8
|
-
function
|
|
9
|
-
function e(
|
|
8
|
+
function S() {
|
|
9
|
+
function e(a, t, r) {
|
|
10
10
|
r.textContent = "values table goes here...";
|
|
11
11
|
}
|
|
12
12
|
return { render: e };
|
|
13
13
|
}
|
|
14
|
-
const
|
|
14
|
+
const C = 0, w = (e) => e, N = () => Date.now(), D = {
|
|
15
15
|
cartesian_areaLine: { categoryId: "cartesianChart", typeId: "areaLine", label: { "en-gb": "Area Line" } },
|
|
16
16
|
cartesian_areaSpline: { categoryId: "cartesianChart", typeId: "areaSpline", label: { "en-gb": "Area Spline" } },
|
|
17
17
|
cartesian_bar: { categoryId: "cartesianChart", typeId: "bar", label: { "en-gb": "Bar" } },
|
|
@@ -21,10 +21,13 @@ const w = 0, S = (e) => e, N = () => Date.now(), D = {
|
|
|
21
21
|
cartesian_spline: { categoryId: "cartesianChart", typeId: "spline", label: { "en-gb": "Spline" } },
|
|
22
22
|
chordDiagram: { categoryId: "chordDiagram", label: { "en-gb": "Chord Diagram" } },
|
|
23
23
|
periodFlowBoundariesChart: { categoryId: "periodFlowBoundariesChart", label: { "en-gb": "Period Flow & Boundaries" } },
|
|
24
|
-
|
|
24
|
+
polar_areaLine: { categoryId: "polarChart", typeId: "areaLine", label: { "en-gb": "Radar (Area Line)" } },
|
|
25
|
+
polar_areaSpline: { categoryId: "polarChart", typeId: "areaSpline", label: { "en-gb": "Radar (Area Spline)" } },
|
|
25
26
|
polar_column: { categoryId: "polarChart", typeId: "column", label: { "en-gb": "Radar (Column)" } },
|
|
26
27
|
polar_line: { categoryId: "polarChart", typeId: "line", label: { "en-gb": "Radar (Line)" } },
|
|
27
|
-
|
|
28
|
+
polar_spline: { categoryId: "polarChart", typeId: "spline", label: { "en-gb": "Radar (Spline)" } },
|
|
29
|
+
range_areaLine: { categoryId: "rangeChart", typeId: "areaLine", label: { "en-gb": "Range (Area Line)" } },
|
|
30
|
+
range_areaSpline: { categoryId: "rangeChart", typeId: "areaSpline", label: { "en-gb": "Range (Area Spline)" } },
|
|
28
31
|
range_bar: { categoryId: "rangeChart", typeId: "bar", label: { "en-gb": "Range (Bar)" } },
|
|
29
32
|
range_column: { categoryId: "rangeChart", typeId: "column", label: { "en-gb": "Range (Column)" } },
|
|
30
33
|
sankeyDiagram: { categoryId: "sankeyDiagram", label: { "en-gb": "Sankey Diagram" } },
|
|
@@ -33,76 +36,76 @@ const w = 0, S = (e) => e, N = () => Date.now(), D = {
|
|
|
33
36
|
};
|
|
34
37
|
class u extends Error {
|
|
35
38
|
locator;
|
|
36
|
-
constructor(
|
|
37
|
-
super(
|
|
39
|
+
constructor(a, t, r) {
|
|
40
|
+
super(a, r), this.name = "DataPosError", this.locator = t, Error.captureStackTrace?.(this, new.target);
|
|
38
41
|
}
|
|
39
42
|
}
|
|
40
43
|
class i extends u {
|
|
41
|
-
constructor(
|
|
42
|
-
super(
|
|
44
|
+
constructor(a, t, r) {
|
|
45
|
+
super(a, t, r), this.name = "ApplicationError";
|
|
43
46
|
}
|
|
44
47
|
}
|
|
45
48
|
class T extends i {
|
|
46
|
-
constructor(
|
|
47
|
-
super(
|
|
49
|
+
constructor(a, t, r) {
|
|
50
|
+
super(a, t, r), this.name = "APIError";
|
|
48
51
|
}
|
|
49
52
|
}
|
|
50
53
|
class v extends i {
|
|
51
|
-
constructor(
|
|
52
|
-
super(
|
|
54
|
+
constructor(a, t, r) {
|
|
55
|
+
super(a, t, r), this.name = "EngineError";
|
|
53
56
|
}
|
|
54
57
|
}
|
|
55
|
-
class
|
|
58
|
+
class g extends i {
|
|
56
59
|
body;
|
|
57
|
-
constructor(
|
|
58
|
-
super(
|
|
60
|
+
constructor(a, t, r, n) {
|
|
61
|
+
super(a, t, n), this.name = "FetchError", this.body = r;
|
|
59
62
|
}
|
|
60
63
|
}
|
|
61
64
|
class b extends i {
|
|
62
65
|
componentName;
|
|
63
66
|
info;
|
|
64
|
-
constructor(
|
|
65
|
-
super(
|
|
67
|
+
constructor(a, t, r, n, s) {
|
|
68
|
+
super(a, t, s), this.name = "VueHandledError", this.info = r, this.componentName = n;
|
|
66
69
|
}
|
|
67
70
|
}
|
|
68
|
-
class
|
|
69
|
-
constructor(
|
|
70
|
-
super(
|
|
71
|
+
class R extends i {
|
|
72
|
+
constructor(a, t, r) {
|
|
73
|
+
super(a, t, r), this.name = "WindowHandledRuntimeError";
|
|
71
74
|
}
|
|
72
75
|
}
|
|
73
|
-
class
|
|
74
|
-
constructor(
|
|
75
|
-
super(
|
|
76
|
+
class A extends i {
|
|
77
|
+
constructor(a, t, r) {
|
|
78
|
+
super(a, t, r), this.name = "WindowHandledPromiseRejectionError";
|
|
76
79
|
}
|
|
77
80
|
}
|
|
78
|
-
class
|
|
79
|
-
constructor(
|
|
80
|
-
super(
|
|
81
|
+
class O extends u {
|
|
82
|
+
constructor(a, t, r) {
|
|
83
|
+
super(a, t, r), this.name = "OperationalError";
|
|
81
84
|
}
|
|
82
85
|
}
|
|
83
|
-
async function
|
|
84
|
-
const r = `${
|
|
85
|
-
return new
|
|
86
|
+
async function $(e, a, t) {
|
|
87
|
+
const r = `${a} Response status '${e.status}${e.statusText ? ` - ${e.statusText}` : ""}' received.`, n = await e.text();
|
|
88
|
+
return new g(r, t, n);
|
|
86
89
|
}
|
|
87
|
-
function
|
|
88
|
-
return e.map((
|
|
90
|
+
function _(e) {
|
|
91
|
+
return e.map((a) => a.message).join(" ");
|
|
89
92
|
}
|
|
90
|
-
function
|
|
93
|
+
function F(e, a = "Unknown error.") {
|
|
91
94
|
if (e instanceof Error) return e;
|
|
92
95
|
if (typeof e == "string") return new Error(e);
|
|
93
96
|
try {
|
|
94
|
-
return new Error(JSON.stringify(e ??
|
|
97
|
+
return new Error(JSON.stringify(e ?? a));
|
|
95
98
|
} catch {
|
|
96
|
-
return new Error(
|
|
99
|
+
return new Error(a);
|
|
97
100
|
}
|
|
98
101
|
}
|
|
99
|
-
function
|
|
100
|
-
const
|
|
102
|
+
function L(e) {
|
|
103
|
+
const a = /* @__PURE__ */ new Set(), t = [];
|
|
101
104
|
let r = e;
|
|
102
|
-
for (; r && !
|
|
103
|
-
|
|
105
|
+
for (; r && !a.has(r); ) {
|
|
106
|
+
a.add(r);
|
|
104
107
|
let n;
|
|
105
|
-
if (r instanceof
|
|
108
|
+
if (r instanceof g)
|
|
106
109
|
n = { body: r.body, locator: r.locator, message: r.message, name: r.name, stack: r.stack }, r = r.cause;
|
|
107
110
|
else if (r instanceof b)
|
|
108
111
|
n = { componentName: r.componentName, info: r.info, locator: r.locator, message: r.message, name: r.name, stack: r.stack }, r = r.cause;
|
|
@@ -112,11 +115,11 @@ function k(e) {
|
|
|
112
115
|
const s = r;
|
|
113
116
|
n = { locator: "", message: s.message, name: s.name, stack: s.stack }, r = s.cause;
|
|
114
117
|
} else r ? (n = { locator: "", message: String(r), name: "Error" }, r = void 0) : (n = { locator: "", message: "Unknown error.", name: "Error" }, r = void 0);
|
|
115
|
-
/(?:\.{3}|[.!?])$/.test(n.message) || (n.message += "."),
|
|
118
|
+
/(?:\.{3}|[.!?])$/.test(n.message) || (n.message += "."), t.push(n);
|
|
116
119
|
}
|
|
117
|
-
return
|
|
120
|
+
return t;
|
|
118
121
|
}
|
|
119
|
-
const
|
|
122
|
+
const m = "en-US", c = {}, k = (e) => {
|
|
120
123
|
switch (e) {
|
|
121
124
|
case "Edm.Binary":
|
|
122
125
|
return "unknown";
|
|
@@ -155,40 +158,40 @@ const g = "en-US", c = {}, B = (e) => {
|
|
|
155
158
|
default:
|
|
156
159
|
return "unknown";
|
|
157
160
|
}
|
|
158
|
-
},
|
|
161
|
+
}, B = (e) => {
|
|
159
162
|
if (e) {
|
|
160
|
-
const
|
|
161
|
-
return
|
|
163
|
+
const a = e.lastIndexOf("/"), t = e.lastIndexOf(".", a > -1 ? a : e.length);
|
|
164
|
+
return t > -1 ? e.substring(0, t) : e;
|
|
162
165
|
}
|
|
163
166
|
}, M = (e) => {
|
|
164
167
|
if (e) {
|
|
165
|
-
const
|
|
166
|
-
if (
|
|
168
|
+
const a = e.lastIndexOf(".");
|
|
169
|
+
if (a > -1) return e.substring(a + 1);
|
|
167
170
|
}
|
|
168
|
-
}, o = (e,
|
|
171
|
+
}, o = (e, a = 2, t = a, r = m) => {
|
|
169
172
|
if (e == null) return "";
|
|
170
|
-
const n = `${r}decimal${
|
|
173
|
+
const n = `${r}decimal${a}.${t}`;
|
|
171
174
|
let s = c[n];
|
|
172
175
|
return s || (s = new Intl.NumberFormat(r, {
|
|
173
176
|
localeMatcher: "best fit",
|
|
174
|
-
maximumFractionDigits:
|
|
175
|
-
minimumFractionDigits:
|
|
177
|
+
maximumFractionDigits: a,
|
|
178
|
+
minimumFractionDigits: t,
|
|
176
179
|
minimumIntegerDigits: 1,
|
|
177
180
|
style: "decimal",
|
|
178
181
|
useGrouping: !0
|
|
179
182
|
}), c[n] = s), s.format(e);
|
|
180
|
-
}, j = (e) => e == null ? "" : e < 1e3 ? d(e) : e < 1e6 ? `${o(e / 1e3, 2, 0)}K` : e < 1e9 ? `${o(e / 1e6, 2, 0)}M` : e < 1e12 ? `${o(e / 1e9, 2, 0)}B` : `${o(e / 1e12, 2, 0)}T`, U = (e) => e == null ? "" : e === 1 ? "1 byte" : e < 1024 ? `${d(e)} bytes` : e < 1048576 ? `${o(e / 1024, 2, 0)} KB` : e < 1073741824 ? `${o(e / 1048576, 2, 0)} MB` : e < 1099511627776 ? `${o(e / 1073741824, 2, 0)} GB` : `${o(e / 1099511627776, 2, 0)} TB`, G = (e) => e == null ? "" : e < 1e3 ? `${d(e)} ms` : e === 1e3 ? `${d(e)} sec` : e < 6e4 ? `${o(e / 1e3, 2, 0)} secs` : e === 6e4 ? "1 min" : e < 36e5 ? `${o(e / 6e4, 2, 0)} mins` : e === 36e5 ? "1 hr" : e < 864e5 ? `${o(e / 36e5, 2, 0)} hrs` : e === 864e5 ? "1 day" : `${o(e / 864e5, 2, 0)} days`, d = (e,
|
|
183
|
+
}, j = (e) => e == null ? "" : e < 1e3 ? d(e) : e < 1e6 ? `${o(e / 1e3, 2, 0)}K` : e < 1e9 ? `${o(e / 1e6, 2, 0)}M` : e < 1e12 ? `${o(e / 1e9, 2, 0)}B` : `${o(e / 1e12, 2, 0)}T`, U = (e) => e == null ? "" : e === 1 ? "1 byte" : e < 1024 ? `${d(e)} bytes` : e < 1048576 ? `${o(e / 1024, 2, 0)} KB` : e < 1073741824 ? `${o(e / 1048576, 2, 0)} MB` : e < 1099511627776 ? `${o(e / 1073741824, 2, 0)} GB` : `${o(e / 1099511627776, 2, 0)} TB`, G = (e) => e == null ? "" : e < 1e3 ? `${d(e)} ms` : e === 1e3 ? `${d(e)} sec` : e < 6e4 ? `${o(e / 1e3, 2, 0)} secs` : e === 6e4 ? "1 min" : e < 36e5 ? `${o(e / 6e4, 2, 0)} mins` : e === 36e5 ? "1 hr" : e < 864e5 ? `${o(e / 36e5, 2, 0)} hrs` : e === 864e5 ? "1 day" : `${o(e / 864e5, 2, 0)} days`, d = (e, a = m) => {
|
|
181
184
|
if (e == null) return "";
|
|
182
|
-
const
|
|
183
|
-
let r = c[
|
|
184
|
-
return r || (r = new Intl.NumberFormat(
|
|
185
|
+
const t = `${a}decimal0.0`;
|
|
186
|
+
let r = c[t];
|
|
187
|
+
return r || (r = new Intl.NumberFormat(a, {
|
|
185
188
|
localeMatcher: "best fit",
|
|
186
189
|
maximumFractionDigits: 0,
|
|
187
190
|
minimumFractionDigits: 0,
|
|
188
191
|
minimumIntegerDigits: 1,
|
|
189
192
|
style: "decimal",
|
|
190
193
|
useGrouping: !0
|
|
191
|
-
}), c[
|
|
194
|
+
}), c[t] = r), r.format(e);
|
|
192
195
|
}, V = (e) => {
|
|
193
196
|
switch (e) {
|
|
194
197
|
case "csv":
|
|
@@ -212,9 +215,9 @@ const g = "en-US", c = {}, B = (e) => {
|
|
|
212
215
|
{ id: "xlsx", label: { "en-gb": "XLSX" } },
|
|
213
216
|
{ id: "xml", label: { "en-gb": "XML" } }
|
|
214
217
|
], W = (e = l) => {
|
|
215
|
-
const
|
|
216
|
-
for (const
|
|
217
|
-
return
|
|
218
|
+
const a = [];
|
|
219
|
+
for (const t of p) a.push({ ...t, label: t.label[e] || t.label[l] || t.id });
|
|
220
|
+
return a;
|
|
218
221
|
}, f = [
|
|
219
222
|
{ id: `
|
|
220
223
|
`, label: { "en-gb": "Newline" } },
|
|
@@ -222,10 +225,10 @@ const g = "en-US", c = {}, B = (e) => {
|
|
|
222
225
|
{ id: `\r
|
|
223
226
|
`, label: { "en-gb": "Carriage Return/Newline" } }
|
|
224
227
|
], P = (e = l) => {
|
|
225
|
-
const
|
|
226
|
-
for (const
|
|
227
|
-
|
|
228
|
-
return
|
|
228
|
+
const a = [];
|
|
229
|
+
for (const t of f)
|
|
230
|
+
a.push({ ...t, label: t.label[e] || t.label[l] || t.id });
|
|
231
|
+
return a;
|
|
229
232
|
}, y = [
|
|
230
233
|
{ id: ":", label: { "en-gb": "Colon" } },
|
|
231
234
|
{ id: ",", label: { "en-gb": "Comma" } },
|
|
@@ -239,11 +242,11 @@ const g = "en-US", c = {}, B = (e) => {
|
|
|
239
242
|
{ id: "0x1F", label: { "en-gb": "Unit Separator" } },
|
|
240
243
|
{ id: "|", label: { "en-gb": "Vertical Bar" } }
|
|
241
244
|
], X = (e = l) => {
|
|
242
|
-
const
|
|
243
|
-
for (const
|
|
244
|
-
|
|
245
|
-
return
|
|
246
|
-
},
|
|
245
|
+
const a = [];
|
|
246
|
+
for (const t of y)
|
|
247
|
+
a.push({ ...t, label: t.label[e] || t.label[l] || t.id });
|
|
248
|
+
return a;
|
|
249
|
+
}, h = [
|
|
247
250
|
{ id: "alpha", color: "red", label: { "en-gb": "alpha" } },
|
|
248
251
|
{ id: "beta", color: "amber", label: { "en-gb": "beta" } },
|
|
249
252
|
{ id: "generalAvailability", color: "green", label: { "en-gb": "" } },
|
|
@@ -253,29 +256,29 @@ const g = "en-US", c = {}, B = (e) => {
|
|
|
253
256
|
{ id: "releaseCandidate", color: "green", label: { "en-gb": "release-candidate" } },
|
|
254
257
|
{ id: "unavailable", color: "other", label: { "en-gb": "unavailable" } },
|
|
255
258
|
{ id: "underReview", color: "other", label: { "en-gb": "under-review" } }
|
|
256
|
-
], z = (e,
|
|
257
|
-
const
|
|
258
|
-
return
|
|
259
|
+
], z = (e, a = l) => {
|
|
260
|
+
const t = h.find((r) => r.id === e);
|
|
261
|
+
return t ? { ...t, label: t.label[a] || t.label[l] || e } : { id: e, color: "other", label: e };
|
|
259
262
|
}, l = "en-gb";
|
|
260
263
|
export {
|
|
261
264
|
T as APIError,
|
|
262
265
|
i as ApplicationError,
|
|
263
|
-
|
|
266
|
+
E as CONNECTOR_DESTINATION_OPERATIONS,
|
|
264
267
|
I as CONNECTOR_SOURCE_OPERATIONS,
|
|
265
268
|
l as DEFAULT_LOCALE_CODE,
|
|
266
|
-
|
|
269
|
+
C as DefaultTimestamp,
|
|
267
270
|
v as EngineError,
|
|
268
|
-
|
|
269
|
-
|
|
271
|
+
g as FetchError,
|
|
272
|
+
O as OperationalError,
|
|
270
273
|
b as VueError,
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
274
|
+
A as WindowPromiseRejectionError,
|
|
275
|
+
R as WindowRuntimeError,
|
|
276
|
+
$ as buildFetchError,
|
|
277
|
+
_ as concatenateSerialisedErrorMessages,
|
|
278
|
+
w as convertMillisecondsToTimestamp,
|
|
279
|
+
k as convertODataTypeIdToUsageTypeId,
|
|
277
280
|
M as extractExtensionFromPath,
|
|
278
|
-
|
|
281
|
+
B as extractNameFromPath,
|
|
279
282
|
o as formatNumberAsDecimalNumber,
|
|
280
283
|
G as formatNumberAsDuration,
|
|
281
284
|
j as formatNumberAsSize,
|
|
@@ -287,9 +290,9 @@ export {
|
|
|
287
290
|
P as getRecordDelimiters,
|
|
288
291
|
X as getValueDelimiters,
|
|
289
292
|
V as lookupMimeTypeForExtension,
|
|
290
|
-
|
|
293
|
+
F as normalizeToError,
|
|
291
294
|
D as presentationViewTypeMap,
|
|
292
|
-
|
|
295
|
+
L as serialiseError,
|
|
293
296
|
x as useCytoscapeJS,
|
|
294
|
-
|
|
297
|
+
S as useDataTable
|
|
295
298
|
};
|
|
@@ -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 = 'areaLine' | 'areaSpline' | 'column' | 'line' | 'spline';
|
|
9
|
+
export type PresentationRangeTypeId = 'areaLine' | 'areaSpline' | 'bar' | 'column';
|
|
7
10
|
export type PresentationVisualConfig = {
|
|
8
11
|
content: PresentationVisualContentConfig;
|
|
9
12
|
views: PresentationVisualViewConfig[];
|
|
@@ -39,9 +42,8 @@ export interface PresentationVisualViewConfig {
|
|
|
39
42
|
}
|
|
40
43
|
export interface PresentationVisualCartesianChartViewConfig extends PresentationVisualViewConfig {
|
|
41
44
|
categoryId: 'cartesianChart';
|
|
42
|
-
typeId:
|
|
45
|
+
typeId: PresentationCartesianTypeId;
|
|
43
46
|
}
|
|
44
|
-
export type PresentationVisualCartesianTypeId = 'areaLine' | 'areaSpline' | 'bar' | 'column' | 'line' | 'pyramid' | 'spline';
|
|
45
47
|
export interface PresentationVisualChordDiagramViewConfig extends PresentationVisualViewConfig {
|
|
46
48
|
categoryId: 'chordDiagram';
|
|
47
49
|
}
|
|
@@ -50,14 +52,12 @@ export interface PresentationVisualPeriodFlowBoundariesChartViewConfig extends P
|
|
|
50
52
|
}
|
|
51
53
|
export interface PresentationVisualPolarChartViewConfig extends PresentationVisualViewConfig {
|
|
52
54
|
categoryId: 'polarChart';
|
|
53
|
-
typeId:
|
|
55
|
+
typeId: PresentationPolarTypeId;
|
|
54
56
|
}
|
|
55
|
-
export type PresentationVisualPolarTypeId = 'area' | 'column' | 'line';
|
|
56
57
|
export interface PresentationVisualRangeChartViewConfig extends PresentationVisualViewConfig {
|
|
57
58
|
categoryId: 'rangeChart';
|
|
58
|
-
typeId:
|
|
59
|
+
typeId: PresentationRangeTypeId;
|
|
59
60
|
}
|
|
60
|
-
export type PresentationVisualRangeTypeId = 'area' | 'bar' | 'column';
|
|
61
61
|
export interface PresentationVisualSankeyDiagramViewConfig extends PresentationVisualViewConfig {
|
|
62
62
|
categoryId: 'sankeyDiagram';
|
|
63
63
|
}
|
|
@@ -72,7 +72,7 @@ export interface PresentationVisualViewType {
|
|
|
72
72
|
}
|
|
73
73
|
export interface PresentationVisualCartesianChartViewType extends PresentationVisualViewType {
|
|
74
74
|
categoryId: 'cartesianChart';
|
|
75
|
-
typeId:
|
|
75
|
+
typeId: PresentationCartesianTypeId;
|
|
76
76
|
label: Record<string, string>;
|
|
77
77
|
}
|
|
78
78
|
export interface PresentationVisualChordDiagramViewType extends PresentationVisualViewType {
|
|
@@ -85,12 +85,12 @@ export interface PresentationVisualPeriodFlowBoundariesChartViewType extends Pre
|
|
|
85
85
|
}
|
|
86
86
|
export interface PresentationVisualPolarChartViewType extends PresentationVisualViewType {
|
|
87
87
|
categoryId: 'polarChart';
|
|
88
|
-
typeId:
|
|
88
|
+
typeId: PresentationPolarTypeId;
|
|
89
89
|
label: Record<string, string>;
|
|
90
90
|
}
|
|
91
91
|
export interface PresentationVisualRangeChartViewType extends PresentationVisualViewType {
|
|
92
92
|
categoryId: 'rangeChart';
|
|
93
|
-
typeId:
|
|
93
|
+
typeId: PresentationRangeTypeId;
|
|
94
94
|
label: Record<string, string>;
|
|
95
95
|
}
|
|
96
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,
|
|
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