@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
|
@@ -1501,6 +1501,67 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
|
|
|
1501
1501
|
}]
|
|
1502
1502
|
}] });
|
|
1503
1503
|
|
|
1504
|
+
var FeedbackCardState;
|
|
1505
|
+
(function (FeedbackCardState) {
|
|
1506
|
+
FeedbackCardState["None"] = "None";
|
|
1507
|
+
FeedbackCardState["Yes"] = "Yes";
|
|
1508
|
+
FeedbackCardState["No"] = "No";
|
|
1509
|
+
FeedbackCardState["NotNow"] = "NotNow";
|
|
1510
|
+
})(FeedbackCardState || (FeedbackCardState = {}));
|
|
1511
|
+
|
|
1512
|
+
class FeedbackCardComponent {
|
|
1513
|
+
constructor() {
|
|
1514
|
+
this.cardClick = new EventEmitter();
|
|
1515
|
+
this.FeedbackCardState = FeedbackCardState;
|
|
1516
|
+
}
|
|
1517
|
+
onCardClick(clickEvent) {
|
|
1518
|
+
this.cardClick.emit(this.model);
|
|
1519
|
+
}
|
|
1520
|
+
}
|
|
1521
|
+
FeedbackCardComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackCardComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1522
|
+
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 });
|
|
1523
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackCardComponent, decorators: [{
|
|
1524
|
+
type: Component,
|
|
1525
|
+
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"] }]
|
|
1526
|
+
}], ctorParameters: function () { return []; }, propDecorators: { model: [{
|
|
1527
|
+
type: Input
|
|
1528
|
+
}], cardClick: [{
|
|
1529
|
+
type: Output
|
|
1530
|
+
}] } });
|
|
1531
|
+
|
|
1532
|
+
class FeedbackCardModule {
|
|
1533
|
+
}
|
|
1534
|
+
FeedbackCardModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackCardModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1535
|
+
FeedbackCardModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackCardModule, declarations: [FeedbackCardComponent], imports: [CommonModule,
|
|
1536
|
+
H4Module,
|
|
1537
|
+
IconModule,
|
|
1538
|
+
H5Module,
|
|
1539
|
+
IconWrapperModule,
|
|
1540
|
+
ParagraphModule], exports: [FeedbackCardComponent] });
|
|
1541
|
+
FeedbackCardModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackCardModule, imports: [[
|
|
1542
|
+
CommonModule,
|
|
1543
|
+
H4Module,
|
|
1544
|
+
IconModule,
|
|
1545
|
+
H5Module,
|
|
1546
|
+
IconWrapperModule,
|
|
1547
|
+
ParagraphModule
|
|
1548
|
+
]] });
|
|
1549
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackCardModule, decorators: [{
|
|
1550
|
+
type: NgModule,
|
|
1551
|
+
args: [{
|
|
1552
|
+
declarations: [FeedbackCardComponent],
|
|
1553
|
+
imports: [
|
|
1554
|
+
CommonModule,
|
|
1555
|
+
H4Module,
|
|
1556
|
+
IconModule,
|
|
1557
|
+
H5Module,
|
|
1558
|
+
IconWrapperModule,
|
|
1559
|
+
ParagraphModule
|
|
1560
|
+
],
|
|
1561
|
+
exports: [FeedbackCardComponent]
|
|
1562
|
+
}]
|
|
1563
|
+
}] });
|
|
1564
|
+
|
|
1504
1565
|
class PillsComponent {
|
|
1505
1566
|
constructor() {
|
|
1506
1567
|
this.removePill = new EventEmitter();
|
|
@@ -1750,7 +1811,8 @@ MoleculesModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version
|
|
|
1750
1811
|
IconSwatchModule,
|
|
1751
1812
|
BreadcrumbModule,
|
|
1752
1813
|
H5WithIconModule,
|
|
1753
|
-
InvoiceLineItemModule
|
|
1814
|
+
InvoiceLineItemModule,
|
|
1815
|
+
FeedbackCardModule], exports: [PillsModule, BreadcrumbModule, FeedbackCardModule] });
|
|
1754
1816
|
MoleculesModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: MoleculesModule, imports: [[
|
|
1755
1817
|
CommonModule,
|
|
1756
1818
|
AvatarModule,
|
|
@@ -1761,7 +1823,8 @@ MoleculesModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version
|
|
|
1761
1823
|
BreadcrumbModule,
|
|
1762
1824
|
H5WithIconModule,
|
|
1763
1825
|
InvoiceLineItemModule,
|
|
1764
|
-
|
|
1826
|
+
FeedbackCardModule
|
|
1827
|
+
], PillsModule, BreadcrumbModule, FeedbackCardModule] });
|
|
1765
1828
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: MoleculesModule, decorators: [{
|
|
1766
1829
|
type: NgModule,
|
|
1767
1830
|
args: [{
|
|
@@ -1776,8 +1839,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
|
|
|
1776
1839
|
BreadcrumbModule,
|
|
1777
1840
|
H5WithIconModule,
|
|
1778
1841
|
InvoiceLineItemModule,
|
|
1842
|
+
FeedbackCardModule
|
|
1779
1843
|
],
|
|
1780
|
-
exports: [PillsModule, BreadcrumbModule]
|
|
1844
|
+
exports: [PillsModule, BreadcrumbModule, FeedbackCardModule]
|
|
1781
1845
|
}]
|
|
1782
1846
|
}] });
|
|
1783
1847
|
|
|
@@ -1814,6 +1878,39 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
|
|
|
1814
1878
|
}]
|
|
1815
1879
|
}] });
|
|
1816
1880
|
|
|
1881
|
+
class FeedbackCardListComponent {
|
|
1882
|
+
constructor() {
|
|
1883
|
+
this.cardClick = new EventEmitter();
|
|
1884
|
+
}
|
|
1885
|
+
onFeedbackCardClick(feedbackCard) {
|
|
1886
|
+
this.cardClick.emit(feedbackCard);
|
|
1887
|
+
}
|
|
1888
|
+
}
|
|
1889
|
+
FeedbackCardListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackCardListComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1890
|
+
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"] }] });
|
|
1891
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackCardListComponent, decorators: [{
|
|
1892
|
+
type: Component,
|
|
1893
|
+
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"] }]
|
|
1894
|
+
}], ctorParameters: function () { return []; }, propDecorators: { feedbackCardList: [{
|
|
1895
|
+
type: Input
|
|
1896
|
+
}], cardClick: [{
|
|
1897
|
+
type: Output
|
|
1898
|
+
}] } });
|
|
1899
|
+
|
|
1900
|
+
class FeedbackCardListModule {
|
|
1901
|
+
}
|
|
1902
|
+
FeedbackCardListModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackCardListModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1903
|
+
FeedbackCardListModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackCardListModule, declarations: [FeedbackCardListComponent], imports: [CommonModule, FeedbackCardModule], exports: [FeedbackCardListComponent] });
|
|
1904
|
+
FeedbackCardListModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackCardListModule, imports: [[CommonModule, FeedbackCardModule]] });
|
|
1905
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackCardListModule, decorators: [{
|
|
1906
|
+
type: NgModule,
|
|
1907
|
+
args: [{
|
|
1908
|
+
declarations: [FeedbackCardListComponent],
|
|
1909
|
+
imports: [CommonModule, FeedbackCardModule],
|
|
1910
|
+
exports: [FeedbackCardListComponent]
|
|
1911
|
+
}]
|
|
1912
|
+
}] });
|
|
1913
|
+
|
|
1817
1914
|
class NoteComponent {
|
|
1818
1915
|
constructor() {
|
|
1819
1916
|
this.noteModel = {
|
|
@@ -2750,7 +2847,8 @@ OrganismsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version
|
|
|
2750
2847
|
TypographyModule,
|
|
2751
2848
|
IconExplorerModule,
|
|
2752
2849
|
CardListModule,
|
|
2753
|
-
CancelModalModule
|
|
2850
|
+
CancelModalModule,
|
|
2851
|
+
FeedbackCardListModule] });
|
|
2754
2852
|
OrganismsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: OrganismsModule, imports: [[
|
|
2755
2853
|
CommonModule,
|
|
2756
2854
|
NoteListModule,
|
|
@@ -2758,7 +2856,8 @@ OrganismsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version
|
|
|
2758
2856
|
TypographyModule,
|
|
2759
2857
|
IconExplorerModule,
|
|
2760
2858
|
CardListModule,
|
|
2761
|
-
CancelModalModule
|
|
2859
|
+
CancelModalModule,
|
|
2860
|
+
FeedbackCardListModule
|
|
2762
2861
|
]] });
|
|
2763
2862
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: OrganismsModule, decorators: [{
|
|
2764
2863
|
type: NgModule,
|
|
@@ -2771,8 +2870,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
|
|
|
2771
2870
|
TypographyModule,
|
|
2772
2871
|
IconExplorerModule,
|
|
2773
2872
|
CardListModule,
|
|
2774
|
-
CancelModalModule
|
|
2775
|
-
|
|
2873
|
+
CancelModalModule,
|
|
2874
|
+
FeedbackCardListModule
|
|
2875
|
+
]
|
|
2776
2876
|
}]
|
|
2777
2877
|
}] });
|
|
2778
2878
|
|
|
@@ -2815,7 +2915,6 @@ class EventsSettingsPageComponent {
|
|
|
2815
2915
|
this.addButtonClicked.emit();
|
|
2816
2916
|
}
|
|
2817
2917
|
refreshGrid() {
|
|
2818
|
-
console.log('refresh grid', this.grid);
|
|
2819
2918
|
this.grid.updateGridFilter();
|
|
2820
2919
|
}
|
|
2821
2920
|
}
|
|
@@ -3586,6 +3685,91 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
|
|
|
3586
3685
|
}]
|
|
3587
3686
|
}] });
|
|
3588
3687
|
|
|
3688
|
+
class FeedbackListTemplateComponent {
|
|
3689
|
+
constructor() { }
|
|
3690
|
+
}
|
|
3691
|
+
FeedbackListTemplateComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackListTemplateComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
3692
|
+
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"] });
|
|
3693
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackListTemplateComponent, decorators: [{
|
|
3694
|
+
type: Component,
|
|
3695
|
+
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"] }]
|
|
3696
|
+
}], ctorParameters: function () { return []; } });
|
|
3697
|
+
|
|
3698
|
+
class FeedbackListPageComponent {
|
|
3699
|
+
constructor() {
|
|
3700
|
+
this.cardClicked = new EventEmitter();
|
|
3701
|
+
this.submitButtonClicked = new EventEmitter();
|
|
3702
|
+
}
|
|
3703
|
+
onCardClick(feedbackCard) {
|
|
3704
|
+
this.cardClicked.emit(feedbackCard);
|
|
3705
|
+
}
|
|
3706
|
+
onSubmitButtonClick(text) {
|
|
3707
|
+
this.submitButtonClicked.emit();
|
|
3708
|
+
}
|
|
3709
|
+
}
|
|
3710
|
+
FeedbackListPageComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackListPageComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
3711
|
+
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 });
|
|
3712
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackListPageComponent, decorators: [{
|
|
3713
|
+
type: Component,
|
|
3714
|
+
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"] }]
|
|
3715
|
+
}], ctorParameters: function () { return []; }, propDecorators: { model: [{
|
|
3716
|
+
type: Input
|
|
3717
|
+
}], cardClicked: [{
|
|
3718
|
+
type: Output
|
|
3719
|
+
}], submitButtonClicked: [{
|
|
3720
|
+
type: Output
|
|
3721
|
+
}] } });
|
|
3722
|
+
|
|
3723
|
+
class FeedbackListTemplateModule {
|
|
3724
|
+
}
|
|
3725
|
+
FeedbackListTemplateModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackListTemplateModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
3726
|
+
FeedbackListTemplateModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackListTemplateModule, declarations: [FeedbackListTemplateComponent], imports: [CommonModule, PlaceholderModule], exports: [FeedbackListTemplateComponent] });
|
|
3727
|
+
FeedbackListTemplateModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackListTemplateModule, imports: [[CommonModule, PlaceholderModule]] });
|
|
3728
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackListTemplateModule, decorators: [{
|
|
3729
|
+
type: NgModule,
|
|
3730
|
+
args: [{
|
|
3731
|
+
declarations: [FeedbackListTemplateComponent],
|
|
3732
|
+
imports: [CommonModule, PlaceholderModule],
|
|
3733
|
+
exports: [FeedbackListTemplateComponent]
|
|
3734
|
+
}]
|
|
3735
|
+
}] });
|
|
3736
|
+
|
|
3737
|
+
class FeedbackListPageModule {
|
|
3738
|
+
}
|
|
3739
|
+
FeedbackListPageModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackListPageModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
3740
|
+
FeedbackListPageModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackListPageModule, declarations: [FeedbackListPageComponent], imports: [CommonModule,
|
|
3741
|
+
PlaceholderModule,
|
|
3742
|
+
FeedbackListTemplateModule,
|
|
3743
|
+
H3Module,
|
|
3744
|
+
ParagraphModule,
|
|
3745
|
+
ButtonModule,
|
|
3746
|
+
FeedbackCardListModule], exports: [FeedbackListPageComponent] });
|
|
3747
|
+
FeedbackListPageModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackListPageModule, imports: [[
|
|
3748
|
+
CommonModule,
|
|
3749
|
+
PlaceholderModule,
|
|
3750
|
+
FeedbackListTemplateModule,
|
|
3751
|
+
H3Module,
|
|
3752
|
+
ParagraphModule,
|
|
3753
|
+
ButtonModule,
|
|
3754
|
+
FeedbackCardListModule
|
|
3755
|
+
]] });
|
|
3756
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackListPageModule, decorators: [{
|
|
3757
|
+
type: NgModule,
|
|
3758
|
+
args: [{
|
|
3759
|
+
declarations: [FeedbackListPageComponent],
|
|
3760
|
+
imports: [
|
|
3761
|
+
CommonModule,
|
|
3762
|
+
PlaceholderModule,
|
|
3763
|
+
FeedbackListTemplateModule,
|
|
3764
|
+
H3Module,
|
|
3765
|
+
ParagraphModule,
|
|
3766
|
+
ButtonModule,
|
|
3767
|
+
FeedbackCardListModule
|
|
3768
|
+
],
|
|
3769
|
+
exports: [FeedbackListPageComponent]
|
|
3770
|
+
}]
|
|
3771
|
+
}] });
|
|
3772
|
+
|
|
3589
3773
|
/*
|
|
3590
3774
|
* ATOMS
|
|
3591
3775
|
*/
|
|
@@ -3594,5 +3778,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
|
|
|
3594
3778
|
* Generated bundle index. Do not edit.
|
|
3595
3779
|
*/
|
|
3596
3780
|
|
|
3597
|
-
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 };
|
|
3781
|
+
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 };
|
|
3598
3782
|
//# sourceMappingURL=symphony-talent-component-library.mjs.map
|