Skip to content
Snippets Groups Projects
Commit d82cca2c authored by Lennard Strohmeyer's avatar Lennard Strohmeyer :penguin:
Browse files

Migrated frontend from material to ant design, created theme according to...

Migrated frontend from material to ant design, created theme according to style guide, added icons etc.
parent b7b3ab54
No related branches found
No related tags found
No related merge requests found
Pipeline #1589539 failed
...@@ -2,7 +2,7 @@ import { Component, Input, OnInit } from '@angular/core' ...@@ -2,7 +2,7 @@ import { Component, Input, OnInit } from '@angular/core'
import {NgFor, NgIf} from '@angular/common'; import {NgFor, NgIf} from '@angular/common';
import {FormsModule} from '@angular/forms'; import {FormsModule} from '@angular/forms';
import { AnalyticsTokenConsent, XApiVerbConsentedWithProvider } from '../../analytics-engine.component'; import { AnalyticsTokenConsent, XApiVerbConsentedWithProvider } from '../../analytics-engine.component';
import { AnalyticsTokenVerb, ApiService, Provider, ProviderAnalyticsToken } from 'src/app/services/api.service'; import { AnalyticsTokenVerb, ApiService, Provider } from 'src/app/services/api.service';
import { NzModalModule, NzModalRef } from 'ng-zorro-antd/modal' import { NzModalModule, NzModalRef } from 'ng-zorro-antd/modal'
import { NzListModule } from 'ng-zorro-antd/list' import { NzListModule } from 'ng-zorro-antd/list'
import { NzButtonModule } from 'ng-zorro-antd/button' import { NzButtonModule } from 'ng-zorro-antd/button'
......
import { Component, OnInit, ViewChild, Inject, OnDestroy } from '@angular/core' import { Component, OnInit, OnDestroy } from '@angular/core'
import { ProviderId, UserConsent, UserConsentVerbs } from './consentDeclaration' import { ProviderId, UserConsent, UserConsentVerbs } from './consentDeclaration'
import { ApiService, Provider } from '../services/api.service' import { ApiService, Provider } from '../services/api.service'
import { DataRemovalService } from '../data-removal.service' import { DataRemovalService } from '../data-removal.service'
......
import { Component, OnInit, Input } from '@angular/core' import { Component, OnInit, Input } from '@angular/core'
import { import {
ConsentGroupSchema, ConsentGroupSchema,
ProviderSchema,
ProviderSchemaDefinition, ProviderSchemaDefinition,
UserConsent,
XApiObjectSchema, XApiObjectSchema,
XApiVerbSchema XApiVerbSchema
} from '../consentDeclaration' } from '../consentDeclaration'
......
import { ComponentFixture, TestBed } from '@angular/core/testing'; import { ComponentFixture, TestBed } from '@angular/core/testing';
import { WizardComponent } from './wizard.component'; import { WizardDialog } from './wizard.component';
describe('WizardComponent', () => { describe('WizardDialog', () => {
let component: WizardComponent; let component: WizardDialog;
let fixture: ComponentFixture<WizardComponent>; let fixture: ComponentFixture<WizardDialog>;
beforeEach(async () => { beforeEach(async () => {
await TestBed.configureTestingModule({ await TestBed.configureTestingModule({
declarations: [ WizardComponent ] declarations: [ WizardDialog ]
}) })
.compileComponents(); .compileComponents();
fixture = TestBed.createComponent(WizardComponent); fixture = TestBed.createComponent(WizardDialog);
component = fixture.componentInstance; component = fixture.componentInstance;
fixture.detectChanges(); fixture.detectChanges();
}); });
......
import { Component, OnInit, Inject, Input } from '@angular/core' import { Component, OnInit, Input } from '@angular/core'
import { import {
AbstractControl, AbstractControl,
FormBuilder, FormBuilder,
......
...@@ -8,7 +8,6 @@ import { ...@@ -8,7 +8,6 @@ import {
import { HttpClient } from '@angular/common/http' import { HttpClient } from '@angular/common/http'
import { Observable } from 'rxjs' import { Observable } from 'rxjs'
import { environment } from '../../environments/environment' import { environment } from '../../environments/environment'
import { StringKeyframeTrack } from 'three'
export interface UserConsentResponse { export interface UserConsentResponse {
paused_data_recording: boolean paused_data_recording: boolean
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment