@symphony-talent/component-library 3.90.0 → 3.91.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.
- package/esm2020/lib/organisms/upload-resume-modal/upload-resume-modal.component.mjs +10 -2
- package/esm2020/projects/component-library/lib/organisms/upload-resume-modal/upload-resume-modal.component.mjs +10 -2
- package/fesm2015/symphony-talent-component-library-projects-component-library.mjs +9 -1
- package/fesm2015/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
- package/fesm2015/symphony-talent-component-library.mjs +9 -1
- package/fesm2015/symphony-talent-component-library.mjs.map +1 -1
- package/fesm2020/symphony-talent-component-library-projects-component-library.mjs +9 -1
- package/fesm2020/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
- package/fesm2020/symphony-talent-component-library.mjs +9 -1
- package/fesm2020/symphony-talent-component-library.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -3361,7 +3361,7 @@ class UploadResumeModalComponent {
|
|
|
3361
3361
|
ngOnInit() {
|
|
3362
3362
|
this.model = {
|
|
3363
3363
|
title: 'Add document',
|
|
3364
|
-
subTitle: 'Attach a .rtf, .docx, .txt or .
|
|
3364
|
+
subTitle: 'Attach a .rtf, .docx, .txt, .pdf, .jpeg, .jpg or .png file upto 2MB',
|
|
3365
3365
|
btnPrimary: 'Save',
|
|
3366
3366
|
btnSecondary: 'Back',
|
|
3367
3367
|
documentTypeDropdown: {
|
|
@@ -3382,6 +3382,11 @@ class UploadResumeModalComponent {
|
|
|
3382
3382
|
name: 'Document',
|
|
3383
3383
|
value: 'Document',
|
|
3384
3384
|
},
|
|
3385
|
+
{
|
|
3386
|
+
id: 4,
|
|
3387
|
+
name: 'Image',
|
|
3388
|
+
value: 'Image',
|
|
3389
|
+
},
|
|
3385
3390
|
],
|
|
3386
3391
|
componentHeading: 'Document Type',
|
|
3387
3392
|
},
|
|
@@ -3392,6 +3397,9 @@ class UploadResumeModalComponent {
|
|
|
3392
3397
|
'.docx',
|
|
3393
3398
|
'.txt',
|
|
3394
3399
|
'.pdf',
|
|
3400
|
+
'.jpeg',
|
|
3401
|
+
'.jpg',
|
|
3402
|
+
'.png',
|
|
3395
3403
|
];
|
|
3396
3404
|
if (this.uploadResumeModel?.isResume) {
|
|
3397
3405
|
this.model.documentTypeDropdown.selectedName = 'Resume';
|