@villedemontreal/angular-ui 15.2.0 → 15.3.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.
@@ -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) {
@@ -709,7 +710,7 @@ class BaoBreadcrumbComponent {
709
710
  this.createLiElement();
710
711
  }
711
712
  onContentChange() {
712
- this.setLastLinkAttribute();
713
+ this.createLiElement();
713
714
  }
714
715
  createLiElement() {
715
716
  const children = Array.from(this.staticContainer.nativeElement.children);
@@ -5747,6 +5748,183 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.3", ngImpor
5747
5748
  }]
5748
5749
  }] });
5749
5750
 
5751
+ /*
5752
+ * Copyright (c) 2023 Ville de Montreal. All rights reserved.
5753
+ * Licensed under the MIT license.
5754
+ * See LICENSE file in the project root for full license information.
5755
+ */
5756
+ const Breakpoints = {
5757
+ XSmall: '(max-width: 575.98px)',
5758
+ Small: '(min-width: 576px) and (max-width: 767.98px)',
5759
+ Medium: '(min-width: 768px) and (max-width: 991.98px)',
5760
+ Large: '(min-width: 992px) and (max-width: 1199.98px)',
5761
+ XLarge: '(min-width: 1200px)'
5762
+ };
5763
+
5764
+ /*
5765
+ * Copyright (c) 2023 Ville de Montreal. All rights reserved.
5766
+ * Licensed under the MIT license.
5767
+ * See LICENSE file in the project root for full license information.
5768
+ */
5769
+
5770
+ /**
5771
+ * This component is dynamically added to replace breadcrumb when System Header is viewed on tablet or mobile screens.
5772
+ * Used internally by BaoSystemHeaderComponent only, not to be used by host application.
5773
+ */
5774
+ class BaoBackNavigationComponent {
5775
+ constructor(renderer, elementRef) {
5776
+ this.renderer = renderer;
5777
+ this.elementRef = elementRef;
5778
+ }
5779
+ ngOnChanges(changes) {
5780
+ if (changes['link'] && changes['link'].currentValue) {
5781
+ this.renderer.setAttribute(this.elementRef.nativeElement.children[0], 'href', changes['link'].currentValue);
5782
+ }
5783
+ }
5784
+ }
5785
+ 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 });
5786
+ 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>
5787
+ <bao-icon
5788
+ color="action"
5789
+ title="arrow-left"
5790
+ svgIcon="icon-arrow-left"
5791
+ size="x-small"
5792
+ ></bao-icon>
5793
+ </a>`, isInline: true, dependencies: [{ kind: "component", type: BaoIconComponent, selector: "bao-icon", inputs: ["color", "size", "svgIcon", "title"], exportAs: ["baoIcon"] }] });
5794
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.3", ngImport: i0, type: BaoBackNavigationComponent, decorators: [{
5795
+ type: Component,
5796
+ args: [{
5797
+ selector: 'bao-back-navigation-component',
5798
+ template: ` <a>
5799
+ <bao-icon
5800
+ color="action"
5801
+ title="arrow-left"
5802
+ svgIcon="icon-arrow-left"
5803
+ size="x-small"
5804
+ ></bao-icon>
5805
+ </a>`,
5806
+ host: {
5807
+ class: 'bao-system-header-back-button'
5808
+ }
5809
+ }]
5810
+ }], ctorParameters: function () { return [{ type: i0.Renderer2 }, { type: i0.ElementRef }]; }, propDecorators: { link: [{
5811
+ type: Input
5812
+ }] } });
5813
+ /**
5814
+ * This directive is to mark the template where the BaoBackNavigationComponent should be dynamically inserted,
5815
+ * when a Breadcrumb component needs to be replaced
5816
+ */
5817
+ class BaoBackNavigationInsert {
5818
+ constructor(viewContainerRef) {
5819
+ this.viewContainerRef = viewContainerRef;
5820
+ }
5821
+ }
5822
+ BaoBackNavigationInsert.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.3", ngImport: i0, type: BaoBackNavigationInsert, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
5823
+ BaoBackNavigationInsert.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.1.3", type: BaoBackNavigationInsert, selector: "[backNavigationInsert]", ngImport: i0 });
5824
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.3", ngImport: i0, type: BaoBackNavigationInsert, decorators: [{
5825
+ type: Directive,
5826
+ args: [{
5827
+ selector: '[backNavigationInsert]'
5828
+ }]
5829
+ }], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
5830
+ class BaoSystemHeaderComponent {
5831
+ constructor(breakpointObserver, renderer) {
5832
+ this.breakpointObserver = breakpointObserver;
5833
+ this.renderer = renderer;
5834
+ this.screenType = 'desktop';
5835
+ }
5836
+ get textContainerChildren() {
5837
+ return Array.from(this.textContainer.nativeElement.children);
5838
+ }
5839
+ ngOnInit() {
5840
+ if ([Breakpoints.XSmall, Breakpoints.Small].some(size => this.breakpointObserver.isMatched(size))) {
5841
+ this.screenType = 'mobile';
5842
+ }
5843
+ else if (this.breakpointObserver.isMatched(Breakpoints.Medium)) {
5844
+ this.screenType = 'tablet';
5845
+ }
5846
+ else if ([Breakpoints.Large, Breakpoints.XLarge].some(size => this.breakpointObserver.isMatched(size))) {
5847
+ this.screenType = 'desktop';
5848
+ }
5849
+ }
5850
+ ngAfterViewInit() {
5851
+ this.formatNavigation();
5852
+ this.applySizeClass();
5853
+ }
5854
+ formatNavigation() {
5855
+ // If view is rendered on a mobile/tablet screen
5856
+ if (this.screenType == 'mobile' || this.screenType == 'tablet') {
5857
+ if (this.textContainerChildren[0].className == 'bao-breadcrumb') {
5858
+ // Retrieve link of parent page
5859
+ const breadcrumbElementsList = this.textContainerChildren[0].children[0].children[0];
5860
+ const breadcrumbLength = breadcrumbElementsList.children.length;
5861
+ const parentLink = breadcrumbElementsList.children[breadcrumbLength - 2].children[0]
5862
+ .attributes['href'].value;
5863
+ // Remove Breadcrumb component and replace it with back button
5864
+ this.renderer.removeChild(this.textContainer.nativeElement, this.textContainerChildren[0]);
5865
+ const viewContainerRef = this.backButtonInsert.viewContainerRef;
5866
+ viewContainerRef.clear();
5867
+ const componentRef = viewContainerRef.createComponent(BaoBackNavigationComponent);
5868
+ componentRef.setInput('link', parentLink);
5869
+ }
5870
+ }
5871
+ }
5872
+ applySizeClass() {
5873
+ const tagInfoContainer = this.textContainer.nativeElement.childNodes[this.textContainerChildren.length - 1];
5874
+ if (this.screenType === 'mobile') {
5875
+ this.renderer.addClass(tagInfoContainer, 'mobile');
5876
+ }
5877
+ }
5878
+ }
5879
+ 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 });
5880
+ 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 });
5881
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.3", ngImport: i0, type: BaoSystemHeaderComponent, decorators: [{
5882
+ type: Component,
5883
+ args: [{ selector: 'bao-system-header', encapsulation: ViewEncapsulation.None, changeDetection: ChangeDetectionStrategy.OnPush, host: {
5884
+ class: 'bao-system-header'
5885
+ }, 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"] }]
5886
+ }], ctorParameters: function () { return [{ type: i2$1.BreakpointObserver }, { type: i0.Renderer2 }]; }, propDecorators: { textContainer: [{
5887
+ type: ViewChild,
5888
+ args: ['textContainer', { static: false }]
5889
+ }], backButtonInsert: [{
5890
+ type: ViewChild,
5891
+ args: [BaoBackNavigationInsert, { static: true }]
5892
+ }] } });
5893
+
5894
+ /*
5895
+ * Copyright (c) 2023 Ville de Montreal. All rights reserved.
5896
+ * Licensed under the MIT license.
5897
+ * See LICENSE file in the project root for full license information.
5898
+ */
5899
+ const SYSTEM_HEADER_DIRECTIVES = [
5900
+ BaoSystemHeaderComponent,
5901
+ BaoBackNavigationInsert,
5902
+ BaoBackNavigationComponent
5903
+ ];
5904
+ class BaoSystemHeaderModule {
5905
+ }
5906
+ BaoSystemHeaderModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.3", ngImport: i0, type: BaoSystemHeaderModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
5907
+ BaoSystemHeaderModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.1.3", ngImport: i0, type: BaoSystemHeaderModule, declarations: [BaoSystemHeaderComponent,
5908
+ BaoBackNavigationInsert,
5909
+ BaoBackNavigationComponent], imports: [CommonModule, BaoIconModule], exports: [BaoSystemHeaderComponent,
5910
+ BaoBackNavigationInsert,
5911
+ BaoBackNavigationComponent] });
5912
+ BaoSystemHeaderModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.1.3", ngImport: i0, type: BaoSystemHeaderModule, imports: [CommonModule, BaoIconModule] });
5913
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.3", ngImport: i0, type: BaoSystemHeaderModule, decorators: [{
5914
+ type: NgModule,
5915
+ args: [{
5916
+ imports: [CommonModule, BaoIconModule],
5917
+ declarations: [SYSTEM_HEADER_DIRECTIVES],
5918
+ exports: [SYSTEM_HEADER_DIRECTIVES]
5919
+ }]
5920
+ }] });
5921
+
5922
+ /*
5923
+ * Copyright (c) 2023 Ville de Montreal. All rights reserved.
5924
+ * Licensed under the MIT license.
5925
+ * See LICENSE file in the project root for full license information.
5926
+ */
5927
+
5750
5928
  /*
5751
5929
  * Copyright (c) 2023 Ville de Montreal. All rights reserved.
5752
5930
  * Licensed under the MIT license.
@@ -5778,7 +5956,8 @@ BaoModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.
5778
5956
  BaoHyperlinkModule,
5779
5957
  BaoDropdownMenuModule,
5780
5958
  BaoFileModule,
5781
- BaoSnackBarModule
5959
+ BaoSnackBarModule,
5960
+ BaoSystemHeaderModule
5782
5961
  // TODO: reactivate once component does not depend on global css BaoBadgeModule,
5783
5962
  ] });
5784
5963
  BaoModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.1.3", ngImport: i0, type: BaoModule, imports: [BaoIconModule,
@@ -5804,7 +5983,8 @@ BaoModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.
5804
5983
  BaoHyperlinkModule,
5805
5984
  BaoDropdownMenuModule,
5806
5985
  BaoFileModule,
5807
- BaoSnackBarModule
5986
+ BaoSnackBarModule,
5987
+ BaoSystemHeaderModule
5808
5988
  // TODO: reactivate once component does not depend on global css BaoBadgeModule,
5809
5989
  ] });
5810
5990
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.3", ngImport: i0, type: BaoModule, decorators: [{
@@ -5837,7 +6017,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.3", ngImpor
5837
6017
  BaoHyperlinkModule,
5838
6018
  BaoDropdownMenuModule,
5839
6019
  BaoFileModule,
5840
- BaoSnackBarModule
6020
+ BaoSnackBarModule,
6021
+ BaoSystemHeaderModule
5841
6022
  // TODO: reactivate once component does not depend on global css BaoBadgeModule,
5842
6023
  ]
5843
6024
  }]
@@ -5928,5 +6109,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.3", ngImpor
5928
6109
  * Generated bundle index. Do not edit.
5929
6110
  */
5930
6111
 
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 };
6112
+ 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
6113
  //# sourceMappingURL=villedemontreal-angular-ui.mjs.map