import { ElementRef, EventEmitter, OnDestroy, OnInit, AfterContentInit } from '@angular/core';
import { Subject } from 'rxjs';
import { IgxNavigationService, IToggleView } from '../core/navigation';
import { IgxToggleDirective } from '../directives/toggle/toggle.directive';
import { OverlaySettings, PositionSettings } from '../services';
import { IBaseEventArgs } from '../core/utils';
/**
* **Ignite UI for Angular Dialog Window** -
* [Documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/dialog.html)
*
* The Ignite UI Dialog Window presents a dialog window to the user which can simply display messages or display
* more complicated visuals such as a user sign-in form. It also provides a right and left button
* which can be used for custom actions.
*
* Example:
* ```html
*
*
*
*
*
*
*
*
*
*
*
* ```
*/
export declare class IgxDialogComponent implements IToggleView, OnInit, OnDestroy, AfterContentInit {
private elementRef;
private navService;
private static NEXT_ID;
private static readonly DIALOG_CLASS;
toggleRef: IgxToggleDirective;
/**
* An @Input property that sets the value of the `id` attribute. If not provided it will be automatically generated.
*```html
*
*```
*/
id: string;
isModal: boolean;
/**
* An @Input property controlling the `title` of the dialog.
*```html
*
*```
*/
title: string;
/**
* An @Input property controlling the `message` of the dialog.
*```html
*
*```
*/
message: string;
/**
* An @Input property to set the `label` of the left button of the dialog.
*```html
*
*```
*/
leftButtonLabel: string;
/**
* An @Input property to set the left button `type`. The types are `flat`, `raised` and `fab`.
* The `flat` type button is a rectangle and doesn't have a shadow.
* The `raised` type button is also a rectangle but has a shadow.
* The `fab` type button is a circle with a shadow.
* The default value is `flat`.
*```html
*
*```
*/
leftButtonType: string;
/**
* An @Input property to set the left button color. The property accepts all valid CSS color property values.
*```html
*
*```
*/
leftButtonColor: string;
/**
* An @Input property to set the left button `background-color`. The property accepts all valid CSS color property values.
*```html
*
*```
*/
leftButtonBackgroundColor: string;
/**
* An @Input property to set the left button `ripple`. The `ripple` animates a click/tap to a component as a series of fading waves.
* The property accepts all valid CSS color property values.
*```html
*
*```
*/
leftButtonRipple: string;
/**
* An @Input property to set the `label` of the right button of the dialog.
*```html
*
*```
*/
rightButtonLabel: string;
/**
* An @Input property to set the right button `type`. The types are `flat`, `raised` and `fab`.
* The `flat` type button is a rectangle and doesn't have a shadow.
* The `raised` type button is also a rectangle but has a shadow.
* The `fab` type button is a circle with a shadow.
* The default value is `flat`.
*```html
*
*```
*/
rightButtonType: string;
/**
* An @Input property to set the right button `color`. The property accepts all valid CSS color property values.
*```html
*
*```
*/
rightButtonColor: string;
/**
* An @Input property to set the right button `background-color`. The property accepts all valid CSS color property values.
*```html
*
*```
*/
rightButtonBackgroundColor: string;
/**
* An @Input property to set the right button `ripple`.
*```html
*
*```
*/
rightButtonRipple: string;
/**
* An @Input property that allows you to enable the "close on click outside the dialog". By default it's disabled.
*```html
*
*
*```
*/
closeOnOutsideSelect: boolean;
/**
* Get the position and animation settings used by the dialog.
* ```typescript
* @ViewChild('alert', { static: true }) public alert: IgxDialogComponent;
* let currentPosition: PositionSettings = this.alert.positionSettings
* ```
*/
/**
* Set the position and animation settings used by the dialog.
* ```typescript
* import { slideInLeft, slideOutRight } from 'igniteui-angular';
* ...
* @ViewChild('alert', { static: true }) public alert: IgxDialogComponent;
* public newPositionSettings: PositionSettings = {
* openAnimation: useAnimation(slideInTop, { params: { duration: '2000ms' } }),
* closeAnimation: useAnimation(slideOutBottom, { params: { duration: '2000ms'} }),
* horizontalDirection: HorizontalAlignment.Left,
* verticalDirection: VerticalAlignment.Middle,
* horizontalStartPoint: HorizontalAlignment.Left,
* verticalStartPoint: VerticalAlignment.Middle,
* minSize: { height: 100, width: 100 }
* };
* this.alert.positionSettings = this.newPositionSettings;
* ```
*/
positionSettings: PositionSettings;
/**
* An event that is emitted when the dialog is opened.
*```html
*
*
*```
*/
onOpen: EventEmitter;
/**
* An event that is emitted when the dialog is closed.
*```html
*
*
*```
*/
onClose: EventEmitter;
/**
* An event that is emitted when the left button is clicked.
*```html
*
*
*```
*/
onLeftButtonSelect: EventEmitter;
/**
* An event that is emitted when the right button is clicked.
* ```html
*
*
*```
*/
onRightButtonSelect: EventEmitter;
private _positionSettings;
private _overlayDefaultSettings;
private _closeOnOutsideSelect;
private _isModal;
protected destroy$: Subject;
/**
* @hidden
*/
readonly element: any;
/**
* The default `tabindex` attribute for the component
*
* @hidden
*/
tabindex: number;
private _titleId;
/**
* Returns the value of state. Possible state values are "open" or "close".
*```typescript
*@ViewChild("MyDialog")
*public dialog: IgxDialogComponent;
*ngAfterViewInit() {
* let dialogState = this.dialog.state;
*}
*```
*/
readonly state: string;
/**
* Returns whether the dialog is visible to the end user.
*```typescript
*@ViewChild("MyDialog")
*public dialog: IgxDialogComponent;
*ngAfterViewInit() {
* let dialogOpen = this.dialog.isOpen;
*}
* ```
*/
readonly isOpen: boolean;
readonly isCollapsed: boolean;
/**
*Returns the value of the role of the dialog. The valid values are `dialog`, `alertdialog`, `alert`.
*```typescript
*@ViewChild("MyDialog")
*public dialog: IgxDialogComponent;
*ngAfterViewInit() {
* let dialogRole = this.dialog.role;
*}
* ```
*/
readonly role: "dialog" | "alertdialog" | "alert";
/**
*Returns the value of the title id.
*```typescript
*@ViewChild("MyDialog")
*public dialog: IgxDialogComponent;
*ngAfterViewInit() {
* let dialogTitle = this.dialog.titleId;
*}
* ```
*/
readonly titleId: string;
constructor(elementRef: ElementRef, navService: IgxNavigationService);
ngAfterContentInit(): void;
private emitCloseFromDialog;
/**
* A method that opens the dialog.
* @memberOf {@link IgxDialogComponent}
*```html
*
*
*```
*/
open(overlaySettings?: OverlaySettings): void;
/**
*A method that that closes the dialog.
*@memberOf {@link IgxDialogComponent}
*```html
*
*
*```
*/
close(): void;
/**
* A method that opens/closes the dialog.
*@memberOf {@link IgxDialogComponent}
*```html
*
*
*```
*/
toggle(): void;
/**
* @hidden
*/
onDialogSelected(event: any): void;
/**
* @hidden
*/
onInternalLeftButtonSelect(event: any): void;
/**
* @hidden
*/
onInternalRightButtonSelect(event: any): void;
/**
* @hidden
*/
ngOnInit(): void;
/**
* @hidden
*/
ngOnDestroy(): void;
}
export interface IDialogEventArgs extends IBaseEventArgs {
dialog: IgxDialogComponent;
event: Event;
}
/**
* @hidden
*/
export declare class IgxDialogModule {
}