@symphony-talent/component-library 3.78.0 → 3.80.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/atoms/button-v2/button.component.mjs +16 -0
- package/esm2020/lib/atoms/button-v2/button.module.mjs +19 -0
- package/esm2020/lib/molecules/file-upload/file-upload.component.mjs +4 -1
- package/esm2020/lib/organisms/upload-resume-modal/upload-resume-modal.component.mjs +23 -1
- package/esm2020/projects/component-library/lib/atoms/button-v2/button.component.mjs +16 -0
- package/esm2020/projects/component-library/lib/atoms/button-v2/button.module.mjs +19 -0
- package/esm2020/projects/component-library/lib/molecules/file-upload/file-upload.component.mjs +4 -1
- package/esm2020/projects/component-library/lib/organisms/upload-resume-modal/upload-resume-modal.component.mjs +23 -1
- package/esm2020/projects/component-library/public-api.mjs +3 -1
- package/esm2020/public-api.mjs +3 -1
- package/fesm2015/symphony-talent-component-library-projects-component-library.mjs +53 -1
- package/fesm2015/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
- package/fesm2015/symphony-talent-component-library.mjs +53 -1
- package/fesm2015/symphony-talent-component-library.mjs.map +1 -1
- package/fesm2020/symphony-talent-component-library-projects-component-library.mjs +53 -1
- package/fesm2020/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
- package/fesm2020/symphony-talent-component-library.mjs +53 -1
- package/fesm2020/symphony-talent-component-library.mjs.map +1 -1
- package/lib/atoms/button-v2/button.component.d.ts +7 -0
- package/lib/atoms/button-v2/button.module.d.ts +8 -0
- package/lib/molecules/file-upload/file-upload.component.d.ts +3 -2
- package/package.json +9 -9
- package/projects/component-library/lib/atoms/button-v2/button.component.d.ts +7 -0
- package/projects/component-library/lib/atoms/button-v2/button.module.d.ts +8 -0
- package/projects/component-library/lib/molecules/file-upload/file-upload.component.d.ts +3 -2
- package/projects/component-library/public-api.d.ts +2 -0
- package/public-api.d.ts +2 -0
|
@@ -168,6 +168,33 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
|
|
|
168
168
|
}]
|
|
169
169
|
}] });
|
|
170
170
|
|
|
171
|
+
class ButtonV2Component extends ButtonComponent {
|
|
172
|
+
constructor() {
|
|
173
|
+
super();
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
ButtonV2Component.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ButtonV2Component, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
177
|
+
ButtonV2Component.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: ButtonV2Component, selector: "symphony-button-v2", usesInheritance: true, ngImport: i0, template: "<div class=\"v2\">\n <button\n class=\"btn sb-sfx-btn\"\n [ngClass]=\"{\n 'btn-secondary': isSecondary,\n 'btn-primary': !isSecondary,\n 'is-inverse': isInverse\n }\"\n (click)=\"onClick()\"\n [disabled]=\"disabled\"\n >\n {{ text }}\n </button>\n</div>\n", styles: [".v2 button{outline:none}.v2 .btn{padding-left:35px;padding-right:35px;border-radius:30px;height:40px;font-family:neuzeit_groteskbold;letter-spacing:.4px}.v2 .btn.sb-sfx-btn{border-radius:30px!important;font-family:neuzeit_groteskbold!important}.v2 .btn:focus{outline:none}.v2 .btn:disabled{cursor:not-allowed;opacity:70%}.v2 .btn:disabled:hover{opacity:70%}.v2 .btn-primary{background:#2B8FF3!important;color:#fff;border:1px solid #FFF}.v2 .btn-primary:hover{opacity:90%}.v2 .btn-secondary{background:#fff;color:#2b8ff3;border:1px solid #2B8FF3}.v2 .btn-secondary:hover{opacity:90%}\n"], directives: [{ type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
|
|
178
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ButtonV2Component, decorators: [{
|
|
179
|
+
type: Component,
|
|
180
|
+
args: [{ selector: 'symphony-button-v2', template: "<div class=\"v2\">\n <button\n class=\"btn sb-sfx-btn\"\n [ngClass]=\"{\n 'btn-secondary': isSecondary,\n 'btn-primary': !isSecondary,\n 'is-inverse': isInverse\n }\"\n (click)=\"onClick()\"\n [disabled]=\"disabled\"\n >\n {{ text }}\n </button>\n</div>\n", styles: [".v2 button{outline:none}.v2 .btn{padding-left:35px;padding-right:35px;border-radius:30px;height:40px;font-family:neuzeit_groteskbold;letter-spacing:.4px}.v2 .btn.sb-sfx-btn{border-radius:30px!important;font-family:neuzeit_groteskbold!important}.v2 .btn:focus{outline:none}.v2 .btn:disabled{cursor:not-allowed;opacity:70%}.v2 .btn:disabled:hover{opacity:70%}.v2 .btn-primary{background:#2B8FF3!important;color:#fff;border:1px solid #FFF}.v2 .btn-primary:hover{opacity:90%}.v2 .btn-secondary{background:#fff;color:#2b8ff3;border:1px solid #2B8FF3}.v2 .btn-secondary:hover{opacity:90%}\n"] }]
|
|
181
|
+
}], ctorParameters: function () { return []; } });
|
|
182
|
+
|
|
183
|
+
class ButtonV2Module {
|
|
184
|
+
}
|
|
185
|
+
ButtonV2Module.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ButtonV2Module, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
186
|
+
ButtonV2Module.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ButtonV2Module, declarations: [ButtonV2Component], imports: [CommonModule], exports: [ButtonV2Component] });
|
|
187
|
+
ButtonV2Module.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ButtonV2Module, providers: [], imports: [[CommonModule]] });
|
|
188
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ButtonV2Module, decorators: [{
|
|
189
|
+
type: NgModule,
|
|
190
|
+
args: [{
|
|
191
|
+
declarations: [ButtonV2Component],
|
|
192
|
+
imports: [CommonModule],
|
|
193
|
+
providers: [],
|
|
194
|
+
exports: [ButtonV2Component],
|
|
195
|
+
}]
|
|
196
|
+
}] });
|
|
197
|
+
|
|
171
198
|
class TrimIdPipe {
|
|
172
199
|
transform(value) {
|
|
173
200
|
return value?.replace(/\s/g, '');
|
|
@@ -2572,6 +2599,9 @@ class FileUploadComponent {
|
|
|
2572
2599
|
ngOnInit() {
|
|
2573
2600
|
this.filetypeAccepted = this.fileUploadModel.fileFormatAccepted.join(', ');
|
|
2574
2601
|
}
|
|
2602
|
+
ngDoCheck() {
|
|
2603
|
+
this.filetypeAccepted = this.fileUploadModel.fileFormatAccepted.join(', ');
|
|
2604
|
+
}
|
|
2575
2605
|
onCloseClick() {
|
|
2576
2606
|
this.closeClick.emit();
|
|
2577
2607
|
}
|
|
@@ -3352,6 +3382,11 @@ class UploadResumeModalComponent {
|
|
|
3352
3382
|
name: 'Document',
|
|
3353
3383
|
value: 'Document',
|
|
3354
3384
|
},
|
|
3385
|
+
{
|
|
3386
|
+
id: 4,
|
|
3387
|
+
name: 'Image',
|
|
3388
|
+
value: 'Image',
|
|
3389
|
+
},
|
|
3355
3390
|
],
|
|
3356
3391
|
componentHeading: 'Document Type',
|
|
3357
3392
|
},
|
|
@@ -3386,6 +3421,23 @@ class UploadResumeModalComponent {
|
|
|
3386
3421
|
else {
|
|
3387
3422
|
this.uploadResumeModel.isResume = false;
|
|
3388
3423
|
}
|
|
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
|
+
}
|
|
3389
3441
|
this.docTypeDropdowChange.emit(selectedModel.value);
|
|
3390
3442
|
}
|
|
3391
3443
|
onResumeCheckSelect(updateResumeCheckEvent) {
|
|
@@ -6849,5 +6901,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
|
|
|
6849
6901
|
* Generated bundle index. Do not edit.
|
|
6850
6902
|
*/
|
|
6851
6903
|
|
|
6852
|
-
export { ActionBarComponent, ActionBarJobListComponent, ActionBarJobListModule, ActionBarModule, ActionBarSelectionCounterComponent, ActionBarSelectionCounterModule, ActivityScoreLevel, AdvanceFilterSelectedCounterComponent, AdvanceFilterSelectedCounterModule, AdvanceSearchModalComponent, AdvanceSearchModalModule, AdvertiseModalComponent, AdvertiseModalModule, AdvertisedJobPostingsListPageComponent, AdvertisedJobPostingsListPageModule, AdvertisedJobPostingsModalComponent, AdvertisedJobPostingsModalModule, AdvertisedJobsCostComponent, AdvertisedJobsCostModule, AlertDuration, AtomsModule, AvatarComponent, AvatarModule, BreadcrumbComponent, BreadcrumbModule, ButtonComponent, ButtonModule, CapitalizeFirstCharacterPipe, CardComponent, CardListComponent, CardListModule, CardModule, ConfirmationModalComponent, ConfirmationModalModule, ContactActivityScoreComponent, ContactActivityScoreModule, ContextualMenuComponent, ContextualMenuModule, DocumentManagementItemComponent, DocumentManagementItemModule, DocumentManagementListComponent, DocumentManagementListModule, EmailValidator, EventSettingsMoreOptionsComponent, EventSettingsMoreOptionsModule, EventsSettingsPageComponent, EventsSettingsPageModule, FeedbackCardComponent, FeedbackCardListComponent, FeedbackCardListModule, FeedbackCardModule, FeedbackCardState, FeedbackDetailPageComponent, FeedbackDetailPageModule, FeedbackListPageComponent, FeedbackListPageModule, FeedbackLoginModalComponent, FeedbackLoginModalModule, FileUploadComponent, FileUploadModule, FileUploadV2Component, FileUploadV2Module, FilterAreaComponent, FilterAreaModule, FormattedCounterComponent, FormattedCounterModule, FrameworkModule, GridActionsComponent, GridActionsModule, GridCellClickableComponent, GridCellClickableModule, GridCellLoaderModule, GridComponent, GridControlsComponent, GridControlsModule, GridDownloadComponent, GridDownloadModule, GridLoadingCellComponent, GridModule, GridToggleCellRendererComponent, GridToggleCellRendererModule, H1Component, H1Module, H2Component, H2Module, H3Component, H3Module, H4Component, H4Module, H5Component, H5Module, H5WithIconComponent, H5WithIconModule, IconComponent, IconModule, IconWithTooltipComponent, IconWithTooltipModule, IconWrapperComponent, IconWrapperModule, Icons, InputCheckboxComponent, InputCheckboxListComponent, InputCheckboxListModule, InputCheckboxModule, InputChipsComponent, InputChipsModule, InputDropdownComponent, InputDropdownList, InputDropdownListItemModel, InputDropdownModule, InputRadioComponent, InputRadioModule, InputSearchCheckboxDropdownComponent, InputSearchCheckboxDropdownModule, InputTextComponent, InputTextModule, InputToggleComponent, InputToggleModule, JobListPageComponent, JobListPageModule, LibrariesPageComponent, LibrariesPageModule, LinkedinPremiumJobPostingsModalComponent, LinkedinPremiumJobPostingsModalModule, MoleculesModule, MultiSelectDataModule, MultiselectSearchCheckbox, NavigationLinkComponent, NavigationLinkModule, NotificationsComponent, NotificationsModule, OrganismsModule, OverflowTextComponent, OverflowTextModule, ParagraphComponent, ParagraphModule, PhaserCardComponent, PhaserCardModule, PhaserComponent, PhaserModule, PillComponent, PillModule, PillsComponent, PillsModule, PipeModule, RelevanceScoreComponent, RelevanceScoreModule, SettingListPageComponent, SettingListPageModule, SfxLoaderComponent, SfxLoaderModule, SfxPageLoaderComponent, SfxPageLoaderModule, SfxProgressBarComponent, SfxProgressBarModule, SidebarNavigationComponent, SidebarNavigationModule, ToasterAlertComponent, ToasterAlertModel, ToasterAlertModule, ToasterAlertType, TooltipWrapperComponent, TooltipWrapperModule, TrimIdPipe, TwoColumnFilterAreaComponent, TwoColumnFilterAreaModule, UploadResumeModalComponent, UploadResumeModalModule, VerticalSeparatorComponent, VerticalSeparatorModule, gridType };
|
|
6904
|
+
export { ActionBarComponent, ActionBarJobListComponent, ActionBarJobListModule, ActionBarModule, ActionBarSelectionCounterComponent, ActionBarSelectionCounterModule, ActivityScoreLevel, AdvanceFilterSelectedCounterComponent, AdvanceFilterSelectedCounterModule, AdvanceSearchModalComponent, AdvanceSearchModalModule, AdvertiseModalComponent, AdvertiseModalModule, AdvertisedJobPostingsListPageComponent, AdvertisedJobPostingsListPageModule, AdvertisedJobPostingsModalComponent, AdvertisedJobPostingsModalModule, AdvertisedJobsCostComponent, AdvertisedJobsCostModule, AlertDuration, AtomsModule, AvatarComponent, AvatarModule, BreadcrumbComponent, BreadcrumbModule, ButtonComponent, ButtonModule, ButtonV2Component, ButtonV2Module, CapitalizeFirstCharacterPipe, CardComponent, CardListComponent, CardListModule, CardModule, ConfirmationModalComponent, ConfirmationModalModule, ContactActivityScoreComponent, ContactActivityScoreModule, ContextualMenuComponent, ContextualMenuModule, DocumentManagementItemComponent, DocumentManagementItemModule, DocumentManagementListComponent, DocumentManagementListModule, EmailValidator, EventSettingsMoreOptionsComponent, EventSettingsMoreOptionsModule, EventsSettingsPageComponent, EventsSettingsPageModule, FeedbackCardComponent, FeedbackCardListComponent, FeedbackCardListModule, FeedbackCardModule, FeedbackCardState, FeedbackDetailPageComponent, FeedbackDetailPageModule, FeedbackListPageComponent, FeedbackListPageModule, FeedbackLoginModalComponent, FeedbackLoginModalModule, FileUploadComponent, FileUploadModule, FileUploadV2Component, FileUploadV2Module, FilterAreaComponent, FilterAreaModule, FormattedCounterComponent, FormattedCounterModule, FrameworkModule, GridActionsComponent, GridActionsModule, GridCellClickableComponent, GridCellClickableModule, GridCellLoaderModule, GridComponent, GridControlsComponent, GridControlsModule, GridDownloadComponent, GridDownloadModule, GridLoadingCellComponent, GridModule, GridToggleCellRendererComponent, GridToggleCellRendererModule, H1Component, H1Module, H2Component, H2Module, H3Component, H3Module, H4Component, H4Module, H5Component, H5Module, H5WithIconComponent, H5WithIconModule, IconComponent, IconModule, IconWithTooltipComponent, IconWithTooltipModule, IconWrapperComponent, IconWrapperModule, Icons, InputCheckboxComponent, InputCheckboxListComponent, InputCheckboxListModule, InputCheckboxModule, InputChipsComponent, InputChipsModule, InputDropdownComponent, InputDropdownList, InputDropdownListItemModel, InputDropdownModule, InputRadioComponent, InputRadioModule, InputSearchCheckboxDropdownComponent, InputSearchCheckboxDropdownModule, InputTextComponent, InputTextModule, InputToggleComponent, InputToggleModule, JobListPageComponent, JobListPageModule, LibrariesPageComponent, LibrariesPageModule, LinkedinPremiumJobPostingsModalComponent, LinkedinPremiumJobPostingsModalModule, MoleculesModule, MultiSelectDataModule, MultiselectSearchCheckbox, NavigationLinkComponent, NavigationLinkModule, NotificationsComponent, NotificationsModule, OrganismsModule, OverflowTextComponent, OverflowTextModule, ParagraphComponent, ParagraphModule, PhaserCardComponent, PhaserCardModule, PhaserComponent, PhaserModule, PillComponent, PillModule, PillsComponent, PillsModule, PipeModule, RelevanceScoreComponent, RelevanceScoreModule, SettingListPageComponent, SettingListPageModule, SfxLoaderComponent, SfxLoaderModule, SfxPageLoaderComponent, SfxPageLoaderModule, SfxProgressBarComponent, SfxProgressBarModule, SidebarNavigationComponent, SidebarNavigationModule, ToasterAlertComponent, ToasterAlertModel, ToasterAlertModule, ToasterAlertType, TooltipWrapperComponent, TooltipWrapperModule, TrimIdPipe, TwoColumnFilterAreaComponent, TwoColumnFilterAreaModule, UploadResumeModalComponent, UploadResumeModalModule, VerticalSeparatorComponent, VerticalSeparatorModule, gridType };
|
|
6853
6905
|
//# sourceMappingURL=symphony-talent-component-library.mjs.map
|