source: trip-planner-front/node_modules/@angular/material/button/button.d.ts.map@ 8d391a1

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

initial commit

  • Property mode set to 100644
File size: 2.9 KB
Line 
1{"version":3,"file":"button.d.ts","sources":["button.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","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 { FocusMonitor, FocusableOption, FocusOrigin } from '@angular/cdk/a11y';\nimport { BooleanInput } from '@angular/cdk/coercion';\nimport { ElementRef, OnDestroy, AfterViewInit } from '@angular/core';\nimport { CanColor, CanDisable, CanDisableRipple, MatRipple } from '@angular/material/core';\ndeclare const _MatButtonBase: import(\"@angular/material/core/common-behaviors/constructor\").Constructor<CanColor> & import(\"@angular/material/core/common-behaviors/constructor\").AbstractConstructor<CanColor> & import(\"@angular/material/core/common-behaviors/constructor\").Constructor<CanDisable> & import(\"@angular/material/core/common-behaviors/constructor\").AbstractConstructor<CanDisable> & import(\"@angular/material/core/common-behaviors/constructor\").Constructor<CanDisableRipple> & import(\"@angular/material/core/common-behaviors/constructor\").AbstractConstructor<CanDisableRipple> & {\n new (_elementRef: ElementRef): {\n _elementRef: ElementRef;\n };\n};\n/**\n * Material design button.\n */\nexport declare class MatButton extends _MatButtonBase implements AfterViewInit, OnDestroy, CanDisable, CanColor, CanDisableRipple, FocusableOption {\n private _focusMonitor;\n _animationMode: string;\n /** Whether the button is round. */\n readonly isRoundButton: boolean;\n /** Whether the button is icon button. */\n readonly isIconButton: boolean;\n /** Reference to the MatRipple instance of the button. */\n ripple: MatRipple;\n constructor(elementRef: ElementRef, _focusMonitor: FocusMonitor, _animationMode: string);\n ngAfterViewInit(): void;\n ngOnDestroy(): void;\n /** Focuses the button. */\n focus(origin?: FocusOrigin, options?: FocusOptions): void;\n _getHostElement(): any;\n _isRippleDisabled(): boolean;\n /** Gets whether the button has one of the given attributes. */\n _hasHostAttributes(...attributes: string[]): boolean;\n static ngAcceptInputType_disabled: BooleanInput;\n static ngAcceptInputType_disableRipple: BooleanInput;\n}\n/**\n * Material design anchor button.\n */\nexport declare class MatAnchor extends MatButton {\n /** Tabindex of the button. */\n tabIndex: number;\n constructor(focusMonitor: FocusMonitor, elementRef: ElementRef, animationMode: string);\n _haltDisabledEvents(event: Event): void;\n}\nexport {};\n"]}
Note: See TracBrowser for help on using the repository browser.