UNPKG

@angular/material

Version:
345 lines (340 loc) 20.5 kB
/** * @license * Copyright Google Inc. 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.io/license */ import { ChangeDetectionStrategy, Component, Directive, ElementRef, Inject, NgModule, Optional, Renderer2, Self, ViewEncapsulation, forwardRef } from '@angular/core'; import { CommonModule } from '@angular/common'; import { MatCommonModule, MatRippleModule, mixinColor, mixinDisableRipple, mixinDisabled } from '@angular/material/core'; import { A11yModule, FocusMonitor } from '@angular/cdk/a11y'; import { __extends } from 'tslib'; import * as tslib_1 from 'tslib'; import { Platform } from '@angular/cdk/platform'; /** * Default color palette for round buttons (mat-fab and mat-mini-fab) */ var DEFAULT_ROUND_BUTTON_COLOR = 'accent'; /** * Directive whose purpose is to add the mat- CSS styling to this selector. * \@docs-private */ var MatButtonCssMatStyler = (function () { function MatButtonCssMatStyler() { } MatButtonCssMatStyler.decorators = [ { type: Directive, args: [{ selector: 'button[mat-button], a[mat-button]', host: { 'class': 'mat-button' } },] }, ]; /** * @nocollapse */ MatButtonCssMatStyler.ctorParameters = function () { return []; }; return MatButtonCssMatStyler; }()); /** * Directive whose purpose is to add the mat- CSS styling to this selector. * \@docs-private */ var MatRaisedButtonCssMatStyler = (function () { function MatRaisedButtonCssMatStyler() { } MatRaisedButtonCssMatStyler.decorators = [ { type: Directive, args: [{ selector: 'button[mat-raised-button], a[mat-raised-button]', host: { 'class': 'mat-raised-button' } },] }, ]; /** * @nocollapse */ MatRaisedButtonCssMatStyler.ctorParameters = function () { return []; }; return MatRaisedButtonCssMatStyler; }()); /** * Directive whose purpose is to add the mat- CSS styling to this selector. * \@docs-private */ var MatIconButtonCssMatStyler = (function () { function MatIconButtonCssMatStyler() { } MatIconButtonCssMatStyler.decorators = [ { type: Directive, args: [{ selector: 'button[mat-icon-button], a[mat-icon-button]', host: { 'class': 'mat-icon-button' } },] }, ]; /** * @nocollapse */ MatIconButtonCssMatStyler.ctorParameters = function () { return []; }; return MatIconButtonCssMatStyler; }()); /** * Directive whose purpose is to add the mat- CSS styling to this selector. * \@docs-private */ var MatFab = (function () { /** * @param {?} button * @param {?} anchor */ function MatFab(button, anchor) { // Set the default color palette for the mat-fab components. (button || anchor).color = DEFAULT_ROUND_BUTTON_COLOR; } MatFab.decorators = [ { type: Directive, args: [{ selector: 'button[mat-fab], a[mat-fab]', host: { 'class': 'mat-fab' } },] }, ]; /** * @nocollapse */ MatFab.ctorParameters = function () { return [ { type: MatButton, decorators: [{ type: Self }, { type: Optional }, { type: Inject, args: [forwardRef(function () { return MatButton; }),] },] }, { type: MatAnchor, decorators: [{ type: Self }, { type: Optional }, { type: Inject, args: [forwardRef(function () { return MatAnchor; }),] },] }, ]; }; return MatFab; }()); /** * Directive that targets mini-fab buttons and anchors. It's used to apply the `mat-` class * to all mini-fab buttons and also is responsible for setting the default color palette. * \@docs-private */ var MatMiniFab = (function () { /** * @param {?} button * @param {?} anchor */ function MatMiniFab(button, anchor) { // Set the default color palette for the mat-mini-fab components. (button || anchor).color = DEFAULT_ROUND_BUTTON_COLOR; } MatMiniFab.decorators = [ { type: Directive, args: [{ selector: 'button[mat-mini-fab], a[mat-mini-fab]', host: { 'class': 'mat-mini-fab' } },] }, ]; /** * @nocollapse */ MatMiniFab.ctorParameters = function () { return [ { type: MatButton, decorators: [{ type: Self }, { type: Optional }, { type: Inject, args: [forwardRef(function () { return MatButton; }),] },] }, { type: MatAnchor, decorators: [{ type: Self }, { type: Optional }, { type: Inject, args: [forwardRef(function () { return MatAnchor; }),] },] }, ]; }; return MatMiniFab; }()); /** * \@docs-private */ var MatButtonBase = (function () { /** * @param {?} _renderer * @param {?} _elementRef */ function MatButtonBase(_renderer, _elementRef) { this._renderer = _renderer; this._elementRef = _elementRef; } return MatButtonBase; }()); var _MatButtonMixinBase = mixinColor(mixinDisabled(mixinDisableRipple(MatButtonBase))); /** * Material design button. */ var MatButton = (function (_super) { __extends(MatButton, _super); /** * @param {?} renderer * @param {?} elementRef * @param {?} _platform * @param {?} _focusMonitor */ function MatButton(renderer, elementRef, _platform, _focusMonitor) { var _this = _super.call(this, renderer, elementRef) || this; _this._platform = _platform; _this._focusMonitor = _focusMonitor; /** * Whether the button is round. */ _this._isRoundButton = _this._hasAttributeWithPrefix('fab', 'mini-fab'); /** * Whether the button is icon button. */ _this._isIconButton = _this._hasAttributeWithPrefix('icon-button'); _this._focusMonitor.monitor(_this._elementRef.nativeElement, _this._renderer, true); return _this; } /** * @return {?} */ MatButton.prototype.ngOnDestroy = function () { this._focusMonitor.stopMonitoring(this._elementRef.nativeElement); }; /** * Focuses the button. * @return {?} */ MatButton.prototype.focus = function () { this._getHostElement().focus(); }; /** * @return {?} */ MatButton.prototype._getHostElement = function () { return this._elementRef.nativeElement; }; /** * @return {?} */ MatButton.prototype._isRippleDisabled = function () { return this.disableRipple || this.disabled; }; /** * Gets whether the button has one of the given attributes with a 'mat-' prefix. * @param {...?} unprefixedAttributeNames * @return {?} */ MatButton.prototype._hasAttributeWithPrefix = function () { var _this = this; var unprefixedAttributeNames = []; for (var _i = 0; _i < arguments.length; _i++) { unprefixedAttributeNames[_i] = arguments[_i]; } // If not on the browser, say that there are none of the attributes present. // Since these only affect how the ripple displays (and ripples only happen on the client), // detecting these attributes isn't necessary when not on the browser. if (!this._platform.isBrowser) { return false; } return unprefixedAttributeNames.some(function (suffix) { return _this._getHostElement().hasAttribute('mat-' + suffix); }); }; MatButton.decorators = [ { type: Component, args: [{selector: "button[mat-button], button[mat-raised-button], button[mat-icon-button],\n button[mat-fab], button[mat-mini-fab]", exportAs: 'matButton', host: { '[disabled]': 'disabled || null', }, template: "<span class=\"mat-button-wrapper\"><ng-content></ng-content></span><div matRipple class=\"mat-button-ripple\" [class.mat-button-ripple-round]=\"_isRoundButton || _isIconButton\" [matRippleDisabled]=\"_isRippleDisabled()\" [matRippleCentered]=\"_isIconButton\" [matRippleTrigger]=\"_getHostElement()\"></div><div class=\"mat-button-focus-overlay\"></div>", styles: [".mat-button,.mat-fab,.mat-icon-button,.mat-mini-fab,.mat-raised-button{box-sizing:border-box;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;outline:0;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:88px;line-height:36px;padding:0 16px;border-radius:2px}[disabled].mat-button,[disabled].mat-fab,[disabled].mat-icon-button,[disabled].mat-mini-fab,[disabled].mat-raised-button{cursor:default}.cdk-keyboard-focused.mat-button .mat-button-focus-overlay,.cdk-keyboard-focused.mat-fab .mat-button-focus-overlay,.cdk-keyboard-focused.mat-icon-button .mat-button-focus-overlay,.cdk-keyboard-focused.mat-mini-fab .mat-button-focus-overlay,.cdk-keyboard-focused.mat-raised-button .mat-button-focus-overlay{opacity:1}.mat-button::-moz-focus-inner,.mat-fab::-moz-focus-inner,.mat-icon-button::-moz-focus-inner,.mat-mini-fab::-moz-focus-inner,.mat-raised-button::-moz-focus-inner{border:0}.mat-fab,.mat-mini-fab,.mat-raised-button{transform:translate3d(0,0,0);transition:background .4s cubic-bezier(.25,.8,.25,1),box-shadow 280ms cubic-bezier(.4,0,.2,1)}.mat-fab:not([class*=mat-elevation-z]),.mat-mini-fab:not([class*=mat-elevation-z]),.mat-raised-button:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.mat-fab:not([disabled]):active:not([class*=mat-elevation-z]),.mat-mini-fab:not([disabled]):active:not([class*=mat-elevation-z]),.mat-raised-button:not([disabled]):active:not([class*=mat-elevation-z]){box-shadow:0 5px 5px -3px rgba(0,0,0,.2),0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12)}[disabled].mat-fab,[disabled].mat-mini-fab,[disabled].mat-raised-button{box-shadow:none}.mat-button .mat-button-focus-overlay,.mat-icon-button .mat-button-focus-overlay{transition:none;opacity:0}.mat-button:hover .mat-button-focus-overlay{opacity:1}.mat-fab{min-width:0;border-radius:50%;width:56px;height:56px;padding:0;flex-shrink:0}.mat-fab:not([class*=mat-elevation-z]){box-shadow:0 3px 5px -1px rgba(0,0,0,.2),0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12)}.mat-fab:not([disabled]):active:not([class*=mat-elevation-z]){box-shadow:0 7px 8px -4px rgba(0,0,0,.2),0 12px 17px 2px rgba(0,0,0,.14),0 5px 22px 4px rgba(0,0,0,.12)}.mat-fab .mat-button-wrapper{padding:16px 0;display:inline-block;line-height:24px}.mat-mini-fab{min-width:0;border-radius:50%;width:40px;height:40px;padding:0;flex-shrink:0}.mat-mini-fab:not([class*=mat-elevation-z]){box-shadow:0 3px 5px -1px rgba(0,0,0,.2),0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12)}.mat-mini-fab:not([disabled]):active:not([class*=mat-elevation-z]){box-shadow:0 7px 8px -4px rgba(0,0,0,.2),0 12px 17px 2px rgba(0,0,0,.14),0 5px 22px 4px rgba(0,0,0,.12)}.mat-mini-fab .mat-button-wrapper{padding:8px 0;display:inline-block;line-height:24px}.mat-icon-button{padding:0;min-width:0;width:40px;height:40px;flex-shrink:0;line-height:40px;border-radius:50%}.mat-icon-button .mat-icon,.mat-icon-button i{line-height:24px}.mat-button,.mat-icon-button,.mat-raised-button{color:currentColor}.mat-button .mat-button-wrapper>*,.mat-icon-button .mat-button-wrapper>*,.mat-raised-button .mat-button-wrapper>*{vertical-align:middle}.mat-button-focus-overlay,.mat-button-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none}.mat-button-focus-overlay{background-color:rgba(0,0,0,.12);border-radius:inherit;opacity:0;transition:opacity .2s cubic-bezier(.35,0,.25,1),background-color .2s cubic-bezier(.35,0,.25,1)}@media screen and (-ms-high-contrast:active){.mat-button-focus-overlay{background-color:rgba(255,255,255,.5)}}.mat-button-ripple-round{border-radius:50%;z-index:1}@media screen and (-ms-high-contrast:active){.mat-button,.mat-fab,.mat-icon-button,.mat-mini-fab,.mat-raised-button{outline:solid 1px}}"], inputs: ['disabled', 'disableRipple', 'color'], encapsulation: ViewEncapsulation.None, preserveWhitespaces: false, changeDetection: ChangeDetectionStrategy.OnPush, },] }, ]; /** * @nocollapse */ MatButton.ctorParameters = function () { return [ { type: Renderer2, }, { type: ElementRef, }, { type: Platform, }, { type: FocusMonitor, }, ]; }; return MatButton; }(_MatButtonMixinBase)); /** * Raised Material design button. */ var MatAnchor = (function (_super) { __extends(MatAnchor, _super); /** * @param {?} platform * @param {?} focusMonitor * @param {?} elementRef * @param {?} renderer */ function MatAnchor(platform, focusMonitor, elementRef, renderer) { return _super.call(this, renderer, elementRef, platform, focusMonitor) || this; } /** * @param {?} event * @return {?} */ MatAnchor.prototype._haltDisabledEvents = function (event) { // A disabled button shouldn't apply any actions if (this.disabled) { event.preventDefault(); event.stopImmediatePropagation(); } }; MatAnchor.decorators = [ { type: Component, args: [{selector: "a[mat-button], a[mat-raised-button], a[mat-icon-button], a[mat-fab], a[mat-mini-fab]", exportAs: 'matButton, matAnchor', host: { '[attr.tabindex]': 'disabled ? -1 : 0', '[attr.disabled]': 'disabled || null', '[attr.aria-disabled]': 'disabled.toString()', '(click)': '_haltDisabledEvents($event)', }, inputs: ['disabled', 'disableRipple', 'color'], template: "<span class=\"mat-button-wrapper\"><ng-content></ng-content></span><div matRipple class=\"mat-button-ripple\" [class.mat-button-ripple-round]=\"_isRoundButton || _isIconButton\" [matRippleDisabled]=\"_isRippleDisabled()\" [matRippleCentered]=\"_isIconButton\" [matRippleTrigger]=\"_getHostElement()\"></div><div class=\"mat-button-focus-overlay\"></div>", styles: [".mat-button,.mat-fab,.mat-icon-button,.mat-mini-fab,.mat-raised-button{box-sizing:border-box;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;outline:0;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:88px;line-height:36px;padding:0 16px;border-radius:2px}[disabled].mat-button,[disabled].mat-fab,[disabled].mat-icon-button,[disabled].mat-mini-fab,[disabled].mat-raised-button{cursor:default}.cdk-keyboard-focused.mat-button .mat-button-focus-overlay,.cdk-keyboard-focused.mat-fab .mat-button-focus-overlay,.cdk-keyboard-focused.mat-icon-button .mat-button-focus-overlay,.cdk-keyboard-focused.mat-mini-fab .mat-button-focus-overlay,.cdk-keyboard-focused.mat-raised-button .mat-button-focus-overlay{opacity:1}.mat-button::-moz-focus-inner,.mat-fab::-moz-focus-inner,.mat-icon-button::-moz-focus-inner,.mat-mini-fab::-moz-focus-inner,.mat-raised-button::-moz-focus-inner{border:0}.mat-fab,.mat-mini-fab,.mat-raised-button{transform:translate3d(0,0,0);transition:background .4s cubic-bezier(.25,.8,.25,1),box-shadow 280ms cubic-bezier(.4,0,.2,1)}.mat-fab:not([class*=mat-elevation-z]),.mat-mini-fab:not([class*=mat-elevation-z]),.mat-raised-button:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.mat-fab:not([disabled]):active:not([class*=mat-elevation-z]),.mat-mini-fab:not([disabled]):active:not([class*=mat-elevation-z]),.mat-raised-button:not([disabled]):active:not([class*=mat-elevation-z]){box-shadow:0 5px 5px -3px rgba(0,0,0,.2),0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12)}[disabled].mat-fab,[disabled].mat-mini-fab,[disabled].mat-raised-button{box-shadow:none}.mat-button .mat-button-focus-overlay,.mat-icon-button .mat-button-focus-overlay{transition:none;opacity:0}.mat-button:hover .mat-button-focus-overlay{opacity:1}.mat-fab{min-width:0;border-radius:50%;width:56px;height:56px;padding:0;flex-shrink:0}.mat-fab:not([class*=mat-elevation-z]){box-shadow:0 3px 5px -1px rgba(0,0,0,.2),0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12)}.mat-fab:not([disabled]):active:not([class*=mat-elevation-z]){box-shadow:0 7px 8px -4px rgba(0,0,0,.2),0 12px 17px 2px rgba(0,0,0,.14),0 5px 22px 4px rgba(0,0,0,.12)}.mat-fab .mat-button-wrapper{padding:16px 0;display:inline-block;line-height:24px}.mat-mini-fab{min-width:0;border-radius:50%;width:40px;height:40px;padding:0;flex-shrink:0}.mat-mini-fab:not([class*=mat-elevation-z]){box-shadow:0 3px 5px -1px rgba(0,0,0,.2),0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12)}.mat-mini-fab:not([disabled]):active:not([class*=mat-elevation-z]){box-shadow:0 7px 8px -4px rgba(0,0,0,.2),0 12px 17px 2px rgba(0,0,0,.14),0 5px 22px 4px rgba(0,0,0,.12)}.mat-mini-fab .mat-button-wrapper{padding:8px 0;display:inline-block;line-height:24px}.mat-icon-button{padding:0;min-width:0;width:40px;height:40px;flex-shrink:0;line-height:40px;border-radius:50%}.mat-icon-button .mat-icon,.mat-icon-button i{line-height:24px}.mat-button,.mat-icon-button,.mat-raised-button{color:currentColor}.mat-button .mat-button-wrapper>*,.mat-icon-button .mat-button-wrapper>*,.mat-raised-button .mat-button-wrapper>*{vertical-align:middle}.mat-button-focus-overlay,.mat-button-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none}.mat-button-focus-overlay{background-color:rgba(0,0,0,.12);border-radius:inherit;opacity:0;transition:opacity .2s cubic-bezier(.35,0,.25,1),background-color .2s cubic-bezier(.35,0,.25,1)}@media screen and (-ms-high-contrast:active){.mat-button-focus-overlay{background-color:rgba(255,255,255,.5)}}.mat-button-ripple-round{border-radius:50%;z-index:1}@media screen and (-ms-high-contrast:active){.mat-button,.mat-fab,.mat-icon-button,.mat-mini-fab,.mat-raised-button{outline:solid 1px}}"], encapsulation: ViewEncapsulation.None, preserveWhitespaces: false, changeDetection: ChangeDetectionStrategy.OnPush, },] }, ]; /** * @nocollapse */ MatAnchor.ctorParameters = function () { return [ { type: Platform, }, { type: FocusMonitor, }, { type: ElementRef, }, { type: Renderer2, }, ]; }; return MatAnchor; }(MatButton)); var MatButtonModule = (function () { function MatButtonModule() { } MatButtonModule.decorators = [ { type: NgModule, args: [{ imports: [ CommonModule, MatRippleModule, MatCommonModule, A11yModule, ], exports: [ MatButton, MatAnchor, MatMiniFab, MatFab, MatCommonModule, MatButtonCssMatStyler, MatRaisedButtonCssMatStyler, MatIconButtonCssMatStyler, ], declarations: [ MatButton, MatAnchor, MatMiniFab, MatFab, MatButtonCssMatStyler, MatRaisedButtonCssMatStyler, MatIconButtonCssMatStyler, ], },] }, ]; /** * @nocollapse */ MatButtonModule.ctorParameters = function () { return []; }; return MatButtonModule; }()); /** * Generated bundle index. Do not edit. */ export { MatButtonModule, MatButtonCssMatStyler, MatRaisedButtonCssMatStyler, MatIconButtonCssMatStyler, MatFab, MatMiniFab, MatButtonBase, _MatButtonMixinBase, MatButton, MatAnchor }; //# sourceMappingURL=button.es5.js.map