angular-resizable-pane
v1.0.8
Published
An angular package that helps you create resizable interfaces according to the pane
Downloads
31
Readme
angular-resizable-pane
In HTML:
<div class="container">
<angular-resizable-pane [layout]="layout">
<ng-container ngProjectAs="section_1">
<h1>Section1</h1>
</ng-container>
<ng-container ngProjectAs="section_2">
<h1>Section2</h1>
</ng-container>
</angular-resizable-pane>
</div>
Layout model:
layout : Layout = {
orientation: 'horizontal',
unitType: 'percent',
initSize: 20,
minSize: 10,
maxSize: 50
}