@symphony-talent/component-library 3.82.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.
@@ -2601,9 +2601,6 @@ class FileUploadComponent {
2601
2601
  ngOnInit() {
2602
2602
  this.filetypeAccepted = this.fileUploadModel.fileFormatAccepted.join(', ');
2603
2603
  }
2604
- ngDoCheck() {
2605
- this.filetypeAccepted = this.fileUploadModel.fileFormatAccepted.join(', ');
2606
- }
2607
2604
  onCloseClick() {
2608
2605
  this.closeClick.emit();
2609
2606
  }
@@ -3385,11 +3382,6 @@ class UploadResumeModalComponent {
3385
3382
  name: 'Document',
3386
3383
  value: 'Document',
3387
3384
  },
3388
- {
3389
- id: 4,
3390
- name: 'Image',
3391
- value: 'Image',
3392
- },
3393
3385
  ],
3394
3386
  componentHeading: 'Document Type',
3395
3387
  },
@@ -3424,23 +3416,6 @@ class UploadResumeModalComponent {
3424
3416
  else {
3425
3417
  this.uploadResumeModel.isResume = false;
3426
3418
  }
3427
- if (selectedModel.value == 'Image') {
3428
- this.model.subTitle = 'Attach a .jpeg, .jpg or .png file upto 2MB';
3429
- this.uploadResumeModel.fileUploadModel.fileFormatAccepted = [
3430
- '.jpeg',
3431
- '.jpg',
3432
- '.png',
3433
- ];
3434
- }
3435
- else {
3436
- this.model.subTitle = 'Attach a .rtf, .docx, .txt or .pdf file upto 2MB';
3437
- this.uploadResumeModel.fileUploadModel.fileFormatAccepted = [
3438
- '.rtf',
3439
- '.docx',
3440
- '.txt',
3441
- '.pdf',
3442
- ];
3443
- }
3444
3419
  this.docTypeDropdowChange.emit(selectedModel.value);
3445
3420
  }
3446
3421
  onResumeCheckSelect(updateResumeCheckEvent) {