@villedemontreal/angular-ui 3.2.0-pre.build.1 → 3.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.
@@ -12,13 +12,13 @@ import * as i2 from '@angular/cdk/collections';
12
12
  import * as i1$4 from '@angular/cdk/overlay';
13
13
  import { OverlayConfig, OverlayModule } from '@angular/cdk/overlay';
14
14
  import * as i3 from '@angular/cdk/portal';
15
- import { BasePortalOutlet, CdkPortalOutlet, ComponentPortal, TemplatePortal, PortalModule } from '@angular/cdk/portal';
15
+ import { BasePortalOutlet, CdkPortalOutlet, ComponentPortal, TemplatePortal, PortalModule, DomPortal } from '@angular/cdk/portal';
16
16
  import { Subject, filter, take, defer, startWith, Subscription } from 'rxjs';
17
17
  import { __awaiter } from 'tslib';
18
18
  import { _getFocusedElementPierceShadowDom } from '@angular/cdk/platform';
19
19
  import { trigger, state, style, transition, group, animate, query, animateChild } from '@angular/animations';
20
20
  import { ESCAPE, hasModifierKey } from '@angular/cdk/keycodes';
21
- import { ANIMATION_MODULE_TYPE } from '@angular/platform-browser/animations';
21
+ import { ANIMATION_MODULE_TYPE, BrowserAnimationsModule, NoopAnimationsModule } from '@angular/platform-browser/animations';
22
22
 
23
23
  function baoColorToHex(baoColor) {
24
24
  switch (baoColor) {
@@ -3841,12 +3841,26 @@ const MODAL_DIRECTIVES = [BaoModalContainer, BaoModalClose];
3841
3841
  class BaoModalModule {
3842
3842
  }
3843
3843
  BaoModalModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: BaoModalModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
3844
- BaoModalModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.1", ngImport: i0, type: BaoModalModule, declarations: [BaoModalContainer, BaoModalClose], imports: [CommonModule, OverlayModule, PortalModule], exports: [BaoModalContainer, BaoModalClose] });
3845
- BaoModalModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: BaoModalModule, providers: [BaoModal], imports: [CommonModule, OverlayModule, PortalModule] });
3844
+ BaoModalModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.1", ngImport: i0, type: BaoModalModule, declarations: [BaoModalContainer, BaoModalClose], imports: [CommonModule,
3845
+ OverlayModule,
3846
+ PortalModule,
3847
+ BrowserAnimationsModule,
3848
+ NoopAnimationsModule], exports: [BaoModalContainer, BaoModalClose] });
3849
+ BaoModalModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: BaoModalModule, providers: [BaoModal], imports: [CommonModule,
3850
+ OverlayModule,
3851
+ PortalModule,
3852
+ BrowserAnimationsModule,
3853
+ NoopAnimationsModule] });
3846
3854
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: BaoModalModule, decorators: [{
3847
3855
  type: NgModule,
3848
3856
  args: [{
3849
- imports: [CommonModule, OverlayModule, PortalModule],
3857
+ imports: [
3858
+ CommonModule,
3859
+ OverlayModule,
3860
+ PortalModule,
3861
+ BrowserAnimationsModule,
3862
+ NoopAnimationsModule
3863
+ ],
3850
3864
  declarations: MODAL_DIRECTIVES,
3851
3865
  exports: MODAL_DIRECTIVES,
3852
3866
  providers: [BaoModal]
@@ -3952,6 +3966,566 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImpor
3952
3966
  * See LICENSE file in the project root for full license information.
3953
3967
  */
3954
3968
 
3969
+ /*
3970
+ * Copyright (c) 2022 Ville de Montreal. All rights reserved.
3971
+ * Licensed under the MIT license.
3972
+ * See LICENSE file in the project root for full license information.
3973
+ */
3974
+ /**
3975
+ * Unique ID for each dropdown menu
3976
+ */
3977
+ let dropdownMenuUniqueId = 0;
3978
+ class BaoDropdownMenuItem {
3979
+ constructor(renderer, elementRef, _parent) {
3980
+ this.renderer = renderer;
3981
+ this.elementRef = elementRef;
3982
+ this._parent = _parent;
3983
+ /**
3984
+ * Is the list item disabled
3985
+ */
3986
+ this.disabled = false;
3987
+ }
3988
+ get nativeElement() {
3989
+ return this.elementRef.nativeElement;
3990
+ }
3991
+ spaceKeyEvent() {
3992
+ if (document.activeElement == this.nativeElement) {
3993
+ this.nativeElement.click();
3994
+ }
3995
+ }
3996
+ onClick() {
3997
+ if (this.nativeElement.attributes['href']) {
3998
+ this._parent.setNavigationAttribute(this.nativeElement);
3999
+ }
4000
+ this.propagateClick();
4001
+ }
4002
+ enterKeyEvent() {
4003
+ if (document.activeElement == this.nativeElement) {
4004
+ if (this.nativeElement.attributes['href']) {
4005
+ this._parent.setNavigationAttribute(this.nativeElement);
4006
+ }
4007
+ this.propagateClick();
4008
+ }
4009
+ }
4010
+ ngAfterViewInit() {
4011
+ this.addContentDiv();
4012
+ if (!this.disabled) {
4013
+ this.renderer.setAttribute(this.nativeElement, 'tabIndex', '0');
4014
+ }
4015
+ this.addPaddingClass();
4016
+ // Remove input element inside item from keyboard navigation sequence
4017
+ if (this.nativeElement.classList.contains('has-element-left')) {
4018
+ this.renderer.setAttribute(this.nativeElement.children.item(0).firstElementChild, 'tabIndex', '-1');
4019
+ }
4020
+ }
4021
+ ngOnChanges(changes) {
4022
+ if (changes['disabled'] && changes['disabled'].currentValue == true) {
4023
+ this.disableItem();
4024
+ }
4025
+ }
4026
+ /** Regroups label and description in a new div to help with layout */
4027
+ addContentDiv() {
4028
+ const children = Array.from(this.nativeElement.children);
4029
+ const labelIndex = children.findIndex(c => c.localName === 'bao-dropdown-menu-item-label');
4030
+ const labelElement = children[labelIndex];
4031
+ this.renderer.removeChild(this.nativeElement, children[labelIndex]);
4032
+ const contentDiv = this.renderer.createElement('div');
4033
+ this.renderer.addClass(contentDiv, 'bao-dropdown-menu-item-content');
4034
+ this.renderer.appendChild(this.nativeElement, contentDiv);
4035
+ this.renderer.appendChild(contentDiv, labelElement);
4036
+ const descriptionIndex = children.findIndex(c => c.localName === 'bao-dropdown-menu-item-description');
4037
+ if (descriptionIndex > 0) {
4038
+ const descriptionElement = children[descriptionIndex];
4039
+ this.renderer.removeChild(this.nativeElement, children[descriptionIndex]);
4040
+ this.renderer.appendChild(contentDiv, descriptionElement);
4041
+ }
4042
+ }
4043
+ addPaddingClass() {
4044
+ const children = Array.from(this.nativeElement.children);
4045
+ // Menu item has extra element next to label
4046
+ if (children.length > 1) {
4047
+ // Only toggle element can be on the right
4048
+ if (children.findIndex(c => c.localName === 'bao-toggle') > 0) {
4049
+ this.renderer.addClass(this.nativeElement, 'has-element-right');
4050
+ }
4051
+ // Icon, checkbox, radio button or avatar must be on the left
4052
+ else {
4053
+ this.renderer.addClass(this.nativeElement, 'has-element-left');
4054
+ }
4055
+ }
4056
+ }
4057
+ disableItem() {
4058
+ if (this.disabled) {
4059
+ this.renderer.setAttribute(this.nativeElement, 'aria-disabled', 'true');
4060
+ this.renderer.setAttribute(this.nativeElement, 'tabIndex', '-1');
4061
+ }
4062
+ }
4063
+ /**
4064
+ * This method propagates a click event to menu item children with inputs (checkbox, radio button)
4065
+ */
4066
+ propagateClick() {
4067
+ for (let i = 0; i < this.nativeElement.children.length; i++) {
4068
+ if (this.nativeElement.children.item(i).firstElementChild.localName ==
4069
+ 'input') {
4070
+ this.nativeElement.children.item(i).firstElementChild.click();
4071
+ }
4072
+ }
4073
+ }
4074
+ }
4075
+ BaoDropdownMenuItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: BaoDropdownMenuItem, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }, { token: BaoDropdownMenuComponent }], target: i0.ɵɵFactoryTarget.Directive });
4076
+ BaoDropdownMenuItem.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.1", type: BaoDropdownMenuItem, selector: "bao-dropdown-menu-item, [bao-dropdown-menu-item]", inputs: { disabled: "disabled" }, host: { listeners: { "window:keyup.space": "spaceKeyEvent()", "click": "onClick()", "window:keydown.enter": "enterKeyEvent()" }, properties: { "class.bao-dropdown-menu-item-disabled": "disabled===true" }, classAttribute: "bao-dropdown-menu-item" }, usesOnChanges: true, ngImport: i0 });
4077
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: BaoDropdownMenuItem, decorators: [{
4078
+ type: Directive,
4079
+ args: [{
4080
+ selector: 'bao-dropdown-menu-item, [bao-dropdown-menu-item]',
4081
+ host: {
4082
+ class: 'bao-dropdown-menu-item',
4083
+ '[class.bao-dropdown-menu-item-disabled]': 'disabled===true'
4084
+ }
4085
+ }]
4086
+ }], ctorParameters: function () { return [{ type: i0.Renderer2 }, { type: i0.ElementRef }, { type: BaoDropdownMenuComponent }]; }, propDecorators: { disabled: [{
4087
+ type: Input
4088
+ }], spaceKeyEvent: [{
4089
+ type: HostListener,
4090
+ args: ['window:keyup.space']
4091
+ }], onClick: [{
4092
+ type: HostListener,
4093
+ args: ['click']
4094
+ }], enterKeyEvent: [{
4095
+ type: HostListener,
4096
+ args: ['window:keydown.enter']
4097
+ }] } });
4098
+ class BaoDropdownMenuComponent {
4099
+ constructor(cdr, renderer, elementRef) {
4100
+ this.cdr = cdr;
4101
+ this.renderer = renderer;
4102
+ this.elementRef = elementRef;
4103
+ /**
4104
+ * Fired when the dropdown-menu changes its 'isOpen' value
4105
+ */
4106
+ this.isOpenChange = new EventEmitter();
4107
+ /**
4108
+ * Fired when menu is closed by key event triggered from menu item
4109
+ */
4110
+ this.isClosedByKeyEvent = new EventEmitter();
4111
+ /**
4112
+ * Unique identifier of the dropdown menu
4113
+ */
4114
+ this.menuId = `bao-dropdown-menu-${++dropdownMenuUniqueId}`;
4115
+ /**
4116
+ * Is the dropwdown menu currently open
4117
+ */
4118
+ this._isOpen = false;
4119
+ }
4120
+ get isOpen() {
4121
+ return this._isOpen;
4122
+ }
4123
+ get activeItemIndex() {
4124
+ return this._activeItemIndex;
4125
+ }
4126
+ get menuPortal() {
4127
+ return this._menuPortal;
4128
+ }
4129
+ get nativeElement() {
4130
+ return this.elementRef.nativeElement;
4131
+ }
4132
+ set isOpen(isOpen) {
4133
+ this._isOpen = isOpen;
4134
+ this.cdr.detectChanges();
4135
+ this.isOpenChange.emit(isOpen);
4136
+ }
4137
+ set activeItemIndex(index) {
4138
+ this._activeItemIndex = index;
4139
+ }
4140
+ upKeyEvent() {
4141
+ if (this.isOpen) {
4142
+ const index = isNaN(this._activeItemIndex) ? 0 : this._activeItemIndex;
4143
+ const nextIndex = this.getNextActivableItemIndex(index, false);
4144
+ this.focusNextItem(nextIndex);
4145
+ }
4146
+ }
4147
+ downKeyEvent() {
4148
+ if (this.isOpen) {
4149
+ const index = isNaN(this._activeItemIndex) ? 0 : this._activeItemIndex;
4150
+ const nextIndex = this.getNextActivableItemIndex(index, true);
4151
+ this.focusNextItem(nextIndex);
4152
+ }
4153
+ }
4154
+ /** Prevents focus to be lost when TAB has reached end of menu */
4155
+ tabKeyEvent() {
4156
+ if (this.isOpen) {
4157
+ if (document.activeElement === this._listItems.last.nativeElement) {
4158
+ this.isClosedByKeyEvent.emit();
4159
+ }
4160
+ }
4161
+ }
4162
+ /** Prevents focus to be lost when SHIFT + TAB has reached beginning of menu */
4163
+ shiftTabKeyEvent() {
4164
+ if (this.isOpen) {
4165
+ if (document.activeElement === this._listItems.first.nativeElement) {
4166
+ this.isClosedByKeyEvent.emit();
4167
+ }
4168
+ }
4169
+ }
4170
+ ngAfterViewInit() {
4171
+ this.renderer.setAttribute(this.nativeElement, 'id', this.menuId);
4172
+ this._menuPortal = new DomPortal(this._menuContent);
4173
+ }
4174
+ focusFirstItem() {
4175
+ this._activeItemIndex = 0;
4176
+ this._listItems.first.nativeElement.focus();
4177
+ }
4178
+ open() {
4179
+ this.isOpen = true;
4180
+ }
4181
+ close() {
4182
+ this.isOpen = false;
4183
+ }
4184
+ /** Move the aria-current attribute to new active page */
4185
+ setNavigationAttribute(activePageElement) {
4186
+ const previousActivePage = this._listItems.find((item) => {
4187
+ return item.nativeElement.attributes['aria-current'] === 'page';
4188
+ });
4189
+ if (previousActivePage) {
4190
+ this.renderer.removeAttribute(previousActivePage.nativeElement, 'aria-current');
4191
+ this.renderer.removeClass(previousActivePage.nativeElement, 'active-link');
4192
+ }
4193
+ this.renderer.setAttribute(activePageElement, 'aria-current', 'page');
4194
+ this.renderer.addClass(activePageElement, 'active-link');
4195
+ }
4196
+ focusNextItem(nextIndex) {
4197
+ this._activeItemIndex = nextIndex;
4198
+ this._listItems.get(nextIndex).nativeElement.focus();
4199
+ }
4200
+ /**
4201
+ * Finds the next activable tab index when navigating with up and down arrow or TAB keys
4202
+ * @param currentIndex List item index which currently has focus
4203
+ * @param isDown Whether the navigation is going in the down direction or not
4204
+ * @param isBackward If recursive function is going backward looking for last activable item in list
4205
+ * @returns Index of the next item that will receive focus
4206
+ */
4207
+ getNextActivableItemIndex(currentIndex, isDown, isBackward = false) {
4208
+ if (!this._listItems.get(currentIndex).disabled) {
4209
+ if (!this.canMove(currentIndex, isDown)) {
4210
+ return currentIndex;
4211
+ }
4212
+ }
4213
+ else {
4214
+ if (!this.canMove(currentIndex, isDown)) {
4215
+ const previousIndex = isDown ? currentIndex - 1 : currentIndex + 1;
4216
+ return this.getNextActivableItemIndex(previousIndex, isDown, true);
4217
+ }
4218
+ }
4219
+ const nextIndex = isDown ? currentIndex + 1 : currentIndex - 1;
4220
+ if (this._listItems.get(nextIndex).disabled) {
4221
+ if (isBackward) {
4222
+ return currentIndex;
4223
+ }
4224
+ return this.getNextActivableItemIndex(nextIndex, isDown);
4225
+ }
4226
+ return nextIndex;
4227
+ }
4228
+ /**
4229
+ * Finds if focus has reached end or beginning of list
4230
+ * @param currentIndex List item index which currently has focus
4231
+ * @param isDown Whether the navigation is going in the down direction or not
4232
+ * @returns Can focus move to next item or not
4233
+ */
4234
+ canMove(currentIndex, isDown) {
4235
+ return !((currentIndex == 0 && !isDown) ||
4236
+ (currentIndex == this._listItems.length - 1 && isDown));
4237
+ }
4238
+ }
4239
+ BaoDropdownMenuComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: BaoDropdownMenuComponent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
4240
+ BaoDropdownMenuComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", type: BaoDropdownMenuComponent, selector: "bao-dropdown-menu", outputs: { isOpenChange: "isOpenChange", isClosedByKeyEvent: "isClosedByKeyEvent" }, host: { listeners: { "window:keyup.arrowup": "upKeyEvent()", "window:keyup.arrowdown": "downKeyEvent()", "window:keydown.tab": "tabKeyEvent()", "window:keydown.shift.tab": "shiftTabKeyEvent()" }, properties: { "class.bao-overlay-transparent-backdrop": "isOpen===false", "class.bao-dropdown-menu-closed": "isOpen===false", "attr.aria-expanded": "isOpen" }, classAttribute: "bao-dropdown-menu" }, queries: [{ propertyName: "_listItems", predicate: BaoDropdownMenuItem, descendants: true }], viewQueries: [{ propertyName: "_menuContent", first: true, predicate: ["menuContent"], descendants: true }], ngImport: i0, template: "<div #menuContent class=\"bao-dropdown-menu\" tabindex=\"-1\">\n <ng-content></ng-content>\n</div>\n", styles: [".bao-dropdown-menu{min-width:16rem;max-width:32rem;overflow-y:auto;background:#ffffff;box-shadow:0 .5rem 2rem #0000001a;border-radius:.25rem;padding-top:.5rem;padding-bottom:.5rem}.bao-dropdown-menu.bao-dropdown-menu-closed{display:none}.bao-dropdown-menu .bao-overlay-transparent-backdrop{background-color:#fff0;display:none}.bao-dropdown-menu ul{list-style-type:none;padding:0;margin:0}.bao-dropdown-menu h5{padding:.5rem 0 .5rem 1rem;margin:0}.bao-dropdown-menu .bao-dropdown-menu-item{display:flex;align-items:center;text-decoration:none;border-bottom:none;cursor:default}.bao-dropdown-menu .bao-dropdown-menu-item:hover{background-color:#f8f9fa}.bao-dropdown-menu .bao-dropdown-menu-item:active{background-color:#eefaf8}.bao-dropdown-menu .bao-dropdown-menu-item:focus{box-shadow:inset 0 0 0 .25rem #98bcde}.bao-dropdown-menu .bao-dropdown-menu-item.active-link{background-color:#eefaf8}.bao-dropdown-menu .bao-dropdown-menu-item.has-element-right{padding-right:1.5rem}.bao-dropdown-menu .bao-dropdown-menu-item.has-element-left{padding-left:1rem}.bao-dropdown-menu .bao-dropdown-menu-item.bao-dropdown-menu-item-disabled{cursor:not-allowed;pointer-events:none}.bao-dropdown-menu .bao-dropdown-menu-item.bao-dropdown-menu-item-disabled:hover,.bao-dropdown-menu .bao-dropdown-menu-item.bao-dropdown-menu-item-disabled:active{background:#ffffff}.bao-dropdown-menu .bao-dropdown-menu-item.bao-dropdown-menu-item-disabled .bao-dropdown-menu-item-content .bao-dropdown-menu-item-label,.bao-dropdown-menu .bao-dropdown-menu-item.bao-dropdown-menu-item-disabled .bao-dropdown-menu-item-content .bao-dropdown-menu-item-description{color:#adb2bd}.bao-dropdown-menu .bao-dropdown-menu-item>.bao-dropdown-menu-item-content{display:flex;flex-direction:column;margin:.5rem 1rem;background-color:inherit}.bao-dropdown-menu .bao-dropdown-menu-item>.bao-dropdown-menu-item-content .bao-dropdown-menu-item-label{font-weight:400;font-size:1rem;line-height:1.5rem;color:#212529}.bao-dropdown-menu .bao-dropdown-menu-item>.bao-dropdown-menu-item-content .bao-dropdown-menu-item-description{font-weight:400;font-size:.875rem;line-height:1.25rem;color:#637381}.bao-dropdown-menu .bao-dropdown-menu-item>.bao-icon{color:#adb2bd;flex-shrink:0}.bao-dropdown-menu .bao-dropdown-menu-divider hr{margin-top:.5rem;margin-bottom:.5rem}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
4241
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: BaoDropdownMenuComponent, decorators: [{
4242
+ type: Component,
4243
+ args: [{ selector: 'bao-dropdown-menu', encapsulation: ViewEncapsulation.None, changeDetection: ChangeDetectionStrategy.OnPush, host: {
4244
+ class: 'bao-dropdown-menu',
4245
+ '[class.bao-overlay-transparent-backdrop]': 'isOpen===false',
4246
+ '[class.bao-dropdown-menu-closed]': 'isOpen===false',
4247
+ '[attr.aria-expanded]': 'isOpen'
4248
+ }, template: "<div #menuContent class=\"bao-dropdown-menu\" tabindex=\"-1\">\n <ng-content></ng-content>\n</div>\n", styles: [".bao-dropdown-menu{min-width:16rem;max-width:32rem;overflow-y:auto;background:#ffffff;box-shadow:0 .5rem 2rem #0000001a;border-radius:.25rem;padding-top:.5rem;padding-bottom:.5rem}.bao-dropdown-menu.bao-dropdown-menu-closed{display:none}.bao-dropdown-menu .bao-overlay-transparent-backdrop{background-color:#fff0;display:none}.bao-dropdown-menu ul{list-style-type:none;padding:0;margin:0}.bao-dropdown-menu h5{padding:.5rem 0 .5rem 1rem;margin:0}.bao-dropdown-menu .bao-dropdown-menu-item{display:flex;align-items:center;text-decoration:none;border-bottom:none;cursor:default}.bao-dropdown-menu .bao-dropdown-menu-item:hover{background-color:#f8f9fa}.bao-dropdown-menu .bao-dropdown-menu-item:active{background-color:#eefaf8}.bao-dropdown-menu .bao-dropdown-menu-item:focus{box-shadow:inset 0 0 0 .25rem #98bcde}.bao-dropdown-menu .bao-dropdown-menu-item.active-link{background-color:#eefaf8}.bao-dropdown-menu .bao-dropdown-menu-item.has-element-right{padding-right:1.5rem}.bao-dropdown-menu .bao-dropdown-menu-item.has-element-left{padding-left:1rem}.bao-dropdown-menu .bao-dropdown-menu-item.bao-dropdown-menu-item-disabled{cursor:not-allowed;pointer-events:none}.bao-dropdown-menu .bao-dropdown-menu-item.bao-dropdown-menu-item-disabled:hover,.bao-dropdown-menu .bao-dropdown-menu-item.bao-dropdown-menu-item-disabled:active{background:#ffffff}.bao-dropdown-menu .bao-dropdown-menu-item.bao-dropdown-menu-item-disabled .bao-dropdown-menu-item-content .bao-dropdown-menu-item-label,.bao-dropdown-menu .bao-dropdown-menu-item.bao-dropdown-menu-item-disabled .bao-dropdown-menu-item-content .bao-dropdown-menu-item-description{color:#adb2bd}.bao-dropdown-menu .bao-dropdown-menu-item>.bao-dropdown-menu-item-content{display:flex;flex-direction:column;margin:.5rem 1rem;background-color:inherit}.bao-dropdown-menu .bao-dropdown-menu-item>.bao-dropdown-menu-item-content .bao-dropdown-menu-item-label{font-weight:400;font-size:1rem;line-height:1.5rem;color:#212529}.bao-dropdown-menu .bao-dropdown-menu-item>.bao-dropdown-menu-item-content .bao-dropdown-menu-item-description{font-weight:400;font-size:.875rem;line-height:1.25rem;color:#637381}.bao-dropdown-menu .bao-dropdown-menu-item>.bao-icon{color:#adb2bd;flex-shrink:0}.bao-dropdown-menu .bao-dropdown-menu-divider hr{margin-top:.5rem;margin-bottom:.5rem}\n"] }]
4249
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.Renderer2 }, { type: i0.ElementRef }]; }, propDecorators: { isOpenChange: [{
4250
+ type: Output
4251
+ }], isClosedByKeyEvent: [{
4252
+ type: Output
4253
+ }], _menuContent: [{
4254
+ type: ViewChild,
4255
+ args: ['menuContent']
4256
+ }], _listItems: [{
4257
+ type: ContentChildren,
4258
+ args: [BaoDropdownMenuItem, { descendants: true }]
4259
+ }], upKeyEvent: [{
4260
+ type: HostListener,
4261
+ args: ['window:keyup.arrowup']
4262
+ }], downKeyEvent: [{
4263
+ type: HostListener,
4264
+ args: ['window:keyup.arrowdown']
4265
+ }], tabKeyEvent: [{
4266
+ type: HostListener,
4267
+ args: ['window:keydown.tab']
4268
+ }], shiftTabKeyEvent: [{
4269
+ type: HostListener,
4270
+ args: ['window:keydown.shift.tab']
4271
+ }] } });
4272
+ /**
4273
+ * Directive to be applied on element that will trigger the opening and closing of menu.
4274
+ */
4275
+ class BaoDropdownMenuTrigger {
4276
+ constructor(renderer, elementRef, overlay) {
4277
+ this.renderer = renderer;
4278
+ this.elementRef = elementRef;
4279
+ this.overlay = overlay;
4280
+ this._overlayRef = null;
4281
+ this._isMenuOpen = false;
4282
+ }
4283
+ get nativeElement() {
4284
+ return this.elementRef.nativeElement;
4285
+ }
4286
+ escapeKeyEvent() {
4287
+ if (this._isMenuOpen) {
4288
+ this.closeMenu();
4289
+ this.nativeElement.focus();
4290
+ }
4291
+ }
4292
+ /** Enter key event triggers click event which opens menu,
4293
+ * then focus is put on first item in the menu */
4294
+ enterKeyEvent() {
4295
+ if (this._isMenuOpen && document.activeElement === this.nativeElement) {
4296
+ this.menu.focusFirstItem();
4297
+ }
4298
+ }
4299
+ onClick() {
4300
+ this.toggleMenu();
4301
+ }
4302
+ ngAfterViewInit() {
4303
+ this.renderer.setAttribute(this.nativeElement, 'role', 'button');
4304
+ this.renderer.setAttribute(this.nativeElement, 'aria-controls', `bao-dropdown-menu-${dropdownMenuUniqueId}`);
4305
+ this.menu.isClosedByKeyEvent.subscribe(() => {
4306
+ this.closeMenu();
4307
+ this.nativeElement.focus();
4308
+ });
4309
+ }
4310
+ ngOnDestroy() {
4311
+ if (this._overlayRef) {
4312
+ this._overlayRef.dispose();
4313
+ }
4314
+ }
4315
+ toggleMenu() {
4316
+ return this._isMenuOpen ? this.closeMenu() : this.openMenu();
4317
+ }
4318
+ closeMenu() {
4319
+ this._isMenuOpen = false;
4320
+ this.menu.close();
4321
+ if (this._overlayRef) {
4322
+ this._overlayRef.detach();
4323
+ }
4324
+ }
4325
+ openMenu() {
4326
+ if (!this.menu) {
4327
+ return;
4328
+ }
4329
+ const overlayRef = this.createOverlay();
4330
+ overlayRef.attach(this.menu.menuPortal);
4331
+ this._isMenuOpen = true;
4332
+ this.menu.open();
4333
+ }
4334
+ createOverlay() {
4335
+ if (!this._overlayRef) {
4336
+ const config = this.getOverlayConfig();
4337
+ this._overlayRef = this.overlay.create(config);
4338
+ }
4339
+ this._overlayRef.backdropClick().subscribe(() => {
4340
+ this.closeMenu();
4341
+ });
4342
+ return this._overlayRef;
4343
+ }
4344
+ getOverlayConfig() {
4345
+ return new OverlayConfig({
4346
+ positionStrategy: this.overlay
4347
+ .position()
4348
+ .flexibleConnectedTo(this.elementRef)
4349
+ .withLockedPosition()
4350
+ .withGrowAfterOpen()
4351
+ .withPositions([
4352
+ {
4353
+ // top-left of the overlay is connected to bottom-left of the origin;
4354
+ originX: 'start',
4355
+ originY: 'bottom',
4356
+ overlayX: 'start',
4357
+ overlayY: 'top'
4358
+ },
4359
+ {
4360
+ // bottom-left of the overlay is connected to top-left of the origin;
4361
+ originX: 'start',
4362
+ originY: 'top',
4363
+ overlayX: 'start',
4364
+ overlayY: 'bottom'
4365
+ }
4366
+ ]),
4367
+ backdropClass: 'bao-overlay-transparent-backdrop',
4368
+ hasBackdrop: true,
4369
+ scrollStrategy: this.overlay.scrollStrategies.block()
4370
+ });
4371
+ }
4372
+ }
4373
+ BaoDropdownMenuTrigger.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: BaoDropdownMenuTrigger, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }, { token: i1$4.Overlay }], target: i0.ɵɵFactoryTarget.Directive });
4374
+ BaoDropdownMenuTrigger.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.1", type: BaoDropdownMenuTrigger, selector: "bao-dropdown-menu-trigger, [bao-dropdown-menu-trigger], [baoDropdownMenuTriggerFor]", inputs: { menu: ["baoDropdownMenuTriggerFor", "menu"] }, host: { listeners: { "window:keyup.escape": "escapeKeyEvent()", "window:keyup.enter": "enterKeyEvent()", "click": "onClick()" }, classAttribute: "bao-dropdown-menu-trigger" }, ngImport: i0 });
4375
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: BaoDropdownMenuTrigger, decorators: [{
4376
+ type: Directive,
4377
+ args: [{
4378
+ selector: 'bao-dropdown-menu-trigger, [bao-dropdown-menu-trigger], [baoDropdownMenuTriggerFor]',
4379
+ host: { class: 'bao-dropdown-menu-trigger' }
4380
+ }]
4381
+ }], ctorParameters: function () { return [{ type: i0.Renderer2 }, { type: i0.ElementRef }, { type: i1$4.Overlay }]; }, propDecorators: { menu: [{
4382
+ type: Input,
4383
+ args: ['baoDropdownMenuTriggerFor']
4384
+ }], escapeKeyEvent: [{
4385
+ type: HostListener,
4386
+ args: ['window:keyup.escape']
4387
+ }], enterKeyEvent: [{
4388
+ type: HostListener,
4389
+ args: ['window:keyup.enter']
4390
+ }], onClick: [{
4391
+ type: HostListener,
4392
+ args: ['click']
4393
+ }] } });
4394
+ /**
4395
+ * Sections of list items in menu. Apply proper styling to section's title if there is one.
4396
+ */
4397
+ class BaoDropdownMenuSection {
4398
+ constructor(elementRef, renderer) {
4399
+ this.elementRef = elementRef;
4400
+ this.renderer = renderer;
4401
+ }
4402
+ get nativeElement() {
4403
+ return this.elementRef.nativeElement;
4404
+ }
4405
+ ngAfterViewInit() {
4406
+ const children = Array.from(this.nativeElement.childNodes);
4407
+ const textIndex = children.findIndex((c) => c.nodeName === '#text');
4408
+ if (textIndex > -1) {
4409
+ this.insertTitle(children, textIndex);
4410
+ }
4411
+ }
4412
+ insertTitle(children, txtIdx) {
4413
+ const titleElement = this.renderer.createElement('h5');
4414
+ this.renderer.setProperty(titleElement, 'textContent', children[txtIdx].nodeValue);
4415
+ this.renderer.removeChild(this.nativeElement, children[txtIdx]);
4416
+ const listIndex = children.findIndex((c) => c.nodeName === 'UL');
4417
+ this.renderer.insertBefore(this.nativeElement, titleElement, children[listIndex]);
4418
+ }
4419
+ }
4420
+ BaoDropdownMenuSection.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: BaoDropdownMenuSection, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive });
4421
+ BaoDropdownMenuSection.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.1", type: BaoDropdownMenuSection, selector: "bao-dropdown-menu-section, [bao-dropdown-menu-section]", host: { classAttribute: "bao-dropdown-menu-section" }, ngImport: i0 });
4422
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: BaoDropdownMenuSection, decorators: [{
4423
+ type: Directive,
4424
+ args: [{
4425
+ selector: 'bao-dropdown-menu-section, [bao-dropdown-menu-section]',
4426
+ host: { class: 'bao-dropdown-menu-section' }
4427
+ }]
4428
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }]; } });
4429
+ /**
4430
+ * Label of a list item, add css class to apply proper styling.
4431
+ */
4432
+ class BaoDropdownMenuItemLabel {
4433
+ }
4434
+ BaoDropdownMenuItemLabel.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: BaoDropdownMenuItemLabel, deps: [], target: i0.ɵɵFactoryTarget.Directive });
4435
+ BaoDropdownMenuItemLabel.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.1", type: BaoDropdownMenuItemLabel, selector: "bao-dropdown-menu-item-label, [bao-dropdown-menu-item-label]", host: { classAttribute: "bao-dropdown-menu-item-label" }, ngImport: i0 });
4436
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: BaoDropdownMenuItemLabel, decorators: [{
4437
+ type: Directive,
4438
+ args: [{
4439
+ selector: 'bao-dropdown-menu-item-label, [bao-dropdown-menu-item-label]',
4440
+ host: { class: 'bao-dropdown-menu-item-label' }
4441
+ }]
4442
+ }] });
4443
+ /**
4444
+ * Description of a list item, add css class to apply proper styling.
4445
+ */
4446
+ class BaoDropdownMenuItemDescription {
4447
+ }
4448
+ BaoDropdownMenuItemDescription.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: BaoDropdownMenuItemDescription, deps: [], target: i0.ɵɵFactoryTarget.Directive });
4449
+ BaoDropdownMenuItemDescription.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.1", type: BaoDropdownMenuItemDescription, selector: "bao-dropdown-menu-item-description, [bao-dropdown-menu-item-description]", host: { classAttribute: "bao-dropdown-menu-item-description" }, ngImport: i0 });
4450
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: BaoDropdownMenuItemDescription, decorators: [{
4451
+ type: Directive,
4452
+ args: [{
4453
+ selector: 'bao-dropdown-menu-item-description, [bao-dropdown-menu-item-description]',
4454
+ host: { class: 'bao-dropdown-menu-item-description' }
4455
+ }]
4456
+ }] });
4457
+ /**
4458
+ * Divider to separate sections.
4459
+ */
4460
+ class BaoDropdownMenuDivider {
4461
+ constructor(renderer, elementRef) {
4462
+ this.renderer = renderer;
4463
+ this.elementRef = elementRef;
4464
+ }
4465
+ get nativeElement() {
4466
+ return this.elementRef.nativeElement;
4467
+ }
4468
+ ngAfterContentInit() {
4469
+ this.renderer.setAttribute(this.nativeElement, 'role', 'separator');
4470
+ }
4471
+ }
4472
+ BaoDropdownMenuDivider.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: BaoDropdownMenuDivider, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
4473
+ BaoDropdownMenuDivider.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", type: BaoDropdownMenuDivider, selector: "bao-dropdown-menu-divider, [bao-dropdown-menu-divider]", host: { classAttribute: "bao-dropdown-menu-divider" }, ngImport: i0, template: `<hr />`, isInline: true });
4474
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: BaoDropdownMenuDivider, decorators: [{
4475
+ type: Component,
4476
+ args: [{
4477
+ template: `<hr />`,
4478
+ selector: 'bao-dropdown-menu-divider, [bao-dropdown-menu-divider]',
4479
+ host: { class: 'bao-dropdown-menu-divider' }
4480
+ }]
4481
+ }], ctorParameters: function () { return [{ type: i0.Renderer2 }, { type: i0.ElementRef }]; } });
4482
+
4483
+ /*
4484
+ * Copyright (c) 2022 Ville de Montreal. All rights reserved.
4485
+ * Licensed under the MIT license.
4486
+ * See LICENSE file in the project root for full license information.
4487
+ */
4488
+ const DROPDOWN_MENU_DIRECTIVES = [
4489
+ BaoDropdownMenuComponent,
4490
+ BaoDropdownMenuTrigger,
4491
+ BaoDropdownMenuItem,
4492
+ BaoDropdownMenuSection,
4493
+ BaoDropdownMenuItemLabel,
4494
+ BaoDropdownMenuItemDescription,
4495
+ BaoDropdownMenuDivider
4496
+ ];
4497
+ class BaoDropdownMenuModule {
4498
+ }
4499
+ BaoDropdownMenuModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: BaoDropdownMenuModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
4500
+ BaoDropdownMenuModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.1", ngImport: i0, type: BaoDropdownMenuModule, declarations: [BaoDropdownMenuComponent,
4501
+ BaoDropdownMenuTrigger,
4502
+ BaoDropdownMenuItem,
4503
+ BaoDropdownMenuSection,
4504
+ BaoDropdownMenuItemLabel,
4505
+ BaoDropdownMenuItemDescription,
4506
+ BaoDropdownMenuDivider], imports: [CommonModule, ObserversModule, OverlayModule, PortalModule], exports: [BaoDropdownMenuComponent,
4507
+ BaoDropdownMenuTrigger,
4508
+ BaoDropdownMenuItem,
4509
+ BaoDropdownMenuSection,
4510
+ BaoDropdownMenuItemLabel,
4511
+ BaoDropdownMenuItemDescription,
4512
+ BaoDropdownMenuDivider] });
4513
+ BaoDropdownMenuModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: BaoDropdownMenuModule, imports: [CommonModule, ObserversModule, OverlayModule, PortalModule] });
4514
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: BaoDropdownMenuModule, decorators: [{
4515
+ type: NgModule,
4516
+ args: [{
4517
+ imports: [CommonModule, ObserversModule, OverlayModule, PortalModule],
4518
+ declarations: [DROPDOWN_MENU_DIRECTIVES],
4519
+ exports: [...DROPDOWN_MENU_DIRECTIVES]
4520
+ }]
4521
+ }] });
4522
+
4523
+ /*
4524
+ * Copyright (c) 2022 Ville de Montreal. All rights reserved.
4525
+ * Licensed under the MIT license.
4526
+ * See LICENSE file in the project root for full license information.
4527
+ */
4528
+
3955
4529
  /*
3956
4530
  * Copyright (c) 2022 Ville de Montreal. All rights reserved.
3957
4531
  * Licensed under the MIT license.
@@ -3964,8 +4538,7 @@ BaoModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.
3964
4538
  BaoButtonModule,
3965
4539
  BaoAlertModule,
3966
4540
  BaoCardModule,
3967
- BaoBreadcrumbModule,
3968
- BaoModalModule], exports: [BaoIconModule,
4541
+ BaoBreadcrumbModule], exports: [BaoIconModule,
3969
4542
  BaoButtonModule,
3970
4543
  BaoAlertModule,
3971
4544
  BaoBreadcrumbModule,
@@ -3980,7 +4553,8 @@ BaoModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.
3980
4553
  BaoAvatarModule,
3981
4554
  BaoTabsModule,
3982
4555
  BaoModalModule,
3983
- BaoHyperlinkModule
4556
+ BaoHyperlinkModule,
4557
+ BaoDropdownMenuModule
3984
4558
  // TODO: reactivate once component does not depend on global css BaoBadgeModule,
3985
4559
  // TODO: reactivate once component does not depend on global css BaoSnackBarModule,
3986
4560
  ] });
@@ -3988,8 +4562,7 @@ BaoModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.
3988
4562
  BaoButtonModule,
3989
4563
  BaoAlertModule,
3990
4564
  BaoCardModule,
3991
- BaoBreadcrumbModule,
3992
- BaoModalModule, BaoIconModule,
4565
+ BaoBreadcrumbModule, BaoIconModule,
3993
4566
  BaoButtonModule,
3994
4567
  BaoAlertModule,
3995
4568
  BaoBreadcrumbModule,
@@ -4004,7 +4577,8 @@ BaoModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.
4004
4577
  BaoAvatarModule,
4005
4578
  BaoTabsModule,
4006
4579
  BaoModalModule,
4007
- BaoHyperlinkModule
4580
+ BaoHyperlinkModule,
4581
+ BaoDropdownMenuModule
4008
4582
  // TODO: reactivate once component does not depend on global css BaoBadgeModule,
4009
4583
  // TODO: reactivate once component does not depend on global css BaoSnackBarModule,
4010
4584
  ] });
@@ -4016,8 +4590,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImpor
4016
4590
  BaoButtonModule,
4017
4591
  BaoAlertModule,
4018
4592
  BaoCardModule,
4019
- BaoBreadcrumbModule,
4020
- BaoModalModule
4593
+ BaoBreadcrumbModule
4021
4594
  ],
4022
4595
  exports: [
4023
4596
  BaoIconModule,
@@ -4035,7 +4608,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImpor
4035
4608
  BaoAvatarModule,
4036
4609
  BaoTabsModule,
4037
4610
  BaoModalModule,
4038
- BaoHyperlinkModule
4611
+ BaoHyperlinkModule,
4612
+ BaoDropdownMenuModule
4039
4613
  // TODO: reactivate once component does not depend on global css BaoBadgeModule,
4040
4614
  // TODO: reactivate once component does not depend on global css BaoSnackBarModule,
4041
4615
  ]
@@ -4115,5 +4689,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImpor
4115
4689
  * Generated bundle index. Do not edit.
4116
4690
  */
4117
4691
 
4118
- export { BAO_MODAL_DATA, BAO_RADIO_GROUP, 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, BaoErrorTextComponent, 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, BaoSummaryComponent, BaoSummaryDescription, BaoSummaryModule, BaoTabHeader, BaoTabPanel, BaoTablistComponent, BaoTabsContainer, BaoTabsModule, BaoTagComponent, BaoTagModule, BaoTitleTextComponent, _BaoModalContainerBase, _closeModalVia, eModalDesktopWidthSize, eModalMobileWidthSize, throwBaoModalContentAlreadyAttachedError };
4692
+ export { BAO_MODAL_DATA, BAO_RADIO_GROUP, 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, 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, BaoSummaryComponent, BaoSummaryDescription, BaoSummaryModule, BaoTabHeader, BaoTabPanel, BaoTablistComponent, BaoTabsContainer, BaoTabsModule, BaoTagComponent, BaoTagModule, BaoTitleTextComponent, _BaoModalContainerBase, _closeModalVia, eModalDesktopWidthSize, eModalMobileWidthSize, throwBaoModalContentAlreadyAttachedError };
4119
4693
  //# sourceMappingURL=villedemontreal-angular-ui.mjs.map