@tetacom/ng-components 1.0.115 → 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/esm2020/component/table/table/table.component.mjs +2 -1
- package/fesm2015/tetacom-ng-components.mjs +3 -2
- package/fesm2015/tetacom-ng-components.mjs.map +1 -1
- package/fesm2020/tetacom-ng-components.mjs +3 -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;
|
|
@@ -10372,6 +10372,7 @@ class TableComponent {
|
|
|
10372
10372
|
this.contextMenuOpenChange.emit(this.contextMenuOpen);
|
|
10373
10373
|
}
|
|
10374
10374
|
setContextMenuRow(event) {
|
|
10375
|
+
this.contextMenuRow = null;
|
|
10375
10376
|
const rowElement = this._svc.getEventRow(event);
|
|
10376
10377
|
if (rowElement) {
|
|
10377
10378
|
const rowIndex = parseInt(rowElement.getAttribute('data-row'), 10);
|