genesys-spark-chart-components 4.188.1 → 4.188.2
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.
- package/dist/cjs/{color-palette-BAYEKNyY.js → color-palette-Vmg2LQJ1.js} +1 -1
- package/dist/cjs/genesys-chart-webcomponents.cjs.js +3 -3
- package/dist/cjs/gux-chart-column-beta.cjs.entry.js +2 -2
- package/dist/cjs/gux-chart-donut-beta.cjs.entry.js +2 -2
- package/dist/cjs/gux-chart-line-beta.cjs.entry.js +2 -2
- package/dist/cjs/gux-chart-pie-beta.cjs.entry.js +2 -2
- package/dist/cjs/gux-chart-scatter-plot-beta.cjs.entry.js +2 -2
- package/dist/cjs/gux-visualization-beta.cjs.entry.js +2303 -2230
- package/dist/cjs/{index-Db4-7Uyl.js → index-DEg9dZRu.js} +77 -22
- package/dist/cjs/loader.cjs.js +2 -2
- package/dist/collection/collection-manifest.json +2 -2
- package/dist/collection/components/beta/gux-chart-column/gux-chart-column.js +18 -21
- package/dist/collection/components/beta/gux-chart-donut/gux-chart-donut.js +32 -35
- package/dist/collection/components/beta/gux-chart-line/gux-chart-line.js +26 -28
- package/dist/collection/components/beta/gux-chart-pie/gux-chart-pie.js +14 -16
- package/dist/collection/components/beta/gux-chart-scatter-plot/gux-chart-scatter-plot.js +22 -24
- package/dist/collection/components/beta/gux-visualization/gux-visualization.js +4 -6
- package/dist/collection/test/mocks/vega-embed.js +13 -0
- package/dist/collection/test/mocks/vega.js +2 -0
- package/dist/esm/{color-palette-BeXqrzDD.js → color-palette-CjGZZVKW.js} +1 -1
- package/dist/esm/genesys-chart-webcomponents.js +4 -4
- package/dist/esm/gux-chart-column-beta.entry.js +2 -2
- package/dist/esm/gux-chart-donut-beta.entry.js +2 -2
- package/dist/esm/gux-chart-line-beta.entry.js +2 -2
- package/dist/esm/gux-chart-pie-beta.entry.js +2 -2
- package/dist/esm/gux-chart-scatter-plot-beta.entry.js +2 -2
- package/dist/esm/gux-visualization-beta.entry.js +2303 -2230
- package/dist/esm/{index-DohbbG4E.js → index-WPqt-wWR.js} +77 -22
- package/dist/esm/loader.js +3 -3
- package/dist/genesys-chart-webcomponents/genesys-chart-webcomponents.esm.js +1 -1
- package/dist/genesys-chart-webcomponents/{p-ad47e6b4.entry.js → p-0783e454.entry.js} +1 -1
- package/dist/genesys-chart-webcomponents/{p-d88dbecf.entry.js → p-6b482b95.entry.js} +1 -1
- package/dist/genesys-chart-webcomponents/p-85cae9cf.entry.js +11 -0
- package/dist/genesys-chart-webcomponents/{p-b5a16a43.entry.js → p-9daaf9d3.entry.js} +1 -1
- package/dist/genesys-chart-webcomponents/{p-BeXqrzDD.js → p-CjGZZVKW.js} +1 -1
- package/dist/genesys-chart-webcomponents/p-WPqt-wWR.js +2 -0
- package/dist/genesys-chart-webcomponents/{p-8e816dd9.entry.js → p-b71cd732.entry.js} +1 -1
- package/dist/genesys-chart-webcomponents/{p-fbd6af28.entry.js → p-cfb4e3dc.entry.js} +1 -1
- package/dist/types/stencil-public-runtime.d.ts +49 -2
- package/package.json +5 -5
- package/dist/genesys-chart-webcomponents/p-66a082d9.entry.js +0 -11
- package/dist/genesys-chart-webcomponents/p-DohbbG4E.js +0 -2
|
@@ -19,16 +19,48 @@ function _interopNamespace(e) {
|
|
|
19
19
|
}
|
|
20
20
|
|
|
21
21
|
const NAMESPACE = 'genesys-chart-webcomponents';
|
|
22
|
-
const BUILD = /* genesys-chart-webcomponents */ { hydratedSelectorName: "hydrated", lazyLoad: true, updatable: true};
|
|
22
|
+
const BUILD = /* genesys-chart-webcomponents */ { hydratedSelectorName: "hydrated", lazyLoad: true, prop: true, propChangeCallback: true, updatable: true};
|
|
23
23
|
|
|
24
24
|
/*
|
|
25
|
-
Stencil Client Platform v4.
|
|
25
|
+
Stencil Client Platform v4.38.3 | MIT Licensed | https://stenciljs.com
|
|
26
26
|
*/
|
|
27
27
|
var __defProp = Object.defineProperty;
|
|
28
28
|
var __export = (target, all) => {
|
|
29
29
|
for (var name in all)
|
|
30
30
|
__defProp(target, name, { get: all[name], enumerable: true });
|
|
31
31
|
};
|
|
32
|
+
var reWireGetterSetter = (instance, hostRef) => {
|
|
33
|
+
var _a;
|
|
34
|
+
const cmpMeta = hostRef.$cmpMeta$;
|
|
35
|
+
const members = Object.entries((_a = cmpMeta.$members$) != null ? _a : {});
|
|
36
|
+
members.map(([memberName, [memberFlags]]) => {
|
|
37
|
+
if ((memberFlags & 31 /* Prop */ || memberFlags & 32 /* State */)) {
|
|
38
|
+
const ogValue = instance[memberName];
|
|
39
|
+
const ogDescriptor = getPropertyDescriptor(Object.getPrototypeOf(instance), memberName) || Object.getOwnPropertyDescriptor(instance, memberName);
|
|
40
|
+
if (ogDescriptor) {
|
|
41
|
+
Object.defineProperty(instance, memberName, {
|
|
42
|
+
get() {
|
|
43
|
+
return ogDescriptor.get.call(this);
|
|
44
|
+
},
|
|
45
|
+
set(newValue) {
|
|
46
|
+
ogDescriptor.set.call(this, newValue);
|
|
47
|
+
},
|
|
48
|
+
configurable: true,
|
|
49
|
+
enumerable: true
|
|
50
|
+
});
|
|
51
|
+
}
|
|
52
|
+
instance[memberName] = hostRef.$instanceValues$.has(memberName) ? hostRef.$instanceValues$.get(memberName) : ogValue;
|
|
53
|
+
}
|
|
54
|
+
});
|
|
55
|
+
};
|
|
56
|
+
function getPropertyDescriptor(obj, memberName) {
|
|
57
|
+
while (obj) {
|
|
58
|
+
const desc = Object.getOwnPropertyDescriptor(obj, memberName);
|
|
59
|
+
if (desc == null ? void 0 : desc.get) return desc;
|
|
60
|
+
obj = Object.getPrototypeOf(obj);
|
|
61
|
+
}
|
|
62
|
+
return void 0;
|
|
63
|
+
}
|
|
32
64
|
|
|
33
65
|
// src/client/client-host-ref.ts
|
|
34
66
|
var getHostRef = (ref) => {
|
|
@@ -38,21 +70,29 @@ var getHostRef = (ref) => {
|
|
|
38
70
|
return void 0;
|
|
39
71
|
};
|
|
40
72
|
var registerInstance = (lazyInstance, hostRef) => {
|
|
73
|
+
if (!hostRef) return;
|
|
41
74
|
lazyInstance.__stencil__getHostRef = () => hostRef;
|
|
42
75
|
hostRef.$lazyInstance$ = lazyInstance;
|
|
76
|
+
if (hostRef.$cmpMeta$.$flags$ & 512 /* hasModernPropertyDecls */ && (BUILD.prop)) {
|
|
77
|
+
reWireGetterSetter(lazyInstance, hostRef);
|
|
78
|
+
}
|
|
43
79
|
};
|
|
44
80
|
var registerHost = (hostElement, cmpMeta) => {
|
|
45
81
|
const hostRef = {
|
|
46
82
|
$flags$: 0,
|
|
47
83
|
$hostElement$: hostElement,
|
|
48
84
|
$cmpMeta$: cmpMeta,
|
|
49
|
-
$instanceValues$: /* @__PURE__ */ new Map()
|
|
85
|
+
$instanceValues$: /* @__PURE__ */ new Map(),
|
|
86
|
+
$serializerValues$: /* @__PURE__ */ new Map()
|
|
50
87
|
};
|
|
51
88
|
{
|
|
52
89
|
hostRef.$onReadyPromise$ = new Promise((r) => hostRef.$onReadyResolve$ = r);
|
|
53
90
|
hostElement["s-p"] = [];
|
|
54
91
|
hostElement["s-rc"] = [];
|
|
55
92
|
}
|
|
93
|
+
{
|
|
94
|
+
hostRef.$fetchedCbList$ = [];
|
|
95
|
+
}
|
|
56
96
|
const ref = hostRef;
|
|
57
97
|
hostElement.__stencil__getHostRef = () => ref;
|
|
58
98
|
return ref;
|
|
@@ -463,12 +503,6 @@ createSupportsRuleRe("::slotted");
|
|
|
463
503
|
createSupportsRuleRe(":host");
|
|
464
504
|
createSupportsRuleRe(":host-context");
|
|
465
505
|
var parsePropertyValue = (propValue, propType, isFormAssociated) => {
|
|
466
|
-
if (typeof propValue === "string" && (propType & 16 /* Unknown */ || propType & 8 /* Any */) && (propValue.startsWith("{") && propValue.endsWith("}") || propValue.startsWith("[") && propValue.endsWith("]"))) {
|
|
467
|
-
try {
|
|
468
|
-
return JSON.parse(propValue);
|
|
469
|
-
} catch (e) {
|
|
470
|
-
}
|
|
471
|
-
}
|
|
472
506
|
if (propValue != null && !isComplexType(propValue)) {
|
|
473
507
|
if (propType & 4 /* Boolean */) {
|
|
474
508
|
{
|
|
@@ -858,6 +892,11 @@ var dispatchHooks = (hostRef, isInitialLoad) => {
|
|
|
858
892
|
}
|
|
859
893
|
let maybePromise;
|
|
860
894
|
if (isInitialLoad) {
|
|
895
|
+
{
|
|
896
|
+
if (hostRef.$fetchedCbList$.length) {
|
|
897
|
+
hostRef.$fetchedCbList$.forEach((cb) => cb(elm));
|
|
898
|
+
}
|
|
899
|
+
}
|
|
861
900
|
maybePromise = safeCall(instance, "componentWillLoad", void 0, elm);
|
|
862
901
|
} else {
|
|
863
902
|
maybePromise = safeCall(instance, "componentWillUpdate", void 0, elm);
|
|
@@ -1027,9 +1066,17 @@ var setValue = (ref, propName, newVal, cmpMeta) => {
|
|
|
1027
1066
|
var proxyComponent = (Cstr, cmpMeta, flags) => {
|
|
1028
1067
|
var _a, _b;
|
|
1029
1068
|
const prototype = Cstr.prototype;
|
|
1030
|
-
if (cmpMeta.$members$ ||
|
|
1031
|
-
|
|
1032
|
-
cmpMeta.$watchers$
|
|
1069
|
+
if (cmpMeta.$members$ || BUILD.propChangeCallback) {
|
|
1070
|
+
{
|
|
1071
|
+
if (Cstr.watchers && !cmpMeta.$watchers$) {
|
|
1072
|
+
cmpMeta.$watchers$ = Cstr.watchers;
|
|
1073
|
+
}
|
|
1074
|
+
if (Cstr.deserializers && !cmpMeta.$deserializers$) {
|
|
1075
|
+
cmpMeta.$deserializers$ = Cstr.deserializers;
|
|
1076
|
+
}
|
|
1077
|
+
if (Cstr.serializers && !cmpMeta.$serializers$) {
|
|
1078
|
+
cmpMeta.$serializers$ = Cstr.serializers;
|
|
1079
|
+
}
|
|
1033
1080
|
}
|
|
1034
1081
|
const members = Object.entries((_a = cmpMeta.$members$) != null ? _a : {});
|
|
1035
1082
|
members.map(([memberName, [memberFlags]]) => {
|
|
@@ -1064,8 +1111,6 @@ var proxyComponent = (Cstr, cmpMeta, flags) => {
|
|
|
1064
1111
|
const currentValue = memberFlags & 32 /* State */ ? this[memberName] : ref.$hostElement$[memberName];
|
|
1065
1112
|
if (typeof currentValue === "undefined" && ref.$instanceValues$.get(memberName)) {
|
|
1066
1113
|
newValue = ref.$instanceValues$.get(memberName);
|
|
1067
|
-
} else if (!ref.$instanceValues$.get(memberName) && currentValue) {
|
|
1068
|
-
ref.$instanceValues$.set(memberName, currentValue);
|
|
1069
1114
|
}
|
|
1070
1115
|
origSetter.apply(this, [
|
|
1071
1116
|
parsePropertyValue(
|
|
@@ -1080,7 +1125,7 @@ var proxyComponent = (Cstr, cmpMeta, flags) => {
|
|
|
1080
1125
|
if ((flags & 1 /* isElementConstructor */) === 0 || (cmpMeta.$members$[memberName][0] & 4096 /* Setter */) === 0) {
|
|
1081
1126
|
setValue(this, memberName, newValue, cmpMeta);
|
|
1082
1127
|
if (flags & 1 /* isElementConstructor */ && !ref.$lazyInstance$) {
|
|
1083
|
-
ref.$
|
|
1128
|
+
ref.$fetchedCbList$.push(() => {
|
|
1084
1129
|
if (cmpMeta.$members$[memberName][0] & 4096 /* Setter */ && ref.$lazyInstance$[memberName] !== ref.$instanceValues$.get(memberName)) {
|
|
1085
1130
|
ref.$lazyInstance$[memberName] = newValue;
|
|
1086
1131
|
}
|
|
@@ -1101,7 +1146,9 @@ var proxyComponent = (Cstr, cmpMeta, flags) => {
|
|
|
1101
1146
|
if (ref.$lazyInstance$) {
|
|
1102
1147
|
setterSetVal();
|
|
1103
1148
|
} else {
|
|
1104
|
-
ref.$
|
|
1149
|
+
ref.$fetchedCbList$.push(() => {
|
|
1150
|
+
setterSetVal();
|
|
1151
|
+
});
|
|
1105
1152
|
}
|
|
1106
1153
|
}
|
|
1107
1154
|
}
|
|
@@ -1114,14 +1161,15 @@ var proxyComponent = (Cstr, cmpMeta, flags) => {
|
|
|
1114
1161
|
plt.jmp(() => {
|
|
1115
1162
|
var _a2;
|
|
1116
1163
|
const propName = attrNameToPropName.get(attrName);
|
|
1164
|
+
const hostRef = getHostRef(this);
|
|
1117
1165
|
if (this.hasOwnProperty(propName) && BUILD.lazyLoad) {
|
|
1118
1166
|
newValue = this[propName];
|
|
1119
1167
|
delete this[propName];
|
|
1120
|
-
}
|
|
1168
|
+
}
|
|
1169
|
+
if (prototype.hasOwnProperty(propName) && typeof this[propName] === "number" && // cast type to number to avoid TS compiler issues
|
|
1121
1170
|
this[propName] == newValue) {
|
|
1122
1171
|
return;
|
|
1123
1172
|
} else if (propName == null) {
|
|
1124
|
-
const hostRef = getHostRef(this);
|
|
1125
1173
|
const flags2 = hostRef == null ? void 0 : hostRef.$flags$;
|
|
1126
1174
|
if (hostRef && flags2 && !(flags2 & 8 /* isConstructingInstance */) && flags2 & 128 /* isWatchReady */ && newValue !== oldValue) {
|
|
1127
1175
|
const instance = hostRef.$lazyInstance$ ;
|
|
@@ -1134,9 +1182,12 @@ var proxyComponent = (Cstr, cmpMeta, flags) => {
|
|
|
1134
1182
|
}
|
|
1135
1183
|
return;
|
|
1136
1184
|
}
|
|
1185
|
+
const propFlags = members.find(([m]) => m === propName);
|
|
1186
|
+
if (propFlags && propFlags[1][0] & 4 /* Boolean */) {
|
|
1187
|
+
newValue = newValue === null || newValue === "false" ? false : true;
|
|
1188
|
+
}
|
|
1137
1189
|
const propDesc = Object.getOwnPropertyDescriptor(prototype, propName);
|
|
1138
|
-
|
|
1139
|
-
if (newValue !== this[propName] && (!propDesc.get || !!propDesc.set)) {
|
|
1190
|
+
if (newValue != this[propName] && (!propDesc.get || !!propDesc.set)) {
|
|
1140
1191
|
this[propName] = newValue;
|
|
1141
1192
|
}
|
|
1142
1193
|
});
|
|
@@ -1177,6 +1228,8 @@ var initializeComponent = async (elm, hostRef, cmpMeta, hmrVersionId) => {
|
|
|
1177
1228
|
if (!Cstr.isProxied) {
|
|
1178
1229
|
{
|
|
1179
1230
|
cmpMeta.$watchers$ = Cstr.watchers;
|
|
1231
|
+
cmpMeta.$serializers$ = Cstr.serializers;
|
|
1232
|
+
cmpMeta.$deserializers$ = Cstr.deserializers;
|
|
1180
1233
|
}
|
|
1181
1234
|
proxyComponent(Cstr, cmpMeta, 2 /* proxyState */);
|
|
1182
1235
|
Cstr.isProxied = true;
|
|
@@ -1252,7 +1305,7 @@ var connectedCallback = (elm) => {
|
|
|
1252
1305
|
}
|
|
1253
1306
|
if (cmpMeta.$members$) {
|
|
1254
1307
|
Object.entries(cmpMeta.$members$).map(([memberName, [memberFlags]]) => {
|
|
1255
|
-
if (memberFlags & 31 /* Prop */ && elm.
|
|
1308
|
+
if (memberFlags & 31 /* Prop */ && memberName in elm && elm[memberName] !== Object.prototype[memberName]) {
|
|
1256
1309
|
const value = elm[memberName];
|
|
1257
1310
|
delete elm[memberName];
|
|
1258
1311
|
elm[memberName] = value;
|
|
@@ -1316,7 +1369,7 @@ var bootstrapLazy = (lazyBundles, options = {}) => {
|
|
|
1316
1369
|
let hasSlotRelocation = false;
|
|
1317
1370
|
lazyBundles.map((lazyBundle) => {
|
|
1318
1371
|
lazyBundle[1].map((compactMeta) => {
|
|
1319
|
-
var _a2;
|
|
1372
|
+
var _a2, _b, _c;
|
|
1320
1373
|
const cmpMeta = {
|
|
1321
1374
|
$flags$: compactMeta[0],
|
|
1322
1375
|
$tagName$: compactMeta[1],
|
|
@@ -1331,6 +1384,8 @@ var bootstrapLazy = (lazyBundles, options = {}) => {
|
|
|
1331
1384
|
}
|
|
1332
1385
|
{
|
|
1333
1386
|
cmpMeta.$watchers$ = (_a2 = compactMeta[4]) != null ? _a2 : {};
|
|
1387
|
+
cmpMeta.$serializers$ = (_b = compactMeta[5]) != null ? _b : {};
|
|
1388
|
+
cmpMeta.$deserializers$ = (_c = compactMeta[6]) != null ? _c : {};
|
|
1334
1389
|
}
|
|
1335
1390
|
const tagName = cmpMeta.$tagName$;
|
|
1336
1391
|
const HostElement = class extends HTMLElement {
|
package/dist/cjs/loader.cjs.js
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var index = require('./index-
|
|
3
|
+
var index = require('./index-DEg9dZRu.js');
|
|
4
4
|
var appGlobals = require('./app-globals-V2Kpy_OQ.js');
|
|
5
5
|
|
|
6
6
|
const defineCustomElements = async (win, options) => {
|
|
7
7
|
if (typeof window === 'undefined') return undefined;
|
|
8
8
|
await appGlobals.globalScripts();
|
|
9
|
-
return index.bootstrapLazy([["gux-visualization-beta.cjs",[[257,"gux-visualization-beta",{"visualizationSpec":[16
|
|
9
|
+
return index.bootstrapLazy([["gux-visualization-beta.cjs",[[257,"gux-visualization-beta",{"visualizationSpec":[16],"embedOptions":[16],"screenreaderDescription":[1,"screenreader-description"]}]]],["gux-chart-column-beta.cjs",[[257,"gux-chart-column-beta",{"labelColor":[1,"label-color"],"domainColor":[1,"domain-color"],"chartData":[16],"xTickLabelSlant":[4,"x-tick-label-slant"],"includeLegend":[4,"include-legend"],"xFieldName":[1,"x-field-name"],"yFieldName":[1,"y-field-name"],"xAxisTitle":[1,"x-axis-title"],"yAxisTitle":[1,"y-axis-title"],"legendTitle":[1,"legend-title"],"legendPosition":[1,"legend-position"],"chartLayers":[16],"embedOptions":[16]},null,{"chartData":["parseData"]}]]],["gux-chart-donut-beta.cjs",[[257,"gux-chart-donut-beta",{"chartData":[16],"includeLegend":[4,"include-legend"],"legendPosition":[1,"legend-position"],"legendTitle":[1,"legend-title"],"colorFieldName":[1,"color-field-name"],"outerRadius":[2,"outer-radius"],"innerRadius":[2,"inner-radius"],"labelRadius":[2,"label-radius"],"labelField":[1,"label-field"],"gauge":[4],"centerText":[1,"center-text"],"centerSubText":[1,"center-sub-text"],"showTooltip":[4,"show-tooltip"],"tooltipOptions":[16],"legendX":[2,"legend-x"],"legendY":[2,"legend-y"],"legendFontSize":[2,"legend-font-size"],"legendSymbolSize":[2,"legend-symbol-size"],"embedOptions":[16]},null,{"chartData":["parseData"]}]]],["gux-chart-line-beta.cjs",[[257,"gux-chart-line-beta",{"labelColor":[1,"label-color"],"domainColor":[1,"domain-color"],"chartData":[16],"xTickLabelSlant":[4,"x-tick-label-slant"],"includeLegend":[4,"include-legend"],"legendPosition":[1,"legend-position"],"includeDataPointMarkers":[4,"include-data-point-markers"],"xFieldName":[1,"x-field-name"],"xAxisTitle":[1,"x-axis-title"],"yFieldName":[1,"y-field-name"],"yAxisTitle":[1,"y-axis-title"],"legendTitle":[1,"legend-title"],"colorFieldName":[1,"color-field-name"],"strokeDash":[4,"stroke-dash"],"interpolation":[1],"embedOptions":[16]},null,{"chartData":["parseData"]}]]],["gux-chart-pie-beta.cjs",[[257,"gux-chart-pie-beta",{"chartData":[16],"includeLegend":[4,"include-legend"],"legendPosition":[1,"legend-position"],"legendTitle":[1,"legend-title"],"colorFieldName":[1,"color-field-name"],"outerRadius":[2,"outer-radius"],"labelRadius":[2,"label-radius"],"labelField":[1,"label-field"],"embedOptions":[16]},null,{"chartData":["parseData"]}]]],["gux-chart-scatter-plot-beta.cjs",[[257,"gux-chart-scatter-plot-beta",{"labelColor":[1,"label-color"],"domainColor":[1,"domain-color"],"chartData":[16],"xTickLabelSlant":[4,"x-tick-label-slant"],"includeLegend":[4,"include-legend"],"legendPosition":[1,"legend-position"],"xFieldName":[1,"x-field-name"],"xAxisTitle":[1,"x-axis-title"],"yFieldName":[1,"y-field-name"],"yAxisTitle":[1,"y-axis-title"],"legendTitle":[1,"legend-title"],"colorFieldName":[1,"color-field-name"],"useShape":[1,"use-shape"],"embedOptions":[16]},null,{"chartData":["parseData"]}]]]], options);
|
|
10
10
|
};
|
|
11
11
|
|
|
12
12
|
exports.setNonce = index.setNonce;
|
|
@@ -140,7 +140,6 @@ export class GuxColumnChart {
|
|
|
140
140
|
return {
|
|
141
141
|
"labelColor": {
|
|
142
142
|
"type": "string",
|
|
143
|
-
"attribute": "label-color",
|
|
144
143
|
"mutable": false,
|
|
145
144
|
"complexType": {
|
|
146
145
|
"original": "string",
|
|
@@ -156,11 +155,11 @@ export class GuxColumnChart {
|
|
|
156
155
|
"getter": false,
|
|
157
156
|
"setter": false,
|
|
158
157
|
"reflect": false,
|
|
158
|
+
"attribute": "label-color",
|
|
159
159
|
"defaultValue": "VisualizationColorUtil.DEFAULT_LABEL_COLOR"
|
|
160
160
|
},
|
|
161
161
|
"domainColor": {
|
|
162
162
|
"type": "string",
|
|
163
|
-
"attribute": "domain-color",
|
|
164
163
|
"mutable": false,
|
|
165
164
|
"complexType": {
|
|
166
165
|
"original": "string",
|
|
@@ -176,11 +175,11 @@ export class GuxColumnChart {
|
|
|
176
175
|
"getter": false,
|
|
177
176
|
"setter": false,
|
|
178
177
|
"reflect": false,
|
|
178
|
+
"attribute": "domain-color",
|
|
179
179
|
"defaultValue": "VisualizationColorUtil.DEFAULT_DOMAIN_COLOR"
|
|
180
180
|
},
|
|
181
181
|
"chartData": {
|
|
182
182
|
"type": "unknown",
|
|
183
|
-
"attribute": "chart-data",
|
|
184
183
|
"mutable": false,
|
|
185
184
|
"complexType": {
|
|
186
185
|
"original": "Record<string, any>",
|
|
@@ -203,7 +202,6 @@ export class GuxColumnChart {
|
|
|
203
202
|
},
|
|
204
203
|
"xTickLabelSlant": {
|
|
205
204
|
"type": "boolean",
|
|
206
|
-
"attribute": "x-tick-label-slant",
|
|
207
205
|
"mutable": false,
|
|
208
206
|
"complexType": {
|
|
209
207
|
"original": "boolean",
|
|
@@ -218,11 +216,11 @@ export class GuxColumnChart {
|
|
|
218
216
|
},
|
|
219
217
|
"getter": false,
|
|
220
218
|
"setter": false,
|
|
221
|
-
"reflect": false
|
|
219
|
+
"reflect": false,
|
|
220
|
+
"attribute": "x-tick-label-slant"
|
|
222
221
|
},
|
|
223
222
|
"includeLegend": {
|
|
224
223
|
"type": "boolean",
|
|
225
|
-
"attribute": "include-legend",
|
|
226
224
|
"mutable": false,
|
|
227
225
|
"complexType": {
|
|
228
226
|
"original": "boolean",
|
|
@@ -237,11 +235,11 @@ export class GuxColumnChart {
|
|
|
237
235
|
},
|
|
238
236
|
"getter": false,
|
|
239
237
|
"setter": false,
|
|
240
|
-
"reflect": false
|
|
238
|
+
"reflect": false,
|
|
239
|
+
"attribute": "include-legend"
|
|
241
240
|
},
|
|
242
241
|
"xFieldName": {
|
|
243
242
|
"type": "string",
|
|
244
|
-
"attribute": "x-field-name",
|
|
245
243
|
"mutable": false,
|
|
246
244
|
"complexType": {
|
|
247
245
|
"original": "string",
|
|
@@ -256,11 +254,11 @@ export class GuxColumnChart {
|
|
|
256
254
|
},
|
|
257
255
|
"getter": false,
|
|
258
256
|
"setter": false,
|
|
259
|
-
"reflect": false
|
|
257
|
+
"reflect": false,
|
|
258
|
+
"attribute": "x-field-name"
|
|
260
259
|
},
|
|
261
260
|
"yFieldName": {
|
|
262
261
|
"type": "string",
|
|
263
|
-
"attribute": "y-field-name",
|
|
264
262
|
"mutable": false,
|
|
265
263
|
"complexType": {
|
|
266
264
|
"original": "string",
|
|
@@ -275,11 +273,11 @@ export class GuxColumnChart {
|
|
|
275
273
|
},
|
|
276
274
|
"getter": false,
|
|
277
275
|
"setter": false,
|
|
278
|
-
"reflect": false
|
|
276
|
+
"reflect": false,
|
|
277
|
+
"attribute": "y-field-name"
|
|
279
278
|
},
|
|
280
279
|
"xAxisTitle": {
|
|
281
280
|
"type": "string",
|
|
282
|
-
"attribute": "x-axis-title",
|
|
283
281
|
"mutable": false,
|
|
284
282
|
"complexType": {
|
|
285
283
|
"original": "string",
|
|
@@ -294,11 +292,11 @@ export class GuxColumnChart {
|
|
|
294
292
|
},
|
|
295
293
|
"getter": false,
|
|
296
294
|
"setter": false,
|
|
297
|
-
"reflect": false
|
|
295
|
+
"reflect": false,
|
|
296
|
+
"attribute": "x-axis-title"
|
|
298
297
|
},
|
|
299
298
|
"yAxisTitle": {
|
|
300
299
|
"type": "string",
|
|
301
|
-
"attribute": "y-axis-title",
|
|
302
300
|
"mutable": false,
|
|
303
301
|
"complexType": {
|
|
304
302
|
"original": "string",
|
|
@@ -313,11 +311,11 @@ export class GuxColumnChart {
|
|
|
313
311
|
},
|
|
314
312
|
"getter": false,
|
|
315
313
|
"setter": false,
|
|
316
|
-
"reflect": false
|
|
314
|
+
"reflect": false,
|
|
315
|
+
"attribute": "y-axis-title"
|
|
317
316
|
},
|
|
318
317
|
"legendTitle": {
|
|
319
318
|
"type": "string",
|
|
320
|
-
"attribute": "legend-title",
|
|
321
319
|
"mutable": false,
|
|
322
320
|
"complexType": {
|
|
323
321
|
"original": "string",
|
|
@@ -332,11 +330,11 @@ export class GuxColumnChart {
|
|
|
332
330
|
},
|
|
333
331
|
"getter": false,
|
|
334
332
|
"setter": false,
|
|
335
|
-
"reflect": false
|
|
333
|
+
"reflect": false,
|
|
334
|
+
"attribute": "legend-title"
|
|
336
335
|
},
|
|
337
336
|
"legendPosition": {
|
|
338
337
|
"type": "string",
|
|
339
|
-
"attribute": "legend-position",
|
|
340
338
|
"mutable": false,
|
|
341
339
|
"complexType": {
|
|
342
340
|
"original": "| 'left'\n | 'right'\n | 'top'\n | 'bottom'\n | 'top-left'\n | 'top-right'\n | 'bottom-left'\n | 'bottom-right'\n | 'none'",
|
|
@@ -352,11 +350,11 @@ export class GuxColumnChart {
|
|
|
352
350
|
"getter": false,
|
|
353
351
|
"setter": false,
|
|
354
352
|
"reflect": false,
|
|
353
|
+
"attribute": "legend-position",
|
|
355
354
|
"defaultValue": "'right'"
|
|
356
355
|
},
|
|
357
356
|
"chartLayers": {
|
|
358
357
|
"type": "unknown",
|
|
359
|
-
"attribute": "chart-layers",
|
|
360
358
|
"mutable": false,
|
|
361
359
|
"complexType": {
|
|
362
360
|
"original": "string[]",
|
|
@@ -374,7 +372,6 @@ export class GuxColumnChart {
|
|
|
374
372
|
},
|
|
375
373
|
"embedOptions": {
|
|
376
374
|
"type": "unknown",
|
|
377
|
-
"attribute": "embed-options",
|
|
378
375
|
"mutable": false,
|
|
379
376
|
"complexType": {
|
|
380
377
|
"original": "EmbedOptions",
|
|
@@ -383,7 +380,7 @@ export class GuxColumnChart {
|
|
|
383
380
|
"EmbedOptions": {
|
|
384
381
|
"location": "import",
|
|
385
382
|
"path": "vega-embed",
|
|
386
|
-
"id": "../../node_modules/vega-embed/build/
|
|
383
|
+
"id": "../../node_modules/vega-embed/build/embed.d.ts::EmbedOptions"
|
|
387
384
|
}
|
|
388
385
|
}
|
|
389
386
|
},
|