@villedemontreal/angular-ui 15.1.0 → 15.1.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/dropdown-menu/dropdown-menu.component.mjs +10 -3
- package/fesm2015/villedemontreal-angular-ui.mjs +9 -2
- package/fesm2015/villedemontreal-angular-ui.mjs.map +1 -1
- package/fesm2020/villedemontreal-angular-ui.mjs +9 -2
- package/fesm2020/villedemontreal-angular-ui.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -4299,11 +4299,18 @@ class BaoDropdownMenuTrigger {
|
|
|
4299
4299
|
overlayY: 'bottom'
|
|
4300
4300
|
},
|
|
4301
4301
|
{
|
|
4302
|
-
// top-right of the overlay is connected to bottom-
|
|
4303
|
-
originX: '
|
|
4302
|
+
// top-right of the overlay is connected to bottom-right of the origin;
|
|
4303
|
+
originX: 'end',
|
|
4304
4304
|
originY: 'bottom',
|
|
4305
4305
|
overlayX: 'end',
|
|
4306
4306
|
overlayY: 'top'
|
|
4307
|
+
},
|
|
4308
|
+
{
|
|
4309
|
+
// bottom-right of the overlay is connected to top-right of the origin;
|
|
4310
|
+
originX: 'end',
|
|
4311
|
+
originY: 'top',
|
|
4312
|
+
overlayX: 'end',
|
|
4313
|
+
overlayY: 'bottom'
|
|
4307
4314
|
}
|
|
4308
4315
|
]),
|
|
4309
4316
|
backdropClass: 'bao-overlay-transparent-backdrop',
|