@symphony-talent/component-library 4.16.0 → 4.18.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-header/feedback-detail-header.component.mjs +4 -5
- package/esm2020/lib/pages/feedback-request-page/feedback-request-page.component.mjs +51 -0
- package/esm2020/lib/pages/feedback-request-page/feedback-request-page.model.mjs +2 -0
- package/esm2020/lib/pages/feedback-request-page/feedback-request-page.module.mjs +62 -0
- package/esm2020/lib/pages/setting-detail-page/setting-detail-page.component.mjs +26 -0
- package/esm2020/lib/pages/setting-detail-page/setting-detail-page.component.model.mjs +2 -0
- package/esm2020/lib/pages/setting-detail-page/setting-detail-page.module.mjs +22 -0
- package/esm2020/lib/templates/setting-details/setting-details-template.component.mjs +12 -0
- package/esm2020/lib/templates/setting-details/setting-details-template.module.mjs +19 -0
- package/esm2020/projects/component-library/lib/organisms/feedback-detail-header/feedback-detail-header.component.mjs +4 -5
- package/esm2020/projects/component-library/lib/pages/feedback-request-page/feedback-request-page.component.mjs +51 -0
- package/esm2020/projects/component-library/lib/pages/feedback-request-page/feedback-request-page.model.mjs +2 -0
- package/esm2020/projects/component-library/lib/pages/feedback-request-page/feedback-request-page.module.mjs +62 -0
- package/esm2020/projects/component-library/lib/pages/setting-detail-page/setting-detail-page.component.mjs +26 -0
- package/esm2020/projects/component-library/lib/pages/setting-detail-page/setting-detail-page.component.model.mjs +2 -0
- package/esm2020/projects/component-library/lib/pages/setting-detail-page/setting-detail-page.module.mjs +22 -0
- package/esm2020/projects/component-library/lib/templates/setting-details/setting-details-template.component.mjs +12 -0
- package/esm2020/projects/component-library/lib/templates/setting-details/setting-details-template.module.mjs +19 -0
- package/esm2020/projects/component-library/public-api.mjs +7 -1
- package/esm2020/public-api.mjs +7 -1
- package/fesm2015/symphony-talent-component-library-projects-component-library.mjs +151 -3
- package/fesm2015/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
- package/fesm2015/symphony-talent-component-library.mjs +151 -3
- package/fesm2015/symphony-talent-component-library.mjs.map +1 -1
- package/fesm2020/symphony-talent-component-library-projects-component-library.mjs +151 -3
- package/fesm2020/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
- package/fesm2020/symphony-talent-component-library.mjs +151 -3
- package/fesm2020/symphony-talent-component-library.mjs.map +1 -1
- package/lib/pages/feedback-request-page/feedback-request-page.component.d.ts +21 -0
- package/lib/pages/feedback-request-page/feedback-request-page.model.d.ts +9 -0
- package/lib/pages/feedback-request-page/feedback-request-page.module.d.ts +18 -0
- package/lib/pages/setting-detail-page/setting-detail-page.component.d.ts +11 -0
- package/lib/pages/setting-detail-page/setting-detail-page.component.model.d.ts +7 -0
- package/lib/pages/setting-detail-page/setting-detail-page.module.d.ts +12 -0
- package/lib/templates/setting-details/setting-details-template.component.d.ts +6 -0
- package/lib/templates/setting-details/setting-details-template.module.d.ts +9 -0
- package/package.json +1 -1
- package/projects/component-library/lib/pages/feedback-request-page/feedback-request-page.component.d.ts +21 -0
- package/projects/component-library/lib/pages/feedback-request-page/feedback-request-page.model.d.ts +9 -0
- package/projects/component-library/lib/pages/feedback-request-page/feedback-request-page.module.d.ts +18 -0
- package/projects/component-library/lib/pages/setting-detail-page/setting-detail-page.component.d.ts +11 -0
- package/projects/component-library/lib/pages/setting-detail-page/setting-detail-page.component.model.d.ts +7 -0
- package/projects/component-library/lib/pages/setting-detail-page/setting-detail-page.module.d.ts +12 -0
- package/projects/component-library/lib/templates/setting-details/setting-details-template.component.d.ts +6 -0
- package/projects/component-library/lib/templates/setting-details/setting-details-template.module.d.ts +9 -0
- package/projects/component-library/public-api.d.ts +6 -0
- package/public-api.d.ts +6 -0
|
@@ -5097,10 +5097,10 @@ class FeedbackDetailHeaderComponent {
|
|
|
5097
5097
|
}
|
|
5098
5098
|
}
|
|
5099
5099
|
FeedbackDetailHeaderComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackDetailHeaderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
5100
|
-
FeedbackDetailHeaderComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: FeedbackDetailHeaderComponent, selector: "symphony-feedback-detail-header", inputs: { model: "model" }, outputs: { previewClicked: "previewClicked" }, ngImport: i0, template: "<div *ngIf=\"model\" class=\"sfx-d-inline-block\">\n <symphony-h3 [text]=\"model.name\"></symphony-h3>\n\n <ul class=\"candidate-details sfx-mt-10 sfx-mb-20 list-unstyled\">\n <li *ngFor=\"let data of headerDetails\">{{ data }}</li>\n </ul>\n</div>\n\n<div *ngIf=\"model.displayResume\" class=\"sfx-d-inline-block align-text-bottom\">\n <symphony-icon-wrapper (clicked)=\"onClick()\">\n <symphony-icon [icon]=\"'si-preview'\"></symphony-icon\n ></symphony-icon-wrapper>\n</div>\n
|
|
5100
|
+
FeedbackDetailHeaderComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: FeedbackDetailHeaderComponent, selector: "symphony-feedback-detail-header", inputs: { model: "model" }, outputs: { previewClicked: "previewClicked" }, ngImport: i0, template: "<div *ngIf=\"model\" class=\"sfx-d-inline-block\">\n <symphony-h3 [text]=\"model.name\"></symphony-h3>\n\n <ul class=\"candidate-details sfx-mt-10 sfx-mb-20 list-unstyled\">\n <li *ngFor=\"let data of headerDetails\">{{ data }}</li>\n </ul>\n</div>\n\n<div *ngIf=\"model.displayResume\" class=\"sfx-d-inline-block align-text-bottom\">\n <symphony-icon-wrapper (clicked)=\"onClick()\">\n <symphony-icon [icon]=\"'si-preview'\"></symphony-icon\n ></symphony-icon-wrapper>\n</div>\n", styles: [".candidate-details{min-width:435px}.candidate-details li{display:inline-block}.candidate-details li:nth-child(2):before,.candidate-details li:nth-child(2):after{content:\"\\a\";width:4px;height:4px;border-radius:50%;background:#000;display:inline-block;margin:2px 6px}.align-text-bottom{vertical-align:text-bottom}.review-button .btn.btn-secondary{min-width:100px;height:40px;padding-left:25px;padding-right:25px}@media (max-width: 320px){.candidate-details li:nth-child(2):after{display:none}}\n"], components: [{ type: H3Component, selector: "symphony-h3", inputs: ["text", "isSecondary"] }, { type: IconWrapperComponent, selector: "symphony-icon-wrapper", inputs: ["isInverse", "hasHoverWithoutBorder"], outputs: ["clicked"] }, { type: IconComponent, selector: "symphony-icon", inputs: ["icon", "isSecondary", "size", "iconColor"], outputs: ["clicked"] }], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }], encapsulation: i0.ViewEncapsulation.None });
|
|
5101
5101
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackDetailHeaderComponent, decorators: [{
|
|
5102
5102
|
type: Component,
|
|
5103
|
-
args: [{ selector: 'symphony-feedback-detail-header', encapsulation: ViewEncapsulation.None, template: "<div *ngIf=\"model\" class=\"sfx-d-inline-block\">\n <symphony-h3 [text]=\"model.name\"></symphony-h3>\n\n <ul class=\"candidate-details sfx-mt-10 sfx-mb-20 list-unstyled\">\n <li *ngFor=\"let data of headerDetails\">{{ data }}</li>\n </ul>\n</div>\n\n<div *ngIf=\"model.displayResume\" class=\"sfx-d-inline-block align-text-bottom\">\n <symphony-icon-wrapper (clicked)=\"onClick()\">\n <symphony-icon [icon]=\"'si-preview'\"></symphony-icon\n ></symphony-icon-wrapper>\n</div>\n
|
|
5103
|
+
args: [{ selector: 'symphony-feedback-detail-header', encapsulation: ViewEncapsulation.None, template: "<div *ngIf=\"model\" class=\"sfx-d-inline-block\">\n <symphony-h3 [text]=\"model.name\"></symphony-h3>\n\n <ul class=\"candidate-details sfx-mt-10 sfx-mb-20 list-unstyled\">\n <li *ngFor=\"let data of headerDetails\">{{ data }}</li>\n </ul>\n</div>\n\n<div *ngIf=\"model.displayResume\" class=\"sfx-d-inline-block align-text-bottom\">\n <symphony-icon-wrapper (clicked)=\"onClick()\">\n <symphony-icon [icon]=\"'si-preview'\"></symphony-icon\n ></symphony-icon-wrapper>\n</div>\n", styles: [".candidate-details{min-width:435px}.candidate-details li{display:inline-block}.candidate-details li:nth-child(2):before,.candidate-details li:nth-child(2):after{content:\"\\a\";width:4px;height:4px;border-radius:50%;background:#000;display:inline-block;margin:2px 6px}.align-text-bottom{vertical-align:text-bottom}.review-button .btn.btn-secondary{min-width:100px;height:40px;padding-left:25px;padding-right:25px}@media (max-width: 320px){.candidate-details li:nth-child(2):after{display:none}}\n"] }]
|
|
5104
5104
|
}], ctorParameters: function () { return []; }, propDecorators: { model: [{
|
|
5105
5105
|
type: Input
|
|
5106
5106
|
}], previewClicked: [{
|
|
@@ -7181,6 +7181,154 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
|
|
|
7181
7181
|
}]
|
|
7182
7182
|
}] });
|
|
7183
7183
|
|
|
7184
|
+
class FeedbackRequestListPageComponent {
|
|
7185
|
+
constructor() {
|
|
7186
|
+
this.itemClicked = new EventEmitter();
|
|
7187
|
+
this.folderSearchChange = new EventEmitter();
|
|
7188
|
+
this.gridControlClicked = new EventEmitter();
|
|
7189
|
+
this.gridActionClicked = new EventEmitter();
|
|
7190
|
+
this.cellClick = new EventEmitter();
|
|
7191
|
+
}
|
|
7192
|
+
onFolderSearch(folderIds) {
|
|
7193
|
+
this.folderSearchChange.emit(folderIds);
|
|
7194
|
+
}
|
|
7195
|
+
onGridControlClick(gridControlsModel) {
|
|
7196
|
+
this.gridControlClicked.emit(gridControlsModel);
|
|
7197
|
+
}
|
|
7198
|
+
onGridActionClick(gridActionModel) {
|
|
7199
|
+
this.gridActionClicked.emit(gridActionModel);
|
|
7200
|
+
}
|
|
7201
|
+
onCellClick(event) {
|
|
7202
|
+
this.cellClick.emit(event);
|
|
7203
|
+
}
|
|
7204
|
+
}
|
|
7205
|
+
FeedbackRequestListPageComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackRequestListPageComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
7206
|
+
FeedbackRequestListPageComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: FeedbackRequestListPageComponent, selector: "symphony-feedback-request-list-page", inputs: { model: "model" }, outputs: { itemClicked: "itemClicked", folderSearchChange: "folderSearchChange", gridControlClicked: "gridControlClicked", gridActionClicked: "gridActionClicked", cellClick: "cellClick" }, viewQueries: [{ propertyName: "grid", first: true, predicate: ["sfxgrid"], descendants: true }], ngImport: i0, template: "<symphony-contact-list-template *ngIf=\"model\">\n <symphony-h3 sfx-header>Feedback Requests</symphony-h3>\n <symphony-filter-area sfx-filter-area>\n <symphony-h3 title>Search</symphony-h3>\n </symphony-filter-area>\n <symphony-action-bar-job-list\n sfx-actions\n [gridActionModel]=\"model.gridActionModel\"\n [gridControlsModel]=\"model.gridControlsModel\"\n (gridControlClick)=\"onGridControlClick($event)\"\n (gridActionClick)=\"onGridActionClick($event)\"\n [hasActionToggle]=\"model.hasActionToggle\"\n ></symphony-action-bar-job-list>\n <symphony-grid\n #sfxgrid\n sfx-grid\n [columnDefs]=\"model.grid.columnDefs\"\n [defaultColDef]=\"model.grid.defaultColumnDef\"\n [rowData]=\"model.grid.rowData\"\n [pageSize]=\"model.grid.pageSize\"\n [onGridReadyFunction]=\"model.grid.onGridReadyFunction\"\n [rowModelType]=\"model.grid.rowModelType\"\n rowSelectionMode=\"multiple\"\n [hasNoPaddingleft]=\"true\"\n [suppressRowClickSelection]=\"true\"\n (cellClick)=\"onCellClick($event)\"\n ></symphony-grid>\n</symphony-contact-list-template>\n", styles: [""], components: [{ type: ContactListTemplateComponent, selector: "symphony-contact-list-template" }, { type: H3Component, selector: "symphony-h3", inputs: ["text", "isSecondary"] }, { type: FilterAreaComponent, selector: "symphony-filter-area" }, { type: ActionBarJobListComponent, selector: "symphony-action-bar-job-list", inputs: ["gridActionModel", "gridControlsModel", "hasActionToggle"], outputs: ["gridControlClick", "gridActionClick"] }, { type: GridComponent, selector: "symphony-grid", inputs: ["columnDefs", "defaultColDef", "rowData", "onGridReadyFunction", "pageSize", "rowModelType", "suppressRowClickSelection", "rowSelectionMode", "hasNoPaddingleft"], outputs: ["sortChanged", "cellClick"] }], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
7207
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackRequestListPageComponent, decorators: [{
|
|
7208
|
+
type: Component,
|
|
7209
|
+
args: [{ selector: 'symphony-feedback-request-list-page', template: "<symphony-contact-list-template *ngIf=\"model\">\n <symphony-h3 sfx-header>Feedback Requests</symphony-h3>\n <symphony-filter-area sfx-filter-area>\n <symphony-h3 title>Search</symphony-h3>\n </symphony-filter-area>\n <symphony-action-bar-job-list\n sfx-actions\n [gridActionModel]=\"model.gridActionModel\"\n [gridControlsModel]=\"model.gridControlsModel\"\n (gridControlClick)=\"onGridControlClick($event)\"\n (gridActionClick)=\"onGridActionClick($event)\"\n [hasActionToggle]=\"model.hasActionToggle\"\n ></symphony-action-bar-job-list>\n <symphony-grid\n #sfxgrid\n sfx-grid\n [columnDefs]=\"model.grid.columnDefs\"\n [defaultColDef]=\"model.grid.defaultColumnDef\"\n [rowData]=\"model.grid.rowData\"\n [pageSize]=\"model.grid.pageSize\"\n [onGridReadyFunction]=\"model.grid.onGridReadyFunction\"\n [rowModelType]=\"model.grid.rowModelType\"\n rowSelectionMode=\"multiple\"\n [hasNoPaddingleft]=\"true\"\n [suppressRowClickSelection]=\"true\"\n (cellClick)=\"onCellClick($event)\"\n ></symphony-grid>\n</symphony-contact-list-template>\n", styles: [""] }]
|
|
7210
|
+
}], ctorParameters: function () { return []; }, propDecorators: { model: [{
|
|
7211
|
+
type: Input
|
|
7212
|
+
}], itemClicked: [{
|
|
7213
|
+
type: Output
|
|
7214
|
+
}], folderSearchChange: [{
|
|
7215
|
+
type: Output
|
|
7216
|
+
}], gridControlClicked: [{
|
|
7217
|
+
type: Output
|
|
7218
|
+
}], gridActionClicked: [{
|
|
7219
|
+
type: Output
|
|
7220
|
+
}], cellClick: [{
|
|
7221
|
+
type: Output
|
|
7222
|
+
}], grid: [{
|
|
7223
|
+
type: ViewChild,
|
|
7224
|
+
args: ['sfxgrid']
|
|
7225
|
+
}] } });
|
|
7226
|
+
|
|
7227
|
+
class FeedbackRequestListPageModule {
|
|
7228
|
+
}
|
|
7229
|
+
FeedbackRequestListPageModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackRequestListPageModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
7230
|
+
FeedbackRequestListPageModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackRequestListPageModule, declarations: [FeedbackRequestListPageComponent], imports: [CommonModule,
|
|
7231
|
+
ContactListTemplateModule,
|
|
7232
|
+
H3Module,
|
|
7233
|
+
H5Module,
|
|
7234
|
+
GridModule,
|
|
7235
|
+
ContextualMenuModule,
|
|
7236
|
+
TooltipWrapperModule,
|
|
7237
|
+
FilterAreaModule,
|
|
7238
|
+
IconModule,
|
|
7239
|
+
IconWrapperModule,
|
|
7240
|
+
ActionBarJobListModule], exports: [FeedbackRequestListPageComponent] });
|
|
7241
|
+
FeedbackRequestListPageModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackRequestListPageModule, imports: [[
|
|
7242
|
+
CommonModule,
|
|
7243
|
+
ContactListTemplateModule,
|
|
7244
|
+
H3Module,
|
|
7245
|
+
H5Module,
|
|
7246
|
+
GridModule,
|
|
7247
|
+
ContextualMenuModule,
|
|
7248
|
+
TooltipWrapperModule,
|
|
7249
|
+
FilterAreaModule,
|
|
7250
|
+
IconModule,
|
|
7251
|
+
IconWrapperModule,
|
|
7252
|
+
ActionBarJobListModule,
|
|
7253
|
+
]] });
|
|
7254
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackRequestListPageModule, decorators: [{
|
|
7255
|
+
type: NgModule,
|
|
7256
|
+
args: [{
|
|
7257
|
+
declarations: [FeedbackRequestListPageComponent],
|
|
7258
|
+
imports: [
|
|
7259
|
+
CommonModule,
|
|
7260
|
+
ContactListTemplateModule,
|
|
7261
|
+
H3Module,
|
|
7262
|
+
H5Module,
|
|
7263
|
+
GridModule,
|
|
7264
|
+
ContextualMenuModule,
|
|
7265
|
+
TooltipWrapperModule,
|
|
7266
|
+
FilterAreaModule,
|
|
7267
|
+
IconModule,
|
|
7268
|
+
IconWrapperModule,
|
|
7269
|
+
ActionBarJobListModule,
|
|
7270
|
+
],
|
|
7271
|
+
exports: [FeedbackRequestListPageComponent],
|
|
7272
|
+
}]
|
|
7273
|
+
}] });
|
|
7274
|
+
|
|
7275
|
+
class SettingDetailsTemplateComponent {
|
|
7276
|
+
constructor() { }
|
|
7277
|
+
}
|
|
7278
|
+
SettingDetailsTemplateComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: SettingDetailsTemplateComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
7279
|
+
SettingDetailsTemplateComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: SettingDetailsTemplateComponent, selector: "symphony-setting-details-template", ngImport: i0, template: "<div class=\"sfx\">\n <section>\n <div class=\"row\">\n <div class=\"col-xs-12 col-sm-12 col-md-12 col-lg-12\">\n <ng-content select=\"[breadcrumb]\"></ng-content>\n </div>\n </div>\n </section>\n <section>\n <div class=\"sfx-page-title\">\n <div class=\"row\">\n <div class=\"col-xs-12 col-sm-12 colmd-9 col-lg-9\">\n <ng-content select=\"[sfx-header]\"></ng-content>\n </div>\n </div>\n </div>\n <div class=\"sfx-border-bottom-black-2\"></div>\n </section>\n <section class=\"row sfx-mt-30\">\n <section class=\"col-xs-12 col-sm-12 col-md-4 col-lg-3\">\n <ng-content select=\"[sfx-nav]\"></ng-content>\n </section>\n <section class=\"col-xs-12 col-sm-12 col-md-8 col-lg-9\">\n <ng-content select=\"[sfx-content]\"></ng-content>\n </section>\n </section>\n</div>\n", styles: [".sfx-page-title{margin-top:3.125rem;margin-bottom:1.875rem}\n"] });
|
|
7280
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: SettingDetailsTemplateComponent, decorators: [{
|
|
7281
|
+
type: Component,
|
|
7282
|
+
args: [{ selector: 'symphony-setting-details-template', template: "<div class=\"sfx\">\n <section>\n <div class=\"row\">\n <div class=\"col-xs-12 col-sm-12 col-md-12 col-lg-12\">\n <ng-content select=\"[breadcrumb]\"></ng-content>\n </div>\n </div>\n </section>\n <section>\n <div class=\"sfx-page-title\">\n <div class=\"row\">\n <div class=\"col-xs-12 col-sm-12 colmd-9 col-lg-9\">\n <ng-content select=\"[sfx-header]\"></ng-content>\n </div>\n </div>\n </div>\n <div class=\"sfx-border-bottom-black-2\"></div>\n </section>\n <section class=\"row sfx-mt-30\">\n <section class=\"col-xs-12 col-sm-12 col-md-4 col-lg-3\">\n <ng-content select=\"[sfx-nav]\"></ng-content>\n </section>\n <section class=\"col-xs-12 col-sm-12 col-md-8 col-lg-9\">\n <ng-content select=\"[sfx-content]\"></ng-content>\n </section>\n </section>\n</div>\n", styles: [".sfx-page-title{margin-top:3.125rem;margin-bottom:1.875rem}\n"] }]
|
|
7283
|
+
}], ctorParameters: function () { return []; } });
|
|
7284
|
+
|
|
7285
|
+
class SettingDetailPageComponent {
|
|
7286
|
+
constructor() {
|
|
7287
|
+
this.detailNavigationClicked = new EventEmitter();
|
|
7288
|
+
}
|
|
7289
|
+
onDetailNavigationClick(SettingDetailPageModel) {
|
|
7290
|
+
this.detailNavigationClicked.emit(SettingDetailPageModel);
|
|
7291
|
+
}
|
|
7292
|
+
}
|
|
7293
|
+
SettingDetailPageComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: SettingDetailPageComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
7294
|
+
SettingDetailPageComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: SettingDetailPageComponent, selector: "symphony-setting-detail-page", inputs: { model: "model" }, outputs: { detailNavigationClicked: "detailNavigationClicked" }, ngImport: i0, template: "<symphony-setting-details-template *ngIf=\"model\">\n <symphony-breadcrumb breadcrumb [breadcrumbs]=\"model.breadcrumbs\">\n </symphony-breadcrumb>\n <symphony-h3 sfx-header [text]=\"model.pageTitle\"></symphony-h3>\n <symphony-settings-detail-navigation-list\n sfx-nav\n [navigationList]=\"model.navigationList\"\n (navigationItemClicked)=\"onDetailNavigationClick(model)\"\n ></symphony-settings-detail-navigation-list>\n <section sfx-content>Sub-page Content Here</section>\n</symphony-setting-details-template>\n", styles: [""], components: [{ type: SettingDetailsTemplateComponent, selector: "symphony-setting-details-template" }, { type: BreadcrumbComponent, selector: "symphony-breadcrumb", inputs: ["breadcrumbs"], outputs: ["breadcrumbClicked"] }, { type: H3Component, selector: "symphony-h3", inputs: ["text", "isSecondary"] }, { type: SettingsDetailNavigationListComponent, selector: "symphony-settings-detail-navigation-list", inputs: ["navigationList"], outputs: ["navigationItemClicked"] }], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
7295
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: SettingDetailPageComponent, decorators: [{
|
|
7296
|
+
type: Component,
|
|
7297
|
+
args: [{ selector: 'symphony-setting-detail-page', template: "<symphony-setting-details-template *ngIf=\"model\">\n <symphony-breadcrumb breadcrumb [breadcrumbs]=\"model.breadcrumbs\">\n </symphony-breadcrumb>\n <symphony-h3 sfx-header [text]=\"model.pageTitle\"></symphony-h3>\n <symphony-settings-detail-navigation-list\n sfx-nav\n [navigationList]=\"model.navigationList\"\n (navigationItemClicked)=\"onDetailNavigationClick(model)\"\n ></symphony-settings-detail-navigation-list>\n <section sfx-content>Sub-page Content Here</section>\n</symphony-setting-details-template>\n", styles: [""] }]
|
|
7298
|
+
}], ctorParameters: function () { return []; }, propDecorators: { model: [{
|
|
7299
|
+
type: Input
|
|
7300
|
+
}], detailNavigationClicked: [{
|
|
7301
|
+
type: Output
|
|
7302
|
+
}] } });
|
|
7303
|
+
|
|
7304
|
+
class SettingDetailsTemplateModule {
|
|
7305
|
+
}
|
|
7306
|
+
SettingDetailsTemplateModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: SettingDetailsTemplateModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
7307
|
+
SettingDetailsTemplateModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: SettingDetailsTemplateModule, declarations: [SettingDetailsTemplateComponent], imports: [CommonModule, PlaceholderModule], exports: [SettingDetailsTemplateComponent] });
|
|
7308
|
+
SettingDetailsTemplateModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: SettingDetailsTemplateModule, imports: [[CommonModule, PlaceholderModule]] });
|
|
7309
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: SettingDetailsTemplateModule, decorators: [{
|
|
7310
|
+
type: NgModule,
|
|
7311
|
+
args: [{
|
|
7312
|
+
declarations: [SettingDetailsTemplateComponent],
|
|
7313
|
+
imports: [CommonModule, PlaceholderModule],
|
|
7314
|
+
exports: [SettingDetailsTemplateComponent],
|
|
7315
|
+
}]
|
|
7316
|
+
}] });
|
|
7317
|
+
|
|
7318
|
+
class SettingDetailPageModule {
|
|
7319
|
+
}
|
|
7320
|
+
SettingDetailPageModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: SettingDetailPageModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
7321
|
+
SettingDetailPageModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: SettingDetailPageModule, declarations: [SettingDetailPageComponent], imports: [CommonModule, SettingsDetailNavigationListModule, SettingDetailsTemplateModule, BreadcrumbModule, H3Module], exports: [SettingDetailPageComponent] });
|
|
7322
|
+
SettingDetailPageModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: SettingDetailPageModule, imports: [[CommonModule, SettingsDetailNavigationListModule, SettingDetailsTemplateModule, BreadcrumbModule, H3Module]] });
|
|
7323
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: SettingDetailPageModule, decorators: [{
|
|
7324
|
+
type: NgModule,
|
|
7325
|
+
args: [{
|
|
7326
|
+
declarations: [SettingDetailPageComponent],
|
|
7327
|
+
imports: [CommonModule, SettingsDetailNavigationListModule, SettingDetailsTemplateModule, BreadcrumbModule, H3Module],
|
|
7328
|
+
exports: [SettingDetailPageComponent],
|
|
7329
|
+
}]
|
|
7330
|
+
}] });
|
|
7331
|
+
|
|
7184
7332
|
/*
|
|
7185
7333
|
* ATOMS
|
|
7186
7334
|
*/
|
|
@@ -7189,5 +7337,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
|
|
|
7189
7337
|
* Generated bundle index. Do not edit.
|
|
7190
7338
|
*/
|
|
7191
7339
|
|
|
7192
|
-
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, CharacterCounterComponent, CharacterCounterModule, ColorNames, 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, InputTextareaComponent, InputTextareaModule, 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, SettingsDetailNavigationItemComponent, SettingsDetailNavigationItemModule, SettingsDetailNavigationListComponent, SettingsDetailNavigationListModule, SfxLoaderComponent, SfxLoaderModule, SfxPageLoaderComponent, SfxPageLoaderModule, SfxProgressBarComponent, SfxProgressBarModule, SidebarNavigationComponent, SidebarNavigationModule, SidebarNavigationV2Component, SidebarNavigationV2Module, ToasterAlertComponent, ToasterAlertModel, ToasterAlertModule, ToasterAlertType, TooltipWrapperComponent, TooltipWrapperModule, TrimIdPipe, TwoColumnFilterAreaComponent, TwoColumnFilterAreaModule, UploadResumeModalComponent, UploadResumeModalModule, VerticalSeparatorComponent, VerticalSeparatorModule, gridType };
|
|
7340
|
+
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, CharacterCounterComponent, CharacterCounterModule, ColorNames, 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, FeedbackRequestListPageComponent, FeedbackRequestListPageModule, 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, InputTextareaComponent, InputTextareaModule, 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, SettingDetailPageComponent, SettingDetailPageModule, SettingListPageComponent, SettingListPageModule, SettingsDetailNavigationItemComponent, SettingsDetailNavigationItemModule, SettingsDetailNavigationListComponent, SettingsDetailNavigationListModule, SfxLoaderComponent, SfxLoaderModule, SfxPageLoaderComponent, SfxPageLoaderModule, SfxProgressBarComponent, SfxProgressBarModule, SidebarNavigationComponent, SidebarNavigationModule, SidebarNavigationV2Component, SidebarNavigationV2Module, ToasterAlertComponent, ToasterAlertModel, ToasterAlertModule, ToasterAlertType, TooltipWrapperComponent, TooltipWrapperModule, TrimIdPipe, TwoColumnFilterAreaComponent, TwoColumnFilterAreaModule, UploadResumeModalComponent, UploadResumeModalModule, VerticalSeparatorComponent, VerticalSeparatorModule, gridType };
|
|
7193
7341
|
//# sourceMappingURL=symphony-talent-component-library.mjs.map
|