NgxResizer
A Resizer helper for Angular2+ applications
Getting Started
Installation
Install via Package managers such as npm or yarn
npm install ngx-reiszer --save
yarn add ngx-resizer
Usage
Import ngx-resizer
module
import { NgxResizerModule } from 'ngx-resizer';
@NgModule({
imports: [ NgxResizerModule ]
})
Basic resizer
In HTML
<div contenteditable="true" appNgxBasicResizer="vertical"></div>
The resizer accepts inputs as same as the CSS3 resize property
appNgxBasicResizer:string = none|both|horizontal|vertical|initial|inherit;
Check Basic Resizer wiki for more options