@unovis/angular 1.4.4-beta.3 → 1.4.5-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 +7 -3
- package/dist/lib/bundles/unovis-angular.umd.js.map +1 -1
- package/dist/lib/containers/single-container/single-container.component.d.ts +7 -2
- package/dist/lib/esm2015/containers/single-container/single-container.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 +2 -2
- package/package.json +2 -2
|
@@ -683,11 +683,11 @@
|
|
|
683
683
|
};
|
|
684
684
|
VisSingleContainerComponent.prototype.getConfig = function () {
|
|
685
685
|
var _a, _b, _c;
|
|
686
|
-
var _d = this, width = _d.width, height = _d.height, duration = _d.duration, margin = _d.margin, ariaLabel = _d.ariaLabel;
|
|
686
|
+
var _d = this, width = _d.width, height = _d.height, duration = _d.duration, margin = _d.margin, ariaLabel = _d.ariaLabel, svgDefs = _d.svgDefs, sizing = _d.sizing;
|
|
687
687
|
var component = (_a = this.visComponent) === null || _a === void 0 ? void 0 : _a.component;
|
|
688
688
|
var tooltip = (_b = this.tooltipComponent) === null || _b === void 0 ? void 0 : _b.component;
|
|
689
689
|
var annotations = (_c = this.annotationsComponent) === null || _c === void 0 ? void 0 : _c.component;
|
|
690
|
-
return { width: width, height: height, duration: duration, margin: margin, component: component, tooltip: tooltip, ariaLabel: ariaLabel, annotations: annotations };
|
|
690
|
+
return { width: width, height: height, duration: duration, margin: margin, component: component, tooltip: tooltip, ariaLabel: ariaLabel, annotations: annotations, svgDefs: svgDefs, sizing: sizing };
|
|
691
691
|
};
|
|
692
692
|
VisSingleContainerComponent.prototype.ngOnDestroy = function () {
|
|
693
693
|
this.chart.destroy();
|
|
@@ -695,7 +695,7 @@
|
|
|
695
695
|
return VisSingleContainerComponent;
|
|
696
696
|
}());
|
|
697
697
|
VisSingleContainerComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisSingleContainerComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
698
|
-
VisSingleContainerComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: VisSingleContainerComponent, selector: "vis-single-container", inputs: { width: "width", height: "height", margin: "margin", duration: "duration", ariaLabel: "ariaLabel", data: "data" }, queries: [{ propertyName: "visComponent", first: true, predicate: VisCoreComponent, descendants: true }, { propertyName: "tooltipComponent", first: true, predicate: VisTooltipComponent, descendants: true }, { propertyName: "annotationsComponent", first: true, predicate: VisAnnotationsComponent, descendants: true }], viewQueries: [{ propertyName: "containerRef", first: true, predicate: ["container"], descendants: true }], usesOnChanges: true, ngImport: i0__namespace, template: "<div #container class=\"unovis-single-container\">\n <ng-content></ng-content>\n </div>", isInline: true, styles: [".unovis-single-container { width: 100%; height: 100%; position: relative; }"] });
|
|
698
|
+
VisSingleContainerComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: VisSingleContainerComponent, selector: "vis-single-container", inputs: { width: "width", height: "height", margin: "margin", duration: "duration", ariaLabel: "ariaLabel", svgDefs: "svgDefs", sizing: "sizing", data: "data" }, queries: [{ propertyName: "visComponent", first: true, predicate: VisCoreComponent, descendants: true }, { propertyName: "tooltipComponent", first: true, predicate: VisTooltipComponent, descendants: true }, { propertyName: "annotationsComponent", first: true, predicate: VisAnnotationsComponent, descendants: true }], viewQueries: [{ propertyName: "containerRef", first: true, predicate: ["container"], descendants: true }], usesOnChanges: true, ngImport: i0__namespace, template: "<div #container class=\"unovis-single-container\">\n <ng-content></ng-content>\n </div>", isInline: true, styles: [".unovis-single-container { width: 100%; height: 100%; position: relative; }"] });
|
|
699
699
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: VisSingleContainerComponent, decorators: [{
|
|
700
700
|
type: i0.Component,
|
|
701
701
|
args: [{
|
|
@@ -725,6 +725,10 @@
|
|
|
725
725
|
type: i0.Input
|
|
726
726
|
}], ariaLabel: [{
|
|
727
727
|
type: i0.Input
|
|
728
|
+
}], svgDefs: [{
|
|
729
|
+
type: i0.Input
|
|
730
|
+
}], sizing: [{
|
|
731
|
+
type: i0.Input
|
|
728
732
|
}], data: [{
|
|
729
733
|
type: i0.Input
|
|
730
734
|
}] } });
|