mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-14 13:33:03 +00:00
Remove inherited input declarations.
This commit is contained in:
@@ -1,13 +1,4 @@
|
|||||||
import {
|
import { Component } from '@angular/core';
|
||||||
Component, Input, ViewChild
|
|
||||||
} from '@angular/core';
|
|
||||||
|
|
||||||
import {
|
|
||||||
SubmissionFormsModel
|
|
||||||
} from 'src/app/core/config/models/config-submission-forms.model';
|
|
||||||
import {
|
|
||||||
SubmissionSectionUploadFileEditComponent
|
|
||||||
} from 'src/app/submission/sections/upload/file/edit/section-upload-file-edit.component';
|
|
||||||
import {
|
import {
|
||||||
SubmissionSectionUploadFileComponent as BaseComponent
|
SubmissionSectionUploadFileComponent as BaseComponent
|
||||||
} from 'src/app/submission/sections/upload/file/section-upload-file.component';
|
} from 'src/app/submission/sections/upload/file/section-upload-file.component';
|
||||||
@@ -24,66 +15,4 @@ import {
|
|||||||
})
|
})
|
||||||
export class SubmissionSectionUploadFileComponent
|
export class SubmissionSectionUploadFileComponent
|
||||||
extends BaseComponent {
|
extends BaseComponent {
|
||||||
|
|
||||||
/**
|
|
||||||
* The list of available access condition
|
|
||||||
* @type {Array}
|
|
||||||
*/
|
|
||||||
@Input() availableAccessConditionOptions: any[];
|
|
||||||
|
|
||||||
/**
|
|
||||||
* The submission id
|
|
||||||
* @type {string}
|
|
||||||
*/
|
|
||||||
@Input() collectionId: string;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Define if collection access conditions policy type :
|
|
||||||
* POLICY_DEFAULT_NO_LIST : is not possible to define additional access group/s for the single file
|
|
||||||
* POLICY_DEFAULT_WITH_LIST : is possible to define additional access group/s for the single file
|
|
||||||
* @type {number}
|
|
||||||
*/
|
|
||||||
@Input() collectionPolicyType: number;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* The configuration for the bitstream's metadata form
|
|
||||||
* @type {SubmissionFormsModel}
|
|
||||||
*/
|
|
||||||
@Input() configMetadataForm: SubmissionFormsModel;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* The bitstream id
|
|
||||||
* @type {string}
|
|
||||||
*/
|
|
||||||
@Input() fileId: string;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* The bitstream array key
|
|
||||||
* @type {string}
|
|
||||||
*/
|
|
||||||
@Input() fileIndex: string;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* The bitstream id
|
|
||||||
* @type {string}
|
|
||||||
*/
|
|
||||||
@Input() fileName: string;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* The section id
|
|
||||||
* @type {string}
|
|
||||||
*/
|
|
||||||
@Input() sectionId: string;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* The submission id
|
|
||||||
* @type {string}
|
|
||||||
*/
|
|
||||||
@Input() submissionId: string;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* The [[SubmissionSectionUploadFileEditComponent]] reference
|
|
||||||
* @type {SubmissionSectionUploadFileEditComponent}
|
|
||||||
*/
|
|
||||||
@ViewChild(SubmissionSectionUploadFileEditComponent) fileEditComp: SubmissionSectionUploadFileEditComponent;
|
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user