1.0.1 • Published 4 years ago

ngx-modal-window v1.0.1

Weekly downloads
13
License
-
Repository
-
Last release
4 years ago

Angular resizable and draggable modal

Simple resizable and draggable modal component. (Demo)

npm i ngx-modal-window --save

Sample

import { NgxModalWindowModule } from 'ngx-modal-window';

@NgModule({
  imports: [
    NgxModalWindowModule
  ]
})
<button type="button" class="button" (click)="modalRoot.show()">Open modal</button>
<ngx-modal-window #modalRoot class="modal-demo">
  <ng-container class="app-modal-header">Demo modal</ng-container>
  <ng-container class="app-modal-body">
    <h3>MODAL DIALOG</h3>
    <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry.
      Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s.</p>
  </ng-container>
  <ng-container class="app-modal-footer">
    <button type="button" class="button button3" (click)="modalRoot.hide()">Delete</button>
    <button type="button" class="button button1" (click)="modalRoot.hide()">Save</button>
    <button type="button" class="button button2" style="float: right;" (click)="modalRoot.hide()">Close
    </button>
  </ng-container>
</ngx-modal-window>
.modal-demo .ui-modal {
  width: 37.5rem;
  /* for resize limits use min-width, min-height, max-width, max-height in css */
}
.modal-demo .ui-modal-overlay, .modal-demo .ui-modal {
  z-index: 10;
}
/* colors */
:root {
  --dt-color-primary: #5b9bd5;
}
/* for IE */
.ui-modal-header {
  background-color: #5b9bd5;
}

Properties

AttributeTypeDefaultDescription
scrollTopEnablebooleantrue
maximizablebooleanfalse
backdropbooleantrue

Events

@Output() openModal = new EventEmitter();
@Output() closeModal = new EventEmitter<boolean>();
@Output() resizeModal = new EventEmitter<ResizableEvent>();
@Output() maximizeModal = new EventEmitter<boolean>();