Skip to content

Commit 62d3a09

Browse files
authored
Revert "refactor(menu-surface): Allow any type during migration (material-components#5201)" (material-components#5212)
This reverts commit b06c0ef.
1 parent 8e36b3b commit 62d3a09

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

packages/mdc-menu-surface/foundation.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
import {MDCFoundation} from '@material/base/foundation';
2525
import {MDCMenuSurfaceAdapter} from './adapter';
2626
import {Corner, CornerBit, cssClasses, numbers, strings} from './constants';
27-
import {AnyDuringTs36Migration, MDCMenuDimensions, MDCMenuDistance, MDCMenuPoint} from './types';
27+
import {MDCMenuDimensions, MDCMenuDistance, MDCMenuPoint} from './types';
2828

2929
interface AutoLayoutMeasurements {
3030
anchorSize: MDCMenuDimensions;
@@ -435,11 +435,11 @@ export class MDCMenuSurfaceFoundation extends MDCFoundation<MDCMenuSurfaceAdapte
435435
const props = Object.keys(position) as Array<keyof Partial<MDCMenuDistance>>;
436436

437437
for (const prop of props) {
438-
let value = (position as AnyDuringTs36Migration)[prop] || 0;
438+
let value = position[prop] || 0;
439439

440440
// Hoisted surfaces need to have the anchor elements location on the page added to the
441441
// position properties for proper alignment on the body.
442-
value += (viewportDistance as AnyDuringTs36Migration)[prop];
442+
value += viewportDistance[prop];
443443

444444
// Surfaces that are absolutely positioned need to have additional calculations for scroll
445445
// and bottom positioning.
@@ -455,7 +455,7 @@ export class MDCMenuSurfaceFoundation extends MDCFoundation<MDCMenuSurfaceAdapte
455455
}
456456
}
457457

458-
(position as AnyDuringTs36Migration)[prop] = value;
458+
position[prop] = value;
459459
}
460460
}
461461

packages/mdc-menu-surface/types.ts

-3
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,6 @@
2121
* THE SOFTWARE.
2222
*/
2323

24-
// tslint:disable-next-line:no-any
25-
export type AnyDuringTs36Migration = any;
26-
2724
export interface MDCMenuDimensions {
2825
width: number;
2926
height: number;

0 commit comments

Comments
 (0)