File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed
tools/public_api_guard/material Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change 6
6
* found in the LICENSE file at https://angular.io/license
7
7
*/
8
8
9
- export { MatMenu , _MatMenuBase , MAT_MENU_DEFAULT_OPTIONS , MatMenuDefaultOptions } from './menu' ;
9
+ export {
10
+ MatMenu ,
11
+ _MatMenuBase ,
12
+ MAT_MENU_DEFAULT_OPTIONS ,
13
+ MatMenuDefaultOptions ,
14
+ MenuCloseReason ,
15
+ } from './menu' ;
10
16
export * from './menu-item' ;
11
17
export * from './menu-content' ;
12
18
export {
Original file line number Diff line number Diff line change @@ -326,6 +326,9 @@ export abstract class _MatMenuTriggerBase implements AfterContentInit, OnDestroy
326
326
// @public @deprecated
327
327
export const MENU_PANEL_TOP_PADDING = 8 ;
328
328
329
+ // @public
330
+ export type MenuCloseReason = void | ' click' | ' keydown' | ' tab' ;
331
+
329
332
// @public
330
333
export type MenuPositionX = ' before' | ' after' ;
331
334
You can’t perform that action at this time.
0 commit comments