material-web/dialog/dialog.ts
Material Web Team 8eb07e24ec feat(dialog) Adds Dialog element.
PiperOrigin-RevId: 506340956
2023-02-01 09:37:05 -08:00

46 lines
1.4 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 2023 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import {customElement} from 'lit/decorators.js';
import {Dialog} from './lib/dialog.js';
import {styles} from './lib/dialog-styles.css.js';
declare global {
interface HTMLElementTagNameMap {
'md-dialog': MdDialog;
}
}
/**
* @summary Dialogs can require an action, communicate information, or help
* users accomplish a task. There are two types of dialogs: basic and
* full-screen.
*
* @description
* A dialog is a modal window that appears in front of app content to provide
* critical information or ask for a decision. Dialogs disable all app
* functionality when they appear, and remain on screen until confirmed,
* dismissed, or a required action has been taken.
*
* Dialogs are purposefully interruptive, so they should be used sparingly.
* A less disruptive alternative is to use a menu, which provides options
* without interrupting a users experience.
*
* On mobile devices only, complex dialogs should be displayed fullscreen.
*
* __Example usages:__
* - Common use cases for basic dialogs include alerts, quick selection, and
* confirmation.
* - More complex dialogs may contain actions that require a series of tasks
* to complete. One example is creating a calendar entry with the event title,
* date, location, and time.
*/
@customElement('md-dialog')
export class MdDialog extends Dialog {
static override styles = [styles];
}