@symphony-talent/component-library 3.4.0 → 3.5.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/input-editable-text/input-editable-text.component.mjs +37 -0
- package/esm2020/lib/atoms/input-editable-text/input-editable-text.model.mjs +2 -0
- package/esm2020/lib/atoms/input-editable-text/input-editable-text.module.mjs +21 -0
- package/esm2020/lib/molecules/advertise-postingboard-selection-item/advertise-postingboard-selection-item.component.mjs +46 -0
- package/esm2020/lib/molecules/advertise-postingboard-selection-item/advertise-postingboard-selection-item.module.mjs +20 -0
- package/esm2020/lib/organisms/advertise-postingboard-selection-list/advertise-postingboard-selection-list.component.mjs +16 -0
- package/esm2020/lib/organisms/advertise-postingboard-selection-list/advertise-postingboard-selection-list.module.mjs +19 -0
- package/esm2020/lib/pages/modals/advertise-modal/advertise-modal.component.mjs +11 -11
- package/esm2020/lib/pages/modals/advertise-modal/advertise-modal.module.mjs +6 -2
- package/esm2020/projects/component-library/lib/atoms/input-editable-text/input-editable-text.component.mjs +37 -0
- package/esm2020/projects/component-library/lib/atoms/input-editable-text/input-editable-text.model.mjs +2 -0
- package/esm2020/projects/component-library/lib/atoms/input-editable-text/input-editable-text.module.mjs +21 -0
- package/esm2020/projects/component-library/lib/molecules/advertise-postingboard-selection-item/advertise-postingboard-selection-item.component.mjs +46 -0
- package/esm2020/projects/component-library/lib/molecules/advertise-postingboard-selection-item/advertise-postingboard-selection-item.module.mjs +20 -0
- package/esm2020/projects/component-library/lib/organisms/advertise-postingboard-selection-list/advertise-postingboard-selection-list.component.mjs +16 -0
- package/esm2020/projects/component-library/lib/organisms/advertise-postingboard-selection-list/advertise-postingboard-selection-list.module.mjs +19 -0
- package/esm2020/projects/component-library/lib/pages/modals/advertise-modal/advertise-modal.component.mjs +11 -11
- package/esm2020/projects/component-library/lib/pages/modals/advertise-modal/advertise-modal.module.mjs +6 -2
- package/fesm2015/symphony-talent-component-library-projects-component-library.mjs +138 -8
- package/fesm2015/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
- package/fesm2015/symphony-talent-component-library.mjs +138 -8
- package/fesm2015/symphony-talent-component-library.mjs.map +1 -1
- package/fesm2020/symphony-talent-component-library-projects-component-library.mjs +137 -8
- package/fesm2020/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
- package/fesm2020/symphony-talent-component-library.mjs +137 -8
- package/fesm2020/symphony-talent-component-library.mjs.map +1 -1
- package/lib/atoms/input-editable-text/input-editable-text.component.d.ts +16 -0
- package/lib/atoms/input-editable-text/input-editable-text.model.d.ts +7 -0
- package/lib/atoms/input-editable-text/input-editable-text.module.d.ts +11 -0
- package/lib/molecules/advertise-postingboard-selection-item/advertise-postingboard-selection-item.component.d.ts +18 -0
- package/lib/molecules/advertise-postingboard-selection-item/advertise-postingboard-selection-item.module.d.ts +10 -0
- package/lib/organisms/advertise-postingboard-selection-list/advertise-postingboard-selection-list.component.d.ts +8 -0
- package/lib/organisms/advertise-postingboard-selection-list/advertise-postingboard-selection-list.module.d.ts +9 -0
- package/lib/pages/modals/advertise-modal/advertise-modal.component.d.ts +6 -5
- package/lib/pages/modals/advertise-modal/advertise-modal.module.d.ts +2 -1
- package/package.json +1 -1
- package/projects/component-library/global.scss +0 -225
- package/projects/component-library/lib/atoms/input-editable-text/input-editable-text.component.d.ts +16 -0
- package/projects/component-library/lib/atoms/input-editable-text/input-editable-text.model.d.ts +7 -0
- package/projects/component-library/lib/atoms/input-editable-text/input-editable-text.module.d.ts +11 -0
- package/projects/component-library/lib/molecules/advertise-postingboard-selection-item/advertise-postingboard-selection-item.component.d.ts +18 -0
- package/projects/component-library/lib/molecules/advertise-postingboard-selection-item/advertise-postingboard-selection-item.module.d.ts +10 -0
- package/projects/component-library/lib/organisms/advertise-postingboard-selection-list/advertise-postingboard-selection-list.component.d.ts +8 -0
- package/projects/component-library/lib/organisms/advertise-postingboard-selection-list/advertise-postingboard-selection-list.module.d.ts +9 -0
- package/projects/component-library/lib/pages/modals/advertise-modal/advertise-modal.component.d.ts +6 -5
- package/projects/component-library/lib/pages/modals/advertise-modal/advertise-modal.module.d.ts +2 -1
|
@@ -7,6 +7,7 @@ import { BsDropdownModule } from 'ngx-bootstrap/dropdown';
|
|
|
7
7
|
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
|
|
8
8
|
import * as i1$2 from 'ag-grid-angular';
|
|
9
9
|
import { AgGridModule } from 'ag-grid-angular';
|
|
10
|
+
import * as i4 from '@angular/forms';
|
|
10
11
|
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
|
|
11
12
|
import { Subject, timer } from 'rxjs';
|
|
12
13
|
import { debounceTime, distinctUntilChanged, delay } from 'rxjs/operators';
|
|
@@ -2943,6 +2944,91 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
|
|
|
2943
2944
|
args: [{ selector: 'symphony-two-column-body-template', template: "<!-- filter area -->\n\n<div class=\"modal-header sfx-p-30\">\n <div class=\"col-headers row\">\n <div class=\"left-col-header col-xs-6 col-sm-6 col-md-6 sfx-pr-30\">\n <ng-content select=\"[sfx-left-col-header]\"></ng-content>\n </div>\n <div class=\"right-col-header col-xs-6 col-sm-6 col-md-6 sfx-pl-30\">\n <ng-content select=\"[sfx-right-col-header]\"></ng-content>\n </div>\n </div>\n</div>\n<!-- main body -->\n<div class=\"modal-body sfx-px-0\">\n <div class=\"row\">\n <div class=\"sfx-checkbox-list col-xs-12 col-sm-6 col-md-6 sfx-p-30\">\n <ng-content select=\"[sfx-left-column]\"></ng-content>\n </div>\n <div class=\"sfx-price-totals col-xs-12 col-sm-6 col-md-6 sfx-p-30\">\n <ng-content select=\"[sfx-right-column]\"></ng-content>\n </div>\n </div>\n</div>\n", styles: [".sfx-checkbox-list{border-right:1px solid #e5e5e5}\n"] }]
|
|
2944
2945
|
}], ctorParameters: function () { return []; } });
|
|
2945
2946
|
|
|
2947
|
+
class InputEditableTextComponent {
|
|
2948
|
+
constructor() {
|
|
2949
|
+
this.type = 'number';
|
|
2950
|
+
this.confirm = new EventEmitter();
|
|
2951
|
+
}
|
|
2952
|
+
onEditClick() {
|
|
2953
|
+
this.model.isInEditMode = true;
|
|
2954
|
+
this.previousValue = this.model.value;
|
|
2955
|
+
}
|
|
2956
|
+
onConfirmClick() {
|
|
2957
|
+
this.model.isInEditMode = false;
|
|
2958
|
+
this.confirm.emit(this.model);
|
|
2959
|
+
}
|
|
2960
|
+
onCloseClick() {
|
|
2961
|
+
this.model.value = this.previousValue;
|
|
2962
|
+
this.model.isInEditMode = false;
|
|
2963
|
+
}
|
|
2964
|
+
}
|
|
2965
|
+
InputEditableTextComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputEditableTextComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
2966
|
+
InputEditableTextComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: InputEditableTextComponent, selector: "symphony-input-editable-text", inputs: { model: "model", type: "type" }, outputs: { confirm: "confirm" }, ngImport: i0, template: "<div *ngIf=\"model\">\n <div *ngIf=\"!model.isInEditMode\">\n <div class=\"flex\">\n <div>\n <symphony-paragraph\n >{{ model.inputMask }}{{ model.value }}</symphony-paragraph\n >\n </div>\n <div *ngIf=\"model.isEditable\" (click)=\"onEditClick()\" class=\"sfx-pl-10\">\n <symphony-icon [icon]=\"'si-edit'\" [size]=\"'14px'\"></symphony-icon>\n </div>\n <div *ngIf=\"!model.isEditable\" class=\"no-icon-padding\"></div>\n </div>\n </div>\n <div *ngIf=\"model.isInEditMode\">\n <span class=\"sfx-pr-10\"\n >{{ model.inputMask }}<input type=\"{{ type }}\" [(ngModel)]=\"model.value\"\n /></span>\n <span\n ><symphony-icon\n [icon]=\"'si-confirmation'\"\n [size]=\"'14px'\"\n (click)=\"onConfirmClick()\"\n ></symphony-icon\n ></span>\n <span\n ><symphony-icon\n [icon]=\"'si-close-modal'\"\n [size]=\"'14px'\"\n (click)=\"onCloseClick()\"\n ></symphony-icon\n ></span>\n </div>\n</div>\n", styles: ["input::-webkit-outer-spin-button,input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}input[type=number]{-moz-appearance:textfield;padding:0}input{border-width:0px;border:none;text-align:right;width:21px}input:focus{outline:none}.flex{display:flex}.no-icon-padding{padding-right:23px}\n"], components: [{ type: ParagraphComponent, selector: "symphony-paragraph", inputs: ["text", "isSecondary"] }, { type: IconComponent, selector: "symphony-icon", inputs: ["icon", "isSecondary", "size", "iconColor"], outputs: ["clicked"] }], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i4.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { type: i4.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { type: i4.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }] });
|
|
2967
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputEditableTextComponent, decorators: [{
|
|
2968
|
+
type: Component,
|
|
2969
|
+
args: [{ selector: 'symphony-input-editable-text', template: "<div *ngIf=\"model\">\n <div *ngIf=\"!model.isInEditMode\">\n <div class=\"flex\">\n <div>\n <symphony-paragraph\n >{{ model.inputMask }}{{ model.value }}</symphony-paragraph\n >\n </div>\n <div *ngIf=\"model.isEditable\" (click)=\"onEditClick()\" class=\"sfx-pl-10\">\n <symphony-icon [icon]=\"'si-edit'\" [size]=\"'14px'\"></symphony-icon>\n </div>\n <div *ngIf=\"!model.isEditable\" class=\"no-icon-padding\"></div>\n </div>\n </div>\n <div *ngIf=\"model.isInEditMode\">\n <span class=\"sfx-pr-10\"\n >{{ model.inputMask }}<input type=\"{{ type }}\" [(ngModel)]=\"model.value\"\n /></span>\n <span\n ><symphony-icon\n [icon]=\"'si-confirmation'\"\n [size]=\"'14px'\"\n (click)=\"onConfirmClick()\"\n ></symphony-icon\n ></span>\n <span\n ><symphony-icon\n [icon]=\"'si-close-modal'\"\n [size]=\"'14px'\"\n (click)=\"onCloseClick()\"\n ></symphony-icon\n ></span>\n </div>\n</div>\n", styles: ["input::-webkit-outer-spin-button,input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}input[type=number]{-moz-appearance:textfield;padding:0}input{border-width:0px;border:none;text-align:right;width:21px}input:focus{outline:none}.flex{display:flex}.no-icon-padding{padding-right:23px}\n"] }]
|
|
2970
|
+
}], ctorParameters: function () { return []; }, propDecorators: { model: [{
|
|
2971
|
+
type: Input
|
|
2972
|
+
}], type: [{
|
|
2973
|
+
type: Input
|
|
2974
|
+
}], confirm: [{
|
|
2975
|
+
type: Output
|
|
2976
|
+
}] } });
|
|
2977
|
+
|
|
2978
|
+
class AdvertisePostingboardSelectionItemComponent {
|
|
2979
|
+
constructor() {
|
|
2980
|
+
this.priceChange = new EventEmitter();
|
|
2981
|
+
this.postingBoardSelect = new EventEmitter();
|
|
2982
|
+
}
|
|
2983
|
+
ngOnInit() {
|
|
2984
|
+
this.mapModel();
|
|
2985
|
+
}
|
|
2986
|
+
onBoardPriceChange(priceChangeEvent) {
|
|
2987
|
+
this.model.boardPrice = +priceChangeEvent.value;
|
|
2988
|
+
this.priceChange.emit(this.model);
|
|
2989
|
+
}
|
|
2990
|
+
onPostingBoardSelect(postingBoardSelectEvent) {
|
|
2991
|
+
this.model.isSelected = postingBoardSelectEvent.isActive;
|
|
2992
|
+
this.postingBoardSelect.emit(this.model);
|
|
2993
|
+
}
|
|
2994
|
+
mapModel() {
|
|
2995
|
+
var _a;
|
|
2996
|
+
if (this.model) {
|
|
2997
|
+
this.editableTextModel = {
|
|
2998
|
+
inputMask: '$',
|
|
2999
|
+
value: (_a = this.model.boardPrice) === null || _a === void 0 ? void 0 : _a.toString(),
|
|
3000
|
+
isEditable: this.model.isEditable,
|
|
3001
|
+
isInEditMode: this.model.isInEditMode,
|
|
3002
|
+
id: this.model.id,
|
|
3003
|
+
};
|
|
3004
|
+
}
|
|
3005
|
+
}
|
|
3006
|
+
}
|
|
3007
|
+
AdvertisePostingboardSelectionItemComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AdvertisePostingboardSelectionItemComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
3008
|
+
AdvertisePostingboardSelectionItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: AdvertisePostingboardSelectionItemComponent, selector: "symphony-advertise-postingboard-selection-item", inputs: { model: "model" }, outputs: { priceChange: "priceChange", postingBoardSelect: "postingBoardSelect" }, ngImport: i0, template: "<div *ngIf=\"model\" class=\"posting-board-selection-item\">\n <div class=\"inline-block\">\n <symphony-input-checkbox\n [label]=\"model.boardName\"\n [isActive]=\"model.isSelected\"\n (clicked)=\"onPostingBoardSelect($event)\"\n ></symphony-input-checkbox>\n </div>\n <div class=\"inline-block pull-right sfx-pt-10 sfx-pr-10\">\n <symphony-input-editable-text\n [model]=\"editableTextModel\"\n (confirm)=\"onBoardPriceChange($event)\"\n ></symphony-input-editable-text>\n </div>\n</div>\n", styles: [".inline-block{display:inline-block}\n"], components: [{ type: InputCheckboxComponent, selector: "symphony-input-checkbox", inputs: ["isActive", "label", "isRequired"], outputs: ["clicked"] }, { type: InputEditableTextComponent, selector: "symphony-input-editable-text", inputs: ["model", "type"], outputs: ["confirm"] }], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
3009
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AdvertisePostingboardSelectionItemComponent, decorators: [{
|
|
3010
|
+
type: Component,
|
|
3011
|
+
args: [{ selector: 'symphony-advertise-postingboard-selection-item', template: "<div *ngIf=\"model\" class=\"posting-board-selection-item\">\n <div class=\"inline-block\">\n <symphony-input-checkbox\n [label]=\"model.boardName\"\n [isActive]=\"model.isSelected\"\n (clicked)=\"onPostingBoardSelect($event)\"\n ></symphony-input-checkbox>\n </div>\n <div class=\"inline-block pull-right sfx-pt-10 sfx-pr-10\">\n <symphony-input-editable-text\n [model]=\"editableTextModel\"\n (confirm)=\"onBoardPriceChange($event)\"\n ></symphony-input-editable-text>\n </div>\n</div>\n", styles: [".inline-block{display:inline-block}\n"] }]
|
|
3012
|
+
}], ctorParameters: function () { return []; }, propDecorators: { model: [{
|
|
3013
|
+
type: Input
|
|
3014
|
+
}], priceChange: [{
|
|
3015
|
+
type: Output
|
|
3016
|
+
}], postingBoardSelect: [{
|
|
3017
|
+
type: Output
|
|
3018
|
+
}] } });
|
|
3019
|
+
|
|
3020
|
+
class AdvertisePostingboardSelectionListComponent {
|
|
3021
|
+
constructor() { }
|
|
3022
|
+
}
|
|
3023
|
+
AdvertisePostingboardSelectionListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AdvertisePostingboardSelectionListComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
3024
|
+
AdvertisePostingboardSelectionListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: AdvertisePostingboardSelectionListComponent, selector: "symphony-advertise-postingboard-selection-list", inputs: { model: "model" }, ngImport: i0, template: "<symphony-advertise-postingboard-selection-item\n *ngFor=\"let item of model\"\n [model]=\"item\"\n></symphony-advertise-postingboard-selection-item>\n", styles: [""], components: [{ type: AdvertisePostingboardSelectionItemComponent, selector: "symphony-advertise-postingboard-selection-item", inputs: ["model"], outputs: ["priceChange", "postingBoardSelect"] }], directives: [{ type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }] });
|
|
3025
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AdvertisePostingboardSelectionListComponent, decorators: [{
|
|
3026
|
+
type: Component,
|
|
3027
|
+
args: [{ selector: 'symphony-advertise-postingboard-selection-list', template: "<symphony-advertise-postingboard-selection-item\n *ngFor=\"let item of model\"\n [model]=\"item\"\n></symphony-advertise-postingboard-selection-item>\n", styles: [""] }]
|
|
3028
|
+
}], ctorParameters: function () { return []; }, propDecorators: { model: [{
|
|
3029
|
+
type: Input
|
|
3030
|
+
}] } });
|
|
3031
|
+
|
|
2946
3032
|
class AdvertiseModalComponent {
|
|
2947
3033
|
constructor() {
|
|
2948
3034
|
this.model = {
|
|
@@ -2961,13 +3047,14 @@ class AdvertiseModalComponent {
|
|
|
2961
3047
|
primaryButtonText: '',
|
|
2962
3048
|
secondaryButtonText: '',
|
|
2963
3049
|
};
|
|
2964
|
-
this.keywordSearchChange = new EventEmitter();
|
|
2965
3050
|
this.buttonClicked = new EventEmitter();
|
|
2966
3051
|
this.closeButtonClicked = new EventEmitter();
|
|
2967
3052
|
}
|
|
3053
|
+
ngOnInit() {
|
|
3054
|
+
this.filteredPostingBoardList = this.model.jobBoards;
|
|
3055
|
+
}
|
|
2968
3056
|
keywordSearch(keyword) {
|
|
2969
|
-
this.
|
|
2970
|
-
console.log(keyword);
|
|
3057
|
+
this.filteredPostingBoardList = this.model.jobBoards.filter((board) => board.boardName.toLowerCase().includes(keyword));
|
|
2971
3058
|
}
|
|
2972
3059
|
onButtonClick(text) {
|
|
2973
3060
|
this.buttonClicked.emit(text);
|
|
@@ -2977,14 +3064,12 @@ class AdvertiseModalComponent {
|
|
|
2977
3064
|
}
|
|
2978
3065
|
}
|
|
2979
3066
|
AdvertiseModalComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AdvertiseModalComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
2980
|
-
AdvertiseModalComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: AdvertiseModalComponent, selector: "symphony-advertise-modal", inputs: { model: "model" }, outputs: {
|
|
3067
|
+
AdvertiseModalComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: AdvertiseModalComponent, selector: "symphony-advertise-modal", inputs: { model: "model" }, outputs: { buttonClicked: "buttonClicked", closeButtonClicked: "closeButtonClicked" }, ngImport: i0, template: "<symphony-two-column-modal-template>\n <symphony-h4 sfx-modal-title>{{ model.title }}</symphony-h4>\n <symphony-icon\n sfx-close-button\n [icon]=\"'si-close-modal'\"\n (clicked)=\"onCloseButtonClick()\"\n ></symphony-icon>\n <symphony-h5-with-icon sfx-modal-subtitle [model]=\"model.subtitle\">\n </symphony-h5-with-icon>\n <symphony-two-column-body-template sfx-modal-body-area>\n <symphony-input-text\n sfx-left-col-header\n [noMargin]=\"true\"\n [placeholder]=\"'Search Ad Boards'\"\n [icon]=\"'si-search-new'\"\n (textChange)=\"keywordSearch($event)\"\n >\n </symphony-input-text>\n <div class=\"right-col-header-inner\" sfx-right-col-header>\n <symphony-h5-with-icon\n sfx-right-col-header\n *ngIf=\"model.showFunds\"\n class=\"pull-right\"\n [model]=\"model.fundsInfo\"\n ></symphony-h5-with-icon>\n </div>\n <div sfx-left-column class=\"posting-boards\">\n <symphony-advertise-postingboard-selection-list\n [model]=\"filteredPostingBoardList\"\n ></symphony-advertise-postingboard-selection-list>\n </div>\n\n <symphony-placeholder\n sfx-right-column\n [label]=\"'sfx-right-column'\"\n [height]=\"'400px'\"\n ></symphony-placeholder>\n </symphony-two-column-body-template>\n <symphony-button\n sfx-button-secondary\n [text]=\"model.secondaryButtonText\"\n [isSecondary]=\"true\"\n [isInverse]=\"true\"\n (clicked)=\"onButtonClick($event)\"\n ></symphony-button>\n <symphony-button\n sfx-button-primary\n [text]=\"model.primaryButtonText\"\n [isInverse]=\"true\"\n (clicked)=\"onButtonClick($event)\"\n ></symphony-button>\n</symphony-two-column-modal-template>\n", styles: [".right-col-header-inner{padding-top:10px}.posting-boards{height:400px;overflow-x: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" }, { type: H4Component, selector: "symphony-h4", inputs: ["text", "isSecondary"] }, { type: IconComponent, selector: "symphony-icon", inputs: ["icon", "isSecondary", "size", "iconColor"], outputs: ["clicked"] }, { type: H5WithIconComponent, selector: "symphony-h5-with-icon", inputs: ["model"] }, { type: TwoColumnBodyTemplateComponent, selector: "symphony-two-column-body-template" }, { type: InputTextComponent, selector: "symphony-input-text", inputs: ["placeholder", "icon", "label", "isInverse", "noMargin"], outputs: ["textChange"] }, { type: AdvertisePostingboardSelectionListComponent, selector: "symphony-advertise-postingboard-selection-list", inputs: ["model"] }, { type: PlaceholderComponent, selector: "symphony-placeholder", inputs: ["type", "label", "tooltip", "tooltipPlacement", "height", "width"] }, { type: ButtonComponent, selector: "symphony-button", inputs: ["text", "disabled", "isSecondary", "isInverse"], outputs: ["clicked"] }], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
2981
3068
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AdvertiseModalComponent, decorators: [{
|
|
2982
3069
|
type: Component,
|
|
2983
|
-
args: [{ selector: 'symphony-advertise-modal', template: "<symphony-two-column-modal-template>\n <symphony-h4 sfx-modal-title>{{ model.title }}</symphony-h4>\n <symphony-icon\n sfx-close-button\n [icon]=\"'si-close-modal'\"\n (clicked)=\"onCloseButtonClick()\"\n ></symphony-icon>\n <symphony-h5-with-icon sfx-modal-subtitle [model]=\"model.subtitle\">\n </symphony-h5-with-icon>\n <symphony-two-column-body-template sfx-modal-body-area>\n <symphony-input-text\n sfx-left-col-header\n [noMargin]=\"true\"\n [placeholder]=\"'Search Ad Boards'\"\n [icon]=\"'si-search-new'\"\n (textChange)=\"keywordSearch($event)\"\n >\n </symphony-input-text>\n <div class=\"right-col-header-inner\" sfx-right-col-header>\n <symphony-h5-with-icon\n sfx-right-col-header\n *ngIf=\"model.showFunds\"\n class=\"pull-right\"\n [model]=\"model.fundsInfo\"\n ></symphony-h5-with-icon>\n </div>\n <
|
|
3070
|
+
args: [{ selector: 'symphony-advertise-modal', template: "<symphony-two-column-modal-template>\n <symphony-h4 sfx-modal-title>{{ model.title }}</symphony-h4>\n <symphony-icon\n sfx-close-button\n [icon]=\"'si-close-modal'\"\n (clicked)=\"onCloseButtonClick()\"\n ></symphony-icon>\n <symphony-h5-with-icon sfx-modal-subtitle [model]=\"model.subtitle\">\n </symphony-h5-with-icon>\n <symphony-two-column-body-template sfx-modal-body-area>\n <symphony-input-text\n sfx-left-col-header\n [noMargin]=\"true\"\n [placeholder]=\"'Search Ad Boards'\"\n [icon]=\"'si-search-new'\"\n (textChange)=\"keywordSearch($event)\"\n >\n </symphony-input-text>\n <div class=\"right-col-header-inner\" sfx-right-col-header>\n <symphony-h5-with-icon\n sfx-right-col-header\n *ngIf=\"model.showFunds\"\n class=\"pull-right\"\n [model]=\"model.fundsInfo\"\n ></symphony-h5-with-icon>\n </div>\n <div sfx-left-column class=\"posting-boards\">\n <symphony-advertise-postingboard-selection-list\n [model]=\"filteredPostingBoardList\"\n ></symphony-advertise-postingboard-selection-list>\n </div>\n\n <symphony-placeholder\n sfx-right-column\n [label]=\"'sfx-right-column'\"\n [height]=\"'400px'\"\n ></symphony-placeholder>\n </symphony-two-column-body-template>\n <symphony-button\n sfx-button-secondary\n [text]=\"model.secondaryButtonText\"\n [isSecondary]=\"true\"\n [isInverse]=\"true\"\n (clicked)=\"onButtonClick($event)\"\n ></symphony-button>\n <symphony-button\n sfx-button-primary\n [text]=\"model.primaryButtonText\"\n [isInverse]=\"true\"\n (clicked)=\"onButtonClick($event)\"\n ></symphony-button>\n</symphony-two-column-modal-template>\n", styles: [".right-col-header-inner{padding-top:10px}.posting-boards{height:400px;overflow-x: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"] }]
|
|
2984
3071
|
}], ctorParameters: function () { return []; }, propDecorators: { model: [{
|
|
2985
3072
|
type: Input
|
|
2986
|
-
}], keywordSearchChange: [{
|
|
2987
|
-
type: Output
|
|
2988
3073
|
}], buttonClicked: [{
|
|
2989
3074
|
type: Output
|
|
2990
3075
|
}], closeButtonClicked: [{
|
|
@@ -3019,6 +3104,48 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
|
|
|
3019
3104
|
}]
|
|
3020
3105
|
}] });
|
|
3021
3106
|
|
|
3107
|
+
class InputEditableTextModule {
|
|
3108
|
+
}
|
|
3109
|
+
InputEditableTextModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputEditableTextModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
3110
|
+
InputEditableTextModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputEditableTextModule, declarations: [InputEditableTextComponent], imports: [CommonModule, IconModule, FormsModule, ParagraphModule], exports: [InputEditableTextComponent] });
|
|
3111
|
+
InputEditableTextModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputEditableTextModule, imports: [[CommonModule, IconModule, FormsModule, ParagraphModule]] });
|
|
3112
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputEditableTextModule, decorators: [{
|
|
3113
|
+
type: NgModule,
|
|
3114
|
+
args: [{
|
|
3115
|
+
declarations: [InputEditableTextComponent],
|
|
3116
|
+
imports: [CommonModule, IconModule, FormsModule, ParagraphModule],
|
|
3117
|
+
exports: [InputEditableTextComponent],
|
|
3118
|
+
}]
|
|
3119
|
+
}] });
|
|
3120
|
+
|
|
3121
|
+
class AdvertisePostingboardSelectionItemModule {
|
|
3122
|
+
}
|
|
3123
|
+
AdvertisePostingboardSelectionItemModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AdvertisePostingboardSelectionItemModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
3124
|
+
AdvertisePostingboardSelectionItemModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AdvertisePostingboardSelectionItemModule, declarations: [AdvertisePostingboardSelectionItemComponent], imports: [CommonModule, InputEditableTextModule, InputCheckboxModule], exports: [AdvertisePostingboardSelectionItemComponent] });
|
|
3125
|
+
AdvertisePostingboardSelectionItemModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AdvertisePostingboardSelectionItemModule, imports: [[CommonModule, InputEditableTextModule, InputCheckboxModule]] });
|
|
3126
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AdvertisePostingboardSelectionItemModule, decorators: [{
|
|
3127
|
+
type: NgModule,
|
|
3128
|
+
args: [{
|
|
3129
|
+
declarations: [AdvertisePostingboardSelectionItemComponent],
|
|
3130
|
+
imports: [CommonModule, InputEditableTextModule, InputCheckboxModule],
|
|
3131
|
+
exports: [AdvertisePostingboardSelectionItemComponent],
|
|
3132
|
+
}]
|
|
3133
|
+
}] });
|
|
3134
|
+
|
|
3135
|
+
class AdvertisePostingboardSelectionListModule {
|
|
3136
|
+
}
|
|
3137
|
+
AdvertisePostingboardSelectionListModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AdvertisePostingboardSelectionListModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
3138
|
+
AdvertisePostingboardSelectionListModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AdvertisePostingboardSelectionListModule, declarations: [AdvertisePostingboardSelectionListComponent], imports: [CommonModule, AdvertisePostingboardSelectionItemModule], exports: [AdvertisePostingboardSelectionListComponent] });
|
|
3139
|
+
AdvertisePostingboardSelectionListModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AdvertisePostingboardSelectionListModule, imports: [[CommonModule, AdvertisePostingboardSelectionItemModule]] });
|
|
3140
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AdvertisePostingboardSelectionListModule, decorators: [{
|
|
3141
|
+
type: NgModule,
|
|
3142
|
+
args: [{
|
|
3143
|
+
declarations: [AdvertisePostingboardSelectionListComponent],
|
|
3144
|
+
imports: [CommonModule, AdvertisePostingboardSelectionItemModule],
|
|
3145
|
+
exports: [AdvertisePostingboardSelectionListComponent],
|
|
3146
|
+
}]
|
|
3147
|
+
}] });
|
|
3148
|
+
|
|
3022
3149
|
class ModalModule {
|
|
3023
3150
|
}
|
|
3024
3151
|
ModalModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ModalModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
@@ -3032,7 +3159,8 @@ ModalModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "1
|
|
|
3032
3159
|
InputTextModule,
|
|
3033
3160
|
ButtonModule,
|
|
3034
3161
|
PlaceholderModule,
|
|
3035
|
-
H5WithIconModule
|
|
3162
|
+
H5WithIconModule,
|
|
3163
|
+
AdvertisePostingboardSelectionListModule], exports: [AdvertiseModalComponent] });
|
|
3036
3164
|
ModalModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ModalModule, imports: [[
|
|
3037
3165
|
CommonModule,
|
|
3038
3166
|
TwoColumnModalModule,
|
|
@@ -3045,6 +3173,7 @@ ModalModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "1
|
|
|
3045
3173
|
ButtonModule,
|
|
3046
3174
|
PlaceholderModule,
|
|
3047
3175
|
H5WithIconModule,
|
|
3176
|
+
AdvertisePostingboardSelectionListModule,
|
|
3048
3177
|
]] });
|
|
3049
3178
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ModalModule, decorators: [{
|
|
3050
3179
|
type: NgModule,
|
|
@@ -3062,6 +3191,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
|
|
|
3062
3191
|
ButtonModule,
|
|
3063
3192
|
PlaceholderModule,
|
|
3064
3193
|
H5WithIconModule,
|
|
3194
|
+
AdvertisePostingboardSelectionListModule,
|
|
3065
3195
|
],
|
|
3066
3196
|
exports: [AdvertiseModalComponent],
|
|
3067
3197
|
}]
|