@symphony-talent/component-library 3.66.0 → 3.68.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/feedback-detail-interest-form/feedback-detail-interest-form.model.mjs +1 -1
- package/esm2020/lib/organisms/input-checkbox-list/input-checkbox-list.component.mjs +23 -0
- package/esm2020/lib/organisms/input-checkbox-list/input-checkbox-list.module.mjs +19 -0
- package/esm2020/lib/organisms/organisms.module.mjs +8 -4
- package/esm2020/lib/pages/feedback-detail-page/feedback-detail-page.component.mjs +4 -4
- package/esm2020/lib/pages/modals/advance-search-modal/advance-search-modal.component.mjs +44 -0
- package/esm2020/lib/pages/modals/advance-search-modal/advance-search-modal.module.mjs +58 -0
- package/esm2020/projects/component-library/lib/organisms/feedback-detail-interest-form/feedback-detail-interest-form.model.mjs +1 -1
- package/esm2020/projects/component-library/lib/organisms/input-checkbox-list/input-checkbox-list.component.mjs +23 -0
- package/esm2020/projects/component-library/lib/organisms/input-checkbox-list/input-checkbox-list.module.mjs +19 -0
- package/esm2020/projects/component-library/lib/organisms/organisms.module.mjs +8 -4
- package/esm2020/projects/component-library/lib/pages/feedback-detail-page/feedback-detail-page.component.mjs +4 -4
- package/esm2020/projects/component-library/lib/pages/modals/advance-search-modal/advance-search-modal.component.mjs +44 -0
- package/esm2020/projects/component-library/lib/pages/modals/advance-search-modal/advance-search-modal.module.mjs +58 -0
- package/esm2020/projects/component-library/public-api.mjs +5 -1
- package/esm2020/public-api.mjs +5 -1
- package/fesm2015/symphony-talent-component-library-projects-component-library.mjs +122 -7
- package/fesm2015/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
- package/fesm2015/symphony-talent-component-library.mjs +122 -7
- package/fesm2015/symphony-talent-component-library.mjs.map +1 -1
- package/fesm2020/symphony-talent-component-library-projects-component-library.mjs +122 -7
- package/fesm2020/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
- package/fesm2020/symphony-talent-component-library.mjs +122 -7
- package/fesm2020/symphony-talent-component-library.mjs.map +1 -1
- package/lib/organisms/feedback-detail-interest-form/feedback-detail-interest-form.model.d.ts +2 -2
- package/lib/organisms/input-checkbox-list/input-checkbox-list.component.d.ts +11 -0
- package/lib/organisms/input-checkbox-list/input-checkbox-list.module.d.ts +9 -0
- package/lib/organisms/organisms.module.d.ts +2 -1
- package/lib/pages/feedback-detail-page/feedback-detail-page.component.d.ts +1 -1
- package/lib/pages/modals/advance-search-modal/advance-search-modal.component.d.ts +16 -0
- package/lib/pages/modals/advance-search-modal/advance-search-modal.module.d.ts +17 -0
- package/package.json +1 -1
- package/projects/component-library/lib/organisms/feedback-detail-interest-form/feedback-detail-interest-form.model.d.ts +2 -2
- package/projects/component-library/lib/organisms/input-checkbox-list/input-checkbox-list.component.d.ts +11 -0
- package/projects/component-library/lib/organisms/input-checkbox-list/input-checkbox-list.module.d.ts +9 -0
- package/projects/component-library/lib/organisms/organisms.module.d.ts +2 -1
- package/projects/component-library/lib/pages/feedback-detail-page/feedback-detail-page.component.d.ts +1 -1
- package/projects/component-library/lib/pages/modals/advance-search-modal/advance-search-modal.component.d.ts +16 -0
- package/projects/component-library/lib/pages/modals/advance-search-modal/advance-search-modal.module.d.ts +17 -0
- package/projects/component-library/public-api.d.ts +4 -0
- package/public-api.d.ts +4 -0
|
@@ -3751,6 +3751,39 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
|
|
|
3751
3751
|
}]
|
|
3752
3752
|
}] });
|
|
3753
3753
|
|
|
3754
|
+
class InputCheckboxListComponent {
|
|
3755
|
+
constructor() {
|
|
3756
|
+
this.checkboxClicked = new EventEmitter();
|
|
3757
|
+
}
|
|
3758
|
+
onCheckboxClick(checkboxSelection) {
|
|
3759
|
+
this.checkboxClicked.emit(checkboxSelection);
|
|
3760
|
+
}
|
|
3761
|
+
}
|
|
3762
|
+
InputCheckboxListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputCheckboxListComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
3763
|
+
InputCheckboxListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: InputCheckboxListComponent, selector: "symphony-input-checkbox-list", inputs: { checkboxList: "checkboxList" }, outputs: { checkboxClicked: "checkboxClicked" }, ngImport: i0, template: "<div *ngFor=\"let checkList of checkboxList\">\n <symphony-input-checkbox\n class=\"sfx-d-flex\"\n [label]=\"checkList.label\"\n [isActive]=\"checkList.isActive\"\n (clicked)=\"onCheckboxClick($event)\"\n ></symphony-input-checkbox>\n</div>\n", styles: [""], components: [{ type: InputCheckboxComponent, selector: "symphony-input-checkbox", inputs: ["isActive", "label", "isRequired"], outputs: ["clicked"] }], directives: [{ type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }] });
|
|
3764
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputCheckboxListComponent, decorators: [{
|
|
3765
|
+
type: Component,
|
|
3766
|
+
args: [{ selector: 'symphony-input-checkbox-list', template: "<div *ngFor=\"let checkList of checkboxList\">\n <symphony-input-checkbox\n class=\"sfx-d-flex\"\n [label]=\"checkList.label\"\n [isActive]=\"checkList.isActive\"\n (clicked)=\"onCheckboxClick($event)\"\n ></symphony-input-checkbox>\n</div>\n", styles: [""] }]
|
|
3767
|
+
}], ctorParameters: function () { return []; }, propDecorators: { checkboxList: [{
|
|
3768
|
+
type: Input
|
|
3769
|
+
}], checkboxClicked: [{
|
|
3770
|
+
type: Output
|
|
3771
|
+
}] } });
|
|
3772
|
+
|
|
3773
|
+
class InputCheckboxListModule {
|
|
3774
|
+
}
|
|
3775
|
+
InputCheckboxListModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputCheckboxListModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
3776
|
+
InputCheckboxListModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputCheckboxListModule, declarations: [InputCheckboxListComponent], imports: [CommonModule, InputCheckboxModule], exports: [InputCheckboxListComponent] });
|
|
3777
|
+
InputCheckboxListModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputCheckboxListModule, imports: [[CommonModule, InputCheckboxModule]] });
|
|
3778
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputCheckboxListModule, decorators: [{
|
|
3779
|
+
type: NgModule,
|
|
3780
|
+
args: [{
|
|
3781
|
+
declarations: [InputCheckboxListComponent],
|
|
3782
|
+
imports: [CommonModule, InputCheckboxModule],
|
|
3783
|
+
exports: [InputCheckboxListComponent],
|
|
3784
|
+
}]
|
|
3785
|
+
}] });
|
|
3786
|
+
|
|
3754
3787
|
class NoteComponent {
|
|
3755
3788
|
constructor() {
|
|
3756
3789
|
this.noteModel = {
|
|
@@ -4859,7 +4892,8 @@ OrganismsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version
|
|
|
4859
4892
|
GridDownloadModule,
|
|
4860
4893
|
ActionBarModule,
|
|
4861
4894
|
ActionBarJobListModule,
|
|
4862
|
-
DocumentManagementListModule
|
|
4895
|
+
DocumentManagementListModule,
|
|
4896
|
+
InputCheckboxListModule] });
|
|
4863
4897
|
OrganismsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: OrganismsModule, imports: [[
|
|
4864
4898
|
CommonModule,
|
|
4865
4899
|
NoteListModule,
|
|
@@ -4878,7 +4912,8 @@ OrganismsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version
|
|
|
4878
4912
|
GridDownloadModule,
|
|
4879
4913
|
ActionBarModule,
|
|
4880
4914
|
ActionBarJobListModule,
|
|
4881
|
-
DocumentManagementListModule
|
|
4915
|
+
DocumentManagementListModule,
|
|
4916
|
+
InputCheckboxListModule
|
|
4882
4917
|
]] });
|
|
4883
4918
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: OrganismsModule, decorators: [{
|
|
4884
4919
|
type: NgModule,
|
|
@@ -4902,7 +4937,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
|
|
|
4902
4937
|
GridDownloadModule,
|
|
4903
4938
|
ActionBarModule,
|
|
4904
4939
|
ActionBarJobListModule,
|
|
4905
|
-
DocumentManagementListModule
|
|
4940
|
+
DocumentManagementListModule,
|
|
4941
|
+
InputCheckboxListModule
|
|
4906
4942
|
]
|
|
4907
4943
|
}]
|
|
4908
4944
|
}] });
|
|
@@ -6010,17 +6046,17 @@ class FeedbackDetailPageComponent {
|
|
|
6010
6046
|
this.saveFeedback.emit(feedbackSaveEvent);
|
|
6011
6047
|
}
|
|
6012
6048
|
onBackClick() {
|
|
6013
|
-
this.back.emit(
|
|
6049
|
+
this.back.emit();
|
|
6014
6050
|
}
|
|
6015
6051
|
onPreviewClick() {
|
|
6016
6052
|
this.previewClicked.emit('clicked');
|
|
6017
6053
|
}
|
|
6018
6054
|
}
|
|
6019
6055
|
FeedbackDetailPageComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackDetailPageComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
6020
|
-
FeedbackDetailPageComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: FeedbackDetailPageComponent, selector: "symphony-feedback-detail-page", inputs: { model: "model" }, outputs: { back: "back", previewClicked: "previewClicked", saveFeedback: "saveFeedback" }, ngImport: i0, template: "<symphony-feedback-detail-template *ngIf=\"model\">\n <symphony-icon\n sfx-back-button\n [icon]=\"'si-menu-return'\"\n [size]=\"'20px'\"\n (clicked)=\"onBackClick()\"\n ></symphony-icon>\n\n <symphony-feedback-detail-header\n sfx-header\n [model]=\"model.header\"\n (previewClicked)=\"onPreviewClick()\"\n >\n </symphony-feedback-detail-header>\n\n <symphony-feedback-detail-candidate-info\n sfx-left-column\n [historyList]=\"model.historyList\"\n [educationList]=\"model.educationList\"\n [certificationList]=\"model.certificationList\"\n ></symphony-feedback-detail-candidate-info>\n\n <symphony-feedback-detail-interest-form\n sfx-right-column\n [model]=\"model.interest\"\n (save)=\"onSaveFeedback($event)\"\n ></symphony-feedback-detail-interest-form>\n</symphony-feedback-detail-template>\n", styles: [""], components: [{ type: FeedbackDetailTemplateComponent, selector: "symphony-feedback-detail-template" }, { type: IconComponent, selector: "symphony-icon", inputs: ["icon", "isSecondary", "size", "iconColor"], outputs: ["clicked"] }, { type: FeedbackDetailHeaderComponent, selector: "symphony-feedback-detail-header", inputs: ["model"], outputs: ["previewClicked"] }, { type: FeedbackDetailCandidateInfoComponent, selector: "symphony-feedback-detail-candidate-info", inputs: ["historyList", "educationList", "certificationList"] }, { type: FeedbackDetailInterestFormComponent, selector: "symphony-feedback-detail-interest-form", inputs: ["model"], outputs: ["cancel", "save"] }], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
6056
|
+
FeedbackDetailPageComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: FeedbackDetailPageComponent, selector: "symphony-feedback-detail-page", inputs: { model: "model" }, outputs: { back: "back", previewClicked: "previewClicked", saveFeedback: "saveFeedback" }, ngImport: i0, template: "<symphony-feedback-detail-template *ngIf=\"model\">\n <symphony-icon\n sfx-back-button\n [icon]=\"'si-menu-return'\"\n [size]=\"'20px'\"\n (clicked)=\"onBackClick()\"\n ></symphony-icon>\n\n <symphony-feedback-detail-header\n sfx-header\n [model]=\"model.header\"\n (previewClicked)=\"onPreviewClick()\"\n >\n </symphony-feedback-detail-header>\n\n <symphony-feedback-detail-candidate-info\n sfx-left-column\n [historyList]=\"model.historyList\"\n [educationList]=\"model.educationList\"\n [certificationList]=\"model.certificationList\"\n ></symphony-feedback-detail-candidate-info>\n\n <symphony-feedback-detail-interest-form\n sfx-right-column\n [model]=\"model.interest\"\n (save)=\"onSaveFeedback($event)\"\n (cancel)=\"onBackClick()\"\n ></symphony-feedback-detail-interest-form>\n</symphony-feedback-detail-template>\n", styles: [""], components: [{ type: FeedbackDetailTemplateComponent, selector: "symphony-feedback-detail-template" }, { type: IconComponent, selector: "symphony-icon", inputs: ["icon", "isSecondary", "size", "iconColor"], outputs: ["clicked"] }, { type: FeedbackDetailHeaderComponent, selector: "symphony-feedback-detail-header", inputs: ["model"], outputs: ["previewClicked"] }, { type: FeedbackDetailCandidateInfoComponent, selector: "symphony-feedback-detail-candidate-info", inputs: ["historyList", "educationList", "certificationList"] }, { type: FeedbackDetailInterestFormComponent, selector: "symphony-feedback-detail-interest-form", inputs: ["model"], outputs: ["cancel", "save"] }], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
6021
6057
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackDetailPageComponent, decorators: [{
|
|
6022
6058
|
type: Component,
|
|
6023
|
-
args: [{ selector: 'symphony-feedback-detail-page', template: "<symphony-feedback-detail-template *ngIf=\"model\">\n <symphony-icon\n sfx-back-button\n [icon]=\"'si-menu-return'\"\n [size]=\"'20px'\"\n (clicked)=\"onBackClick()\"\n ></symphony-icon>\n\n <symphony-feedback-detail-header\n sfx-header\n [model]=\"model.header\"\n (previewClicked)=\"onPreviewClick()\"\n >\n </symphony-feedback-detail-header>\n\n <symphony-feedback-detail-candidate-info\n sfx-left-column\n [historyList]=\"model.historyList\"\n [educationList]=\"model.educationList\"\n [certificationList]=\"model.certificationList\"\n ></symphony-feedback-detail-candidate-info>\n\n <symphony-feedback-detail-interest-form\n sfx-right-column\n [model]=\"model.interest\"\n (save)=\"onSaveFeedback($event)\"\n ></symphony-feedback-detail-interest-form>\n</symphony-feedback-detail-template>\n", styles: [""] }]
|
|
6059
|
+
args: [{ selector: 'symphony-feedback-detail-page', template: "<symphony-feedback-detail-template *ngIf=\"model\">\n <symphony-icon\n sfx-back-button\n [icon]=\"'si-menu-return'\"\n [size]=\"'20px'\"\n (clicked)=\"onBackClick()\"\n ></symphony-icon>\n\n <symphony-feedback-detail-header\n sfx-header\n [model]=\"model.header\"\n (previewClicked)=\"onPreviewClick()\"\n >\n </symphony-feedback-detail-header>\n\n <symphony-feedback-detail-candidate-info\n sfx-left-column\n [historyList]=\"model.historyList\"\n [educationList]=\"model.educationList\"\n [certificationList]=\"model.certificationList\"\n ></symphony-feedback-detail-candidate-info>\n\n <symphony-feedback-detail-interest-form\n sfx-right-column\n [model]=\"model.interest\"\n (save)=\"onSaveFeedback($event)\"\n (cancel)=\"onBackClick()\"\n ></symphony-feedback-detail-interest-form>\n</symphony-feedback-detail-template>\n", styles: [""] }]
|
|
6024
6060
|
}], ctorParameters: function () { return []; }, propDecorators: { model: [{
|
|
6025
6061
|
type: Input
|
|
6026
6062
|
}], back: [{
|
|
@@ -6468,6 +6504,85 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
|
|
|
6468
6504
|
}]
|
|
6469
6505
|
}] });
|
|
6470
6506
|
|
|
6507
|
+
class AdvanceSearchModalComponent {
|
|
6508
|
+
constructor() {
|
|
6509
|
+
this.keywordSearchChange = new EventEmitter();
|
|
6510
|
+
this.closeButtonClicked = new EventEmitter();
|
|
6511
|
+
this.checkboxClicked = new EventEmitter();
|
|
6512
|
+
}
|
|
6513
|
+
onCheckboxClicked(checkboxSelection) {
|
|
6514
|
+
this.checkboxClicked.emit(checkboxSelection);
|
|
6515
|
+
}
|
|
6516
|
+
onCloseButtonClick() {
|
|
6517
|
+
this.closeButtonClicked.emit();
|
|
6518
|
+
}
|
|
6519
|
+
onKeywordSearch(keyword) {
|
|
6520
|
+
this.keywordSearchChange.emit(keyword);
|
|
6521
|
+
}
|
|
6522
|
+
onButtonClick(text) {
|
|
6523
|
+
this.closeButtonClicked.emit(text);
|
|
6524
|
+
}
|
|
6525
|
+
}
|
|
6526
|
+
AdvanceSearchModalComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AdvanceSearchModalComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
6527
|
+
AdvanceSearchModalComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: AdvanceSearchModalComponent, selector: "symphony-advance-search-modal", inputs: { checkboxList: "checkboxList" }, outputs: { keywordSearchChange: "keywordSearchChange", closeButtonClicked: "closeButtonClicked", checkboxClicked: "checkboxClicked" }, ngImport: i0, template: "<symphony-two-column-modal-template [hideSubtitle]=\"true\">\n <symphony-h4 sfx-modal-title>Select your filters</symphony-h4>\n <symphony-icon\n sfx-close-button\n [icon]=\"'si-close-modal'\"\n (clicked)=\"onCloseButtonClick()\"\n ></symphony-icon>\n\n <symphony-two-column-body-template [showHeader]=\"true\" sfx-modal-body-area>\n <symphony-input-text\n sfx-left-col-header\n [noMargin]=\"true\"\n [placeholder]=\"'Search Data Sets'\"\n [icon]=\"'si-search-new'\"\n (textChange)=\"onKeywordSearch($event)\"\n >\n </symphony-input-text>\n\n <symphony-paragraph\n class=\"sfx-d-flex sfx-mt-10\"\n sfx-right-col-header\n [isSecondary]=\"false\"\n [isFontBold]=\"true\"\n >Active Filters</symphony-paragraph>\n\n <div class=\"select-list\" sfx-left-column [style.height.px]=\"getElementHeight.offsetHeight\">\n <symphony-input-checkbox-list\n [checkboxList]=\"checkboxList\"\n (checkboxClicked)=\"onCheckboxClicked($event)\"\n ></symphony-input-checkbox-list>\n </div>\n \n <div sfx-right-column class=\"sfx-pr-10\" #getElementHeight>\n <div>\n <ng-content ngProjectAs=\"[filter1]\" select=\"[filter1]\"></ng-content>\n </div>\n </div>\n </symphony-two-column-body-template>\n <symphony-button\n sfx-button-secondary\n [text]=\"'See Results'\"\n [isSecondary]=\"true\"\n [isInverse]=\"false\"\n (clicked)=\"onButtonClick($event)\"\n ></symphony-button>\n</symphony-two-column-modal-template>\n", styles: [".select-list{min-height:450px;overflow-y:auto}::-webkit-scrollbar{width:10px}::-webkit-scrollbar-track{background:#fff}::-webkit-scrollbar-thumb{background:#d4d4d4;border-radius:4px}::-webkit-scrollbar-thumb:hover{background:#555}\n"], components: [{ type: TwoColumnModalTemplateComponent, selector: "symphony-two-column-modal-template", inputs: ["hideFooter", "hideSubtitle"] }, { type: H4Component, selector: "symphony-h4", inputs: ["text", "isSecondary"] }, { type: IconComponent, selector: "symphony-icon", inputs: ["icon", "isSecondary", "size", "iconColor"], outputs: ["clicked"] }, { type: TwoColumnBodyTemplateComponent, selector: "symphony-two-column-body-template", inputs: ["showHeader"] }, { type: InputTextComponent, selector: "symphony-input-text", inputs: ["placeholder", "icon", "label", "isInverse", "noMargin"], outputs: ["textChange"] }, { type: ParagraphComponent, selector: "symphony-paragraph", inputs: ["text", "isSecondary", "isFontBold"] }, { type: InputCheckboxListComponent, selector: "symphony-input-checkbox-list", inputs: ["checkboxList"], outputs: ["checkboxClicked"] }, { type: ButtonComponent, selector: "symphony-button", inputs: ["text", "disabled", "isSecondary", "isInverse"], outputs: ["clicked"] }] });
|
|
6528
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AdvanceSearchModalComponent, decorators: [{
|
|
6529
|
+
type: Component,
|
|
6530
|
+
args: [{ selector: 'symphony-advance-search-modal', template: "<symphony-two-column-modal-template [hideSubtitle]=\"true\">\n <symphony-h4 sfx-modal-title>Select your filters</symphony-h4>\n <symphony-icon\n sfx-close-button\n [icon]=\"'si-close-modal'\"\n (clicked)=\"onCloseButtonClick()\"\n ></symphony-icon>\n\n <symphony-two-column-body-template [showHeader]=\"true\" sfx-modal-body-area>\n <symphony-input-text\n sfx-left-col-header\n [noMargin]=\"true\"\n [placeholder]=\"'Search Data Sets'\"\n [icon]=\"'si-search-new'\"\n (textChange)=\"onKeywordSearch($event)\"\n >\n </symphony-input-text>\n\n <symphony-paragraph\n class=\"sfx-d-flex sfx-mt-10\"\n sfx-right-col-header\n [isSecondary]=\"false\"\n [isFontBold]=\"true\"\n >Active Filters</symphony-paragraph>\n\n <div class=\"select-list\" sfx-left-column [style.height.px]=\"getElementHeight.offsetHeight\">\n <symphony-input-checkbox-list\n [checkboxList]=\"checkboxList\"\n (checkboxClicked)=\"onCheckboxClicked($event)\"\n ></symphony-input-checkbox-list>\n </div>\n \n <div sfx-right-column class=\"sfx-pr-10\" #getElementHeight>\n <div>\n <ng-content ngProjectAs=\"[filter1]\" select=\"[filter1]\"></ng-content>\n </div>\n </div>\n </symphony-two-column-body-template>\n <symphony-button\n sfx-button-secondary\n [text]=\"'See Results'\"\n [isSecondary]=\"true\"\n [isInverse]=\"false\"\n (clicked)=\"onButtonClick($event)\"\n ></symphony-button>\n</symphony-two-column-modal-template>\n", styles: [".select-list{min-height:450px;overflow-y:auto}::-webkit-scrollbar{width:10px}::-webkit-scrollbar-track{background:#fff}::-webkit-scrollbar-thumb{background:#d4d4d4;border-radius:4px}::-webkit-scrollbar-thumb:hover{background:#555}\n"] }]
|
|
6531
|
+
}], ctorParameters: function () { return []; }, propDecorators: { checkboxList: [{
|
|
6532
|
+
type: Input
|
|
6533
|
+
}], keywordSearchChange: [{
|
|
6534
|
+
type: Output
|
|
6535
|
+
}], closeButtonClicked: [{
|
|
6536
|
+
type: Output
|
|
6537
|
+
}], checkboxClicked: [{
|
|
6538
|
+
type: Output
|
|
6539
|
+
}] } });
|
|
6540
|
+
|
|
6541
|
+
class AdvanceSearchModalModule {
|
|
6542
|
+
}
|
|
6543
|
+
AdvanceSearchModalModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AdvanceSearchModalModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
6544
|
+
AdvanceSearchModalModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AdvanceSearchModalModule, declarations: [AdvanceSearchModalComponent], imports: [CommonModule,
|
|
6545
|
+
TwoColumnModalModule,
|
|
6546
|
+
TwoColumnBodyTemplateModule,
|
|
6547
|
+
H4Module,
|
|
6548
|
+
ParagraphModule,
|
|
6549
|
+
ButtonModule,
|
|
6550
|
+
IconModule,
|
|
6551
|
+
InputCheckboxListModule,
|
|
6552
|
+
InputTextModule,
|
|
6553
|
+
PlaceholderModule], exports: [AdvanceSearchModalComponent] });
|
|
6554
|
+
AdvanceSearchModalModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AdvanceSearchModalModule, imports: [[
|
|
6555
|
+
CommonModule,
|
|
6556
|
+
TwoColumnModalModule,
|
|
6557
|
+
TwoColumnBodyTemplateModule,
|
|
6558
|
+
H4Module,
|
|
6559
|
+
ParagraphModule,
|
|
6560
|
+
ButtonModule,
|
|
6561
|
+
IconModule,
|
|
6562
|
+
InputCheckboxListModule,
|
|
6563
|
+
InputTextModule,
|
|
6564
|
+
PlaceholderModule
|
|
6565
|
+
]] });
|
|
6566
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AdvanceSearchModalModule, decorators: [{
|
|
6567
|
+
type: NgModule,
|
|
6568
|
+
args: [{
|
|
6569
|
+
declarations: [AdvanceSearchModalComponent],
|
|
6570
|
+
imports: [
|
|
6571
|
+
CommonModule,
|
|
6572
|
+
TwoColumnModalModule,
|
|
6573
|
+
TwoColumnBodyTemplateModule,
|
|
6574
|
+
H4Module,
|
|
6575
|
+
ParagraphModule,
|
|
6576
|
+
ButtonModule,
|
|
6577
|
+
IconModule,
|
|
6578
|
+
InputCheckboxListModule,
|
|
6579
|
+
InputTextModule,
|
|
6580
|
+
PlaceholderModule
|
|
6581
|
+
],
|
|
6582
|
+
exports: [AdvanceSearchModalComponent],
|
|
6583
|
+
}]
|
|
6584
|
+
}] });
|
|
6585
|
+
|
|
6471
6586
|
class ContactListTemplateComponent {
|
|
6472
6587
|
constructor() { }
|
|
6473
6588
|
}
|
|
@@ -6621,5 +6736,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
|
|
|
6621
6736
|
* Generated bundle index. Do not edit.
|
|
6622
6737
|
*/
|
|
6623
6738
|
|
|
6624
|
-
export { ActionBarComponent, ActionBarJobListComponent, ActionBarJobListModule, ActionBarModule, ActionBarSelectionCounterComponent, ActionBarSelectionCounterModule, ActivityScoreLevel, 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, 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, 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 };
|
|
6739
|
+
export { ActionBarComponent, ActionBarJobListComponent, ActionBarJobListModule, ActionBarModule, ActionBarSelectionCounterComponent, ActionBarSelectionCounterModule, ActivityScoreLevel, 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, 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 };
|
|
6625
6740
|
//# sourceMappingURL=symphony-talent-component-library.mjs.map
|