@symphony-talent/component-library 3.81.0 → 3.83.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2599,9 +2599,6 @@ class FileUploadComponent {
2599
2599
  ngOnInit() {
2600
2600
  this.filetypeAccepted = this.fileUploadModel.fileFormatAccepted.join(', ');
2601
2601
  }
2602
- ngDoCheck() {
2603
- this.filetypeAccepted = this.fileUploadModel.fileFormatAccepted.join(', ');
2604
- }
2605
2602
  onCloseClick() {
2606
2603
  this.closeClick.emit();
2607
2604
  }
@@ -3382,11 +3379,6 @@ class UploadResumeModalComponent {
3382
3379
  name: 'Document',
3383
3380
  value: 'Document',
3384
3381
  },
3385
- {
3386
- id: 4,
3387
- name: 'Image',
3388
- value: 'Image',
3389
- },
3390
3382
  ],
3391
3383
  componentHeading: 'Document Type',
3392
3384
  },
@@ -3421,23 +3413,6 @@ class UploadResumeModalComponent {
3421
3413
  else {
3422
3414
  this.uploadResumeModel.isResume = false;
3423
3415
  }
3424
- if (selectedModel.value == 'Image') {
3425
- this.model.subTitle = 'Attach a .jpeg, .jpg or .png file upto 2MB';
3426
- this.uploadResumeModel.fileUploadModel.fileFormatAccepted = [
3427
- '.jpeg',
3428
- '.jpg',
3429
- '.png',
3430
- ];
3431
- }
3432
- else {
3433
- this.model.subTitle = 'Attach a .rtf, .docx, .txt or .pdf file upto 2MB';
3434
- this.uploadResumeModel.fileUploadModel.fileFormatAccepted = [
3435
- '.rtf',
3436
- '.docx',
3437
- '.txt',
3438
- '.pdf',
3439
- ];
3440
- }
3441
3416
  this.docTypeDropdowChange.emit(selectedModel.value);
3442
3417
  }
3443
3418
  onResumeCheckSelect(updateResumeCheckEvent) {