[ACS-5645] Lint fixes

This commit is contained in:
Yasa-Nataliya
2023-10-13 16:28:27 +05:30
committed by Anukriti Singh
parent ee71ce5cbb
commit af552aa0ce
@@ -139,7 +139,8 @@ export class ContentMetadataComponent implements OnChanges, OnInit, OnDestroy {
/** /**
* Emitted when content's editable state is changed. * Emitted when content's editable state is changed.
* *
* @Output * @event editableChange
* @type {EventEmitter<boolean>}
*/ */
@Output() @Output()
editableChange = new EventEmitter<boolean>(); editableChange = new EventEmitter<boolean>();
@@ -147,19 +148,26 @@ export class ContentMetadataComponent implements OnChanges, OnInit, OnDestroy {
/** /**
* Emitted when content's editableTags state is changed. * Emitted when content's editableTags state is changed.
* *
* @Output * @event editableTagsChange
* @type {EventEmitter<boolean>}
*/ */
@Output() @Output()
editableTagsChange = new EventEmitter<boolean>(); editableTagsChange = new EventEmitter<boolean>();
/** Emitted when content's editableCategories state is changed. **/ /**
* Emitted when content's editableCategories state is changed.
*
* @event editableCategoriesChange
* @type {EventEmitter<boolean>}
*/
@Output() @Output()
editableCategoriesChange = new EventEmitter<boolean>(); editableCategoriesChange = new EventEmitter<boolean>();
/** /**
* Emitted when content's group state is changed. * Emitted when content's group state is changed.
* *
* @Output * @event groupChange
* @type {EventEmitter<CardViewGroup>}
*/ */
@Output() @Output()
groupChange = new EventEmitter<CardViewGroup>(); groupChange = new EventEmitter<CardViewGroup>();
@@ -167,7 +175,7 @@ export class ContentMetadataComponent implements OnChanges, OnInit, OnDestroy {
/** /**
* (optional) This flag toggles editable of categories content. * (optional) This flag toggles editable of categories content.
* *
* @Input * @type {boolean}
*/ */
@Input() @Input()
editableCategories = false; editableCategories = false;
@@ -175,15 +183,15 @@ export class ContentMetadataComponent implements OnChanges, OnInit, OnDestroy {
/** /**
* (optional) This flag toggles editable of tags content. * (optional) This flag toggles editable of tags content.
* *
* @Input * @type {boolean}
*/ */
@Input() @Input()
editableTags = false; editableTags = false;
/** /**
* group content state * Group content state
* @Input() *
* group: CardViewGroup; * @Input group: CardViewGroup;
*/ */
@Input() @Input()
group: CardViewGroup; group: CardViewGroup;
@@ -313,9 +321,11 @@ export class ContentMetadataComponent implements OnChanges, OnInit, OnDestroy {
} }
/** /**
* Called after clicking save button. It confirms all changes done for metadata and hides both category and tag name controls. * Called after clicking the save button. It confirms all changes done for metadata and hides both category and tag name controls.
* *
* @param Before clicking on that button they are not saved. * @param {string} buttonType - The type of button clicked.
* @param {Event} event - The click event.
* @param {string} group - The group associated with the action.
*/ */
saveChanges(buttonType: ButtonType, event: MouseEvent, group?: CardViewGroup) { saveChanges(buttonType: ButtonType, event: MouseEvent, group?: CardViewGroup) {
event.stopPropagation(); event.stopPropagation();