axidio-styleguide-library1-v2 0.6.11 → 0.6.13
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/esm2022/lib/header-alt/header-alt.component.mjs +3 -3
- package/esm2022/lib/horizontal-grouped-bar-with-scroll-zoom/horizontal-grouped-bar-with-scroll-zoom.component.mjs +3 -3
- package/fesm2022/axidio-styleguide-library1-v2.mjs +4 -4
- package/fesm2022/axidio-styleguide-library1-v2.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -2952,11 +2952,11 @@ class HeaderAltComponent {
|
|
|
2952
2952
|
}
|
|
2953
2953
|
ngOnInit() { }
|
|
2954
2954
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: HeaderAltComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2955
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: HeaderAltComponent, selector: "lib-header-alt", inputs: { title: "title", isria: "isria" }, ngImport: i0, template: "<div\r\n class=\"header-alt-title\" \r\n [class.ria]=\"isria\">\r\n {{ title }}\r\n</div>\r\n", styles: [".header-alt-title{text-transform:capitalize;font-size:16px}.header-alt-title.ria{font-size:16px}\n"] }); }
|
|
2955
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: HeaderAltComponent, selector: "lib-header-alt", inputs: { title: "title", isria: "isria" }, ngImport: i0, template: "<div\r\n class=\"header-alt-title\" \r\n [class.ria]=\"isria\"\r\n [class.keep-space-hidden]=\"!isria\">\r\n {{ title }}\r\n</div>\r\n", styles: [".header-alt-title{text-transform:capitalize;font-size:16px}.header-alt-title.ria{font-size:16px}.keep-space-hidden{visibility:hidden}\n"] }); }
|
|
2956
2956
|
}
|
|
2957
2957
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: HeaderAltComponent, decorators: [{
|
|
2958
2958
|
type: Component,
|
|
2959
|
-
args: [{ selector: 'lib-header-alt', template: "<div\r\n class=\"header-alt-title\" \r\n [class.ria]=\"isria\">\r\n {{ title }}\r\n</div>\r\n", styles: [".header-alt-title{text-transform:capitalize;font-size:16px}.header-alt-title.ria{font-size:16px}\n"] }]
|
|
2959
|
+
args: [{ selector: 'lib-header-alt', template: "<div\r\n class=\"header-alt-title\" \r\n [class.ria]=\"isria\"\r\n [class.keep-space-hidden]=\"!isria\">\r\n {{ title }}\r\n</div>\r\n", styles: [".header-alt-title{text-transform:capitalize;font-size:16px}.header-alt-title.ria{font-size:16px}.keep-space-hidden{visibility:hidden}\n"] }]
|
|
2960
2960
|
}], ctorParameters: () => [], propDecorators: { title: [{
|
|
2961
2961
|
type: Input
|
|
2962
2962
|
}], isria: [{
|
|
@@ -8070,7 +8070,7 @@ class HorizontalGroupedBarWithScrollZoomComponent extends ComponentUniqueId {
|
|
|
8070
8070
|
else if (labelCount >= 3) {
|
|
8071
8071
|
// For more than 3 labels, use vertical alignment
|
|
8072
8072
|
textNodes
|
|
8073
|
-
.style('writing-mode', 'sideways-lr')
|
|
8073
|
+
// .style('writing-mode', 'sideways-lr') // Vertical text
|
|
8074
8074
|
.classed('mobile-xaxis-override', true) // Add vertical class
|
|
8075
8075
|
.attr('text-anchor', 'middle') // Center align
|
|
8076
8076
|
.attr('y', 30) // Adjust vertical position
|
|
@@ -8826,7 +8826,7 @@ class HorizontalGroupedBarWithScrollZoomComponent extends ComponentUniqueId {
|
|
|
8826
8826
|
text.append('tspan')
|
|
8827
8827
|
.text(line)
|
|
8828
8828
|
.attr('x', 0)
|
|
8829
|
-
.attr('dy', idx === 0 ? '
|
|
8829
|
+
.attr('dy', idx === 0 ? '0.5em' : '1em');
|
|
8830
8830
|
});
|
|
8831
8831
|
}
|
|
8832
8832
|
else {
|