]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/shared/shared-forms/shared-form.module.ts
Add tooltip to maximize button and remove grey background
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / shared-forms / shared-form.module.ts
1
2 import { InputMaskModule } from 'primeng/inputmask'
3 import { NgModule } from '@angular/core'
4 import { FormsModule, ReactiveFormsModule } from '@angular/forms'
5 import { NgSelectModule } from '@ng-select/ng-select'
6 import { SharedGlobalIconModule } from '../shared-icons'
7 import { SharedMainModule } from '../shared-main/shared-main.module'
8 import { DynamicFormFieldComponent } from './dynamic-form-field.component'
9 import { FormValidatorService } from './form-validator.service'
10 import { InputReadonlyCopyComponent } from './input-readonly-copy.component'
11 import { InputSwitchComponent } from './input-switch.component'
12 import { MarkdownTextareaComponent } from './markdown-textarea.component'
13 import { PeertubeCheckboxComponent } from './peertube-checkbox.component'
14 import { PreviewUploadComponent } from './preview-upload.component'
15 import { ReactiveFileComponent } from './reactive-file.component'
16 import { SelectChannelComponent, SelectCheckboxComponent, SelectOptionsComponent, SelectTagsComponent } from './select'
17 import { TextareaAutoResizeDirective } from './textarea-autoresize.directive'
18 import { TimestampInputComponent } from './timestamp-input.component'
19
20 @NgModule({
21 imports: [
22 FormsModule,
23 ReactiveFormsModule,
24
25 InputMaskModule,
26 NgSelectModule,
27
28 SharedMainModule,
29 SharedGlobalIconModule
30 ],
31
32 declarations: [
33 InputReadonlyCopyComponent,
34 MarkdownTextareaComponent,
35 PeertubeCheckboxComponent,
36 PreviewUploadComponent,
37 ReactiveFileComponent,
38 TextareaAutoResizeDirective,
39 TimestampInputComponent,
40
41 InputSwitchComponent,
42
43 SelectChannelComponent,
44 SelectOptionsComponent,
45 SelectTagsComponent,
46 SelectCheckboxComponent,
47
48 DynamicFormFieldComponent
49 ],
50
51 exports: [
52 FormsModule,
53 ReactiveFormsModule,
54
55 InputMaskModule,
56 NgSelectModule,
57
58 InputReadonlyCopyComponent,
59 MarkdownTextareaComponent,
60 PeertubeCheckboxComponent,
61 PreviewUploadComponent,
62 ReactiveFileComponent,
63 TextareaAutoResizeDirective,
64 TimestampInputComponent,
65
66 InputSwitchComponent,
67
68 SelectChannelComponent,
69 SelectOptionsComponent,
70 SelectTagsComponent,
71 SelectCheckboxComponent,
72
73 DynamicFormFieldComponent
74 ],
75
76 providers: [
77 FormValidatorService
78 ]
79 })
80 export class SharedFormModule { }