From e27660f9b3cb9ec2a524ac487f8e7639b6557d7f Mon Sep 17 00:00:00 2001 From: rhenck <richard.henck@iqb.hu-berlin.de> Date: Sat, 22 Jan 2022 14:19:16 +0100 Subject: [PATCH] Fix paths --- .../components/compound-child-overlay.component.ts | 10 +++++----- .../common/directives/compound-element.directive.ts | 2 +- projects/common/shared.module.ts | 2 +- projects/common/ui-elements/cloze/cloze.component.ts | 2 +- .../canvas/overlays/canvas-element-overlay.ts | 2 +- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/projects/common/components/compound-child-overlay.component.ts b/projects/common/components/compound-child-overlay.component.ts index 67a74dfdd..c91934b6d 100644 --- a/projects/common/components/compound-child-overlay.component.ts +++ b/projects/common/components/compound-child-overlay.component.ts @@ -2,11 +2,11 @@ import { Component, EventEmitter, Input, Output, ViewChild } from '@angular/core'; import { FormGroup } from '@angular/forms'; -import { ValueChangeElement } from '../../models/uI-element'; -import { ToggleButtonElement } from '../../ui-elements/toggle-button/toggle-button'; -import { TextFieldSimpleElement } from '../../ui-elements/textfield-simple/text-field-simple-element'; -import { DropListSimpleElement } from '../../ui-elements/drop-list-simple/drop-list-simple'; -import { ElementComponent } from '../element-component.directive'; +import { ValueChangeElement } from '../models/uI-element'; +import { ToggleButtonElement } from '../ui-elements/toggle-button/toggle-button'; +import { TextFieldSimpleElement } from '../ui-elements/textfield-simple/text-field-simple-element'; +import { DropListSimpleElement } from '../ui-elements/drop-list-simple/drop-list-simple'; +import { ElementComponent } from '../directives/element-component.directive'; @Component({ selector: 'app-compound-child-overlay', diff --git a/projects/common/directives/compound-element.directive.ts b/projects/common/directives/compound-element.directive.ts index 0d9c30302..25d0e1ddc 100644 --- a/projects/common/directives/compound-element.directive.ts +++ b/projects/common/directives/compound-element.directive.ts @@ -5,7 +5,7 @@ import { import { FormGroup } from '@angular/forms'; import { ElementComponent } from './element-component.directive'; import { InputElement, ValueChangeElement } from '../models/uI-element'; -import { CompoundChildOverlayComponent } from './cloze-child-overlay/compound-child-overlay.component'; +import { CompoundChildOverlayComponent } from '../components/compound-child-overlay.component'; import { LikertRadioButtonGroupComponent } from '../ui-elements/likert/likert-radio-button-group.component'; @Directive({ selector: 'app-compound-element' }) diff --git a/projects/common/shared.module.ts b/projects/common/shared.module.ts index de28c462d..fd9525d88 100644 --- a/projects/common/shared.module.ts +++ b/projects/common/shared.module.ts @@ -52,7 +52,7 @@ import { ToggleButtonComponent } from './ui-elements/toggle-button/toggle-button import { MarkingBarComponent } from './components/marking-bar/marking-bar.component'; import { StyleMarksPipe } from './ui-elements/cloze/styleMarks.pipe'; import { MarkingButtonComponent } from './components/marking-bar/marking-button.component'; -import { CompoundChildOverlayComponent } from './directives/cloze-child-overlay/compound-child-overlay.component'; +import { CompoundChildOverlayComponent } from './components/compound-child-overlay.component'; @NgModule({ imports: [ diff --git a/projects/common/ui-elements/cloze/cloze.component.ts b/projects/common/ui-elements/cloze/cloze.component.ts index 25eea3076..b14821ace 100644 --- a/projects/common/ui-elements/cloze/cloze.component.ts +++ b/projects/common/ui-elements/cloze/cloze.component.ts @@ -4,7 +4,7 @@ import { import { ClozeElement } from './cloze-element'; import { CompoundElementComponent } from '../../directives/compound-element.directive'; import { InputElement } from '../../models/uI-element'; -import { CompoundChildOverlayComponent } from '../../directives/cloze-child-overlay/compound-child-overlay.component'; +import { CompoundChildOverlayComponent } from '../../components/compound-child-overlay.component'; import { ElementComponent } from '../../directives/element-component.directive'; @Component({ diff --git a/projects/editor/src/app/components/unit-view/page-view/canvas/overlays/canvas-element-overlay.ts b/projects/editor/src/app/components/unit-view/page-view/canvas/overlays/canvas-element-overlay.ts index eb0639d67..1900c139d 100644 --- a/projects/editor/src/app/components/unit-view/page-view/canvas/overlays/canvas-element-overlay.ts +++ b/projects/editor/src/app/components/unit-view/page-view/canvas/overlays/canvas-element-overlay.ts @@ -14,7 +14,7 @@ import { CompoundElementComponent } from '../../../../../../../../common/directives/compound-element.directive'; import { ClozeComponent } from '../../../../../../../../common/ui-elements/cloze/cloze.component'; import { ClozeElement } from '../../../../../../../../common/ui-elements/cloze/cloze-element'; -import { CompoundChildOverlayComponent } from '../../../../../../../../common/directives/cloze-child-overlay/compound-child-overlay.component'; +import { CompoundChildOverlayComponent } from '../../../../../../../../common/components/compound-child-overlay.component'; @Directive() export abstract class CanvasElementOverlay implements OnInit, OnDestroy { -- GitLab