Umbau business-details & edit-business

This commit is contained in:
2024-07-04 14:59:02 +02:00
parent 1ccd1d174c
commit 9228cbebbe
9 changed files with 350 additions and 67 deletions

View File

@@ -4,6 +4,7 @@ import { provideRouter, withEnabledBlockingInitialNavigation, withInMemoryScroll
import { HTTP_INTERCEPTORS, provideHttpClient, withInterceptorsFromDi } from '@angular/common/http';
import { provideAnimations } from '@angular/platform-browser/animations';
import { KeycloakBearerInterceptor, KeycloakService } from 'keycloak-angular';
import { provideQuillConfig } from 'ngx-quill';
import { environment } from '../environments/environment';
import { customKeycloakAdapter } from '../keycloak';
import { routes } from './app.routes';
@@ -51,6 +52,12 @@ export const appConfig: ApplicationConfig = {
}),
),
provideAnimations(),
provideQuillConfig({
modules: {
syntax: true,
toolbar: [['bold', 'italic', 'underline', 'strike'], [{ list: 'ordered' }, { list: 'bullet' }], [{ header: [1, 2, 3, 4, 5, 6, false] }], [{ color: [] }, { background: [] }], ['clean']],
},
}),
],
};
function initServices(selectOptions: SelectOptionsService) {