@villedemontreal/angular-ui 15.2.1 → 15.3.1-pre.build.1
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/esm2020/lib/bao.module.mjs +8 -4
- package/esm2020/lib/breadcrumb/breadcrumb.component.mjs +4 -13
- package/esm2020/lib/core/breakpoints.mjs +13 -0
- package/esm2020/lib/core/index.mjs +8 -0
- package/esm2020/lib/system-header/index.mjs +8 -0
- package/esm2020/lib/system-header/module.mjs +33 -0
- package/esm2020/lib/system-header/system-header.component.mjs +128 -0
- package/esm2020/public-api.mjs +2 -1
- package/fesm2015/villedemontreal-angular-ui.mjs +187 -16
- package/fesm2015/villedemontreal-angular-ui.mjs.map +1 -1
- package/fesm2020/villedemontreal-angular-ui.mjs +187 -16
- package/fesm2020/villedemontreal-angular-ui.mjs.map +1 -1
- package/lib/bao.module.d.ts +2 -1
- package/lib/breadcrumb/breadcrumb.component.d.ts +0 -1
- package/lib/core/breakpoints.d.ts +7 -0
- package/lib/core/index.d.ts +2 -0
- package/lib/system-header/index.d.ts +2 -0
- package/lib/system-header/module.d.ts +9 -0
- package/lib/system-header/system-header.component.d.ts +41 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
|
@@ -19,6 +19,7 @@ import { _getFocusedElementPierceShadowDom } from '@angular/cdk/platform';
|
|
|
19
19
|
import { ESCAPE, hasModifierKey } from '@angular/cdk/keycodes';
|
|
20
20
|
import { take as take$1 } from 'rxjs/operators';
|
|
21
21
|
import { trigger, state, style, transition, animate } from '@angular/animations';
|
|
22
|
+
import * as i2$1 from '@angular/cdk/layout';
|
|
22
23
|
|
|
23
24
|
function baoColorToHex(baoColor) {
|
|
24
25
|
switch (baoColor) {
|
|
@@ -706,19 +707,10 @@ class BaoBreadcrumbComponent {
|
|
|
706
707
|
this.renderer = renderer;
|
|
707
708
|
}
|
|
708
709
|
ngAfterViewInit() {
|
|
709
|
-
this.
|
|
710
|
+
this.setLastLinkAttribute();
|
|
710
711
|
}
|
|
711
712
|
onContentChange() {
|
|
712
|
-
this.createLiElement();
|
|
713
|
-
}
|
|
714
|
-
createLiElement() {
|
|
715
|
-
const children = Array.from(this.staticContainer.nativeElement.children);
|
|
716
713
|
this.setLastLinkAttribute();
|
|
717
|
-
children.forEach(c => {
|
|
718
|
-
const liElement = this.renderer.createElement('li');
|
|
719
|
-
this.renderer.appendChild(liElement, c);
|
|
720
|
-
this.renderer.appendChild(this.staticContainer.nativeElement, liElement);
|
|
721
|
-
});
|
|
722
714
|
}
|
|
723
715
|
setLastLinkAttribute() {
|
|
724
716
|
const children = Array.from(this.staticContainer.nativeElement.children);
|
|
@@ -726,12 +718,12 @@ class BaoBreadcrumbComponent {
|
|
|
726
718
|
}
|
|
727
719
|
}
|
|
728
720
|
BaoBreadcrumbComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.3", ngImport: i0, type: BaoBreadcrumbComponent, deps: [{ token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component });
|
|
729
|
-
BaoBreadcrumbComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.1.3", type: BaoBreadcrumbComponent, selector: "bao-breadcrumb", host: { classAttribute: "bao-breadcrumb" }, viewQueries: [{ propertyName: "staticContainer", first: true, predicate: ["container"], descendants: true }], ngImport: i0, template: "<nav
|
|
721
|
+
BaoBreadcrumbComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.1.3", type: BaoBreadcrumbComponent, selector: "bao-breadcrumb", host: { classAttribute: "bao-breadcrumb" }, viewQueries: [{ propertyName: "staticContainer", first: true, predicate: ["container"], descendants: true }], ngImport: i0, template: "<nav\n #container\n class=\"bao-breadcrumb-nav\"\n aria-label=\"Breadcrumb\"\n (cdkObserveContent)=\"onContentChange()\"\n>\n <ng-content></ng-content>\n</nav>\n", styles: [".bao-breadcrumb-nav{display:inline-flex;flex-direction:row;flex-wrap:wrap}.bao-breadcrumb-nav>a{font-weight:700;font-size:.75rem;line-height:1rem;display:inline-flex;align-items:end;text-decoration:none;text-transform:uppercase;color:#637381;margin-bottom:.5rem;margin-right:.25rem;border-bottom:none;background-color:#fff0}.bao-breadcrumb-nav>a:hover{color:#097d6c}.bao-breadcrumb-nav>a:last-child{margin-right:0}.bao-breadcrumb-nav>a:last-child:after{content:none}.bao-breadcrumb-nav>a:after{display:inline-block;content:url(\"data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ADB5BD' fill-rule='evenodd'><path d='M12.586 12L9.293 8.707a1 1 0 011.414-1.414l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414-1.414L12.586 12z'/></svg>\");height:1rem;width:1rem;margin-left:.25rem;color:#637381;background-color:#fff0;cursor:default;flex-shrink:0}\n"], dependencies: [{ kind: "directive", type: i1$2.CdkObserveContent, selector: "[cdkObserveContent]", inputs: ["cdkObserveContentDisabled", "debounce"], outputs: ["cdkObserveContent"], exportAs: ["cdkObserveContent"] }], encapsulation: i0.ViewEncapsulation.None });
|
|
730
722
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.3", ngImport: i0, type: BaoBreadcrumbComponent, decorators: [{
|
|
731
723
|
type: Component,
|
|
732
724
|
args: [{ selector: 'bao-breadcrumb', encapsulation: ViewEncapsulation.None, host: {
|
|
733
725
|
class: 'bao-breadcrumb'
|
|
734
|
-
}, template: "<nav
|
|
726
|
+
}, template: "<nav\n #container\n class=\"bao-breadcrumb-nav\"\n aria-label=\"Breadcrumb\"\n (cdkObserveContent)=\"onContentChange()\"\n>\n <ng-content></ng-content>\n</nav>\n", styles: [".bao-breadcrumb-nav{display:inline-flex;flex-direction:row;flex-wrap:wrap}.bao-breadcrumb-nav>a{font-weight:700;font-size:.75rem;line-height:1rem;display:inline-flex;align-items:end;text-decoration:none;text-transform:uppercase;color:#637381;margin-bottom:.5rem;margin-right:.25rem;border-bottom:none;background-color:#fff0}.bao-breadcrumb-nav>a:hover{color:#097d6c}.bao-breadcrumb-nav>a:last-child{margin-right:0}.bao-breadcrumb-nav>a:last-child:after{content:none}.bao-breadcrumb-nav>a:after{display:inline-block;content:url(\"data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ADB5BD' fill-rule='evenodd'><path d='M12.586 12L9.293 8.707a1 1 0 011.414-1.414l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414-1.414L12.586 12z'/></svg>\");height:1rem;width:1rem;margin-left:.25rem;color:#637381;background-color:#fff0;cursor:default;flex-shrink:0}\n"] }]
|
|
735
727
|
}], ctorParameters: function () { return [{ type: i0.Renderer2 }]; }, propDecorators: { staticContainer: [{
|
|
736
728
|
type: ViewChild,
|
|
737
729
|
args: ['container', { static: false }]
|
|
@@ -5747,6 +5739,182 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.3", ngImpor
|
|
|
5747
5739
|
}]
|
|
5748
5740
|
}] });
|
|
5749
5741
|
|
|
5742
|
+
/*
|
|
5743
|
+
* Copyright (c) 2023 Ville de Montreal. All rights reserved.
|
|
5744
|
+
* Licensed under the MIT license.
|
|
5745
|
+
* See LICENSE file in the project root for full license information.
|
|
5746
|
+
*/
|
|
5747
|
+
const Breakpoints = {
|
|
5748
|
+
XSmall: '(max-width: 575.98px)',
|
|
5749
|
+
Small: '(min-width: 576px) and (max-width: 767.98px)',
|
|
5750
|
+
Medium: '(min-width: 768px) and (max-width: 991.98px)',
|
|
5751
|
+
Large: '(min-width: 992px) and (max-width: 1199.98px)',
|
|
5752
|
+
XLarge: '(min-width: 1200px)'
|
|
5753
|
+
};
|
|
5754
|
+
|
|
5755
|
+
/*
|
|
5756
|
+
* Copyright (c) 2023 Ville de Montreal. All rights reserved.
|
|
5757
|
+
* Licensed under the MIT license.
|
|
5758
|
+
* See LICENSE file in the project root for full license information.
|
|
5759
|
+
*/
|
|
5760
|
+
|
|
5761
|
+
/**
|
|
5762
|
+
* This component is dynamically added to replace breadcrumb when System Header is viewed on tablet or mobile screens.
|
|
5763
|
+
* Used internally by BaoSystemHeaderComponent only, not to be used by host application.
|
|
5764
|
+
*/
|
|
5765
|
+
class BaoBackNavigationComponent {
|
|
5766
|
+
constructor(renderer, elementRef) {
|
|
5767
|
+
this.renderer = renderer;
|
|
5768
|
+
this.elementRef = elementRef;
|
|
5769
|
+
}
|
|
5770
|
+
ngOnChanges(changes) {
|
|
5771
|
+
if (changes['link'] && changes['link'].currentValue) {
|
|
5772
|
+
this.renderer.setAttribute(this.elementRef.nativeElement.children[0], 'href', changes['link'].currentValue);
|
|
5773
|
+
}
|
|
5774
|
+
}
|
|
5775
|
+
}
|
|
5776
|
+
BaoBackNavigationComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.3", ngImport: i0, type: BaoBackNavigationComponent, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
5777
|
+
BaoBackNavigationComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.1.3", type: BaoBackNavigationComponent, selector: "bao-back-navigation-component", inputs: { link: "link" }, host: { classAttribute: "bao-system-header-back-button" }, usesOnChanges: true, ngImport: i0, template: ` <a>
|
|
5778
|
+
<bao-icon
|
|
5779
|
+
color="action"
|
|
5780
|
+
title="arrow-left"
|
|
5781
|
+
svgIcon="icon-arrow-left"
|
|
5782
|
+
size="x-small"
|
|
5783
|
+
></bao-icon>
|
|
5784
|
+
</a>`, isInline: true, dependencies: [{ kind: "component", type: BaoIconComponent, selector: "bao-icon", inputs: ["color", "size", "svgIcon", "title"], exportAs: ["baoIcon"] }] });
|
|
5785
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.3", ngImport: i0, type: BaoBackNavigationComponent, decorators: [{
|
|
5786
|
+
type: Component,
|
|
5787
|
+
args: [{
|
|
5788
|
+
selector: 'bao-back-navigation-component',
|
|
5789
|
+
template: ` <a>
|
|
5790
|
+
<bao-icon
|
|
5791
|
+
color="action"
|
|
5792
|
+
title="arrow-left"
|
|
5793
|
+
svgIcon="icon-arrow-left"
|
|
5794
|
+
size="x-small"
|
|
5795
|
+
></bao-icon>
|
|
5796
|
+
</a>`,
|
|
5797
|
+
host: {
|
|
5798
|
+
class: 'bao-system-header-back-button'
|
|
5799
|
+
}
|
|
5800
|
+
}]
|
|
5801
|
+
}], ctorParameters: function () { return [{ type: i0.Renderer2 }, { type: i0.ElementRef }]; }, propDecorators: { link: [{
|
|
5802
|
+
type: Input
|
|
5803
|
+
}] } });
|
|
5804
|
+
/**
|
|
5805
|
+
* This directive is to mark the template where the BaoBackNavigationComponent should be dynamically inserted,
|
|
5806
|
+
* when a Breadcrumb component needs to be replaced
|
|
5807
|
+
*/
|
|
5808
|
+
class BaoBackNavigationInsert {
|
|
5809
|
+
constructor(viewContainerRef) {
|
|
5810
|
+
this.viewContainerRef = viewContainerRef;
|
|
5811
|
+
}
|
|
5812
|
+
}
|
|
5813
|
+
BaoBackNavigationInsert.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.3", ngImport: i0, type: BaoBackNavigationInsert, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
5814
|
+
BaoBackNavigationInsert.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.1.3", type: BaoBackNavigationInsert, selector: "[backNavigationInsert]", ngImport: i0 });
|
|
5815
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.3", ngImport: i0, type: BaoBackNavigationInsert, decorators: [{
|
|
5816
|
+
type: Directive,
|
|
5817
|
+
args: [{
|
|
5818
|
+
selector: '[backNavigationInsert]'
|
|
5819
|
+
}]
|
|
5820
|
+
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
|
|
5821
|
+
class BaoSystemHeaderComponent {
|
|
5822
|
+
constructor(breakpointObserver, renderer) {
|
|
5823
|
+
this.breakpointObserver = breakpointObserver;
|
|
5824
|
+
this.renderer = renderer;
|
|
5825
|
+
this.screenType = 'desktop';
|
|
5826
|
+
}
|
|
5827
|
+
get textContainerChildren() {
|
|
5828
|
+
return Array.from(this.textContainer.nativeElement.children);
|
|
5829
|
+
}
|
|
5830
|
+
ngOnInit() {
|
|
5831
|
+
if ([Breakpoints.XSmall, Breakpoints.Small].some(size => this.breakpointObserver.isMatched(size))) {
|
|
5832
|
+
this.screenType = 'mobile';
|
|
5833
|
+
}
|
|
5834
|
+
else if (this.breakpointObserver.isMatched(Breakpoints.Medium)) {
|
|
5835
|
+
this.screenType = 'tablet';
|
|
5836
|
+
}
|
|
5837
|
+
else if ([Breakpoints.Large, Breakpoints.XLarge].some(size => this.breakpointObserver.isMatched(size))) {
|
|
5838
|
+
this.screenType = 'desktop';
|
|
5839
|
+
}
|
|
5840
|
+
}
|
|
5841
|
+
ngAfterViewInit() {
|
|
5842
|
+
this.formatNavigation();
|
|
5843
|
+
this.applySizeClass();
|
|
5844
|
+
}
|
|
5845
|
+
formatNavigation() {
|
|
5846
|
+
// If view is rendered on a mobile/tablet screen
|
|
5847
|
+
if (this.screenType == 'mobile' || this.screenType == 'tablet') {
|
|
5848
|
+
if (this.textContainerChildren[0].className == 'bao-breadcrumb') {
|
|
5849
|
+
// Retrieve link of parent page
|
|
5850
|
+
const breadcrumbElementsList = this.textContainerChildren[0].children[0];
|
|
5851
|
+
const breadcrumbLength = breadcrumbElementsList.children.length;
|
|
5852
|
+
const parentLink = breadcrumbElementsList.children[breadcrumbLength - 2].attributes['href'].value;
|
|
5853
|
+
// Remove Breadcrumb component and replace it with back button
|
|
5854
|
+
this.renderer.removeChild(this.textContainer.nativeElement, this.textContainerChildren[0]);
|
|
5855
|
+
const viewContainerRef = this.backButtonInsert.viewContainerRef;
|
|
5856
|
+
viewContainerRef.clear();
|
|
5857
|
+
const componentRef = viewContainerRef.createComponent(BaoBackNavigationComponent);
|
|
5858
|
+
componentRef.setInput('link', parentLink);
|
|
5859
|
+
}
|
|
5860
|
+
}
|
|
5861
|
+
}
|
|
5862
|
+
applySizeClass() {
|
|
5863
|
+
const tagInfoContainer = this.textContainer.nativeElement.childNodes[this.textContainerChildren.length - 1];
|
|
5864
|
+
if (this.screenType === 'mobile') {
|
|
5865
|
+
this.renderer.addClass(tagInfoContainer, 'mobile');
|
|
5866
|
+
}
|
|
5867
|
+
}
|
|
5868
|
+
}
|
|
5869
|
+
BaoSystemHeaderComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.3", ngImport: i0, type: BaoSystemHeaderComponent, deps: [{ token: i2$1.BreakpointObserver }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component });
|
|
5870
|
+
BaoSystemHeaderComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.1.3", type: BaoSystemHeaderComponent, selector: "bao-system-header", host: { classAttribute: "bao-system-header" }, viewQueries: [{ propertyName: "textContainer", first: true, predicate: ["textContainer"], descendants: true }, { propertyName: "backButtonInsert", first: true, predicate: BaoBackNavigationInsert, descendants: true, static: true }], ngImport: i0, template: "<div class=\"left-side-content\">\n <div class=\"back-navigation-container\">\n <ng-content select=\"a\"></ng-content>\n <ng-template backNavigationInsert></ng-template>\n </div>\n <div #textContainer class=\"text-content\">\n <ng-content select=\"bao-breadcrumb\"></ng-content>\n <ng-content select=\"h1\"></ng-content>\n <div class=\"tag-info-container\">\n <ng-content select=\"bao-tag\"></ng-content>\n <span class=\"additional-info\">\n <ng-content select=\"span\"></ng-content>\n </span>\n </div>\n </div>\n</div>\n<div class=\"button-container\">\n <ng-content></ng-content>\n</div>\n", styles: ["@charset \"UTF-8\";.bao-container{padding-right:16px;padding-left:16px;margin-right:auto;margin-left:auto;width:100%}@media (min-width: 576px){.bao-container{max-width:576px}}@media (min-width: 768px){.bao-container{max-width:768px}}@media (min-width: 992px){.bao-container{max-width:992px}}@media (min-width: 1200px){.bao-container{max-width:1200px}}.bao-row{display:flex;flex-wrap:wrap;margin-right:-16px;margin-left:-16px}.bao-col-12,.bao-col-lg-7{position:relative;width:100%;padding-right:1rem;padding-left:1rem}@media (min-width: 992px){.bao-col-lg-7{flex:0 0 58.33333%;max-width:58.33333%}}.bao-system-header{display:flex;justify-content:flex-start}.bao-system-header .left-side-content{display:inline-flex;width:75%}.bao-system-header .left-side-content .back-navigation-container a{margin-right:1.25rem;border-bottom:none}.bao-system-header .left-side-content .back-navigation-container a:hover{cursor:pointer}.bao-system-header .left-side-content .text-content{width:100%}.bao-system-header .left-side-content .text-content h1{font-weight:700;color:#212529;font-size:1.5rem;line-height:2rem;margin-bottom:.5rem}.bao-system-header .left-side-content .text-content .tag-info-container{width:100%;display:block}.bao-system-header .left-side-content .text-content .tag-info-container>span:nth-child(2):before{content:\"\\b7\";margin:0 .5rem}.bao-system-header .left-side-content .text-content .tag-info-container .additional-info>*{font-weight:400;font-size:.875rem;line-height:1.25rem}.bao-system-header .left-side-content .text-content .tag-info-container.mobile .bao-tag{margin-bottom:.25rem}.bao-system-header .left-side-content .text-content .tag-info-container.mobile .additional-info{display:block}.bao-system-header .left-side-content .text-content .tag-info-container.mobile .additional-info:before{content:none}.bao-system-header .left-side-content .text-content .tag-info-container>.bao-tag{max-width:100%}.bao-system-header .left-side-content .text-content .tag-info-container>.bao-tag>span{width:100%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.bao-system-header .button-container{flex-shrink:0;margin-left:auto}.bao-system-header .button-container .bao-button{margin-left:1rem}\n"], dependencies: [{ kind: "directive", type: BaoBackNavigationInsert, selector: "[backNavigationInsert]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
5871
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.3", ngImport: i0, type: BaoSystemHeaderComponent, decorators: [{
|
|
5872
|
+
type: Component,
|
|
5873
|
+
args: [{ selector: 'bao-system-header', encapsulation: ViewEncapsulation.None, changeDetection: ChangeDetectionStrategy.OnPush, host: {
|
|
5874
|
+
class: 'bao-system-header'
|
|
5875
|
+
}, template: "<div class=\"left-side-content\">\n <div class=\"back-navigation-container\">\n <ng-content select=\"a\"></ng-content>\n <ng-template backNavigationInsert></ng-template>\n </div>\n <div #textContainer class=\"text-content\">\n <ng-content select=\"bao-breadcrumb\"></ng-content>\n <ng-content select=\"h1\"></ng-content>\n <div class=\"tag-info-container\">\n <ng-content select=\"bao-tag\"></ng-content>\n <span class=\"additional-info\">\n <ng-content select=\"span\"></ng-content>\n </span>\n </div>\n </div>\n</div>\n<div class=\"button-container\">\n <ng-content></ng-content>\n</div>\n", styles: ["@charset \"UTF-8\";.bao-container{padding-right:16px;padding-left:16px;margin-right:auto;margin-left:auto;width:100%}@media (min-width: 576px){.bao-container{max-width:576px}}@media (min-width: 768px){.bao-container{max-width:768px}}@media (min-width: 992px){.bao-container{max-width:992px}}@media (min-width: 1200px){.bao-container{max-width:1200px}}.bao-row{display:flex;flex-wrap:wrap;margin-right:-16px;margin-left:-16px}.bao-col-12,.bao-col-lg-7{position:relative;width:100%;padding-right:1rem;padding-left:1rem}@media (min-width: 992px){.bao-col-lg-7{flex:0 0 58.33333%;max-width:58.33333%}}.bao-system-header{display:flex;justify-content:flex-start}.bao-system-header .left-side-content{display:inline-flex;width:75%}.bao-system-header .left-side-content .back-navigation-container a{margin-right:1.25rem;border-bottom:none}.bao-system-header .left-side-content .back-navigation-container a:hover{cursor:pointer}.bao-system-header .left-side-content .text-content{width:100%}.bao-system-header .left-side-content .text-content h1{font-weight:700;color:#212529;font-size:1.5rem;line-height:2rem;margin-bottom:.5rem}.bao-system-header .left-side-content .text-content .tag-info-container{width:100%;display:block}.bao-system-header .left-side-content .text-content .tag-info-container>span:nth-child(2):before{content:\"\\b7\";margin:0 .5rem}.bao-system-header .left-side-content .text-content .tag-info-container .additional-info>*{font-weight:400;font-size:.875rem;line-height:1.25rem}.bao-system-header .left-side-content .text-content .tag-info-container.mobile .bao-tag{margin-bottom:.25rem}.bao-system-header .left-side-content .text-content .tag-info-container.mobile .additional-info{display:block}.bao-system-header .left-side-content .text-content .tag-info-container.mobile .additional-info:before{content:none}.bao-system-header .left-side-content .text-content .tag-info-container>.bao-tag{max-width:100%}.bao-system-header .left-side-content .text-content .tag-info-container>.bao-tag>span{width:100%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.bao-system-header .button-container{flex-shrink:0;margin-left:auto}.bao-system-header .button-container .bao-button{margin-left:1rem}\n"] }]
|
|
5876
|
+
}], ctorParameters: function () { return [{ type: i2$1.BreakpointObserver }, { type: i0.Renderer2 }]; }, propDecorators: { textContainer: [{
|
|
5877
|
+
type: ViewChild,
|
|
5878
|
+
args: ['textContainer', { static: false }]
|
|
5879
|
+
}], backButtonInsert: [{
|
|
5880
|
+
type: ViewChild,
|
|
5881
|
+
args: [BaoBackNavigationInsert, { static: true }]
|
|
5882
|
+
}] } });
|
|
5883
|
+
|
|
5884
|
+
/*
|
|
5885
|
+
* Copyright (c) 2023 Ville de Montreal. All rights reserved.
|
|
5886
|
+
* Licensed under the MIT license.
|
|
5887
|
+
* See LICENSE file in the project root for full license information.
|
|
5888
|
+
*/
|
|
5889
|
+
const SYSTEM_HEADER_DIRECTIVES = [
|
|
5890
|
+
BaoSystemHeaderComponent,
|
|
5891
|
+
BaoBackNavigationInsert,
|
|
5892
|
+
BaoBackNavigationComponent
|
|
5893
|
+
];
|
|
5894
|
+
class BaoSystemHeaderModule {
|
|
5895
|
+
}
|
|
5896
|
+
BaoSystemHeaderModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.3", ngImport: i0, type: BaoSystemHeaderModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
5897
|
+
BaoSystemHeaderModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.1.3", ngImport: i0, type: BaoSystemHeaderModule, declarations: [BaoSystemHeaderComponent,
|
|
5898
|
+
BaoBackNavigationInsert,
|
|
5899
|
+
BaoBackNavigationComponent], imports: [CommonModule, BaoIconModule], exports: [BaoSystemHeaderComponent,
|
|
5900
|
+
BaoBackNavigationInsert,
|
|
5901
|
+
BaoBackNavigationComponent] });
|
|
5902
|
+
BaoSystemHeaderModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.1.3", ngImport: i0, type: BaoSystemHeaderModule, imports: [CommonModule, BaoIconModule] });
|
|
5903
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.3", ngImport: i0, type: BaoSystemHeaderModule, decorators: [{
|
|
5904
|
+
type: NgModule,
|
|
5905
|
+
args: [{
|
|
5906
|
+
imports: [CommonModule, BaoIconModule],
|
|
5907
|
+
declarations: [SYSTEM_HEADER_DIRECTIVES],
|
|
5908
|
+
exports: [SYSTEM_HEADER_DIRECTIVES]
|
|
5909
|
+
}]
|
|
5910
|
+
}] });
|
|
5911
|
+
|
|
5912
|
+
/*
|
|
5913
|
+
* Copyright (c) 2023 Ville de Montreal. All rights reserved.
|
|
5914
|
+
* Licensed under the MIT license.
|
|
5915
|
+
* See LICENSE file in the project root for full license information.
|
|
5916
|
+
*/
|
|
5917
|
+
|
|
5750
5918
|
/*
|
|
5751
5919
|
* Copyright (c) 2023 Ville de Montreal. All rights reserved.
|
|
5752
5920
|
* Licensed under the MIT license.
|
|
@@ -5778,7 +5946,8 @@ BaoModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.
|
|
|
5778
5946
|
BaoHyperlinkModule,
|
|
5779
5947
|
BaoDropdownMenuModule,
|
|
5780
5948
|
BaoFileModule,
|
|
5781
|
-
BaoSnackBarModule
|
|
5949
|
+
BaoSnackBarModule,
|
|
5950
|
+
BaoSystemHeaderModule
|
|
5782
5951
|
// TODO: reactivate once component does not depend on global css BaoBadgeModule,
|
|
5783
5952
|
] });
|
|
5784
5953
|
BaoModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.1.3", ngImport: i0, type: BaoModule, imports: [BaoIconModule,
|
|
@@ -5804,7 +5973,8 @@ BaoModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.
|
|
|
5804
5973
|
BaoHyperlinkModule,
|
|
5805
5974
|
BaoDropdownMenuModule,
|
|
5806
5975
|
BaoFileModule,
|
|
5807
|
-
BaoSnackBarModule
|
|
5976
|
+
BaoSnackBarModule,
|
|
5977
|
+
BaoSystemHeaderModule
|
|
5808
5978
|
// TODO: reactivate once component does not depend on global css BaoBadgeModule,
|
|
5809
5979
|
] });
|
|
5810
5980
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.3", ngImport: i0, type: BaoModule, decorators: [{
|
|
@@ -5837,7 +6007,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.3", ngImpor
|
|
|
5837
6007
|
BaoHyperlinkModule,
|
|
5838
6008
|
BaoDropdownMenuModule,
|
|
5839
6009
|
BaoFileModule,
|
|
5840
|
-
BaoSnackBarModule
|
|
6010
|
+
BaoSnackBarModule,
|
|
6011
|
+
BaoSystemHeaderModule
|
|
5841
6012
|
// TODO: reactivate once component does not depend on global css BaoBadgeModule,
|
|
5842
6013
|
]
|
|
5843
6014
|
}]
|
|
@@ -5928,5 +6099,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.3", ngImpor
|
|
|
5928
6099
|
* Generated bundle index. Do not edit.
|
|
5929
6100
|
*/
|
|
5930
6101
|
|
|
5931
|
-
export { BAO_FILE_INTL_PROVIDER, BAO_FILE_INTL_PROVIDER_FACTORY, BAO_MODAL_DATA, BAO_RADIO_GROUP, BAO_SNACK_BAR_DATA, BAO_SNACK_BAR_DEFAULT_OPTIONS, BaoAlertActions, BaoAlertComponent, BaoAlertContent, BaoAlertLink, BaoAlertModule, BaoAlertTitle, BaoAvatarComponent, BaoAvatarContent, BaoAvatarModule, BaoBadgeComponent, BaoBadgeModule, BaoBreadcrumbComponent, BaoBreadcrumbModule, BaoButtonComponent, BaoButtonModule, BaoCardComponent, BaoCardContent, BaoCardHeader, BaoCardModule, BaoCardTextInterface, BaoCardTitle, BaoCheckBoxDescription, BaoCheckboxComponent, BaoCheckboxGroupComponent, BaoCheckboxModule, BaoCommonComponentsModule, BaoDropdownMenuComponent, BaoDropdownMenuDivider, BaoDropdownMenuItem, BaoDropdownMenuItemDescription, BaoDropdownMenuItemLabel, BaoDropdownMenuModule, BaoDropdownMenuSection, BaoDropdownMenuTrigger, BaoErrorTextComponent, BaoFileDropDirective, BaoFileDropzoneIntructions, BaoFileInputComponent, BaoFileIntl, BaoFileIntlEnglish, BaoFileModule, BaoFilePreviewComponent, BaoGuidingTextComponent, BaoHeaderInfoComponent, BaoHeaderInfoContent, BaoHeaderInfoModule, BaoHeaderInfoSubtitle, BaoHeaderInfoSurtitle, BaoHeaderInfoTitle, BaoHeaderInfoTitleGroupComponent, BaoHyperlinkComponent, BaoHyperlinkModule, BaoIconComponent, BaoIconModule, BaoLabelTextComponent, BaoList, BaoListItem, BaoListItemDescription, BaoListItemTitle, BaoListModule, BaoListSummary, BaoListSummaryItem, BaoModal, BaoModalBase, BaoModalClose, BaoModalContainer, BaoModalInitialConfig, BaoModalModule, BaoModalRef, BaoModule, BaoNavList, BaoRadioButtonComponent, BaoRadioButtonGroupComponent, BaoRadioDescription, BaoRadioModule, BaoSimpleSnackBarComponent, BaoSnackBarConfig, BaoSnackBarContainerComponent, BaoSnackBarModule, BaoSnackBarRef, BaoSnackBarService, BaoSummaryComponent, BaoSummaryDescription, BaoSummaryModule, BaoTabHeader, BaoTabPanel, BaoTablistComponent, BaoTabsContainer, BaoTabsModule, BaoTagComponent, BaoTagModule, BaoTitleTextComponent, _BaoModalContainerBase, _closeModalVia, baoFactory, eModalDesktopWidthSize, eModalMobileWidthSize, throwBaoModalContentAlreadyAttachedError };
|
|
6102
|
+
export { BAO_FILE_INTL_PROVIDER, BAO_FILE_INTL_PROVIDER_FACTORY, BAO_MODAL_DATA, BAO_RADIO_GROUP, BAO_SNACK_BAR_DATA, BAO_SNACK_BAR_DEFAULT_OPTIONS, BaoAlertActions, BaoAlertComponent, BaoAlertContent, BaoAlertLink, BaoAlertModule, BaoAlertTitle, BaoAvatarComponent, BaoAvatarContent, BaoAvatarModule, BaoBackNavigationComponent, BaoBackNavigationInsert, BaoBadgeComponent, BaoBadgeModule, BaoBreadcrumbComponent, BaoBreadcrumbModule, BaoButtonComponent, BaoButtonModule, BaoCardComponent, BaoCardContent, BaoCardHeader, BaoCardModule, BaoCardTextInterface, BaoCardTitle, BaoCheckBoxDescription, BaoCheckboxComponent, BaoCheckboxGroupComponent, BaoCheckboxModule, BaoCommonComponentsModule, BaoDropdownMenuComponent, BaoDropdownMenuDivider, BaoDropdownMenuItem, BaoDropdownMenuItemDescription, BaoDropdownMenuItemLabel, BaoDropdownMenuModule, BaoDropdownMenuSection, BaoDropdownMenuTrigger, BaoErrorTextComponent, BaoFileDropDirective, BaoFileDropzoneIntructions, BaoFileInputComponent, BaoFileIntl, BaoFileIntlEnglish, BaoFileModule, BaoFilePreviewComponent, BaoGuidingTextComponent, BaoHeaderInfoComponent, BaoHeaderInfoContent, BaoHeaderInfoModule, BaoHeaderInfoSubtitle, BaoHeaderInfoSurtitle, BaoHeaderInfoTitle, BaoHeaderInfoTitleGroupComponent, BaoHyperlinkComponent, BaoHyperlinkModule, BaoIconComponent, BaoIconModule, BaoLabelTextComponent, BaoList, BaoListItem, BaoListItemDescription, BaoListItemTitle, BaoListModule, BaoListSummary, BaoListSummaryItem, BaoModal, BaoModalBase, BaoModalClose, BaoModalContainer, BaoModalInitialConfig, BaoModalModule, BaoModalRef, BaoModule, BaoNavList, BaoRadioButtonComponent, BaoRadioButtonGroupComponent, BaoRadioDescription, BaoRadioModule, BaoSimpleSnackBarComponent, BaoSnackBarConfig, BaoSnackBarContainerComponent, BaoSnackBarModule, BaoSnackBarRef, BaoSnackBarService, BaoSummaryComponent, BaoSummaryDescription, BaoSummaryModule, BaoSystemHeaderComponent, BaoSystemHeaderModule, BaoTabHeader, BaoTabPanel, BaoTablistComponent, BaoTabsContainer, BaoTabsModule, BaoTagComponent, BaoTagModule, BaoTitleTextComponent, _BaoModalContainerBase, _closeModalVia, baoFactory, eModalDesktopWidthSize, eModalMobileWidthSize, throwBaoModalContentAlreadyAttachedError };
|
|
5932
6103
|
//# sourceMappingURL=villedemontreal-angular-ui.mjs.map
|