material-web/button/tonal-link-button.ts
Material Web Team 74bda6e11c Document md-button
PiperOrigin-RevId: 495160072
2022-12-13 16:45:36 -08:00

45 lines
1.3 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* @license
* Copyright 2021 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import {customElement} from 'lit/decorators.js';
import {styles as sharedElevationStyles} from './lib/shared-elevation-styles.css.js';
import {styles as sharedStyles} from './lib/shared-styles.css.js';
import {TonalLinkButton} from './lib/tonal-link-button.js';
import {styles as tonalStyles} from './lib/tonal-styles.css.js';
declare global {
interface HTMLElementTagNameMap {
'md-tonal-link-button': MdTonalLinkButton;
}
}
/**
* @summary Buttons help people take action, such as sending an email, sharing a
* document, or liking a comment. This is a linkable variant.
*
* @description
* __Emphasis:__ Medium emphasis For important actions that dont distract
* from other onscreen elements.
*
* __Rationale:__ Filled tonal buttons have a lighter background color and
* darker label color, making them less visually prominent than a regular,
* filled button. Theyre still used for final or unblocking actions in a flow,
* but do so with less emphasis.
*
* __Example usages:__
* - Save
* - Confirm
* - Done
*
* @final
* @suppress {visibility}
*/
@customElement('md-tonal-link-button')
export class MdTonalLinkButton extends TonalLinkButton {
static override styles = [sharedStyles, sharedElevationStyles, tonalStyles];
}