This commit is contained in:
2024-02-01 15:21:04 +01:00
parent 92b29135b5
commit 4641e351fd
9 changed files with 98 additions and 3322 deletions

View File

@@ -3,8 +3,7 @@ import { Component, Input,Output,ViewChild,EventEmitter, ElementRef,OnChanges,Si
@Component({
selector: 'fm-side-panel',
templateUrl: 'side-panel.component.html',
styleUrls: ['side-panel.component.scss'],
encapsulation: ViewEncapsulation.None
styleUrls: ['side-panel.component.scss']
})
@@ -13,7 +12,8 @@ export class SidePanelComponent implements OnChanges {
@Input() public collapsed: boolean;
@Input() public collapsable: boolean;
@Input() public resizeable = false;
@Input() public left = false;
@Input() public left = false;
@Input() public extraWide = false;
@Output() onResize: EventEmitter<number> = new EventEmitter<number>();
@ViewChild("resizeGrip") elementView: ElementRef;
public mobile = true;