mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 18:31:52 +00:00
* no more app wiz or dry calls * change spinner type * better display for update available * reintroduce dep breakages for update/downgrade and style alerts everywhere * only show install alert on first install Co-authored-by: Matt Hill <matthill@Matt-M1.local> Co-authored-by: Matt Hill <matthill@Matt-M1.start9.dev>
27 lines
912 B
TypeScript
27 lines
912 B
TypeScript
import { NgModule } from '@angular/core'
|
|
import { CommonModule } from '@angular/common'
|
|
import { AppWizardComponent } from './app-wizard.component'
|
|
import { IonicModule } from '@ionic/angular'
|
|
import { RouterModule } from '@angular/router'
|
|
import { EmverPipesModule } from '@start9labs/shared'
|
|
import { DependentsComponentModule } from './dependents/dependents.component.module'
|
|
import { CompleteComponentModule } from './complete/complete.component.module'
|
|
import { AlertComponentModule } from './alert/alert.component.module'
|
|
import { SwiperModule } from 'swiper/angular'
|
|
|
|
@NgModule({
|
|
declarations: [AppWizardComponent],
|
|
imports: [
|
|
CommonModule,
|
|
IonicModule,
|
|
RouterModule.forChild([]),
|
|
EmverPipesModule,
|
|
DependentsComponentModule,
|
|
CompleteComponentModule,
|
|
AlertComponentModule,
|
|
SwiperModule,
|
|
],
|
|
exports: [AppWizardComponent],
|
|
})
|
|
export class AppWizardComponentModule {}
|