package.src.vaadin-confirm-dialog.js Maven / Gradle / Ivy
/**
* @license
* Copyright (c) 2018 - 2024 Vaadin Ltd.
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
*/
import '@vaadin/button/src/vaadin-button.js';
import './vaadin-confirm-dialog-overlay.js';
import { html, PolymerElement } from '@polymer/polymer/polymer-element.js';
import { ControllerMixin } from '@vaadin/component-base/src/controller-mixin.js';
import { defineCustomElement } from '@vaadin/component-base/src/define.js';
import { ElementMixin } from '@vaadin/component-base/src/element-mixin.js';
import { ThemePropertyMixin } from '@vaadin/vaadin-themable-mixin/vaadin-theme-property-mixin.js';
import { ConfirmDialogMixin } from './vaadin-confirm-dialog-mixin.js';
/**
* `` is a Web Component for showing alerts and asking for user confirmation.
*
* ```
*
* There are unsaved changes. Do you really want to leave?
*
* ```
*
* ### Styling
*
* The `` is not themable. Apply styles to ``
* component and use its shadow parts for styling.
* See [``](#/elements/vaadin-overlay) for the overlay styling documentation.
*
* In addition to `` parts, the following parts are available for theming:
*
* Part name | Description
* -----------------|-------------------------------------------
* `header` | The header element wrapper
* `message` | The message element wrapper
* `footer` | The footer element that wraps the buttons
* `cancel-button` | The "Cancel" button wrapper
* `confirm-button` | The "Confirm" button wrapper
* `reject-button` | The "Reject" button wrapper
*
* Use `confirmTheme`, `cancelTheme` and `rejectTheme` properties to customize buttons theme.
* Also, the `theme` attribute value set on `` is propagated to the
* `` component.
*
* See [Styling Components](https://vaadin.com/docs/latest/styling/styling-components) documentation.
*
* ### Custom content
*
* The following slots are available for providing custom content:
*
* Slot name | Description
* ------------------|---------------------------
* `header` | Slot for header element
* `cancel-button` | Slot for "Cancel" button
* `confirm-button` | Slot for "Confirm" button
* `reject-button` | Slot for "Reject" button
*
* @fires {Event} confirm - Fired when Confirm button was pressed.
* @fires {Event} cancel - Fired when Cancel button or Escape key was pressed.
* @fires {Event} reject - Fired when Reject button was pressed.
* @fires {CustomEvent} opened-changed - Fired when the `opened` property changes.
*
* @customElement
* @extends HTMLElement
* @mixes ConfirmDialogMixin
* @mixes ControllerMixin
* @mixes ElementMixin
* @mixes ThemePropertyMixin
*/
class ConfirmDialog extends ConfirmDialogMixin(ElementMixin(ThemePropertyMixin(ControllerMixin(PolymerElement)))) {
static get template() {
return html`
`;
}
static get is() {
return 'vaadin-confirm-dialog';
}
/** @protected */
ready() {
super.ready();
this._overlayElement = this.$.dialog.$.overlay;
this._initOverlay(this._overlayElement);
}
/**
* @event confirm
* fired when Confirm button was pressed.
*/
/**
* @event cancel
* fired when Cancel button or Escape key was pressed.
*/
/**
* @event reject
* fired when Reject button was pressed.
*/
}
defineCustomElement(ConfirmDialog);
export { ConfirmDialog };