mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-04-02 05:23:14 +00:00
* begin subnav implementation * implement subnav AND angular forms for comparison * unions working-ish, list of enums working * new form approach almost complete * finish new forms approach for action inputs and config * expandable list items and handlebars display * Config animation (#394) * config cammel * config animation Co-authored-by: Drew Ansbacher <drew.ansbacher@spiredigital.com> * improve server settings inputs, still needs work * delete all notifications, styling, and bugs * contracted by default Co-authored-by: Drew Ansbacher <drew.ansbacher@gmail.com> Co-authored-by: Drew Ansbacher <drew.ansbacher@spiredigital.com>
20 lines
659 B
TypeScript
20 lines
659 B
TypeScript
import { NgModule } from '@angular/core'
|
|
import { CommonModule } from '@angular/common'
|
|
import { IonicModule } from '@ionic/angular'
|
|
import { AppActionInputPage } from './app-action-input.page'
|
|
import { FormsModule, ReactiveFormsModule } from '@angular/forms'
|
|
import { FormObjectComponentModule } from 'src/app/components/form-object/form-object.component.module'
|
|
|
|
@NgModule({
|
|
declarations: [AppActionInputPage],
|
|
imports: [
|
|
CommonModule,
|
|
IonicModule,
|
|
FormsModule,
|
|
ReactiveFormsModule,
|
|
FormObjectComponentModule,
|
|
],
|
|
entryComponents: [AppActionInputPage],
|
|
exports: [AppActionInputPage],
|
|
})
|
|
export class AppActionInputPageModule { } |