@tetacom/ng-components 1.0.116 → 1.0.117
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/assets/icons.svg +32 -0
- package/esm2020/common/util/position-util.mjs +3 -3
- package/fesm2015/tetacom-ng-components.mjs +2 -2
- package/fesm2015/tetacom-ng-components.mjs.map +1 -1
- package/fesm2020/tetacom-ng-components.mjs +2 -2
- package/fesm2020/tetacom-ng-components.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -1150,10 +1150,10 @@ class PositionUtil {
|
|
|
1150
1150
|
if (rect.top < 0) {
|
|
1151
1151
|
rect.top = 0;
|
|
1152
1152
|
}
|
|
1153
|
-
if (verticalAlign === VerticalAlign.bottom || verticalAlign === VerticalAlign.center) {
|
|
1153
|
+
if (verticalAlign === VerticalAlign.bottom || verticalAlign === VerticalAlign.center || verticalAlign === VerticalAlign.innerBottom) {
|
|
1154
1154
|
rect.maxHeight = window.innerHeight - rect.top;
|
|
1155
1155
|
}
|
|
1156
|
-
if (verticalAlign === VerticalAlign.top) {
|
|
1156
|
+
if (verticalAlign === VerticalAlign.top || verticalAlign === VerticalAlign.innerTop) {
|
|
1157
1157
|
rect.maxHeight = containerPosition.top;
|
|
1158
1158
|
}
|
|
1159
1159
|
rect.left = rect.left - transformedParentRect.left;
|