This file (503B) exceeds the allowed full mode (48 kb) size. The editor full height is disabled, only scrolling is allowed.
If you wish to edit a file, it is recommended to use the scroll mode as some users do not like the full height mode.
import {
Input,
Component,
} from '@angular/core';
import { MatProgressBarModule } from '@angular/material/progress-bar';
@Component({
selector: 'cory-mat-loading',
template: `
@if (visible) {
<mat-progress-bar
style="position: fixed; top: 0px; left: 0px; width: 100%; z-index: 100000;"
color="primary"
mode="indeterminate"></mat-progress-bar>
}
`,
imports: [MatProgressBarModule],
})
export class Loading {
@Input('cory-visible')
visible: boolean = false;
}
| / | Focus search |
| ? | Show this help |
| Esc | Unfocus input |