@symphony-talent/component-library 4.46.0 → 4.48.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-dropdown/input-dropdown-list.model.mjs +1 -1
- package/esm2020/lib/atoms/input-dropdown/input-dropdown.component.mjs +2 -1
- package/esm2020/lib/organisms/addition-modal/addition-modal.component.mjs +36 -0
- package/esm2020/lib/organisms/addition-modal/addition-modal.model.mjs +2 -0
- package/esm2020/lib/organisms/addition-modal/addition-modal.module.mjs +42 -0
- package/esm2020/lib/organisms/organisms.module.mjs +8 -4
- package/esm2020/lib/pages/feedback-setting-details-page/feedback-setting-details-page.component.mjs +1 -1
- package/esm2020/lib/pages/toggle-list-partial-page/toggle-list-partial-page.component.mjs +13 -4
- package/esm2020/lib/pages/toggle-list-partial-page/toggle-list-partial-page.model.mjs +1 -1
- package/esm2020/lib/pages/toggle-list-partial-page/toggle-list-partial-page.module.mjs +6 -2
- package/esm2020/projects/component-library/lib/atoms/input-dropdown/input-dropdown-list.model.mjs +1 -1
- package/esm2020/projects/component-library/lib/atoms/input-dropdown/input-dropdown.component.mjs +2 -1
- package/esm2020/projects/component-library/lib/organisms/addition-modal/addition-modal.component.mjs +36 -0
- package/esm2020/projects/component-library/lib/organisms/addition-modal/addition-modal.model.mjs +2 -0
- package/esm2020/projects/component-library/lib/organisms/addition-modal/addition-modal.module.mjs +42 -0
- package/esm2020/projects/component-library/lib/organisms/organisms.module.mjs +8 -4
- package/esm2020/projects/component-library/lib/pages/feedback-setting-details-page/feedback-setting-details-page.component.mjs +1 -1
- package/esm2020/projects/component-library/lib/pages/toggle-list-partial-page/toggle-list-partial-page.component.mjs +13 -4
- package/esm2020/projects/component-library/lib/pages/toggle-list-partial-page/toggle-list-partial-page.model.mjs +1 -1
- package/esm2020/projects/component-library/lib/pages/toggle-list-partial-page/toggle-list-partial-page.module.mjs +6 -2
- package/fesm2015/symphony-talent-component-library-projects-component-library.mjs +82 -7
- package/fesm2015/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
- package/fesm2015/symphony-talent-component-library.mjs +82 -7
- package/fesm2015/symphony-talent-component-library.mjs.map +1 -1
- package/fesm2020/symphony-talent-component-library-projects-component-library.mjs +82 -7
- package/fesm2020/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
- package/fesm2020/symphony-talent-component-library.mjs +82 -7
- package/fesm2020/symphony-talent-component-library.mjs.map +1 -1
- package/lib/atoms/input-dropdown/input-dropdown-list.model.d.ts +1 -0
- package/lib/organisms/addition-modal/addition-modal.component.d.ts +15 -0
- package/lib/organisms/addition-modal/addition-modal.model.d.ts +6 -0
- package/lib/organisms/addition-modal/addition-modal.module.d.ts +13 -0
- package/lib/organisms/organisms.module.d.ts +2 -1
- package/lib/pages/toggle-list-partial-page/toggle-list-partial-page.component.d.ts +5 -1
- package/lib/pages/toggle-list-partial-page/toggle-list-partial-page.model.d.ts +2 -0
- package/lib/pages/toggle-list-partial-page/toggle-list-partial-page.module.d.ts +2 -1
- package/package.json +1 -1
- package/projects/component-library/lib/atoms/input-dropdown/input-dropdown-list.model.d.ts +1 -0
- package/projects/component-library/lib/organisms/addition-modal/addition-modal.component.d.ts +15 -0
- package/projects/component-library/lib/organisms/addition-modal/addition-modal.model.d.ts +6 -0
- package/projects/component-library/lib/organisms/addition-modal/addition-modal.module.d.ts +13 -0
- package/projects/component-library/lib/organisms/organisms.module.d.ts +2 -1
- package/projects/component-library/lib/pages/toggle-list-partial-page/toggle-list-partial-page.component.d.ts +5 -1
- package/projects/component-library/lib/pages/toggle-list-partial-page/toggle-list-partial-page.model.d.ts +2 -0
- package/projects/component-library/lib/pages/toggle-list-partial-page/toggle-list-partial-page.module.d.ts +2 -1
|
@@ -1400,6 +1400,7 @@ class InputDropdownComponent {
|
|
|
1400
1400
|
if (!action.isDisabled) {
|
|
1401
1401
|
this.selectItem.emit(action);
|
|
1402
1402
|
this.inputDropdownListModel.selectedName = `${action.name}`;
|
|
1403
|
+
this.inputDropdownListModel.selectedId = action.id;
|
|
1403
1404
|
}
|
|
1404
1405
|
}
|
|
1405
1406
|
onClearSelection() {
|
|
@@ -5650,6 +5651,67 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
|
|
|
5650
5651
|
}]
|
|
5651
5652
|
}] });
|
|
5652
5653
|
|
|
5654
|
+
class AdditionModalComponent {
|
|
5655
|
+
constructor() {
|
|
5656
|
+
this.buttonClicked = new EventEmitter();
|
|
5657
|
+
this.closeButtonClicked = new EventEmitter();
|
|
5658
|
+
}
|
|
5659
|
+
onButtonClick() {
|
|
5660
|
+
this.buttonClicked.emit(this.valueToAdd);
|
|
5661
|
+
}
|
|
5662
|
+
onCloseButtonClick() {
|
|
5663
|
+
this.closeButtonClicked.emit();
|
|
5664
|
+
}
|
|
5665
|
+
onInputValueChange(value) {
|
|
5666
|
+
this.valueToAdd = value;
|
|
5667
|
+
}
|
|
5668
|
+
}
|
|
5669
|
+
AdditionModalComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AdditionModalComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
5670
|
+
AdditionModalComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: AdditionModalComponent, selector: "symphony-addition-modal", inputs: { model: "model" }, outputs: { buttonClicked: "buttonClicked", closeButtonClicked: "closeButtonClicked" }, ngImport: i0, template: "<div *ngIf=\"model\" class=\"sfx sfx-modal\">\n <section class=\"modal-header sfx-p-30 sfx-pt-40\">\n <div class=\"modal-title\">\n <div class=\"row\">\n <div class=\"col-xs-8 col-sm-8 col-md-8 col-lg-8\">\n <symphony-h4 [text]=\"model.title\"></symphony-h4>\n </div>\n <div class=\"col-xs-4 col-sm-4 col-md-4 col-lg-4\">\n <symphony-icon\n class=\"pull-right\"\n [icon]=\"'si-close-modal'\"\n (clicked)=\"onCloseButtonClick()\"\n ></symphony-icon>\n </div>\n </div>\n </div>\n </section>\n <section class=\"modal-body sfx-p-30\">\n <symphony-paragraph>{{ model.content }}</symphony-paragraph>\n <symphony-input-text\n (textChange)=\"onInputValueChange($event)\"\n ></symphony-input-text>\n </section>\n <section class=\"modal-footer sfx-pt-30 sfx-pb-40\">\n <symphony-button\n *ngIf=\"model.btnSecondary\"\n [text]=\"model.btnSecondary\"\n [isSecondary]=\"true\"\n (clicked)=\"onButtonClick()\"\n ></symphony-button>\n <symphony-button\n class=\"sfx-ml-20\"\n [text]=\"model.btnPrimary\"\n [disabled]=\"false\"\n (clicked)=\"onButtonClick()\"\n ></symphony-button>\n </section>\n</div>\n", components: [{ type: H4Component, selector: "symphony-h4", inputs: ["text", "isSecondary"] }, { type: IconComponent, selector: "symphony-icon", inputs: ["icon", "isSecondary", "size", "iconColor"], outputs: ["clicked"] }, { type: ParagraphComponent, selector: "symphony-paragraph", inputs: ["text", "isSecondary", "isFontBold"] }, { type: InputTextComponent, selector: "symphony-input-text", inputs: ["placeholder", "icon", "label", "isInverse", "size"], outputs: ["textChange"] }, { type: ButtonComponent, selector: "symphony-button", inputs: ["text", "disabled", "isSecondary", "isInverse"], outputs: ["clicked"] }], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
5671
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AdditionModalComponent, decorators: [{
|
|
5672
|
+
type: Component,
|
|
5673
|
+
args: [{ selector: 'symphony-addition-modal', template: "<div *ngIf=\"model\" class=\"sfx sfx-modal\">\n <section class=\"modal-header sfx-p-30 sfx-pt-40\">\n <div class=\"modal-title\">\n <div class=\"row\">\n <div class=\"col-xs-8 col-sm-8 col-md-8 col-lg-8\">\n <symphony-h4 [text]=\"model.title\"></symphony-h4>\n </div>\n <div class=\"col-xs-4 col-sm-4 col-md-4 col-lg-4\">\n <symphony-icon\n class=\"pull-right\"\n [icon]=\"'si-close-modal'\"\n (clicked)=\"onCloseButtonClick()\"\n ></symphony-icon>\n </div>\n </div>\n </div>\n </section>\n <section class=\"modal-body sfx-p-30\">\n <symphony-paragraph>{{ model.content }}</symphony-paragraph>\n <symphony-input-text\n (textChange)=\"onInputValueChange($event)\"\n ></symphony-input-text>\n </section>\n <section class=\"modal-footer sfx-pt-30 sfx-pb-40\">\n <symphony-button\n *ngIf=\"model.btnSecondary\"\n [text]=\"model.btnSecondary\"\n [isSecondary]=\"true\"\n (clicked)=\"onButtonClick()\"\n ></symphony-button>\n <symphony-button\n class=\"sfx-ml-20\"\n [text]=\"model.btnPrimary\"\n [disabled]=\"false\"\n (clicked)=\"onButtonClick()\"\n ></symphony-button>\n </section>\n</div>\n" }]
|
|
5674
|
+
}], ctorParameters: function () { return []; }, propDecorators: { model: [{
|
|
5675
|
+
type: Input
|
|
5676
|
+
}], buttonClicked: [{
|
|
5677
|
+
type: Output
|
|
5678
|
+
}], closeButtonClicked: [{
|
|
5679
|
+
type: Output
|
|
5680
|
+
}] } });
|
|
5681
|
+
|
|
5682
|
+
class AdditionModalModule {
|
|
5683
|
+
}
|
|
5684
|
+
AdditionModalModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AdditionModalModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
5685
|
+
AdditionModalModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AdditionModalModule, declarations: [AdditionModalComponent], imports: [CommonModule,
|
|
5686
|
+
H4Module,
|
|
5687
|
+
ParagraphModule,
|
|
5688
|
+
IconModule,
|
|
5689
|
+
ButtonModule,
|
|
5690
|
+
InputTextModule], exports: [AdditionModalComponent] });
|
|
5691
|
+
AdditionModalModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AdditionModalModule, imports: [[
|
|
5692
|
+
CommonModule,
|
|
5693
|
+
H4Module,
|
|
5694
|
+
ParagraphModule,
|
|
5695
|
+
IconModule,
|
|
5696
|
+
ButtonModule,
|
|
5697
|
+
InputTextModule,
|
|
5698
|
+
]] });
|
|
5699
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AdditionModalModule, decorators: [{
|
|
5700
|
+
type: NgModule,
|
|
5701
|
+
args: [{
|
|
5702
|
+
declarations: [AdditionModalComponent],
|
|
5703
|
+
exports: [AdditionModalComponent],
|
|
5704
|
+
imports: [
|
|
5705
|
+
CommonModule,
|
|
5706
|
+
H4Module,
|
|
5707
|
+
ParagraphModule,
|
|
5708
|
+
IconModule,
|
|
5709
|
+
ButtonModule,
|
|
5710
|
+
InputTextModule,
|
|
5711
|
+
],
|
|
5712
|
+
}]
|
|
5713
|
+
}] });
|
|
5714
|
+
|
|
5653
5715
|
class OrganismsModule {
|
|
5654
5716
|
}
|
|
5655
5717
|
OrganismsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: OrganismsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
@@ -5673,7 +5735,8 @@ OrganismsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version
|
|
|
5673
5735
|
DocumentManagementListModule,
|
|
5674
5736
|
InputCheckboxListModule,
|
|
5675
5737
|
SettingsDetailNavigationListModule,
|
|
5676
|
-
EditableSettingItemListModule
|
|
5738
|
+
EditableSettingItemListModule,
|
|
5739
|
+
AdditionModalModule] });
|
|
5677
5740
|
OrganismsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: OrganismsModule, imports: [[
|
|
5678
5741
|
CommonModule,
|
|
5679
5742
|
NoteListModule,
|
|
@@ -5695,7 +5758,8 @@ OrganismsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version
|
|
|
5695
5758
|
DocumentManagementListModule,
|
|
5696
5759
|
InputCheckboxListModule,
|
|
5697
5760
|
SettingsDetailNavigationListModule,
|
|
5698
|
-
EditableSettingItemListModule
|
|
5761
|
+
EditableSettingItemListModule,
|
|
5762
|
+
AdditionModalModule
|
|
5699
5763
|
]] });
|
|
5700
5764
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: OrganismsModule, decorators: [{
|
|
5701
5765
|
type: NgModule,
|
|
@@ -5722,7 +5786,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
|
|
|
5722
5786
|
DocumentManagementListModule,
|
|
5723
5787
|
InputCheckboxListModule,
|
|
5724
5788
|
SettingsDetailNavigationListModule,
|
|
5725
|
-
EditableSettingItemListModule
|
|
5789
|
+
EditableSettingItemListModule,
|
|
5790
|
+
AdditionModalModule
|
|
5726
5791
|
]
|
|
5727
5792
|
}]
|
|
5728
5793
|
}] });
|
|
@@ -7832,20 +7897,27 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
|
|
|
7832
7897
|
class ToggleListPartialPageComponent {
|
|
7833
7898
|
constructor() {
|
|
7834
7899
|
this.updateSettingToggle = new EventEmitter();
|
|
7900
|
+
this.addButtonClick = new EventEmitter();
|
|
7901
|
+
this.icon = Icons.INCLUDE;
|
|
7835
7902
|
}
|
|
7836
7903
|
updateSettingValue(event) {
|
|
7837
7904
|
this.updateSettingToggle.emit(event);
|
|
7838
7905
|
}
|
|
7906
|
+
onAddButtonClick(event) {
|
|
7907
|
+
this.addButtonClick.emit(event);
|
|
7908
|
+
}
|
|
7839
7909
|
}
|
|
7840
7910
|
ToggleListPartialPageComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ToggleListPartialPageComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
7841
|
-
ToggleListPartialPageComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: ToggleListPartialPageComponent, selector: "symphony-toggle-list-partial-page", inputs: { model: "model" }, outputs: { updateSettingToggle: "updateSettingToggle" }, ngImport: i0, template: "<div *ngIf=\"model\">\n <h3 sfx-header>{{ model.PageLabel }}</h3>\n <symphony-labelled-toggle-list\n [modelList]=\"model.toggleModels\"\n (toggleListItemValue)=\"updateSettingValue($event)\"\n >\n </symphony-labelled-toggle-list>\n</div>\n", components: [{ type: LabelledToggleListComponent, selector: "symphony-labelled-toggle-list", inputs: ["modelList"], outputs: ["toggleListItemValue"] }], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
7911
|
+
ToggleListPartialPageComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: ToggleListPartialPageComponent, selector: "symphony-toggle-list-partial-page", inputs: { model: "model" }, outputs: { updateSettingToggle: "updateSettingToggle", addButtonClick: "addButtonClick" }, ngImport: i0, template: "<div *ngIf=\"model\">\n <h3 sfx-header>{{ model.PageLabel }}</h3>\n <symphony-labelled-toggle-list\n [modelList]=\"model.toggleModels\"\n (toggleListItemValue)=\"updateSettingValue($event)\"\n >\n </symphony-labelled-toggle-list>\n <symphony-button-with-icon *ngIf=\"model.enableAddButton\"\n class=\"add-button sfx-font-bold\"\n (clicked)=\"onAddButtonClick($event)\"\n [icon]=\"icon\"\n [text]=\"model.addButtonText\"\n [showActionButton]=\"true\"\n [showPopover]=\"true\"\n [isDisabled]=\"false\"\n ></symphony-button-with-icon>\n</div>\n", styles: [".add-button{color:#712ace}\n"], components: [{ type: LabelledToggleListComponent, selector: "symphony-labelled-toggle-list", inputs: ["modelList"], outputs: ["toggleListItemValue"] }, { type: ButtonWithIconComponent, selector: "symphony-button-with-icon", inputs: ["text", "icon", "showActionButton", "showPopover", "isDisabled"], outputs: ["clicked"] }], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
7842
7912
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ToggleListPartialPageComponent, decorators: [{
|
|
7843
7913
|
type: Component,
|
|
7844
|
-
args: [{ selector: 'symphony-toggle-list-partial-page', template: "<div *ngIf=\"model\">\n <h3 sfx-header>{{ model.PageLabel }}</h3>\n <symphony-labelled-toggle-list\n [modelList]=\"model.toggleModels\"\n (toggleListItemValue)=\"updateSettingValue($event)\"\n >\n </symphony-labelled-toggle-list>\n</div>\n" }]
|
|
7914
|
+
args: [{ selector: 'symphony-toggle-list-partial-page', template: "<div *ngIf=\"model\">\n <h3 sfx-header>{{ model.PageLabel }}</h3>\n <symphony-labelled-toggle-list\n [modelList]=\"model.toggleModels\"\n (toggleListItemValue)=\"updateSettingValue($event)\"\n >\n </symphony-labelled-toggle-list>\n <symphony-button-with-icon *ngIf=\"model.enableAddButton\"\n class=\"add-button sfx-font-bold\"\n (clicked)=\"onAddButtonClick($event)\"\n [icon]=\"icon\"\n [text]=\"model.addButtonText\"\n [showActionButton]=\"true\"\n [showPopover]=\"true\"\n [isDisabled]=\"false\"\n ></symphony-button-with-icon>\n</div>\n", styles: [".add-button{color:#712ace}\n"] }]
|
|
7845
7915
|
}], ctorParameters: function () { return []; }, propDecorators: { model: [{
|
|
7846
7916
|
type: Input
|
|
7847
7917
|
}], updateSettingToggle: [{
|
|
7848
7918
|
type: Output
|
|
7919
|
+
}], addButtonClick: [{
|
|
7920
|
+
type: Output
|
|
7849
7921
|
}] } });
|
|
7850
7922
|
|
|
7851
7923
|
class FeedbackSettingDetailsPageComponent {
|
|
@@ -7861,7 +7933,7 @@ class FeedbackSettingDetailsPageComponent {
|
|
|
7861
7933
|
}
|
|
7862
7934
|
}
|
|
7863
7935
|
FeedbackSettingDetailsPageComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackSettingDetailsPageComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
7864
|
-
FeedbackSettingDetailsPageComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: FeedbackSettingDetailsPageComponent, selector: "symphony-feedback-setting-details-page", inputs: { model: "model" }, outputs: { detailNavigationClicked: "detailNavigationClicked", settingToggleClicked: "settingToggleClicked" }, 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($event)\"\n ></symphony-settings-detail-navigation-list>\n\n <section sfx-content>\n <symphony-toggle-list-partial-page\n [model]=\"model.toggleListPartialPageModel\"\n (updateSettingToggle)=\"onToggleClick($event)\"\n >\n </symphony-toggle-list-partial-page>\n </section>\n</symphony-setting-details-template>\n", 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"] }, { type: ToggleListPartialPageComponent, selector: "symphony-toggle-list-partial-page", inputs: ["model"], outputs: ["updateSettingToggle"] }], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
7936
|
+
FeedbackSettingDetailsPageComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: FeedbackSettingDetailsPageComponent, selector: "symphony-feedback-setting-details-page", inputs: { model: "model" }, outputs: { detailNavigationClicked: "detailNavigationClicked", settingToggleClicked: "settingToggleClicked" }, 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($event)\"\n ></symphony-settings-detail-navigation-list>\n\n <section sfx-content>\n <symphony-toggle-list-partial-page\n [model]=\"model.toggleListPartialPageModel\"\n (updateSettingToggle)=\"onToggleClick($event)\"\n >\n </symphony-toggle-list-partial-page>\n </section>\n</symphony-setting-details-template>\n", 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"] }, { type: ToggleListPartialPageComponent, selector: "symphony-toggle-list-partial-page", inputs: ["model"], outputs: ["updateSettingToggle", "addButtonClick"] }], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
7865
7937
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackSettingDetailsPageComponent, decorators: [{
|
|
7866
7938
|
type: Component,
|
|
7867
7939
|
args: [{ selector: 'symphony-feedback-setting-details-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($event)\"\n ></symphony-settings-detail-navigation-list>\n\n <section sfx-content>\n <symphony-toggle-list-partial-page\n [model]=\"model.toggleListPartialPageModel\"\n (updateSettingToggle)=\"onToggleClick($event)\"\n >\n </symphony-toggle-list-partial-page>\n </section>\n</symphony-setting-details-template>\n" }]
|
|
@@ -7882,7 +7954,8 @@ ToggleListPartialPageModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0
|
|
|
7882
7954
|
AdminListModule,
|
|
7883
7955
|
BreadcrumbModule,
|
|
7884
7956
|
H3Module,
|
|
7885
|
-
LabelledToggleListModule
|
|
7957
|
+
LabelledToggleListModule,
|
|
7958
|
+
ButtonWithIconModule], exports: [ToggleListPartialPageComponent] });
|
|
7886
7959
|
ToggleListPartialPageModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ToggleListPartialPageModule, imports: [[
|
|
7887
7960
|
InputToggleModule,
|
|
7888
7961
|
LabelledInputToggleModule,
|
|
@@ -7891,6 +7964,7 @@ ToggleListPartialPageModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0
|
|
|
7891
7964
|
BreadcrumbModule,
|
|
7892
7965
|
H3Module,
|
|
7893
7966
|
LabelledToggleListModule,
|
|
7967
|
+
ButtonWithIconModule,
|
|
7894
7968
|
]] });
|
|
7895
7969
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ToggleListPartialPageModule, decorators: [{
|
|
7896
7970
|
type: NgModule,
|
|
@@ -7905,6 +7979,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
|
|
|
7905
7979
|
BreadcrumbModule,
|
|
7906
7980
|
H3Module,
|
|
7907
7981
|
LabelledToggleListModule,
|
|
7982
|
+
ButtonWithIconModule,
|
|
7908
7983
|
],
|
|
7909
7984
|
}]
|
|
7910
7985
|
}] });
|