40 lines
1.2 KiB
TypeScript
40 lines
1.2 KiB
TypeScript
|
|
/**
|
||
|
|
* @license
|
||
|
|
* Copyright Google LLC All Rights Reserved.
|
||
|
|
*
|
||
|
|
* Use of this source code is governed by an MIT-style license that can be
|
||
|
|
* found in the LICENSE file at https://angular.dev/license
|
||
|
|
*/
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Throws an exception for the case when menu's x-position value isn't valid.
|
||
|
|
* In other words, it doesn't match 'before' or 'after'.
|
||
|
|
* @docs-private
|
||
|
|
*/
|
||
|
|
export function throwMatMenuInvalidPositionX() {
|
||
|
|
throw Error(`xPosition value must be either 'before' or after'.
|
||
|
|
Example: <mat-menu xPosition="before" #menu="matMenu"></mat-menu>`);
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Throws an exception for the case when menu's y-position value isn't valid.
|
||
|
|
* In other words, it doesn't match 'above' or 'below'.
|
||
|
|
* @docs-private
|
||
|
|
*/
|
||
|
|
export function throwMatMenuInvalidPositionY() {
|
||
|
|
throw Error(`yPosition value must be either 'above' or below'.
|
||
|
|
Example: <mat-menu yPosition="above" #menu="matMenu"></mat-menu>`);
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Throws an exception for the case when a menu is assigned
|
||
|
|
* to a trigger that is placed inside the same menu.
|
||
|
|
* @docs-private
|
||
|
|
*/
|
||
|
|
export function throwMatMenuRecursiveError() {
|
||
|
|
throw Error(
|
||
|
|
`matMenuTriggerFor: menu cannot contain its own trigger. Assign a menu that is ` +
|
||
|
|
`not a parent of the trigger or move the trigger outside of the menu.`,
|
||
|
|
);
|
||
|
|
}
|