source: trip-planner-front/node_modules/@angular/material/dialog/dialog-content-directives.d.ts.map@ 6a3a178

Last change on this file since 6a3a178 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 2.5 KB
Line 
1{"version":3,"file":"dialog-content-directives.d.ts","sources":["dialog-content-directives.d.ts"],"names":[],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;AACA;AACA;AACA;AACA;AACA;;;AACA;AACA;AACA;AACA;AACA;AACA;;;AACA","sourcesContent":["/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\nimport { OnChanges, OnInit, SimpleChanges, ElementRef } from '@angular/core';\nimport { MatDialog } from './dialog';\nimport { MatDialogRef } from './dialog-ref';\n/**\n * Button that will close the current dialog.\n */\nexport declare class MatDialogClose implements OnInit, OnChanges {\n /**\n * Reference to the containing dialog.\n * @deprecated `dialogRef` property to become private.\n * @breaking-change 13.0.0\n */\n dialogRef: MatDialogRef<any>;\n private _elementRef;\n private _dialog;\n /** Screenreader label for the button. */\n ariaLabel: string;\n /** Default to \"button\" to prevents accidental form submits. */\n type: 'submit' | 'button' | 'reset';\n /** Dialog close input. */\n dialogResult: any;\n _matDialogClose: any;\n constructor(\n /**\n * Reference to the containing dialog.\n * @deprecated `dialogRef` property to become private.\n * @breaking-change 13.0.0\n */\n dialogRef: MatDialogRef<any>, _elementRef: ElementRef<HTMLElement>, _dialog: MatDialog);\n ngOnInit(): void;\n ngOnChanges(changes: SimpleChanges): void;\n _onButtonClick(event: MouseEvent): void;\n}\n/**\n * Title of a dialog element. Stays fixed to the top of the dialog when scrolling.\n */\nexport declare class MatDialogTitle implements OnInit {\n private _dialogRef;\n private _elementRef;\n private _dialog;\n /** Unique id for the dialog title. If none is supplied, it will be auto-generated. */\n id: string;\n constructor(_dialogRef: MatDialogRef<any>, _elementRef: ElementRef<HTMLElement>, _dialog: MatDialog);\n ngOnInit(): void;\n}\n/**\n * Scrollable content container of a dialog.\n */\nexport declare class MatDialogContent {\n}\n/**\n * Container for the bottom action buttons in a dialog.\n * Stays fixed to the bottom when scrolling.\n */\nexport declare class MatDialogActions {\n}\n"]}
Note: See TracBrowser for help on using the repository browser.