@symphony-talent/component-library 3.11.1 → 3.13.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/molecules/feedback-card/feedback-card.component.mjs +29 -0
- package/esm2020/lib/molecules/feedback-card/feedback-card.model.mjs +8 -0
- package/esm2020/lib/molecules/feedback-card/feedback-card.module.mjs +42 -0
- package/esm2020/lib/molecules/molecules.module.mjs +8 -4
- package/esm2020/lib/organisms/feedback-card-list/feedback-card-list.component.mjs +23 -0
- package/esm2020/lib/organisms/feedback-card-list/feedback-card-list.module.mjs +19 -0
- package/esm2020/lib/organisms/organisms.module.mjs +9 -5
- package/esm2020/lib/pages/events-settings-page/events-settings-page.component.mjs +1 -2
- package/esm2020/lib/pages/feedback-list-page/feedback-list-page.component.mjs +32 -0
- package/esm2020/lib/pages/feedback-list-page/feedback-list-page.model.mjs +2 -0
- package/esm2020/lib/pages/feedback-list-page/feedback-list-page.module.mjs +47 -0
- package/esm2020/lib/templates/feeback-list-template/feedback-list-template.component.mjs +12 -0
- package/esm2020/lib/templates/feeback-list-template/feedback-list-template.module.mjs +19 -0
- package/esm2020/projects/component-library/lib/molecules/feedback-card/feedback-card.component.mjs +29 -0
- package/esm2020/projects/component-library/lib/molecules/feedback-card/feedback-card.model.mjs +8 -0
- package/esm2020/projects/component-library/lib/molecules/feedback-card/feedback-card.module.mjs +42 -0
- package/esm2020/projects/component-library/lib/molecules/molecules.module.mjs +8 -4
- package/esm2020/projects/component-library/lib/organisms/feedback-card-list/feedback-card-list.component.mjs +23 -0
- package/esm2020/projects/component-library/lib/organisms/feedback-card-list/feedback-card-list.module.mjs +19 -0
- package/esm2020/projects/component-library/lib/organisms/organisms.module.mjs +9 -5
- package/esm2020/projects/component-library/lib/pages/events-settings-page/events-settings-page.component.mjs +1 -2
- package/esm2020/projects/component-library/lib/pages/feedback-list-page/feedback-list-page.component.mjs +32 -0
- package/esm2020/projects/component-library/lib/pages/feedback-list-page/feedback-list-page.model.mjs +2 -0
- package/esm2020/projects/component-library/lib/pages/feedback-list-page/feedback-list-page.module.mjs +47 -0
- package/esm2020/projects/component-library/lib/templates/feeback-list-template/feedback-list-template.component.mjs +12 -0
- package/esm2020/projects/component-library/lib/templates/feeback-list-template/feedback-list-template.module.mjs +19 -0
- package/esm2020/projects/component-library/public-api.mjs +9 -1
- package/esm2020/public-api.mjs +9 -1
- package/fesm2015/symphony-talent-component-library-projects-component-library.mjs +193 -9
- package/fesm2015/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
- package/fesm2015/symphony-talent-component-library.mjs +193 -9
- package/fesm2015/symphony-talent-component-library.mjs.map +1 -1
- package/fesm2020/symphony-talent-component-library-projects-component-library.mjs +193 -9
- package/fesm2020/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
- package/fesm2020/symphony-talent-component-library.mjs +193 -9
- package/fesm2020/symphony-talent-component-library.mjs.map +1 -1
- package/lib/molecules/feedback-card/feedback-card.component.d.ts +12 -0
- package/lib/molecules/feedback-card/feedback-card.model.d.ts +14 -0
- package/lib/molecules/feedback-card/feedback-card.module.d.ts +13 -0
- package/lib/molecules/molecules.module.d.ts +2 -1
- package/lib/organisms/feedback-card-list/feedback-card-list.component.d.ts +11 -0
- package/lib/organisms/feedback-card-list/feedback-card-list.module.d.ts +9 -0
- package/lib/organisms/organisms.module.d.ts +2 -1
- package/lib/pages/feedback-list-page/feedback-list-page.component.d.ts +14 -0
- package/lib/pages/feedback-list-page/feedback-list-page.model.d.ts +4 -0
- package/lib/pages/feedback-list-page/feedback-list-page.module.d.ts +14 -0
- package/lib/templates/feeback-list-template/feedback-list-template.component.d.ts +6 -0
- package/lib/templates/feeback-list-template/feedback-list-template.module.d.ts +9 -0
- package/package.json +1 -1
- package/projects/component-library/lib/molecules/feedback-card/feedback-card.component.d.ts +12 -0
- package/projects/component-library/lib/molecules/feedback-card/feedback-card.model.d.ts +14 -0
- package/projects/component-library/lib/molecules/feedback-card/feedback-card.module.d.ts +13 -0
- package/projects/component-library/lib/molecules/molecules.module.d.ts +2 -1
- package/projects/component-library/lib/organisms/feedback-card-list/feedback-card-list.component.d.ts +11 -0
- package/projects/component-library/lib/organisms/feedback-card-list/feedback-card-list.module.d.ts +9 -0
- package/projects/component-library/lib/organisms/organisms.module.d.ts +2 -1
- package/projects/component-library/lib/pages/feedback-list-page/feedback-list-page.component.d.ts +14 -0
- package/projects/component-library/lib/pages/feedback-list-page/feedback-list-page.model.d.ts +4 -0
- package/projects/component-library/lib/pages/feedback-list-page/feedback-list-page.module.d.ts +14 -0
- package/projects/component-library/lib/templates/feeback-list-template/feedback-list-template.component.d.ts +6 -0
- package/projects/component-library/lib/templates/feeback-list-template/feedback-list-template.module.d.ts +9 -0
- package/projects/component-library/public-api.d.ts +8 -0
- package/public-api.d.ts +8 -0
|
@@ -1499,6 +1499,67 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
|
|
|
1499
1499
|
}]
|
|
1500
1500
|
}] });
|
|
1501
1501
|
|
|
1502
|
+
var FeedbackCardState;
|
|
1503
|
+
(function (FeedbackCardState) {
|
|
1504
|
+
FeedbackCardState["None"] = "None";
|
|
1505
|
+
FeedbackCardState["Yes"] = "Yes";
|
|
1506
|
+
FeedbackCardState["No"] = "No";
|
|
1507
|
+
FeedbackCardState["NotNow"] = "NotNow";
|
|
1508
|
+
})(FeedbackCardState || (FeedbackCardState = {}));
|
|
1509
|
+
|
|
1510
|
+
class FeedbackCardComponent {
|
|
1511
|
+
constructor() {
|
|
1512
|
+
this.cardClick = new EventEmitter();
|
|
1513
|
+
this.FeedbackCardState = FeedbackCardState;
|
|
1514
|
+
}
|
|
1515
|
+
onCardClick(clickEvent) {
|
|
1516
|
+
this.cardClick.emit(this.model);
|
|
1517
|
+
}
|
|
1518
|
+
}
|
|
1519
|
+
FeedbackCardComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackCardComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1520
|
+
FeedbackCardComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: FeedbackCardComponent, selector: "symphony-feedback-card", inputs: { model: "model" }, outputs: { cardClick: "cardClick" }, ngImport: i0, template: "<div *ngIf=\"model\" (click)=\"onCardClick($event)\" class=\"card-item-wrapper\">\n <div class=\"card-item sfx-d-flex\">\n <div class=\"card-title-wrap sfx-d-flex sfx-pb-10 sfx-mb-25\">\n <div class=\"card-title\">\n <symphony-h4>{{ model.title }}</symphony-h4>\n </div>\n <div class=\"card-icon\">\n <symphony-icon-wrapper\n *ngIf=\"model.showEditIcon\"\n [isInverse]=\"true\"\n class=\"feedback-edit\"\n ><symphony-icon [icon]=\"'si-edit'\" [size]=\"'9px'\"></symphony-icon\n ></symphony-icon-wrapper>\n </div>\n </div>\n <div class=\"card-description\" *ngFor=\"let bodyText of model.body\">\n <symphony-paragraph class=\"sfx-mb-5 sfx-d-block\">\n {{ bodyText }}\n </symphony-paragraph>\n </div>\n <div\n class=\"card-footer sfx-mb-5 sfx-d-flex\"\n [ngSwitch]=\"model.feedbackState\"\n >\n <ng-container *ngSwitchCase=\"'Yes'\">\n <symphony-icon\n *ngIf=\"model.showFeedbackIcon\"\n class=\"sfx-mr-10 color-green\"\n [icon]=\"'si-feedback-yes'\"\n ></symphony-icon>\n <symphony-h5>Yes</symphony-h5>\n </ng-container>\n\n <ng-container *ngSwitchCase=\"'No'\">\n <symphony-icon\n *ngIf=\"model.showFeedbackIcon\"\n class=\"sfx-mr-10 color-red\"\n [icon]=\"'si-feedback-no'\"\n ></symphony-icon>\n <symphony-h5>No</symphony-h5>\n </ng-container>\n\n <ng-container *ngSwitchCase=\"'NotNow'\">\n <symphony-icon\n *ngIf=\"model.showFeedbackIcon\"\n class=\"sfx-mr-10 color-orange\"\n [icon]=\"'si-feedback-maybe'\"\n ></symphony-icon>\n <symphony-h5>Not Now</symphony-h5>\n </ng-container>\n\n <ng-container *ngSwitchCase=\"'None'\">\n <symphony-h5>Provide Feedback</symphony-h5>\n </ng-container>\n </div>\n </div>\n</div>\n", styles: [".card-item-wrapper{position:relative;width:100%}.card-item{box-shadow:0 2px 10px #0003;border-radius:10px;padding:20px;transition:.2s;cursor:pointer;min-height:218px;flex-direction:column}.card-title-wrap{border-bottom:1px solid #d9d9d9}.card-title-wrap .card-title h4{font-size:1.2rem;margin-top:5px}.card-icon{margin-left:auto}.card-icon .feedback-edit .icon-wrapper{height:18px;width:18px;padding:0;border:0}.card-icon .feedback-edit .icon-wrapper.is-inverse:hover{background:#000;color:#fff}.card-footer{margin-top:auto;align-self:flex-end}.card-footer h5{line-height:24px}.color-green{color:#00d56b}.color-red{color:#f0001e}.color-orange{color:#ffa700}\n"], components: [{ type: H4Component, selector: "symphony-h4", inputs: ["text", "isSecondary"] }, { type: IconWrapperComponent, selector: "symphony-icon-wrapper", inputs: ["isInverse"], outputs: ["clicked"] }, { type: IconComponent, selector: "symphony-icon", inputs: ["icon", "isSecondary", "size", "iconColor"], outputs: ["clicked"] }, { type: ParagraphComponent, selector: "symphony-paragraph", inputs: ["text", "isSecondary"] }, { type: H5Component, selector: "symphony-h5", inputs: ["text", "isSecondary"] }], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i1.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { type: i1.NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }], encapsulation: i0.ViewEncapsulation.None });
|
|
1521
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackCardComponent, decorators: [{
|
|
1522
|
+
type: Component,
|
|
1523
|
+
args: [{ selector: 'symphony-feedback-card', encapsulation: ViewEncapsulation.None, template: "<div *ngIf=\"model\" (click)=\"onCardClick($event)\" class=\"card-item-wrapper\">\n <div class=\"card-item sfx-d-flex\">\n <div class=\"card-title-wrap sfx-d-flex sfx-pb-10 sfx-mb-25\">\n <div class=\"card-title\">\n <symphony-h4>{{ model.title }}</symphony-h4>\n </div>\n <div class=\"card-icon\">\n <symphony-icon-wrapper\n *ngIf=\"model.showEditIcon\"\n [isInverse]=\"true\"\n class=\"feedback-edit\"\n ><symphony-icon [icon]=\"'si-edit'\" [size]=\"'9px'\"></symphony-icon\n ></symphony-icon-wrapper>\n </div>\n </div>\n <div class=\"card-description\" *ngFor=\"let bodyText of model.body\">\n <symphony-paragraph class=\"sfx-mb-5 sfx-d-block\">\n {{ bodyText }}\n </symphony-paragraph>\n </div>\n <div\n class=\"card-footer sfx-mb-5 sfx-d-flex\"\n [ngSwitch]=\"model.feedbackState\"\n >\n <ng-container *ngSwitchCase=\"'Yes'\">\n <symphony-icon\n *ngIf=\"model.showFeedbackIcon\"\n class=\"sfx-mr-10 color-green\"\n [icon]=\"'si-feedback-yes'\"\n ></symphony-icon>\n <symphony-h5>Yes</symphony-h5>\n </ng-container>\n\n <ng-container *ngSwitchCase=\"'No'\">\n <symphony-icon\n *ngIf=\"model.showFeedbackIcon\"\n class=\"sfx-mr-10 color-red\"\n [icon]=\"'si-feedback-no'\"\n ></symphony-icon>\n <symphony-h5>No</symphony-h5>\n </ng-container>\n\n <ng-container *ngSwitchCase=\"'NotNow'\">\n <symphony-icon\n *ngIf=\"model.showFeedbackIcon\"\n class=\"sfx-mr-10 color-orange\"\n [icon]=\"'si-feedback-maybe'\"\n ></symphony-icon>\n <symphony-h5>Not Now</symphony-h5>\n </ng-container>\n\n <ng-container *ngSwitchCase=\"'None'\">\n <symphony-h5>Provide Feedback</symphony-h5>\n </ng-container>\n </div>\n </div>\n</div>\n", styles: [".card-item-wrapper{position:relative;width:100%}.card-item{box-shadow:0 2px 10px #0003;border-radius:10px;padding:20px;transition:.2s;cursor:pointer;min-height:218px;flex-direction:column}.card-title-wrap{border-bottom:1px solid #d9d9d9}.card-title-wrap .card-title h4{font-size:1.2rem;margin-top:5px}.card-icon{margin-left:auto}.card-icon .feedback-edit .icon-wrapper{height:18px;width:18px;padding:0;border:0}.card-icon .feedback-edit .icon-wrapper.is-inverse:hover{background:#000;color:#fff}.card-footer{margin-top:auto;align-self:flex-end}.card-footer h5{line-height:24px}.color-green{color:#00d56b}.color-red{color:#f0001e}.color-orange{color:#ffa700}\n"] }]
|
|
1524
|
+
}], ctorParameters: function () { return []; }, propDecorators: { model: [{
|
|
1525
|
+
type: Input
|
|
1526
|
+
}], cardClick: [{
|
|
1527
|
+
type: Output
|
|
1528
|
+
}] } });
|
|
1529
|
+
|
|
1530
|
+
class FeedbackCardModule {
|
|
1531
|
+
}
|
|
1532
|
+
FeedbackCardModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackCardModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1533
|
+
FeedbackCardModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackCardModule, declarations: [FeedbackCardComponent], imports: [CommonModule,
|
|
1534
|
+
H4Module,
|
|
1535
|
+
IconModule,
|
|
1536
|
+
H5Module,
|
|
1537
|
+
IconWrapperModule,
|
|
1538
|
+
ParagraphModule], exports: [FeedbackCardComponent] });
|
|
1539
|
+
FeedbackCardModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackCardModule, imports: [[
|
|
1540
|
+
CommonModule,
|
|
1541
|
+
H4Module,
|
|
1542
|
+
IconModule,
|
|
1543
|
+
H5Module,
|
|
1544
|
+
IconWrapperModule,
|
|
1545
|
+
ParagraphModule
|
|
1546
|
+
]] });
|
|
1547
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackCardModule, decorators: [{
|
|
1548
|
+
type: NgModule,
|
|
1549
|
+
args: [{
|
|
1550
|
+
declarations: [FeedbackCardComponent],
|
|
1551
|
+
imports: [
|
|
1552
|
+
CommonModule,
|
|
1553
|
+
H4Module,
|
|
1554
|
+
IconModule,
|
|
1555
|
+
H5Module,
|
|
1556
|
+
IconWrapperModule,
|
|
1557
|
+
ParagraphModule
|
|
1558
|
+
],
|
|
1559
|
+
exports: [FeedbackCardComponent]
|
|
1560
|
+
}]
|
|
1561
|
+
}] });
|
|
1562
|
+
|
|
1502
1563
|
class PillsComponent {
|
|
1503
1564
|
constructor() {
|
|
1504
1565
|
this.removePill = new EventEmitter();
|
|
@@ -1748,7 +1809,8 @@ MoleculesModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version
|
|
|
1748
1809
|
IconSwatchModule,
|
|
1749
1810
|
BreadcrumbModule,
|
|
1750
1811
|
H5WithIconModule,
|
|
1751
|
-
InvoiceLineItemModule
|
|
1812
|
+
InvoiceLineItemModule,
|
|
1813
|
+
FeedbackCardModule], exports: [PillsModule, BreadcrumbModule, FeedbackCardModule] });
|
|
1752
1814
|
MoleculesModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: MoleculesModule, imports: [[
|
|
1753
1815
|
CommonModule,
|
|
1754
1816
|
AvatarModule,
|
|
@@ -1759,7 +1821,8 @@ MoleculesModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version
|
|
|
1759
1821
|
BreadcrumbModule,
|
|
1760
1822
|
H5WithIconModule,
|
|
1761
1823
|
InvoiceLineItemModule,
|
|
1762
|
-
|
|
1824
|
+
FeedbackCardModule
|
|
1825
|
+
], PillsModule, BreadcrumbModule, FeedbackCardModule] });
|
|
1763
1826
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: MoleculesModule, decorators: [{
|
|
1764
1827
|
type: NgModule,
|
|
1765
1828
|
args: [{
|
|
@@ -1774,8 +1837,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
|
|
|
1774
1837
|
BreadcrumbModule,
|
|
1775
1838
|
H5WithIconModule,
|
|
1776
1839
|
InvoiceLineItemModule,
|
|
1840
|
+
FeedbackCardModule
|
|
1777
1841
|
],
|
|
1778
|
-
exports: [PillsModule, BreadcrumbModule]
|
|
1842
|
+
exports: [PillsModule, BreadcrumbModule, FeedbackCardModule]
|
|
1779
1843
|
}]
|
|
1780
1844
|
}] });
|
|
1781
1845
|
|
|
@@ -1812,6 +1876,39 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
|
|
|
1812
1876
|
}]
|
|
1813
1877
|
}] });
|
|
1814
1878
|
|
|
1879
|
+
class FeedbackCardListComponent {
|
|
1880
|
+
constructor() {
|
|
1881
|
+
this.cardClick = new EventEmitter();
|
|
1882
|
+
}
|
|
1883
|
+
onFeedbackCardClick(feedbackCard) {
|
|
1884
|
+
this.cardClick.emit(feedbackCard);
|
|
1885
|
+
}
|
|
1886
|
+
}
|
|
1887
|
+
FeedbackCardListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackCardListComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1888
|
+
FeedbackCardListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: FeedbackCardListComponent, selector: "symphony-feedback-card-list", inputs: { feedbackCardList: "feedbackCardList" }, outputs: { cardClick: "cardClick" }, ngImport: i0, template: "<section class=\"card-list\">\n <ul class=\"row card-list list-unstyled\">\n <li\n class=\"col-sm-4 col-md-3 card-list-item\"\n *ngFor=\"let feedbackCard of feedbackCardList\"\n >\n <symphony-feedback-card\n [model]=\"feedbackCard\"\n (cardClick)=\"onFeedbackCardClick($event)\"\n ></symphony-feedback-card>\n </li>\n </ul>\n</section>\n", styles: [".card-list-item{margin-bottom:40px}\n"], components: [{ type: FeedbackCardComponent, selector: "symphony-feedback-card", inputs: ["model"], outputs: ["cardClick"] }], directives: [{ type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }] });
|
|
1889
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackCardListComponent, decorators: [{
|
|
1890
|
+
type: Component,
|
|
1891
|
+
args: [{ selector: 'symphony-feedback-card-list', template: "<section class=\"card-list\">\n <ul class=\"row card-list list-unstyled\">\n <li\n class=\"col-sm-4 col-md-3 card-list-item\"\n *ngFor=\"let feedbackCard of feedbackCardList\"\n >\n <symphony-feedback-card\n [model]=\"feedbackCard\"\n (cardClick)=\"onFeedbackCardClick($event)\"\n ></symphony-feedback-card>\n </li>\n </ul>\n</section>\n", styles: [".card-list-item{margin-bottom:40px}\n"] }]
|
|
1892
|
+
}], ctorParameters: function () { return []; }, propDecorators: { feedbackCardList: [{
|
|
1893
|
+
type: Input
|
|
1894
|
+
}], cardClick: [{
|
|
1895
|
+
type: Output
|
|
1896
|
+
}] } });
|
|
1897
|
+
|
|
1898
|
+
class FeedbackCardListModule {
|
|
1899
|
+
}
|
|
1900
|
+
FeedbackCardListModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackCardListModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1901
|
+
FeedbackCardListModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackCardListModule, declarations: [FeedbackCardListComponent], imports: [CommonModule, FeedbackCardModule], exports: [FeedbackCardListComponent] });
|
|
1902
|
+
FeedbackCardListModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackCardListModule, imports: [[CommonModule, FeedbackCardModule]] });
|
|
1903
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackCardListModule, decorators: [{
|
|
1904
|
+
type: NgModule,
|
|
1905
|
+
args: [{
|
|
1906
|
+
declarations: [FeedbackCardListComponent],
|
|
1907
|
+
imports: [CommonModule, FeedbackCardModule],
|
|
1908
|
+
exports: [FeedbackCardListComponent]
|
|
1909
|
+
}]
|
|
1910
|
+
}] });
|
|
1911
|
+
|
|
1815
1912
|
class NoteComponent {
|
|
1816
1913
|
constructor() {
|
|
1817
1914
|
this.noteModel = {
|
|
@@ -2748,7 +2845,8 @@ OrganismsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version
|
|
|
2748
2845
|
TypographyModule,
|
|
2749
2846
|
IconExplorerModule,
|
|
2750
2847
|
CardListModule,
|
|
2751
|
-
CancelModalModule
|
|
2848
|
+
CancelModalModule,
|
|
2849
|
+
FeedbackCardListModule] });
|
|
2752
2850
|
OrganismsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: OrganismsModule, imports: [[
|
|
2753
2851
|
CommonModule,
|
|
2754
2852
|
NoteListModule,
|
|
@@ -2756,7 +2854,8 @@ OrganismsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version
|
|
|
2756
2854
|
TypographyModule,
|
|
2757
2855
|
IconExplorerModule,
|
|
2758
2856
|
CardListModule,
|
|
2759
|
-
CancelModalModule
|
|
2857
|
+
CancelModalModule,
|
|
2858
|
+
FeedbackCardListModule
|
|
2760
2859
|
]] });
|
|
2761
2860
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: OrganismsModule, decorators: [{
|
|
2762
2861
|
type: NgModule,
|
|
@@ -2769,8 +2868,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
|
|
|
2769
2868
|
TypographyModule,
|
|
2770
2869
|
IconExplorerModule,
|
|
2771
2870
|
CardListModule,
|
|
2772
|
-
CancelModalModule
|
|
2773
|
-
|
|
2871
|
+
CancelModalModule,
|
|
2872
|
+
FeedbackCardListModule
|
|
2873
|
+
]
|
|
2774
2874
|
}]
|
|
2775
2875
|
}] });
|
|
2776
2876
|
|
|
@@ -2813,7 +2913,6 @@ class EventsSettingsPageComponent {
|
|
|
2813
2913
|
this.addButtonClicked.emit();
|
|
2814
2914
|
}
|
|
2815
2915
|
refreshGrid() {
|
|
2816
|
-
console.log('refresh grid', this.grid);
|
|
2817
2916
|
this.grid.updateGridFilter();
|
|
2818
2917
|
}
|
|
2819
2918
|
}
|
|
@@ -3583,6 +3682,91 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
|
|
|
3583
3682
|
}]
|
|
3584
3683
|
}] });
|
|
3585
3684
|
|
|
3685
|
+
class FeedbackListTemplateComponent {
|
|
3686
|
+
constructor() { }
|
|
3687
|
+
}
|
|
3688
|
+
FeedbackListTemplateComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackListTemplateComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
3689
|
+
FeedbackListTemplateComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: FeedbackListTemplateComponent, selector: "symphony-feedback-list-template", ngImport: i0, template: "<section class=\"sfx-page-title\">\n <div class=\"row\">\n <div class=\"col-xs-12 col-sm-9 col-md-9 col-lg-9\">\n <ng-content select=\"[page-title]\"></ng-content>\n </div>\n\n <div class=\"col-xs-12 col-sm-3 col-md-3 col-lg-3\">\n <ng-content select=\"[button-primary]\"></ng-content>\n </div>\n </div>\n</section>\n<div class=\"sfx-border-bottom-black-5\"></div>\n<section class=\"sfx-pt-30\">\n <div class=\"row\">\n <div class=\"col-xs-12 col-sm-12 col-md-12 col-lg-12\">\n <ng-content select=\"[feedback-card-list]\"></ng-content>\n </div>\n </div>\n</section>\n", styles: [".sfx-page-title{margin-top:3.125rem;margin-bottom:1.875rem}\n"] });
|
|
3690
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackListTemplateComponent, decorators: [{
|
|
3691
|
+
type: Component,
|
|
3692
|
+
args: [{ selector: 'symphony-feedback-list-template', template: "<section class=\"sfx-page-title\">\n <div class=\"row\">\n <div class=\"col-xs-12 col-sm-9 col-md-9 col-lg-9\">\n <ng-content select=\"[page-title]\"></ng-content>\n </div>\n\n <div class=\"col-xs-12 col-sm-3 col-md-3 col-lg-3\">\n <ng-content select=\"[button-primary]\"></ng-content>\n </div>\n </div>\n</section>\n<div class=\"sfx-border-bottom-black-5\"></div>\n<section class=\"sfx-pt-30\">\n <div class=\"row\">\n <div class=\"col-xs-12 col-sm-12 col-md-12 col-lg-12\">\n <ng-content select=\"[feedback-card-list]\"></ng-content>\n </div>\n </div>\n</section>\n", styles: [".sfx-page-title{margin-top:3.125rem;margin-bottom:1.875rem}\n"] }]
|
|
3693
|
+
}], ctorParameters: function () { return []; } });
|
|
3694
|
+
|
|
3695
|
+
class FeedbackListPageComponent {
|
|
3696
|
+
constructor() {
|
|
3697
|
+
this.cardClicked = new EventEmitter();
|
|
3698
|
+
this.submitButtonClicked = new EventEmitter();
|
|
3699
|
+
}
|
|
3700
|
+
onCardClick(feedbackCard) {
|
|
3701
|
+
this.cardClicked.emit(feedbackCard);
|
|
3702
|
+
}
|
|
3703
|
+
onSubmitButtonClick(text) {
|
|
3704
|
+
this.submitButtonClicked.emit();
|
|
3705
|
+
}
|
|
3706
|
+
}
|
|
3707
|
+
FeedbackListPageComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackListPageComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
3708
|
+
FeedbackListPageComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: FeedbackListPageComponent, selector: "symphony-feedback-list-page", inputs: { model: "model" }, outputs: { cardClicked: "cardClicked", submitButtonClicked: "submitButtonClicked" }, ngImport: i0, template: "<symphony-feedback-list-template *ngIf=\"model\">\n <symphony-h3 page-title>Feedback Request</symphony-h3>\n <symphony-button\n button-primary\n [text]=\"'Submit Feedback'\"\n class=\"pull-right\"\n (clicked)=\"onSubmitButtonClick($event)\"\n ></symphony-button>\n\n <symphony-feedback-card-list\n feedback-card-list\n [feedbackCardList]=\"model.feedbackCardList\"\n (cardClick)=\"onCardClick($event)\"\n ></symphony-feedback-card-list>\n</symphony-feedback-list-template>\n", styles: [".sfx-page-title{margin-top:3.125rem;margin-bottom:1.875rem}.card-list{padding:5px}.sfx .sfx-page-title .h3-primary{margin-top:30px}\n"], components: [{ type: FeedbackListTemplateComponent, selector: "symphony-feedback-list-template" }, { type: H3Component, selector: "symphony-h3", inputs: ["text", "isSecondary"] }, { type: ButtonComponent, selector: "symphony-button", inputs: ["text", "disabled", "isSecondary", "isInverse"], outputs: ["clicked"] }, { type: FeedbackCardListComponent, selector: "symphony-feedback-card-list", inputs: ["feedbackCardList"], outputs: ["cardClick"] }], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0.ViewEncapsulation.None });
|
|
3709
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackListPageComponent, decorators: [{
|
|
3710
|
+
type: Component,
|
|
3711
|
+
args: [{ selector: 'symphony-feedback-list-page', encapsulation: ViewEncapsulation.None, template: "<symphony-feedback-list-template *ngIf=\"model\">\n <symphony-h3 page-title>Feedback Request</symphony-h3>\n <symphony-button\n button-primary\n [text]=\"'Submit Feedback'\"\n class=\"pull-right\"\n (clicked)=\"onSubmitButtonClick($event)\"\n ></symphony-button>\n\n <symphony-feedback-card-list\n feedback-card-list\n [feedbackCardList]=\"model.feedbackCardList\"\n (cardClick)=\"onCardClick($event)\"\n ></symphony-feedback-card-list>\n</symphony-feedback-list-template>\n", styles: [".sfx-page-title{margin-top:3.125rem;margin-bottom:1.875rem}.card-list{padding:5px}.sfx .sfx-page-title .h3-primary{margin-top:30px}\n"] }]
|
|
3712
|
+
}], ctorParameters: function () { return []; }, propDecorators: { model: [{
|
|
3713
|
+
type: Input
|
|
3714
|
+
}], cardClicked: [{
|
|
3715
|
+
type: Output
|
|
3716
|
+
}], submitButtonClicked: [{
|
|
3717
|
+
type: Output
|
|
3718
|
+
}] } });
|
|
3719
|
+
|
|
3720
|
+
class FeedbackListTemplateModule {
|
|
3721
|
+
}
|
|
3722
|
+
FeedbackListTemplateModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackListTemplateModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
3723
|
+
FeedbackListTemplateModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackListTemplateModule, declarations: [FeedbackListTemplateComponent], imports: [CommonModule, PlaceholderModule], exports: [FeedbackListTemplateComponent] });
|
|
3724
|
+
FeedbackListTemplateModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackListTemplateModule, imports: [[CommonModule, PlaceholderModule]] });
|
|
3725
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackListTemplateModule, decorators: [{
|
|
3726
|
+
type: NgModule,
|
|
3727
|
+
args: [{
|
|
3728
|
+
declarations: [FeedbackListTemplateComponent],
|
|
3729
|
+
imports: [CommonModule, PlaceholderModule],
|
|
3730
|
+
exports: [FeedbackListTemplateComponent]
|
|
3731
|
+
}]
|
|
3732
|
+
}] });
|
|
3733
|
+
|
|
3734
|
+
class FeedbackListPageModule {
|
|
3735
|
+
}
|
|
3736
|
+
FeedbackListPageModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackListPageModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
3737
|
+
FeedbackListPageModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackListPageModule, declarations: [FeedbackListPageComponent], imports: [CommonModule,
|
|
3738
|
+
PlaceholderModule,
|
|
3739
|
+
FeedbackListTemplateModule,
|
|
3740
|
+
H3Module,
|
|
3741
|
+
ParagraphModule,
|
|
3742
|
+
ButtonModule,
|
|
3743
|
+
FeedbackCardListModule], exports: [FeedbackListPageComponent] });
|
|
3744
|
+
FeedbackListPageModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackListPageModule, imports: [[
|
|
3745
|
+
CommonModule,
|
|
3746
|
+
PlaceholderModule,
|
|
3747
|
+
FeedbackListTemplateModule,
|
|
3748
|
+
H3Module,
|
|
3749
|
+
ParagraphModule,
|
|
3750
|
+
ButtonModule,
|
|
3751
|
+
FeedbackCardListModule
|
|
3752
|
+
]] });
|
|
3753
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackListPageModule, decorators: [{
|
|
3754
|
+
type: NgModule,
|
|
3755
|
+
args: [{
|
|
3756
|
+
declarations: [FeedbackListPageComponent],
|
|
3757
|
+
imports: [
|
|
3758
|
+
CommonModule,
|
|
3759
|
+
PlaceholderModule,
|
|
3760
|
+
FeedbackListTemplateModule,
|
|
3761
|
+
H3Module,
|
|
3762
|
+
ParagraphModule,
|
|
3763
|
+
ButtonModule,
|
|
3764
|
+
FeedbackCardListModule
|
|
3765
|
+
],
|
|
3766
|
+
exports: [FeedbackListPageComponent]
|
|
3767
|
+
}]
|
|
3768
|
+
}] });
|
|
3769
|
+
|
|
3586
3770
|
/*
|
|
3587
3771
|
* ATOMS
|
|
3588
3772
|
*/
|
|
@@ -3591,5 +3775,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
|
|
|
3591
3775
|
* Generated bundle index. Do not edit.
|
|
3592
3776
|
*/
|
|
3593
3777
|
|
|
3594
|
-
export { ActivityScoreLevel, AdvertiseModalComponent, AlertDuration, AtomsModule, AvatarComponent, AvatarModule, BreadcrumbComponent, BreadcrumbModule, ButtonComponent, ButtonModule, CardComponent, CardListComponent, CardListModule, CardModule, ContactActivityScoreComponent, ContactActivityScoreModule, ContextualMenuComponent, ContextualMenuModule, EventSettingsMoreOptionsComponent, EventSettingsMoreOptionsModule, EventsSettingsPageComponent, EventsSettingsPageModule, FilterAreaComponent, FilterAreaModule, FrameworkModule, GridComponent, GridModule, GridToggleCellRendererComponent, GridToggleCellRendererModule, H1Component, H1Module, H2Component, H2Module, H3Component, H3Module, H4Component, H4Module, H5Component, H5Module, H5WithIconComponent, H5WithIconModule, IconComponent, IconModule, IconWrapperComponent, IconWrapperModule, Icons, InputCheckboxComponent, InputCheckboxModule, InputDropdownComponent, InputDropdownList, InputDropdownListItemModel, InputDropdownModule, InputRadioComponent, InputRadioModule, InputTextComponent, InputTextModule, InputToggleComponent, InputToggleModule, LibrariesPageComponent, LibrariesPageModule, ModalModule, MoleculesModule, OrganismsModule, ParagraphComponent, ParagraphModule, PillComponent, PillModule, PillsComponent, PillsModule, RelevanceScoreComponent, RelevanceScoreModule, SettingListPageComponent, SettingListPageModule, SfxLoaderComponent, SfxLoaderModule, SfxPageLoaderComponent, SfxPageLoaderModule, SfxProgressBarComponent, SfxProgressBarModule, ToasterAlertComponent, ToasterAlertModel, ToasterAlertModule, ToasterAlertType, TooltipWrapperComponent, TooltipWrapperModule, TwoColumnFilterAreaComponent, TwoColumnFilterAreaModule, gridType };
|
|
3778
|
+
export { ActivityScoreLevel, AdvertiseModalComponent, AlertDuration, AtomsModule, AvatarComponent, AvatarModule, BreadcrumbComponent, BreadcrumbModule, ButtonComponent, ButtonModule, CardComponent, CardListComponent, CardListModule, CardModule, ContactActivityScoreComponent, ContactActivityScoreModule, ContextualMenuComponent, ContextualMenuModule, EventSettingsMoreOptionsComponent, EventSettingsMoreOptionsModule, EventsSettingsPageComponent, EventsSettingsPageModule, FeedbackCardComponent, FeedbackCardListComponent, FeedbackCardListModule, FeedbackCardModule, FeedbackCardState, FeedbackListPageComponent, FeedbackListPageModule, FilterAreaComponent, FilterAreaModule, FrameworkModule, GridComponent, GridModule, GridToggleCellRendererComponent, GridToggleCellRendererModule, H1Component, H1Module, H2Component, H2Module, H3Component, H3Module, H4Component, H4Module, H5Component, H5Module, H5WithIconComponent, H5WithIconModule, IconComponent, IconModule, IconWrapperComponent, IconWrapperModule, Icons, InputCheckboxComponent, InputCheckboxModule, InputDropdownComponent, InputDropdownList, InputDropdownListItemModel, InputDropdownModule, InputRadioComponent, InputRadioModule, InputTextComponent, InputTextModule, InputToggleComponent, InputToggleModule, LibrariesPageComponent, LibrariesPageModule, ModalModule, MoleculesModule, OrganismsModule, ParagraphComponent, ParagraphModule, PillComponent, PillModule, PillsComponent, PillsModule, RelevanceScoreComponent, RelevanceScoreModule, SettingListPageComponent, SettingListPageModule, SfxLoaderComponent, SfxLoaderModule, SfxPageLoaderComponent, SfxPageLoaderModule, SfxProgressBarComponent, SfxProgressBarModule, ToasterAlertComponent, ToasterAlertModel, ToasterAlertModule, ToasterAlertType, TooltipWrapperComponent, TooltipWrapperModule, TwoColumnFilterAreaComponent, TwoColumnFilterAreaModule, gridType };
|
|
3595
3779
|
//# sourceMappingURL=symphony-talent-component-library.mjs.map
|