diff options
Diffstat (limited to 'client/src/app/shared/shared.module.ts')
-rw-r--r-- | client/src/app/shared/shared.module.ts | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/client/src/app/shared/shared.module.ts b/client/src/app/shared/shared.module.ts index 60a7bd6e2..1f9eee0b7 100644 --- a/client/src/app/shared/shared.module.ts +++ b/client/src/app/shared/shared.module.ts | |||
@@ -9,6 +9,7 @@ import { InfiniteScrollerDirective } from '@app/shared/video/infinite-scroller.d | |||
9 | 9 | ||
10 | import { BytesPipe, KeysPipe, NgPipesModule } from 'ngx-pipes' | 10 | import { BytesPipe, KeysPipe, NgPipesModule } from 'ngx-pipes' |
11 | import { SharedModule as PrimeSharedModule } from 'primeng/components/common/shared' | 11 | import { SharedModule as PrimeSharedModule } from 'primeng/components/common/shared' |
12 | import { KeyFilterModule } from 'primeng/keyfilter' | ||
12 | 13 | ||
13 | import { AUTH_INTERCEPTOR_PROVIDER } from './auth' | 14 | import { AUTH_INTERCEPTOR_PROVIDER } from './auth' |
14 | import { ButtonComponent } from './buttons/button.component' | 15 | import { ButtonComponent } from './buttons/button.component' |
@@ -49,6 +50,7 @@ import { | |||
49 | VideoValidatorsService | 50 | VideoValidatorsService |
50 | } from '@app/shared/forms' | 51 | } from '@app/shared/forms' |
51 | import { I18nPrimengCalendarService } from '@app/shared/i18n/i18n-primeng-calendar' | 52 | import { I18nPrimengCalendarService } from '@app/shared/i18n/i18n-primeng-calendar' |
53 | import { InputMaskModule } from 'primeng/inputmask' | ||
52 | import { ScreenService } from '@app/shared/misc/screen.service' | 54 | import { ScreenService } from '@app/shared/misc/screen.service' |
53 | import { VideoCaptionsValidatorsService } from '@app/shared/forms/form-validators/video-captions-validators.service' | 55 | import { VideoCaptionsValidatorsService } from '@app/shared/forms/form-validators/video-captions-validators.service' |
54 | import { VideoCaptionService } from '@app/shared/video-caption' | 56 | import { VideoCaptionService } from '@app/shared/video-caption' |
@@ -74,6 +76,8 @@ import { VideoPlaylistService } from '@app/shared/video-playlist/video-playlist. | |||
74 | import { ImageUploadComponent } from '@app/shared/images/image-upload.component' | 76 | import { ImageUploadComponent } from '@app/shared/images/image-upload.component' |
75 | import { GlobalIconComponent } from '@app/shared/images/global-icon.component' | 77 | import { GlobalIconComponent } from '@app/shared/images/global-icon.component' |
76 | import { VideoPlaylistMiniatureComponent } from '@app/shared/video-playlist/video-playlist-miniature.component' | 78 | import { VideoPlaylistMiniatureComponent } from '@app/shared/video-playlist/video-playlist-miniature.component' |
79 | import { VideoAddToPlaylistComponent } from '@app/shared/video-playlist/video-add-to-playlist.component' | ||
80 | import { TimestampInputComponent } from '@app/shared/forms/timestamp-input.component' | ||
77 | 81 | ||
78 | @NgModule({ | 82 | @NgModule({ |
79 | imports: [ | 83 | imports: [ |
@@ -90,6 +94,8 @@ import { VideoPlaylistMiniatureComponent } from '@app/shared/video-playlist/vide | |||
90 | NgbTooltipModule, | 94 | NgbTooltipModule, |
91 | 95 | ||
92 | PrimeSharedModule, | 96 | PrimeSharedModule, |
97 | InputMaskModule, | ||
98 | KeyFilterModule, | ||
93 | NgPipesModule | 99 | NgPipesModule |
94 | ], | 100 | ], |
95 | 101 | ||
@@ -100,11 +106,14 @@ import { VideoPlaylistMiniatureComponent } from '@app/shared/video-playlist/vide | |||
100 | VideoThumbnailComponent, | 106 | VideoThumbnailComponent, |
101 | VideoMiniatureComponent, | 107 | VideoMiniatureComponent, |
102 | VideoPlaylistMiniatureComponent, | 108 | VideoPlaylistMiniatureComponent, |
109 | VideoAddToPlaylistComponent, | ||
103 | 110 | ||
104 | FeedComponent, | 111 | FeedComponent, |
112 | |||
105 | ButtonComponent, | 113 | ButtonComponent, |
106 | DeleteButtonComponent, | 114 | DeleteButtonComponent, |
107 | EditButtonComponent, | 115 | EditButtonComponent, |
116 | |||
108 | ActionDropdownComponent, | 117 | ActionDropdownComponent, |
109 | NumberFormatterPipe, | 118 | NumberFormatterPipe, |
110 | ObjectLengthPipe, | 119 | ObjectLengthPipe, |
@@ -113,8 +122,11 @@ import { VideoPlaylistMiniatureComponent } from '@app/shared/video-playlist/vide | |||
113 | InfiniteScrollerDirective, | 122 | InfiniteScrollerDirective, |
114 | TextareaAutoResizeDirective, | 123 | TextareaAutoResizeDirective, |
115 | HelpComponent, | 124 | HelpComponent, |
125 | |||
116 | ReactiveFileComponent, | 126 | ReactiveFileComponent, |
117 | PeertubeCheckboxComponent, | 127 | PeertubeCheckboxComponent, |
128 | TimestampInputComponent, | ||
129 | |||
118 | SubscribeButtonComponent, | 130 | SubscribeButtonComponent, |
119 | RemoteSubscribeComponent, | 131 | RemoteSubscribeComponent, |
120 | InstanceFeaturesTableComponent, | 132 | InstanceFeaturesTableComponent, |
@@ -142,6 +154,8 @@ import { VideoPlaylistMiniatureComponent } from '@app/shared/video-playlist/vide | |||
142 | NgbTooltipModule, | 154 | NgbTooltipModule, |
143 | 155 | ||
144 | PrimeSharedModule, | 156 | PrimeSharedModule, |
157 | InputMaskModule, | ||
158 | KeyFilterModule, | ||
145 | BytesPipe, | 159 | BytesPipe, |
146 | KeysPipe, | 160 | KeysPipe, |
147 | 161 | ||
@@ -151,18 +165,24 @@ import { VideoPlaylistMiniatureComponent } from '@app/shared/video-playlist/vide | |||
151 | VideoThumbnailComponent, | 165 | VideoThumbnailComponent, |
152 | VideoMiniatureComponent, | 166 | VideoMiniatureComponent, |
153 | VideoPlaylistMiniatureComponent, | 167 | VideoPlaylistMiniatureComponent, |
168 | VideoAddToPlaylistComponent, | ||
154 | 169 | ||
155 | FeedComponent, | 170 | FeedComponent, |
171 | |||
156 | ButtonComponent, | 172 | ButtonComponent, |
157 | DeleteButtonComponent, | 173 | DeleteButtonComponent, |
158 | EditButtonComponent, | 174 | EditButtonComponent, |
175 | |||
159 | ActionDropdownComponent, | 176 | ActionDropdownComponent, |
160 | MarkdownTextareaComponent, | 177 | MarkdownTextareaComponent, |
161 | InfiniteScrollerDirective, | 178 | InfiniteScrollerDirective, |
162 | TextareaAutoResizeDirective, | 179 | TextareaAutoResizeDirective, |
163 | HelpComponent, | 180 | HelpComponent, |
181 | |||
164 | ReactiveFileComponent, | 182 | ReactiveFileComponent, |
165 | PeertubeCheckboxComponent, | 183 | PeertubeCheckboxComponent, |
184 | TimestampInputComponent, | ||
185 | |||
166 | SubscribeButtonComponent, | 186 | SubscribeButtonComponent, |
167 | RemoteSubscribeComponent, | 187 | RemoteSubscribeComponent, |
168 | InstanceFeaturesTableComponent, | 188 | InstanceFeaturesTableComponent, |