Headless CMS and Content Managment Hub
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

38 lines
763 B

/*
* Squidex Headless CMS
*
* @license
* Copyright (c) Squidex UG (haftungsbeschränkt). All rights reserved.
*/
import { Component, Input } from '@angular/core';
import { FormControl } from '@angular/forms';
import {
AppLanguageDto,
EditContentForm,
FieldDto,
ImmutableArray
} from '@app/shared';
@Component({
selector: 'sqx-field-editor',
styleUrls: ['./field-editor.component.scss'],
templateUrl: './field-editor.component.html'
})
export class FieldEditorComponent {
@Input()
public form: EditContentForm;
@Input()
public field: FieldDto;
@Input()
public control: FormControl;
@Input()
public language: AppLanguageDto;
@Input()
public languages: ImmutableArray<AppLanguageDto>;
}