@unovis/angular 1.1.2-beta.8 → 1.2.0-pre.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 +7 -3
- package/dist/lib/bundles/unovis-angular.umd.js.map +1 -1
- package/dist/lib/components/scatter/scatter.component.d.ts +5 -1
- package/dist/lib/esm2015/components/scatter/scatter.component.js +8 -4
- package/dist/lib/fesm2015/unovis-angular.js +7 -3
- package/dist/lib/fesm2015/unovis-angular.js.map +1 -1
- package/dist/lib/package.json +5 -5
- package/dist/package.json +3 -3
- package/package.json +5 -5
|
@@ -1523,8 +1523,8 @@
|
|
|
1523
1523
|
(_c = this.componentContainer) === null || _c === void 0 ? void 0 : _c.render();
|
|
1524
1524
|
};
|
|
1525
1525
|
VisScatterComponent.prototype.getConfig = function () {
|
|
1526
|
-
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, cursor = _d.cursor, labelTextBrightnessRatio = _d.labelTextBrightnessRatio, labelPosition = _d.labelPosition;
|
|
1527
|
-
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, cursor: cursor, labelTextBrightnessRatio: labelTextBrightnessRatio, labelPosition: labelPosition };
|
|
1526
|
+
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, cursor = _d.cursor, labelTextBrightnessRatio = _d.labelTextBrightnessRatio, labelPosition = _d.labelPosition, strokeColor = _d.strokeColor, strokeWidth = _d.strokeWidth;
|
|
1527
|
+
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, cursor: cursor, labelTextBrightnessRatio: labelTextBrightnessRatio, labelPosition: labelPosition, strokeColor: strokeColor, strokeWidth: strokeWidth };
|
|
1528
1528
|
var keys = Object.keys(config);
|
|
1529
1529
|
keys.forEach(function (key) {
|
|
1530
1530
|
if (config[key] === undefined)
|
|
@@ -1535,7 +1535,7 @@
|
|
|
1535
1535
|
return VisScatterComponent;
|
|
1536
1536
|
}());
|
|
1537
1537
|
VisScatterComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisScatterComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
1538
|
-
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", cursor: "cursor", labelTextBrightnessRatio: "labelTextBrightnessRatio", labelPosition: "labelPosition", data: "data" }, providers: [{ provide: VisXYComponent, useExisting: VisScatterComponent }], usesOnChanges: true, ngImport: i0__namespace, template: '', isInline: true });
|
|
1538
|
+
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", 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 });
|
|
1539
1539
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisScatterComponent, decorators: [{
|
|
1540
1540
|
type: i0.Component,
|
|
1541
1541
|
args: [{
|
|
@@ -1582,6 +1582,10 @@
|
|
|
1582
1582
|
type: i0.Input
|
|
1583
1583
|
}], labelPosition: [{
|
|
1584
1584
|
type: i0.Input
|
|
1585
|
+
}], strokeColor: [{
|
|
1586
|
+
type: i0.Input
|
|
1587
|
+
}], strokeWidth: [{
|
|
1588
|
+
type: i0.Input
|
|
1585
1589
|
}], data: [{
|
|
1586
1590
|
type: i0.Input
|
|
1587
1591
|
}] } });
|