@unovis/angular 1.3.1 → 1.3.2-beta.0
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/lib/bundles/unovis-angular.umd.js +685 -585
- package/dist/lib/bundles/unovis-angular.umd.js.map +1 -1
- package/dist/lib/components/chord-diagram/chord-diagram.component.d.ts +91 -0
- package/dist/lib/components/chord-diagram/chord-diagram.module.d.ts +7 -0
- package/dist/lib/components.d.ts +12 -10
- package/dist/lib/esm2015/components/chord-diagram/chord-diagram.component.js +79 -0
- package/dist/lib/esm2015/components/chord-diagram/chord-diagram.module.js +18 -0
- package/dist/lib/esm2015/components.js +13 -11
- package/dist/lib/fesm2015/unovis-angular.js +610 -520
- package/dist/lib/fesm2015/unovis-angular.js.map +1 -1
- package/dist/lib/package.json +2 -2
- package/package.json +2 -2
|
@@ -687,102 +687,6 @@
|
|
|
687
687
|
}]
|
|
688
688
|
}] });
|
|
689
689
|
|
|
690
|
-
// !!! This code was automatically generated. You should not change it !!!
|
|
691
|
-
var VisLineComponent = /** @class */ (function () {
|
|
692
|
-
function VisLineComponent() {
|
|
693
|
-
}
|
|
694
|
-
VisLineComponent.prototype.ngAfterViewInit = function () {
|
|
695
|
-
var _a;
|
|
696
|
-
this.component = new ts.Line(this.getConfig());
|
|
697
|
-
if (this.data) {
|
|
698
|
-
this.component.setData(this.data);
|
|
699
|
-
(_a = this.componentContainer) === null || _a === void 0 ? void 0 : _a.render();
|
|
700
|
-
}
|
|
701
|
-
};
|
|
702
|
-
VisLineComponent.prototype.ngOnChanges = function (changes) {
|
|
703
|
-
var _a, _b, _c;
|
|
704
|
-
if (changes.data) {
|
|
705
|
-
(_a = this.component) === null || _a === void 0 ? void 0 : _a.setData(this.data);
|
|
706
|
-
}
|
|
707
|
-
(_b = this.component) === null || _b === void 0 ? void 0 : _b.setConfig(this.getConfig());
|
|
708
|
-
(_c = this.componentContainer) === null || _c === void 0 ? void 0 : _c.render();
|
|
709
|
-
};
|
|
710
|
-
VisLineComponent.prototype.getConfig = function () {
|
|
711
|
-
var _d = this, duration = _d.duration, events = _d.events, attributes = _d.attributes, x = _d.x, y = _d.y, id = _d.id, color = _d.color, xScale = _d.xScale, yScale = _d.yScale, excludeFromDomainCalculation = _d.excludeFromDomainCalculation, curveType = _d.curveType, lineWidth = _d.lineWidth, lineDashArray = _d.lineDashArray, fallbackValue = _d.fallbackValue, highlightOnHover = _d.highlightOnHover, cursor = _d.cursor;
|
|
712
|
-
var config = { duration: duration, events: events, attributes: attributes, x: x, y: y, id: id, color: color, xScale: xScale, yScale: yScale, excludeFromDomainCalculation: excludeFromDomainCalculation, curveType: curveType, lineWidth: lineWidth, lineDashArray: lineDashArray, fallbackValue: fallbackValue, highlightOnHover: highlightOnHover, cursor: cursor };
|
|
713
|
-
var keys = Object.keys(config);
|
|
714
|
-
keys.forEach(function (key) {
|
|
715
|
-
if (config[key] === undefined)
|
|
716
|
-
delete config[key];
|
|
717
|
-
});
|
|
718
|
-
return config;
|
|
719
|
-
};
|
|
720
|
-
return VisLineComponent;
|
|
721
|
-
}());
|
|
722
|
-
VisLineComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisLineComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
723
|
-
VisLineComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: VisLineComponent, selector: "vis-line", inputs: { duration: "duration", events: "events", attributes: "attributes", x: "x", y: "y", id: "id", color: "color", xScale: "xScale", yScale: "yScale", excludeFromDomainCalculation: "excludeFromDomainCalculation", curveType: "curveType", lineWidth: "lineWidth", lineDashArray: "lineDashArray", fallbackValue: "fallbackValue", highlightOnHover: "highlightOnHover", cursor: "cursor", data: "data" }, providers: [{ provide: VisXYComponent, useExisting: VisLineComponent }], usesOnChanges: true, ngImport: i0__namespace, template: '', isInline: true });
|
|
724
|
-
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisLineComponent, decorators: [{
|
|
725
|
-
type: i0.Component,
|
|
726
|
-
args: [{
|
|
727
|
-
selector: 'vis-line',
|
|
728
|
-
template: '',
|
|
729
|
-
// eslint-disable-next-line no-use-before-define
|
|
730
|
-
providers: [{ provide: VisXYComponent, useExisting: VisLineComponent }],
|
|
731
|
-
}]
|
|
732
|
-
}], propDecorators: { duration: [{
|
|
733
|
-
type: i0.Input
|
|
734
|
-
}], events: [{
|
|
735
|
-
type: i0.Input
|
|
736
|
-
}], attributes: [{
|
|
737
|
-
type: i0.Input
|
|
738
|
-
}], x: [{
|
|
739
|
-
type: i0.Input
|
|
740
|
-
}], y: [{
|
|
741
|
-
type: i0.Input
|
|
742
|
-
}], id: [{
|
|
743
|
-
type: i0.Input
|
|
744
|
-
}], color: [{
|
|
745
|
-
type: i0.Input
|
|
746
|
-
}], xScale: [{
|
|
747
|
-
type: i0.Input
|
|
748
|
-
}], yScale: [{
|
|
749
|
-
type: i0.Input
|
|
750
|
-
}], excludeFromDomainCalculation: [{
|
|
751
|
-
type: i0.Input
|
|
752
|
-
}], curveType: [{
|
|
753
|
-
type: i0.Input
|
|
754
|
-
}], lineWidth: [{
|
|
755
|
-
type: i0.Input
|
|
756
|
-
}], lineDashArray: [{
|
|
757
|
-
type: i0.Input
|
|
758
|
-
}], fallbackValue: [{
|
|
759
|
-
type: i0.Input
|
|
760
|
-
}], highlightOnHover: [{
|
|
761
|
-
type: i0.Input
|
|
762
|
-
}], cursor: [{
|
|
763
|
-
type: i0.Input
|
|
764
|
-
}], data: [{
|
|
765
|
-
type: i0.Input
|
|
766
|
-
}] } });
|
|
767
|
-
|
|
768
|
-
// !!! This code was automatically generated. You should not change it !!!
|
|
769
|
-
var VisLineModule = /** @class */ (function () {
|
|
770
|
-
function VisLineModule() {
|
|
771
|
-
}
|
|
772
|
-
return VisLineModule;
|
|
773
|
-
}());
|
|
774
|
-
VisLineModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisLineModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
|
|
775
|
-
VisLineModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisLineModule, declarations: [VisLineComponent], exports: [VisLineComponent] });
|
|
776
|
-
VisLineModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisLineModule, imports: [[]] });
|
|
777
|
-
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisLineModule, decorators: [{
|
|
778
|
-
type: i0.NgModule,
|
|
779
|
-
args: [{
|
|
780
|
-
imports: [],
|
|
781
|
-
declarations: [VisLineComponent],
|
|
782
|
-
exports: [VisLineComponent],
|
|
783
|
-
}]
|
|
784
|
-
}] });
|
|
785
|
-
|
|
786
690
|
// !!! This code was automatically generated. You should not change it !!!
|
|
787
691
|
var VisAreaComponent = /** @class */ (function () {
|
|
788
692
|
function VisAreaComponent() {
|
|
@@ -1082,18 +986,18 @@
|
|
|
1082
986
|
}] });
|
|
1083
987
|
|
|
1084
988
|
// !!! This code was automatically generated. You should not change it !!!
|
|
1085
|
-
var
|
|
1086
|
-
function
|
|
989
|
+
var VisChordDiagramComponent = /** @class */ (function () {
|
|
990
|
+
function VisChordDiagramComponent() {
|
|
1087
991
|
}
|
|
1088
|
-
|
|
992
|
+
VisChordDiagramComponent.prototype.ngAfterViewInit = function () {
|
|
1089
993
|
var _a;
|
|
1090
|
-
this.component = new ts.
|
|
994
|
+
this.component = new ts.ChordDiagram(this.getConfig());
|
|
1091
995
|
if (this.data) {
|
|
1092
996
|
this.component.setData(this.data);
|
|
1093
997
|
(_a = this.componentContainer) === null || _a === void 0 ? void 0 : _a.render();
|
|
1094
998
|
}
|
|
1095
999
|
};
|
|
1096
|
-
|
|
1000
|
+
VisChordDiagramComponent.prototype.ngOnChanges = function (changes) {
|
|
1097
1001
|
var _a, _b, _c;
|
|
1098
1002
|
if (changes.data) {
|
|
1099
1003
|
(_a = this.component) === null || _a === void 0 ? void 0 : _a.setData(this.data);
|
|
@@ -1101,9 +1005,9 @@
|
|
|
1101
1005
|
(_b = this.component) === null || _b === void 0 ? void 0 : _b.setConfig(this.getConfig());
|
|
1102
1006
|
(_c = this.componentContainer) === null || _c === void 0 ? void 0 : _c.render();
|
|
1103
1007
|
};
|
|
1104
|
-
|
|
1105
|
-
var _d = this, duration = _d.duration, events = _d.events, attributes = _d.attributes,
|
|
1106
|
-
var config = { duration: duration, events: events, attributes: attributes,
|
|
1008
|
+
VisChordDiagramComponent.prototype.getConfig = function () {
|
|
1009
|
+
var _d = this, duration = _d.duration, events = _d.events, attributes = _d.attributes, highlightedNodeId = _d.highlightedNodeId, highlightedLinkIds = _d.highlightedLinkIds, linkColor = _d.linkColor, linkValue = _d.linkValue, nodeLevels = _d.nodeLevels, nodeWidth = _d.nodeWidth, nodeColor = _d.nodeColor, nodeLabel = _d.nodeLabel, nodeLabelColor = _d.nodeLabelColor, nodeLabelAlignment = _d.nodeLabelAlignment, padAngle = _d.padAngle, cornerRadius = _d.cornerRadius, angleRange = _d.angleRange, radiusScaleExponent = _d.radiusScaleExponent;
|
|
1010
|
+
var config = { duration: duration, events: events, attributes: attributes, highlightedNodeId: highlightedNodeId, highlightedLinkIds: highlightedLinkIds, linkColor: linkColor, linkValue: linkValue, nodeLevels: nodeLevels, nodeWidth: nodeWidth, nodeColor: nodeColor, nodeLabel: nodeLabel, nodeLabelColor: nodeLabelColor, nodeLabelAlignment: nodeLabelAlignment, padAngle: padAngle, cornerRadius: cornerRadius, angleRange: angleRange, radiusScaleExponent: radiusScaleExponent };
|
|
1107
1011
|
var keys = Object.keys(config);
|
|
1108
1012
|
keys.forEach(function (key) {
|
|
1109
1013
|
if (config[key] === undefined)
|
|
@@ -1111,17 +1015,17 @@
|
|
|
1111
1015
|
});
|
|
1112
1016
|
return config;
|
|
1113
1017
|
};
|
|
1114
|
-
return
|
|
1018
|
+
return VisChordDiagramComponent;
|
|
1115
1019
|
}());
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type:
|
|
1020
|
+
VisChordDiagramComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisChordDiagramComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
1021
|
+
VisChordDiagramComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: VisChordDiagramComponent, selector: "vis-chord-diagram", inputs: { duration: "duration", events: "events", attributes: "attributes", highlightedNodeId: "highlightedNodeId", highlightedLinkIds: "highlightedLinkIds", linkColor: "linkColor", linkValue: "linkValue", nodeLevels: "nodeLevels", nodeWidth: "nodeWidth", nodeColor: "nodeColor", nodeLabel: "nodeLabel", nodeLabelColor: "nodeLabelColor", nodeLabelAlignment: "nodeLabelAlignment", padAngle: "padAngle", cornerRadius: "cornerRadius", angleRange: "angleRange", radiusScaleExponent: "radiusScaleExponent", data: "data" }, providers: [{ provide: VisCoreComponent, useExisting: VisChordDiagramComponent }], usesOnChanges: true, ngImport: i0__namespace, template: '', isInline: true });
|
|
1022
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisChordDiagramComponent, decorators: [{
|
|
1119
1023
|
type: i0.Component,
|
|
1120
1024
|
args: [{
|
|
1121
|
-
selector: 'vis-
|
|
1025
|
+
selector: 'vis-chord-diagram',
|
|
1122
1026
|
template: '',
|
|
1123
1027
|
// eslint-disable-next-line no-use-before-define
|
|
1124
|
-
providers: [{ provide:
|
|
1028
|
+
providers: [{ provide: VisCoreComponent, useExisting: VisChordDiagramComponent }],
|
|
1125
1029
|
}]
|
|
1126
1030
|
}], propDecorators: { duration: [{
|
|
1127
1031
|
type: i0.Input
|
|
@@ -1129,43 +1033,53 @@
|
|
|
1129
1033
|
type: i0.Input
|
|
1130
1034
|
}], attributes: [{
|
|
1131
1035
|
type: i0.Input
|
|
1132
|
-
}],
|
|
1036
|
+
}], highlightedNodeId: [{
|
|
1133
1037
|
type: i0.Input
|
|
1134
|
-
}],
|
|
1038
|
+
}], highlightedLinkIds: [{
|
|
1135
1039
|
type: i0.Input
|
|
1136
|
-
}],
|
|
1040
|
+
}], linkColor: [{
|
|
1137
1041
|
type: i0.Input
|
|
1138
|
-
}],
|
|
1042
|
+
}], linkValue: [{
|
|
1139
1043
|
type: i0.Input
|
|
1140
|
-
}],
|
|
1044
|
+
}], nodeLevels: [{
|
|
1141
1045
|
type: i0.Input
|
|
1142
|
-
}],
|
|
1046
|
+
}], nodeWidth: [{
|
|
1143
1047
|
type: i0.Input
|
|
1144
|
-
}],
|
|
1048
|
+
}], nodeColor: [{
|
|
1145
1049
|
type: i0.Input
|
|
1146
|
-
}],
|
|
1050
|
+
}], nodeLabel: [{
|
|
1147
1051
|
type: i0.Input
|
|
1148
|
-
}],
|
|
1052
|
+
}], nodeLabelColor: [{
|
|
1053
|
+
type: i0.Input
|
|
1054
|
+
}], nodeLabelAlignment: [{
|
|
1055
|
+
type: i0.Input
|
|
1056
|
+
}], padAngle: [{
|
|
1057
|
+
type: i0.Input
|
|
1058
|
+
}], cornerRadius: [{
|
|
1059
|
+
type: i0.Input
|
|
1060
|
+
}], angleRange: [{
|
|
1061
|
+
type: i0.Input
|
|
1062
|
+
}], radiusScaleExponent: [{
|
|
1149
1063
|
type: i0.Input
|
|
1150
1064
|
}], data: [{
|
|
1151
1065
|
type: i0.Input
|
|
1152
1066
|
}] } });
|
|
1153
1067
|
|
|
1154
1068
|
// !!! This code was automatically generated. You should not change it !!!
|
|
1155
|
-
var
|
|
1156
|
-
function
|
|
1069
|
+
var VisChordDiagramModule = /** @class */ (function () {
|
|
1070
|
+
function VisChordDiagramModule() {
|
|
1157
1071
|
}
|
|
1158
|
-
return
|
|
1072
|
+
return VisChordDiagramModule;
|
|
1159
1073
|
}());
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type:
|
|
1074
|
+
VisChordDiagramModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisChordDiagramModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
|
|
1075
|
+
VisChordDiagramModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisChordDiagramModule, declarations: [VisChordDiagramComponent], exports: [VisChordDiagramComponent] });
|
|
1076
|
+
VisChordDiagramModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisChordDiagramModule, imports: [[]] });
|
|
1077
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisChordDiagramModule, decorators: [{
|
|
1164
1078
|
type: i0.NgModule,
|
|
1165
1079
|
args: [{
|
|
1166
1080
|
imports: [],
|
|
1167
|
-
declarations: [
|
|
1168
|
-
exports: [
|
|
1081
|
+
declarations: [VisChordDiagramComponent],
|
|
1082
|
+
exports: [VisChordDiagramComponent],
|
|
1169
1083
|
}]
|
|
1170
1084
|
}] });
|
|
1171
1085
|
|
|
@@ -1372,18 +1286,18 @@
|
|
|
1372
1286
|
}] });
|
|
1373
1287
|
|
|
1374
1288
|
// !!! This code was automatically generated. You should not change it !!!
|
|
1375
|
-
var
|
|
1376
|
-
function
|
|
1289
|
+
var VisFreeBrushComponent = /** @class */ (function () {
|
|
1290
|
+
function VisFreeBrushComponent() {
|
|
1377
1291
|
}
|
|
1378
|
-
|
|
1292
|
+
VisFreeBrushComponent.prototype.ngAfterViewInit = function () {
|
|
1379
1293
|
var _a;
|
|
1380
|
-
this.component = new ts.
|
|
1294
|
+
this.component = new ts.FreeBrush(this.getConfig());
|
|
1381
1295
|
if (this.data) {
|
|
1382
1296
|
this.component.setData(this.data);
|
|
1383
1297
|
(_a = this.componentContainer) === null || _a === void 0 ? void 0 : _a.render();
|
|
1384
1298
|
}
|
|
1385
1299
|
};
|
|
1386
|
-
|
|
1300
|
+
VisFreeBrushComponent.prototype.ngOnChanges = function (changes) {
|
|
1387
1301
|
var _a, _b, _c;
|
|
1388
1302
|
if (changes.data) {
|
|
1389
1303
|
(_a = this.component) === null || _a === void 0 ? void 0 : _a.setData(this.data);
|
|
@@ -1391,9 +1305,9 @@
|
|
|
1391
1305
|
(_b = this.component) === null || _b === void 0 ? void 0 : _b.setConfig(this.getConfig());
|
|
1392
1306
|
(_c = this.componentContainer) === null || _c === void 0 ? void 0 : _c.render();
|
|
1393
1307
|
};
|
|
1394
|
-
|
|
1395
|
-
var _d = this, duration = _d.duration, events = _d.events, attributes = _d.attributes,
|
|
1396
|
-
var config = { duration: duration, events: events, attributes: attributes,
|
|
1308
|
+
VisFreeBrushComponent.prototype.getConfig = function () {
|
|
1309
|
+
var _d = this, duration = _d.duration, events = _d.events, attributes = _d.attributes, mode = _d.mode, onBrush = _d.onBrush, onBrushStart = _d.onBrushStart, onBrushMove = _d.onBrushMove, onBrushEnd = _d.onBrushEnd, handleWidth = _d.handleWidth, selection = _d.selection, selectionMinLength = _d.selectionMinLength, autoHide = _d.autoHide;
|
|
1310
|
+
var config = { duration: duration, events: events, attributes: attributes, mode: mode, onBrush: onBrush, onBrushStart: onBrushStart, onBrushMove: onBrushMove, onBrushEnd: onBrushEnd, handleWidth: handleWidth, selection: selection, selectionMinLength: selectionMinLength, autoHide: autoHide };
|
|
1397
1311
|
var keys = Object.keys(config);
|
|
1398
1312
|
keys.forEach(function (key) {
|
|
1399
1313
|
if (config[key] === undefined)
|
|
@@ -1401,17 +1315,17 @@
|
|
|
1401
1315
|
});
|
|
1402
1316
|
return config;
|
|
1403
1317
|
};
|
|
1404
|
-
return
|
|
1318
|
+
return VisFreeBrushComponent;
|
|
1405
1319
|
}());
|
|
1406
|
-
|
|
1407
|
-
|
|
1408
|
-
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type:
|
|
1320
|
+
VisFreeBrushComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisFreeBrushComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
1321
|
+
VisFreeBrushComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: VisFreeBrushComponent, selector: "vis-free-brush", inputs: { duration: "duration", events: "events", attributes: "attributes", mode: "mode", onBrush: "onBrush", onBrushStart: "onBrushStart", onBrushMove: "onBrushMove", onBrushEnd: "onBrushEnd", handleWidth: "handleWidth", selection: "selection", selectionMinLength: "selectionMinLength", autoHide: "autoHide", data: "data" }, providers: [{ provide: VisXYComponent, useExisting: VisFreeBrushComponent }], usesOnChanges: true, ngImport: i0__namespace, template: '', isInline: true });
|
|
1322
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisFreeBrushComponent, decorators: [{
|
|
1409
1323
|
type: i0.Component,
|
|
1410
1324
|
args: [{
|
|
1411
|
-
selector: 'vis-
|
|
1325
|
+
selector: 'vis-free-brush',
|
|
1412
1326
|
template: '',
|
|
1413
1327
|
// eslint-disable-next-line no-use-before-define
|
|
1414
|
-
providers: [{ provide: VisXYComponent, useExisting:
|
|
1328
|
+
providers: [{ provide: VisXYComponent, useExisting: VisFreeBrushComponent }],
|
|
1415
1329
|
}]
|
|
1416
1330
|
}], propDecorators: { duration: [{
|
|
1417
1331
|
type: i0.Input
|
|
@@ -1419,73 +1333,59 @@
|
|
|
1419
1333
|
type: i0.Input
|
|
1420
1334
|
}], attributes: [{
|
|
1421
1335
|
type: i0.Input
|
|
1422
|
-
}],
|
|
1423
|
-
type: i0.Input
|
|
1424
|
-
}], y: [{
|
|
1425
|
-
type: i0.Input
|
|
1426
|
-
}], id: [{
|
|
1427
|
-
type: i0.Input
|
|
1428
|
-
}], color: [{
|
|
1429
|
-
type: i0.Input
|
|
1430
|
-
}], xScale: [{
|
|
1431
|
-
type: i0.Input
|
|
1432
|
-
}], yScale: [{
|
|
1433
|
-
type: i0.Input
|
|
1434
|
-
}], excludeFromDomainCalculation: [{
|
|
1435
|
-
type: i0.Input
|
|
1436
|
-
}], groupWidth: [{
|
|
1336
|
+
}], mode: [{
|
|
1437
1337
|
type: i0.Input
|
|
1438
|
-
}],
|
|
1338
|
+
}], onBrush: [{
|
|
1439
1339
|
type: i0.Input
|
|
1440
|
-
}],
|
|
1340
|
+
}], onBrushStart: [{
|
|
1441
1341
|
type: i0.Input
|
|
1442
|
-
}],
|
|
1342
|
+
}], onBrushMove: [{
|
|
1443
1343
|
type: i0.Input
|
|
1444
|
-
}],
|
|
1344
|
+
}], onBrushEnd: [{
|
|
1445
1345
|
type: i0.Input
|
|
1446
|
-
}],
|
|
1346
|
+
}], handleWidth: [{
|
|
1447
1347
|
type: i0.Input
|
|
1448
|
-
}],
|
|
1348
|
+
}], selection: [{
|
|
1449
1349
|
type: i0.Input
|
|
1450
|
-
}],
|
|
1350
|
+
}], selectionMinLength: [{
|
|
1451
1351
|
type: i0.Input
|
|
1452
|
-
}],
|
|
1352
|
+
}], autoHide: [{
|
|
1453
1353
|
type: i0.Input
|
|
1454
1354
|
}], data: [{
|
|
1455
1355
|
type: i0.Input
|
|
1456
1356
|
}] } });
|
|
1457
1357
|
|
|
1458
1358
|
// !!! This code was automatically generated. You should not change it !!!
|
|
1459
|
-
var
|
|
1460
|
-
function
|
|
1359
|
+
var VisFreeBrushModule = /** @class */ (function () {
|
|
1360
|
+
function VisFreeBrushModule() {
|
|
1461
1361
|
}
|
|
1462
|
-
return
|
|
1362
|
+
return VisFreeBrushModule;
|
|
1463
1363
|
}());
|
|
1464
|
-
|
|
1465
|
-
|
|
1466
|
-
|
|
1467
|
-
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type:
|
|
1364
|
+
VisFreeBrushModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisFreeBrushModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
|
|
1365
|
+
VisFreeBrushModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisFreeBrushModule, declarations: [VisFreeBrushComponent], exports: [VisFreeBrushComponent] });
|
|
1366
|
+
VisFreeBrushModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisFreeBrushModule, imports: [[]] });
|
|
1367
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisFreeBrushModule, decorators: [{
|
|
1468
1368
|
type: i0.NgModule,
|
|
1469
1369
|
args: [{
|
|
1470
1370
|
imports: [],
|
|
1471
|
-
declarations: [
|
|
1472
|
-
exports: [
|
|
1371
|
+
declarations: [VisFreeBrushComponent],
|
|
1372
|
+
exports: [VisFreeBrushComponent],
|
|
1473
1373
|
}]
|
|
1474
1374
|
}] });
|
|
1475
1375
|
|
|
1476
1376
|
// !!! This code was automatically generated. You should not change it !!!
|
|
1477
|
-
var
|
|
1478
|
-
function
|
|
1377
|
+
var VisGraphComponent = /** @class */ (function () {
|
|
1378
|
+
function VisGraphComponent() {
|
|
1479
1379
|
}
|
|
1480
|
-
|
|
1380
|
+
VisGraphComponent.prototype.ngAfterViewInit = function () {
|
|
1481
1381
|
var _a;
|
|
1482
|
-
this.component = new ts.
|
|
1382
|
+
this.component = new ts.Graph(this.getConfig());
|
|
1483
1383
|
if (this.data) {
|
|
1484
1384
|
this.component.setData(this.data);
|
|
1485
1385
|
(_a = this.componentContainer) === null || _a === void 0 ? void 0 : _a.render();
|
|
1486
1386
|
}
|
|
1487
1387
|
};
|
|
1488
|
-
|
|
1388
|
+
VisGraphComponent.prototype.ngOnChanges = function (changes) {
|
|
1489
1389
|
var _a, _b, _c;
|
|
1490
1390
|
if (changes.data) {
|
|
1491
1391
|
(_a = this.component) === null || _a === void 0 ? void 0 : _a.setData(this.data);
|
|
@@ -1493,9 +1393,9 @@
|
|
|
1493
1393
|
(_b = this.component) === null || _b === void 0 ? void 0 : _b.setConfig(this.getConfig());
|
|
1494
1394
|
(_c = this.componentContainer) === null || _c === void 0 ? void 0 : _c.render();
|
|
1495
1395
|
};
|
|
1496
|
-
|
|
1497
|
-
var _d = this, duration = _d.duration, events = _d.events, attributes = _d.attributes,
|
|
1498
|
-
var config = { duration: duration, events: events, attributes: attributes,
|
|
1396
|
+
VisGraphComponent.prototype.getConfig = function () {
|
|
1397
|
+
var _d = this, duration = _d.duration, events = _d.events, attributes = _d.attributes, zoomScaleExtent = _d.zoomScaleExtent, disableZoom = _d.disableZoom, disableDrag = _d.disableDrag, zoomThrottledUpdateNodeThreshold = _d.zoomThrottledUpdateNodeThreshold, onZoom = _d.onZoom, layoutType = _d.layoutType, layoutAutofit = _d.layoutAutofit, layoutAutofitTolerance = _d.layoutAutofitTolerance, layoutNonConnectedAside = _d.layoutNonConnectedAside, layoutNodeGroup = _d.layoutNodeGroup, layoutGroupOrder = _d.layoutGroupOrder, layoutParallelNodesPerColumn = _d.layoutParallelNodesPerColumn, layoutParallelNodeSubGroup = _d.layoutParallelNodeSubGroup, layoutParallelSubGroupsPerRow = _d.layoutParallelSubGroupsPerRow, layoutParallelGroupSpacing = _d.layoutParallelGroupSpacing, layoutParallelSortConnectionsByGroup = _d.layoutParallelSortConnectionsByGroup, forceLayoutSettings = _d.forceLayoutSettings, dagreLayoutSettings = _d.dagreLayoutSettings, layoutElkSettings = _d.layoutElkSettings, layoutElkNodeGroups = _d.layoutElkNodeGroups, linkWidth = _d.linkWidth, linkStyle = _d.linkStyle, linkBandWidth = _d.linkBandWidth, linkArrow = _d.linkArrow, linkStroke = _d.linkStroke, linkDisabled = _d.linkDisabled, linkFlow = _d.linkFlow, linkFlowAnimDuration = _d.linkFlowAnimDuration, linkFlowParticleSize = _d.linkFlowParticleSize, linkLabel = _d.linkLabel, linkLabelShiftFromCenter = _d.linkLabelShiftFromCenter, linkNeighborSpacing = _d.linkNeighborSpacing, selectedLinkId = _d.selectedLinkId, nodeSize = _d.nodeSize, nodeStrokeWidth = _d.nodeStrokeWidth, nodeShape = _d.nodeShape, nodeGaugeValue = _d.nodeGaugeValue, nodeGaugeFill = _d.nodeGaugeFill, nodeGaugeAnimDuration = _d.nodeGaugeAnimDuration, nodeIcon = _d.nodeIcon, nodeIconSize = _d.nodeIconSize, nodeLabel = _d.nodeLabel, nodeLabelTrim = _d.nodeLabelTrim, nodeLabelTrimMode = _d.nodeLabelTrimMode, nodeLabelTrimLength = _d.nodeLabelTrimLength, nodeSubLabel = _d.nodeSubLabel, nodeSubLabelTrim = _d.nodeSubLabelTrim, nodeSubLabelTrimMode = _d.nodeSubLabelTrimMode, nodeSubLabelTrimLength = _d.nodeSubLabelTrimLength, nodeSideLabels = _d.nodeSideLabels, nodeBottomIcon = _d.nodeBottomIcon, nodeDisabled = _d.nodeDisabled, nodeFill = _d.nodeFill, nodeStroke = _d.nodeStroke, nodeSort = _d.nodeSort, nodeEnterPosition = _d.nodeEnterPosition, nodeEnterScale = _d.nodeEnterScale, nodeExitPosition = _d.nodeExitPosition, nodeExitScale = _d.nodeExitScale, selectedNodeId = _d.selectedNodeId, panels = _d.panels;
|
|
1398
|
+
var config = { duration: duration, events: events, attributes: attributes, zoomScaleExtent: zoomScaleExtent, disableZoom: disableZoom, disableDrag: disableDrag, zoomThrottledUpdateNodeThreshold: zoomThrottledUpdateNodeThreshold, onZoom: onZoom, layoutType: layoutType, layoutAutofit: layoutAutofit, layoutAutofitTolerance: layoutAutofitTolerance, layoutNonConnectedAside: layoutNonConnectedAside, layoutNodeGroup: layoutNodeGroup, layoutGroupOrder: layoutGroupOrder, layoutParallelNodesPerColumn: layoutParallelNodesPerColumn, layoutParallelNodeSubGroup: layoutParallelNodeSubGroup, layoutParallelSubGroupsPerRow: layoutParallelSubGroupsPerRow, layoutParallelGroupSpacing: layoutParallelGroupSpacing, layoutParallelSortConnectionsByGroup: layoutParallelSortConnectionsByGroup, forceLayoutSettings: forceLayoutSettings, dagreLayoutSettings: dagreLayoutSettings, layoutElkSettings: layoutElkSettings, layoutElkNodeGroups: layoutElkNodeGroups, linkWidth: linkWidth, linkStyle: linkStyle, linkBandWidth: linkBandWidth, linkArrow: linkArrow, linkStroke: linkStroke, linkDisabled: linkDisabled, linkFlow: linkFlow, linkFlowAnimDuration: linkFlowAnimDuration, linkFlowParticleSize: linkFlowParticleSize, linkLabel: linkLabel, linkLabelShiftFromCenter: linkLabelShiftFromCenter, linkNeighborSpacing: linkNeighborSpacing, selectedLinkId: selectedLinkId, nodeSize: nodeSize, nodeStrokeWidth: nodeStrokeWidth, nodeShape: nodeShape, nodeGaugeValue: nodeGaugeValue, nodeGaugeFill: nodeGaugeFill, nodeGaugeAnimDuration: nodeGaugeAnimDuration, nodeIcon: nodeIcon, nodeIconSize: nodeIconSize, nodeLabel: nodeLabel, nodeLabelTrim: nodeLabelTrim, nodeLabelTrimMode: nodeLabelTrimMode, nodeLabelTrimLength: nodeLabelTrimLength, nodeSubLabel: nodeSubLabel, nodeSubLabelTrim: nodeSubLabelTrim, nodeSubLabelTrimMode: nodeSubLabelTrimMode, nodeSubLabelTrimLength: nodeSubLabelTrimLength, nodeSideLabels: nodeSideLabels, nodeBottomIcon: nodeBottomIcon, nodeDisabled: nodeDisabled, nodeFill: nodeFill, nodeStroke: nodeStroke, nodeSort: nodeSort, nodeEnterPosition: nodeEnterPosition, nodeEnterScale: nodeEnterScale, nodeExitPosition: nodeExitPosition, nodeExitScale: nodeExitScale, selectedNodeId: selectedNodeId, panels: panels };
|
|
1499
1399
|
var keys = Object.keys(config);
|
|
1500
1400
|
keys.forEach(function (key) {
|
|
1501
1401
|
if (config[key] === undefined)
|
|
@@ -1503,17 +1403,17 @@
|
|
|
1503
1403
|
});
|
|
1504
1404
|
return config;
|
|
1505
1405
|
};
|
|
1506
|
-
return
|
|
1406
|
+
return VisGraphComponent;
|
|
1507
1407
|
}());
|
|
1508
|
-
|
|
1509
|
-
|
|
1510
|
-
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type:
|
|
1408
|
+
VisGraphComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisGraphComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
1409
|
+
VisGraphComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: VisGraphComponent, selector: "vis-graph", inputs: { duration: "duration", events: "events", attributes: "attributes", zoomScaleExtent: "zoomScaleExtent", disableZoom: "disableZoom", disableDrag: "disableDrag", zoomThrottledUpdateNodeThreshold: "zoomThrottledUpdateNodeThreshold", onZoom: "onZoom", layoutType: "layoutType", layoutAutofit: "layoutAutofit", layoutAutofitTolerance: "layoutAutofitTolerance", layoutNonConnectedAside: "layoutNonConnectedAside", layoutNodeGroup: "layoutNodeGroup", layoutGroupOrder: "layoutGroupOrder", layoutParallelNodesPerColumn: "layoutParallelNodesPerColumn", layoutParallelNodeSubGroup: "layoutParallelNodeSubGroup", layoutParallelSubGroupsPerRow: "layoutParallelSubGroupsPerRow", layoutParallelGroupSpacing: "layoutParallelGroupSpacing", layoutParallelSortConnectionsByGroup: "layoutParallelSortConnectionsByGroup", forceLayoutSettings: "forceLayoutSettings", dagreLayoutSettings: "dagreLayoutSettings", layoutElkSettings: "layoutElkSettings", layoutElkNodeGroups: "layoutElkNodeGroups", linkWidth: "linkWidth", linkStyle: "linkStyle", linkBandWidth: "linkBandWidth", linkArrow: "linkArrow", linkStroke: "linkStroke", linkDisabled: "linkDisabled", linkFlow: "linkFlow", linkFlowAnimDuration: "linkFlowAnimDuration", linkFlowParticleSize: "linkFlowParticleSize", linkLabel: "linkLabel", linkLabelShiftFromCenter: "linkLabelShiftFromCenter", linkNeighborSpacing: "linkNeighborSpacing", selectedLinkId: "selectedLinkId", nodeSize: "nodeSize", nodeStrokeWidth: "nodeStrokeWidth", nodeShape: "nodeShape", nodeGaugeValue: "nodeGaugeValue", nodeGaugeFill: "nodeGaugeFill", nodeGaugeAnimDuration: "nodeGaugeAnimDuration", nodeIcon: "nodeIcon", nodeIconSize: "nodeIconSize", nodeLabel: "nodeLabel", nodeLabelTrim: "nodeLabelTrim", nodeLabelTrimMode: "nodeLabelTrimMode", nodeLabelTrimLength: "nodeLabelTrimLength", nodeSubLabel: "nodeSubLabel", nodeSubLabelTrim: "nodeSubLabelTrim", nodeSubLabelTrimMode: "nodeSubLabelTrimMode", nodeSubLabelTrimLength: "nodeSubLabelTrimLength", nodeSideLabels: "nodeSideLabels", nodeBottomIcon: "nodeBottomIcon", nodeDisabled: "nodeDisabled", nodeFill: "nodeFill", nodeStroke: "nodeStroke", nodeSort: "nodeSort", nodeEnterPosition: "nodeEnterPosition", nodeEnterScale: "nodeEnterScale", nodeExitPosition: "nodeExitPosition", nodeExitScale: "nodeExitScale", selectedNodeId: "selectedNodeId", panels: "panels", data: "data" }, providers: [{ provide: VisCoreComponent, useExisting: VisGraphComponent }], usesOnChanges: true, ngImport: i0__namespace, template: '', isInline: true });
|
|
1410
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisGraphComponent, decorators: [{
|
|
1511
1411
|
type: i0.Component,
|
|
1512
1412
|
args: [{
|
|
1513
|
-
selector: 'vis-
|
|
1413
|
+
selector: 'vis-graph',
|
|
1514
1414
|
template: '',
|
|
1515
1415
|
// eslint-disable-next-line no-use-before-define
|
|
1516
|
-
providers: [{ provide:
|
|
1416
|
+
providers: [{ provide: VisCoreComponent, useExisting: VisGraphComponent }],
|
|
1517
1417
|
}]
|
|
1518
1418
|
}], propDecorators: { duration: [{
|
|
1519
1419
|
type: i0.Input
|
|
@@ -1521,79 +1421,163 @@
|
|
|
1521
1421
|
type: i0.Input
|
|
1522
1422
|
}], attributes: [{
|
|
1523
1423
|
type: i0.Input
|
|
1524
|
-
}],
|
|
1424
|
+
}], zoomScaleExtent: [{
|
|
1525
1425
|
type: i0.Input
|
|
1526
|
-
}],
|
|
1426
|
+
}], disableZoom: [{
|
|
1527
1427
|
type: i0.Input
|
|
1528
|
-
}],
|
|
1428
|
+
}], disableDrag: [{
|
|
1529
1429
|
type: i0.Input
|
|
1530
|
-
}],
|
|
1430
|
+
}], zoomThrottledUpdateNodeThreshold: [{
|
|
1531
1431
|
type: i0.Input
|
|
1532
|
-
}],
|
|
1432
|
+
}], onZoom: [{
|
|
1533
1433
|
type: i0.Input
|
|
1534
|
-
}],
|
|
1434
|
+
}], layoutType: [{
|
|
1535
1435
|
type: i0.Input
|
|
1536
|
-
}],
|
|
1436
|
+
}], layoutAutofit: [{
|
|
1537
1437
|
type: i0.Input
|
|
1538
|
-
}],
|
|
1438
|
+
}], layoutAutofitTolerance: [{
|
|
1539
1439
|
type: i0.Input
|
|
1540
|
-
}],
|
|
1440
|
+
}], layoutNonConnectedAside: [{
|
|
1541
1441
|
type: i0.Input
|
|
1542
|
-
}],
|
|
1442
|
+
}], layoutNodeGroup: [{
|
|
1543
1443
|
type: i0.Input
|
|
1544
|
-
}],
|
|
1444
|
+
}], layoutGroupOrder: [{
|
|
1545
1445
|
type: i0.Input
|
|
1546
|
-
}],
|
|
1446
|
+
}], layoutParallelNodesPerColumn: [{
|
|
1547
1447
|
type: i0.Input
|
|
1548
|
-
}],
|
|
1448
|
+
}], layoutParallelNodeSubGroup: [{
|
|
1549
1449
|
type: i0.Input
|
|
1550
|
-
}],
|
|
1450
|
+
}], layoutParallelSubGroupsPerRow: [{
|
|
1551
1451
|
type: i0.Input
|
|
1552
|
-
}],
|
|
1452
|
+
}], layoutParallelGroupSpacing: [{
|
|
1553
1453
|
type: i0.Input
|
|
1554
|
-
}],
|
|
1454
|
+
}], layoutParallelSortConnectionsByGroup: [{
|
|
1555
1455
|
type: i0.Input
|
|
1556
|
-
}],
|
|
1456
|
+
}], forceLayoutSettings: [{
|
|
1557
1457
|
type: i0.Input
|
|
1558
|
-
}],
|
|
1458
|
+
}], dagreLayoutSettings: [{
|
|
1559
1459
|
type: i0.Input
|
|
1560
|
-
}],
|
|
1460
|
+
}], layoutElkSettings: [{
|
|
1461
|
+
type: i0.Input
|
|
1462
|
+
}], layoutElkNodeGroups: [{
|
|
1463
|
+
type: i0.Input
|
|
1464
|
+
}], linkWidth: [{
|
|
1465
|
+
type: i0.Input
|
|
1466
|
+
}], linkStyle: [{
|
|
1467
|
+
type: i0.Input
|
|
1468
|
+
}], linkBandWidth: [{
|
|
1469
|
+
type: i0.Input
|
|
1470
|
+
}], linkArrow: [{
|
|
1471
|
+
type: i0.Input
|
|
1472
|
+
}], linkStroke: [{
|
|
1473
|
+
type: i0.Input
|
|
1474
|
+
}], linkDisabled: [{
|
|
1475
|
+
type: i0.Input
|
|
1476
|
+
}], linkFlow: [{
|
|
1477
|
+
type: i0.Input
|
|
1478
|
+
}], linkFlowAnimDuration: [{
|
|
1479
|
+
type: i0.Input
|
|
1480
|
+
}], linkFlowParticleSize: [{
|
|
1481
|
+
type: i0.Input
|
|
1482
|
+
}], linkLabel: [{
|
|
1483
|
+
type: i0.Input
|
|
1484
|
+
}], linkLabelShiftFromCenter: [{
|
|
1485
|
+
type: i0.Input
|
|
1486
|
+
}], linkNeighborSpacing: [{
|
|
1487
|
+
type: i0.Input
|
|
1488
|
+
}], selectedLinkId: [{
|
|
1489
|
+
type: i0.Input
|
|
1490
|
+
}], nodeSize: [{
|
|
1491
|
+
type: i0.Input
|
|
1492
|
+
}], nodeStrokeWidth: [{
|
|
1493
|
+
type: i0.Input
|
|
1494
|
+
}], nodeShape: [{
|
|
1495
|
+
type: i0.Input
|
|
1496
|
+
}], nodeGaugeValue: [{
|
|
1497
|
+
type: i0.Input
|
|
1498
|
+
}], nodeGaugeFill: [{
|
|
1499
|
+
type: i0.Input
|
|
1500
|
+
}], nodeGaugeAnimDuration: [{
|
|
1501
|
+
type: i0.Input
|
|
1502
|
+
}], nodeIcon: [{
|
|
1503
|
+
type: i0.Input
|
|
1504
|
+
}], nodeIconSize: [{
|
|
1505
|
+
type: i0.Input
|
|
1506
|
+
}], nodeLabel: [{
|
|
1507
|
+
type: i0.Input
|
|
1508
|
+
}], nodeLabelTrim: [{
|
|
1509
|
+
type: i0.Input
|
|
1510
|
+
}], nodeLabelTrimMode: [{
|
|
1511
|
+
type: i0.Input
|
|
1512
|
+
}], nodeLabelTrimLength: [{
|
|
1513
|
+
type: i0.Input
|
|
1514
|
+
}], nodeSubLabel: [{
|
|
1515
|
+
type: i0.Input
|
|
1516
|
+
}], nodeSubLabelTrim: [{
|
|
1517
|
+
type: i0.Input
|
|
1518
|
+
}], nodeSubLabelTrimMode: [{
|
|
1519
|
+
type: i0.Input
|
|
1520
|
+
}], nodeSubLabelTrimLength: [{
|
|
1521
|
+
type: i0.Input
|
|
1522
|
+
}], nodeSideLabels: [{
|
|
1523
|
+
type: i0.Input
|
|
1524
|
+
}], nodeBottomIcon: [{
|
|
1525
|
+
type: i0.Input
|
|
1526
|
+
}], nodeDisabled: [{
|
|
1527
|
+
type: i0.Input
|
|
1528
|
+
}], nodeFill: [{
|
|
1529
|
+
type: i0.Input
|
|
1530
|
+
}], nodeStroke: [{
|
|
1531
|
+
type: i0.Input
|
|
1532
|
+
}], nodeSort: [{
|
|
1533
|
+
type: i0.Input
|
|
1534
|
+
}], nodeEnterPosition: [{
|
|
1535
|
+
type: i0.Input
|
|
1536
|
+
}], nodeEnterScale: [{
|
|
1537
|
+
type: i0.Input
|
|
1538
|
+
}], nodeExitPosition: [{
|
|
1539
|
+
type: i0.Input
|
|
1540
|
+
}], nodeExitScale: [{
|
|
1541
|
+
type: i0.Input
|
|
1542
|
+
}], selectedNodeId: [{
|
|
1543
|
+
type: i0.Input
|
|
1544
|
+
}], panels: [{
|
|
1561
1545
|
type: i0.Input
|
|
1562
1546
|
}], data: [{
|
|
1563
1547
|
type: i0.Input
|
|
1564
1548
|
}] } });
|
|
1565
1549
|
|
|
1566
1550
|
// !!! This code was automatically generated. You should not change it !!!
|
|
1567
|
-
var
|
|
1568
|
-
function
|
|
1551
|
+
var VisGraphModule = /** @class */ (function () {
|
|
1552
|
+
function VisGraphModule() {
|
|
1569
1553
|
}
|
|
1570
|
-
return
|
|
1554
|
+
return VisGraphModule;
|
|
1571
1555
|
}());
|
|
1572
|
-
|
|
1573
|
-
|
|
1574
|
-
|
|
1575
|
-
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type:
|
|
1556
|
+
VisGraphModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisGraphModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
|
|
1557
|
+
VisGraphModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisGraphModule, declarations: [VisGraphComponent], exports: [VisGraphComponent] });
|
|
1558
|
+
VisGraphModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisGraphModule, imports: [[]] });
|
|
1559
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisGraphModule, decorators: [{
|
|
1576
1560
|
type: i0.NgModule,
|
|
1577
1561
|
args: [{
|
|
1578
1562
|
imports: [],
|
|
1579
|
-
declarations: [
|
|
1580
|
-
exports: [
|
|
1563
|
+
declarations: [VisGraphComponent],
|
|
1564
|
+
exports: [VisGraphComponent],
|
|
1581
1565
|
}]
|
|
1582
1566
|
}] });
|
|
1583
1567
|
|
|
1584
1568
|
// !!! This code was automatically generated. You should not change it !!!
|
|
1585
|
-
var
|
|
1586
|
-
function
|
|
1569
|
+
var VisGroupedBarComponent = /** @class */ (function () {
|
|
1570
|
+
function VisGroupedBarComponent() {
|
|
1587
1571
|
}
|
|
1588
|
-
|
|
1572
|
+
VisGroupedBarComponent.prototype.ngAfterViewInit = function () {
|
|
1589
1573
|
var _a;
|
|
1590
|
-
this.component = new ts.
|
|
1574
|
+
this.component = new ts.GroupedBar(this.getConfig());
|
|
1591
1575
|
if (this.data) {
|
|
1592
1576
|
this.component.setData(this.data);
|
|
1593
1577
|
(_a = this.componentContainer) === null || _a === void 0 ? void 0 : _a.render();
|
|
1594
1578
|
}
|
|
1595
1579
|
};
|
|
1596
|
-
|
|
1580
|
+
VisGroupedBarComponent.prototype.ngOnChanges = function (changes) {
|
|
1597
1581
|
var _a, _b, _c;
|
|
1598
1582
|
if (changes.data) {
|
|
1599
1583
|
(_a = this.component) === null || _a === void 0 ? void 0 : _a.setData(this.data);
|
|
@@ -1601,9 +1585,9 @@
|
|
|
1601
1585
|
(_b = this.component) === null || _b === void 0 ? void 0 : _b.setConfig(this.getConfig());
|
|
1602
1586
|
(_c = this.componentContainer) === null || _c === void 0 ? void 0 : _c.render();
|
|
1603
1587
|
};
|
|
1604
|
-
|
|
1605
|
-
var _d = this, duration = _d.duration, events = _d.events, attributes = _d.attributes, x = _d.x, y = _d.y, id = _d.id, color = _d.color, xScale = _d.xScale, yScale = _d.yScale, excludeFromDomainCalculation = _d.excludeFromDomainCalculation,
|
|
1606
|
-
var config = { duration: duration, events: events, attributes: attributes, x: x, y: y, id: id, color: color, xScale: xScale, yScale: yScale, excludeFromDomainCalculation: excludeFromDomainCalculation,
|
|
1588
|
+
VisGroupedBarComponent.prototype.getConfig = function () {
|
|
1589
|
+
var _d = this, duration = _d.duration, events = _d.events, attributes = _d.attributes, x = _d.x, y = _d.y, id = _d.id, color = _d.color, xScale = _d.xScale, yScale = _d.yScale, excludeFromDomainCalculation = _d.excludeFromDomainCalculation, groupWidth = _d.groupWidth, groupMaxWidth = _d.groupMaxWidth, dataStep = _d.dataStep, groupPadding = _d.groupPadding, barPadding = _d.barPadding, roundedCorners = _d.roundedCorners, barMinHeight = _d.barMinHeight, cursor = _d.cursor, orientation = _d.orientation;
|
|
1590
|
+
var config = { duration: duration, events: events, attributes: attributes, x: x, y: y, id: id, color: color, xScale: xScale, yScale: yScale, excludeFromDomainCalculation: excludeFromDomainCalculation, groupWidth: groupWidth, groupMaxWidth: groupMaxWidth, dataStep: dataStep, groupPadding: groupPadding, barPadding: barPadding, roundedCorners: roundedCorners, barMinHeight: barMinHeight, cursor: cursor, orientation: orientation };
|
|
1607
1591
|
var keys = Object.keys(config);
|
|
1608
1592
|
keys.forEach(function (key) {
|
|
1609
1593
|
if (config[key] === undefined)
|
|
@@ -1611,17 +1595,17 @@
|
|
|
1611
1595
|
});
|
|
1612
1596
|
return config;
|
|
1613
1597
|
};
|
|
1614
|
-
return
|
|
1598
|
+
return VisGroupedBarComponent;
|
|
1615
1599
|
}());
|
|
1616
|
-
|
|
1617
|
-
|
|
1618
|
-
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type:
|
|
1600
|
+
VisGroupedBarComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisGroupedBarComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
1601
|
+
VisGroupedBarComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: VisGroupedBarComponent, selector: "vis-grouped-bar", inputs: { duration: "duration", events: "events", attributes: "attributes", x: "x", y: "y", id: "id", color: "color", xScale: "xScale", yScale: "yScale", excludeFromDomainCalculation: "excludeFromDomainCalculation", groupWidth: "groupWidth", groupMaxWidth: "groupMaxWidth", dataStep: "dataStep", groupPadding: "groupPadding", barPadding: "barPadding", roundedCorners: "roundedCorners", barMinHeight: "barMinHeight", cursor: "cursor", orientation: "orientation", data: "data" }, providers: [{ provide: VisXYComponent, useExisting: VisGroupedBarComponent }], usesOnChanges: true, ngImport: i0__namespace, template: '', isInline: true });
|
|
1602
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisGroupedBarComponent, decorators: [{
|
|
1619
1603
|
type: i0.Component,
|
|
1620
1604
|
args: [{
|
|
1621
|
-
selector: 'vis-
|
|
1605
|
+
selector: 'vis-grouped-bar',
|
|
1622
1606
|
template: '',
|
|
1623
1607
|
// eslint-disable-next-line no-use-before-define
|
|
1624
|
-
providers: [{ provide: VisXYComponent, useExisting:
|
|
1608
|
+
providers: [{ provide: VisXYComponent, useExisting: VisGroupedBarComponent }],
|
|
1625
1609
|
}]
|
|
1626
1610
|
}], propDecorators: { duration: [{
|
|
1627
1611
|
type: i0.Input
|
|
@@ -1643,21 +1627,21 @@
|
|
|
1643
1627
|
type: i0.Input
|
|
1644
1628
|
}], excludeFromDomainCalculation: [{
|
|
1645
1629
|
type: i0.Input
|
|
1646
|
-
}],
|
|
1630
|
+
}], groupWidth: [{
|
|
1647
1631
|
type: i0.Input
|
|
1648
|
-
}],
|
|
1632
|
+
}], groupMaxWidth: [{
|
|
1649
1633
|
type: i0.Input
|
|
1650
1634
|
}], dataStep: [{
|
|
1651
1635
|
type: i0.Input
|
|
1636
|
+
}], groupPadding: [{
|
|
1637
|
+
type: i0.Input
|
|
1652
1638
|
}], barPadding: [{
|
|
1653
1639
|
type: i0.Input
|
|
1654
1640
|
}], roundedCorners: [{
|
|
1655
1641
|
type: i0.Input
|
|
1656
|
-
}],
|
|
1657
|
-
type: i0.Input
|
|
1658
|
-
}], barMinHeight1Px: [{
|
|
1642
|
+
}], barMinHeight: [{
|
|
1659
1643
|
type: i0.Input
|
|
1660
|
-
}],
|
|
1644
|
+
}], cursor: [{
|
|
1661
1645
|
type: i0.Input
|
|
1662
1646
|
}], orientation: [{
|
|
1663
1647
|
type: i0.Input
|
|
@@ -1666,36 +1650,36 @@
|
|
|
1666
1650
|
}] } });
|
|
1667
1651
|
|
|
1668
1652
|
// !!! This code was automatically generated. You should not change it !!!
|
|
1669
|
-
var
|
|
1670
|
-
function
|
|
1653
|
+
var VisGroupedBarModule = /** @class */ (function () {
|
|
1654
|
+
function VisGroupedBarModule() {
|
|
1671
1655
|
}
|
|
1672
|
-
return
|
|
1656
|
+
return VisGroupedBarModule;
|
|
1673
1657
|
}());
|
|
1674
|
-
|
|
1675
|
-
|
|
1676
|
-
|
|
1677
|
-
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type:
|
|
1658
|
+
VisGroupedBarModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisGroupedBarModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
|
|
1659
|
+
VisGroupedBarModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisGroupedBarModule, declarations: [VisGroupedBarComponent], exports: [VisGroupedBarComponent] });
|
|
1660
|
+
VisGroupedBarModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisGroupedBarModule, imports: [[]] });
|
|
1661
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisGroupedBarModule, decorators: [{
|
|
1678
1662
|
type: i0.NgModule,
|
|
1679
1663
|
args: [{
|
|
1680
1664
|
imports: [],
|
|
1681
|
-
declarations: [
|
|
1682
|
-
exports: [
|
|
1665
|
+
declarations: [VisGroupedBarComponent],
|
|
1666
|
+
exports: [VisGroupedBarComponent],
|
|
1683
1667
|
}]
|
|
1684
1668
|
}] });
|
|
1685
1669
|
|
|
1686
1670
|
// !!! This code was automatically generated. You should not change it !!!
|
|
1687
|
-
var
|
|
1688
|
-
function
|
|
1671
|
+
var VisLineComponent = /** @class */ (function () {
|
|
1672
|
+
function VisLineComponent() {
|
|
1689
1673
|
}
|
|
1690
|
-
|
|
1674
|
+
VisLineComponent.prototype.ngAfterViewInit = function () {
|
|
1691
1675
|
var _a;
|
|
1692
|
-
this.component = new ts.
|
|
1676
|
+
this.component = new ts.Line(this.getConfig());
|
|
1693
1677
|
if (this.data) {
|
|
1694
1678
|
this.component.setData(this.data);
|
|
1695
1679
|
(_a = this.componentContainer) === null || _a === void 0 ? void 0 : _a.render();
|
|
1696
1680
|
}
|
|
1697
1681
|
};
|
|
1698
|
-
|
|
1682
|
+
VisLineComponent.prototype.ngOnChanges = function (changes) {
|
|
1699
1683
|
var _a, _b, _c;
|
|
1700
1684
|
if (changes.data) {
|
|
1701
1685
|
(_a = this.component) === null || _a === void 0 ? void 0 : _a.setData(this.data);
|
|
@@ -1703,9 +1687,9 @@
|
|
|
1703
1687
|
(_b = this.component) === null || _b === void 0 ? void 0 : _b.setConfig(this.getConfig());
|
|
1704
1688
|
(_c = this.componentContainer) === null || _c === void 0 ? void 0 : _c.render();
|
|
1705
1689
|
};
|
|
1706
|
-
|
|
1707
|
-
var _d = this, duration = _d.duration, events = _d.events, attributes = _d.attributes, x = _d.x, id = _d.id, color = _d.color, xScale = _d.xScale, yScale = _d.yScale, excludeFromDomainCalculation = _d.excludeFromDomainCalculation,
|
|
1708
|
-
var config = { duration: duration, events: events, attributes: attributes, x: x, id: id, color: color, xScale: xScale, yScale: yScale, excludeFromDomainCalculation: excludeFromDomainCalculation,
|
|
1690
|
+
VisLineComponent.prototype.getConfig = function () {
|
|
1691
|
+
var _d = this, duration = _d.duration, events = _d.events, attributes = _d.attributes, x = _d.x, y = _d.y, id = _d.id, color = _d.color, xScale = _d.xScale, yScale = _d.yScale, excludeFromDomainCalculation = _d.excludeFromDomainCalculation, curveType = _d.curveType, lineWidth = _d.lineWidth, lineDashArray = _d.lineDashArray, fallbackValue = _d.fallbackValue, highlightOnHover = _d.highlightOnHover, cursor = _d.cursor;
|
|
1692
|
+
var config = { duration: duration, events: events, attributes: attributes, x: x, y: y, id: id, color: color, xScale: xScale, yScale: yScale, excludeFromDomainCalculation: excludeFromDomainCalculation, curveType: curveType, lineWidth: lineWidth, lineDashArray: lineDashArray, fallbackValue: fallbackValue, highlightOnHover: highlightOnHover, cursor: cursor };
|
|
1709
1693
|
var keys = Object.keys(config);
|
|
1710
1694
|
keys.forEach(function (key) {
|
|
1711
1695
|
if (config[key] === undefined)
|
|
@@ -1713,17 +1697,17 @@
|
|
|
1713
1697
|
});
|
|
1714
1698
|
return config;
|
|
1715
1699
|
};
|
|
1716
|
-
return
|
|
1700
|
+
return VisLineComponent;
|
|
1717
1701
|
}());
|
|
1718
|
-
|
|
1719
|
-
|
|
1720
|
-
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type:
|
|
1702
|
+
VisLineComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisLineComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
1703
|
+
VisLineComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: VisLineComponent, selector: "vis-line", inputs: { duration: "duration", events: "events", attributes: "attributes", x: "x", y: "y", id: "id", color: "color", xScale: "xScale", yScale: "yScale", excludeFromDomainCalculation: "excludeFromDomainCalculation", curveType: "curveType", lineWidth: "lineWidth", lineDashArray: "lineDashArray", fallbackValue: "fallbackValue", highlightOnHover: "highlightOnHover", cursor: "cursor", data: "data" }, providers: [{ provide: VisXYComponent, useExisting: VisLineComponent }], usesOnChanges: true, ngImport: i0__namespace, template: '', isInline: true });
|
|
1704
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisLineComponent, decorators: [{
|
|
1721
1705
|
type: i0.Component,
|
|
1722
1706
|
args: [{
|
|
1723
|
-
selector: 'vis-
|
|
1707
|
+
selector: 'vis-line',
|
|
1724
1708
|
template: '',
|
|
1725
1709
|
// eslint-disable-next-line no-use-before-define
|
|
1726
|
-
providers: [{ provide: VisXYComponent, useExisting:
|
|
1710
|
+
providers: [{ provide: VisXYComponent, useExisting: VisLineComponent }],
|
|
1727
1711
|
}]
|
|
1728
1712
|
}], propDecorators: { duration: [{
|
|
1729
1713
|
type: i0.Input
|
|
@@ -1733,6 +1717,8 @@
|
|
|
1733
1717
|
type: i0.Input
|
|
1734
1718
|
}], x: [{
|
|
1735
1719
|
type: i0.Input
|
|
1720
|
+
}], y: [{
|
|
1721
|
+
type: i0.Input
|
|
1736
1722
|
}], id: [{
|
|
1737
1723
|
type: i0.Input
|
|
1738
1724
|
}], color: [{
|
|
@@ -1743,175 +1729,53 @@
|
|
|
1743
1729
|
type: i0.Input
|
|
1744
1730
|
}], excludeFromDomainCalculation: [{
|
|
1745
1731
|
type: i0.Input
|
|
1746
|
-
}],
|
|
1732
|
+
}], curveType: [{
|
|
1747
1733
|
type: i0.Input
|
|
1748
|
-
}],
|
|
1734
|
+
}], lineWidth: [{
|
|
1749
1735
|
type: i0.Input
|
|
1750
|
-
}],
|
|
1736
|
+
}], lineDashArray: [{
|
|
1751
1737
|
type: i0.Input
|
|
1752
|
-
}],
|
|
1738
|
+
}], fallbackValue: [{
|
|
1753
1739
|
type: i0.Input
|
|
1754
|
-
}],
|
|
1740
|
+
}], highlightOnHover: [{
|
|
1755
1741
|
type: i0.Input
|
|
1756
1742
|
}], cursor: [{
|
|
1757
1743
|
type: i0.Input
|
|
1758
|
-
}], showLabels: [{
|
|
1759
|
-
type: i0.Input
|
|
1760
|
-
}], labelWidth: [{
|
|
1761
|
-
type: i0.Input
|
|
1762
|
-
}], maxLabelWidth: [{
|
|
1763
|
-
type: i0.Input
|
|
1764
|
-
}], alternatingRowColors: [{
|
|
1765
|
-
type: i0.Input
|
|
1766
|
-
}], onScroll: [{
|
|
1767
|
-
type: i0.Input
|
|
1768
|
-
}], showEmptySegments: [{
|
|
1769
|
-
type: i0.Input
|
|
1770
1744
|
}], data: [{
|
|
1771
1745
|
type: i0.Input
|
|
1772
1746
|
}] } });
|
|
1773
1747
|
|
|
1774
1748
|
// !!! This code was automatically generated. You should not change it !!!
|
|
1775
|
-
var
|
|
1776
|
-
function
|
|
1749
|
+
var VisLineModule = /** @class */ (function () {
|
|
1750
|
+
function VisLineModule() {
|
|
1777
1751
|
}
|
|
1778
|
-
return
|
|
1752
|
+
return VisLineModule;
|
|
1779
1753
|
}());
|
|
1780
|
-
|
|
1781
|
-
|
|
1782
|
-
|
|
1783
|
-
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type:
|
|
1754
|
+
VisLineModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisLineModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
|
|
1755
|
+
VisLineModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisLineModule, declarations: [VisLineComponent], exports: [VisLineComponent] });
|
|
1756
|
+
VisLineModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisLineModule, imports: [[]] });
|
|
1757
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisLineModule, decorators: [{
|
|
1784
1758
|
type: i0.NgModule,
|
|
1785
1759
|
args: [{
|
|
1786
1760
|
imports: [],
|
|
1787
|
-
declarations: [
|
|
1788
|
-
exports: [
|
|
1789
|
-
}]
|
|
1790
|
-
}] });
|
|
1791
|
-
|
|
1792
|
-
// !!! This code was automatically generated. You should not change it !!!
|
|
1793
|
-
var VisXYLabelsComponent = /** @class */ (function () {
|
|
1794
|
-
function VisXYLabelsComponent() {
|
|
1795
|
-
}
|
|
1796
|
-
VisXYLabelsComponent.prototype.ngAfterViewInit = function () {
|
|
1797
|
-
var _a;
|
|
1798
|
-
this.component = new ts.XYLabels(this.getConfig());
|
|
1799
|
-
if (this.data) {
|
|
1800
|
-
this.component.setData(this.data);
|
|
1801
|
-
(_a = this.componentContainer) === null || _a === void 0 ? void 0 : _a.render();
|
|
1802
|
-
}
|
|
1803
|
-
};
|
|
1804
|
-
VisXYLabelsComponent.prototype.ngOnChanges = function (changes) {
|
|
1805
|
-
var _a, _b, _c;
|
|
1806
|
-
if (changes.data) {
|
|
1807
|
-
(_a = this.component) === null || _a === void 0 ? void 0 : _a.setData(this.data);
|
|
1808
|
-
}
|
|
1809
|
-
(_b = this.component) === null || _b === void 0 ? void 0 : _b.setConfig(this.getConfig());
|
|
1810
|
-
(_c = this.componentContainer) === null || _c === void 0 ? void 0 : _c.render();
|
|
1811
|
-
};
|
|
1812
|
-
VisXYLabelsComponent.prototype.getConfig = function () {
|
|
1813
|
-
var _d = this, duration = _d.duration, events = _d.events, attributes = _d.attributes, x = _d.x, y = _d.y, id = _d.id, color = _d.color, xScale = _d.xScale, yScale = _d.yScale, excludeFromDomainCalculation = _d.excludeFromDomainCalculation, xPositioning = _d.xPositioning, yPositioning = _d.yPositioning, labelFontSize = _d.labelFontSize, label = _d.label, backgroundColor = _d.backgroundColor, cursor = _d.cursor, labelTextBrightnessRatio = _d.labelTextBrightnessRatio, clustering = _d.clustering, clusterLabel = _d.clusterLabel, clusterFontSize = _d.clusterFontSize, clusterBackgroundColor = _d.clusterBackgroundColor, clusterCursor = _d.clusterCursor, clusterLabelColor = _d.clusterLabelColor;
|
|
1814
|
-
var config = { duration: duration, events: events, attributes: attributes, x: x, y: y, id: id, color: color, xScale: xScale, yScale: yScale, excludeFromDomainCalculation: excludeFromDomainCalculation, xPositioning: xPositioning, yPositioning: yPositioning, labelFontSize: labelFontSize, label: label, backgroundColor: backgroundColor, cursor: cursor, labelTextBrightnessRatio: labelTextBrightnessRatio, clustering: clustering, clusterLabel: clusterLabel, clusterFontSize: clusterFontSize, clusterBackgroundColor: clusterBackgroundColor, clusterCursor: clusterCursor, clusterLabelColor: clusterLabelColor };
|
|
1815
|
-
var keys = Object.keys(config);
|
|
1816
|
-
keys.forEach(function (key) {
|
|
1817
|
-
if (config[key] === undefined)
|
|
1818
|
-
delete config[key];
|
|
1819
|
-
});
|
|
1820
|
-
return config;
|
|
1821
|
-
};
|
|
1822
|
-
return VisXYLabelsComponent;
|
|
1823
|
-
}());
|
|
1824
|
-
VisXYLabelsComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisXYLabelsComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
1825
|
-
VisXYLabelsComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: VisXYLabelsComponent, selector: "vis-xy-labels", inputs: { duration: "duration", events: "events", attributes: "attributes", x: "x", y: "y", id: "id", color: "color", xScale: "xScale", yScale: "yScale", excludeFromDomainCalculation: "excludeFromDomainCalculation", xPositioning: "xPositioning", yPositioning: "yPositioning", labelFontSize: "labelFontSize", label: "label", backgroundColor: "backgroundColor", cursor: "cursor", labelTextBrightnessRatio: "labelTextBrightnessRatio", clustering: "clustering", clusterLabel: "clusterLabel", clusterFontSize: "clusterFontSize", clusterBackgroundColor: "clusterBackgroundColor", clusterCursor: "clusterCursor", clusterLabelColor: "clusterLabelColor", data: "data" }, providers: [{ provide: VisXYComponent, useExisting: VisXYLabelsComponent }], usesOnChanges: true, ngImport: i0__namespace, template: '', isInline: true });
|
|
1826
|
-
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisXYLabelsComponent, decorators: [{
|
|
1827
|
-
type: i0.Component,
|
|
1828
|
-
args: [{
|
|
1829
|
-
selector: 'vis-xy-labels',
|
|
1830
|
-
template: '',
|
|
1831
|
-
// eslint-disable-next-line no-use-before-define
|
|
1832
|
-
providers: [{ provide: VisXYComponent, useExisting: VisXYLabelsComponent }],
|
|
1833
|
-
}]
|
|
1834
|
-
}], propDecorators: { duration: [{
|
|
1835
|
-
type: i0.Input
|
|
1836
|
-
}], events: [{
|
|
1837
|
-
type: i0.Input
|
|
1838
|
-
}], attributes: [{
|
|
1839
|
-
type: i0.Input
|
|
1840
|
-
}], x: [{
|
|
1841
|
-
type: i0.Input
|
|
1842
|
-
}], y: [{
|
|
1843
|
-
type: i0.Input
|
|
1844
|
-
}], id: [{
|
|
1845
|
-
type: i0.Input
|
|
1846
|
-
}], color: [{
|
|
1847
|
-
type: i0.Input
|
|
1848
|
-
}], xScale: [{
|
|
1849
|
-
type: i0.Input
|
|
1850
|
-
}], yScale: [{
|
|
1851
|
-
type: i0.Input
|
|
1852
|
-
}], excludeFromDomainCalculation: [{
|
|
1853
|
-
type: i0.Input
|
|
1854
|
-
}], xPositioning: [{
|
|
1855
|
-
type: i0.Input
|
|
1856
|
-
}], yPositioning: [{
|
|
1857
|
-
type: i0.Input
|
|
1858
|
-
}], labelFontSize: [{
|
|
1859
|
-
type: i0.Input
|
|
1860
|
-
}], label: [{
|
|
1861
|
-
type: i0.Input
|
|
1862
|
-
}], backgroundColor: [{
|
|
1863
|
-
type: i0.Input
|
|
1864
|
-
}], cursor: [{
|
|
1865
|
-
type: i0.Input
|
|
1866
|
-
}], labelTextBrightnessRatio: [{
|
|
1867
|
-
type: i0.Input
|
|
1868
|
-
}], clustering: [{
|
|
1869
|
-
type: i0.Input
|
|
1870
|
-
}], clusterLabel: [{
|
|
1871
|
-
type: i0.Input
|
|
1872
|
-
}], clusterFontSize: [{
|
|
1873
|
-
type: i0.Input
|
|
1874
|
-
}], clusterBackgroundColor: [{
|
|
1875
|
-
type: i0.Input
|
|
1876
|
-
}], clusterCursor: [{
|
|
1877
|
-
type: i0.Input
|
|
1878
|
-
}], clusterLabelColor: [{
|
|
1879
|
-
type: i0.Input
|
|
1880
|
-
}], data: [{
|
|
1881
|
-
type: i0.Input
|
|
1882
|
-
}] } });
|
|
1883
|
-
|
|
1884
|
-
// !!! This code was automatically generated. You should not change it !!!
|
|
1885
|
-
var VisXYLabelsModule = /** @class */ (function () {
|
|
1886
|
-
function VisXYLabelsModule() {
|
|
1887
|
-
}
|
|
1888
|
-
return VisXYLabelsModule;
|
|
1889
|
-
}());
|
|
1890
|
-
VisXYLabelsModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisXYLabelsModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
|
|
1891
|
-
VisXYLabelsModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisXYLabelsModule, declarations: [VisXYLabelsComponent], exports: [VisXYLabelsComponent] });
|
|
1892
|
-
VisXYLabelsModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisXYLabelsModule, imports: [[]] });
|
|
1893
|
-
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisXYLabelsModule, decorators: [{
|
|
1894
|
-
type: i0.NgModule,
|
|
1895
|
-
args: [{
|
|
1896
|
-
imports: [],
|
|
1897
|
-
declarations: [VisXYLabelsComponent],
|
|
1898
|
-
exports: [VisXYLabelsComponent],
|
|
1761
|
+
declarations: [VisLineComponent],
|
|
1762
|
+
exports: [VisLineComponent],
|
|
1899
1763
|
}]
|
|
1900
1764
|
}] });
|
|
1901
1765
|
|
|
1902
1766
|
// !!! This code was automatically generated. You should not change it !!!
|
|
1903
|
-
var
|
|
1904
|
-
function
|
|
1767
|
+
var VisNestedDonutComponent = /** @class */ (function () {
|
|
1768
|
+
function VisNestedDonutComponent() {
|
|
1905
1769
|
}
|
|
1906
|
-
|
|
1770
|
+
VisNestedDonutComponent.prototype.ngAfterViewInit = function () {
|
|
1907
1771
|
var _a;
|
|
1908
|
-
this.component = new ts.
|
|
1772
|
+
this.component = new ts.NestedDonut(this.getConfig());
|
|
1909
1773
|
if (this.data) {
|
|
1910
1774
|
this.component.setData(this.data);
|
|
1911
1775
|
(_a = this.componentContainer) === null || _a === void 0 ? void 0 : _a.render();
|
|
1912
1776
|
}
|
|
1913
1777
|
};
|
|
1914
|
-
|
|
1778
|
+
VisNestedDonutComponent.prototype.ngOnChanges = function (changes) {
|
|
1915
1779
|
var _a, _b, _c;
|
|
1916
1780
|
if (changes.data) {
|
|
1917
1781
|
(_a = this.component) === null || _a === void 0 ? void 0 : _a.setData(this.data);
|
|
@@ -1919,9 +1783,9 @@
|
|
|
1919
1783
|
(_b = this.component) === null || _b === void 0 ? void 0 : _b.setConfig(this.getConfig());
|
|
1920
1784
|
(_c = this.componentContainer) === null || _c === void 0 ? void 0 : _c.render();
|
|
1921
1785
|
};
|
|
1922
|
-
|
|
1923
|
-
var _d = this, duration = _d.duration, events = _d.events, attributes = _d.attributes,
|
|
1924
|
-
var config = { duration: duration, events: events, attributes: attributes,
|
|
1786
|
+
VisNestedDonutComponent.prototype.getConfig = function () {
|
|
1787
|
+
var _d = this, duration = _d.duration, events = _d.events, attributes = _d.attributes, angleRange = _d.angleRange, direction = _d.direction, value = _d.value, centralLabel = _d.centralLabel, centralSubLabel = _d.centralSubLabel, centralSubLabelWrap = _d.centralSubLabelWrap, showBackground = _d.showBackground, sort = _d.sort, layers = _d.layers, layerSettings = _d.layerSettings, layerPadding = _d.layerPadding, cornerRadius = _d.cornerRadius, emptySegmentAngle = _d.emptySegmentAngle, hideOverflowingSegmentLabels = _d.hideOverflowingSegmentLabels, segmentColor = _d.segmentColor, segmentLabel = _d.segmentLabel, segmentLabelColor = _d.segmentLabelColor, showEmptySegments = _d.showEmptySegments;
|
|
1788
|
+
var config = { duration: duration, events: events, attributes: attributes, angleRange: angleRange, direction: direction, value: value, centralLabel: centralLabel, centralSubLabel: centralSubLabel, centralSubLabelWrap: centralSubLabelWrap, showBackground: showBackground, sort: sort, layers: layers, layerSettings: layerSettings, layerPadding: layerPadding, cornerRadius: cornerRadius, emptySegmentAngle: emptySegmentAngle, hideOverflowingSegmentLabels: hideOverflowingSegmentLabels, segmentColor: segmentColor, segmentLabel: segmentLabel, segmentLabelColor: segmentLabelColor, showEmptySegments: showEmptySegments };
|
|
1925
1789
|
var keys = Object.keys(config);
|
|
1926
1790
|
keys.forEach(function (key) {
|
|
1927
1791
|
if (config[key] === undefined)
|
|
@@ -1929,17 +1793,17 @@
|
|
|
1929
1793
|
});
|
|
1930
1794
|
return config;
|
|
1931
1795
|
};
|
|
1932
|
-
return
|
|
1796
|
+
return VisNestedDonutComponent;
|
|
1933
1797
|
}());
|
|
1934
|
-
|
|
1935
|
-
|
|
1936
|
-
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type:
|
|
1798
|
+
VisNestedDonutComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisNestedDonutComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
1799
|
+
VisNestedDonutComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: VisNestedDonutComponent, selector: "vis-nested-donut", inputs: { duration: "duration", events: "events", attributes: "attributes", angleRange: "angleRange", direction: "direction", value: "value", centralLabel: "centralLabel", centralSubLabel: "centralSubLabel", centralSubLabelWrap: "centralSubLabelWrap", showBackground: "showBackground", sort: "sort", layers: "layers", layerSettings: "layerSettings", layerPadding: "layerPadding", cornerRadius: "cornerRadius", emptySegmentAngle: "emptySegmentAngle", hideOverflowingSegmentLabels: "hideOverflowingSegmentLabels", segmentColor: "segmentColor", segmentLabel: "segmentLabel", segmentLabelColor: "segmentLabelColor", showEmptySegments: "showEmptySegments", data: "data" }, providers: [{ provide: VisCoreComponent, useExisting: VisNestedDonutComponent }], usesOnChanges: true, ngImport: i0__namespace, template: '', isInline: true });
|
|
1800
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisNestedDonutComponent, decorators: [{
|
|
1937
1801
|
type: i0.Component,
|
|
1938
1802
|
args: [{
|
|
1939
|
-
selector: 'vis-
|
|
1803
|
+
selector: 'vis-nested-donut',
|
|
1940
1804
|
template: '',
|
|
1941
1805
|
// eslint-disable-next-line no-use-before-define
|
|
1942
|
-
providers: [{ provide: VisCoreComponent, useExisting:
|
|
1806
|
+
providers: [{ provide: VisCoreComponent, useExisting: VisNestedDonutComponent }],
|
|
1943
1807
|
}]
|
|
1944
1808
|
}], propDecorators: { duration: [{
|
|
1945
1809
|
type: i0.Input
|
|
@@ -1947,85 +1811,61 @@
|
|
|
1947
1811
|
type: i0.Input
|
|
1948
1812
|
}], attributes: [{
|
|
1949
1813
|
type: i0.Input
|
|
1950
|
-
}],
|
|
1951
|
-
type: i0.Input
|
|
1952
|
-
}], topojson: [{
|
|
1953
|
-
type: i0.Input
|
|
1954
|
-
}], mapFeatureName: [{
|
|
1955
|
-
type: i0.Input
|
|
1956
|
-
}], mapFitToPoints: [{
|
|
1957
|
-
type: i0.Input
|
|
1958
|
-
}], zoomFactor: [{
|
|
1959
|
-
type: i0.Input
|
|
1960
|
-
}], disableZoom: [{
|
|
1961
|
-
type: i0.Input
|
|
1962
|
-
}], zoomExtent: [{
|
|
1963
|
-
type: i0.Input
|
|
1964
|
-
}], zoomDuration: [{
|
|
1965
|
-
type: i0.Input
|
|
1966
|
-
}], linkWidth: [{
|
|
1967
|
-
type: i0.Input
|
|
1968
|
-
}], linkColor: [{
|
|
1969
|
-
type: i0.Input
|
|
1970
|
-
}], linkCursor: [{
|
|
1971
|
-
type: i0.Input
|
|
1972
|
-
}], linkId: [{
|
|
1973
|
-
type: i0.Input
|
|
1974
|
-
}], linkSource: [{
|
|
1814
|
+
}], angleRange: [{
|
|
1975
1815
|
type: i0.Input
|
|
1976
|
-
}],
|
|
1816
|
+
}], direction: [{
|
|
1977
1817
|
type: i0.Input
|
|
1978
|
-
}],
|
|
1818
|
+
}], value: [{
|
|
1979
1819
|
type: i0.Input
|
|
1980
|
-
}],
|
|
1820
|
+
}], centralLabel: [{
|
|
1981
1821
|
type: i0.Input
|
|
1982
|
-
}],
|
|
1822
|
+
}], centralSubLabel: [{
|
|
1983
1823
|
type: i0.Input
|
|
1984
|
-
}],
|
|
1824
|
+
}], centralSubLabelWrap: [{
|
|
1985
1825
|
type: i0.Input
|
|
1986
|
-
}],
|
|
1826
|
+
}], showBackground: [{
|
|
1987
1827
|
type: i0.Input
|
|
1988
|
-
}],
|
|
1828
|
+
}], sort: [{
|
|
1989
1829
|
type: i0.Input
|
|
1990
|
-
}],
|
|
1830
|
+
}], layers: [{
|
|
1991
1831
|
type: i0.Input
|
|
1992
|
-
}],
|
|
1832
|
+
}], layerSettings: [{
|
|
1993
1833
|
type: i0.Input
|
|
1994
|
-
}],
|
|
1834
|
+
}], layerPadding: [{
|
|
1995
1835
|
type: i0.Input
|
|
1996
|
-
}],
|
|
1836
|
+
}], cornerRadius: [{
|
|
1997
1837
|
type: i0.Input
|
|
1998
|
-
}],
|
|
1838
|
+
}], emptySegmentAngle: [{
|
|
1999
1839
|
type: i0.Input
|
|
2000
|
-
}],
|
|
1840
|
+
}], hideOverflowingSegmentLabels: [{
|
|
2001
1841
|
type: i0.Input
|
|
2002
|
-
}],
|
|
1842
|
+
}], segmentColor: [{
|
|
2003
1843
|
type: i0.Input
|
|
2004
|
-
}],
|
|
1844
|
+
}], segmentLabel: [{
|
|
2005
1845
|
type: i0.Input
|
|
2006
|
-
}],
|
|
1846
|
+
}], segmentLabelColor: [{
|
|
2007
1847
|
type: i0.Input
|
|
2008
|
-
}],
|
|
1848
|
+
}], showEmptySegments: [{
|
|
2009
1849
|
type: i0.Input
|
|
2010
1850
|
}], data: [{
|
|
2011
1851
|
type: i0.Input
|
|
2012
1852
|
}] } });
|
|
2013
1853
|
|
|
2014
1854
|
// !!! This code was automatically generated. You should not change it !!!
|
|
2015
|
-
var
|
|
2016
|
-
function
|
|
1855
|
+
var VisNestedDonutModule = /** @class */ (function () {
|
|
1856
|
+
function VisNestedDonutModule() {
|
|
2017
1857
|
}
|
|
2018
|
-
return
|
|
1858
|
+
return VisNestedDonutModule;
|
|
2019
1859
|
}());
|
|
2020
|
-
|
|
2021
|
-
|
|
2022
|
-
|
|
2023
|
-
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type:
|
|
1860
|
+
VisNestedDonutModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisNestedDonutModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
|
|
1861
|
+
VisNestedDonutModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisNestedDonutModule, declarations: [VisNestedDonutComponent], exports: [VisNestedDonutComponent] });
|
|
1862
|
+
VisNestedDonutModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisNestedDonutModule, imports: [[]] });
|
|
1863
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisNestedDonutModule, decorators: [{
|
|
2024
1864
|
type: i0.NgModule,
|
|
2025
1865
|
args: [{
|
|
2026
1866
|
imports: [],
|
|
2027
|
-
declarations: [
|
|
2028
|
-
exports: [
|
|
1867
|
+
declarations: [VisNestedDonutComponent],
|
|
1868
|
+
exports: [VisNestedDonutComponent],
|
|
2029
1869
|
}]
|
|
2030
1870
|
}] });
|
|
2031
1871
|
|
|
@@ -2188,18 +2028,18 @@
|
|
|
2188
2028
|
}] });
|
|
2189
2029
|
|
|
2190
2030
|
// !!! This code was automatically generated. You should not change it !!!
|
|
2191
|
-
var
|
|
2192
|
-
function
|
|
2031
|
+
var VisScatterComponent = /** @class */ (function () {
|
|
2032
|
+
function VisScatterComponent() {
|
|
2193
2033
|
}
|
|
2194
|
-
|
|
2034
|
+
VisScatterComponent.prototype.ngAfterViewInit = function () {
|
|
2195
2035
|
var _a;
|
|
2196
|
-
this.component = new ts.
|
|
2036
|
+
this.component = new ts.Scatter(this.getConfig());
|
|
2197
2037
|
if (this.data) {
|
|
2198
2038
|
this.component.setData(this.data);
|
|
2199
2039
|
(_a = this.componentContainer) === null || _a === void 0 ? void 0 : _a.render();
|
|
2200
2040
|
}
|
|
2201
2041
|
};
|
|
2202
|
-
|
|
2042
|
+
VisScatterComponent.prototype.ngOnChanges = function (changes) {
|
|
2203
2043
|
var _a, _b, _c;
|
|
2204
2044
|
if (changes.data) {
|
|
2205
2045
|
(_a = this.component) === null || _a === void 0 ? void 0 : _a.setData(this.data);
|
|
@@ -2207,9 +2047,9 @@
|
|
|
2207
2047
|
(_b = this.component) === null || _b === void 0 ? void 0 : _b.setConfig(this.getConfig());
|
|
2208
2048
|
(_c = this.componentContainer) === null || _c === void 0 ? void 0 : _c.render();
|
|
2209
2049
|
};
|
|
2210
|
-
|
|
2211
|
-
var _d = this, duration = _d.duration, events = _d.events, attributes = _d.attributes,
|
|
2212
|
-
var config = { duration: duration, events: events, attributes: attributes,
|
|
2050
|
+
VisScatterComponent.prototype.getConfig = function () {
|
|
2051
|
+
var _d = this, duration = _d.duration, events = _d.events, attributes = _d.attributes, x = _d.x, y = _d.y, id = _d.id, color = _d.color, xScale = _d.xScale, yScale = _d.yScale, excludeFromDomainCalculation = _d.excludeFromDomainCalculation, size = _d.size, sizeScale = _d.sizeScale, sizeRange = _d.sizeRange, shape = _d.shape, label = _d.label, labelColor = _d.labelColor, labelHideOverlapping = _d.labelHideOverlapping, cursor = _d.cursor, labelTextBrightnessRatio = _d.labelTextBrightnessRatio, labelPosition = _d.labelPosition, strokeColor = _d.strokeColor, strokeWidth = _d.strokeWidth;
|
|
2052
|
+
var config = { duration: duration, events: events, attributes: attributes, x: x, y: y, id: id, color: color, xScale: xScale, yScale: yScale, excludeFromDomainCalculation: excludeFromDomainCalculation, size: size, sizeScale: sizeScale, sizeRange: sizeRange, shape: shape, label: label, labelColor: labelColor, labelHideOverlapping: labelHideOverlapping, cursor: cursor, labelTextBrightnessRatio: labelTextBrightnessRatio, labelPosition: labelPosition, strokeColor: strokeColor, strokeWidth: strokeWidth };
|
|
2213
2053
|
var keys = Object.keys(config);
|
|
2214
2054
|
keys.forEach(function (key) {
|
|
2215
2055
|
if (config[key] === undefined)
|
|
@@ -2217,17 +2057,17 @@
|
|
|
2217
2057
|
});
|
|
2218
2058
|
return config;
|
|
2219
2059
|
};
|
|
2220
|
-
return
|
|
2060
|
+
return VisScatterComponent;
|
|
2221
2061
|
}());
|
|
2222
|
-
|
|
2223
|
-
|
|
2224
|
-
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type:
|
|
2062
|
+
VisScatterComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisScatterComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
2063
|
+
VisScatterComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: VisScatterComponent, selector: "vis-scatter", inputs: { duration: "duration", events: "events", attributes: "attributes", x: "x", y: "y", id: "id", color: "color", xScale: "xScale", yScale: "yScale", excludeFromDomainCalculation: "excludeFromDomainCalculation", size: "size", sizeScale: "sizeScale", sizeRange: "sizeRange", shape: "shape", label: "label", labelColor: "labelColor", labelHideOverlapping: "labelHideOverlapping", cursor: "cursor", labelTextBrightnessRatio: "labelTextBrightnessRatio", labelPosition: "labelPosition", strokeColor: "strokeColor", strokeWidth: "strokeWidth", data: "data" }, providers: [{ provide: VisXYComponent, useExisting: VisScatterComponent }], usesOnChanges: true, ngImport: i0__namespace, template: '', isInline: true });
|
|
2064
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisScatterComponent, decorators: [{
|
|
2225
2065
|
type: i0.Component,
|
|
2226
2066
|
args: [{
|
|
2227
|
-
selector: 'vis-
|
|
2067
|
+
selector: 'vis-scatter',
|
|
2228
2068
|
template: '',
|
|
2229
2069
|
// eslint-disable-next-line no-use-before-define
|
|
2230
|
-
providers: [{ provide:
|
|
2070
|
+
providers: [{ provide: VisXYComponent, useExisting: VisScatterComponent }],
|
|
2231
2071
|
}]
|
|
2232
2072
|
}], propDecorators: { duration: [{
|
|
2233
2073
|
type: i0.Input
|
|
@@ -2235,163 +2075,287 @@
|
|
|
2235
2075
|
type: i0.Input
|
|
2236
2076
|
}], attributes: [{
|
|
2237
2077
|
type: i0.Input
|
|
2238
|
-
}],
|
|
2078
|
+
}], x: [{
|
|
2239
2079
|
type: i0.Input
|
|
2240
|
-
}],
|
|
2080
|
+
}], y: [{
|
|
2241
2081
|
type: i0.Input
|
|
2242
|
-
}],
|
|
2082
|
+
}], id: [{
|
|
2243
2083
|
type: i0.Input
|
|
2244
|
-
}],
|
|
2084
|
+
}], color: [{
|
|
2245
2085
|
type: i0.Input
|
|
2246
|
-
}],
|
|
2086
|
+
}], xScale: [{
|
|
2247
2087
|
type: i0.Input
|
|
2248
|
-
}],
|
|
2088
|
+
}], yScale: [{
|
|
2249
2089
|
type: i0.Input
|
|
2250
|
-
}],
|
|
2090
|
+
}], excludeFromDomainCalculation: [{
|
|
2251
2091
|
type: i0.Input
|
|
2252
|
-
}],
|
|
2092
|
+
}], size: [{
|
|
2253
2093
|
type: i0.Input
|
|
2254
|
-
}],
|
|
2094
|
+
}], sizeScale: [{
|
|
2255
2095
|
type: i0.Input
|
|
2256
|
-
}],
|
|
2096
|
+
}], sizeRange: [{
|
|
2257
2097
|
type: i0.Input
|
|
2258
|
-
}],
|
|
2098
|
+
}], shape: [{
|
|
2259
2099
|
type: i0.Input
|
|
2260
|
-
}],
|
|
2100
|
+
}], label: [{
|
|
2261
2101
|
type: i0.Input
|
|
2262
|
-
}],
|
|
2102
|
+
}], labelColor: [{
|
|
2263
2103
|
type: i0.Input
|
|
2264
|
-
}],
|
|
2104
|
+
}], labelHideOverlapping: [{
|
|
2265
2105
|
type: i0.Input
|
|
2266
|
-
}],
|
|
2106
|
+
}], cursor: [{
|
|
2267
2107
|
type: i0.Input
|
|
2268
|
-
}],
|
|
2108
|
+
}], labelTextBrightnessRatio: [{
|
|
2269
2109
|
type: i0.Input
|
|
2270
|
-
}],
|
|
2110
|
+
}], labelPosition: [{
|
|
2271
2111
|
type: i0.Input
|
|
2272
|
-
}],
|
|
2112
|
+
}], strokeColor: [{
|
|
2273
2113
|
type: i0.Input
|
|
2274
|
-
}],
|
|
2114
|
+
}], strokeWidth: [{
|
|
2275
2115
|
type: i0.Input
|
|
2276
|
-
}],
|
|
2116
|
+
}], data: [{
|
|
2277
2117
|
type: i0.Input
|
|
2278
|
-
}]
|
|
2118
|
+
}] } });
|
|
2119
|
+
|
|
2120
|
+
// !!! This code was automatically generated. You should not change it !!!
|
|
2121
|
+
var VisScatterModule = /** @class */ (function () {
|
|
2122
|
+
function VisScatterModule() {
|
|
2123
|
+
}
|
|
2124
|
+
return VisScatterModule;
|
|
2125
|
+
}());
|
|
2126
|
+
VisScatterModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisScatterModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
|
|
2127
|
+
VisScatterModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisScatterModule, declarations: [VisScatterComponent], exports: [VisScatterComponent] });
|
|
2128
|
+
VisScatterModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisScatterModule, imports: [[]] });
|
|
2129
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisScatterModule, decorators: [{
|
|
2130
|
+
type: i0.NgModule,
|
|
2131
|
+
args: [{
|
|
2132
|
+
imports: [],
|
|
2133
|
+
declarations: [VisScatterComponent],
|
|
2134
|
+
exports: [VisScatterComponent],
|
|
2135
|
+
}]
|
|
2136
|
+
}] });
|
|
2137
|
+
|
|
2138
|
+
// !!! This code was automatically generated. You should not change it !!!
|
|
2139
|
+
var VisStackedBarComponent = /** @class */ (function () {
|
|
2140
|
+
function VisStackedBarComponent() {
|
|
2141
|
+
}
|
|
2142
|
+
VisStackedBarComponent.prototype.ngAfterViewInit = function () {
|
|
2143
|
+
var _a;
|
|
2144
|
+
this.component = new ts.StackedBar(this.getConfig());
|
|
2145
|
+
if (this.data) {
|
|
2146
|
+
this.component.setData(this.data);
|
|
2147
|
+
(_a = this.componentContainer) === null || _a === void 0 ? void 0 : _a.render();
|
|
2148
|
+
}
|
|
2149
|
+
};
|
|
2150
|
+
VisStackedBarComponent.prototype.ngOnChanges = function (changes) {
|
|
2151
|
+
var _a, _b, _c;
|
|
2152
|
+
if (changes.data) {
|
|
2153
|
+
(_a = this.component) === null || _a === void 0 ? void 0 : _a.setData(this.data);
|
|
2154
|
+
}
|
|
2155
|
+
(_b = this.component) === null || _b === void 0 ? void 0 : _b.setConfig(this.getConfig());
|
|
2156
|
+
(_c = this.componentContainer) === null || _c === void 0 ? void 0 : _c.render();
|
|
2157
|
+
};
|
|
2158
|
+
VisStackedBarComponent.prototype.getConfig = function () {
|
|
2159
|
+
var _d = this, duration = _d.duration, events = _d.events, attributes = _d.attributes, x = _d.x, y = _d.y, id = _d.id, color = _d.color, xScale = _d.xScale, yScale = _d.yScale, excludeFromDomainCalculation = _d.excludeFromDomainCalculation, barWidth = _d.barWidth, barMaxWidth = _d.barMaxWidth, dataStep = _d.dataStep, barPadding = _d.barPadding, roundedCorners = _d.roundedCorners, cursor = _d.cursor, barMinHeight1Px = _d.barMinHeight1Px, barMinHeightZeroValue = _d.barMinHeightZeroValue, orientation = _d.orientation;
|
|
2160
|
+
var config = { duration: duration, events: events, attributes: attributes, x: x, y: y, id: id, color: color, xScale: xScale, yScale: yScale, excludeFromDomainCalculation: excludeFromDomainCalculation, barWidth: barWidth, barMaxWidth: barMaxWidth, dataStep: dataStep, barPadding: barPadding, roundedCorners: roundedCorners, cursor: cursor, barMinHeight1Px: barMinHeight1Px, barMinHeightZeroValue: barMinHeightZeroValue, orientation: orientation };
|
|
2161
|
+
var keys = Object.keys(config);
|
|
2162
|
+
keys.forEach(function (key) {
|
|
2163
|
+
if (config[key] === undefined)
|
|
2164
|
+
delete config[key];
|
|
2165
|
+
});
|
|
2166
|
+
return config;
|
|
2167
|
+
};
|
|
2168
|
+
return VisStackedBarComponent;
|
|
2169
|
+
}());
|
|
2170
|
+
VisStackedBarComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisStackedBarComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
2171
|
+
VisStackedBarComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: VisStackedBarComponent, selector: "vis-stacked-bar", inputs: { duration: "duration", events: "events", attributes: "attributes", x: "x", y: "y", id: "id", color: "color", xScale: "xScale", yScale: "yScale", excludeFromDomainCalculation: "excludeFromDomainCalculation", barWidth: "barWidth", barMaxWidth: "barMaxWidth", dataStep: "dataStep", barPadding: "barPadding", roundedCorners: "roundedCorners", cursor: "cursor", barMinHeight1Px: "barMinHeight1Px", barMinHeightZeroValue: "barMinHeightZeroValue", orientation: "orientation", data: "data" }, providers: [{ provide: VisXYComponent, useExisting: VisStackedBarComponent }], usesOnChanges: true, ngImport: i0__namespace, template: '', isInline: true });
|
|
2172
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisStackedBarComponent, decorators: [{
|
|
2173
|
+
type: i0.Component,
|
|
2174
|
+
args: [{
|
|
2175
|
+
selector: 'vis-stacked-bar',
|
|
2176
|
+
template: '',
|
|
2177
|
+
// eslint-disable-next-line no-use-before-define
|
|
2178
|
+
providers: [{ provide: VisXYComponent, useExisting: VisStackedBarComponent }],
|
|
2179
|
+
}]
|
|
2180
|
+
}], propDecorators: { duration: [{
|
|
2279
2181
|
type: i0.Input
|
|
2280
|
-
}],
|
|
2182
|
+
}], events: [{
|
|
2281
2183
|
type: i0.Input
|
|
2282
|
-
}],
|
|
2184
|
+
}], attributes: [{
|
|
2283
2185
|
type: i0.Input
|
|
2284
|
-
}],
|
|
2186
|
+
}], x: [{
|
|
2285
2187
|
type: i0.Input
|
|
2286
|
-
}],
|
|
2188
|
+
}], y: [{
|
|
2287
2189
|
type: i0.Input
|
|
2288
|
-
}],
|
|
2190
|
+
}], id: [{
|
|
2289
2191
|
type: i0.Input
|
|
2290
|
-
}],
|
|
2192
|
+
}], color: [{
|
|
2291
2193
|
type: i0.Input
|
|
2292
|
-
}],
|
|
2194
|
+
}], xScale: [{
|
|
2293
2195
|
type: i0.Input
|
|
2294
|
-
}],
|
|
2196
|
+
}], yScale: [{
|
|
2295
2197
|
type: i0.Input
|
|
2296
|
-
}],
|
|
2198
|
+
}], excludeFromDomainCalculation: [{
|
|
2297
2199
|
type: i0.Input
|
|
2298
|
-
}],
|
|
2200
|
+
}], barWidth: [{
|
|
2299
2201
|
type: i0.Input
|
|
2300
|
-
}],
|
|
2202
|
+
}], barMaxWidth: [{
|
|
2301
2203
|
type: i0.Input
|
|
2302
|
-
}],
|
|
2204
|
+
}], dataStep: [{
|
|
2303
2205
|
type: i0.Input
|
|
2304
|
-
}],
|
|
2206
|
+
}], barPadding: [{
|
|
2305
2207
|
type: i0.Input
|
|
2306
|
-
}],
|
|
2208
|
+
}], roundedCorners: [{
|
|
2307
2209
|
type: i0.Input
|
|
2308
|
-
}],
|
|
2210
|
+
}], cursor: [{
|
|
2309
2211
|
type: i0.Input
|
|
2310
|
-
}],
|
|
2212
|
+
}], barMinHeight1Px: [{
|
|
2311
2213
|
type: i0.Input
|
|
2312
|
-
}],
|
|
2214
|
+
}], barMinHeightZeroValue: [{
|
|
2313
2215
|
type: i0.Input
|
|
2314
|
-
}],
|
|
2216
|
+
}], orientation: [{
|
|
2315
2217
|
type: i0.Input
|
|
2316
|
-
}],
|
|
2218
|
+
}], data: [{
|
|
2317
2219
|
type: i0.Input
|
|
2318
|
-
}]
|
|
2220
|
+
}] } });
|
|
2221
|
+
|
|
2222
|
+
// !!! This code was automatically generated. You should not change it !!!
|
|
2223
|
+
var VisStackedBarModule = /** @class */ (function () {
|
|
2224
|
+
function VisStackedBarModule() {
|
|
2225
|
+
}
|
|
2226
|
+
return VisStackedBarModule;
|
|
2227
|
+
}());
|
|
2228
|
+
VisStackedBarModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisStackedBarModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
|
|
2229
|
+
VisStackedBarModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisStackedBarModule, declarations: [VisStackedBarComponent], exports: [VisStackedBarComponent] });
|
|
2230
|
+
VisStackedBarModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisStackedBarModule, imports: [[]] });
|
|
2231
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisStackedBarModule, decorators: [{
|
|
2232
|
+
type: i0.NgModule,
|
|
2233
|
+
args: [{
|
|
2234
|
+
imports: [],
|
|
2235
|
+
declarations: [VisStackedBarComponent],
|
|
2236
|
+
exports: [VisStackedBarComponent],
|
|
2237
|
+
}]
|
|
2238
|
+
}] });
|
|
2239
|
+
|
|
2240
|
+
// !!! This code was automatically generated. You should not change it !!!
|
|
2241
|
+
var VisTimelineComponent = /** @class */ (function () {
|
|
2242
|
+
function VisTimelineComponent() {
|
|
2243
|
+
}
|
|
2244
|
+
VisTimelineComponent.prototype.ngAfterViewInit = function () {
|
|
2245
|
+
var _a;
|
|
2246
|
+
this.component = new ts.Timeline(this.getConfig());
|
|
2247
|
+
if (this.data) {
|
|
2248
|
+
this.component.setData(this.data);
|
|
2249
|
+
(_a = this.componentContainer) === null || _a === void 0 ? void 0 : _a.render();
|
|
2250
|
+
}
|
|
2251
|
+
};
|
|
2252
|
+
VisTimelineComponent.prototype.ngOnChanges = function (changes) {
|
|
2253
|
+
var _a, _b, _c;
|
|
2254
|
+
if (changes.data) {
|
|
2255
|
+
(_a = this.component) === null || _a === void 0 ? void 0 : _a.setData(this.data);
|
|
2256
|
+
}
|
|
2257
|
+
(_b = this.component) === null || _b === void 0 ? void 0 : _b.setConfig(this.getConfig());
|
|
2258
|
+
(_c = this.componentContainer) === null || _c === void 0 ? void 0 : _c.render();
|
|
2259
|
+
};
|
|
2260
|
+
VisTimelineComponent.prototype.getConfig = function () {
|
|
2261
|
+
var _d = this, duration = _d.duration, events = _d.events, attributes = _d.attributes, x = _d.x, id = _d.id, color = _d.color, xScale = _d.xScale, yScale = _d.yScale, excludeFromDomainCalculation = _d.excludeFromDomainCalculation, lineWidth = _d.lineWidth, lineCap = _d.lineCap, rowHeight = _d.rowHeight, length = _d.length, type = _d.type, cursor = _d.cursor, showLabels = _d.showLabels, labelWidth = _d.labelWidth, maxLabelWidth = _d.maxLabelWidth, alternatingRowColors = _d.alternatingRowColors, onScroll = _d.onScroll, showEmptySegments = _d.showEmptySegments;
|
|
2262
|
+
var config = { duration: duration, events: events, attributes: attributes, x: x, id: id, color: color, xScale: xScale, yScale: yScale, excludeFromDomainCalculation: excludeFromDomainCalculation, lineWidth: lineWidth, lineCap: lineCap, rowHeight: rowHeight, length: length, type: type, cursor: cursor, showLabels: showLabels, labelWidth: labelWidth, maxLabelWidth: maxLabelWidth, alternatingRowColors: alternatingRowColors, onScroll: onScroll, showEmptySegments: showEmptySegments };
|
|
2263
|
+
var keys = Object.keys(config);
|
|
2264
|
+
keys.forEach(function (key) {
|
|
2265
|
+
if (config[key] === undefined)
|
|
2266
|
+
delete config[key];
|
|
2267
|
+
});
|
|
2268
|
+
return config;
|
|
2269
|
+
};
|
|
2270
|
+
return VisTimelineComponent;
|
|
2271
|
+
}());
|
|
2272
|
+
VisTimelineComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisTimelineComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
2273
|
+
VisTimelineComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: VisTimelineComponent, selector: "vis-timeline", inputs: { duration: "duration", events: "events", attributes: "attributes", x: "x", id: "id", color: "color", xScale: "xScale", yScale: "yScale", excludeFromDomainCalculation: "excludeFromDomainCalculation", lineWidth: "lineWidth", lineCap: "lineCap", rowHeight: "rowHeight", length: "length", type: "type", cursor: "cursor", showLabels: "showLabels", labelWidth: "labelWidth", maxLabelWidth: "maxLabelWidth", alternatingRowColors: "alternatingRowColors", onScroll: "onScroll", showEmptySegments: "showEmptySegments", data: "data" }, providers: [{ provide: VisXYComponent, useExisting: VisTimelineComponent }], usesOnChanges: true, ngImport: i0__namespace, template: '', isInline: true });
|
|
2274
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisTimelineComponent, decorators: [{
|
|
2275
|
+
type: i0.Component,
|
|
2276
|
+
args: [{
|
|
2277
|
+
selector: 'vis-timeline',
|
|
2278
|
+
template: '',
|
|
2279
|
+
// eslint-disable-next-line no-use-before-define
|
|
2280
|
+
providers: [{ provide: VisXYComponent, useExisting: VisTimelineComponent }],
|
|
2281
|
+
}]
|
|
2282
|
+
}], propDecorators: { duration: [{
|
|
2319
2283
|
type: i0.Input
|
|
2320
|
-
}],
|
|
2284
|
+
}], events: [{
|
|
2321
2285
|
type: i0.Input
|
|
2322
|
-
}],
|
|
2286
|
+
}], attributes: [{
|
|
2323
2287
|
type: i0.Input
|
|
2324
|
-
}],
|
|
2288
|
+
}], x: [{
|
|
2325
2289
|
type: i0.Input
|
|
2326
|
-
}],
|
|
2290
|
+
}], id: [{
|
|
2327
2291
|
type: i0.Input
|
|
2328
|
-
}],
|
|
2292
|
+
}], color: [{
|
|
2329
2293
|
type: i0.Input
|
|
2330
|
-
}],
|
|
2294
|
+
}], xScale: [{
|
|
2331
2295
|
type: i0.Input
|
|
2332
|
-
}],
|
|
2296
|
+
}], yScale: [{
|
|
2333
2297
|
type: i0.Input
|
|
2334
|
-
}],
|
|
2298
|
+
}], excludeFromDomainCalculation: [{
|
|
2335
2299
|
type: i0.Input
|
|
2336
|
-
}],
|
|
2300
|
+
}], lineWidth: [{
|
|
2337
2301
|
type: i0.Input
|
|
2338
|
-
}],
|
|
2302
|
+
}], lineCap: [{
|
|
2339
2303
|
type: i0.Input
|
|
2340
|
-
}],
|
|
2304
|
+
}], rowHeight: [{
|
|
2341
2305
|
type: i0.Input
|
|
2342
|
-
}],
|
|
2306
|
+
}], length: [{
|
|
2343
2307
|
type: i0.Input
|
|
2344
|
-
}],
|
|
2308
|
+
}], type: [{
|
|
2345
2309
|
type: i0.Input
|
|
2346
|
-
}],
|
|
2310
|
+
}], cursor: [{
|
|
2347
2311
|
type: i0.Input
|
|
2348
|
-
}],
|
|
2312
|
+
}], showLabels: [{
|
|
2349
2313
|
type: i0.Input
|
|
2350
|
-
}],
|
|
2314
|
+
}], labelWidth: [{
|
|
2351
2315
|
type: i0.Input
|
|
2352
|
-
}],
|
|
2316
|
+
}], maxLabelWidth: [{
|
|
2353
2317
|
type: i0.Input
|
|
2354
|
-
}],
|
|
2318
|
+
}], alternatingRowColors: [{
|
|
2355
2319
|
type: i0.Input
|
|
2356
|
-
}],
|
|
2320
|
+
}], onScroll: [{
|
|
2357
2321
|
type: i0.Input
|
|
2358
|
-
}],
|
|
2322
|
+
}], showEmptySegments: [{
|
|
2359
2323
|
type: i0.Input
|
|
2360
2324
|
}], data: [{
|
|
2361
2325
|
type: i0.Input
|
|
2362
2326
|
}] } });
|
|
2363
2327
|
|
|
2364
2328
|
// !!! This code was automatically generated. You should not change it !!!
|
|
2365
|
-
var
|
|
2366
|
-
function
|
|
2329
|
+
var VisTimelineModule = /** @class */ (function () {
|
|
2330
|
+
function VisTimelineModule() {
|
|
2367
2331
|
}
|
|
2368
|
-
return
|
|
2332
|
+
return VisTimelineModule;
|
|
2369
2333
|
}());
|
|
2370
|
-
|
|
2371
|
-
|
|
2372
|
-
|
|
2373
|
-
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type:
|
|
2334
|
+
VisTimelineModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisTimelineModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
|
|
2335
|
+
VisTimelineModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisTimelineModule, declarations: [VisTimelineComponent], exports: [VisTimelineComponent] });
|
|
2336
|
+
VisTimelineModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisTimelineModule, imports: [[]] });
|
|
2337
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisTimelineModule, decorators: [{
|
|
2374
2338
|
type: i0.NgModule,
|
|
2375
2339
|
args: [{
|
|
2376
2340
|
imports: [],
|
|
2377
|
-
declarations: [
|
|
2378
|
-
exports: [
|
|
2341
|
+
declarations: [VisTimelineComponent],
|
|
2342
|
+
exports: [VisTimelineComponent],
|
|
2379
2343
|
}]
|
|
2380
2344
|
}] });
|
|
2381
2345
|
|
|
2382
2346
|
// !!! This code was automatically generated. You should not change it !!!
|
|
2383
|
-
var
|
|
2384
|
-
function
|
|
2347
|
+
var VisXYLabelsComponent = /** @class */ (function () {
|
|
2348
|
+
function VisXYLabelsComponent() {
|
|
2385
2349
|
}
|
|
2386
|
-
|
|
2350
|
+
VisXYLabelsComponent.prototype.ngAfterViewInit = function () {
|
|
2387
2351
|
var _a;
|
|
2388
|
-
this.component = new ts.
|
|
2352
|
+
this.component = new ts.XYLabels(this.getConfig());
|
|
2389
2353
|
if (this.data) {
|
|
2390
2354
|
this.component.setData(this.data);
|
|
2391
2355
|
(_a = this.componentContainer) === null || _a === void 0 ? void 0 : _a.render();
|
|
2392
2356
|
}
|
|
2393
2357
|
};
|
|
2394
|
-
|
|
2358
|
+
VisXYLabelsComponent.prototype.ngOnChanges = function (changes) {
|
|
2395
2359
|
var _a, _b, _c;
|
|
2396
2360
|
if (changes.data) {
|
|
2397
2361
|
(_a = this.component) === null || _a === void 0 ? void 0 : _a.setData(this.data);
|
|
@@ -2399,9 +2363,9 @@
|
|
|
2399
2363
|
(_b = this.component) === null || _b === void 0 ? void 0 : _b.setConfig(this.getConfig());
|
|
2400
2364
|
(_c = this.componentContainer) === null || _c === void 0 ? void 0 : _c.render();
|
|
2401
2365
|
};
|
|
2402
|
-
|
|
2403
|
-
var _d = this, duration = _d.duration, events = _d.events, attributes = _d.attributes,
|
|
2404
|
-
var config = { duration: duration, events: events, attributes: attributes,
|
|
2366
|
+
VisXYLabelsComponent.prototype.getConfig = function () {
|
|
2367
|
+
var _d = this, duration = _d.duration, events = _d.events, attributes = _d.attributes, x = _d.x, y = _d.y, id = _d.id, color = _d.color, xScale = _d.xScale, yScale = _d.yScale, excludeFromDomainCalculation = _d.excludeFromDomainCalculation, xPositioning = _d.xPositioning, yPositioning = _d.yPositioning, labelFontSize = _d.labelFontSize, label = _d.label, backgroundColor = _d.backgroundColor, cursor = _d.cursor, labelTextBrightnessRatio = _d.labelTextBrightnessRatio, clustering = _d.clustering, clusterLabel = _d.clusterLabel, clusterFontSize = _d.clusterFontSize, clusterBackgroundColor = _d.clusterBackgroundColor, clusterCursor = _d.clusterCursor, clusterLabelColor = _d.clusterLabelColor;
|
|
2368
|
+
var config = { duration: duration, events: events, attributes: attributes, x: x, y: y, id: id, color: color, xScale: xScale, yScale: yScale, excludeFromDomainCalculation: excludeFromDomainCalculation, xPositioning: xPositioning, yPositioning: yPositioning, labelFontSize: labelFontSize, label: label, backgroundColor: backgroundColor, cursor: cursor, labelTextBrightnessRatio: labelTextBrightnessRatio, clustering: clustering, clusterLabel: clusterLabel, clusterFontSize: clusterFontSize, clusterBackgroundColor: clusterBackgroundColor, clusterCursor: clusterCursor, clusterLabelColor: clusterLabelColor };
|
|
2405
2369
|
var keys = Object.keys(config);
|
|
2406
2370
|
keys.forEach(function (key) {
|
|
2407
2371
|
if (config[key] === undefined)
|
|
@@ -2409,17 +2373,17 @@
|
|
|
2409
2373
|
});
|
|
2410
2374
|
return config;
|
|
2411
2375
|
};
|
|
2412
|
-
return
|
|
2376
|
+
return VisXYLabelsComponent;
|
|
2413
2377
|
}());
|
|
2414
|
-
|
|
2415
|
-
|
|
2416
|
-
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type:
|
|
2378
|
+
VisXYLabelsComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisXYLabelsComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
2379
|
+
VisXYLabelsComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: VisXYLabelsComponent, selector: "vis-xy-labels", inputs: { duration: "duration", events: "events", attributes: "attributes", x: "x", y: "y", id: "id", color: "color", xScale: "xScale", yScale: "yScale", excludeFromDomainCalculation: "excludeFromDomainCalculation", xPositioning: "xPositioning", yPositioning: "yPositioning", labelFontSize: "labelFontSize", label: "label", backgroundColor: "backgroundColor", cursor: "cursor", labelTextBrightnessRatio: "labelTextBrightnessRatio", clustering: "clustering", clusterLabel: "clusterLabel", clusterFontSize: "clusterFontSize", clusterBackgroundColor: "clusterBackgroundColor", clusterCursor: "clusterCursor", clusterLabelColor: "clusterLabelColor", data: "data" }, providers: [{ provide: VisXYComponent, useExisting: VisXYLabelsComponent }], usesOnChanges: true, ngImport: i0__namespace, template: '', isInline: true });
|
|
2380
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisXYLabelsComponent, decorators: [{
|
|
2417
2381
|
type: i0.Component,
|
|
2418
2382
|
args: [{
|
|
2419
|
-
selector: 'vis-
|
|
2383
|
+
selector: 'vis-xy-labels',
|
|
2420
2384
|
template: '',
|
|
2421
2385
|
// eslint-disable-next-line no-use-before-define
|
|
2422
|
-
providers: [{ provide:
|
|
2386
|
+
providers: [{ provide: VisXYComponent, useExisting: VisXYLabelsComponent }],
|
|
2423
2387
|
}]
|
|
2424
2388
|
}], propDecorators: { duration: [{
|
|
2425
2389
|
type: i0.Input
|
|
@@ -2427,61 +2391,195 @@
|
|
|
2427
2391
|
type: i0.Input
|
|
2428
2392
|
}], attributes: [{
|
|
2429
2393
|
type: i0.Input
|
|
2430
|
-
}],
|
|
2394
|
+
}], x: [{
|
|
2431
2395
|
type: i0.Input
|
|
2432
|
-
}],
|
|
2396
|
+
}], y: [{
|
|
2433
2397
|
type: i0.Input
|
|
2434
|
-
}],
|
|
2398
|
+
}], id: [{
|
|
2435
2399
|
type: i0.Input
|
|
2436
|
-
}],
|
|
2400
|
+
}], color: [{
|
|
2437
2401
|
type: i0.Input
|
|
2438
|
-
}],
|
|
2402
|
+
}], xScale: [{
|
|
2439
2403
|
type: i0.Input
|
|
2440
|
-
}],
|
|
2404
|
+
}], yScale: [{
|
|
2441
2405
|
type: i0.Input
|
|
2442
|
-
}],
|
|
2406
|
+
}], excludeFromDomainCalculation: [{
|
|
2443
2407
|
type: i0.Input
|
|
2444
|
-
}],
|
|
2408
|
+
}], xPositioning: [{
|
|
2445
2409
|
type: i0.Input
|
|
2446
|
-
}],
|
|
2410
|
+
}], yPositioning: [{
|
|
2447
2411
|
type: i0.Input
|
|
2448
|
-
}],
|
|
2412
|
+
}], labelFontSize: [{
|
|
2449
2413
|
type: i0.Input
|
|
2450
|
-
}],
|
|
2414
|
+
}], label: [{
|
|
2451
2415
|
type: i0.Input
|
|
2452
|
-
}],
|
|
2416
|
+
}], backgroundColor: [{
|
|
2453
2417
|
type: i0.Input
|
|
2454
|
-
}],
|
|
2418
|
+
}], cursor: [{
|
|
2455
2419
|
type: i0.Input
|
|
2456
|
-
}],
|
|
2420
|
+
}], labelTextBrightnessRatio: [{
|
|
2457
2421
|
type: i0.Input
|
|
2458
|
-
}],
|
|
2422
|
+
}], clustering: [{
|
|
2459
2423
|
type: i0.Input
|
|
2460
|
-
}],
|
|
2424
|
+
}], clusterLabel: [{
|
|
2461
2425
|
type: i0.Input
|
|
2462
|
-
}],
|
|
2426
|
+
}], clusterFontSize: [{
|
|
2463
2427
|
type: i0.Input
|
|
2464
|
-
}],
|
|
2428
|
+
}], clusterBackgroundColor: [{
|
|
2429
|
+
type: i0.Input
|
|
2430
|
+
}], clusterCursor: [{
|
|
2431
|
+
type: i0.Input
|
|
2432
|
+
}], clusterLabelColor: [{
|
|
2465
2433
|
type: i0.Input
|
|
2466
2434
|
}], data: [{
|
|
2467
2435
|
type: i0.Input
|
|
2468
2436
|
}] } });
|
|
2469
2437
|
|
|
2470
2438
|
// !!! This code was automatically generated. You should not change it !!!
|
|
2471
|
-
var
|
|
2472
|
-
function
|
|
2439
|
+
var VisXYLabelsModule = /** @class */ (function () {
|
|
2440
|
+
function VisXYLabelsModule() {
|
|
2473
2441
|
}
|
|
2474
|
-
return
|
|
2442
|
+
return VisXYLabelsModule;
|
|
2475
2443
|
}());
|
|
2476
|
-
|
|
2477
|
-
|
|
2478
|
-
|
|
2479
|
-
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type:
|
|
2444
|
+
VisXYLabelsModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisXYLabelsModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
|
|
2445
|
+
VisXYLabelsModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisXYLabelsModule, declarations: [VisXYLabelsComponent], exports: [VisXYLabelsComponent] });
|
|
2446
|
+
VisXYLabelsModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisXYLabelsModule, imports: [[]] });
|
|
2447
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisXYLabelsModule, decorators: [{
|
|
2480
2448
|
type: i0.NgModule,
|
|
2481
2449
|
args: [{
|
|
2482
2450
|
imports: [],
|
|
2483
|
-
declarations: [
|
|
2484
|
-
exports: [
|
|
2451
|
+
declarations: [VisXYLabelsComponent],
|
|
2452
|
+
exports: [VisXYLabelsComponent],
|
|
2453
|
+
}]
|
|
2454
|
+
}] });
|
|
2455
|
+
|
|
2456
|
+
// !!! This code was automatically generated. You should not change it !!!
|
|
2457
|
+
var VisTopoJSONMapComponent = /** @class */ (function () {
|
|
2458
|
+
function VisTopoJSONMapComponent() {
|
|
2459
|
+
}
|
|
2460
|
+
VisTopoJSONMapComponent.prototype.ngAfterViewInit = function () {
|
|
2461
|
+
var _a;
|
|
2462
|
+
this.component = new ts.TopoJSONMap(this.getConfig());
|
|
2463
|
+
if (this.data) {
|
|
2464
|
+
this.component.setData(this.data);
|
|
2465
|
+
(_a = this.componentContainer) === null || _a === void 0 ? void 0 : _a.render();
|
|
2466
|
+
}
|
|
2467
|
+
};
|
|
2468
|
+
VisTopoJSONMapComponent.prototype.ngOnChanges = function (changes) {
|
|
2469
|
+
var _a, _b, _c;
|
|
2470
|
+
if (changes.data) {
|
|
2471
|
+
(_a = this.component) === null || _a === void 0 ? void 0 : _a.setData(this.data);
|
|
2472
|
+
}
|
|
2473
|
+
(_b = this.component) === null || _b === void 0 ? void 0 : _b.setConfig(this.getConfig());
|
|
2474
|
+
(_c = this.componentContainer) === null || _c === void 0 ? void 0 : _c.render();
|
|
2475
|
+
};
|
|
2476
|
+
VisTopoJSONMapComponent.prototype.getConfig = function () {
|
|
2477
|
+
var _d = this, duration = _d.duration, events = _d.events, attributes = _d.attributes, projection = _d.projection, topojson = _d.topojson, mapFeatureName = _d.mapFeatureName, mapFitToPoints = _d.mapFitToPoints, zoomFactor = _d.zoomFactor, disableZoom = _d.disableZoom, zoomExtent = _d.zoomExtent, zoomDuration = _d.zoomDuration, linkWidth = _d.linkWidth, linkColor = _d.linkColor, linkCursor = _d.linkCursor, linkId = _d.linkId, linkSource = _d.linkSource, linkTarget = _d.linkTarget, areaId = _d.areaId, areaColor = _d.areaColor, areaCursor = _d.areaCursor, pointColor = _d.pointColor, pointRadius = _d.pointRadius, pointStrokeWidth = _d.pointStrokeWidth, pointCursor = _d.pointCursor, longitude = _d.longitude, latitude = _d.latitude, pointLabel = _d.pointLabel, pointLabelPosition = _d.pointLabelPosition, pointLabelTextBrightnessRatio = _d.pointLabelTextBrightnessRatio, pointId = _d.pointId, heatmapMode = _d.heatmapMode, heatmapModeBlurStdDeviation = _d.heatmapModeBlurStdDeviation, heatmapModeZoomLevelThreshold = _d.heatmapModeZoomLevelThreshold;
|
|
2478
|
+
var config = { duration: duration, events: events, attributes: attributes, projection: projection, topojson: topojson, mapFeatureName: mapFeatureName, mapFitToPoints: mapFitToPoints, zoomFactor: zoomFactor, disableZoom: disableZoom, zoomExtent: zoomExtent, zoomDuration: zoomDuration, linkWidth: linkWidth, linkColor: linkColor, linkCursor: linkCursor, linkId: linkId, linkSource: linkSource, linkTarget: linkTarget, areaId: areaId, areaColor: areaColor, areaCursor: areaCursor, pointColor: pointColor, pointRadius: pointRadius, pointStrokeWidth: pointStrokeWidth, pointCursor: pointCursor, longitude: longitude, latitude: latitude, pointLabel: pointLabel, pointLabelPosition: pointLabelPosition, pointLabelTextBrightnessRatio: pointLabelTextBrightnessRatio, pointId: pointId, heatmapMode: heatmapMode, heatmapModeBlurStdDeviation: heatmapModeBlurStdDeviation, heatmapModeZoomLevelThreshold: heatmapModeZoomLevelThreshold };
|
|
2479
|
+
var keys = Object.keys(config);
|
|
2480
|
+
keys.forEach(function (key) {
|
|
2481
|
+
if (config[key] === undefined)
|
|
2482
|
+
delete config[key];
|
|
2483
|
+
});
|
|
2484
|
+
return config;
|
|
2485
|
+
};
|
|
2486
|
+
return VisTopoJSONMapComponent;
|
|
2487
|
+
}());
|
|
2488
|
+
VisTopoJSONMapComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisTopoJSONMapComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
2489
|
+
VisTopoJSONMapComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: VisTopoJSONMapComponent, selector: "vis-topojson-map", inputs: { duration: "duration", events: "events", attributes: "attributes", projection: "projection", topojson: "topojson", mapFeatureName: "mapFeatureName", mapFitToPoints: "mapFitToPoints", zoomFactor: "zoomFactor", disableZoom: "disableZoom", zoomExtent: "zoomExtent", zoomDuration: "zoomDuration", linkWidth: "linkWidth", linkColor: "linkColor", linkCursor: "linkCursor", linkId: "linkId", linkSource: "linkSource", linkTarget: "linkTarget", areaId: "areaId", areaColor: "areaColor", areaCursor: "areaCursor", pointColor: "pointColor", pointRadius: "pointRadius", pointStrokeWidth: "pointStrokeWidth", pointCursor: "pointCursor", longitude: "longitude", latitude: "latitude", pointLabel: "pointLabel", pointLabelPosition: "pointLabelPosition", pointLabelTextBrightnessRatio: "pointLabelTextBrightnessRatio", pointId: "pointId", heatmapMode: "heatmapMode", heatmapModeBlurStdDeviation: "heatmapModeBlurStdDeviation", heatmapModeZoomLevelThreshold: "heatmapModeZoomLevelThreshold", data: "data" }, providers: [{ provide: VisCoreComponent, useExisting: VisTopoJSONMapComponent }], usesOnChanges: true, ngImport: i0__namespace, template: '', isInline: true });
|
|
2490
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisTopoJSONMapComponent, decorators: [{
|
|
2491
|
+
type: i0.Component,
|
|
2492
|
+
args: [{
|
|
2493
|
+
selector: 'vis-topojson-map',
|
|
2494
|
+
template: '',
|
|
2495
|
+
// eslint-disable-next-line no-use-before-define
|
|
2496
|
+
providers: [{ provide: VisCoreComponent, useExisting: VisTopoJSONMapComponent }],
|
|
2497
|
+
}]
|
|
2498
|
+
}], propDecorators: { duration: [{
|
|
2499
|
+
type: i0.Input
|
|
2500
|
+
}], events: [{
|
|
2501
|
+
type: i0.Input
|
|
2502
|
+
}], attributes: [{
|
|
2503
|
+
type: i0.Input
|
|
2504
|
+
}], projection: [{
|
|
2505
|
+
type: i0.Input
|
|
2506
|
+
}], topojson: [{
|
|
2507
|
+
type: i0.Input
|
|
2508
|
+
}], mapFeatureName: [{
|
|
2509
|
+
type: i0.Input
|
|
2510
|
+
}], mapFitToPoints: [{
|
|
2511
|
+
type: i0.Input
|
|
2512
|
+
}], zoomFactor: [{
|
|
2513
|
+
type: i0.Input
|
|
2514
|
+
}], disableZoom: [{
|
|
2515
|
+
type: i0.Input
|
|
2516
|
+
}], zoomExtent: [{
|
|
2517
|
+
type: i0.Input
|
|
2518
|
+
}], zoomDuration: [{
|
|
2519
|
+
type: i0.Input
|
|
2520
|
+
}], linkWidth: [{
|
|
2521
|
+
type: i0.Input
|
|
2522
|
+
}], linkColor: [{
|
|
2523
|
+
type: i0.Input
|
|
2524
|
+
}], linkCursor: [{
|
|
2525
|
+
type: i0.Input
|
|
2526
|
+
}], linkId: [{
|
|
2527
|
+
type: i0.Input
|
|
2528
|
+
}], linkSource: [{
|
|
2529
|
+
type: i0.Input
|
|
2530
|
+
}], linkTarget: [{
|
|
2531
|
+
type: i0.Input
|
|
2532
|
+
}], areaId: [{
|
|
2533
|
+
type: i0.Input
|
|
2534
|
+
}], areaColor: [{
|
|
2535
|
+
type: i0.Input
|
|
2536
|
+
}], areaCursor: [{
|
|
2537
|
+
type: i0.Input
|
|
2538
|
+
}], pointColor: [{
|
|
2539
|
+
type: i0.Input
|
|
2540
|
+
}], pointRadius: [{
|
|
2541
|
+
type: i0.Input
|
|
2542
|
+
}], pointStrokeWidth: [{
|
|
2543
|
+
type: i0.Input
|
|
2544
|
+
}], pointCursor: [{
|
|
2545
|
+
type: i0.Input
|
|
2546
|
+
}], longitude: [{
|
|
2547
|
+
type: i0.Input
|
|
2548
|
+
}], latitude: [{
|
|
2549
|
+
type: i0.Input
|
|
2550
|
+
}], pointLabel: [{
|
|
2551
|
+
type: i0.Input
|
|
2552
|
+
}], pointLabelPosition: [{
|
|
2553
|
+
type: i0.Input
|
|
2554
|
+
}], pointLabelTextBrightnessRatio: [{
|
|
2555
|
+
type: i0.Input
|
|
2556
|
+
}], pointId: [{
|
|
2557
|
+
type: i0.Input
|
|
2558
|
+
}], heatmapMode: [{
|
|
2559
|
+
type: i0.Input
|
|
2560
|
+
}], heatmapModeBlurStdDeviation: [{
|
|
2561
|
+
type: i0.Input
|
|
2562
|
+
}], heatmapModeZoomLevelThreshold: [{
|
|
2563
|
+
type: i0.Input
|
|
2564
|
+
}], data: [{
|
|
2565
|
+
type: i0.Input
|
|
2566
|
+
}] } });
|
|
2567
|
+
|
|
2568
|
+
// !!! This code was automatically generated. You should not change it !!!
|
|
2569
|
+
var VisTopoJSONMapModule = /** @class */ (function () {
|
|
2570
|
+
function VisTopoJSONMapModule() {
|
|
2571
|
+
}
|
|
2572
|
+
return VisTopoJSONMapModule;
|
|
2573
|
+
}());
|
|
2574
|
+
VisTopoJSONMapModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisTopoJSONMapModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
|
|
2575
|
+
VisTopoJSONMapModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisTopoJSONMapModule, declarations: [VisTopoJSONMapComponent], exports: [VisTopoJSONMapComponent] });
|
|
2576
|
+
VisTopoJSONMapModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisTopoJSONMapModule, imports: [[]] });
|
|
2577
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisTopoJSONMapModule, decorators: [{
|
|
2578
|
+
type: i0.NgModule,
|
|
2579
|
+
args: [{
|
|
2580
|
+
imports: [],
|
|
2581
|
+
declarations: [VisTopoJSONMapComponent],
|
|
2582
|
+
exports: [VisTopoJSONMapComponent],
|
|
2485
2583
|
}]
|
|
2486
2584
|
}] });
|
|
2487
2585
|
|
|
@@ -2924,6 +3022,8 @@
|
|
|
2924
3022
|
exports.VisBrushModule = VisBrushModule;
|
|
2925
3023
|
exports.VisBulletLegendComponent = VisBulletLegendComponent;
|
|
2926
3024
|
exports.VisBulletLegendModule = VisBulletLegendModule;
|
|
3025
|
+
exports.VisChordDiagramComponent = VisChordDiagramComponent;
|
|
3026
|
+
exports.VisChordDiagramModule = VisChordDiagramModule;
|
|
2927
3027
|
exports.VisCoreComponent = VisCoreComponent;
|
|
2928
3028
|
exports.VisCrosshairComponent = VisCrosshairComponent;
|
|
2929
3029
|
exports.VisCrosshairModule = VisCrosshairModule;
|