mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 18:31:52 +00:00
28 lines
732 B
TypeScript
28 lines
732 B
TypeScript
import { Component, Input, OnInit } from '@angular/core'
|
|
import { BehaviorSubject, Subject } from 'rxjs'
|
|
import { Colorable, Loadable } from '../loadable'
|
|
import { WizardAction } from '../wizard-types'
|
|
|
|
@Component({
|
|
selector: 'developer-notes',
|
|
templateUrl: './developer-notes.component.html',
|
|
styleUrls: ['../install-wizard.component.scss'],
|
|
})
|
|
export class DeveloperNotesComponent implements OnInit, Loadable, Colorable {
|
|
@Input() params: {
|
|
action: WizardAction
|
|
developerNotes: string
|
|
}
|
|
|
|
$loading$ = new BehaviorSubject(false)
|
|
$color$ = new BehaviorSubject('warning')
|
|
$cancel$ = new Subject<void>()
|
|
|
|
load () { }
|
|
|
|
constructor () { }
|
|
ngOnInit () {
|
|
console.log('Developer Notes', this.params)
|
|
}
|
|
}
|