mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-30 12:11:56 +00:00
chore: refactor install and setup wizards (#2561)
* chore: refactor install and setup wizards * chore: return tui-root
This commit is contained in:
@@ -1,11 +1,10 @@
|
||||
import { CommonModule } from "@angular/common";
|
||||
import { NgModule } from "@angular/core";
|
||||
import { FormsModule } from "@angular/forms";
|
||||
import { ResponsiveColDirective } from "@start9labs/shared";
|
||||
import { SearchComponent } from "./search.component";
|
||||
import { CommonModule } from '@angular/common'
|
||||
import { NgModule } from '@angular/core'
|
||||
import { FormsModule } from '@angular/forms'
|
||||
import { SearchComponent } from './search.component'
|
||||
|
||||
@NgModule({
|
||||
imports: [FormsModule, CommonModule, ResponsiveColDirective],
|
||||
imports: [FormsModule, CommonModule],
|
||||
declarations: [SearchComponent],
|
||||
exports: [SearchComponent],
|
||||
})
|
||||
|
||||
@@ -1,19 +1,17 @@
|
||||
import { CommonModule } from "@angular/common";
|
||||
import { NgModule } from "@angular/core";
|
||||
import { AdditionalComponent } from "./additional.component";
|
||||
import { CommonModule } from '@angular/common'
|
||||
import { NgModule } from '@angular/core'
|
||||
import { AdditionalComponent } from './additional.component'
|
||||
import {
|
||||
TuiRadioListModule,
|
||||
TuiStringifyContentPipeModule,
|
||||
} from "@taiga-ui/kit";
|
||||
import { FormsModule } from "@angular/forms";
|
||||
import { TuiButtonModule, TuiLabelModule } from "@taiga-ui/core";
|
||||
import { AdditionalLinkModule } from "./additional-link/additional-link.component.module";
|
||||
import { ResponsiveColDirective } from "@start9labs/shared";
|
||||
} from '@taiga-ui/kit'
|
||||
import { FormsModule } from '@angular/forms'
|
||||
import { TuiButtonModule, TuiLabelModule } from '@taiga-ui/core'
|
||||
import { AdditionalLinkModule } from './additional-link/additional-link.component.module'
|
||||
|
||||
@NgModule({
|
||||
imports: [
|
||||
CommonModule,
|
||||
ResponsiveColDirective,
|
||||
TuiRadioListModule,
|
||||
FormsModule,
|
||||
TuiStringifyContentPipeModule,
|
||||
|
||||
@@ -1,17 +1,11 @@
|
||||
import { CommonModule } from '@angular/common'
|
||||
import { NgModule } from '@angular/core'
|
||||
import { RouterModule } from '@angular/router'
|
||||
import { EmverPipesModule, ResponsiveColDirective } from '@start9labs/shared'
|
||||
import { EmverPipesModule } from '@start9labs/shared'
|
||||
import { DependenciesComponent } from './dependencies.component'
|
||||
import { TuiAvatarModule } from '@taiga-ui/experimental'
|
||||
@NgModule({
|
||||
imports: [
|
||||
CommonModule,
|
||||
RouterModule,
|
||||
ResponsiveColDirective,
|
||||
TuiAvatarModule,
|
||||
EmverPipesModule,
|
||||
],
|
||||
imports: [CommonModule, RouterModule, TuiAvatarModule, EmverPipesModule],
|
||||
declarations: [DependenciesComponent],
|
||||
exports: [DependenciesComponent],
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user