/**
* @license
* Copyright 2023 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import { __decorate } from "tslib";
import { customElement } from 'lit/decorators.js';
import { Dialog } from './internal/dialog.js';
import { styles } from './internal/dialog-styles.js';
/**
* @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 user’s 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.
*
* @final
* @suppress {visibility}
*/
export let MdDialog = class MdDialog extends Dialog {
};
MdDialog.styles = [styles];
MdDialog = __decorate([
customElement('md-dialog')
], MdDialog);
//# sourceMappingURL=dialog.js.map