@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() {
|
|
@@ -5653,6 +5654,67 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
|
|
|
5653
5654
|
}]
|
|
5654
5655
|
}] });
|
|
5655
5656
|
|
|
5657
|
+
class AdditionModalComponent {
|
|
5658
|
+
constructor() {
|
|
5659
|
+
this.buttonClicked = new EventEmitter();
|
|
5660
|
+
this.closeButtonClicked = new EventEmitter();
|
|
5661
|
+
}
|
|
5662
|
+
onButtonClick() {
|
|
5663
|
+
this.buttonClicked.emit(this.valueToAdd);
|
|
5664
|
+
}
|
|
5665
|
+
onCloseButtonClick() {
|
|
5666
|
+
this.closeButtonClicked.emit();
|
|
5667
|
+
}
|
|
5668
|
+
onInputValueChange(value) {
|
|
5669
|
+
this.valueToAdd = value;
|
|
5670
|
+
}
|
|
5671
|
+
}
|
|
5672
|
+
AdditionModalComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AdditionModalComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
5673
|
+
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"] }] });
|
|
5674
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AdditionModalComponent, decorators: [{
|
|
5675
|
+
type: Component,
|
|
5676
|
+
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" }]
|
|
5677
|
+
}], ctorParameters: function () { return []; }, propDecorators: { model: [{
|
|
5678
|
+
type: Input
|
|
5679
|
+
}], buttonClicked: [{
|
|
5680
|
+
type: Output
|
|
5681
|
+
}], closeButtonClicked: [{
|
|
5682
|
+
type: Output
|
|
5683
|
+
}] } });
|
|
5684
|
+
|
|
5685
|
+
class AdditionModalModule {
|
|
5686
|
+
}
|
|
5687
|
+
AdditionModalModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AdditionModalModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
5688
|
+
AdditionModalModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AdditionModalModule, declarations: [AdditionModalComponent], imports: [CommonModule,
|
|
5689
|
+
H4Module,
|
|
5690
|
+
ParagraphModule,
|
|
5691
|
+
IconModule,
|
|
5692
|
+
ButtonModule,
|
|
5693
|
+
InputTextModule], exports: [AdditionModalComponent] });
|
|
5694
|
+
AdditionModalModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AdditionModalModule, imports: [[
|
|
5695
|
+
CommonModule,
|
|
5696
|
+
H4Module,
|
|
5697
|
+
ParagraphModule,
|
|
5698
|
+
IconModule,
|
|
5699
|
+
ButtonModule,
|
|
5700
|
+
InputTextModule,
|
|
5701
|
+
]] });
|
|
5702
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AdditionModalModule, decorators: [{
|
|
5703
|
+
type: NgModule,
|
|
5704
|
+
args: [{
|
|
5705
|
+
declarations: [AdditionModalComponent],
|
|
5706
|
+
exports: [AdditionModalComponent],
|
|
5707
|
+
imports: [
|
|
5708
|
+
CommonModule,
|
|
5709
|
+
H4Module,
|
|
5710
|
+
ParagraphModule,
|
|
5711
|
+
IconModule,
|
|
5712
|
+
ButtonModule,
|
|
5713
|
+
InputTextModule,
|
|
5714
|
+
],
|
|
5715
|
+
}]
|
|
5716
|
+
}] });
|
|
5717
|
+
|
|
5656
5718
|
class OrganismsModule {
|
|
5657
5719
|
}
|
|
5658
5720
|
OrganismsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: OrganismsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
@@ -5676,7 +5738,8 @@ OrganismsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version
|
|
|
5676
5738
|
DocumentManagementListModule,
|
|
5677
5739
|
InputCheckboxListModule,
|
|
5678
5740
|
SettingsDetailNavigationListModule,
|
|
5679
|
-
EditableSettingItemListModule
|
|
5741
|
+
EditableSettingItemListModule,
|
|
5742
|
+
AdditionModalModule] });
|
|
5680
5743
|
OrganismsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: OrganismsModule, imports: [[
|
|
5681
5744
|
CommonModule,
|
|
5682
5745
|
NoteListModule,
|
|
@@ -5698,7 +5761,8 @@ OrganismsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version
|
|
|
5698
5761
|
DocumentManagementListModule,
|
|
5699
5762
|
InputCheckboxListModule,
|
|
5700
5763
|
SettingsDetailNavigationListModule,
|
|
5701
|
-
EditableSettingItemListModule
|
|
5764
|
+
EditableSettingItemListModule,
|
|
5765
|
+
AdditionModalModule
|
|
5702
5766
|
]] });
|
|
5703
5767
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: OrganismsModule, decorators: [{
|
|
5704
5768
|
type: NgModule,
|
|
@@ -5725,7 +5789,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
|
|
|
5725
5789
|
DocumentManagementListModule,
|
|
5726
5790
|
InputCheckboxListModule,
|
|
5727
5791
|
SettingsDetailNavigationListModule,
|
|
5728
|
-
EditableSettingItemListModule
|
|
5792
|
+
EditableSettingItemListModule,
|
|
5793
|
+
AdditionModalModule
|
|
5729
5794
|
]
|
|
5730
5795
|
}]
|
|
5731
5796
|
}] });
|
|
@@ -7836,20 +7901,27 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
|
|
|
7836
7901
|
class ToggleListPartialPageComponent {
|
|
7837
7902
|
constructor() {
|
|
7838
7903
|
this.updateSettingToggle = new EventEmitter();
|
|
7904
|
+
this.addButtonClick = new EventEmitter();
|
|
7905
|
+
this.icon = Icons.INCLUDE;
|
|
7839
7906
|
}
|
|
7840
7907
|
updateSettingValue(event) {
|
|
7841
7908
|
this.updateSettingToggle.emit(event);
|
|
7842
7909
|
}
|
|
7910
|
+
onAddButtonClick(event) {
|
|
7911
|
+
this.addButtonClick.emit(event);
|
|
7912
|
+
}
|
|
7843
7913
|
}
|
|
7844
7914
|
ToggleListPartialPageComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ToggleListPartialPageComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
7845
|
-
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"] }] });
|
|
7915
|
+
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"] }] });
|
|
7846
7916
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ToggleListPartialPageComponent, decorators: [{
|
|
7847
7917
|
type: Component,
|
|
7848
|
-
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" }]
|
|
7918
|
+
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"] }]
|
|
7849
7919
|
}], ctorParameters: function () { return []; }, propDecorators: { model: [{
|
|
7850
7920
|
type: Input
|
|
7851
7921
|
}], updateSettingToggle: [{
|
|
7852
7922
|
type: Output
|
|
7923
|
+
}], addButtonClick: [{
|
|
7924
|
+
type: Output
|
|
7853
7925
|
}] } });
|
|
7854
7926
|
|
|
7855
7927
|
class FeedbackSettingDetailsPageComponent {
|
|
@@ -7865,7 +7937,7 @@ class FeedbackSettingDetailsPageComponent {
|
|
|
7865
7937
|
}
|
|
7866
7938
|
}
|
|
7867
7939
|
FeedbackSettingDetailsPageComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackSettingDetailsPageComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
7868
|
-
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"] }] });
|
|
7940
|
+
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"] }] });
|
|
7869
7941
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackSettingDetailsPageComponent, decorators: [{
|
|
7870
7942
|
type: Component,
|
|
7871
7943
|
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" }]
|
|
@@ -7886,7 +7958,8 @@ ToggleListPartialPageModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0
|
|
|
7886
7958
|
AdminListModule,
|
|
7887
7959
|
BreadcrumbModule,
|
|
7888
7960
|
H3Module,
|
|
7889
|
-
LabelledToggleListModule
|
|
7961
|
+
LabelledToggleListModule,
|
|
7962
|
+
ButtonWithIconModule], exports: [ToggleListPartialPageComponent] });
|
|
7890
7963
|
ToggleListPartialPageModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ToggleListPartialPageModule, imports: [[
|
|
7891
7964
|
InputToggleModule,
|
|
7892
7965
|
LabelledInputToggleModule,
|
|
@@ -7895,6 +7968,7 @@ ToggleListPartialPageModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0
|
|
|
7895
7968
|
BreadcrumbModule,
|
|
7896
7969
|
H3Module,
|
|
7897
7970
|
LabelledToggleListModule,
|
|
7971
|
+
ButtonWithIconModule,
|
|
7898
7972
|
]] });
|
|
7899
7973
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ToggleListPartialPageModule, decorators: [{
|
|
7900
7974
|
type: NgModule,
|
|
@@ -7909,6 +7983,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
|
|
|
7909
7983
|
BreadcrumbModule,
|
|
7910
7984
|
H3Module,
|
|
7911
7985
|
LabelledToggleListModule,
|
|
7986
|
+
ButtonWithIconModule,
|
|
7912
7987
|
],
|
|
7913
7988
|
}]
|
|
7914
7989
|
}] });
|