diff --git a/apps/red-ui/src/app/app.module.ts b/apps/red-ui/src/app/app.module.ts index c6d05a9c1..985274066 100644 --- a/apps/red-ui/src/app/app.module.ts +++ b/apps/red-ui/src/app/app.module.ts @@ -79,6 +79,10 @@ import { DictionaryAnnotationIconComponent } from './components/dictionary-annot import { BulkActionsComponent } from './screens/project-overview-screen/bulk-actions/bulk-actions.component'; import { HttpCacheInterceptor } from '@redaction/red-cache'; import { HiddenActionComponent } from './common/hidden-action/hidden-action.component'; +import { IconButtonComponent } from './components/buttons/icon-button/icon-button.component'; +import { UserButtonComponent } from './components/buttons/user-button/user-button.component'; +import { CircleButtonComponent } from './components/buttons/circle-button/circle-button.component'; +import { ChevronButtonComponent } from './components/buttons/chevron-button/chevron-button.component'; export function HttpLoaderFactory(httpClient: HttpClient) { return new TranslateHttpLoader(httpClient, '/assets/i18n/', '.json'); @@ -125,7 +129,11 @@ export function HttpLoaderFactory(httpClient: HttpClient) { DictionaryAnnotationIconComponent, BulkActionsComponent, FileActionsComponent, - HiddenActionComponent + HiddenActionComponent, + IconButtonComponent, + UserButtonComponent, + CircleButtonComponent, + ChevronButtonComponent ], imports: [ BrowserModule, diff --git a/apps/red-ui/src/app/common/file-actions/file-actions.component.html b/apps/red-ui/src/app/common/file-actions/file-actions.component.html index 411c2c36b..e0a6fc4dc 100644 --- a/apps/red-ui/src/app/common/file-actions/file-actions.component.html +++ b/apps/red-ui/src/app/common/file-actions/file-actions.component.html @@ -1,107 +1,102 @@