@unovis/angular 1.4.0-beta.4 → 1.4.0-beta.6
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 +13 -13
- package/dist/lib/bundles/unovis-angular.umd.js.map +1 -1
- package/dist/lib/components/chord-diagram/chord-diagram.component.d.ts +6 -6
- package/dist/lib/esm2015/components/annotations/annotations.component.js +6 -6
- package/dist/lib/esm2015/components/chord-diagram/chord-diagram.component.js +8 -8
- package/dist/lib/esm2015/components/nested-donut/nested-donut.component.js +3 -3
- package/dist/lib/fesm2015/unovis-angular.js +13 -13
- package/dist/lib/fesm2015/unovis-angular.js.map +1 -1
- package/dist/lib/package.json +2 -2
- package/package.json +2 -2
|
@@ -438,8 +438,8 @@
|
|
|
438
438
|
(_b = this.componentContainer) === null || _b === void 0 ? void 0 : _b.render();
|
|
439
439
|
};
|
|
440
440
|
VisAnnotationsComponent.prototype.getConfig = function () {
|
|
441
|
-
var
|
|
442
|
-
var config = { items: items };
|
|
441
|
+
var _c = this, duration = _c.duration, events = _c.events, attributes = _c.attributes, items = _c.items;
|
|
442
|
+
var config = { duration: duration, events: events, attributes: attributes, items: items };
|
|
443
443
|
var keys = Object.keys(config);
|
|
444
444
|
keys.forEach(function (key) {
|
|
445
445
|
if (config[key] === undefined)
|
|
@@ -450,14 +450,14 @@
|
|
|
450
450
|
return VisAnnotationsComponent;
|
|
451
451
|
}());
|
|
452
452
|
VisAnnotationsComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisAnnotationsComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
453
|
-
VisAnnotationsComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: VisAnnotationsComponent, selector: "vis-annotations", inputs: { duration: "duration", events: "events", attributes: "attributes", items: "items" }, providers: [{ provide:
|
|
453
|
+
VisAnnotationsComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: VisAnnotationsComponent, selector: "vis-annotations", inputs: { duration: "duration", events: "events", attributes: "attributes", items: "items" }, providers: [{ provide: VisGenericComponent, useExisting: VisAnnotationsComponent }], usesOnChanges: true, ngImport: i0__namespace, template: '', isInline: true });
|
|
454
454
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisAnnotationsComponent, decorators: [{
|
|
455
455
|
type: i0.Component,
|
|
456
456
|
args: [{
|
|
457
457
|
selector: 'vis-annotations',
|
|
458
458
|
template: '',
|
|
459
459
|
// eslint-disable-next-line no-use-before-define
|
|
460
|
-
providers: [{ provide:
|
|
460
|
+
providers: [{ provide: VisGenericComponent, useExisting: VisAnnotationsComponent }],
|
|
461
461
|
}]
|
|
462
462
|
}], propDecorators: { duration: [{
|
|
463
463
|
type: i0.Input
|
|
@@ -1077,8 +1077,8 @@
|
|
|
1077
1077
|
(_c = this.componentContainer) === null || _c === void 0 ? void 0 : _c.render();
|
|
1078
1078
|
};
|
|
1079
1079
|
VisChordDiagramComponent.prototype.getConfig = function () {
|
|
1080
|
-
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,
|
|
1081
|
-
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,
|
|
1080
|
+
var _d = this, duration = _d.duration, events = _d.events, attributes = _d.attributes, angleRange = _d.angleRange, cornerRadius = _d.cornerRadius, 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, radiusScaleExponent = _d.radiusScaleExponent;
|
|
1081
|
+
var config = { duration: duration, events: events, attributes: attributes, angleRange: angleRange, cornerRadius: cornerRadius, highlightedNodeId: highlightedNodeId, highlightedLinkIds: highlightedLinkIds, linkColor: linkColor, linkValue: linkValue, nodeLevels: nodeLevels, nodeWidth: nodeWidth, nodeColor: nodeColor, nodeLabel: nodeLabel, nodeLabelColor: nodeLabelColor, nodeLabelAlignment: nodeLabelAlignment, padAngle: padAngle, radiusScaleExponent: radiusScaleExponent };
|
|
1082
1082
|
var keys = Object.keys(config);
|
|
1083
1083
|
keys.forEach(function (key) {
|
|
1084
1084
|
if (config[key] === undefined)
|
|
@@ -1089,7 +1089,7 @@
|
|
|
1089
1089
|
return VisChordDiagramComponent;
|
|
1090
1090
|
}());
|
|
1091
1091
|
VisChordDiagramComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisChordDiagramComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
1092
|
-
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",
|
|
1092
|
+
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", angleRange: "angleRange", cornerRadius: "cornerRadius", highlightedNodeId: "highlightedNodeId", highlightedLinkIds: "highlightedLinkIds", linkColor: "linkColor", linkValue: "linkValue", nodeLevels: "nodeLevels", nodeWidth: "nodeWidth", nodeColor: "nodeColor", nodeLabel: "nodeLabel", nodeLabelColor: "nodeLabelColor", nodeLabelAlignment: "nodeLabelAlignment", padAngle: "padAngle", radiusScaleExponent: "radiusScaleExponent", data: "data" }, providers: [{ provide: VisCoreComponent, useExisting: VisChordDiagramComponent }], usesOnChanges: true, ngImport: i0__namespace, template: '', isInline: true });
|
|
1093
1093
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisChordDiagramComponent, decorators: [{
|
|
1094
1094
|
type: i0.Component,
|
|
1095
1095
|
args: [{
|
|
@@ -1104,6 +1104,10 @@
|
|
|
1104
1104
|
type: i0.Input
|
|
1105
1105
|
}], attributes: [{
|
|
1106
1106
|
type: i0.Input
|
|
1107
|
+
}], angleRange: [{
|
|
1108
|
+
type: i0.Input
|
|
1109
|
+
}], cornerRadius: [{
|
|
1110
|
+
type: i0.Input
|
|
1107
1111
|
}], highlightedNodeId: [{
|
|
1108
1112
|
type: i0.Input
|
|
1109
1113
|
}], highlightedLinkIds: [{
|
|
@@ -1126,10 +1130,6 @@
|
|
|
1126
1130
|
type: i0.Input
|
|
1127
1131
|
}], padAngle: [{
|
|
1128
1132
|
type: i0.Input
|
|
1129
|
-
}], cornerRadius: [{
|
|
1130
|
-
type: i0.Input
|
|
1131
|
-
}], angleRange: [{
|
|
1132
|
-
type: i0.Input
|
|
1133
1133
|
}], radiusScaleExponent: [{
|
|
1134
1134
|
type: i0.Input
|
|
1135
1135
|
}], data: [{
|
|
@@ -1855,8 +1855,8 @@
|
|
|
1855
1855
|
(_c = this.componentContainer) === null || _c === void 0 ? void 0 : _c.render();
|
|
1856
1856
|
};
|
|
1857
1857
|
VisNestedDonutComponent.prototype.getConfig = function () {
|
|
1858
|
-
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;
|
|
1859
|
-
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 };
|
|
1858
|
+
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, showSegmentLabels = _d.showSegmentLabels;
|
|
1859
|
+
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, showSegmentLabels: showSegmentLabels };
|
|
1860
1860
|
var keys = Object.keys(config);
|
|
1861
1861
|
keys.forEach(function (key) {
|
|
1862
1862
|
if (config[key] === undefined)
|