
- create select-tags component to replace ngx-chips - create select-options to factorize option selection in forms - create select-channel to simplify channel selection - refactor tags validation
38 lines
925 B
TypeScript
38 lines
925 B
TypeScript
import { CalendarModule } from 'primeng/calendar'
|
|
import { NgModule } from '@angular/core'
|
|
import { SharedFormModule } from '@app/shared/shared-forms'
|
|
import { SharedGlobalIconModule } from '@app/shared/shared-icons'
|
|
import { SharedMainModule } from '@app/shared/shared-main'
|
|
import { I18nPrimengCalendarService } from './i18n-primeng-calendar.service'
|
|
import { VideoCaptionAddModalComponent } from './video-caption-add-modal.component'
|
|
import { VideoEditComponent } from './video-edit.component'
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CalendarModule,
|
|
|
|
SharedMainModule,
|
|
SharedFormModule,
|
|
SharedGlobalIconModule
|
|
],
|
|
|
|
declarations: [
|
|
VideoEditComponent,
|
|
VideoCaptionAddModalComponent
|
|
],
|
|
|
|
exports: [
|
|
CalendarModule,
|
|
|
|
SharedMainModule,
|
|
SharedFormModule,
|
|
SharedGlobalIconModule,
|
|
|
|
VideoEditComponent
|
|
],
|
|
|
|
providers: [
|
|
I18nPrimengCalendarService
|
|
]
|
|
})
|
|
export class VideoEditModule { }
|