diff --git a/src-ui/src/app/components/common/select-dialog/select-dialog.component.html b/src-ui/src/app/components/common/select-dialog/select-dialog.component.html deleted file mode 100644 index 00b2dc773..000000000 --- a/src-ui/src/app/components/common/select-dialog/select-dialog.component.html +++ /dev/null @@ -1,14 +0,0 @@ - - - diff --git a/src-ui/src/app/components/common/select-dialog/select-dialog.component.scss b/src-ui/src/app/components/common/select-dialog/select-dialog.component.scss deleted file mode 100644 index e69de29bb..000000000 diff --git a/src-ui/src/app/components/common/select-dialog/select-dialog.component.spec.ts b/src-ui/src/app/components/common/select-dialog/select-dialog.component.spec.ts deleted file mode 100644 index d67ea42ba..000000000 --- a/src-ui/src/app/components/common/select-dialog/select-dialog.component.spec.ts +++ /dev/null @@ -1,36 +0,0 @@ -import { ComponentFixture, TestBed } from '@angular/core/testing' -import { FormsModule, ReactiveFormsModule } from '@angular/forms' -import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap' -import { NgSelectModule } from '@ng-select/ng-select' -import { SelectComponent } from '../input/select/select.component' -import { SelectDialogComponent } from './select-dialog.component' - -describe('SelectDialogComponent', () => { - let component: SelectDialogComponent - let fixture: ComponentFixture - let modal: NgbActiveModal - - beforeEach(async () => { - TestBed.configureTestingModule({ - providers: [NgbActiveModal], - imports: [ - NgSelectModule, - FormsModule, - ReactiveFormsModule, - SelectDialogComponent, - SelectComponent, - ], - }).compileComponents() - - modal = TestBed.inject(NgbActiveModal) - fixture = TestBed.createComponent(SelectDialogComponent) - component = fixture.componentInstance - fixture.detectChanges() - }) - - it('should close modal on cancel', () => { - const closeSpy = jest.spyOn(modal, 'close') - component.cancelClicked() - expect(closeSpy).toHaveBeenCalled() - }) -}) diff --git a/src-ui/src/app/components/common/select-dialog/select-dialog.component.ts b/src-ui/src/app/components/common/select-dialog/select-dialog.component.ts deleted file mode 100644 index 3c6c98577..000000000 --- a/src-ui/src/app/components/common/select-dialog/select-dialog.component.ts +++ /dev/null @@ -1,33 +0,0 @@ -import { Component, EventEmitter, Input, Output } from '@angular/core' -import { FormsModule, ReactiveFormsModule } from '@angular/forms' -import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap' -import { ObjectWithId } from 'src/app/data/object-with-id' -import { SelectComponent } from '../input/select/select.component' - -@Component({ - selector: 'pngx-select-dialog', - templateUrl: './select-dialog.component.html', - styleUrls: ['./select-dialog.component.scss'], - imports: [SelectComponent, FormsModule, ReactiveFormsModule], -}) -export class SelectDialogComponent { - constructor(public activeModal: NgbActiveModal) {} - - @Output() - public selectClicked = new EventEmitter() - - @Input() - title = $localize`Select` - - @Input() - message = $localize`Please select an object` - - @Input() - objects: ObjectWithId[] = [] - - selected: number - - cancelClicked() { - this.activeModal.close() - } -} diff --git a/src-ui/src/app/components/common/toast/toast.component.html b/src-ui/src/app/components/common/toast/toast.component.html index ede75ddea..fc8e85e9c 100644 --- a/src-ui/src/app/components/common/toast/toast.component.html +++ b/src-ui/src/app/components/common/toast/toast.component.html @@ -33,7 +33,7 @@ }
-
diff --git a/src-ui/src/theme.scss b/src-ui/src/theme.scss index d7cfa5628..cc60d3851 100644 --- a/src-ui/src/theme.scss +++ b/src-ui/src/theme.scss @@ -291,10 +291,6 @@ $form-check-radio-checked-bg-image-dark: url("data:image/svg+xml,