mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
32 lines
645 B
TypeScript
32 lines
645 B
TypeScript
import { AfterViewInit, Component, Input } from '@angular/core'
|
|
import { LoadingComponentWithPermissions } from 'src/app/components/loading-component/loading.component'
|
|
|
|
@Component({
|
|
selector: 'pngx-widget-frame',
|
|
templateUrl: './widget-frame.component.html',
|
|
styleUrls: ['./widget-frame.component.scss'],
|
|
})
|
|
export class WidgetFrameComponent
|
|
extends LoadingComponentWithPermissions
|
|
implements AfterViewInit
|
|
{
|
|
constructor() {
|
|
super()
|
|
}
|
|
|
|
@Input()
|
|
title: string
|
|
|
|
@Input()
|
|
loading: boolean = false
|
|
|
|
@Input()
|
|
draggable: any
|
|
|
|
ngAfterViewInit(): void {
|
|
setTimeout(() => {
|
|
this.reveal = true
|
|
}, 100)
|
|
}
|
|
}
|