@symphony-talent/component-library 1.9.0 → 2.0.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/atoms.module.mjs +3 -11
- package/esm2020/lib/atoms/grid/framework/contact-activity-score/{contact-activity-score.component.module.mjs → contact-activity-score.module.mjs} +1 -1
- package/esm2020/lib/atoms/grid/framework/framework.module.mjs +2 -2
- package/esm2020/lib/atoms/input-checkbox/input-checkbox.model.mjs +2 -0
- package/esm2020/lib/design-guide/typography/typography.component.mjs +31 -0
- package/esm2020/lib/design-guide/typography/typography.model.mjs +2 -0
- package/esm2020/lib/design-guide/typography/typography.module.mjs +46 -0
- package/esm2020/lib/molecules/card/card.component.mjs +28 -0
- package/esm2020/lib/molecules/card/card.model.mjs +2 -0
- package/esm2020/lib/molecules/card/card.module.mjs +22 -0
- package/esm2020/lib/molecules/molecules.module.mjs +4 -26
- package/esm2020/lib/organisms/card-list/card-list.component.mjs +23 -0
- package/esm2020/lib/organisms/card-list/card-list.module.mjs +19 -0
- package/esm2020/lib/organisms/organisms.module.mjs +40 -0
- package/esm2020/lib/pages/setting-list-page/setting-list-page.component.mjs +33 -0
- package/esm2020/lib/pages/setting-list-page/setting-list-page.model.mjs +2 -0
- package/esm2020/lib/pages/setting-list-page/setting-list-page.module.mjs +46 -0
- package/esm2020/lib/templates/setting-list-template/setting-list-template.component.mjs +12 -0
- package/esm2020/lib/templates/setting-list-template/setting-list-template.module.mjs +28 -0
- package/esm2020/projects/component-library/lib/atoms/atoms.module.mjs +3 -11
- package/esm2020/projects/component-library/lib/atoms/grid/framework/contact-activity-score/{contact-activity-score.component.module.mjs → contact-activity-score.module.mjs} +1 -1
- package/esm2020/projects/component-library/lib/atoms/grid/framework/framework.module.mjs +2 -2
- package/esm2020/projects/component-library/lib/atoms/input-checkbox/input-checkbox.model.mjs +2 -0
- package/esm2020/projects/component-library/lib/design-guide/typography/typography.component.mjs +31 -0
- package/esm2020/projects/component-library/lib/design-guide/typography/typography.model.mjs +2 -0
- package/esm2020/projects/component-library/lib/design-guide/typography/typography.module.mjs +46 -0
- package/esm2020/projects/component-library/lib/molecules/card/card.component.mjs +28 -0
- package/esm2020/projects/component-library/lib/molecules/card/card.model.mjs +2 -0
- package/esm2020/projects/component-library/lib/molecules/card/card.module.mjs +22 -0
- package/esm2020/projects/component-library/lib/molecules/molecules.module.mjs +4 -26
- package/esm2020/projects/component-library/lib/organisms/card-list/card-list.component.mjs +23 -0
- package/esm2020/projects/component-library/lib/organisms/card-list/card-list.module.mjs +19 -0
- package/esm2020/projects/component-library/lib/organisms/organisms.module.mjs +40 -0
- package/esm2020/projects/component-library/lib/pages/setting-list-page/setting-list-page.component.mjs +33 -0
- package/esm2020/projects/component-library/lib/pages/setting-list-page/setting-list-page.model.mjs +2 -0
- package/esm2020/projects/component-library/lib/pages/setting-list-page/setting-list-page.module.mjs +46 -0
- package/esm2020/projects/component-library/lib/templates/setting-list-template/setting-list-template.component.mjs +12 -0
- package/esm2020/projects/component-library/lib/templates/setting-list-template/setting-list-template.module.mjs +28 -0
- package/esm2020/projects/component-library/public-api.mjs +50 -42
- package/esm2020/public-api.mjs +50 -42
- package/fesm2015/symphony-talent-component-library-projects-component-library.mjs +1216 -989
- package/fesm2015/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
- package/fesm2015/symphony-talent-component-library.mjs +1216 -989
- package/fesm2015/symphony-talent-component-library.mjs.map +1 -1
- package/fesm2020/symphony-talent-component-library-projects-component-library.mjs +1216 -989
- package/fesm2020/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
- package/fesm2020/symphony-talent-component-library.mjs +1216 -989
- package/fesm2020/symphony-talent-component-library.mjs.map +1 -1
- package/lib/atoms/atoms.module.d.ts +22 -24
- package/lib/atoms/grid/framework/contact-activity-score/{contact-activity-score.component.module.d.ts → contact-activity-score.module.d.ts} +0 -0
- package/lib/atoms/grid/framework/framework.module.d.ts +1 -1
- package/lib/atoms/input-checkbox/input-checkbox.model.d.ts +5 -0
- package/lib/design-guide/typography/typography.component.d.ts +9 -0
- package/lib/design-guide/typography/typography.model.d.ts +9 -0
- package/lib/design-guide/typography/typography.module.d.ts +14 -0
- package/lib/molecules/card/card.component.d.ts +11 -0
- package/lib/molecules/card/card.model.d.ts +6 -0
- package/lib/molecules/card/card.module.d.ts +12 -0
- package/lib/molecules/molecules.module.d.ts +4 -6
- package/lib/organisms/card-list/card-list.component.d.ts +11 -0
- package/lib/organisms/card-list/card-list.module.d.ts +9 -0
- package/lib/organisms/organisms.module.d.ts +12 -0
- package/lib/pages/setting-list-page/setting-list-page.component.d.ts +15 -0
- package/lib/pages/setting-list-page/setting-list-page.model.d.ts +6 -0
- package/lib/pages/setting-list-page/setting-list-page.module.d.ts +14 -0
- package/lib/templates/setting-list-template/setting-list-template.component.d.ts +6 -0
- package/lib/templates/setting-list-template/setting-list-template.module.d.ts +9 -0
- package/package.json +1 -1
- package/projects/component-library/lib/atoms/atoms.module.d.ts +22 -24
- package/projects/component-library/lib/atoms/grid/framework/contact-activity-score/{contact-activity-score.component.module.d.ts → contact-activity-score.module.d.ts} +0 -0
- package/projects/component-library/lib/atoms/grid/framework/framework.module.d.ts +1 -1
- package/projects/component-library/lib/atoms/input-checkbox/input-checkbox.model.d.ts +5 -0
- package/projects/component-library/lib/design-guide/typography/typography.component.d.ts +9 -0
- package/projects/component-library/lib/design-guide/typography/typography.model.d.ts +9 -0
- package/projects/component-library/lib/design-guide/typography/typography.module.d.ts +14 -0
- package/projects/component-library/lib/molecules/card/card.component.d.ts +11 -0
- package/projects/component-library/lib/molecules/card/card.model.d.ts +6 -0
- package/projects/component-library/lib/molecules/card/card.module.d.ts +12 -0
- package/projects/component-library/lib/molecules/molecules.module.d.ts +4 -6
- package/projects/component-library/lib/organisms/card-list/card-list.component.d.ts +11 -0
- package/projects/component-library/lib/organisms/card-list/card-list.module.d.ts +9 -0
- package/projects/component-library/lib/organisms/organisms.module.d.ts +12 -0
- package/projects/component-library/lib/pages/setting-list-page/setting-list-page.component.d.ts +15 -0
- package/projects/component-library/lib/pages/setting-list-page/setting-list-page.model.d.ts +6 -0
- package/projects/component-library/lib/pages/setting-list-page/setting-list-page.module.d.ts +14 -0
- package/projects/component-library/lib/templates/setting-list-template/setting-list-template.component.d.ts +6 -0
- package/projects/component-library/lib/templates/setting-list-template/setting-list-template.module.d.ts +9 -0
- package/projects/component-library/public-api.d.ts +49 -41
- package/public-api.d.ts +49 -41
- package/esm2020/lib/design-guide/color-swatch-collection/color-swatch-collection.component.mjs +0 -16
- package/esm2020/lib/design-guide/color-swatch-collection/color-swatch-collection.module.mjs +0 -19
- package/esm2020/projects/component-library/lib/design-guide/color-swatch-collection/color-swatch-collection.component.mjs +0 -16
- package/esm2020/projects/component-library/lib/design-guide/color-swatch-collection/color-swatch-collection.module.mjs +0 -19
- package/lib/design-guide/color-swatch-collection/color-swatch-collection.component.d.ts +0 -8
- package/lib/design-guide/color-swatch-collection/color-swatch-collection.module.d.ts +0 -9
- package/projects/component-library/lib/design-guide/color-swatch-collection/color-swatch-collection.component.d.ts +0 -8
- package/projects/component-library/lib/design-guide/color-swatch-collection/color-swatch-collection.module.d.ts +0 -9
|
@@ -2,16 +2,16 @@ import * as i0 from '@angular/core';
|
|
|
2
2
|
import { Component, Input, NgModule, EventEmitter, Output, ViewEncapsulation } from '@angular/core';
|
|
3
3
|
import * as i1 from '@angular/common';
|
|
4
4
|
import { SlicePipe, CommonModule } from '@angular/common';
|
|
5
|
-
import * as i2 from 'ngx-bootstrap/tooltip';
|
|
6
|
-
import { TooltipModule } from 'ngx-bootstrap/tooltip';
|
|
7
|
-
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
|
|
8
|
-
import { Subject, timer } from 'rxjs';
|
|
9
|
-
import { debounceTime, distinctUntilChanged, delay } from 'rxjs/operators';
|
|
10
5
|
import * as i1$1 from 'ngx-bootstrap/dropdown';
|
|
11
6
|
import { BsDropdownModule } from 'ngx-bootstrap/dropdown';
|
|
12
7
|
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
|
|
13
8
|
import * as i1$2 from 'ag-grid-angular';
|
|
14
9
|
import { AgGridModule } from 'ag-grid-angular';
|
|
10
|
+
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
|
|
11
|
+
import { Subject, timer } from 'rxjs';
|
|
12
|
+
import { debounceTime, distinctUntilChanged, delay } from 'rxjs/operators';
|
|
13
|
+
import * as i2 from 'ngx-bootstrap/tooltip';
|
|
14
|
+
import { TooltipModule } from 'ngx-bootstrap/tooltip';
|
|
15
15
|
|
|
16
16
|
class AvatarComponent {
|
|
17
17
|
constructor() { }
|
|
@@ -159,185 +159,361 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
|
|
|
159
159
|
}]
|
|
160
160
|
}] });
|
|
161
161
|
|
|
162
|
-
class
|
|
162
|
+
class ContextualMenuComponent {
|
|
163
163
|
constructor() {
|
|
164
|
-
this.
|
|
164
|
+
this.model = {
|
|
165
|
+
hasBorder: false,
|
|
166
|
+
};
|
|
167
|
+
this.itemClick = new EventEmitter();
|
|
165
168
|
}
|
|
166
|
-
|
|
167
|
-
this.
|
|
169
|
+
onItemClick(item) {
|
|
170
|
+
this.itemClick.emit(item);
|
|
168
171
|
}
|
|
169
172
|
}
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type:
|
|
173
|
+
ContextualMenuComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ContextualMenuComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
174
|
+
ContextualMenuComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: ContextualMenuComponent, selector: "symphony-contextual-menu", inputs: { model: "model" }, outputs: { itemClick: "itemClick" }, ngImport: i0, template: "<div class=\"btn-group\" dropdown>\n <button\n id=\"button-basic\"\n dropdownToggle\n type=\"button\"\n class=\"btn dropdown-toggle\"\n [ngClass]=\"{\n 'has-border': model.hasBorder\n }\"\n aria-controls=\"dropdown-basic\"\n aria-label=\"more-actions-menu\"\n >\n <i class=\"si-more-options\"></i>\n </button>\n <ul\n id=\"dropdown-basic\"\n *dropdownMenu\n class=\"dropdown-menu\"\n role=\"menu\"\n aria-labelledby=\"button-basic\"\n >\n <li role=\"menuitem\" *ngFor=\"let item of model.items\">\n <a\n class=\"dropdown-item\"\n href=\"#\"\n (click)=\"$event.preventDefault(); onItemClick(item)\"\n >{{ item }}</a\n >\n </li>\n </ul>\n</div>\n", styles: [".btn-group .has-border{border-radius:50%;border:2px solid #000;height:40px;width:40px;padding:9px 0;cursor:pointer;text-align:center}.btn-group button.dropdown-toggle.btn{display:flex;align-items:center;justify-content:center;background:#ffffff;padding:0;font-size:18px;line-height:26px;box-shadow:none;width:40px;height:40px;border-radius:50%;color:#000}.btn-group button.dropdown-toggle.btn:hover{background:#000000;color:#fff}.btn-group button.dropdown-toggle.btn .si-more-options{font-size:18px}.btn-group .dropdown-menu{min-width:240px;margin-top:10px;border:none;border-radius:10px;padding-top:20px;padding-bottom:20px;right:-10px;left:auto;box-shadow:0 0 30px #0003;max-height:none;overflow:inherit}.btn-group .dropdown-menu li a.dropdown-item{padding:0 20px;line-height:40px;color:#000;font-weight:600}.btn-group .dropdown-menu li a.dropdown-item:hover{background:#000000;color:#fff}.btn-group .dropdown-menu li a.not-allowed{cursor:not-allowed}.btn-group .dropdown-menu:before{content:\"\\e252\";font-family:Glyphicons Halflings!important;font-size:14px;transform:rotate(180deg);display:inline-block;position:absolute;top:-13px;right:23px;color:#fff}.btn-group.open button.dropdown-toggle.btn{background:#000000;color:#fff}\n"], directives: [{ type: i1$1.BsDropdownDirective, selector: "[bsDropdown],[dropdown]", inputs: ["autoClose", "isAnimated", "insideClick", "isDisabled", "isOpen", "placement", "triggers", "container", "dropup"], outputs: ["onShown", "onHidden", "isOpenChange"], exportAs: ["bs-dropdown"] }, { type: i1$1.BsDropdownToggleDirective, selector: "[bsDropdownToggle],[dropdownToggle]", exportAs: ["bs-dropdown-toggle"] }, { type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i1$1.BsDropdownMenuDirective, selector: "[bsDropdownMenu],[dropdownMenu]", exportAs: ["bs-dropdown-menu"] }, { type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }] });
|
|
175
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ContextualMenuComponent, decorators: [{
|
|
173
176
|
type: Component,
|
|
174
|
-
args: [{ selector: 'symphony-
|
|
175
|
-
}], ctorParameters: function () { return []; }, propDecorators: {
|
|
176
|
-
type: Input
|
|
177
|
-
}], isInverse: [{
|
|
178
|
-
type: Input
|
|
179
|
-
}], hasClose: [{
|
|
180
|
-
type: Input
|
|
181
|
-
}], tooltipLabel: [{
|
|
177
|
+
args: [{ selector: 'symphony-contextual-menu', template: "<div class=\"btn-group\" dropdown>\n <button\n id=\"button-basic\"\n dropdownToggle\n type=\"button\"\n class=\"btn dropdown-toggle\"\n [ngClass]=\"{\n 'has-border': model.hasBorder\n }\"\n aria-controls=\"dropdown-basic\"\n aria-label=\"more-actions-menu\"\n >\n <i class=\"si-more-options\"></i>\n </button>\n <ul\n id=\"dropdown-basic\"\n *dropdownMenu\n class=\"dropdown-menu\"\n role=\"menu\"\n aria-labelledby=\"button-basic\"\n >\n <li role=\"menuitem\" *ngFor=\"let item of model.items\">\n <a\n class=\"dropdown-item\"\n href=\"#\"\n (click)=\"$event.preventDefault(); onItemClick(item)\"\n >{{ item }}</a\n >\n </li>\n </ul>\n</div>\n", styles: [".btn-group .has-border{border-radius:50%;border:2px solid #000;height:40px;width:40px;padding:9px 0;cursor:pointer;text-align:center}.btn-group button.dropdown-toggle.btn{display:flex;align-items:center;justify-content:center;background:#ffffff;padding:0;font-size:18px;line-height:26px;box-shadow:none;width:40px;height:40px;border-radius:50%;color:#000}.btn-group button.dropdown-toggle.btn:hover{background:#000000;color:#fff}.btn-group button.dropdown-toggle.btn .si-more-options{font-size:18px}.btn-group .dropdown-menu{min-width:240px;margin-top:10px;border:none;border-radius:10px;padding-top:20px;padding-bottom:20px;right:-10px;left:auto;box-shadow:0 0 30px #0003;max-height:none;overflow:inherit}.btn-group .dropdown-menu li a.dropdown-item{padding:0 20px;line-height:40px;color:#000;font-weight:600}.btn-group .dropdown-menu li a.dropdown-item:hover{background:#000000;color:#fff}.btn-group .dropdown-menu li a.not-allowed{cursor:not-allowed}.btn-group .dropdown-menu:before{content:\"\\e252\";font-family:Glyphicons Halflings!important;font-size:14px;transform:rotate(180deg);display:inline-block;position:absolute;top:-13px;right:23px;color:#fff}.btn-group.open button.dropdown-toggle.btn{background:#000000;color:#fff}\n"] }]
|
|
178
|
+
}], ctorParameters: function () { return []; }, propDecorators: { model: [{
|
|
182
179
|
type: Input
|
|
183
|
-
}],
|
|
180
|
+
}], itemClick: [{
|
|
184
181
|
type: Output
|
|
185
182
|
}] } });
|
|
186
183
|
|
|
187
|
-
class
|
|
184
|
+
class ContextualMenuModule {
|
|
188
185
|
}
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
]] });
|
|
194
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: PillModule, decorators: [{
|
|
186
|
+
ContextualMenuModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ContextualMenuModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
187
|
+
ContextualMenuModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ContextualMenuModule, declarations: [ContextualMenuComponent], imports: [CommonModule, i1$1.BsDropdownModule, BrowserAnimationsModule], exports: [ContextualMenuComponent] });
|
|
188
|
+
ContextualMenuModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ContextualMenuModule, imports: [[CommonModule, BsDropdownModule.forRoot(), BrowserAnimationsModule]] });
|
|
189
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ContextualMenuModule, decorators: [{
|
|
195
190
|
type: NgModule,
|
|
196
191
|
args: [{
|
|
197
|
-
declarations: [
|
|
198
|
-
imports: [
|
|
199
|
-
|
|
200
|
-
],
|
|
201
|
-
exports: [PillComponent],
|
|
192
|
+
declarations: [ContextualMenuComponent],
|
|
193
|
+
imports: [CommonModule, BsDropdownModule.forRoot(), BrowserAnimationsModule],
|
|
194
|
+
exports: [ContextualMenuComponent],
|
|
202
195
|
}]
|
|
203
196
|
}] });
|
|
204
197
|
|
|
205
|
-
class
|
|
198
|
+
class FilterAreaComponent {
|
|
206
199
|
constructor() { }
|
|
207
200
|
}
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type:
|
|
201
|
+
FilterAreaComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FilterAreaComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
202
|
+
FilterAreaComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: FilterAreaComponent, selector: "symphony-filter-area", ngImport: i0, template: "<div class=\"sfx-filter-section\">\n <div class=\"sfx-border-bottom-mdm-black-1 sfx-mb-20 sfx-pb-20 sfx-mt-10 sfx-d-inline-block sfx-wid-100\">\n <ng-content select=\"[title]\"></ng-content>\n <div class=\"sfx-d-inline-block sfx-ml-10 pull-right\">\n <ng-content select=\"[actions]\"></ng-content>\n </div>\n </div>\n <div class=\"row\">\n <div class=\"col-xs-12 col-sm-6 col-md-3 col-lg-3 sfx-mb-25\">\n <ng-content select=\"[filter-1]\"></ng-content>\n </div>\n <div class=\"col-xs-12 col-sm-6 col-md-3 col-lg-3 sfx-mb-25\">\n <ng-content select=\"[filter-2]\"></ng-content>\n </div>\n <div class=\"col-xs-12 col-sm-6 col-md-3 col-lg-3 sfx-mb-25\">\n <ng-content select=\"[filter-3]\"></ng-content>\n </div>\n <div class=\"col-xs-12 col-sm-6 col-md-3 col-lg-3 sfx-mb-25\">\n <ng-content select=\"[filter-4]\"></ng-content>\n </div>\n <div class=\"col-xs-12 col-sm-6 col-md-3 col-lg-3 sfx-mb-25\">\n <ng-content select=\"[filter-5]\"></ng-content>\n </div>\n <div class=\"col-xs-12 col-sm-6 col-md-3 col-lg-3 sfx-mb-25\">\n <ng-content select=\"[filter-6]\"></ng-content>\n </div>\n <div class=\"col-xs-12 col-sm-6 col-md-6 col-lg-6 sfx-mb-25\">\n <ng-content select=\"[filter-7]\"></ng-content>\n </div>\n </div>\n</div>", styles: [".sfx-filter-section{background:#000000;color:#fff;padding:1.875rem 2.5rem}\n"] });
|
|
203
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FilterAreaComponent, decorators: [{
|
|
211
204
|
type: Component,
|
|
212
|
-
args: [{ selector: 'symphony-
|
|
213
|
-
}], ctorParameters: function () { return []; }
|
|
214
|
-
type: Input
|
|
215
|
-
}] } });
|
|
205
|
+
args: [{ selector: 'symphony-filter-area', template: "<div class=\"sfx-filter-section\">\n <div class=\"sfx-border-bottom-mdm-black-1 sfx-mb-20 sfx-pb-20 sfx-mt-10 sfx-d-inline-block sfx-wid-100\">\n <ng-content select=\"[title]\"></ng-content>\n <div class=\"sfx-d-inline-block sfx-ml-10 pull-right\">\n <ng-content select=\"[actions]\"></ng-content>\n </div>\n </div>\n <div class=\"row\">\n <div class=\"col-xs-12 col-sm-6 col-md-3 col-lg-3 sfx-mb-25\">\n <ng-content select=\"[filter-1]\"></ng-content>\n </div>\n <div class=\"col-xs-12 col-sm-6 col-md-3 col-lg-3 sfx-mb-25\">\n <ng-content select=\"[filter-2]\"></ng-content>\n </div>\n <div class=\"col-xs-12 col-sm-6 col-md-3 col-lg-3 sfx-mb-25\">\n <ng-content select=\"[filter-3]\"></ng-content>\n </div>\n <div class=\"col-xs-12 col-sm-6 col-md-3 col-lg-3 sfx-mb-25\">\n <ng-content select=\"[filter-4]\"></ng-content>\n </div>\n <div class=\"col-xs-12 col-sm-6 col-md-3 col-lg-3 sfx-mb-25\">\n <ng-content select=\"[filter-5]\"></ng-content>\n </div>\n <div class=\"col-xs-12 col-sm-6 col-md-3 col-lg-3 sfx-mb-25\">\n <ng-content select=\"[filter-6]\"></ng-content>\n </div>\n <div class=\"col-xs-12 col-sm-6 col-md-6 col-lg-6 sfx-mb-25\">\n <ng-content select=\"[filter-7]\"></ng-content>\n </div>\n </div>\n</div>", styles: [".sfx-filter-section{background:#000000;color:#fff;padding:1.875rem 2.5rem}\n"] }]
|
|
206
|
+
}], ctorParameters: function () { return []; } });
|
|
216
207
|
|
|
217
|
-
class
|
|
208
|
+
class FilterAreaModule {
|
|
218
209
|
}
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type:
|
|
210
|
+
FilterAreaModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FilterAreaModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
211
|
+
FilterAreaModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FilterAreaModule, declarations: [FilterAreaComponent], imports: [CommonModule], exports: [FilterAreaComponent] });
|
|
212
|
+
FilterAreaModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FilterAreaModule, imports: [[CommonModule]] });
|
|
213
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FilterAreaModule, decorators: [{
|
|
223
214
|
type: NgModule,
|
|
224
215
|
args: [{
|
|
225
|
-
declarations: [
|
|
216
|
+
declarations: [FilterAreaComponent],
|
|
226
217
|
imports: [CommonModule],
|
|
227
|
-
exports: [
|
|
218
|
+
exports: [FilterAreaComponent]
|
|
228
219
|
}]
|
|
229
220
|
}] });
|
|
230
221
|
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
222
|
+
var ActivityScoreLevel;
|
|
223
|
+
(function (ActivityScoreLevel) {
|
|
224
|
+
ActivityScoreLevel["Low"] = "low";
|
|
225
|
+
ActivityScoreLevel["Medium"] = "medium";
|
|
226
|
+
ActivityScoreLevel["High"] = "high";
|
|
227
|
+
ActivityScoreLevel["Empty"] = "empty";
|
|
228
|
+
})(ActivityScoreLevel || (ActivityScoreLevel = {}));
|
|
229
|
+
|
|
230
|
+
class ContactActivityScoreComponent {
|
|
231
|
+
constructor() {
|
|
232
|
+
this.contactActivityScoreModel = { activityScore: ActivityScoreLevel.Low };
|
|
233
|
+
this.contact = { candidateScoreActivityScore: 0 };
|
|
234
|
+
}
|
|
235
|
+
refresh(params) {
|
|
236
|
+
return true;
|
|
237
|
+
}
|
|
238
|
+
agInit(params) {
|
|
239
|
+
this.contact = params.data;
|
|
240
|
+
if (!this.contact.header5) {
|
|
241
|
+
this.dataAvailable = 'N/A';
|
|
242
|
+
}
|
|
243
|
+
else {
|
|
244
|
+
this.dataAvailable = this.contact.header5;
|
|
245
|
+
}
|
|
246
|
+
switch (true) {
|
|
247
|
+
case this.contact.header5 >= 0 && this.contact.header5 < 34: {
|
|
248
|
+
this.contactActivityScoreModel.activityScore = ActivityScoreLevel.Low;
|
|
249
|
+
break;
|
|
250
|
+
}
|
|
251
|
+
case this.contact.header5 >= 34 && this.contact.header5 <= 66: {
|
|
252
|
+
this.contactActivityScoreModel.activityScore =
|
|
253
|
+
ActivityScoreLevel.Medium;
|
|
254
|
+
break;
|
|
255
|
+
}
|
|
256
|
+
case this.contact.header5 > 66: {
|
|
257
|
+
this.contactActivityScoreModel.activityScore = ActivityScoreLevel.High;
|
|
258
|
+
break;
|
|
259
|
+
}
|
|
260
|
+
default: {
|
|
261
|
+
this.contactActivityScoreModel.activityScore = ActivityScoreLevel.Empty;
|
|
262
|
+
break;
|
|
263
|
+
}
|
|
264
|
+
}
|
|
235
265
|
}
|
|
236
266
|
}
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type:
|
|
267
|
+
ContactActivityScoreComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ContactActivityScoreComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
268
|
+
ContactActivityScoreComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: ContactActivityScoreComponent, selector: "symphony-contact-activity-score", ngImport: i0, template: "<span\n class=\"activity-score-bg activity-score-{{\n contactActivityScoreModel.activityScore\n }}\"\n>\n <div class=\"activity-score-content\">{{ dataAvailable }}</div>\n</span>\n", styles: [".activity-score-bg{height:38px;width:38px;background-color:#bbb;border-radius:50%;display:inline-block;color:#fff;text-align:center}.activity-score-bg.activity-score-high{background-color:#00bb5b}.activity-score-bg.activity-score-medium{background-color:#f57300}.activity-score-bg.activity-score-low{background-color:#d60000}.activity-score-bg.activity-score-empty{background-color:#fff;color:#000!important}\n"] });
|
|
269
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ContactActivityScoreComponent, decorators: [{
|
|
240
270
|
type: Component,
|
|
241
|
-
args: [{ selector: 'symphony-
|
|
242
|
-
}], ctorParameters: function () { return []; }
|
|
243
|
-
type: Input
|
|
244
|
-
}] } });
|
|
271
|
+
args: [{ selector: 'symphony-contact-activity-score', template: "<span\n class=\"activity-score-bg activity-score-{{\n contactActivityScoreModel.activityScore\n }}\"\n>\n <div class=\"activity-score-content\">{{ dataAvailable }}</div>\n</span>\n", styles: [".activity-score-bg{height:38px;width:38px;background-color:#bbb;border-radius:50%;display:inline-block;color:#fff;text-align:center}.activity-score-bg.activity-score-high{background-color:#00bb5b}.activity-score-bg.activity-score-medium{background-color:#f57300}.activity-score-bg.activity-score-low{background-color:#d60000}.activity-score-bg.activity-score-empty{background-color:#fff;color:#000!important}\n"] }]
|
|
272
|
+
}], ctorParameters: function () { return []; } });
|
|
245
273
|
|
|
246
|
-
class
|
|
274
|
+
class EventSettingsMoreOptionsComponent {
|
|
275
|
+
constructor() {
|
|
276
|
+
this.agGridParams = {};
|
|
277
|
+
this.moreOptions = {
|
|
278
|
+
items: ['Edit', 'Set as Default'],
|
|
279
|
+
hasBorder: false,
|
|
280
|
+
};
|
|
281
|
+
}
|
|
282
|
+
refresh(params) {
|
|
283
|
+
return true;
|
|
284
|
+
}
|
|
285
|
+
agInit(params) {
|
|
286
|
+
this.agGridParams = params;
|
|
287
|
+
}
|
|
288
|
+
onItemClick(item) {
|
|
289
|
+
const action = {
|
|
290
|
+
item,
|
|
291
|
+
row: this.agGridParams,
|
|
292
|
+
};
|
|
293
|
+
this.agGridParams.itemClick(action);
|
|
294
|
+
}
|
|
247
295
|
}
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
declarations: [ColorSampleComponent],
|
|
255
|
-
imports: [CommonModule],
|
|
256
|
-
exports: [ColorSampleComponent],
|
|
257
|
-
}]
|
|
258
|
-
}] });
|
|
296
|
+
EventSettingsMoreOptionsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: EventSettingsMoreOptionsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
297
|
+
EventSettingsMoreOptionsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: EventSettingsMoreOptionsComponent, selector: "symphony-event-settings-more-options", ngImport: i0, template: "<symphony-contextual-menu\n class=\"more-options\"\n *ngIf=\"moreOptions.items && moreOptions.items.length > 0\"\n [model]=\"moreOptions\"\n (itemClick)=\"onItemClick($event)\"\n>\n</symphony-contextual-menu>\n", components: [{ type: ContextualMenuComponent, selector: "symphony-contextual-menu", inputs: ["model"], outputs: ["itemClick"] }], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
298
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: EventSettingsMoreOptionsComponent, decorators: [{
|
|
299
|
+
type: Component,
|
|
300
|
+
args: [{ selector: 'symphony-event-settings-more-options', template: "<symphony-contextual-menu\n class=\"more-options\"\n *ngIf=\"moreOptions.items && moreOptions.items.length > 0\"\n [model]=\"moreOptions\"\n (itemClick)=\"onItemClick($event)\"\n>\n</symphony-contextual-menu>\n" }]
|
|
301
|
+
}], ctorParameters: function () { return []; } });
|
|
259
302
|
|
|
260
|
-
class
|
|
261
|
-
constructor() {
|
|
303
|
+
class InputToggleComponent {
|
|
304
|
+
constructor() {
|
|
305
|
+
this.toggleClick = new EventEmitter();
|
|
306
|
+
}
|
|
307
|
+
toggleClicked() {
|
|
308
|
+
this.isToggled = !this.isToggled;
|
|
309
|
+
this.toggleClick.emit(this.isToggled);
|
|
310
|
+
}
|
|
262
311
|
}
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type:
|
|
312
|
+
InputToggleComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputToggleComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
313
|
+
InputToggleComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: InputToggleComponent, selector: "symphony-input-toggle", inputs: { isToggled: "isToggled", isInverse: "isInverse" }, outputs: { toggleClick: "toggleClick" }, ngImport: i0, template: "<label class=\"switch\">\n <input\n aria-label=\"toggle-active-state\"\n [checked]=\"isToggled\"\n type=\"checkbox\"\n (click)=\"toggleClicked()\"\n [ngClass]=\"{ 'is-inverse': isInverse }\"\n />\n <span class=\"slider round\"></span>\n</label>\n", styles: [".switch{position:relative;vertical-align:middle;display:inline-block;width:30px;height:14px}.switch input{opacity:0;width:0;height:0}.slider{position:absolute;cursor:pointer;top:0;left:0;right:0;bottom:0;background-color:#ccc;transition:.4s}.slider:before{position:absolute;content:\"\";height:10px;width:10px;left:2px;bottom:2px;background-color:#fff;transition:.4s}.slider.round{border-radius:16px}.slider.round.round:before{border-radius:50%}input:checked+.slider{background-color:#000}input:checked+.slider:before{transform:translate(15px)}input:focus+.slider{box-shadow:0 0 1px #2196f3}\n"], directives: [{ type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
|
|
314
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputToggleComponent, decorators: [{
|
|
266
315
|
type: Component,
|
|
267
|
-
args: [{ selector: 'symphony-
|
|
268
|
-
}], ctorParameters: function () { return []; }, propDecorators: {
|
|
316
|
+
args: [{ selector: 'symphony-input-toggle', template: "<label class=\"switch\">\n <input\n aria-label=\"toggle-active-state\"\n [checked]=\"isToggled\"\n type=\"checkbox\"\n (click)=\"toggleClicked()\"\n [ngClass]=\"{ 'is-inverse': isInverse }\"\n />\n <span class=\"slider round\"></span>\n</label>\n", styles: [".switch{position:relative;vertical-align:middle;display:inline-block;width:30px;height:14px}.switch input{opacity:0;width:0;height:0}.slider{position:absolute;cursor:pointer;top:0;left:0;right:0;bottom:0;background-color:#ccc;transition:.4s}.slider:before{position:absolute;content:\"\";height:10px;width:10px;left:2px;bottom:2px;background-color:#fff;transition:.4s}.slider.round{border-radius:16px}.slider.round.round:before{border-radius:50%}input:checked+.slider{background-color:#000}input:checked+.slider:before{transform:translate(15px)}input:focus+.slider{box-shadow:0 0 1px #2196f3}\n"] }]
|
|
317
|
+
}], ctorParameters: function () { return []; }, propDecorators: { isToggled: [{
|
|
269
318
|
type: Input
|
|
270
|
-
}],
|
|
319
|
+
}], isInverse: [{
|
|
271
320
|
type: Input
|
|
321
|
+
}], toggleClick: [{
|
|
322
|
+
type: Output
|
|
272
323
|
}] } });
|
|
273
324
|
|
|
274
|
-
class
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
class H3Component {
|
|
289
|
-
constructor() { }
|
|
325
|
+
class GridToggleCellRendererComponent {
|
|
326
|
+
refresh(params) {
|
|
327
|
+
return true;
|
|
328
|
+
}
|
|
329
|
+
agInit(params) {
|
|
330
|
+
this.params = params;
|
|
331
|
+
}
|
|
332
|
+
toggleClickedHandler(isToggled) {
|
|
333
|
+
const model = {
|
|
334
|
+
isToggled,
|
|
335
|
+
row: this.params,
|
|
336
|
+
};
|
|
337
|
+
this.params.clicked(model);
|
|
338
|
+
}
|
|
290
339
|
}
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type:
|
|
340
|
+
GridToggleCellRendererComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: GridToggleCellRendererComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
341
|
+
GridToggleCellRendererComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: GridToggleCellRendererComponent, selector: "symphony-grid-toggle-cell-renderer", ngImport: i0, template: "<symphony-input-toggle\n [isToggled]=\"params.data[params.colDef.field]\"\n (toggleClick)=\"toggleClickedHandler($event)\"\n></symphony-input-toggle>\n", components: [{ type: InputToggleComponent, selector: "symphony-input-toggle", inputs: ["isToggled", "isInverse"], outputs: ["toggleClick"] }] });
|
|
342
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: GridToggleCellRendererComponent, decorators: [{
|
|
294
343
|
type: Component,
|
|
295
|
-
args: [{ selector: 'symphony-
|
|
296
|
-
}]
|
|
297
|
-
type: Input
|
|
298
|
-
}], isSecondary: [{
|
|
299
|
-
type: Input
|
|
300
|
-
}] } });
|
|
344
|
+
args: [{ selector: 'symphony-grid-toggle-cell-renderer', template: "<symphony-input-toggle\n [isToggled]=\"params.data[params.colDef.field]\"\n (toggleClick)=\"toggleClickedHandler($event)\"\n></symphony-input-toggle>\n" }]
|
|
345
|
+
}] });
|
|
301
346
|
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
347
|
+
var RelevanceScoreLevel;
|
|
348
|
+
(function (RelevanceScoreLevel) {
|
|
349
|
+
RelevanceScoreLevel["Value"] = "value";
|
|
350
|
+
RelevanceScoreLevel["Empty"] = "empty";
|
|
351
|
+
})(RelevanceScoreLevel || (RelevanceScoreLevel = {}));
|
|
352
|
+
|
|
353
|
+
class RelevanceScoreComponent {
|
|
354
|
+
constructor() {
|
|
355
|
+
this.relevanceScoreModel = { relevanceScore: RelevanceScoreLevel.Empty };
|
|
356
|
+
this.contact = { relevanceScore: 0 };
|
|
357
|
+
}
|
|
358
|
+
refresh(params) {
|
|
359
|
+
return true;
|
|
360
|
+
}
|
|
361
|
+
agInit(params) {
|
|
362
|
+
this.contact = params.data;
|
|
363
|
+
if (this.contact) {
|
|
364
|
+
if (this.contact.header4 || this.contact.header4 === 0) {
|
|
365
|
+
this.relevanceData = this.contact.header4;
|
|
366
|
+
this.relevanceScoreModel.relevanceScore = RelevanceScoreLevel.Value;
|
|
367
|
+
}
|
|
368
|
+
else {
|
|
369
|
+
this.relevanceData = 'N/A';
|
|
370
|
+
}
|
|
371
|
+
}
|
|
372
|
+
}
|
|
373
|
+
}
|
|
374
|
+
RelevanceScoreComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: RelevanceScoreComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
375
|
+
RelevanceScoreComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: RelevanceScoreComponent, selector: "symphony-relevance-score", ngImport: i0, template: "<span class=\"relevance-score-bg relevance-score-{{ relevanceScoreModel.relevanceScore }}\">\n <div class=\"relevance-score-content\">{{ relevanceData}}</div>\n</span>", styles: [".relevance-score-bg{height:38px;width:38px;background-color:#fff;border-radius:50%;display:inline-block;color:#000;text-align:center}.relevance-score-value{border:1px solid black;font-weight:700}\n"] });
|
|
376
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: RelevanceScoreComponent, decorators: [{
|
|
377
|
+
type: Component,
|
|
378
|
+
args: [{ selector: 'symphony-relevance-score', template: "<span class=\"relevance-score-bg relevance-score-{{ relevanceScoreModel.relevanceScore }}\">\n <div class=\"relevance-score-content\">{{ relevanceData}}</div>\n</span>", styles: [".relevance-score-bg{height:38px;width:38px;background-color:#fff;border-radius:50%;display:inline-block;color:#000;text-align:center}.relevance-score-value{border:1px solid black;font-weight:700}\n"] }]
|
|
379
|
+
}], ctorParameters: function () { return []; } });
|
|
380
|
+
|
|
381
|
+
class GridComponent {
|
|
382
|
+
constructor() {
|
|
383
|
+
this.rowHeightPage = 80;
|
|
384
|
+
this.gridHeight = 100;
|
|
385
|
+
this.frameworkComponents = this.getFrameworkComponents();
|
|
386
|
+
this.getRowHeight = () => {
|
|
387
|
+
return this.rowHeightPage;
|
|
388
|
+
};
|
|
389
|
+
}
|
|
390
|
+
onGridReady(gridReadyEvent) {
|
|
391
|
+
gridReadyEvent.api.sizeColumnsToFit();
|
|
392
|
+
}
|
|
393
|
+
getFrameworkComponents() {
|
|
394
|
+
return {
|
|
395
|
+
contactActivityScore: ContactActivityScoreComponent,
|
|
396
|
+
fitScore: RelevanceScoreComponent,
|
|
397
|
+
gridToggle: GridToggleCellRendererComponent,
|
|
398
|
+
moreActions: EventSettingsMoreOptionsComponent,
|
|
399
|
+
};
|
|
400
|
+
}
|
|
401
|
+
}
|
|
402
|
+
GridComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: GridComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
403
|
+
GridComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: GridComponent, selector: "symphony-grid", inputs: { columnDefs: "columnDefs", rowData: "rowData" }, ngImport: i0, template: "<ag-grid-angular\n style=\"width: 100%\"\n class=\"ag-theme-alpine\"\n [rowData]=\"rowData\"\n [columnDefs]=\"columnDefs\"\n (gridReady)=\"onGridReady($event)\"\n [style.height.vh]=\"gridHeight\"\n [getRowHeight]=\"getRowHeight\"\n [frameworkComponents]=\"frameworkComponents\"\n>\n</ag-grid-angular>\n", styles: [""], components: [{ type: i1$2.AgGridAngular, selector: "ag-grid-angular", inputs: ["alignedGrids", "rowData", "columnDefs", "excelStyles", "pinnedTopRowData", "pinnedBottomRowData", "chartThemes", "components", "frameworkComponents", "rowStyle", "context", "autoGroupColumnDef", "localeText", "icons", "datasource", "serverSideDatasource", "viewportDatasource", "groupRowRendererParams", "aggFuncs", "fullWidthCellRendererParams", "defaultColGroupDef", "defaultColDef", "defaultExportParams", "columnTypes", "rowClassRules", "detailGridOptions", "detailCellRendererParams", "loadingCellRendererParams", "loadingOverlayComponentParams", "noRowsOverlayComponentParams", "popupParent", "colResizeDefault", "reduxStore", "statusBar", "sideBar", "chartThemeOverrides", "customChartThemes", "sortingOrder", "rowClass", "rowSelection", "overlayLoadingTemplate", "overlayNoRowsTemplate", "quickFilterText", "rowModelType", "editType", "domLayout", "clipboardDeliminator", "rowGroupPanelShow", "multiSortKey", "pivotColumnGroupTotals", "pivotRowTotals", "pivotPanelShow", "fillHandleDirection", "rowHeight", "detailRowHeight", "rowBuffer", "colWidth", "headerHeight", "groupHeaderHeight", "floatingFiltersHeight", "pivotHeaderHeight", "pivotGroupHeaderHeight", "groupDefaultExpanded", "minColWidth", "maxColWidth", "viewportRowModelPageSize", "viewportRowModelBufferSize", "autoSizePadding", "maxBlocksInCache", "maxConcurrentDatasourceRequests", "tooltipShowDelay", "cacheOverflowSize", "paginationPageSize", "cacheBlockSize", "infiniteInitialRowCount", "scrollbarWidth", "batchUpdateWaitMillis", "asyncTransactionWaitMillis", "blockLoadDebounceMillis", "keepDetailRowsCount", "undoRedoCellEditingLimit", "cellFlashDelay", "cellFadeDelay", "localeTextFunc", "groupRowInnerRenderer", "groupRowInnerRendererFramework", "dateComponent", "dateComponentFramework", "groupRowRenderer", "groupRowRendererFramework", "isExternalFilterPresent", "getRowHeight", "doesExternalFilterPass", "getRowClass", "getRowStyle", "getRowClassRules", "traverseNode", "getContextMenuItems", "getMainMenuItems", "processRowPostCreate", "processCellForClipboard", "groupRowAggNodes", "getRowNodeId", "isFullWidthCell", "fullWidthCellRenderer", "fullWidthCellRendererFramework", "processSecondaryColDef", "processSecondaryColGroupDef", "getBusinessKeyForNode", "sendToClipboard", "navigateToNextHeader", "tabToNextHeader", "navigateToNextCell", "tabToNextCell", "getDetailRowData", "processCellFromClipboard", "getDocument", "postProcessPopup", "getChildCount", "getDataPath", "loadingCellRenderer", "loadingCellRendererFramework", "loadingOverlayComponent", "loadingOverlayComponentFramework", "noRowsOverlayComponent", "noRowsOverlayComponentFramework", "detailCellRenderer", "detailCellRendererFramework", "defaultGroupSortComparator", "isRowMaster", "isRowSelectable", "postSort", "processHeaderForClipboard", "paginationNumberFormatter", "processDataFromClipboard", "getServerSideGroupKey", "isServerSideGroup", "suppressKeyboardEvent", "createChartContainer", "processChartOptions", "getChartToolbarItems", "fillOperation", "suppressMakeColumnVisibleAfterUnGroup", "suppressRowClickSelection", "suppressCellSelection", "suppressHorizontalScroll", "alwaysShowVerticalScroll", "debug", "enableBrowserTooltips", "enableCellExpressions", "angularCompileRows", "angularCompileFilters", "groupSuppressAutoColumn", "groupSelectsChildren", "groupIncludeFooter", "groupIncludeTotalFooter", "groupUseEntireRow", "groupSuppressBlankHeader", "suppressMenuHide", "suppressRowDeselection", "unSortIcon", "suppressMultiSort", "singleClickEdit", "suppressLoadingOverlay", "suppressNoRowsOverlay", "suppressAutoSize", "skipHeaderOnAutoSize", "suppressParentsInRowNodes", "suppressColumnMoveAnimation", "suppressMovableColumns", "suppressFieldDotNotation", "enableRangeSelection", "enableRangeHandle", "enableFillHandle", "suppressClearOnFillReduction", "deltaSort", "suppressTouch", "suppressAsyncEvents", "allowContextMenuWithControlKey", "suppressContextMenu", "rememberGroupStateWhenNewData", "enableCellChangeFlash", "suppressDragLeaveHidesColumns", "suppressMiddleClickScrolls", "suppressPreventDefaultOnMouseWheel", "suppressCopyRowsToClipboard", "copyHeadersToClipboard", "pivotMode", "suppressAggFuncInHeader", "suppressColumnVirtualisation", "suppressAggAtRootLevel", "suppressFocusAfterRefresh", "functionsPassive", "functionsReadOnly", "animateRows", "groupSelectsFiltered", "groupRemoveSingleChildren", "groupRemoveLowestSingleChildren", "enableRtl", "suppressClickEdit", "rowDragManaged", "suppressRowDrag", "suppressMoveWhenRowDragging", "enableMultiRowDragging", "enableGroupEdit", "embedFullWidthRows", "deprecatedEmbedFullWidthRows", "suppressPaginationPanel", "floatingFilter", "groupHideOpenParents", "groupMultiAutoColumn", "pagination", "stopEditingWhenGridLosesFocus", "paginationAutoPageSize", "suppressScrollOnNewData", "purgeClosedRowNodes", "cacheQuickFilter", "deltaRowDataMode", "ensureDomOrder", "accentedSort", "suppressChangeDetection", "valueCache", "valueCacheNeverExpires", "aggregateOnlyChangedColumns", "suppressAnimationFrame", "suppressExcelExport", "suppressCsvExport", "treeData", "masterDetail", "suppressMultiRangeSelection", "enterMovesDownAfterEdit", "enterMovesDown", "suppressPropertyNamesCheck", "rowMultiSelectWithClick", "suppressEnterpriseResetOnNewColumns", "enableOldSetFilterModel", "suppressRowHoverHighlight", "suppressRowTransform", "suppressClipboardPaste", "suppressLastEmptyLineOnPaste", "serverSideSortingAlwaysResets", "reactNext", "suppressSetColumnStateEvents", "suppressColumnStateEvents", "enableCharts", "deltaColumnMode", "suppressMaintainUnsortedOrder", "enableCellTextSelection", "suppressBrowserResizeObserver", "suppressMaxRenderedRowRestriction", "excludeChildrenWhenTreeDataFiltering", "tooltipMouseTrack", "keepDetailRows", "paginateChildRows", "preventDefaultOnContextMenu", "undoRedoCellEditing", "allowDragFromColumnsToolPanel", "immutableData", "immutableColumns", "pivotSuppressAutoColumn", "suppressExpandablePivotGroups", "applyColumnDefOrder", "debounceVerticalScrollbar", "detailRowAutoHeight", "gridOptions", "modules"], outputs: ["columnEverythingChanged", "newColumnsLoaded", "columnPivotModeChanged", "columnRowGroupChanged", "expandOrCollapseAll", "columnPivotChanged", "gridColumnsChanged", "columnValueChanged", "columnMoved", "columnVisible", "columnPinned", "columnGroupOpened", "columnResized", "displayedColumnsChanged", "virtualColumnsChanged", "rowGroupOpened", "rowDataChanged", "rowDataUpdated", "pinnedRowDataChanged", "rangeSelectionChanged", "chartCreated", "chartRangeSelectionChanged", "chartOptionsChanged", "chartDestroyed", "toolPanelVisibleChanged", "modelUpdated", "pasteStart", "pasteEnd", "fillStart", "fillEnd", "cellClicked", "cellDoubleClicked", "cellMouseDown", "cellContextMenu", "cellValueChanged", "rowValueChanged", "cellFocused", "rowSelected", "selectionChanged", "cellKeyDown", "cellKeyPress", "cellMouseOver", "cellMouseOut", "filterChanged", "filterModified", "filterOpened", "sortChanged", "virtualRowRemoved", "rowClicked", "rowDoubleClicked", "gridReady", "gridSizeChanged", "viewportChanged", "scrollbarWidthChanged", "firstDataRendered", "dragStarted", "dragStopped", "checkboxChanged", "rowEditingStarted", "rowEditingStopped", "cellEditingStarted", "cellEditingStopped", "bodyScroll", "animationQueueEmpty", "heightScaleChanged", "paginationChanged", "componentStateChanged", "bodyHeightChanged", "displayedColumnsWidthChanged", "scrollVisibilityChanged", "columnHoverChanged", "flashCells", "paginationPixelOffsetChanged", "rowDragEnter", "rowDragMove", "rowDragLeave", "rowDragEnd", "popupToFront", "columnRowGroupChangeRequest", "columnPivotChangeRequest", "columnValueChangeRequest", "columnAggFuncChangeRequest", "keyboardFocus", "mouseFocus"] }] });
|
|
404
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: GridComponent, decorators: [{
|
|
405
|
+
type: Component,
|
|
406
|
+
args: [{ selector: 'symphony-grid', template: "<ag-grid-angular\n style=\"width: 100%\"\n class=\"ag-theme-alpine\"\n [rowData]=\"rowData\"\n [columnDefs]=\"columnDefs\"\n (gridReady)=\"onGridReady($event)\"\n [style.height.vh]=\"gridHeight\"\n [getRowHeight]=\"getRowHeight\"\n [frameworkComponents]=\"frameworkComponents\"\n>\n</ag-grid-angular>\n", styles: [""] }]
|
|
407
|
+
}], ctorParameters: function () { return []; }, propDecorators: { columnDefs: [{
|
|
408
|
+
type: Input
|
|
409
|
+
}], rowData: [{
|
|
410
|
+
type: Input
|
|
411
|
+
}] } });
|
|
412
|
+
|
|
413
|
+
class ContactActivityScoreModule {
|
|
414
|
+
}
|
|
415
|
+
ContactActivityScoreModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ContactActivityScoreModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
416
|
+
ContactActivityScoreModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ContactActivityScoreModule, declarations: [ContactActivityScoreComponent], imports: [CommonModule] });
|
|
417
|
+
ContactActivityScoreModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ContactActivityScoreModule, imports: [[CommonModule]] });
|
|
418
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ContactActivityScoreModule, decorators: [{
|
|
308
419
|
type: NgModule,
|
|
309
420
|
args: [{
|
|
310
|
-
declarations: [
|
|
421
|
+
declarations: [ContactActivityScoreComponent],
|
|
311
422
|
imports: [CommonModule],
|
|
312
|
-
exports: [H3Component],
|
|
313
423
|
}]
|
|
314
424
|
}] });
|
|
315
425
|
|
|
316
|
-
class
|
|
317
|
-
constructor() { }
|
|
426
|
+
class EventSettingsMoreOptionsModule {
|
|
318
427
|
}
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
i0.ɵɵ
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
428
|
+
EventSettingsMoreOptionsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: EventSettingsMoreOptionsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
429
|
+
EventSettingsMoreOptionsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: EventSettingsMoreOptionsModule, declarations: [EventSettingsMoreOptionsComponent], imports: [CommonModule, ContextualMenuModule], exports: [EventSettingsMoreOptionsComponent] });
|
|
430
|
+
EventSettingsMoreOptionsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: EventSettingsMoreOptionsModule, imports: [[CommonModule, ContextualMenuModule]] });
|
|
431
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: EventSettingsMoreOptionsModule, decorators: [{
|
|
432
|
+
type: NgModule,
|
|
433
|
+
args: [{
|
|
434
|
+
declarations: [EventSettingsMoreOptionsComponent],
|
|
435
|
+
imports: [CommonModule, ContextualMenuModule],
|
|
436
|
+
exports: [EventSettingsMoreOptionsComponent],
|
|
437
|
+
}]
|
|
438
|
+
}] });
|
|
329
439
|
|
|
330
|
-
class
|
|
440
|
+
class InputToggleModule {
|
|
331
441
|
}
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type:
|
|
442
|
+
InputToggleModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputToggleModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
443
|
+
InputToggleModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputToggleModule, declarations: [InputToggleComponent], imports: [CommonModule], exports: [InputToggleComponent] });
|
|
444
|
+
InputToggleModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputToggleModule, imports: [[CommonModule]] });
|
|
445
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputToggleModule, decorators: [{
|
|
336
446
|
type: NgModule,
|
|
337
447
|
args: [{
|
|
338
|
-
declarations: [
|
|
448
|
+
declarations: [InputToggleComponent],
|
|
339
449
|
imports: [CommonModule],
|
|
340
|
-
exports: [
|
|
450
|
+
exports: [InputToggleComponent],
|
|
451
|
+
}]
|
|
452
|
+
}] });
|
|
453
|
+
|
|
454
|
+
class GridToggleCellRendererModule {
|
|
455
|
+
}
|
|
456
|
+
GridToggleCellRendererModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: GridToggleCellRendererModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
457
|
+
GridToggleCellRendererModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: GridToggleCellRendererModule, declarations: [GridToggleCellRendererComponent], imports: [CommonModule, InputToggleModule], exports: [GridToggleCellRendererComponent] });
|
|
458
|
+
GridToggleCellRendererModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: GridToggleCellRendererModule, imports: [[CommonModule, InputToggleModule]] });
|
|
459
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: GridToggleCellRendererModule, decorators: [{
|
|
460
|
+
type: NgModule,
|
|
461
|
+
args: [{
|
|
462
|
+
declarations: [GridToggleCellRendererComponent],
|
|
463
|
+
imports: [CommonModule, InputToggleModule],
|
|
464
|
+
exports: [GridToggleCellRendererComponent],
|
|
465
|
+
}]
|
|
466
|
+
}] });
|
|
467
|
+
|
|
468
|
+
class RelevanceScoreModule {
|
|
469
|
+
}
|
|
470
|
+
RelevanceScoreModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: RelevanceScoreModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
471
|
+
RelevanceScoreModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: RelevanceScoreModule, declarations: [RelevanceScoreComponent], imports: [CommonModule] });
|
|
472
|
+
RelevanceScoreModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: RelevanceScoreModule, imports: [[CommonModule]] });
|
|
473
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: RelevanceScoreModule, decorators: [{
|
|
474
|
+
type: NgModule,
|
|
475
|
+
args: [{
|
|
476
|
+
declarations: [RelevanceScoreComponent],
|
|
477
|
+
imports: [CommonModule],
|
|
478
|
+
}]
|
|
479
|
+
}] });
|
|
480
|
+
|
|
481
|
+
class FrameworkModule {
|
|
482
|
+
}
|
|
483
|
+
FrameworkModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FrameworkModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
484
|
+
FrameworkModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FrameworkModule, exports: [ContactActivityScoreModule,
|
|
485
|
+
RelevanceScoreModule,
|
|
486
|
+
GridToggleCellRendererModule,
|
|
487
|
+
EventSettingsMoreOptionsModule] });
|
|
488
|
+
FrameworkModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FrameworkModule, imports: [[], ContactActivityScoreModule,
|
|
489
|
+
RelevanceScoreModule,
|
|
490
|
+
GridToggleCellRendererModule,
|
|
491
|
+
EventSettingsMoreOptionsModule] });
|
|
492
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FrameworkModule, decorators: [{
|
|
493
|
+
type: NgModule,
|
|
494
|
+
args: [{
|
|
495
|
+
declarations: [],
|
|
496
|
+
imports: [],
|
|
497
|
+
exports: [
|
|
498
|
+
ContactActivityScoreModule,
|
|
499
|
+
RelevanceScoreModule,
|
|
500
|
+
GridToggleCellRendererModule,
|
|
501
|
+
EventSettingsMoreOptionsModule,
|
|
502
|
+
],
|
|
503
|
+
}]
|
|
504
|
+
}] });
|
|
505
|
+
|
|
506
|
+
class GridModule {
|
|
507
|
+
}
|
|
508
|
+
GridModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: GridModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
509
|
+
GridModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: GridModule, declarations: [GridComponent], imports: [CommonModule, i1$2.AgGridModule, FrameworkModule], exports: [GridComponent] });
|
|
510
|
+
GridModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: GridModule, imports: [[CommonModule, AgGridModule.withComponents([]), FrameworkModule]] });
|
|
511
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: GridModule, decorators: [{
|
|
512
|
+
type: NgModule,
|
|
513
|
+
args: [{
|
|
514
|
+
declarations: [GridComponent],
|
|
515
|
+
imports: [CommonModule, AgGridModule.withComponents([]), FrameworkModule],
|
|
516
|
+
exports: [GridComponent]
|
|
341
517
|
}]
|
|
342
518
|
}] });
|
|
343
519
|
|
|
@@ -369,87 +545,171 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
|
|
|
369
545
|
}]
|
|
370
546
|
}] });
|
|
371
547
|
|
|
372
|
-
class
|
|
548
|
+
class H2Component {
|
|
373
549
|
constructor() { }
|
|
374
550
|
}
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type:
|
|
551
|
+
H2Component.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: H2Component, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
552
|
+
H2Component.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: H2Component, selector: "symphony-h2", inputs: { text: "text", isSecondary: "isSecondary" }, ngImport: i0, template: "<h2 [ngClass]=\"{ 'h2-secondary': isSecondary, 'h2-primary': !isSecondary }\">\n {{ text }}\n <ng-content></ng-content>\n</h2>\n", styles: [".h2-primary,.h2-secondary{margin-bottom:0;line-height:40px;letter-spacing:-2px;margin-top:0}.h2-secondary{color:#fff}\n"], directives: [{ type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
|
|
553
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: H2Component, decorators: [{
|
|
378
554
|
type: Component,
|
|
379
|
-
args: [{ selector: 'symphony-
|
|
555
|
+
args: [{ selector: 'symphony-h2', template: "<h2 [ngClass]=\"{ 'h2-secondary': isSecondary, 'h2-primary': !isSecondary }\">\n {{ text }}\n <ng-content></ng-content>\n</h2>\n", styles: [".h2-primary,.h2-secondary{margin-bottom:0;line-height:40px;letter-spacing:-2px;margin-top:0}.h2-secondary{color:#fff}\n"] }]
|
|
380
556
|
}], ctorParameters: function () { return []; }, propDecorators: { text: [{
|
|
381
557
|
type: Input
|
|
382
558
|
}], isSecondary: [{
|
|
383
559
|
type: Input
|
|
384
560
|
}] } });
|
|
385
561
|
|
|
386
|
-
class
|
|
562
|
+
class H2Module {
|
|
387
563
|
}
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type:
|
|
564
|
+
H2Module.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: H2Module, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
565
|
+
H2Module.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: H2Module, declarations: [H2Component], imports: [CommonModule], exports: [H2Component] });
|
|
566
|
+
H2Module.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: H2Module, imports: [[CommonModule]] });
|
|
567
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: H2Module, decorators: [{
|
|
392
568
|
type: NgModule,
|
|
393
569
|
args: [{
|
|
394
|
-
declarations: [
|
|
570
|
+
declarations: [H2Component],
|
|
395
571
|
imports: [CommonModule],
|
|
396
|
-
exports: [
|
|
572
|
+
exports: [H2Component],
|
|
397
573
|
}]
|
|
398
574
|
}] });
|
|
399
575
|
|
|
400
|
-
class
|
|
576
|
+
class H3Component {
|
|
401
577
|
constructor() { }
|
|
402
578
|
}
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type:
|
|
579
|
+
H3Component.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: H3Component, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
580
|
+
H3Component.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: H3Component, selector: "symphony-h3", inputs: { text: "text", isSecondary: "isSecondary" }, ngImport: i0, template: "<h3 [ngClass]=\"{ 'h3-secondary': isSecondary, 'h3-primary': !isSecondary }\">\n {{ text }}\n <ng-content></ng-content>\n</h3>\n", styles: [".h3-primary,.h3-secondary{margin-bottom:0;line-height:30px;letter-spacing:-1px;margin-top:0}.h3-secondary{color:#fff}\n"], directives: [{ type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
|
|
581
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: H3Component, decorators: [{
|
|
406
582
|
type: Component,
|
|
407
|
-
args: [{ selector: 'symphony-
|
|
583
|
+
args: [{ selector: 'symphony-h3', template: "<h3 [ngClass]=\"{ 'h3-secondary': isSecondary, 'h3-primary': !isSecondary }\">\n {{ text }}\n <ng-content></ng-content>\n</h3>\n", styles: [".h3-primary,.h3-secondary{margin-bottom:0;line-height:30px;letter-spacing:-1px;margin-top:0}.h3-secondary{color:#fff}\n"] }]
|
|
408
584
|
}], ctorParameters: function () { return []; }, propDecorators: { text: [{
|
|
409
585
|
type: Input
|
|
410
586
|
}], isSecondary: [{
|
|
411
587
|
type: Input
|
|
412
588
|
}] } });
|
|
413
589
|
|
|
414
|
-
class
|
|
590
|
+
class H3Module {
|
|
415
591
|
}
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type:
|
|
592
|
+
H3Module.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: H3Module, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
593
|
+
H3Module.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: H3Module, declarations: [H3Component], imports: [CommonModule], exports: [H3Component] });
|
|
594
|
+
H3Module.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: H3Module, imports: [[CommonModule]] });
|
|
595
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: H3Module, decorators: [{
|
|
420
596
|
type: NgModule,
|
|
421
597
|
args: [{
|
|
422
|
-
declarations: [
|
|
598
|
+
declarations: [H3Component],
|
|
423
599
|
imports: [CommonModule],
|
|
424
|
-
exports: [
|
|
600
|
+
exports: [H3Component],
|
|
425
601
|
}]
|
|
426
602
|
}] });
|
|
427
603
|
|
|
428
|
-
class
|
|
429
|
-
constructor() {
|
|
430
|
-
this.size = '18px';
|
|
431
|
-
this.clicked = new EventEmitter();
|
|
432
|
-
}
|
|
433
|
-
onClick() {
|
|
434
|
-
this.clicked.emit('clicked');
|
|
435
|
-
}
|
|
604
|
+
class H4Component {
|
|
605
|
+
constructor() { }
|
|
436
606
|
}
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type:
|
|
607
|
+
H4Component.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: H4Component, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
608
|
+
H4Component.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: H4Component, selector: "symphony-h4", inputs: { text: "text", isSecondary: "isSecondary" }, ngImport: i0, template: "<h4 [ngClass]=\"{ 'h4-secondary': isSecondary, 'h4-primary': !isSecondary }\">\n {{ text }}\n <ng-content></ng-content>\n</h4>\n", styles: [".h4-primary,.h4-secondary{margin-bottom:0;line-height:20px;letter-spacing:-1px;margin-top:0}.h4-secondary{color:#fff}\n"], directives: [{ type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
|
|
609
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: H4Component, decorators: [{
|
|
440
610
|
type: Component,
|
|
441
|
-
args: [{ selector: 'symphony-
|
|
442
|
-
}], ctorParameters: function () { return []; }, propDecorators: {
|
|
611
|
+
args: [{ selector: 'symphony-h4', template: "<h4 [ngClass]=\"{ 'h4-secondary': isSecondary, 'h4-primary': !isSecondary }\">\n {{ text }}\n <ng-content></ng-content>\n</h4>\n", styles: [".h4-primary,.h4-secondary{margin-bottom:0;line-height:20px;letter-spacing:-1px;margin-top:0}.h4-secondary{color:#fff}\n"] }]
|
|
612
|
+
}], ctorParameters: function () { return []; }, propDecorators: { text: [{
|
|
443
613
|
type: Input
|
|
444
614
|
}], isSecondary: [{
|
|
445
615
|
type: Input
|
|
446
|
-
}], size: [{
|
|
447
|
-
type: Input
|
|
448
|
-
}], clicked: [{
|
|
449
|
-
type: Output
|
|
450
616
|
}] } });
|
|
451
617
|
|
|
452
|
-
class
|
|
618
|
+
class H4Module {
|
|
619
|
+
}
|
|
620
|
+
H4Module.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: H4Module, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
621
|
+
H4Module.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: H4Module, declarations: [H4Component], imports: [CommonModule], exports: [H4Component] });
|
|
622
|
+
H4Module.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: H4Module, imports: [[CommonModule]] });
|
|
623
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: H4Module, decorators: [{
|
|
624
|
+
type: NgModule,
|
|
625
|
+
args: [{
|
|
626
|
+
declarations: [H4Component],
|
|
627
|
+
imports: [CommonModule],
|
|
628
|
+
exports: [H4Component],
|
|
629
|
+
}]
|
|
630
|
+
}] });
|
|
631
|
+
|
|
632
|
+
class H5Component {
|
|
633
|
+
constructor() { }
|
|
634
|
+
}
|
|
635
|
+
H5Component.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: H5Component, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
636
|
+
H5Component.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: H5Component, selector: "symphony-h5", inputs: { text: "text", isSecondary: "isSecondary" }, ngImport: i0, template: "<h5\n [ngClass]=\"{\n 'h5-secondary': isSecondary,\n 'h5-primary': !isSecondary\n }\"\n>\n {{ text }}\n <ng-content></ng-content>\n</h5>\n", styles: [".h5-primary,.h5-secondary{margin-bottom:0;line-height:20px;margin-top:0}.h5-secondary{color:#fff}\n"], directives: [{ type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
|
|
637
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: H5Component, decorators: [{
|
|
638
|
+
type: Component,
|
|
639
|
+
args: [{ selector: 'symphony-h5', template: "<h5\n [ngClass]=\"{\n 'h5-secondary': isSecondary,\n 'h5-primary': !isSecondary\n }\"\n>\n {{ text }}\n <ng-content></ng-content>\n</h5>\n", styles: [".h5-primary,.h5-secondary{margin-bottom:0;line-height:20px;margin-top:0}.h5-secondary{color:#fff}\n"] }]
|
|
640
|
+
}], ctorParameters: function () { return []; }, propDecorators: { text: [{
|
|
641
|
+
type: Input
|
|
642
|
+
}], isSecondary: [{
|
|
643
|
+
type: Input
|
|
644
|
+
}] } });
|
|
645
|
+
|
|
646
|
+
class H5Module {
|
|
647
|
+
}
|
|
648
|
+
H5Module.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: H5Module, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
649
|
+
H5Module.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: H5Module, declarations: [H5Component], imports: [CommonModule], exports: [H5Component] });
|
|
650
|
+
H5Module.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: H5Module, imports: [[CommonModule]] });
|
|
651
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: H5Module, decorators: [{
|
|
652
|
+
type: NgModule,
|
|
653
|
+
args: [{
|
|
654
|
+
declarations: [H5Component],
|
|
655
|
+
imports: [CommonModule],
|
|
656
|
+
exports: [H5Component],
|
|
657
|
+
}]
|
|
658
|
+
}] });
|
|
659
|
+
|
|
660
|
+
class ParagraphComponent {
|
|
661
|
+
constructor() { }
|
|
662
|
+
}
|
|
663
|
+
ParagraphComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ParagraphComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
664
|
+
ParagraphComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: ParagraphComponent, selector: "symphony-paragraph", inputs: { text: "text", isSecondary: "isSecondary" }, ngImport: i0, template: "<p\n [ngClass]=\"{\n 'body-copy-secondary': isSecondary,\n 'body-copy-primary': !isSecondary\n }\"\n>\n {{ text }}\n <ng-content></ng-content>\n</p>\n", styles: [".body-copy-primary,.body-copy-secondary{margin-bottom:0;line-height:20px}.body-copy-secondary{color:#fff}\n"], directives: [{ type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
|
|
665
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ParagraphComponent, decorators: [{
|
|
666
|
+
type: Component,
|
|
667
|
+
args: [{ selector: 'symphony-paragraph', template: "<p\n [ngClass]=\"{\n 'body-copy-secondary': isSecondary,\n 'body-copy-primary': !isSecondary\n }\"\n>\n {{ text }}\n <ng-content></ng-content>\n</p>\n", styles: [".body-copy-primary,.body-copy-secondary{margin-bottom:0;line-height:20px}.body-copy-secondary{color:#fff}\n"] }]
|
|
668
|
+
}], ctorParameters: function () { return []; }, propDecorators: { text: [{
|
|
669
|
+
type: Input
|
|
670
|
+
}], isSecondary: [{
|
|
671
|
+
type: Input
|
|
672
|
+
}] } });
|
|
673
|
+
|
|
674
|
+
class ParagraphModule {
|
|
675
|
+
}
|
|
676
|
+
ParagraphModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ParagraphModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
677
|
+
ParagraphModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ParagraphModule, declarations: [ParagraphComponent], imports: [CommonModule], exports: [ParagraphComponent] });
|
|
678
|
+
ParagraphModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ParagraphModule, imports: [[CommonModule]] });
|
|
679
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ParagraphModule, decorators: [{
|
|
680
|
+
type: NgModule,
|
|
681
|
+
args: [{
|
|
682
|
+
declarations: [ParagraphComponent],
|
|
683
|
+
imports: [CommonModule],
|
|
684
|
+
exports: [ParagraphComponent],
|
|
685
|
+
}]
|
|
686
|
+
}] });
|
|
687
|
+
|
|
688
|
+
class IconComponent {
|
|
689
|
+
constructor() {
|
|
690
|
+
this.size = '18px';
|
|
691
|
+
this.clicked = new EventEmitter();
|
|
692
|
+
}
|
|
693
|
+
onClick() {
|
|
694
|
+
this.clicked.emit('clicked');
|
|
695
|
+
}
|
|
696
|
+
}
|
|
697
|
+
IconComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: IconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
698
|
+
IconComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: IconComponent, selector: "symphony-icon", inputs: { icon: "icon", isSecondary: "isSecondary", size: "size" }, outputs: { clicked: "clicked" }, ngImport: i0, template: "<i\n [class]=\"icon\"\n [ngClass]=\"{\n 'icon-secondary': isSecondary,\n 'icon-primary': !isSecondary\n }\"\n [style.fontSize]=\"size\"\n (click)=\"onClick()\"\n></i>\n", styles: [".icon-secondary{color:#fff}i{cursor:pointer;font-size:18px}\n"], directives: [{ type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
|
|
699
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: IconComponent, decorators: [{
|
|
700
|
+
type: Component,
|
|
701
|
+
args: [{ selector: 'symphony-icon', template: "<i\n [class]=\"icon\"\n [ngClass]=\"{\n 'icon-secondary': isSecondary,\n 'icon-primary': !isSecondary\n }\"\n [style.fontSize]=\"size\"\n (click)=\"onClick()\"\n></i>\n", styles: [".icon-secondary{color:#fff}i{cursor:pointer;font-size:18px}\n"] }]
|
|
702
|
+
}], ctorParameters: function () { return []; }, propDecorators: { icon: [{
|
|
703
|
+
type: Input
|
|
704
|
+
}], isSecondary: [{
|
|
705
|
+
type: Input
|
|
706
|
+
}], size: [{
|
|
707
|
+
type: Input
|
|
708
|
+
}], clicked: [{
|
|
709
|
+
type: Output
|
|
710
|
+
}] } });
|
|
711
|
+
|
|
712
|
+
class IconModule {
|
|
453
713
|
}
|
|
454
714
|
IconModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: IconModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
455
715
|
IconModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: IconModule, declarations: [IconComponent], imports: [CommonModule], exports: [IconComponent] });
|
|
@@ -613,144 +873,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
|
|
|
613
873
|
}]
|
|
614
874
|
}] });
|
|
615
875
|
|
|
616
|
-
class InputRadioComponent {
|
|
617
|
-
constructor() {
|
|
618
|
-
this.clicked = new EventEmitter();
|
|
619
|
-
}
|
|
620
|
-
onClick() {
|
|
621
|
-
this.isActive ? (this.isActive = false) : (this.isActive = true);
|
|
622
|
-
this.clicked.emit({
|
|
623
|
-
label: this.label,
|
|
624
|
-
isActive: this.isActive,
|
|
625
|
-
});
|
|
626
|
-
}
|
|
627
|
-
}
|
|
628
|
-
InputRadioComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputRadioComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
629
|
-
InputRadioComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: InputRadioComponent, selector: "symphony-input-radio", inputs: { isActive: "isActive", label: "label", isRequired: "isRequired" }, outputs: { clicked: "clicked" }, ngImport: i0, template: "<div class=\"sfx-radio\" (click)=\"onClick()\">\n <input\n type=\"radio\"\n class=\"sfx-radio-input sfx-position-absolute\"\n [checked]=\"isActive\"\n name=\"{{ label }}\"\n />\n <label for=\"{{ label }}\" class=\"Font400\"\n >{{ label }}<span class=\"requiredField\" *ngIf=\"isRequired\">*</span></label\n >\n</div>\n", styles: [".requiredField{color:red!important}.sfx-radio{margin:10px 0;-webkit-tap-highlight-color:transparent;-webkit-touch-callout:none;-webkit-user-select:none;user-select:none}.sfx-radio .sfx-radio-input{top:0;left:0;width:100%;cursor:inherit;height:100%;margin:0;opacity:0;padding:0;z-index:1;position:absolute}.sfx-radio .sfx-radio-input~label{display:inline-block;position:relative;cursor:pointer;height:100%;line-height:20px;font-size:14px;color:#000;font-family:neuzeit_groteskbold}.sfx-radio .sfx-radio-input+*:before{content:\"\";display:inline-block;vertical-align:bottom;width:1rem;height:1rem;margin-right:.5rem;margin-bottom:.2rem;border-radius:50%;border-style:solid;border-width:.1rem;border-color:#000}.sfx-radio .sfx-radio-input:checked+*:before{background:radial-gradient(black 0%,black 40%,transparent 50%,transparent)}.sfx-radio .sfx-radio-input:checked+*{color:#000}\n"], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
630
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputRadioComponent, decorators: [{
|
|
631
|
-
type: Component,
|
|
632
|
-
args: [{ selector: 'symphony-input-radio', template: "<div class=\"sfx-radio\" (click)=\"onClick()\">\n <input\n type=\"radio\"\n class=\"sfx-radio-input sfx-position-absolute\"\n [checked]=\"isActive\"\n name=\"{{ label }}\"\n />\n <label for=\"{{ label }}\" class=\"Font400\"\n >{{ label }}<span class=\"requiredField\" *ngIf=\"isRequired\">*</span></label\n >\n</div>\n", styles: [".requiredField{color:red!important}.sfx-radio{margin:10px 0;-webkit-tap-highlight-color:transparent;-webkit-touch-callout:none;-webkit-user-select:none;user-select:none}.sfx-radio .sfx-radio-input{top:0;left:0;width:100%;cursor:inherit;height:100%;margin:0;opacity:0;padding:0;z-index:1;position:absolute}.sfx-radio .sfx-radio-input~label{display:inline-block;position:relative;cursor:pointer;height:100%;line-height:20px;font-size:14px;color:#000;font-family:neuzeit_groteskbold}.sfx-radio .sfx-radio-input+*:before{content:\"\";display:inline-block;vertical-align:bottom;width:1rem;height:1rem;margin-right:.5rem;margin-bottom:.2rem;border-radius:50%;border-style:solid;border-width:.1rem;border-color:#000}.sfx-radio .sfx-radio-input:checked+*:before{background:radial-gradient(black 0%,black 40%,transparent 50%,transparent)}.sfx-radio .sfx-radio-input:checked+*{color:#000}\n"] }]
|
|
633
|
-
}], ctorParameters: function () { return []; }, propDecorators: { isActive: [{
|
|
634
|
-
type: Input
|
|
635
|
-
}], label: [{
|
|
636
|
-
type: Input
|
|
637
|
-
}], isRequired: [{
|
|
638
|
-
type: Input
|
|
639
|
-
}], clicked: [{
|
|
640
|
-
type: Output
|
|
641
|
-
}] } });
|
|
642
|
-
|
|
643
|
-
class InputRadioModule {
|
|
644
|
-
}
|
|
645
|
-
InputRadioModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputRadioModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
646
|
-
InputRadioModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputRadioModule, declarations: [InputRadioComponent], imports: [CommonModule,
|
|
647
|
-
FormsModule,
|
|
648
|
-
ReactiveFormsModule], exports: [InputRadioComponent] });
|
|
649
|
-
InputRadioModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputRadioModule, imports: [[
|
|
650
|
-
CommonModule,
|
|
651
|
-
FormsModule,
|
|
652
|
-
ReactiveFormsModule,
|
|
653
|
-
]] });
|
|
654
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputRadioModule, decorators: [{
|
|
655
|
-
type: NgModule,
|
|
656
|
-
args: [{
|
|
657
|
-
declarations: [InputRadioComponent],
|
|
658
|
-
imports: [
|
|
659
|
-
CommonModule,
|
|
660
|
-
FormsModule,
|
|
661
|
-
ReactiveFormsModule,
|
|
662
|
-
],
|
|
663
|
-
exports: [InputRadioComponent],
|
|
664
|
-
}]
|
|
665
|
-
}] });
|
|
666
|
-
|
|
667
|
-
class InputTextComponent {
|
|
668
|
-
constructor() {
|
|
669
|
-
this.placeholder = '';
|
|
670
|
-
this.textChange = new EventEmitter();
|
|
671
|
-
this.textChange$ = new Subject();
|
|
672
|
-
}
|
|
673
|
-
ngOnInit() {
|
|
674
|
-
this.textChangeSubscription = this.textChange$
|
|
675
|
-
.pipe(debounceTime(1000), distinctUntilChanged())
|
|
676
|
-
.subscribe((tc) => {
|
|
677
|
-
this.textChange.emit(tc);
|
|
678
|
-
});
|
|
679
|
-
}
|
|
680
|
-
ngOnDestroy() {
|
|
681
|
-
this.textChangeSubscription?.unsubscribe();
|
|
682
|
-
}
|
|
683
|
-
onTextChange(event) {
|
|
684
|
-
this.textChange$.next(event.target.value);
|
|
685
|
-
}
|
|
686
|
-
}
|
|
687
|
-
InputTextComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputTextComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
688
|
-
InputTextComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: InputTextComponent, selector: "symphony-input-text", inputs: { placeholder: "placeholder", icon: "icon", label: "label", isInverse: "isInverse" }, outputs: { textChange: "textChange" }, ngImport: i0, template: "<div\n class=\"input-text-wrap\"\n [ngClass]=\"{\n 'input-secondary': isInverse\n }\"\n>\n <label for=\"input-text\" *ngIf=\"label\" class=\"input-text-label\">{{\n label\n }}</label>\n <input\n type=\"text\"\n name=\"input-text\"\n class=\"input-text\"\n autocomplete=\"off\"\n placeholder=\"{{ placeholder }}\"\n (keyup)=\"onTextChange($event)\"\n />\n <symphony-icon [icon]=\"icon\"></symphony-icon>\n</div>\n", styles: [".input-text-wrap{position:relative}.input-text-wrap.input-secondary{color:#fff}.input-text-wrap.input-secondary .input-text{background-color:transparent;border-color:#565656}.input-text-wrap.input-secondary .input-text::placeholder{color:#fff}.input-text-wrap .input-text-label{display:block;font-family:neuzeit_groteskbold,sans-serif;margin-bottom:.27rem;line-height:25px;margin-left:.3rem}.input-text-wrap .input-text{font-family:neuzeit-grotesk,sans-serif!important;width:calc(100% - .6rem);height:40px;border:1px solid #d0d0d0;border-radius:4px;padding:7px 15px;line-height:25px;margin:.3rem}.input-text-wrap .input-text::placeholder{color:#000}.input-text-wrap .input-text:focus{border-color:#464646}.input-text-wrap .input-text:focus-visible{outline:none}.input-text-wrap symphony-icon{position:absolute;right:17px;font-size:14px;bottom:11px}\n"], components: [{ type: IconComponent, selector: "symphony-icon", inputs: ["icon", "isSecondary", "size"], outputs: ["clicked"] }], directives: [{ type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
689
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputTextComponent, decorators: [{
|
|
690
|
-
type: Component,
|
|
691
|
-
args: [{ selector: 'symphony-input-text', template: "<div\n class=\"input-text-wrap\"\n [ngClass]=\"{\n 'input-secondary': isInverse\n }\"\n>\n <label for=\"input-text\" *ngIf=\"label\" class=\"input-text-label\">{{\n label\n }}</label>\n <input\n type=\"text\"\n name=\"input-text\"\n class=\"input-text\"\n autocomplete=\"off\"\n placeholder=\"{{ placeholder }}\"\n (keyup)=\"onTextChange($event)\"\n />\n <symphony-icon [icon]=\"icon\"></symphony-icon>\n</div>\n", styles: [".input-text-wrap{position:relative}.input-text-wrap.input-secondary{color:#fff}.input-text-wrap.input-secondary .input-text{background-color:transparent;border-color:#565656}.input-text-wrap.input-secondary .input-text::placeholder{color:#fff}.input-text-wrap .input-text-label{display:block;font-family:neuzeit_groteskbold,sans-serif;margin-bottom:.27rem;line-height:25px;margin-left:.3rem}.input-text-wrap .input-text{font-family:neuzeit-grotesk,sans-serif!important;width:calc(100% - .6rem);height:40px;border:1px solid #d0d0d0;border-radius:4px;padding:7px 15px;line-height:25px;margin:.3rem}.input-text-wrap .input-text::placeholder{color:#000}.input-text-wrap .input-text:focus{border-color:#464646}.input-text-wrap .input-text:focus-visible{outline:none}.input-text-wrap symphony-icon{position:absolute;right:17px;font-size:14px;bottom:11px}\n"] }]
|
|
692
|
-
}], ctorParameters: function () { return []; }, propDecorators: { placeholder: [{
|
|
693
|
-
type: Input
|
|
694
|
-
}], icon: [{
|
|
695
|
-
type: Input
|
|
696
|
-
}], label: [{
|
|
697
|
-
type: Input
|
|
698
|
-
}], isInverse: [{
|
|
699
|
-
type: Input
|
|
700
|
-
}], textChange: [{
|
|
701
|
-
type: Output
|
|
702
|
-
}] } });
|
|
703
|
-
|
|
704
|
-
class InputTextModule {
|
|
705
|
-
}
|
|
706
|
-
InputTextModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputTextModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
707
|
-
InputTextModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputTextModule, declarations: [InputTextComponent], imports: [CommonModule, IconModule], exports: [InputTextComponent] });
|
|
708
|
-
InputTextModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputTextModule, imports: [[CommonModule, IconModule]] });
|
|
709
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputTextModule, decorators: [{
|
|
710
|
-
type: NgModule,
|
|
711
|
-
args: [{
|
|
712
|
-
declarations: [InputTextComponent],
|
|
713
|
-
imports: [CommonModule, IconModule],
|
|
714
|
-
exports: [InputTextComponent],
|
|
715
|
-
}]
|
|
716
|
-
}] });
|
|
717
|
-
|
|
718
|
-
class ContextualMenuComponent {
|
|
719
|
-
constructor() {
|
|
720
|
-
this.model = {
|
|
721
|
-
hasBorder: false,
|
|
722
|
-
};
|
|
723
|
-
this.itemClick = new EventEmitter();
|
|
724
|
-
}
|
|
725
|
-
onItemClick(item) {
|
|
726
|
-
this.itemClick.emit(item);
|
|
727
|
-
}
|
|
728
|
-
}
|
|
729
|
-
ContextualMenuComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ContextualMenuComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
730
|
-
ContextualMenuComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: ContextualMenuComponent, selector: "symphony-contextual-menu", inputs: { model: "model" }, outputs: { itemClick: "itemClick" }, ngImport: i0, template: "<div class=\"btn-group\" dropdown>\n <button\n id=\"button-basic\"\n dropdownToggle\n type=\"button\"\n class=\"btn dropdown-toggle\"\n [ngClass]=\"{\n 'has-border': model.hasBorder\n }\"\n aria-controls=\"dropdown-basic\"\n aria-label=\"more-actions-menu\"\n >\n <i class=\"si-more-options\"></i>\n </button>\n <ul\n id=\"dropdown-basic\"\n *dropdownMenu\n class=\"dropdown-menu\"\n role=\"menu\"\n aria-labelledby=\"button-basic\"\n >\n <li role=\"menuitem\" *ngFor=\"let item of model.items\">\n <a\n class=\"dropdown-item\"\n href=\"#\"\n (click)=\"$event.preventDefault(); onItemClick(item)\"\n >{{ item }}</a\n >\n </li>\n </ul>\n</div>\n", styles: [".btn-group .has-border{border-radius:50%;border:2px solid #000;height:40px;width:40px;padding:9px 0;cursor:pointer;text-align:center}.btn-group button.dropdown-toggle.btn{display:flex;align-items:center;justify-content:center;background:#ffffff;padding:0;font-size:18px;line-height:26px;box-shadow:none;width:40px;height:40px;border-radius:50%;color:#000}.btn-group button.dropdown-toggle.btn:hover{background:#000000;color:#fff}.btn-group button.dropdown-toggle.btn .si-more-options{font-size:18px}.btn-group .dropdown-menu{min-width:240px;margin-top:10px;border:none;border-radius:10px;padding-top:20px;padding-bottom:20px;right:-10px;left:auto;box-shadow:0 0 30px #0003;max-height:none;overflow:inherit}.btn-group .dropdown-menu li a.dropdown-item{padding:0 20px;line-height:40px;color:#000;font-weight:600}.btn-group .dropdown-menu li a.dropdown-item:hover{background:#000000;color:#fff}.btn-group .dropdown-menu li a.not-allowed{cursor:not-allowed}.btn-group .dropdown-menu:before{content:\"\\e252\";font-family:Glyphicons Halflings!important;font-size:14px;transform:rotate(180deg);display:inline-block;position:absolute;top:-13px;right:23px;color:#fff}.btn-group.open button.dropdown-toggle.btn{background:#000000;color:#fff}\n"], directives: [{ type: i1$1.BsDropdownDirective, selector: "[bsDropdown],[dropdown]", inputs: ["autoClose", "isAnimated", "insideClick", "isDisabled", "isOpen", "placement", "triggers", "container", "dropup"], outputs: ["onShown", "onHidden", "isOpenChange"], exportAs: ["bs-dropdown"] }, { type: i1$1.BsDropdownToggleDirective, selector: "[bsDropdownToggle],[dropdownToggle]", exportAs: ["bs-dropdown-toggle"] }, { type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i1$1.BsDropdownMenuDirective, selector: "[bsDropdownMenu],[dropdownMenu]", exportAs: ["bs-dropdown-menu"] }, { type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }] });
|
|
731
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ContextualMenuComponent, decorators: [{
|
|
732
|
-
type: Component,
|
|
733
|
-
args: [{ selector: 'symphony-contextual-menu', template: "<div class=\"btn-group\" dropdown>\n <button\n id=\"button-basic\"\n dropdownToggle\n type=\"button\"\n class=\"btn dropdown-toggle\"\n [ngClass]=\"{\n 'has-border': model.hasBorder\n }\"\n aria-controls=\"dropdown-basic\"\n aria-label=\"more-actions-menu\"\n >\n <i class=\"si-more-options\"></i>\n </button>\n <ul\n id=\"dropdown-basic\"\n *dropdownMenu\n class=\"dropdown-menu\"\n role=\"menu\"\n aria-labelledby=\"button-basic\"\n >\n <li role=\"menuitem\" *ngFor=\"let item of model.items\">\n <a\n class=\"dropdown-item\"\n href=\"#\"\n (click)=\"$event.preventDefault(); onItemClick(item)\"\n >{{ item }}</a\n >\n </li>\n </ul>\n</div>\n", styles: [".btn-group .has-border{border-radius:50%;border:2px solid #000;height:40px;width:40px;padding:9px 0;cursor:pointer;text-align:center}.btn-group button.dropdown-toggle.btn{display:flex;align-items:center;justify-content:center;background:#ffffff;padding:0;font-size:18px;line-height:26px;box-shadow:none;width:40px;height:40px;border-radius:50%;color:#000}.btn-group button.dropdown-toggle.btn:hover{background:#000000;color:#fff}.btn-group button.dropdown-toggle.btn .si-more-options{font-size:18px}.btn-group .dropdown-menu{min-width:240px;margin-top:10px;border:none;border-radius:10px;padding-top:20px;padding-bottom:20px;right:-10px;left:auto;box-shadow:0 0 30px #0003;max-height:none;overflow:inherit}.btn-group .dropdown-menu li a.dropdown-item{padding:0 20px;line-height:40px;color:#000;font-weight:600}.btn-group .dropdown-menu li a.dropdown-item:hover{background:#000000;color:#fff}.btn-group .dropdown-menu li a.not-allowed{cursor:not-allowed}.btn-group .dropdown-menu:before{content:\"\\e252\";font-family:Glyphicons Halflings!important;font-size:14px;transform:rotate(180deg);display:inline-block;position:absolute;top:-13px;right:23px;color:#fff}.btn-group.open button.dropdown-toggle.btn{background:#000000;color:#fff}\n"] }]
|
|
734
|
-
}], ctorParameters: function () { return []; }, propDecorators: { model: [{
|
|
735
|
-
type: Input
|
|
736
|
-
}], itemClick: [{
|
|
737
|
-
type: Output
|
|
738
|
-
}] } });
|
|
739
|
-
|
|
740
|
-
class ContextualMenuModule {
|
|
741
|
-
}
|
|
742
|
-
ContextualMenuModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ContextualMenuModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
743
|
-
ContextualMenuModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ContextualMenuModule, declarations: [ContextualMenuComponent], imports: [CommonModule, i1$1.BsDropdownModule, BrowserAnimationsModule], exports: [ContextualMenuComponent] });
|
|
744
|
-
ContextualMenuModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ContextualMenuModule, imports: [[CommonModule, BsDropdownModule.forRoot(), BrowserAnimationsModule]] });
|
|
745
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ContextualMenuModule, decorators: [{
|
|
746
|
-
type: NgModule,
|
|
747
|
-
args: [{
|
|
748
|
-
declarations: [ContextualMenuComponent],
|
|
749
|
-
imports: [CommonModule, BsDropdownModule.forRoot(), BrowserAnimationsModule],
|
|
750
|
-
exports: [ContextualMenuComponent],
|
|
751
|
-
}]
|
|
752
|
-
}] });
|
|
753
|
-
|
|
754
876
|
class InputDropdownComponent {
|
|
755
877
|
constructor() {
|
|
756
878
|
this.selectItem = new EventEmitter();
|
|
@@ -772,386 +894,189 @@ class InputDropdownComponent {
|
|
|
772
894
|
}
|
|
773
895
|
InputDropdownComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputDropdownComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
774
896
|
InputDropdownComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: InputDropdownComponent, selector: "symphony-input-dropdown", inputs: { inputDropdownListModel: "inputDropdownListModel", disableBtn: "disableBtn", isInverse: "isInverse", isRequired: "isRequired" }, outputs: { selectItem: "selectItem", clearSelection: "clearSelection" }, ngImport: i0, template: "<div\n *ngIf=\"inputDropdownListModel.componentHeading\"\n class=\"sfx-filter-label sfx-d-inline-block\"\n [ngClass]=\"{ 'is-inverse': isInverse }\"\n>\n {{ inputDropdownListModel.componentHeading }}\n <span class=\"requiredField\" *ngIf=\"isRequired\">*</span>\n</div>\n<div\n class=\"btn-group sfx-filter-dropdown sfx-d-inline-block\"\n [ngClass]=\"{ 'is-inverse': isInverse }\"\n [isDisabled]=\"disableBtn\"\n dropdown\n>\n <button\n id=\"moreDrop\"\n dropdownToggle\n type=\"button\"\n class=\"btn dropdown-toggle\"\n aria-controls=\"dropdown-basic\"\n >\n {{ inputDropdownListModel.selectedName }}\n </button>\n <i *ngIf=\"!disableBtn\" class=\"si-arrow-hide-reveal\"></i>\n <hr />\n <ul\n id=\"dropdown-basic\"\n *dropdownMenu\n class=\"dropdown-menu\"\n role=\"menu\"\n aria-labelledby=\"moreDrop\"\n [ngClass]=\"{ 'sfx-pb-0': inputDropdownListModel.showClearButton === true }\"\n >\n <li\n *ngFor=\"let action of inputDropdownListModel.dropdownList\"\n [ngClass]=\"{ disabled: action.isDisabled }\"\n (click)=\"itemClick(action)\"\n >\n <a class=\"dropdown-item\" href=\"javascript:;\">{{ action.name }}</a>\n </li>\n <div\n *ngIf=\"inputDropdownListModel.showClearButton\"\n class=\"divider dropdown-divider\"\n ></div>\n <a\n class=\"sfx-filter-item-footer\"\n *ngIf=\"inputDropdownListModel.showClearButton\"\n >\n <button\n type=\"button\"\n (click)=\"onClearSelection()\"\n class=\"pull-left sfx-clear-button\"\n >\n Clear All\n </button>\n </a>\n </ul>\n</div>\n", styles: [".sfx-filter-label{font-family:neuzeit_groteskbold;line-height:25px;margin-bottom:.27rem;margin-left:calc(.3rem + 1px)}.sfx-filter-dropdown{min-width:100%}.sfx-filter-dropdown hr{margin:0;border-top:none;height:1px;width:100%}.sfx-filter-dropdown button.dropdown-toggle.btn{width:calc(100% - .6rem);height:40px;background:transparent;border-color:#d0d0d0;color:#000;margin:.3rem;text-align:left;box-shadow:none;padding:10px 15px}.sfx-filter-dropdown button.dropdown-toggle.btn:before{color:#fff}.sfx-filter-dropdown button.dropdown-toggle.btn:disabled{opacity:1;background:#1d1d1d;border-color:#1d1d1d}.sfx-filter-dropdown button.dropdown-toggle.btn:disabled:before{color:#565656}.sfx-filter-dropdown i{position:absolute;right:12px;top:17px;transform:rotate(180deg);z-index:10;transition:linear .1s;font-size:18px}.sfx-filter-dropdown .dropdown-menu{box-shadow:0 10px 10px #0003;background:#fff;width:100%;border:none;max-height:280px;overflow-y:scroll;padding:0 0 10px;margin:0;border-radius:0}.sfx-filter-dropdown .dropdown-menu li a.dropdown-item{padding:.625rem 1.25rem;color:#000;font-family:neuzeit_groteskbold,sans-serif;word-break:break-word;white-space:normal}.sfx-filter-dropdown .dropdown-menu li a.dropdown-item:hover{background:#000;color:#fff}.sfx-filter-dropdown ::-webkit-scrollbar{width:10px}.sfx-filter-dropdown ::-webkit-scrollbar-track{background:#fff}.sfx-filter-dropdown ::-webkit-scrollbar-thumb{background:#d4d4d4;border-radius:4px}.sfx-filter-dropdown ::-webkit-scrollbar-thumb:hover{background:#555}.sfx-filter-dropdown.btn-group.open{background:#fff;box-shadow:0 10px 10px #0003}.sfx-filter-dropdown.btn-group.open i{transform:rotate(0);color:#fff}.sfx-filter-dropdown.btn-group.open hr{margin:0;border-top:1px solid #d0d0d0;width:100%;height:0}.sfx-filter-dropdown.btn-group.open button.dropdown-toggle.btn{background:#000;color:#fff;border-color:#000}.sfx-filter-dropdown .sfx-clear-button{background:transparent;border:none;color:#000;font-family:neuzeit_groteskbold;padding:15px 20px 26px}.is-inverse.sfx-filter-label{color:#fff}.is-inverse button.dropdown-toggle.btn{color:#fff;border-color:#565656}.is-inverse i{color:#fff}.sfx-pb-0{padding-bottom:0!important}.requiredField{color:red!important}\n"], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i1$1.BsDropdownDirective, selector: "[bsDropdown],[dropdown]", inputs: ["autoClose", "isAnimated", "insideClick", "isDisabled", "isOpen", "placement", "triggers", "container", "dropup"], outputs: ["onShown", "onHidden", "isOpenChange"], exportAs: ["bs-dropdown"] }, { type: i1$1.BsDropdownToggleDirective, selector: "[bsDropdownToggle],[dropdownToggle]", exportAs: ["bs-dropdown-toggle"] }, { type: i1$1.BsDropdownMenuDirective, selector: "[bsDropdownMenu],[dropdownMenu]", exportAs: ["bs-dropdown-menu"] }, { type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }] });
|
|
775
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputDropdownComponent, decorators: [{
|
|
776
|
-
type: Component,
|
|
777
|
-
args: [{ selector: 'symphony-input-dropdown', template: "<div\n *ngIf=\"inputDropdownListModel.componentHeading\"\n class=\"sfx-filter-label sfx-d-inline-block\"\n [ngClass]=\"{ 'is-inverse': isInverse }\"\n>\n {{ inputDropdownListModel.componentHeading }}\n <span class=\"requiredField\" *ngIf=\"isRequired\">*</span>\n</div>\n<div\n class=\"btn-group sfx-filter-dropdown sfx-d-inline-block\"\n [ngClass]=\"{ 'is-inverse': isInverse }\"\n [isDisabled]=\"disableBtn\"\n dropdown\n>\n <button\n id=\"moreDrop\"\n dropdownToggle\n type=\"button\"\n class=\"btn dropdown-toggle\"\n aria-controls=\"dropdown-basic\"\n >\n {{ inputDropdownListModel.selectedName }}\n </button>\n <i *ngIf=\"!disableBtn\" class=\"si-arrow-hide-reveal\"></i>\n <hr />\n <ul\n id=\"dropdown-basic\"\n *dropdownMenu\n class=\"dropdown-menu\"\n role=\"menu\"\n aria-labelledby=\"moreDrop\"\n [ngClass]=\"{ 'sfx-pb-0': inputDropdownListModel.showClearButton === true }\"\n >\n <li\n *ngFor=\"let action of inputDropdownListModel.dropdownList\"\n [ngClass]=\"{ disabled: action.isDisabled }\"\n (click)=\"itemClick(action)\"\n >\n <a class=\"dropdown-item\" href=\"javascript:;\">{{ action.name }}</a>\n </li>\n <div\n *ngIf=\"inputDropdownListModel.showClearButton\"\n class=\"divider dropdown-divider\"\n ></div>\n <a\n class=\"sfx-filter-item-footer\"\n *ngIf=\"inputDropdownListModel.showClearButton\"\n >\n <button\n type=\"button\"\n (click)=\"onClearSelection()\"\n class=\"pull-left sfx-clear-button\"\n >\n Clear All\n </button>\n </a>\n </ul>\n</div>\n", styles: [".sfx-filter-label{font-family:neuzeit_groteskbold;line-height:25px;margin-bottom:.27rem;margin-left:calc(.3rem + 1px)}.sfx-filter-dropdown{min-width:100%}.sfx-filter-dropdown hr{margin:0;border-top:none;height:1px;width:100%}.sfx-filter-dropdown button.dropdown-toggle.btn{width:calc(100% - .6rem);height:40px;background:transparent;border-color:#d0d0d0;color:#000;margin:.3rem;text-align:left;box-shadow:none;padding:10px 15px}.sfx-filter-dropdown button.dropdown-toggle.btn:before{color:#fff}.sfx-filter-dropdown button.dropdown-toggle.btn:disabled{opacity:1;background:#1d1d1d;border-color:#1d1d1d}.sfx-filter-dropdown button.dropdown-toggle.btn:disabled:before{color:#565656}.sfx-filter-dropdown i{position:absolute;right:12px;top:17px;transform:rotate(180deg);z-index:10;transition:linear .1s;font-size:18px}.sfx-filter-dropdown .dropdown-menu{box-shadow:0 10px 10px #0003;background:#fff;width:100%;border:none;max-height:280px;overflow-y:scroll;padding:0 0 10px;margin:0;border-radius:0}.sfx-filter-dropdown .dropdown-menu li a.dropdown-item{padding:.625rem 1.25rem;color:#000;font-family:neuzeit_groteskbold,sans-serif;word-break:break-word;white-space:normal}.sfx-filter-dropdown .dropdown-menu li a.dropdown-item:hover{background:#000;color:#fff}.sfx-filter-dropdown ::-webkit-scrollbar{width:10px}.sfx-filter-dropdown ::-webkit-scrollbar-track{background:#fff}.sfx-filter-dropdown ::-webkit-scrollbar-thumb{background:#d4d4d4;border-radius:4px}.sfx-filter-dropdown ::-webkit-scrollbar-thumb:hover{background:#555}.sfx-filter-dropdown.btn-group.open{background:#fff;box-shadow:0 10px 10px #0003}.sfx-filter-dropdown.btn-group.open i{transform:rotate(0);color:#fff}.sfx-filter-dropdown.btn-group.open hr{margin:0;border-top:1px solid #d0d0d0;width:100%;height:0}.sfx-filter-dropdown.btn-group.open button.dropdown-toggle.btn{background:#000;color:#fff;border-color:#000}.sfx-filter-dropdown .sfx-clear-button{background:transparent;border:none;color:#000;font-family:neuzeit_groteskbold;padding:15px 20px 26px}.is-inverse.sfx-filter-label{color:#fff}.is-inverse button.dropdown-toggle.btn{color:#fff;border-color:#565656}.is-inverse i{color:#fff}.sfx-pb-0{padding-bottom:0!important}.requiredField{color:red!important}\n"] }]
|
|
778
|
-
}], ctorParameters: function () { return []; }, propDecorators: { inputDropdownListModel: [{
|
|
779
|
-
type: Input
|
|
780
|
-
}], disableBtn: [{
|
|
781
|
-
type: Input
|
|
782
|
-
}], isInverse: [{
|
|
783
|
-
type: Input
|
|
784
|
-
}], isRequired: [{
|
|
785
|
-
type: Input
|
|
786
|
-
}], selectItem: [{
|
|
787
|
-
type: Output
|
|
788
|
-
}], clearSelection: [{
|
|
789
|
-
type: Output
|
|
790
|
-
}] } });
|
|
791
|
-
|
|
792
|
-
class InputDropdownModule {
|
|
793
|
-
}
|
|
794
|
-
InputDropdownModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputDropdownModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
795
|
-
InputDropdownModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputDropdownModule, declarations: [InputDropdownComponent], imports: [i1$1.BsDropdownModule, CommonModule], exports: [InputDropdownComponent] });
|
|
796
|
-
InputDropdownModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputDropdownModule, imports: [[
|
|
797
|
-
BsDropdownModule.forRoot(), CommonModule
|
|
798
|
-
]] });
|
|
799
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputDropdownModule, decorators: [{
|
|
800
|
-
type: NgModule,
|
|
801
|
-
args: [{
|
|
802
|
-
declarations: [InputDropdownComponent],
|
|
803
|
-
imports: [
|
|
804
|
-
BsDropdownModule.forRoot(), CommonModule
|
|
805
|
-
],
|
|
806
|
-
exports: [InputDropdownComponent]
|
|
807
|
-
}]
|
|
808
|
-
}] });
|
|
809
|
-
|
|
810
|
-
class FilterAreaComponent {
|
|
811
|
-
constructor() { }
|
|
812
|
-
}
|
|
813
|
-
FilterAreaComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FilterAreaComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
814
|
-
FilterAreaComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: FilterAreaComponent, selector: "symphony-filter-area", ngImport: i0, template: "<div class=\"sfx-filter-section\">\n <div class=\"sfx-border-bottom-mdm-black-1 sfx-mb-20 sfx-pb-20 sfx-mt-10 sfx-d-inline-block sfx-wid-100\">\n <ng-content select=\"[title]\"></ng-content>\n <div class=\"sfx-d-inline-block sfx-ml-10 pull-right\">\n <ng-content select=\"[actions]\"></ng-content>\n </div>\n </div>\n <div class=\"row\">\n <div class=\"col-xs-12 col-sm-6 col-md-3 col-lg-3 sfx-mb-25\">\n <ng-content select=\"[filter-1]\"></ng-content>\n </div>\n <div class=\"col-xs-12 col-sm-6 col-md-3 col-lg-3 sfx-mb-25\">\n <ng-content select=\"[filter-2]\"></ng-content>\n </div>\n <div class=\"col-xs-12 col-sm-6 col-md-3 col-lg-3 sfx-mb-25\">\n <ng-content select=\"[filter-3]\"></ng-content>\n </div>\n <div class=\"col-xs-12 col-sm-6 col-md-3 col-lg-3 sfx-mb-25\">\n <ng-content select=\"[filter-4]\"></ng-content>\n </div>\n <div class=\"col-xs-12 col-sm-6 col-md-3 col-lg-3 sfx-mb-25\">\n <ng-content select=\"[filter-5]\"></ng-content>\n </div>\n <div class=\"col-xs-12 col-sm-6 col-md-3 col-lg-3 sfx-mb-25\">\n <ng-content select=\"[filter-6]\"></ng-content>\n </div>\n <div class=\"col-xs-12 col-sm-6 col-md-6 col-lg-6 sfx-mb-25\">\n <ng-content select=\"[filter-7]\"></ng-content>\n </div>\n </div>\n</div>", styles: [".sfx-filter-section{background:#000000;color:#fff;padding:1.875rem 2.5rem}\n"] });
|
|
815
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FilterAreaComponent, decorators: [{
|
|
816
|
-
type: Component,
|
|
817
|
-
args: [{ selector: 'symphony-filter-area', template: "<div class=\"sfx-filter-section\">\n <div class=\"sfx-border-bottom-mdm-black-1 sfx-mb-20 sfx-pb-20 sfx-mt-10 sfx-d-inline-block sfx-wid-100\">\n <ng-content select=\"[title]\"></ng-content>\n <div class=\"sfx-d-inline-block sfx-ml-10 pull-right\">\n <ng-content select=\"[actions]\"></ng-content>\n </div>\n </div>\n <div class=\"row\">\n <div class=\"col-xs-12 col-sm-6 col-md-3 col-lg-3 sfx-mb-25\">\n <ng-content select=\"[filter-1]\"></ng-content>\n </div>\n <div class=\"col-xs-12 col-sm-6 col-md-3 col-lg-3 sfx-mb-25\">\n <ng-content select=\"[filter-2]\"></ng-content>\n </div>\n <div class=\"col-xs-12 col-sm-6 col-md-3 col-lg-3 sfx-mb-25\">\n <ng-content select=\"[filter-3]\"></ng-content>\n </div>\n <div class=\"col-xs-12 col-sm-6 col-md-3 col-lg-3 sfx-mb-25\">\n <ng-content select=\"[filter-4]\"></ng-content>\n </div>\n <div class=\"col-xs-12 col-sm-6 col-md-3 col-lg-3 sfx-mb-25\">\n <ng-content select=\"[filter-5]\"></ng-content>\n </div>\n <div class=\"col-xs-12 col-sm-6 col-md-3 col-lg-3 sfx-mb-25\">\n <ng-content select=\"[filter-6]\"></ng-content>\n </div>\n <div class=\"col-xs-12 col-sm-6 col-md-6 col-lg-6 sfx-mb-25\">\n <ng-content select=\"[filter-7]\"></ng-content>\n </div>\n </div>\n</div>", styles: [".sfx-filter-section{background:#000000;color:#fff;padding:1.875rem 2.5rem}\n"] }]
|
|
818
|
-
}], ctorParameters: function () { return []; } });
|
|
819
|
-
|
|
820
|
-
class FilterAreaModule {
|
|
821
|
-
}
|
|
822
|
-
FilterAreaModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FilterAreaModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
823
|
-
FilterAreaModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FilterAreaModule, declarations: [FilterAreaComponent], imports: [CommonModule], exports: [FilterAreaComponent] });
|
|
824
|
-
FilterAreaModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FilterAreaModule, imports: [[CommonModule]] });
|
|
825
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FilterAreaModule, decorators: [{
|
|
826
|
-
type: NgModule,
|
|
827
|
-
args: [{
|
|
828
|
-
declarations: [FilterAreaComponent],
|
|
829
|
-
imports: [CommonModule],
|
|
830
|
-
exports: [FilterAreaComponent]
|
|
831
|
-
}]
|
|
832
|
-
}] });
|
|
833
|
-
|
|
834
|
-
class TwoColumnFilterAreaComponent {
|
|
835
|
-
constructor() { }
|
|
836
|
-
}
|
|
837
|
-
TwoColumnFilterAreaComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TwoColumnFilterAreaComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
838
|
-
TwoColumnFilterAreaComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: TwoColumnFilterAreaComponent, selector: "symphony-two-column-filter-area", inputs: { height: "height" }, ngImport: i0, template: "<section class=\"col-xs-12 col-sm-12 col-md-12 col-lg-12 sfx-mb-30 sfx-p-0\">\n <div class=\"sfx-filter-section\" [ngStyle]=\"{ height: height }\">\n <div class=\"row\">\n <!-- select dropdown for event type -->\n <div class=\"col-xs-12 col-sm-6 col-md-6 col-lg-6 sfx-filter-items-wrap\">\n <ng-content select=\"[filter-one]\"></ng-content>\n </div>\n\n <!-- search component -->\n <div class=\"col-xs-12 col-sm-6 col-md-6 col-lg-6 sfx-filter-items-wrap\">\n <ng-content select=\"[filter-two]\"></ng-content>\n </div>\n </div>\n </div>\n</section>\n", styles: [".sfx-filter-section{background-color:#000;padding:2.625rem 1.875rem 2.825rem}.sfx-filter-items-wrap{padding:0 .6375rem}\n"], directives: [{ type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }] });
|
|
839
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TwoColumnFilterAreaComponent, decorators: [{
|
|
840
|
-
type: Component,
|
|
841
|
-
args: [{ selector: 'symphony-two-column-filter-area', template: "<section class=\"col-xs-12 col-sm-12 col-md-12 col-lg-12 sfx-mb-30 sfx-p-0\">\n <div class=\"sfx-filter-section\" [ngStyle]=\"{ height: height }\">\n <div class=\"row\">\n <!-- select dropdown for event type -->\n <div class=\"col-xs-12 col-sm-6 col-md-6 col-lg-6 sfx-filter-items-wrap\">\n <ng-content select=\"[filter-one]\"></ng-content>\n </div>\n\n <!-- search component -->\n <div class=\"col-xs-12 col-sm-6 col-md-6 col-lg-6 sfx-filter-items-wrap\">\n <ng-content select=\"[filter-two]\"></ng-content>\n </div>\n </div>\n </div>\n</section>\n", styles: [".sfx-filter-section{background-color:#000;padding:2.625rem 1.875rem 2.825rem}.sfx-filter-items-wrap{padding:0 .6375rem}\n"] }]
|
|
842
|
-
}], ctorParameters: function () { return []; }, propDecorators: { height: [{
|
|
843
|
-
type: Input
|
|
844
|
-
}] } });
|
|
845
|
-
|
|
846
|
-
class TwoColumnFilterAreaModule {
|
|
847
|
-
}
|
|
848
|
-
TwoColumnFilterAreaModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TwoColumnFilterAreaModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
849
|
-
TwoColumnFilterAreaModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TwoColumnFilterAreaModule, declarations: [TwoColumnFilterAreaComponent], imports: [CommonModule], exports: [TwoColumnFilterAreaComponent] });
|
|
850
|
-
TwoColumnFilterAreaModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TwoColumnFilterAreaModule, imports: [[CommonModule]] });
|
|
851
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TwoColumnFilterAreaModule, decorators: [{
|
|
852
|
-
type: NgModule,
|
|
853
|
-
args: [{
|
|
854
|
-
declarations: [TwoColumnFilterAreaComponent],
|
|
855
|
-
imports: [CommonModule],
|
|
856
|
-
exports: [TwoColumnFilterAreaComponent],
|
|
857
|
-
}]
|
|
858
|
-
}] });
|
|
859
|
-
|
|
860
|
-
var ActivityScoreLevel;
|
|
861
|
-
(function (ActivityScoreLevel) {
|
|
862
|
-
ActivityScoreLevel["Low"] = "low";
|
|
863
|
-
ActivityScoreLevel["Medium"] = "medium";
|
|
864
|
-
ActivityScoreLevel["High"] = "high";
|
|
865
|
-
ActivityScoreLevel["Empty"] = "empty";
|
|
866
|
-
})(ActivityScoreLevel || (ActivityScoreLevel = {}));
|
|
867
|
-
|
|
868
|
-
class ContactActivityScoreComponent {
|
|
869
|
-
constructor() {
|
|
870
|
-
this.contactActivityScoreModel = { activityScore: ActivityScoreLevel.Low };
|
|
871
|
-
this.contact = { candidateScoreActivityScore: 0 };
|
|
872
|
-
}
|
|
873
|
-
refresh(params) {
|
|
874
|
-
return true;
|
|
875
|
-
}
|
|
876
|
-
agInit(params) {
|
|
877
|
-
this.contact = params.data;
|
|
878
|
-
if (!this.contact.header5) {
|
|
879
|
-
this.dataAvailable = 'N/A';
|
|
880
|
-
}
|
|
881
|
-
else {
|
|
882
|
-
this.dataAvailable = this.contact.header5;
|
|
883
|
-
}
|
|
884
|
-
switch (true) {
|
|
885
|
-
case this.contact.header5 >= 0 && this.contact.header5 < 34: {
|
|
886
|
-
this.contactActivityScoreModel.activityScore = ActivityScoreLevel.Low;
|
|
887
|
-
break;
|
|
888
|
-
}
|
|
889
|
-
case this.contact.header5 >= 34 && this.contact.header5 <= 66: {
|
|
890
|
-
this.contactActivityScoreModel.activityScore =
|
|
891
|
-
ActivityScoreLevel.Medium;
|
|
892
|
-
break;
|
|
893
|
-
}
|
|
894
|
-
case this.contact.header5 > 66: {
|
|
895
|
-
this.contactActivityScoreModel.activityScore = ActivityScoreLevel.High;
|
|
896
|
-
break;
|
|
897
|
-
}
|
|
898
|
-
default: {
|
|
899
|
-
this.contactActivityScoreModel.activityScore = ActivityScoreLevel.Empty;
|
|
900
|
-
break;
|
|
901
|
-
}
|
|
902
|
-
}
|
|
903
|
-
}
|
|
904
|
-
}
|
|
905
|
-
ContactActivityScoreComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ContactActivityScoreComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
906
|
-
ContactActivityScoreComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: ContactActivityScoreComponent, selector: "symphony-contact-activity-score", ngImport: i0, template: "<span\n class=\"activity-score-bg activity-score-{{\n contactActivityScoreModel.activityScore\n }}\"\n>\n <div class=\"activity-score-content\">{{ dataAvailable }}</div>\n</span>\n", styles: [".activity-score-bg{height:38px;width:38px;background-color:#bbb;border-radius:50%;display:inline-block;color:#fff;text-align:center}.activity-score-bg.activity-score-high{background-color:#00bb5b}.activity-score-bg.activity-score-medium{background-color:#f57300}.activity-score-bg.activity-score-low{background-color:#d60000}.activity-score-bg.activity-score-empty{background-color:#fff;color:#000!important}\n"] });
|
|
907
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ContactActivityScoreComponent, decorators: [{
|
|
908
|
-
type: Component,
|
|
909
|
-
args: [{ selector: 'symphony-contact-activity-score', template: "<span\n class=\"activity-score-bg activity-score-{{\n contactActivityScoreModel.activityScore\n }}\"\n>\n <div class=\"activity-score-content\">{{ dataAvailable }}</div>\n</span>\n", styles: [".activity-score-bg{height:38px;width:38px;background-color:#bbb;border-radius:50%;display:inline-block;color:#fff;text-align:center}.activity-score-bg.activity-score-high{background-color:#00bb5b}.activity-score-bg.activity-score-medium{background-color:#f57300}.activity-score-bg.activity-score-low{background-color:#d60000}.activity-score-bg.activity-score-empty{background-color:#fff;color:#000!important}\n"] }]
|
|
910
|
-
}], ctorParameters: function () { return []; } });
|
|
911
|
-
|
|
912
|
-
class EventSettingsMoreOptionsComponent {
|
|
913
|
-
constructor() {
|
|
914
|
-
this.agGridParams = {};
|
|
915
|
-
this.moreOptions = {
|
|
916
|
-
items: ['Edit', 'Set as Default'],
|
|
917
|
-
hasBorder: false,
|
|
918
|
-
};
|
|
919
|
-
}
|
|
920
|
-
refresh(params) {
|
|
921
|
-
return true;
|
|
922
|
-
}
|
|
923
|
-
agInit(params) {
|
|
924
|
-
this.agGridParams = params;
|
|
925
|
-
}
|
|
926
|
-
onItemClick(item) {
|
|
927
|
-
const action = {
|
|
928
|
-
item,
|
|
929
|
-
row: this.agGridParams,
|
|
930
|
-
};
|
|
931
|
-
this.agGridParams.itemClick(action);
|
|
932
|
-
}
|
|
933
|
-
}
|
|
934
|
-
EventSettingsMoreOptionsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: EventSettingsMoreOptionsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
935
|
-
EventSettingsMoreOptionsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: EventSettingsMoreOptionsComponent, selector: "symphony-event-settings-more-options", ngImport: i0, template: "<symphony-contextual-menu\n class=\"more-options\"\n *ngIf=\"moreOptions.items && moreOptions.items.length > 0\"\n [model]=\"moreOptions\"\n (itemClick)=\"onItemClick($event)\"\n>\n</symphony-contextual-menu>\n", components: [{ type: ContextualMenuComponent, selector: "symphony-contextual-menu", inputs: ["model"], outputs: ["itemClick"] }], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
936
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: EventSettingsMoreOptionsComponent, decorators: [{
|
|
937
|
-
type: Component,
|
|
938
|
-
args: [{ selector: 'symphony-event-settings-more-options', template: "<symphony-contextual-menu\n class=\"more-options\"\n *ngIf=\"moreOptions.items && moreOptions.items.length > 0\"\n [model]=\"moreOptions\"\n (itemClick)=\"onItemClick($event)\"\n>\n</symphony-contextual-menu>\n" }]
|
|
939
|
-
}], ctorParameters: function () { return []; } });
|
|
940
|
-
|
|
941
|
-
class InputToggleComponent {
|
|
942
|
-
constructor() {
|
|
943
|
-
this.toggleClick = new EventEmitter();
|
|
944
|
-
}
|
|
945
|
-
toggleClicked() {
|
|
946
|
-
this.isToggled = !this.isToggled;
|
|
947
|
-
this.toggleClick.emit(this.isToggled);
|
|
948
|
-
}
|
|
949
|
-
}
|
|
950
|
-
InputToggleComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputToggleComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
951
|
-
InputToggleComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: InputToggleComponent, selector: "symphony-input-toggle", inputs: { isToggled: "isToggled", isInverse: "isInverse" }, outputs: { toggleClick: "toggleClick" }, ngImport: i0, template: "<label class=\"switch\">\n <input\n aria-label=\"toggle-active-state\"\n [checked]=\"isToggled\"\n type=\"checkbox\"\n (click)=\"toggleClicked()\"\n [ngClass]=\"{ 'is-inverse': isInverse }\"\n />\n <span class=\"slider round\"></span>\n</label>\n", styles: [".switch{position:relative;vertical-align:middle;display:inline-block;width:30px;height:14px}.switch input{opacity:0;width:0;height:0}.slider{position:absolute;cursor:pointer;top:0;left:0;right:0;bottom:0;background-color:#ccc;transition:.4s}.slider:before{position:absolute;content:\"\";height:10px;width:10px;left:2px;bottom:2px;background-color:#fff;transition:.4s}.slider.round{border-radius:16px}.slider.round.round:before{border-radius:50%}input:checked+.slider{background-color:#000}input:checked+.slider:before{transform:translate(15px)}input:focus+.slider{box-shadow:0 0 1px #2196f3}\n"], directives: [{ type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
|
|
952
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputToggleComponent, decorators: [{
|
|
953
|
-
type: Component,
|
|
954
|
-
args: [{ selector: 'symphony-input-toggle', template: "<label class=\"switch\">\n <input\n aria-label=\"toggle-active-state\"\n [checked]=\"isToggled\"\n type=\"checkbox\"\n (click)=\"toggleClicked()\"\n [ngClass]=\"{ 'is-inverse': isInverse }\"\n />\n <span class=\"slider round\"></span>\n</label>\n", styles: [".switch{position:relative;vertical-align:middle;display:inline-block;width:30px;height:14px}.switch input{opacity:0;width:0;height:0}.slider{position:absolute;cursor:pointer;top:0;left:0;right:0;bottom:0;background-color:#ccc;transition:.4s}.slider:before{position:absolute;content:\"\";height:10px;width:10px;left:2px;bottom:2px;background-color:#fff;transition:.4s}.slider.round{border-radius:16px}.slider.round.round:before{border-radius:50%}input:checked+.slider{background-color:#000}input:checked+.slider:before{transform:translate(15px)}input:focus+.slider{box-shadow:0 0 1px #2196f3}\n"] }]
|
|
955
|
-
}], ctorParameters: function () { return []; }, propDecorators: { isToggled: [{
|
|
956
|
-
type: Input
|
|
957
|
-
}], isInverse: [{
|
|
958
|
-
type: Input
|
|
959
|
-
}], toggleClick: [{
|
|
960
|
-
type: Output
|
|
961
|
-
}] } });
|
|
962
|
-
|
|
963
|
-
class GridToggleCellRendererComponent {
|
|
964
|
-
refresh(params) {
|
|
965
|
-
return true;
|
|
966
|
-
}
|
|
967
|
-
agInit(params) {
|
|
968
|
-
this.params = params;
|
|
969
|
-
}
|
|
970
|
-
toggleClickedHandler(isToggled) {
|
|
971
|
-
const model = {
|
|
972
|
-
isToggled,
|
|
973
|
-
row: this.params,
|
|
974
|
-
};
|
|
975
|
-
this.params.clicked(model);
|
|
976
|
-
}
|
|
977
|
-
}
|
|
978
|
-
GridToggleCellRendererComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: GridToggleCellRendererComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
979
|
-
GridToggleCellRendererComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: GridToggleCellRendererComponent, selector: "symphony-grid-toggle-cell-renderer", ngImport: i0, template: "<symphony-input-toggle\n [isToggled]=\"params.data[params.colDef.field]\"\n (toggleClick)=\"toggleClickedHandler($event)\"\n></symphony-input-toggle>\n", components: [{ type: InputToggleComponent, selector: "symphony-input-toggle", inputs: ["isToggled", "isInverse"], outputs: ["toggleClick"] }] });
|
|
980
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: GridToggleCellRendererComponent, decorators: [{
|
|
981
|
-
type: Component,
|
|
982
|
-
args: [{ selector: 'symphony-grid-toggle-cell-renderer', template: "<symphony-input-toggle\n [isToggled]=\"params.data[params.colDef.field]\"\n (toggleClick)=\"toggleClickedHandler($event)\"\n></symphony-input-toggle>\n" }]
|
|
983
|
-
}] });
|
|
984
|
-
|
|
985
|
-
var RelevanceScoreLevel;
|
|
986
|
-
(function (RelevanceScoreLevel) {
|
|
987
|
-
RelevanceScoreLevel["Value"] = "value";
|
|
988
|
-
RelevanceScoreLevel["Empty"] = "empty";
|
|
989
|
-
})(RelevanceScoreLevel || (RelevanceScoreLevel = {}));
|
|
990
|
-
|
|
991
|
-
class RelevanceScoreComponent {
|
|
992
|
-
constructor() {
|
|
993
|
-
this.relevanceScoreModel = { relevanceScore: RelevanceScoreLevel.Empty };
|
|
994
|
-
this.contact = { relevanceScore: 0 };
|
|
995
|
-
}
|
|
996
|
-
refresh(params) {
|
|
997
|
-
return true;
|
|
998
|
-
}
|
|
999
|
-
agInit(params) {
|
|
1000
|
-
this.contact = params.data;
|
|
1001
|
-
if (this.contact) {
|
|
1002
|
-
if (this.contact.header4 || this.contact.header4 === 0) {
|
|
1003
|
-
this.relevanceData = this.contact.header4;
|
|
1004
|
-
this.relevanceScoreModel.relevanceScore = RelevanceScoreLevel.Value;
|
|
1005
|
-
}
|
|
1006
|
-
else {
|
|
1007
|
-
this.relevanceData = 'N/A';
|
|
1008
|
-
}
|
|
1009
|
-
}
|
|
1010
|
-
}
|
|
1011
|
-
}
|
|
1012
|
-
RelevanceScoreComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: RelevanceScoreComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1013
|
-
RelevanceScoreComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: RelevanceScoreComponent, selector: "symphony-relevance-score", ngImport: i0, template: "<span class=\"relevance-score-bg relevance-score-{{ relevanceScoreModel.relevanceScore }}\">\n <div class=\"relevance-score-content\">{{ relevanceData}}</div>\n</span>", styles: [".relevance-score-bg{height:38px;width:38px;background-color:#fff;border-radius:50%;display:inline-block;color:#000;text-align:center}.relevance-score-value{border:1px solid black;font-weight:700}\n"] });
|
|
1014
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: RelevanceScoreComponent, decorators: [{
|
|
1015
|
-
type: Component,
|
|
1016
|
-
args: [{ selector: 'symphony-relevance-score', template: "<span class=\"relevance-score-bg relevance-score-{{ relevanceScoreModel.relevanceScore }}\">\n <div class=\"relevance-score-content\">{{ relevanceData}}</div>\n</span>", styles: [".relevance-score-bg{height:38px;width:38px;background-color:#fff;border-radius:50%;display:inline-block;color:#000;text-align:center}.relevance-score-value{border:1px solid black;font-weight:700}\n"] }]
|
|
1017
|
-
}], ctorParameters: function () { return []; } });
|
|
1018
|
-
|
|
1019
|
-
class GridComponent {
|
|
1020
|
-
constructor() {
|
|
1021
|
-
this.rowHeightPage = 80;
|
|
1022
|
-
this.gridHeight = 100;
|
|
1023
|
-
this.frameworkComponents = this.getFrameworkComponents();
|
|
1024
|
-
this.getRowHeight = () => {
|
|
1025
|
-
return this.rowHeightPage;
|
|
1026
|
-
};
|
|
1027
|
-
}
|
|
1028
|
-
onGridReady(gridReadyEvent) {
|
|
1029
|
-
gridReadyEvent.api.sizeColumnsToFit();
|
|
1030
|
-
}
|
|
1031
|
-
getFrameworkComponents() {
|
|
1032
|
-
return {
|
|
1033
|
-
contactActivityScore: ContactActivityScoreComponent,
|
|
1034
|
-
fitScore: RelevanceScoreComponent,
|
|
1035
|
-
gridToggle: GridToggleCellRendererComponent,
|
|
1036
|
-
moreActions: EventSettingsMoreOptionsComponent,
|
|
1037
|
-
};
|
|
1038
|
-
}
|
|
1039
|
-
}
|
|
1040
|
-
GridComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: GridComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1041
|
-
GridComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: GridComponent, selector: "symphony-grid", inputs: { columnDefs: "columnDefs", rowData: "rowData" }, ngImport: i0, template: "<ag-grid-angular\n style=\"width: 100%\"\n class=\"ag-theme-alpine\"\n [rowData]=\"rowData\"\n [columnDefs]=\"columnDefs\"\n (gridReady)=\"onGridReady($event)\"\n [style.height.vh]=\"gridHeight\"\n [getRowHeight]=\"getRowHeight\"\n [frameworkComponents]=\"frameworkComponents\"\n>\n</ag-grid-angular>\n", styles: [""], components: [{ type: i1$2.AgGridAngular, selector: "ag-grid-angular", inputs: ["alignedGrids", "rowData", "columnDefs", "excelStyles", "pinnedTopRowData", "pinnedBottomRowData", "chartThemes", "components", "frameworkComponents", "rowStyle", "context", "autoGroupColumnDef", "localeText", "icons", "datasource", "serverSideDatasource", "viewportDatasource", "groupRowRendererParams", "aggFuncs", "fullWidthCellRendererParams", "defaultColGroupDef", "defaultColDef", "defaultExportParams", "columnTypes", "rowClassRules", "detailGridOptions", "detailCellRendererParams", "loadingCellRendererParams", "loadingOverlayComponentParams", "noRowsOverlayComponentParams", "popupParent", "colResizeDefault", "reduxStore", "statusBar", "sideBar", "chartThemeOverrides", "customChartThemes", "sortingOrder", "rowClass", "rowSelection", "overlayLoadingTemplate", "overlayNoRowsTemplate", "quickFilterText", "rowModelType", "editType", "domLayout", "clipboardDeliminator", "rowGroupPanelShow", "multiSortKey", "pivotColumnGroupTotals", "pivotRowTotals", "pivotPanelShow", "fillHandleDirection", "rowHeight", "detailRowHeight", "rowBuffer", "colWidth", "headerHeight", "groupHeaderHeight", "floatingFiltersHeight", "pivotHeaderHeight", "pivotGroupHeaderHeight", "groupDefaultExpanded", "minColWidth", "maxColWidth", "viewportRowModelPageSize", "viewportRowModelBufferSize", "autoSizePadding", "maxBlocksInCache", "maxConcurrentDatasourceRequests", "tooltipShowDelay", "cacheOverflowSize", "paginationPageSize", "cacheBlockSize", "infiniteInitialRowCount", "scrollbarWidth", "batchUpdateWaitMillis", "asyncTransactionWaitMillis", "blockLoadDebounceMillis", "keepDetailRowsCount", "undoRedoCellEditingLimit", "cellFlashDelay", "cellFadeDelay", "localeTextFunc", "groupRowInnerRenderer", "groupRowInnerRendererFramework", "dateComponent", "dateComponentFramework", "groupRowRenderer", "groupRowRendererFramework", "isExternalFilterPresent", "getRowHeight", "doesExternalFilterPass", "getRowClass", "getRowStyle", "getRowClassRules", "traverseNode", "getContextMenuItems", "getMainMenuItems", "processRowPostCreate", "processCellForClipboard", "groupRowAggNodes", "getRowNodeId", "isFullWidthCell", "fullWidthCellRenderer", "fullWidthCellRendererFramework", "processSecondaryColDef", "processSecondaryColGroupDef", "getBusinessKeyForNode", "sendToClipboard", "navigateToNextHeader", "tabToNextHeader", "navigateToNextCell", "tabToNextCell", "getDetailRowData", "processCellFromClipboard", "getDocument", "postProcessPopup", "getChildCount", "getDataPath", "loadingCellRenderer", "loadingCellRendererFramework", "loadingOverlayComponent", "loadingOverlayComponentFramework", "noRowsOverlayComponent", "noRowsOverlayComponentFramework", "detailCellRenderer", "detailCellRendererFramework", "defaultGroupSortComparator", "isRowMaster", "isRowSelectable", "postSort", "processHeaderForClipboard", "paginationNumberFormatter", "processDataFromClipboard", "getServerSideGroupKey", "isServerSideGroup", "suppressKeyboardEvent", "createChartContainer", "processChartOptions", "getChartToolbarItems", "fillOperation", "suppressMakeColumnVisibleAfterUnGroup", "suppressRowClickSelection", "suppressCellSelection", "suppressHorizontalScroll", "alwaysShowVerticalScroll", "debug", "enableBrowserTooltips", "enableCellExpressions", "angularCompileRows", "angularCompileFilters", "groupSuppressAutoColumn", "groupSelectsChildren", "groupIncludeFooter", "groupIncludeTotalFooter", "groupUseEntireRow", "groupSuppressBlankHeader", "suppressMenuHide", "suppressRowDeselection", "unSortIcon", "suppressMultiSort", "singleClickEdit", "suppressLoadingOverlay", "suppressNoRowsOverlay", "suppressAutoSize", "skipHeaderOnAutoSize", "suppressParentsInRowNodes", "suppressColumnMoveAnimation", "suppressMovableColumns", "suppressFieldDotNotation", "enableRangeSelection", "enableRangeHandle", "enableFillHandle", "suppressClearOnFillReduction", "deltaSort", "suppressTouch", "suppressAsyncEvents", "allowContextMenuWithControlKey", "suppressContextMenu", "rememberGroupStateWhenNewData", "enableCellChangeFlash", "suppressDragLeaveHidesColumns", "suppressMiddleClickScrolls", "suppressPreventDefaultOnMouseWheel", "suppressCopyRowsToClipboard", "copyHeadersToClipboard", "pivotMode", "suppressAggFuncInHeader", "suppressColumnVirtualisation", "suppressAggAtRootLevel", "suppressFocusAfterRefresh", "functionsPassive", "functionsReadOnly", "animateRows", "groupSelectsFiltered", "groupRemoveSingleChildren", "groupRemoveLowestSingleChildren", "enableRtl", "suppressClickEdit", "rowDragManaged", "suppressRowDrag", "suppressMoveWhenRowDragging", "enableMultiRowDragging", "enableGroupEdit", "embedFullWidthRows", "deprecatedEmbedFullWidthRows", "suppressPaginationPanel", "floatingFilter", "groupHideOpenParents", "groupMultiAutoColumn", "pagination", "stopEditingWhenGridLosesFocus", "paginationAutoPageSize", "suppressScrollOnNewData", "purgeClosedRowNodes", "cacheQuickFilter", "deltaRowDataMode", "ensureDomOrder", "accentedSort", "suppressChangeDetection", "valueCache", "valueCacheNeverExpires", "aggregateOnlyChangedColumns", "suppressAnimationFrame", "suppressExcelExport", "suppressCsvExport", "treeData", "masterDetail", "suppressMultiRangeSelection", "enterMovesDownAfterEdit", "enterMovesDown", "suppressPropertyNamesCheck", "rowMultiSelectWithClick", "suppressEnterpriseResetOnNewColumns", "enableOldSetFilterModel", "suppressRowHoverHighlight", "suppressRowTransform", "suppressClipboardPaste", "suppressLastEmptyLineOnPaste", "serverSideSortingAlwaysResets", "reactNext", "suppressSetColumnStateEvents", "suppressColumnStateEvents", "enableCharts", "deltaColumnMode", "suppressMaintainUnsortedOrder", "enableCellTextSelection", "suppressBrowserResizeObserver", "suppressMaxRenderedRowRestriction", "excludeChildrenWhenTreeDataFiltering", "tooltipMouseTrack", "keepDetailRows", "paginateChildRows", "preventDefaultOnContextMenu", "undoRedoCellEditing", "allowDragFromColumnsToolPanel", "immutableData", "immutableColumns", "pivotSuppressAutoColumn", "suppressExpandablePivotGroups", "applyColumnDefOrder", "debounceVerticalScrollbar", "detailRowAutoHeight", "gridOptions", "modules"], outputs: ["columnEverythingChanged", "newColumnsLoaded", "columnPivotModeChanged", "columnRowGroupChanged", "expandOrCollapseAll", "columnPivotChanged", "gridColumnsChanged", "columnValueChanged", "columnMoved", "columnVisible", "columnPinned", "columnGroupOpened", "columnResized", "displayedColumnsChanged", "virtualColumnsChanged", "rowGroupOpened", "rowDataChanged", "rowDataUpdated", "pinnedRowDataChanged", "rangeSelectionChanged", "chartCreated", "chartRangeSelectionChanged", "chartOptionsChanged", "chartDestroyed", "toolPanelVisibleChanged", "modelUpdated", "pasteStart", "pasteEnd", "fillStart", "fillEnd", "cellClicked", "cellDoubleClicked", "cellMouseDown", "cellContextMenu", "cellValueChanged", "rowValueChanged", "cellFocused", "rowSelected", "selectionChanged", "cellKeyDown", "cellKeyPress", "cellMouseOver", "cellMouseOut", "filterChanged", "filterModified", "filterOpened", "sortChanged", "virtualRowRemoved", "rowClicked", "rowDoubleClicked", "gridReady", "gridSizeChanged", "viewportChanged", "scrollbarWidthChanged", "firstDataRendered", "dragStarted", "dragStopped", "checkboxChanged", "rowEditingStarted", "rowEditingStopped", "cellEditingStarted", "cellEditingStopped", "bodyScroll", "animationQueueEmpty", "heightScaleChanged", "paginationChanged", "componentStateChanged", "bodyHeightChanged", "displayedColumnsWidthChanged", "scrollVisibilityChanged", "columnHoverChanged", "flashCells", "paginationPixelOffsetChanged", "rowDragEnter", "rowDragMove", "rowDragLeave", "rowDragEnd", "popupToFront", "columnRowGroupChangeRequest", "columnPivotChangeRequest", "columnValueChangeRequest", "columnAggFuncChangeRequest", "keyboardFocus", "mouseFocus"] }] });
|
|
1042
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: GridComponent, decorators: [{
|
|
897
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputDropdownComponent, decorators: [{
|
|
1043
898
|
type: Component,
|
|
1044
|
-
args: [{ selector: 'symphony-
|
|
1045
|
-
}], ctorParameters: function () { return []; }, propDecorators: {
|
|
899
|
+
args: [{ selector: 'symphony-input-dropdown', template: "<div\n *ngIf=\"inputDropdownListModel.componentHeading\"\n class=\"sfx-filter-label sfx-d-inline-block\"\n [ngClass]=\"{ 'is-inverse': isInverse }\"\n>\n {{ inputDropdownListModel.componentHeading }}\n <span class=\"requiredField\" *ngIf=\"isRequired\">*</span>\n</div>\n<div\n class=\"btn-group sfx-filter-dropdown sfx-d-inline-block\"\n [ngClass]=\"{ 'is-inverse': isInverse }\"\n [isDisabled]=\"disableBtn\"\n dropdown\n>\n <button\n id=\"moreDrop\"\n dropdownToggle\n type=\"button\"\n class=\"btn dropdown-toggle\"\n aria-controls=\"dropdown-basic\"\n >\n {{ inputDropdownListModel.selectedName }}\n </button>\n <i *ngIf=\"!disableBtn\" class=\"si-arrow-hide-reveal\"></i>\n <hr />\n <ul\n id=\"dropdown-basic\"\n *dropdownMenu\n class=\"dropdown-menu\"\n role=\"menu\"\n aria-labelledby=\"moreDrop\"\n [ngClass]=\"{ 'sfx-pb-0': inputDropdownListModel.showClearButton === true }\"\n >\n <li\n *ngFor=\"let action of inputDropdownListModel.dropdownList\"\n [ngClass]=\"{ disabled: action.isDisabled }\"\n (click)=\"itemClick(action)\"\n >\n <a class=\"dropdown-item\" href=\"javascript:;\">{{ action.name }}</a>\n </li>\n <div\n *ngIf=\"inputDropdownListModel.showClearButton\"\n class=\"divider dropdown-divider\"\n ></div>\n <a\n class=\"sfx-filter-item-footer\"\n *ngIf=\"inputDropdownListModel.showClearButton\"\n >\n <button\n type=\"button\"\n (click)=\"onClearSelection()\"\n class=\"pull-left sfx-clear-button\"\n >\n Clear All\n </button>\n </a>\n </ul>\n</div>\n", styles: [".sfx-filter-label{font-family:neuzeit_groteskbold;line-height:25px;margin-bottom:.27rem;margin-left:calc(.3rem + 1px)}.sfx-filter-dropdown{min-width:100%}.sfx-filter-dropdown hr{margin:0;border-top:none;height:1px;width:100%}.sfx-filter-dropdown button.dropdown-toggle.btn{width:calc(100% - .6rem);height:40px;background:transparent;border-color:#d0d0d0;color:#000;margin:.3rem;text-align:left;box-shadow:none;padding:10px 15px}.sfx-filter-dropdown button.dropdown-toggle.btn:before{color:#fff}.sfx-filter-dropdown button.dropdown-toggle.btn:disabled{opacity:1;background:#1d1d1d;border-color:#1d1d1d}.sfx-filter-dropdown button.dropdown-toggle.btn:disabled:before{color:#565656}.sfx-filter-dropdown i{position:absolute;right:12px;top:17px;transform:rotate(180deg);z-index:10;transition:linear .1s;font-size:18px}.sfx-filter-dropdown .dropdown-menu{box-shadow:0 10px 10px #0003;background:#fff;width:100%;border:none;max-height:280px;overflow-y:scroll;padding:0 0 10px;margin:0;border-radius:0}.sfx-filter-dropdown .dropdown-menu li a.dropdown-item{padding:.625rem 1.25rem;color:#000;font-family:neuzeit_groteskbold,sans-serif;word-break:break-word;white-space:normal}.sfx-filter-dropdown .dropdown-menu li a.dropdown-item:hover{background:#000;color:#fff}.sfx-filter-dropdown ::-webkit-scrollbar{width:10px}.sfx-filter-dropdown ::-webkit-scrollbar-track{background:#fff}.sfx-filter-dropdown ::-webkit-scrollbar-thumb{background:#d4d4d4;border-radius:4px}.sfx-filter-dropdown ::-webkit-scrollbar-thumb:hover{background:#555}.sfx-filter-dropdown.btn-group.open{background:#fff;box-shadow:0 10px 10px #0003}.sfx-filter-dropdown.btn-group.open i{transform:rotate(0);color:#fff}.sfx-filter-dropdown.btn-group.open hr{margin:0;border-top:1px solid #d0d0d0;width:100%;height:0}.sfx-filter-dropdown.btn-group.open button.dropdown-toggle.btn{background:#000;color:#fff;border-color:#000}.sfx-filter-dropdown .sfx-clear-button{background:transparent;border:none;color:#000;font-family:neuzeit_groteskbold;padding:15px 20px 26px}.is-inverse.sfx-filter-label{color:#fff}.is-inverse button.dropdown-toggle.btn{color:#fff;border-color:#565656}.is-inverse i{color:#fff}.sfx-pb-0{padding-bottom:0!important}.requiredField{color:red!important}\n"] }]
|
|
900
|
+
}], ctorParameters: function () { return []; }, propDecorators: { inputDropdownListModel: [{
|
|
1046
901
|
type: Input
|
|
1047
|
-
}],
|
|
902
|
+
}], disableBtn: [{
|
|
903
|
+
type: Input
|
|
904
|
+
}], isInverse: [{
|
|
905
|
+
type: Input
|
|
906
|
+
}], isRequired: [{
|
|
1048
907
|
type: Input
|
|
908
|
+
}], selectItem: [{
|
|
909
|
+
type: Output
|
|
910
|
+
}], clearSelection: [{
|
|
911
|
+
type: Output
|
|
1049
912
|
}] } });
|
|
1050
913
|
|
|
1051
|
-
class
|
|
914
|
+
class InputDropdownModule {
|
|
1052
915
|
}
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
916
|
+
InputDropdownModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputDropdownModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
917
|
+
InputDropdownModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputDropdownModule, declarations: [InputDropdownComponent], imports: [i1$1.BsDropdownModule, CommonModule], exports: [InputDropdownComponent] });
|
|
918
|
+
InputDropdownModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputDropdownModule, imports: [[
|
|
919
|
+
BsDropdownModule.forRoot(), CommonModule
|
|
920
|
+
]] });
|
|
921
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputDropdownModule, decorators: [{
|
|
1057
922
|
type: NgModule,
|
|
1058
923
|
args: [{
|
|
1059
|
-
declarations: [
|
|
1060
|
-
imports: [
|
|
924
|
+
declarations: [InputDropdownComponent],
|
|
925
|
+
imports: [
|
|
926
|
+
BsDropdownModule.forRoot(), CommonModule
|
|
927
|
+
],
|
|
928
|
+
exports: [InputDropdownComponent]
|
|
1061
929
|
}]
|
|
1062
930
|
}] });
|
|
1063
931
|
|
|
1064
|
-
class
|
|
932
|
+
class InputDropdownList {
|
|
1065
933
|
}
|
|
1066
|
-
EventSettingsMoreOptionsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: EventSettingsMoreOptionsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1067
|
-
EventSettingsMoreOptionsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: EventSettingsMoreOptionsModule, declarations: [EventSettingsMoreOptionsComponent], imports: [CommonModule, ContextualMenuModule], exports: [EventSettingsMoreOptionsComponent] });
|
|
1068
|
-
EventSettingsMoreOptionsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: EventSettingsMoreOptionsModule, imports: [[CommonModule, ContextualMenuModule]] });
|
|
1069
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: EventSettingsMoreOptionsModule, decorators: [{
|
|
1070
|
-
type: NgModule,
|
|
1071
|
-
args: [{
|
|
1072
|
-
declarations: [EventSettingsMoreOptionsComponent],
|
|
1073
|
-
imports: [CommonModule, ContextualMenuModule],
|
|
1074
|
-
exports: [EventSettingsMoreOptionsComponent],
|
|
1075
|
-
}]
|
|
1076
|
-
}] });
|
|
1077
934
|
|
|
1078
|
-
class
|
|
935
|
+
class InputDropdownListItemModel {
|
|
1079
936
|
}
|
|
1080
|
-
InputToggleModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputToggleModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1081
|
-
InputToggleModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputToggleModule, declarations: [InputToggleComponent], imports: [CommonModule], exports: [InputToggleComponent] });
|
|
1082
|
-
InputToggleModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputToggleModule, imports: [[CommonModule]] });
|
|
1083
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputToggleModule, decorators: [{
|
|
1084
|
-
type: NgModule,
|
|
1085
|
-
args: [{
|
|
1086
|
-
declarations: [InputToggleComponent],
|
|
1087
|
-
imports: [CommonModule],
|
|
1088
|
-
exports: [InputToggleComponent],
|
|
1089
|
-
}]
|
|
1090
|
-
}] });
|
|
1091
937
|
|
|
1092
|
-
class
|
|
938
|
+
class InputRadioComponent {
|
|
939
|
+
constructor() {
|
|
940
|
+
this.clicked = new EventEmitter();
|
|
941
|
+
}
|
|
942
|
+
onClick() {
|
|
943
|
+
this.isActive ? (this.isActive = false) : (this.isActive = true);
|
|
944
|
+
this.clicked.emit({
|
|
945
|
+
label: this.label,
|
|
946
|
+
isActive: this.isActive,
|
|
947
|
+
});
|
|
948
|
+
}
|
|
1093
949
|
}
|
|
1094
|
-
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
type:
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
950
|
+
InputRadioComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputRadioComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
951
|
+
InputRadioComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: InputRadioComponent, selector: "symphony-input-radio", inputs: { isActive: "isActive", label: "label", isRequired: "isRequired" }, outputs: { clicked: "clicked" }, ngImport: i0, template: "<div class=\"sfx-radio\" (click)=\"onClick()\">\n <input\n type=\"radio\"\n class=\"sfx-radio-input sfx-position-absolute\"\n [checked]=\"isActive\"\n name=\"{{ label }}\"\n />\n <label for=\"{{ label }}\" class=\"Font400\"\n >{{ label }}<span class=\"requiredField\" *ngIf=\"isRequired\">*</span></label\n >\n</div>\n", styles: [".requiredField{color:red!important}.sfx-radio{margin:10px 0;-webkit-tap-highlight-color:transparent;-webkit-touch-callout:none;-webkit-user-select:none;user-select:none}.sfx-radio .sfx-radio-input{top:0;left:0;width:100%;cursor:inherit;height:100%;margin:0;opacity:0;padding:0;z-index:1;position:absolute}.sfx-radio .sfx-radio-input~label{display:inline-block;position:relative;cursor:pointer;height:100%;line-height:20px;font-size:14px;color:#000;font-family:neuzeit_groteskbold}.sfx-radio .sfx-radio-input+*:before{content:\"\";display:inline-block;vertical-align:bottom;width:1rem;height:1rem;margin-right:.5rem;margin-bottom:.2rem;border-radius:50%;border-style:solid;border-width:.1rem;border-color:#000}.sfx-radio .sfx-radio-input:checked+*:before{background:radial-gradient(black 0%,black 40%,transparent 50%,transparent)}.sfx-radio .sfx-radio-input:checked+*{color:#000}\n"], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
952
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputRadioComponent, decorators: [{
|
|
953
|
+
type: Component,
|
|
954
|
+
args: [{ selector: 'symphony-input-radio', template: "<div class=\"sfx-radio\" (click)=\"onClick()\">\n <input\n type=\"radio\"\n class=\"sfx-radio-input sfx-position-absolute\"\n [checked]=\"isActive\"\n name=\"{{ label }}\"\n />\n <label for=\"{{ label }}\" class=\"Font400\"\n >{{ label }}<span class=\"requiredField\" *ngIf=\"isRequired\">*</span></label\n >\n</div>\n", styles: [".requiredField{color:red!important}.sfx-radio{margin:10px 0;-webkit-tap-highlight-color:transparent;-webkit-touch-callout:none;-webkit-user-select:none;user-select:none}.sfx-radio .sfx-radio-input{top:0;left:0;width:100%;cursor:inherit;height:100%;margin:0;opacity:0;padding:0;z-index:1;position:absolute}.sfx-radio .sfx-radio-input~label{display:inline-block;position:relative;cursor:pointer;height:100%;line-height:20px;font-size:14px;color:#000;font-family:neuzeit_groteskbold}.sfx-radio .sfx-radio-input+*:before{content:\"\";display:inline-block;vertical-align:bottom;width:1rem;height:1rem;margin-right:.5rem;margin-bottom:.2rem;border-radius:50%;border-style:solid;border-width:.1rem;border-color:#000}.sfx-radio .sfx-radio-input:checked+*:before{background:radial-gradient(black 0%,black 40%,transparent 50%,transparent)}.sfx-radio .sfx-radio-input:checked+*{color:#000}\n"] }]
|
|
955
|
+
}], ctorParameters: function () { return []; }, propDecorators: { isActive: [{
|
|
956
|
+
type: Input
|
|
957
|
+
}], label: [{
|
|
958
|
+
type: Input
|
|
959
|
+
}], isRequired: [{
|
|
960
|
+
type: Input
|
|
961
|
+
}], clicked: [{
|
|
962
|
+
type: Output
|
|
963
|
+
}] } });
|
|
1105
964
|
|
|
1106
|
-
class
|
|
965
|
+
class InputRadioModule {
|
|
1107
966
|
}
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
967
|
+
InputRadioModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputRadioModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
968
|
+
InputRadioModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputRadioModule, declarations: [InputRadioComponent], imports: [CommonModule,
|
|
969
|
+
FormsModule,
|
|
970
|
+
ReactiveFormsModule], exports: [InputRadioComponent] });
|
|
971
|
+
InputRadioModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputRadioModule, imports: [[
|
|
972
|
+
CommonModule,
|
|
973
|
+
FormsModule,
|
|
974
|
+
ReactiveFormsModule,
|
|
975
|
+
]] });
|
|
976
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputRadioModule, decorators: [{
|
|
1112
977
|
type: NgModule,
|
|
1113
978
|
args: [{
|
|
1114
|
-
declarations: [
|
|
1115
|
-
imports: [
|
|
979
|
+
declarations: [InputRadioComponent],
|
|
980
|
+
imports: [
|
|
981
|
+
CommonModule,
|
|
982
|
+
FormsModule,
|
|
983
|
+
ReactiveFormsModule,
|
|
984
|
+
],
|
|
985
|
+
exports: [InputRadioComponent],
|
|
1116
986
|
}]
|
|
1117
987
|
}] });
|
|
1118
988
|
|
|
1119
|
-
class
|
|
989
|
+
class InputTextComponent {
|
|
990
|
+
constructor() {
|
|
991
|
+
this.placeholder = '';
|
|
992
|
+
this.textChange = new EventEmitter();
|
|
993
|
+
this.textChange$ = new Subject();
|
|
994
|
+
}
|
|
995
|
+
ngOnInit() {
|
|
996
|
+
this.textChangeSubscription = this.textChange$
|
|
997
|
+
.pipe(debounceTime(1000), distinctUntilChanged())
|
|
998
|
+
.subscribe((tc) => {
|
|
999
|
+
this.textChange.emit(tc);
|
|
1000
|
+
});
|
|
1001
|
+
}
|
|
1002
|
+
ngOnDestroy() {
|
|
1003
|
+
this.textChangeSubscription?.unsubscribe();
|
|
1004
|
+
}
|
|
1005
|
+
onTextChange(event) {
|
|
1006
|
+
this.textChange$.next(event.target.value);
|
|
1007
|
+
}
|
|
1120
1008
|
}
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
|
|
1126
|
-
|
|
1127
|
-
|
|
1128
|
-
|
|
1129
|
-
|
|
1130
|
-
|
|
1009
|
+
InputTextComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputTextComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1010
|
+
InputTextComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: InputTextComponent, selector: "symphony-input-text", inputs: { placeholder: "placeholder", icon: "icon", label: "label", isInverse: "isInverse" }, outputs: { textChange: "textChange" }, ngImport: i0, template: "<div\n class=\"input-text-wrap\"\n [ngClass]=\"{\n 'input-secondary': isInverse\n }\"\n>\n <label for=\"input-text\" *ngIf=\"label\" class=\"input-text-label\">{{\n label\n }}</label>\n <input\n type=\"text\"\n name=\"input-text\"\n class=\"input-text\"\n autocomplete=\"off\"\n placeholder=\"{{ placeholder }}\"\n (keyup)=\"onTextChange($event)\"\n />\n <symphony-icon [icon]=\"icon\"></symphony-icon>\n</div>\n", styles: [".input-text-wrap{position:relative}.input-text-wrap.input-secondary{color:#fff}.input-text-wrap.input-secondary .input-text{background-color:transparent;border-color:#565656}.input-text-wrap.input-secondary .input-text::placeholder{color:#fff}.input-text-wrap .input-text-label{display:block;font-family:neuzeit_groteskbold,sans-serif;margin-bottom:.27rem;line-height:25px;margin-left:.3rem}.input-text-wrap .input-text{font-family:neuzeit-grotesk,sans-serif!important;width:calc(100% - .6rem);height:40px;border:1px solid #d0d0d0;border-radius:4px;padding:7px 15px;line-height:25px;margin:.3rem}.input-text-wrap .input-text::placeholder{color:#000}.input-text-wrap .input-text:focus{border-color:#464646}.input-text-wrap .input-text:focus-visible{outline:none}.input-text-wrap symphony-icon{position:absolute;right:17px;font-size:14px;bottom:11px}\n"], components: [{ type: IconComponent, selector: "symphony-icon", inputs: ["icon", "isSecondary", "size"], outputs: ["clicked"] }], directives: [{ type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
1011
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputTextComponent, decorators: [{
|
|
1012
|
+
type: Component,
|
|
1013
|
+
args: [{ selector: 'symphony-input-text', template: "<div\n class=\"input-text-wrap\"\n [ngClass]=\"{\n 'input-secondary': isInverse\n }\"\n>\n <label for=\"input-text\" *ngIf=\"label\" class=\"input-text-label\">{{\n label\n }}</label>\n <input\n type=\"text\"\n name=\"input-text\"\n class=\"input-text\"\n autocomplete=\"off\"\n placeholder=\"{{ placeholder }}\"\n (keyup)=\"onTextChange($event)\"\n />\n <symphony-icon [icon]=\"icon\"></symphony-icon>\n</div>\n", styles: [".input-text-wrap{position:relative}.input-text-wrap.input-secondary{color:#fff}.input-text-wrap.input-secondary .input-text{background-color:transparent;border-color:#565656}.input-text-wrap.input-secondary .input-text::placeholder{color:#fff}.input-text-wrap .input-text-label{display:block;font-family:neuzeit_groteskbold,sans-serif;margin-bottom:.27rem;line-height:25px;margin-left:.3rem}.input-text-wrap .input-text{font-family:neuzeit-grotesk,sans-serif!important;width:calc(100% - .6rem);height:40px;border:1px solid #d0d0d0;border-radius:4px;padding:7px 15px;line-height:25px;margin:.3rem}.input-text-wrap .input-text::placeholder{color:#000}.input-text-wrap .input-text:focus{border-color:#464646}.input-text-wrap .input-text:focus-visible{outline:none}.input-text-wrap symphony-icon{position:absolute;right:17px;font-size:14px;bottom:11px}\n"] }]
|
|
1014
|
+
}], ctorParameters: function () { return []; }, propDecorators: { placeholder: [{
|
|
1015
|
+
type: Input
|
|
1016
|
+
}], icon: [{
|
|
1017
|
+
type: Input
|
|
1018
|
+
}], label: [{
|
|
1019
|
+
type: Input
|
|
1020
|
+
}], isInverse: [{
|
|
1021
|
+
type: Input
|
|
1022
|
+
}], textChange: [{
|
|
1023
|
+
type: Output
|
|
1024
|
+
}] } });
|
|
1025
|
+
|
|
1026
|
+
class InputTextModule {
|
|
1027
|
+
}
|
|
1028
|
+
InputTextModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputTextModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1029
|
+
InputTextModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputTextModule, declarations: [InputTextComponent], imports: [CommonModule, IconModule], exports: [InputTextComponent] });
|
|
1030
|
+
InputTextModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputTextModule, imports: [[CommonModule, IconModule]] });
|
|
1031
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputTextModule, decorators: [{
|
|
1131
1032
|
type: NgModule,
|
|
1132
1033
|
args: [{
|
|
1133
|
-
declarations: [],
|
|
1134
|
-
imports: [],
|
|
1135
|
-
exports: [
|
|
1136
|
-
ContactActivityScoreModule,
|
|
1137
|
-
RelevanceScoreModule,
|
|
1138
|
-
GridToggleCellRendererModule,
|
|
1139
|
-
EventSettingsMoreOptionsModule,
|
|
1140
|
-
],
|
|
1034
|
+
declarations: [InputTextComponent],
|
|
1035
|
+
imports: [CommonModule, IconModule],
|
|
1036
|
+
exports: [InputTextComponent],
|
|
1141
1037
|
}]
|
|
1142
1038
|
}] });
|
|
1143
1039
|
|
|
1144
|
-
class
|
|
1040
|
+
class PillComponent {
|
|
1041
|
+
constructor() {
|
|
1042
|
+
this.removePill = new EventEmitter();
|
|
1043
|
+
}
|
|
1044
|
+
onRemoveClick() {
|
|
1045
|
+
this.removePill.emit(this.pillLabel);
|
|
1046
|
+
}
|
|
1145
1047
|
}
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
|
|
1149
|
-
|
|
1048
|
+
PillComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: PillComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1049
|
+
PillComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: PillComponent, selector: "symphony-pill", inputs: { pillLabel: "pillLabel", isInverse: "isInverse", hasClose: "hasClose", tooltipLabel: "tooltipLabel" }, outputs: { removePill: "removePill" }, ngImport: i0, template: "<span *ngIf=\"tooltipLabel\"\n class=\"sfx-d-inline-block sfx-pill-item\"\n [ngClass]=\"{'inverse-pill': isInverse }\"\n [ngClass]=\"{'has-close': hasClose }\"\n tooltip=\"{{tooltipLabel}}\"\n placement=\"top\"\n containerClass=\"sfx-info-tooltip pill-tooltip\"\n [adaptivePosition]=\"false\"\n >\n <i *ngIf=\"hasClose\" (click)=\"onRemoveClick()\"\n class=\"si-add sfx-cursor-pointer\"\n ></i>\n {{ pillLabel }}\n</span>\n\n<span *ngIf=\"!tooltipLabel\"\n class=\"sfx-d-inline-block sfx-pill-item\"\n [ngClass]=\"{'inverse-pill': isInverse }\"\n [ngClass]=\"{'has-close': hasClose }\"\n >\n <i *ngIf=\"hasClose\" (click)=\"onRemoveClick()\"\n class=\"si-add sfx-cursor-pointer\"\n ></i>\n {{ pillLabel }}\n</span>", styles: [".sfx-pill-item{font-family:neuzeit_groteskbold;background-color:#f1f1f1;color:#000;padding:10px 20px;border-radius:25px;text-align:center;font-weight:600;margin-right:10px;margin-top:10px;position:relative}.sfx-pill-item:hover,.sfx-pill-item.inverse-pill{background-color:#000;color:#fff}.sfx-pill-item.has-close{padding:10px 20px 10px 38px}.sfx-pill-item i{font-size:18px;position:absolute;left:14px;top:11px;transform:rotate(45deg)}.sfx-d-inline-block{display:inline-block}.sfx-cursor-pointer{cursor:pointer}.sfx-info-tooltip{min-width:100px}.sfx-info-tooltip.pill-tooltip{min-width:80px;opacity:1;top:-5px!important}.sfx-info-tooltip.pill-tooltip .tooltip-inner{border-radius:10px;box-shadow:0 0 20px #0003;font-weight:600}.sfx-info-tooltip.pill-tooltip .tooltip-arrow.arrow{border-top-color:#fff}.sfx-info-tooltip .tooltip-inner{background-color:#fff;padding:8px 15px;border-radius:0;max-width:160px;font-size:13px;color:#000}\n"], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i2.TooltipDirective, selector: "[tooltip], [tooltipHtml]", inputs: ["containerClass", "tooltipAnimation", "tooltipFadeDuration", "isOpen", "tooltipHtml", "tooltip", "tooltipPlacement", "placement", "tooltipIsOpen", "tooltipEnable", "isDisabled", "tooltipAppendToBody", "container", "tooltipClass", "tooltipContext", "tooltipPopupDelay", "delay", "tooltipTrigger", "triggers", "adaptivePosition"], outputs: ["tooltipChange", "tooltipStateChanged", "onShown", "onHidden"], exportAs: ["bs-tooltip"] }], encapsulation: i0.ViewEncapsulation.None });
|
|
1050
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: PillComponent, decorators: [{
|
|
1051
|
+
type: Component,
|
|
1052
|
+
args: [{ selector: 'symphony-pill', encapsulation: ViewEncapsulation.None, template: "<span *ngIf=\"tooltipLabel\"\n class=\"sfx-d-inline-block sfx-pill-item\"\n [ngClass]=\"{'inverse-pill': isInverse }\"\n [ngClass]=\"{'has-close': hasClose }\"\n tooltip=\"{{tooltipLabel}}\"\n placement=\"top\"\n containerClass=\"sfx-info-tooltip pill-tooltip\"\n [adaptivePosition]=\"false\"\n >\n <i *ngIf=\"hasClose\" (click)=\"onRemoveClick()\"\n class=\"si-add sfx-cursor-pointer\"\n ></i>\n {{ pillLabel }}\n</span>\n\n<span *ngIf=\"!tooltipLabel\"\n class=\"sfx-d-inline-block sfx-pill-item\"\n [ngClass]=\"{'inverse-pill': isInverse }\"\n [ngClass]=\"{'has-close': hasClose }\"\n >\n <i *ngIf=\"hasClose\" (click)=\"onRemoveClick()\"\n class=\"si-add sfx-cursor-pointer\"\n ></i>\n {{ pillLabel }}\n</span>", styles: [".sfx-pill-item{font-family:neuzeit_groteskbold;background-color:#f1f1f1;color:#000;padding:10px 20px;border-radius:25px;text-align:center;font-weight:600;margin-right:10px;margin-top:10px;position:relative}.sfx-pill-item:hover,.sfx-pill-item.inverse-pill{background-color:#000;color:#fff}.sfx-pill-item.has-close{padding:10px 20px 10px 38px}.sfx-pill-item i{font-size:18px;position:absolute;left:14px;top:11px;transform:rotate(45deg)}.sfx-d-inline-block{display:inline-block}.sfx-cursor-pointer{cursor:pointer}.sfx-info-tooltip{min-width:100px}.sfx-info-tooltip.pill-tooltip{min-width:80px;opacity:1;top:-5px!important}.sfx-info-tooltip.pill-tooltip .tooltip-inner{border-radius:10px;box-shadow:0 0 20px #0003;font-weight:600}.sfx-info-tooltip.pill-tooltip .tooltip-arrow.arrow{border-top-color:#fff}.sfx-info-tooltip .tooltip-inner{background-color:#fff;padding:8px 15px;border-radius:0;max-width:160px;font-size:13px;color:#000}\n"] }]
|
|
1053
|
+
}], ctorParameters: function () { return []; }, propDecorators: { pillLabel: [{
|
|
1054
|
+
type: Input
|
|
1055
|
+
}], isInverse: [{
|
|
1056
|
+
type: Input
|
|
1057
|
+
}], hasClose: [{
|
|
1058
|
+
type: Input
|
|
1059
|
+
}], tooltipLabel: [{
|
|
1060
|
+
type: Input
|
|
1061
|
+
}], removePill: [{
|
|
1062
|
+
type: Output
|
|
1063
|
+
}] } });
|
|
1064
|
+
|
|
1065
|
+
class PillModule {
|
|
1066
|
+
}
|
|
1067
|
+
PillModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: PillModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1068
|
+
PillModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: PillModule, declarations: [PillComponent], imports: [CommonModule, i2.TooltipModule], exports: [PillComponent] });
|
|
1069
|
+
PillModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: PillModule, imports: [[
|
|
1070
|
+
CommonModule, TooltipModule.forRoot()
|
|
1071
|
+
]] });
|
|
1072
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: PillModule, decorators: [{
|
|
1150
1073
|
type: NgModule,
|
|
1151
1074
|
args: [{
|
|
1152
|
-
declarations: [
|
|
1153
|
-
imports: [
|
|
1154
|
-
|
|
1075
|
+
declarations: [PillComponent],
|
|
1076
|
+
imports: [
|
|
1077
|
+
CommonModule, TooltipModule.forRoot()
|
|
1078
|
+
],
|
|
1079
|
+
exports: [PillComponent],
|
|
1155
1080
|
}]
|
|
1156
1081
|
}] });
|
|
1157
1082
|
|
|
@@ -1292,6 +1217,50 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
|
|
|
1292
1217
|
}]
|
|
1293
1218
|
}] });
|
|
1294
1219
|
|
|
1220
|
+
class ToasterAlertModel {
|
|
1221
|
+
}
|
|
1222
|
+
var ToasterAlertType;
|
|
1223
|
+
(function (ToasterAlertType) {
|
|
1224
|
+
ToasterAlertType[ToasterAlertType["Success"] = 1] = "Success";
|
|
1225
|
+
ToasterAlertType[ToasterAlertType["Warning"] = 2] = "Warning";
|
|
1226
|
+
ToasterAlertType[ToasterAlertType["Error"] = 3] = "Error";
|
|
1227
|
+
})(ToasterAlertType || (ToasterAlertType = {}));
|
|
1228
|
+
var AlertDuration;
|
|
1229
|
+
(function (AlertDuration) {
|
|
1230
|
+
AlertDuration[AlertDuration["OneSecond"] = 1000] = "OneSecond";
|
|
1231
|
+
AlertDuration[AlertDuration["TwoSeconds"] = 2000] = "TwoSeconds";
|
|
1232
|
+
AlertDuration[AlertDuration["ThreeSeconds"] = 3000] = "ThreeSeconds";
|
|
1233
|
+
AlertDuration[AlertDuration["FourSeconds"] = 4000] = "FourSeconds";
|
|
1234
|
+
AlertDuration[AlertDuration["FiveSeconds"] = 5000] = "FiveSeconds";
|
|
1235
|
+
AlertDuration[AlertDuration["Indefinite"] = 99999999] = "Indefinite";
|
|
1236
|
+
})(AlertDuration || (AlertDuration = {}));
|
|
1237
|
+
|
|
1238
|
+
class TwoColumnFilterAreaComponent {
|
|
1239
|
+
constructor() { }
|
|
1240
|
+
}
|
|
1241
|
+
TwoColumnFilterAreaComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TwoColumnFilterAreaComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1242
|
+
TwoColumnFilterAreaComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: TwoColumnFilterAreaComponent, selector: "symphony-two-column-filter-area", inputs: { height: "height" }, ngImport: i0, template: "<section class=\"col-xs-12 col-sm-12 col-md-12 col-lg-12 sfx-mb-30 sfx-p-0\">\n <div class=\"sfx-filter-section\" [ngStyle]=\"{ height: height }\">\n <div class=\"row\">\n <!-- select dropdown for event type -->\n <div class=\"col-xs-12 col-sm-6 col-md-6 col-lg-6 sfx-filter-items-wrap\">\n <ng-content select=\"[filter-one]\"></ng-content>\n </div>\n\n <!-- search component -->\n <div class=\"col-xs-12 col-sm-6 col-md-6 col-lg-6 sfx-filter-items-wrap\">\n <ng-content select=\"[filter-two]\"></ng-content>\n </div>\n </div>\n </div>\n</section>\n", styles: [".sfx-filter-section{background-color:#000;padding:2.625rem 1.875rem 2.825rem}.sfx-filter-items-wrap{padding:0 .6375rem}\n"], directives: [{ type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }] });
|
|
1243
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TwoColumnFilterAreaComponent, decorators: [{
|
|
1244
|
+
type: Component,
|
|
1245
|
+
args: [{ selector: 'symphony-two-column-filter-area', template: "<section class=\"col-xs-12 col-sm-12 col-md-12 col-lg-12 sfx-mb-30 sfx-p-0\">\n <div class=\"sfx-filter-section\" [ngStyle]=\"{ height: height }\">\n <div class=\"row\">\n <!-- select dropdown for event type -->\n <div class=\"col-xs-12 col-sm-6 col-md-6 col-lg-6 sfx-filter-items-wrap\">\n <ng-content select=\"[filter-one]\"></ng-content>\n </div>\n\n <!-- search component -->\n <div class=\"col-xs-12 col-sm-6 col-md-6 col-lg-6 sfx-filter-items-wrap\">\n <ng-content select=\"[filter-two]\"></ng-content>\n </div>\n </div>\n </div>\n</section>\n", styles: [".sfx-filter-section{background-color:#000;padding:2.625rem 1.875rem 2.825rem}.sfx-filter-items-wrap{padding:0 .6375rem}\n"] }]
|
|
1246
|
+
}], ctorParameters: function () { return []; }, propDecorators: { height: [{
|
|
1247
|
+
type: Input
|
|
1248
|
+
}] } });
|
|
1249
|
+
|
|
1250
|
+
class TwoColumnFilterAreaModule {
|
|
1251
|
+
}
|
|
1252
|
+
TwoColumnFilterAreaModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TwoColumnFilterAreaModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1253
|
+
TwoColumnFilterAreaModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TwoColumnFilterAreaModule, declarations: [TwoColumnFilterAreaComponent], imports: [CommonModule], exports: [TwoColumnFilterAreaComponent] });
|
|
1254
|
+
TwoColumnFilterAreaModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TwoColumnFilterAreaModule, imports: [[CommonModule]] });
|
|
1255
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TwoColumnFilterAreaModule, decorators: [{
|
|
1256
|
+
type: NgModule,
|
|
1257
|
+
args: [{
|
|
1258
|
+
declarations: [TwoColumnFilterAreaComponent],
|
|
1259
|
+
imports: [CommonModule],
|
|
1260
|
+
exports: [TwoColumnFilterAreaComponent],
|
|
1261
|
+
}]
|
|
1262
|
+
}] });
|
|
1263
|
+
|
|
1295
1264
|
class AtomsModule {
|
|
1296
1265
|
}
|
|
1297
1266
|
AtomsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AtomsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
@@ -1299,8 +1268,6 @@ AtomsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "1
|
|
|
1299
1268
|
ContextualMenuModule,
|
|
1300
1269
|
AvatarModule,
|
|
1301
1270
|
PillModule,
|
|
1302
|
-
TaskIconModule,
|
|
1303
|
-
ColorSampleModule,
|
|
1304
1271
|
H1Module,
|
|
1305
1272
|
H2Module,
|
|
1306
1273
|
H3Module,
|
|
@@ -1326,8 +1293,6 @@ AtomsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "1
|
|
|
1326
1293
|
ContextualMenuModule,
|
|
1327
1294
|
AvatarModule,
|
|
1328
1295
|
PillModule,
|
|
1329
|
-
TaskIconModule,
|
|
1330
|
-
ColorSampleModule,
|
|
1331
1296
|
H1Module,
|
|
1332
1297
|
H2Module,
|
|
1333
1298
|
H3Module,
|
|
@@ -1359,8 +1324,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
|
|
|
1359
1324
|
ContextualMenuModule,
|
|
1360
1325
|
AvatarModule,
|
|
1361
1326
|
PillModule,
|
|
1362
|
-
TaskIconModule,
|
|
1363
|
-
ColorSampleModule,
|
|
1364
1327
|
H1Module,
|
|
1365
1328
|
H2Module,
|
|
1366
1329
|
H3Module,
|
|
@@ -1381,7 +1344,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
|
|
|
1381
1344
|
ToasterAlertModule,
|
|
1382
1345
|
SfxLoaderModule,
|
|
1383
1346
|
SfxPageLoaderModule,
|
|
1384
|
-
SfxProgressBarModule
|
|
1347
|
+
SfxProgressBarModule,
|
|
1385
1348
|
],
|
|
1386
1349
|
}]
|
|
1387
1350
|
}] });
|
|
@@ -1415,6 +1378,104 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
|
|
|
1415
1378
|
}]
|
|
1416
1379
|
}] });
|
|
1417
1380
|
|
|
1381
|
+
class CardComponent {
|
|
1382
|
+
constructor() {
|
|
1383
|
+
this.cardModel = {
|
|
1384
|
+
title: '',
|
|
1385
|
+
description: '',
|
|
1386
|
+
};
|
|
1387
|
+
this.clicked = new EventEmitter();
|
|
1388
|
+
}
|
|
1389
|
+
onClick() {
|
|
1390
|
+
this.clicked.emit(this.cardModel);
|
|
1391
|
+
}
|
|
1392
|
+
}
|
|
1393
|
+
CardComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: CardComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1394
|
+
CardComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: CardComponent, selector: "symphony-card", inputs: { cardModel: "cardModel" }, outputs: { clicked: "clicked" }, ngImport: i0, template: "<div class=\"card-item-wrapper\">\n <div class=\"card-item\" (click)=\"onClick()\">\n <div class=\"card-title-wrap sfx-d-flex\">\n <div class=\"card-icon\">\n <symphony-icon [icon]=\"cardModel.icon\"></symphony-icon>\n </div>\n <div class=\"card-title\">\n <symphony-h4>{{ cardModel.title }}</symphony-h4>\n </div>\n </div>\n <div class=\"card-description\">\n <symphony-paragraph>{{ cardModel.description }}</symphony-paragraph>\n </div>\n </div>\n</div>\n", styles: [".card-item-wrapper{position:relative;width:100%;height:0;padding-bottom:50%}.card-item{position:absolute;width:100%;height:100%;box-shadow:0 2px 10px #0003;border-radius:10px;padding:20px;transition:.2s;cursor:pointer}.card-item:hover{background-color:#000}.card-item:hover *{color:#fff}.card-title-wrap{margin-bottom:11px}.card-icon{padding-right:15px}\n"], components: [{ type: IconComponent, selector: "symphony-icon", inputs: ["icon", "isSecondary", "size"], outputs: ["clicked"] }, { type: H4Component, selector: "symphony-h4", inputs: ["text", "isSecondary"] }, { type: ParagraphComponent, selector: "symphony-paragraph", inputs: ["text", "isSecondary"] }] });
|
|
1395
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: CardComponent, decorators: [{
|
|
1396
|
+
type: Component,
|
|
1397
|
+
args: [{ selector: 'symphony-card', template: "<div class=\"card-item-wrapper\">\n <div class=\"card-item\" (click)=\"onClick()\">\n <div class=\"card-title-wrap sfx-d-flex\">\n <div class=\"card-icon\">\n <symphony-icon [icon]=\"cardModel.icon\"></symphony-icon>\n </div>\n <div class=\"card-title\">\n <symphony-h4>{{ cardModel.title }}</symphony-h4>\n </div>\n </div>\n <div class=\"card-description\">\n <symphony-paragraph>{{ cardModel.description }}</symphony-paragraph>\n </div>\n </div>\n</div>\n", styles: [".card-item-wrapper{position:relative;width:100%;height:0;padding-bottom:50%}.card-item{position:absolute;width:100%;height:100%;box-shadow:0 2px 10px #0003;border-radius:10px;padding:20px;transition:.2s;cursor:pointer}.card-item:hover{background-color:#000}.card-item:hover *{color:#fff}.card-title-wrap{margin-bottom:11px}.card-icon{padding-right:15px}\n"] }]
|
|
1398
|
+
}], ctorParameters: function () { return []; }, propDecorators: { cardModel: [{
|
|
1399
|
+
type: Input
|
|
1400
|
+
}], clicked: [{
|
|
1401
|
+
type: Output
|
|
1402
|
+
}] } });
|
|
1403
|
+
|
|
1404
|
+
class CardModule {
|
|
1405
|
+
}
|
|
1406
|
+
CardModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: CardModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1407
|
+
CardModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: CardModule, declarations: [CardComponent], imports: [CommonModule, IconModule, H4Module, H5Module, ParagraphModule], exports: [CardComponent] });
|
|
1408
|
+
CardModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: CardModule, imports: [[CommonModule, IconModule, H4Module, H5Module, ParagraphModule]] });
|
|
1409
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: CardModule, decorators: [{
|
|
1410
|
+
type: NgModule,
|
|
1411
|
+
args: [{
|
|
1412
|
+
declarations: [CardComponent],
|
|
1413
|
+
imports: [CommonModule, IconModule, H4Module, H5Module, ParagraphModule],
|
|
1414
|
+
exports: [CardComponent],
|
|
1415
|
+
}]
|
|
1416
|
+
}] });
|
|
1417
|
+
|
|
1418
|
+
class PillsComponent {
|
|
1419
|
+
constructor() {
|
|
1420
|
+
this.removePill = new EventEmitter();
|
|
1421
|
+
}
|
|
1422
|
+
onRemovePill(event) {
|
|
1423
|
+
this.removePill.emit(this.pillsList.find(p => p.pillLabel.toLowerCase() === event.toLowerCase()));
|
|
1424
|
+
}
|
|
1425
|
+
}
|
|
1426
|
+
PillsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: PillsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1427
|
+
PillsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: PillsComponent, selector: "symphony-pills", inputs: { hasClose: "hasClose", pillsList: "pillsList", hasTooltips: "hasTooltips" }, outputs: { removePill: "removePill" }, ngImport: i0, template: "<div class=\"sfx-pills-wrapper\">\n <symphony-pill *ngFor=\"let pill of pillsList\"\n [pillLabel]=pill.pillLabel\n [hasClose]=hasClose\n [tooltipLabel]=pill.tooltipLabel\n (removePill)=\"onRemovePill($event)\"\n ></symphony-pill>\n</div>", styles: [".sfx-pills-wrapper{overflow-x:auto;white-space:nowrap;width:100%;padding-bottom:20px}\n"], components: [{ type: PillComponent, selector: "symphony-pill", inputs: ["pillLabel", "isInverse", "hasClose", "tooltipLabel"], outputs: ["removePill"] }], directives: [{ type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }] });
|
|
1428
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: PillsComponent, decorators: [{
|
|
1429
|
+
type: Component,
|
|
1430
|
+
args: [{ selector: 'symphony-pills', template: "<div class=\"sfx-pills-wrapper\">\n <symphony-pill *ngFor=\"let pill of pillsList\"\n [pillLabel]=pill.pillLabel\n [hasClose]=hasClose\n [tooltipLabel]=pill.tooltipLabel\n (removePill)=\"onRemovePill($event)\"\n ></symphony-pill>\n</div>", styles: [".sfx-pills-wrapper{overflow-x:auto;white-space:nowrap;width:100%;padding-bottom:20px}\n"] }]
|
|
1431
|
+
}], ctorParameters: function () { return []; }, propDecorators: { hasClose: [{
|
|
1432
|
+
type: Input
|
|
1433
|
+
}], pillsList: [{
|
|
1434
|
+
type: Input
|
|
1435
|
+
}], hasTooltips: [{
|
|
1436
|
+
type: Input
|
|
1437
|
+
}], removePill: [{
|
|
1438
|
+
type: Output
|
|
1439
|
+
}] } });
|
|
1440
|
+
|
|
1441
|
+
class PillsModule {
|
|
1442
|
+
}
|
|
1443
|
+
PillsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: PillsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1444
|
+
PillsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: PillsModule, declarations: [PillsComponent], imports: [CommonModule,
|
|
1445
|
+
PillModule], exports: [PillsComponent] });
|
|
1446
|
+
PillsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: PillsModule, imports: [[
|
|
1447
|
+
CommonModule,
|
|
1448
|
+
PillModule
|
|
1449
|
+
]] });
|
|
1450
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: PillsModule, decorators: [{
|
|
1451
|
+
type: NgModule,
|
|
1452
|
+
args: [{
|
|
1453
|
+
declarations: [PillsComponent],
|
|
1454
|
+
imports: [
|
|
1455
|
+
CommonModule,
|
|
1456
|
+
PillModule
|
|
1457
|
+
],
|
|
1458
|
+
exports: [
|
|
1459
|
+
PillsComponent
|
|
1460
|
+
]
|
|
1461
|
+
}]
|
|
1462
|
+
}] });
|
|
1463
|
+
|
|
1464
|
+
class ColorSampleComponent {
|
|
1465
|
+
constructor() { }
|
|
1466
|
+
ngOnInit() {
|
|
1467
|
+
this.bgColor = this.color;
|
|
1468
|
+
}
|
|
1469
|
+
}
|
|
1470
|
+
ColorSampleComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ColorSampleComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1471
|
+
ColorSampleComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: ColorSampleComponent, selector: "symphony-color-sample", inputs: { color: "color" }, ngImport: i0, template: "<div\n class=\"color-sample\"\n [ngClass]=\"bgColor\"\n [ngStyle]=\"{\n border: color === 'background-color-white' ? '1px solid #000' : 'none'\n }\"\n></div>\n", styles: [".color-sample{float:left;border-radius:50%;height:30px;width:30px;margin-top:10px;margin-right:20px}.background-color-black{background-color:#000}.background-color-grey{background-color:#bababa}.background-color-light-grey-1{background-color:#d0d0d0}.background-color-light-grey-2{background-color:#d9d9d9}.background-color-medium-black{background-color:#464646}.background-color-space-grey{background-color:#141414}.background-color-white{background-color:#fff}.background-color-green{background-color:#00d56b}.background-color-ice-blue{background-color:#03bcce}.background-color-lavender{background-color:#af5af9}.background-color-orange{background-color:#ffa700}.background-color-pink{background-color:#ff6cff}.background-color-purple{background-color:#801afc}.background-color-red{background-color:#f0001e}.background-color-skyblue{background-color:#007dbb}.background-color-turquoise{background-color:#00ebb5}.background-color-yellow{background-color:#fde928}.background-color-cyan{background-color:#00ffd8}.background-color-strong-orange{background-color:#ffa700}.background-color-soft-lime-green{background-color:#67f95a}.background-color-bright-violet{background-color:#7428fd}.background-color-lime-green{background-color:#00bb5e}\n"], directives: [{ type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }] });
|
|
1472
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ColorSampleComponent, decorators: [{
|
|
1473
|
+
type: Component,
|
|
1474
|
+
args: [{ selector: 'symphony-color-sample', template: "<div\n class=\"color-sample\"\n [ngClass]=\"bgColor\"\n [ngStyle]=\"{\n border: color === 'background-color-white' ? '1px solid #000' : 'none'\n }\"\n></div>\n", styles: [".color-sample{float:left;border-radius:50%;height:30px;width:30px;margin-top:10px;margin-right:20px}.background-color-black{background-color:#000}.background-color-grey{background-color:#bababa}.background-color-light-grey-1{background-color:#d0d0d0}.background-color-light-grey-2{background-color:#d9d9d9}.background-color-medium-black{background-color:#464646}.background-color-space-grey{background-color:#141414}.background-color-white{background-color:#fff}.background-color-green{background-color:#00d56b}.background-color-ice-blue{background-color:#03bcce}.background-color-lavender{background-color:#af5af9}.background-color-orange{background-color:#ffa700}.background-color-pink{background-color:#ff6cff}.background-color-purple{background-color:#801afc}.background-color-red{background-color:#f0001e}.background-color-skyblue{background-color:#007dbb}.background-color-turquoise{background-color:#00ebb5}.background-color-yellow{background-color:#fde928}.background-color-cyan{background-color:#00ffd8}.background-color-strong-orange{background-color:#ffa700}.background-color-soft-lime-green{background-color:#67f95a}.background-color-bright-violet{background-color:#7428fd}.background-color-lime-green{background-color:#00bb5e}\n"] }]
|
|
1475
|
+
}], ctorParameters: function () { return []; }, propDecorators: { color: [{
|
|
1476
|
+
type: Input
|
|
1477
|
+
}] } });
|
|
1478
|
+
|
|
1418
1479
|
class ColorSwatchComponent {
|
|
1419
1480
|
constructor() {
|
|
1420
1481
|
this.colorSwatchModel = {
|
|
@@ -1439,6 +1500,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
|
|
|
1439
1500
|
type: Input
|
|
1440
1501
|
}] } });
|
|
1441
1502
|
|
|
1503
|
+
class ColorSampleModule {
|
|
1504
|
+
}
|
|
1505
|
+
ColorSampleModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ColorSampleModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1506
|
+
ColorSampleModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ColorSampleModule, declarations: [ColorSampleComponent], imports: [CommonModule], exports: [ColorSampleComponent] });
|
|
1507
|
+
ColorSampleModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ColorSampleModule, imports: [[CommonModule]] });
|
|
1508
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ColorSampleModule, decorators: [{
|
|
1509
|
+
type: NgModule,
|
|
1510
|
+
args: [{
|
|
1511
|
+
declarations: [ColorSampleComponent],
|
|
1512
|
+
imports: [CommonModule],
|
|
1513
|
+
exports: [ColorSampleComponent],
|
|
1514
|
+
}]
|
|
1515
|
+
}] });
|
|
1516
|
+
|
|
1442
1517
|
class ColorSwatchModule {
|
|
1443
1518
|
}
|
|
1444
1519
|
ColorSwatchModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ColorSwatchModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
@@ -1515,154 +1590,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
|
|
|
1515
1590
|
}]
|
|
1516
1591
|
}] });
|
|
1517
1592
|
|
|
1518
|
-
class NoteComponent {
|
|
1519
|
-
constructor() {
|
|
1520
|
-
this.noteModel = {
|
|
1521
|
-
firstName: '',
|
|
1522
|
-
lastName: '',
|
|
1523
|
-
listTitle: '',
|
|
1524
|
-
timeStamp: '',
|
|
1525
|
-
description: '',
|
|
1526
|
-
moreActions: {
|
|
1527
|
-
items: [],
|
|
1528
|
-
hasBorder: false,
|
|
1529
|
-
},
|
|
1530
|
-
};
|
|
1531
|
-
}
|
|
1532
|
-
}
|
|
1533
|
-
NoteComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: NoteComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1534
|
-
NoteComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: NoteComponent, selector: "symphony-note", inputs: { noteModel: "noteModel" }, ngImport: i0, template: "<div class=\"sfx-note\">\n <symphony-avatar\n class=\"list-avatar\"\n [firstName]=\"noteModel.firstName\"\n [lastName]=\"noteModel.lastName\"\n ></symphony-avatar>\n <div class=\"list-content\">\n <symphony-h3 [text]=\"noteModel.listTitle\"></symphony-h3>\n <symphony-paragraph [text]=\"noteModel.timeStamp\"></symphony-paragraph>\n <symphony-paragraph [text]=\"noteModel.description\"></symphony-paragraph>\n </div>\n <symphony-contextual-menu\n class=\"list-more-option\"\n *ngIf=\"noteModel.moreActions && noteModel.moreActions.items.length > 0\"\n [model]=\"noteModel.moreActions\"\n ></symphony-contextual-menu>\n</div>\n", styles: [".sfx-note{position:relative;padding:20px 75px}.sfx-note .list-avatar{position:absolute;left:0;top:20px}.sfx-note .list-more-option{position:absolute;right:0;top:20px}\n"], components: [{ type: AvatarComponent, selector: "symphony-avatar", inputs: ["firstName", "lastName", "sizePx", "fontSizePx"] }, { type: H3Component, selector: "symphony-h3", inputs: ["text", "isSecondary"] }, { type: ParagraphComponent, selector: "symphony-paragraph", inputs: ["text", "isSecondary"] }, { type: ContextualMenuComponent, selector: "symphony-contextual-menu", inputs: ["model"], outputs: ["itemClick"] }], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
1535
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: NoteComponent, decorators: [{
|
|
1536
|
-
type: Component,
|
|
1537
|
-
args: [{ selector: 'symphony-note', template: "<div class=\"sfx-note\">\n <symphony-avatar\n class=\"list-avatar\"\n [firstName]=\"noteModel.firstName\"\n [lastName]=\"noteModel.lastName\"\n ></symphony-avatar>\n <div class=\"list-content\">\n <symphony-h3 [text]=\"noteModel.listTitle\"></symphony-h3>\n <symphony-paragraph [text]=\"noteModel.timeStamp\"></symphony-paragraph>\n <symphony-paragraph [text]=\"noteModel.description\"></symphony-paragraph>\n </div>\n <symphony-contextual-menu\n class=\"list-more-option\"\n *ngIf=\"noteModel.moreActions && noteModel.moreActions.items.length > 0\"\n [model]=\"noteModel.moreActions\"\n ></symphony-contextual-menu>\n</div>\n", styles: [".sfx-note{position:relative;padding:20px 75px}.sfx-note .list-avatar{position:absolute;left:0;top:20px}.sfx-note .list-more-option{position:absolute;right:0;top:20px}\n"] }]
|
|
1538
|
-
}], ctorParameters: function () { return []; }, propDecorators: { noteModel: [{
|
|
1539
|
-
type: Input
|
|
1540
|
-
}] } });
|
|
1541
|
-
|
|
1542
|
-
class NoteModule {
|
|
1543
|
-
}
|
|
1544
|
-
NoteModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: NoteModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1545
|
-
NoteModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: NoteModule, declarations: [NoteComponent], imports: [CommonModule,
|
|
1546
|
-
AvatarModule,
|
|
1547
|
-
ContextualMenuModule,
|
|
1548
|
-
H3Module,
|
|
1549
|
-
ParagraphModule], exports: [NoteComponent] });
|
|
1550
|
-
NoteModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: NoteModule, imports: [[
|
|
1551
|
-
CommonModule,
|
|
1552
|
-
AvatarModule,
|
|
1553
|
-
ContextualMenuModule,
|
|
1554
|
-
H3Module,
|
|
1555
|
-
ParagraphModule
|
|
1556
|
-
]] });
|
|
1557
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: NoteModule, decorators: [{
|
|
1558
|
-
type: NgModule,
|
|
1559
|
-
args: [{
|
|
1560
|
-
declarations: [NoteComponent],
|
|
1561
|
-
imports: [
|
|
1562
|
-
CommonModule,
|
|
1563
|
-
AvatarModule,
|
|
1564
|
-
ContextualMenuModule,
|
|
1565
|
-
H3Module,
|
|
1566
|
-
ParagraphModule
|
|
1567
|
-
],
|
|
1568
|
-
exports: [NoteComponent]
|
|
1569
|
-
}]
|
|
1570
|
-
}] });
|
|
1571
|
-
|
|
1572
|
-
class PillsComponent {
|
|
1573
|
-
constructor() {
|
|
1574
|
-
this.removePill = new EventEmitter();
|
|
1575
|
-
}
|
|
1576
|
-
onRemovePill(event) {
|
|
1577
|
-
this.removePill.emit(this.pillsList.find(p => p.pillLabel.toLowerCase() === event.toLowerCase()));
|
|
1578
|
-
}
|
|
1579
|
-
}
|
|
1580
|
-
PillsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: PillsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1581
|
-
PillsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: PillsComponent, selector: "symphony-pills", inputs: { hasClose: "hasClose", pillsList: "pillsList", hasTooltips: "hasTooltips" }, outputs: { removePill: "removePill" }, ngImport: i0, template: "<div class=\"sfx-pills-wrapper\">\n <symphony-pill *ngFor=\"let pill of pillsList\"\n [pillLabel]=pill.pillLabel\n [hasClose]=hasClose\n [tooltipLabel]=pill.tooltipLabel\n (removePill)=\"onRemovePill($event)\"\n ></symphony-pill>\n</div>", styles: [".sfx-pills-wrapper{overflow-x:auto;white-space:nowrap;width:100%;padding-bottom:20px}\n"], components: [{ type: PillComponent, selector: "symphony-pill", inputs: ["pillLabel", "isInverse", "hasClose", "tooltipLabel"], outputs: ["removePill"] }], directives: [{ type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }] });
|
|
1582
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: PillsComponent, decorators: [{
|
|
1583
|
-
type: Component,
|
|
1584
|
-
args: [{ selector: 'symphony-pills', template: "<div class=\"sfx-pills-wrapper\">\n <symphony-pill *ngFor=\"let pill of pillsList\"\n [pillLabel]=pill.pillLabel\n [hasClose]=hasClose\n [tooltipLabel]=pill.tooltipLabel\n (removePill)=\"onRemovePill($event)\"\n ></symphony-pill>\n</div>", styles: [".sfx-pills-wrapper{overflow-x:auto;white-space:nowrap;width:100%;padding-bottom:20px}\n"] }]
|
|
1585
|
-
}], ctorParameters: function () { return []; }, propDecorators: { hasClose: [{
|
|
1586
|
-
type: Input
|
|
1587
|
-
}], pillsList: [{
|
|
1588
|
-
type: Input
|
|
1589
|
-
}], hasTooltips: [{
|
|
1590
|
-
type: Input
|
|
1591
|
-
}], removePill: [{
|
|
1592
|
-
type: Output
|
|
1593
|
-
}] } });
|
|
1594
|
-
|
|
1595
|
-
class PillsModule {
|
|
1596
|
-
}
|
|
1597
|
-
PillsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: PillsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1598
|
-
PillsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: PillsModule, declarations: [PillsComponent], imports: [CommonModule,
|
|
1599
|
-
PillModule], exports: [PillsComponent] });
|
|
1600
|
-
PillsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: PillsModule, imports: [[
|
|
1601
|
-
CommonModule,
|
|
1602
|
-
PillModule
|
|
1603
|
-
]] });
|
|
1604
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: PillsModule, decorators: [{
|
|
1605
|
-
type: NgModule,
|
|
1606
|
-
args: [{
|
|
1607
|
-
declarations: [PillsComponent],
|
|
1608
|
-
imports: [
|
|
1609
|
-
CommonModule,
|
|
1610
|
-
PillModule
|
|
1611
|
-
],
|
|
1612
|
-
exports: [
|
|
1613
|
-
PillsComponent
|
|
1614
|
-
]
|
|
1615
|
-
}]
|
|
1616
|
-
}] });
|
|
1617
|
-
|
|
1618
|
-
class TaskComponent {
|
|
1619
|
-
constructor() {
|
|
1620
|
-
this.taskModel = {
|
|
1621
|
-
assignee: '',
|
|
1622
|
-
title: '',
|
|
1623
|
-
dueDate: '',
|
|
1624
|
-
};
|
|
1625
|
-
}
|
|
1626
|
-
}
|
|
1627
|
-
TaskComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TaskComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1628
|
-
TaskComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: TaskComponent, selector: "symphony-task", inputs: { taskModel: "taskModel" }, ngImport: i0, template: "<div class=\"sfx-task\">\n <symphony-task-icon\n class=\"task-icon\"\n [isComplete]=\"taskModel.isComplete\"\n ></symphony-task-icon>\n <div class=\"task-content\">\n <symphony-h3 [text]=\"taskModel.title\"></symphony-h3>\n <div class=\"time-and-assigned\">\n <symphony-paragraph [text]=\"taskModel.dueDate\"></symphony-paragraph>\n <symphony-paragraph [text]=\"taskModel.assignee\"></symphony-paragraph>\n </div>\n </div>\n <symphony-contextual-menu\n class=\"task-more-option\"\n *ngIf=\"taskModel.moreActions && taskModel.moreActions.items.length > 0\"\n [model]=\"taskModel.moreActions\"\n >\n </symphony-contextual-menu>\n</div>\n", styles: ["*{font-family:neuzeit-grotesk,sans-serif!important}.sfx-task{display:flex;align-items:center;padding:30px 0;border-bottom:1px solid #d9d9d9}.sfx-task symphony-task{font-size:14px;letter-spacing:-1px}.sfx-task symphony-task-icon{margin-right:20px}.sfx-task .task-content{width:80%;height:50px}.sfx-task symphony-contextual-menu{margin-left:auto}.sfx-task symphony-paragraph{display:inline-block;margin-right:20px}.sfx-task .time-and-assigned{margin-bottom:-10px}\n"], components: [{ type: TaskIconComponent, selector: "symphony-task-icon", inputs: ["isComplete"] }, { type: H3Component, selector: "symphony-h3", inputs: ["text", "isSecondary"] }, { type: ParagraphComponent, selector: "symphony-paragraph", inputs: ["text", "isSecondary"] }, { type: ContextualMenuComponent, selector: "symphony-contextual-menu", inputs: ["model"], outputs: ["itemClick"] }], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
1629
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TaskComponent, decorators: [{
|
|
1630
|
-
type: Component,
|
|
1631
|
-
args: [{ selector: 'symphony-task', template: "<div class=\"sfx-task\">\n <symphony-task-icon\n class=\"task-icon\"\n [isComplete]=\"taskModel.isComplete\"\n ></symphony-task-icon>\n <div class=\"task-content\">\n <symphony-h3 [text]=\"taskModel.title\"></symphony-h3>\n <div class=\"time-and-assigned\">\n <symphony-paragraph [text]=\"taskModel.dueDate\"></symphony-paragraph>\n <symphony-paragraph [text]=\"taskModel.assignee\"></symphony-paragraph>\n </div>\n </div>\n <symphony-contextual-menu\n class=\"task-more-option\"\n *ngIf=\"taskModel.moreActions && taskModel.moreActions.items.length > 0\"\n [model]=\"taskModel.moreActions\"\n >\n </symphony-contextual-menu>\n</div>\n", styles: ["*{font-family:neuzeit-grotesk,sans-serif!important}.sfx-task{display:flex;align-items:center;padding:30px 0;border-bottom:1px solid #d9d9d9}.sfx-task symphony-task{font-size:14px;letter-spacing:-1px}.sfx-task symphony-task-icon{margin-right:20px}.sfx-task .task-content{width:80%;height:50px}.sfx-task symphony-contextual-menu{margin-left:auto}.sfx-task symphony-paragraph{display:inline-block;margin-right:20px}.sfx-task .time-and-assigned{margin-bottom:-10px}\n"] }]
|
|
1632
|
-
}], ctorParameters: function () { return []; }, propDecorators: { taskModel: [{
|
|
1633
|
-
type: Input
|
|
1634
|
-
}] } });
|
|
1635
|
-
|
|
1636
|
-
class TaskModule {
|
|
1637
|
-
}
|
|
1638
|
-
TaskModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TaskModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1639
|
-
TaskModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TaskModule, declarations: [TaskComponent], imports: [CommonModule,
|
|
1640
|
-
TaskIconModule,
|
|
1641
|
-
ContextualMenuModule,
|
|
1642
|
-
H3Module,
|
|
1643
|
-
ParagraphModule], exports: [TaskComponent] });
|
|
1644
|
-
TaskModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TaskModule, imports: [[
|
|
1645
|
-
CommonModule,
|
|
1646
|
-
TaskIconModule,
|
|
1647
|
-
ContextualMenuModule,
|
|
1648
|
-
H3Module,
|
|
1649
|
-
ParagraphModule
|
|
1650
|
-
]] });
|
|
1651
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TaskModule, decorators: [{
|
|
1652
|
-
type: NgModule,
|
|
1653
|
-
args: [{
|
|
1654
|
-
declarations: [TaskComponent],
|
|
1655
|
-
imports: [
|
|
1656
|
-
CommonModule,
|
|
1657
|
-
TaskIconModule,
|
|
1658
|
-
ContextualMenuModule,
|
|
1659
|
-
H3Module,
|
|
1660
|
-
ParagraphModule
|
|
1661
|
-
],
|
|
1662
|
-
exports: [TaskComponent],
|
|
1663
|
-
}]
|
|
1664
|
-
}] });
|
|
1665
|
-
|
|
1666
1593
|
class MoleculesModule {
|
|
1667
1594
|
}
|
|
1668
1595
|
MoleculesModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: MoleculesModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
@@ -1670,30 +1597,18 @@ MoleculesModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version
|
|
|
1670
1597
|
AvatarModule,
|
|
1671
1598
|
ContextualMenuModule,
|
|
1672
1599
|
PillsModule,
|
|
1673
|
-
TaskModule,
|
|
1674
|
-
ColorSwatchModule,
|
|
1675
|
-
IconSwatchModule,
|
|
1676
|
-
BreadcrumbModule], exports: [NoteModule,
|
|
1677
|
-
PillsModule,
|
|
1678
|
-
TaskModule,
|
|
1679
1600
|
ColorSwatchModule,
|
|
1680
1601
|
IconSwatchModule,
|
|
1681
|
-
BreadcrumbModule] });
|
|
1602
|
+
BreadcrumbModule], exports: [PillsModule, BreadcrumbModule] });
|
|
1682
1603
|
MoleculesModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: MoleculesModule, imports: [[
|
|
1683
1604
|
CommonModule,
|
|
1684
1605
|
AvatarModule,
|
|
1685
1606
|
ContextualMenuModule,
|
|
1686
1607
|
PillsModule,
|
|
1687
|
-
TaskModule,
|
|
1688
1608
|
ColorSwatchModule,
|
|
1689
1609
|
IconSwatchModule,
|
|
1690
1610
|
BreadcrumbModule,
|
|
1691
|
-
],
|
|
1692
|
-
PillsModule,
|
|
1693
|
-
TaskModule,
|
|
1694
|
-
ColorSwatchModule,
|
|
1695
|
-
IconSwatchModule,
|
|
1696
|
-
BreadcrumbModule] });
|
|
1611
|
+
], PillsModule, BreadcrumbModule] });
|
|
1697
1612
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: MoleculesModule, decorators: [{
|
|
1698
1613
|
type: NgModule,
|
|
1699
1614
|
args: [{
|
|
@@ -1703,48 +1618,71 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
|
|
|
1703
1618
|
AvatarModule,
|
|
1704
1619
|
ContextualMenuModule,
|
|
1705
1620
|
PillsModule,
|
|
1706
|
-
TaskModule,
|
|
1707
|
-
ColorSwatchModule,
|
|
1708
|
-
IconSwatchModule,
|
|
1709
|
-
BreadcrumbModule,
|
|
1710
|
-
],
|
|
1711
|
-
exports: [
|
|
1712
|
-
NoteModule,
|
|
1713
|
-
PillsModule,
|
|
1714
|
-
TaskModule,
|
|
1715
1621
|
ColorSwatchModule,
|
|
1716
1622
|
IconSwatchModule,
|
|
1717
1623
|
BreadcrumbModule,
|
|
1718
1624
|
],
|
|
1625
|
+
exports: [PillsModule, BreadcrumbModule],
|
|
1719
1626
|
}]
|
|
1720
1627
|
}] });
|
|
1721
1628
|
|
|
1722
|
-
class
|
|
1723
|
-
constructor() {
|
|
1629
|
+
class CardListComponent {
|
|
1630
|
+
constructor() {
|
|
1631
|
+
this.cardClicked = new EventEmitter();
|
|
1632
|
+
}
|
|
1633
|
+
onCardClick(card) {
|
|
1634
|
+
this.cardClicked.emit(card);
|
|
1635
|
+
}
|
|
1724
1636
|
}
|
|
1725
|
-
|
|
1726
|
-
|
|
1727
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type:
|
|
1637
|
+
CardListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: CardListComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1638
|
+
CardListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: CardListComponent, selector: "symphony-card-list", inputs: { cardList: "cardList" }, outputs: { cardClicked: "cardClicked" }, ngImport: i0, template: "<section class=\"card-list\">\n <ul class=\"row card-list list-unstyled\">\n <li class=\"col-sm-4 col-md-3 card-list-item\" *ngFor=\"let card of cardList\">\n <symphony-card\n [cardModel]=\"card\"\n (clicked)=\"onCardClick($event)\"\n ></symphony-card>\n </li>\n </ul>\n</section>\n", styles: [".card-list-item{margin-bottom:40px}\n"], components: [{ type: CardComponent, selector: "symphony-card", inputs: ["cardModel"], outputs: ["clicked"] }], directives: [{ type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }] });
|
|
1639
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: CardListComponent, decorators: [{
|
|
1728
1640
|
type: Component,
|
|
1729
|
-
args: [{ selector: 'symphony-
|
|
1730
|
-
}], ctorParameters: function () { return []; }, propDecorators: {
|
|
1641
|
+
args: [{ selector: 'symphony-card-list', template: "<section class=\"card-list\">\n <ul class=\"row card-list list-unstyled\">\n <li class=\"col-sm-4 col-md-3 card-list-item\" *ngFor=\"let card of cardList\">\n <symphony-card\n [cardModel]=\"card\"\n (clicked)=\"onCardClick($event)\"\n ></symphony-card>\n </li>\n </ul>\n</section>\n", styles: [".card-list-item{margin-bottom:40px}\n"] }]
|
|
1642
|
+
}], ctorParameters: function () { return []; }, propDecorators: { cardList: [{
|
|
1731
1643
|
type: Input
|
|
1644
|
+
}], cardClicked: [{
|
|
1645
|
+
type: Output
|
|
1732
1646
|
}] } });
|
|
1733
1647
|
|
|
1734
|
-
class
|
|
1648
|
+
class CardListModule {
|
|
1735
1649
|
}
|
|
1736
|
-
|
|
1737
|
-
|
|
1738
|
-
|
|
1739
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type:
|
|
1650
|
+
CardListModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: CardListModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1651
|
+
CardListModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: CardListModule, declarations: [CardListComponent], imports: [CommonModule, CardModule], exports: [CardListComponent] });
|
|
1652
|
+
CardListModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: CardListModule, imports: [[CommonModule, CardModule]] });
|
|
1653
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: CardListModule, decorators: [{
|
|
1740
1654
|
type: NgModule,
|
|
1741
1655
|
args: [{
|
|
1742
|
-
declarations: [
|
|
1743
|
-
imports: [CommonModule,
|
|
1744
|
-
exports: [
|
|
1656
|
+
declarations: [CardListComponent],
|
|
1657
|
+
imports: [CommonModule, CardModule],
|
|
1658
|
+
exports: [CardListComponent],
|
|
1745
1659
|
}]
|
|
1746
1660
|
}] });
|
|
1747
1661
|
|
|
1662
|
+
class NoteComponent {
|
|
1663
|
+
constructor() {
|
|
1664
|
+
this.noteModel = {
|
|
1665
|
+
firstName: '',
|
|
1666
|
+
lastName: '',
|
|
1667
|
+
listTitle: '',
|
|
1668
|
+
timeStamp: '',
|
|
1669
|
+
description: '',
|
|
1670
|
+
moreActions: {
|
|
1671
|
+
items: [],
|
|
1672
|
+
hasBorder: false,
|
|
1673
|
+
},
|
|
1674
|
+
};
|
|
1675
|
+
}
|
|
1676
|
+
}
|
|
1677
|
+
NoteComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: NoteComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1678
|
+
NoteComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: NoteComponent, selector: "symphony-note", inputs: { noteModel: "noteModel" }, ngImport: i0, template: "<div class=\"sfx-note\">\n <symphony-avatar\n class=\"list-avatar\"\n [firstName]=\"noteModel.firstName\"\n [lastName]=\"noteModel.lastName\"\n ></symphony-avatar>\n <div class=\"list-content\">\n <symphony-h3 [text]=\"noteModel.listTitle\"></symphony-h3>\n <symphony-paragraph [text]=\"noteModel.timeStamp\"></symphony-paragraph>\n <symphony-paragraph [text]=\"noteModel.description\"></symphony-paragraph>\n </div>\n <symphony-contextual-menu\n class=\"list-more-option\"\n *ngIf=\"noteModel.moreActions && noteModel.moreActions.items.length > 0\"\n [model]=\"noteModel.moreActions\"\n ></symphony-contextual-menu>\n</div>\n", styles: [".sfx-note{position:relative;padding:20px 75px}.sfx-note .list-avatar{position:absolute;left:0;top:20px}.sfx-note .list-more-option{position:absolute;right:0;top:20px}\n"], components: [{ type: AvatarComponent, selector: "symphony-avatar", inputs: ["firstName", "lastName", "sizePx", "fontSizePx"] }, { type: H3Component, selector: "symphony-h3", inputs: ["text", "isSecondary"] }, { type: ParagraphComponent, selector: "symphony-paragraph", inputs: ["text", "isSecondary"] }, { type: ContextualMenuComponent, selector: "symphony-contextual-menu", inputs: ["model"], outputs: ["itemClick"] }], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
1679
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: NoteComponent, decorators: [{
|
|
1680
|
+
type: Component,
|
|
1681
|
+
args: [{ selector: 'symphony-note', template: "<div class=\"sfx-note\">\n <symphony-avatar\n class=\"list-avatar\"\n [firstName]=\"noteModel.firstName\"\n [lastName]=\"noteModel.lastName\"\n ></symphony-avatar>\n <div class=\"list-content\">\n <symphony-h3 [text]=\"noteModel.listTitle\"></symphony-h3>\n <symphony-paragraph [text]=\"noteModel.timeStamp\"></symphony-paragraph>\n <symphony-paragraph [text]=\"noteModel.description\"></symphony-paragraph>\n </div>\n <symphony-contextual-menu\n class=\"list-more-option\"\n *ngIf=\"noteModel.moreActions && noteModel.moreActions.items.length > 0\"\n [model]=\"noteModel.moreActions\"\n ></symphony-contextual-menu>\n</div>\n", styles: [".sfx-note{position:relative;padding:20px 75px}.sfx-note .list-avatar{position:absolute;left:0;top:20px}.sfx-note .list-more-option{position:absolute;right:0;top:20px}\n"] }]
|
|
1682
|
+
}], ctorParameters: function () { return []; }, propDecorators: { noteModel: [{
|
|
1683
|
+
type: Input
|
|
1684
|
+
}] } });
|
|
1685
|
+
|
|
1748
1686
|
class NoteListComponent {
|
|
1749
1687
|
constructor() { }
|
|
1750
1688
|
}
|
|
@@ -1757,6 +1695,36 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
|
|
|
1757
1695
|
type: Input
|
|
1758
1696
|
}] } });
|
|
1759
1697
|
|
|
1698
|
+
class NoteModule {
|
|
1699
|
+
}
|
|
1700
|
+
NoteModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: NoteModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1701
|
+
NoteModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: NoteModule, declarations: [NoteComponent], imports: [CommonModule,
|
|
1702
|
+
AvatarModule,
|
|
1703
|
+
ContextualMenuModule,
|
|
1704
|
+
H3Module,
|
|
1705
|
+
ParagraphModule], exports: [NoteComponent] });
|
|
1706
|
+
NoteModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: NoteModule, imports: [[
|
|
1707
|
+
CommonModule,
|
|
1708
|
+
AvatarModule,
|
|
1709
|
+
ContextualMenuModule,
|
|
1710
|
+
H3Module,
|
|
1711
|
+
ParagraphModule
|
|
1712
|
+
]] });
|
|
1713
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: NoteModule, decorators: [{
|
|
1714
|
+
type: NgModule,
|
|
1715
|
+
args: [{
|
|
1716
|
+
declarations: [NoteComponent],
|
|
1717
|
+
imports: [
|
|
1718
|
+
CommonModule,
|
|
1719
|
+
AvatarModule,
|
|
1720
|
+
ContextualMenuModule,
|
|
1721
|
+
H3Module,
|
|
1722
|
+
ParagraphModule
|
|
1723
|
+
],
|
|
1724
|
+
exports: [NoteComponent]
|
|
1725
|
+
}]
|
|
1726
|
+
}] });
|
|
1727
|
+
|
|
1760
1728
|
class NoteListModule {
|
|
1761
1729
|
}
|
|
1762
1730
|
NoteListModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: NoteListModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
@@ -1771,185 +1739,162 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
|
|
|
1771
1739
|
}]
|
|
1772
1740
|
}] });
|
|
1773
1741
|
|
|
1774
|
-
class
|
|
1775
|
-
constructor() { }
|
|
1776
|
-
}
|
|
1777
|
-
AdminListTemplateComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AdminListTemplateComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1778
|
-
AdminListTemplateComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: AdminListTemplateComponent, selector: "symphony-admin-list-template", ngImport: i0, template: "<div class=\"sfx\">\n <!---->\n <section class=\"col-xs-12 col-sm-12 col-md-12 col-lg-12\">\n <div class=\"sfx-page-title\">\n <div class=\"row\">\n <div class=\"col-xs-12 col-sm-12 colmd-9 col-lg-9 sfx-pl-0\">\n <ng-content select=\"[sfx-header]\"></ng-content>\n </div>\n <span class=\"pull-right sfx-create-new\">\n <ng-content select=\"[sfx-page-action]\"></ng-content>\n </span>\n </div>\n </div>\n </section>\n <section class=\"col-xs-12 col-sm-12 col-md-12 col-lg-12\">\n <div class=\"sfx-filter-section\">\n <div class=\"row\">\n <ng-content select=\"[sfx-filter-area]\"></ng-content>\n </div>\n </div>\n </section>\n <section class=\"sfx-title-wrap\">\n <div class=\"col-xs-12 col-sm-12 col-md-12 col-lg-12 sfx-mb-30 sfx-p-0\">\n <div class=\"col-xs-12 col-sm-12 col-md-5 col-lg-5 sfx-pl-0 sfx-mt-10\">\n <!-- <h4 class=\"margin-left-minus-15\">22 Event Venues</h4> -->\n <ng-content select=\"[sfx-title]\"></ng-content>\n </div>\n <span class=\"pull-right sfx-create-new\">\n <ng-content select=\"[sfx-grid-action]\"></ng-content>\n </span>\n </div>\n </section>\n <section class=\"sfx-grid-wrap\">\n <ng-content select=\"[sfx-grid]\"></ng-content>\n </section>\n</div>\n", styles: [".sfx-page-title{margin-top:3.125rem;margin-bottom:1.875rem}.sfx-title-wrap{display:inline-block;width:100%;border-bottom:5px solid #000}\n"] });
|
|
1779
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AdminListTemplateComponent, decorators: [{
|
|
1780
|
-
type: Component,
|
|
1781
|
-
args: [{ selector: 'symphony-admin-list-template', template: "<div class=\"sfx\">\n <!---->\n <section class=\"col-xs-12 col-sm-12 col-md-12 col-lg-12\">\n <div class=\"sfx-page-title\">\n <div class=\"row\">\n <div class=\"col-xs-12 col-sm-12 colmd-9 col-lg-9 sfx-pl-0\">\n <ng-content select=\"[sfx-header]\"></ng-content>\n </div>\n <span class=\"pull-right sfx-create-new\">\n <ng-content select=\"[sfx-page-action]\"></ng-content>\n </span>\n </div>\n </div>\n </section>\n <section class=\"col-xs-12 col-sm-12 col-md-12 col-lg-12\">\n <div class=\"sfx-filter-section\">\n <div class=\"row\">\n <ng-content select=\"[sfx-filter-area]\"></ng-content>\n </div>\n </div>\n </section>\n <section class=\"sfx-title-wrap\">\n <div class=\"col-xs-12 col-sm-12 col-md-12 col-lg-12 sfx-mb-30 sfx-p-0\">\n <div class=\"col-xs-12 col-sm-12 col-md-5 col-lg-5 sfx-pl-0 sfx-mt-10\">\n <!-- <h4 class=\"margin-left-minus-15\">22 Event Venues</h4> -->\n <ng-content select=\"[sfx-title]\"></ng-content>\n </div>\n <span class=\"pull-right sfx-create-new\">\n <ng-content select=\"[sfx-grid-action]\"></ng-content>\n </span>\n </div>\n </section>\n <section class=\"sfx-grid-wrap\">\n <ng-content select=\"[sfx-grid]\"></ng-content>\n </section>\n</div>\n", styles: [".sfx-page-title{margin-top:3.125rem;margin-bottom:1.875rem}.sfx-title-wrap{display:inline-block;width:100%;border-bottom:5px solid #000}\n"] }]
|
|
1782
|
-
}], ctorParameters: function () { return []; } });
|
|
1783
|
-
|
|
1784
|
-
class PlaceholderComponent {
|
|
1742
|
+
class TaskIconComponent {
|
|
1785
1743
|
constructor() { }
|
|
1786
1744
|
}
|
|
1787
|
-
|
|
1788
|
-
|
|
1789
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type:
|
|
1745
|
+
TaskIconComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TaskIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1746
|
+
TaskIconComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: TaskIconComponent, selector: "symphony-task-icon", inputs: { isComplete: "isComplete" }, ngImport: i0, template: "<div\n class=\"task-circle\"\n [ngClass]=\"{\n 'task-incomplete': !isComplete,\n 'task-complete': isComplete\n }\"\n>\n <i\n class=\"fa-solid\"\n [ngClass]=\"{\n 'si-task-completed': !isComplete,\n 'si-task-open': isComplete\n }\"\n ></i>\n</div>\n", styles: [".task-circle{border-radius:50%;height:50px;width:50px}.task-circle .fa-solid{color:#fff;font-size:20px;position:relative;top:15px;left:15px}.task-complete{background-color:#00d56b}.task-incomplete{background-color:#d9d9d9}\n"], directives: [{ type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
|
|
1747
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TaskIconComponent, decorators: [{
|
|
1790
1748
|
type: Component,
|
|
1791
|
-
args: [{ selector: 'symphony-
|
|
1792
|
-
}], ctorParameters: function () { return []; }, propDecorators: {
|
|
1793
|
-
type: Input
|
|
1794
|
-
}], label: [{
|
|
1795
|
-
type: Input
|
|
1796
|
-
}], tooltip: [{
|
|
1797
|
-
type: Input
|
|
1798
|
-
}], tooltipPlacement: [{
|
|
1799
|
-
type: Input
|
|
1800
|
-
}], height: [{
|
|
1801
|
-
type: Input
|
|
1802
|
-
}], width: [{
|
|
1749
|
+
args: [{ selector: 'symphony-task-icon', template: "<div\n class=\"task-circle\"\n [ngClass]=\"{\n 'task-incomplete': !isComplete,\n 'task-complete': isComplete\n }\"\n>\n <i\n class=\"fa-solid\"\n [ngClass]=\"{\n 'si-task-completed': !isComplete,\n 'si-task-open': isComplete\n }\"\n ></i>\n</div>\n", styles: [".task-circle{border-radius:50%;height:50px;width:50px}.task-circle .fa-solid{color:#fff;font-size:20px;position:relative;top:15px;left:15px}.task-complete{background-color:#00d56b}.task-incomplete{background-color:#d9d9d9}\n"] }]
|
|
1750
|
+
}], ctorParameters: function () { return []; }, propDecorators: { isComplete: [{
|
|
1803
1751
|
type: Input
|
|
1804
1752
|
}] } });
|
|
1805
1753
|
|
|
1806
|
-
class
|
|
1754
|
+
class TaskComponent {
|
|
1807
1755
|
constructor() {
|
|
1808
|
-
this.
|
|
1809
|
-
|
|
1810
|
-
|
|
1811
|
-
|
|
1812
|
-
|
|
1813
|
-
label: 'Main Menu',
|
|
1814
|
-
link: '/tools',
|
|
1815
|
-
},
|
|
1816
|
-
{
|
|
1817
|
-
label: 'Sub Menu One',
|
|
1818
|
-
},
|
|
1819
|
-
];
|
|
1820
|
-
}
|
|
1821
|
-
keywordSearch(keyword) {
|
|
1822
|
-
this.keywordSearchChange.emit(keyword);
|
|
1823
|
-
console.log(keyword);
|
|
1824
|
-
}
|
|
1825
|
-
gridActionsSelect(selection) {
|
|
1826
|
-
this.gridActionsSelectedOption.emit(selection);
|
|
1827
|
-
console.log(selection);
|
|
1828
|
-
}
|
|
1829
|
-
onAddButtonClick() {
|
|
1830
|
-
this.addButtonClicked.emit();
|
|
1756
|
+
this.taskModel = {
|
|
1757
|
+
assignee: '',
|
|
1758
|
+
title: '',
|
|
1759
|
+
dueDate: '',
|
|
1760
|
+
};
|
|
1831
1761
|
}
|
|
1832
1762
|
}
|
|
1833
|
-
|
|
1834
|
-
|
|
1835
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type:
|
|
1763
|
+
TaskComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TaskComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1764
|
+
TaskComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: TaskComponent, selector: "symphony-task", inputs: { taskModel: "taskModel" }, ngImport: i0, template: "<div class=\"sfx-task\">\n <symphony-task-icon\n class=\"task-icon\"\n [isComplete]=\"taskModel.isComplete\"\n ></symphony-task-icon>\n <div class=\"task-content\">\n <symphony-h3 [text]=\"taskModel.title\"></symphony-h3>\n <div class=\"time-and-assigned\">\n <symphony-paragraph [text]=\"taskModel.dueDate\"></symphony-paragraph>\n <symphony-paragraph [text]=\"taskModel.assignee\"></symphony-paragraph>\n </div>\n </div>\n <symphony-contextual-menu\n class=\"task-more-option\"\n *ngIf=\"taskModel.moreActions && taskModel.moreActions.items.length > 0\"\n [model]=\"taskModel.moreActions\"\n >\n </symphony-contextual-menu>\n</div>\n", styles: ["*{font-family:neuzeit-grotesk,sans-serif!important}.sfx-task{display:flex;align-items:center;padding:30px 0;border-bottom:1px solid #d9d9d9}.sfx-task symphony-task{font-size:14px;letter-spacing:-1px}.sfx-task symphony-task-icon{margin-right:20px}.sfx-task .task-content{width:80%;height:50px}.sfx-task symphony-contextual-menu{margin-left:auto}.sfx-task symphony-paragraph{display:inline-block;margin-right:20px}.sfx-task .time-and-assigned{margin-bottom:-10px}\n"], components: [{ type: TaskIconComponent, selector: "symphony-task-icon", inputs: ["isComplete"] }, { type: H3Component, selector: "symphony-h3", inputs: ["text", "isSecondary"] }, { type: ParagraphComponent, selector: "symphony-paragraph", inputs: ["text", "isSecondary"] }, { type: ContextualMenuComponent, selector: "symphony-contextual-menu", inputs: ["model"], outputs: ["itemClick"] }], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
1765
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TaskComponent, decorators: [{
|
|
1836
1766
|
type: Component,
|
|
1837
|
-
args: [{ selector: 'symphony-
|
|
1838
|
-
}], ctorParameters: function () { return []; }, propDecorators: {
|
|
1767
|
+
args: [{ selector: 'symphony-task', template: "<div class=\"sfx-task\">\n <symphony-task-icon\n class=\"task-icon\"\n [isComplete]=\"taskModel.isComplete\"\n ></symphony-task-icon>\n <div class=\"task-content\">\n <symphony-h3 [text]=\"taskModel.title\"></symphony-h3>\n <div class=\"time-and-assigned\">\n <symphony-paragraph [text]=\"taskModel.dueDate\"></symphony-paragraph>\n <symphony-paragraph [text]=\"taskModel.assignee\"></symphony-paragraph>\n </div>\n </div>\n <symphony-contextual-menu\n class=\"task-more-option\"\n *ngIf=\"taskModel.moreActions && taskModel.moreActions.items.length > 0\"\n [model]=\"taskModel.moreActions\"\n >\n </symphony-contextual-menu>\n</div>\n", styles: ["*{font-family:neuzeit-grotesk,sans-serif!important}.sfx-task{display:flex;align-items:center;padding:30px 0;border-bottom:1px solid #d9d9d9}.sfx-task symphony-task{font-size:14px;letter-spacing:-1px}.sfx-task symphony-task-icon{margin-right:20px}.sfx-task .task-content{width:80%;height:50px}.sfx-task symphony-contextual-menu{margin-left:auto}.sfx-task symphony-paragraph{display:inline-block;margin-right:20px}.sfx-task .time-and-assigned{margin-bottom:-10px}\n"] }]
|
|
1768
|
+
}], ctorParameters: function () { return []; }, propDecorators: { taskModel: [{
|
|
1839
1769
|
type: Input
|
|
1840
|
-
}], keywordSearchChange: [{
|
|
1841
|
-
type: Output
|
|
1842
|
-
}], gridActionsSelectedOption: [{
|
|
1843
|
-
type: Output
|
|
1844
|
-
}], addButtonClicked: [{
|
|
1845
|
-
type: Output
|
|
1846
1770
|
}] } });
|
|
1847
1771
|
|
|
1848
|
-
class
|
|
1772
|
+
class TaskListComponent {
|
|
1773
|
+
constructor() { }
|
|
1849
1774
|
}
|
|
1850
|
-
|
|
1851
|
-
|
|
1852
|
-
|
|
1853
|
-
|
|
1854
|
-
|
|
1855
|
-
|
|
1856
|
-
|
|
1857
|
-
|
|
1858
|
-
exports: [AdminListTemplateComponent],
|
|
1859
|
-
}]
|
|
1860
|
-
}] });
|
|
1775
|
+
TaskListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TaskListComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1776
|
+
TaskListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: TaskListComponent, selector: "symphony-task-list", inputs: { taskList: "taskList" }, ngImport: i0, template: "<ul class=\"task-list list-unstyled\">\n <li class=\"task-list-item\" *ngFor=\"let task of taskList\">\n <symphony-task [taskModel]=\"task\"></symphony-task>\n </li>\n</ul>\n", styles: [".task-list{border-top:1px solid #d9d9d9}\n"], components: [{ type: TaskComponent, selector: "symphony-task", inputs: ["taskModel"] }], directives: [{ type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }] });
|
|
1777
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TaskListComponent, decorators: [{
|
|
1778
|
+
type: Component,
|
|
1779
|
+
args: [{ selector: 'symphony-task-list', template: "<ul class=\"task-list list-unstyled\">\n <li class=\"task-list-item\" *ngFor=\"let task of taskList\">\n <symphony-task [taskModel]=\"task\"></symphony-task>\n </li>\n</ul>\n", styles: [".task-list{border-top:1px solid #d9d9d9}\n"] }]
|
|
1780
|
+
}], ctorParameters: function () { return []; }, propDecorators: { taskList: [{
|
|
1781
|
+
type: Input
|
|
1782
|
+
}] } });
|
|
1861
1783
|
|
|
1862
|
-
class
|
|
1784
|
+
class TaskIconModule {
|
|
1863
1785
|
}
|
|
1864
|
-
|
|
1865
|
-
|
|
1866
|
-
|
|
1867
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type:
|
|
1786
|
+
TaskIconModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TaskIconModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1787
|
+
TaskIconModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TaskIconModule, declarations: [TaskIconComponent], imports: [CommonModule], exports: [TaskIconComponent] });
|
|
1788
|
+
TaskIconModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TaskIconModule, imports: [[CommonModule]] });
|
|
1789
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TaskIconModule, decorators: [{
|
|
1868
1790
|
type: NgModule,
|
|
1869
1791
|
args: [{
|
|
1870
|
-
declarations: [
|
|
1871
|
-
imports: [CommonModule
|
|
1872
|
-
exports: [
|
|
1792
|
+
declarations: [TaskIconComponent],
|
|
1793
|
+
imports: [CommonModule],
|
|
1794
|
+
exports: [TaskIconComponent],
|
|
1873
1795
|
}]
|
|
1874
1796
|
}] });
|
|
1875
1797
|
|
|
1876
|
-
class
|
|
1798
|
+
class TaskModule {
|
|
1877
1799
|
}
|
|
1878
|
-
|
|
1879
|
-
|
|
1880
|
-
|
|
1881
|
-
H3Module,
|
|
1882
|
-
H4Module,
|
|
1883
|
-
PlaceholderModule,
|
|
1884
|
-
BreadcrumbModule,
|
|
1885
|
-
TwoColumnFilterAreaModule,
|
|
1886
|
-
IconModule,
|
|
1887
|
-
InputTextModule,
|
|
1800
|
+
TaskModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TaskModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1801
|
+
TaskModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TaskModule, declarations: [TaskComponent], imports: [CommonModule,
|
|
1802
|
+
TaskIconModule,
|
|
1888
1803
|
ContextualMenuModule,
|
|
1889
|
-
|
|
1890
|
-
|
|
1891
|
-
|
|
1892
|
-
EventsSettingsPageModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: EventsSettingsPageModule, imports: [[
|
|
1804
|
+
H3Module,
|
|
1805
|
+
ParagraphModule], exports: [TaskComponent] });
|
|
1806
|
+
TaskModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TaskModule, imports: [[
|
|
1893
1807
|
CommonModule,
|
|
1894
|
-
|
|
1895
|
-
H3Module,
|
|
1896
|
-
H4Module,
|
|
1897
|
-
PlaceholderModule,
|
|
1898
|
-
BreadcrumbModule,
|
|
1899
|
-
TwoColumnFilterAreaModule,
|
|
1900
|
-
IconModule,
|
|
1901
|
-
InputTextModule,
|
|
1808
|
+
TaskIconModule,
|
|
1902
1809
|
ContextualMenuModule,
|
|
1903
|
-
|
|
1904
|
-
|
|
1905
|
-
IconWrapperModule,
|
|
1810
|
+
H3Module,
|
|
1811
|
+
ParagraphModule
|
|
1906
1812
|
]] });
|
|
1907
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type:
|
|
1813
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TaskModule, decorators: [{
|
|
1908
1814
|
type: NgModule,
|
|
1909
1815
|
args: [{
|
|
1910
|
-
declarations: [
|
|
1816
|
+
declarations: [TaskComponent],
|
|
1911
1817
|
imports: [
|
|
1912
1818
|
CommonModule,
|
|
1913
|
-
|
|
1914
|
-
H3Module,
|
|
1915
|
-
H4Module,
|
|
1916
|
-
PlaceholderModule,
|
|
1917
|
-
BreadcrumbModule,
|
|
1918
|
-
TwoColumnFilterAreaModule,
|
|
1919
|
-
IconModule,
|
|
1920
|
-
InputTextModule,
|
|
1819
|
+
TaskIconModule,
|
|
1921
1820
|
ContextualMenuModule,
|
|
1922
|
-
|
|
1923
|
-
|
|
1924
|
-
IconWrapperModule,
|
|
1821
|
+
H3Module,
|
|
1822
|
+
ParagraphModule
|
|
1925
1823
|
],
|
|
1926
|
-
exports: [
|
|
1824
|
+
exports: [TaskComponent],
|
|
1825
|
+
}]
|
|
1826
|
+
}] });
|
|
1827
|
+
|
|
1828
|
+
class TaskListModule {
|
|
1829
|
+
}
|
|
1830
|
+
TaskListModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TaskListModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1831
|
+
TaskListModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TaskListModule, declarations: [TaskListComponent], imports: [CommonModule, TaskModule], exports: [TaskListComponent] });
|
|
1832
|
+
TaskListModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TaskListModule, imports: [[CommonModule, TaskModule]] });
|
|
1833
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TaskListModule, decorators: [{
|
|
1834
|
+
type: NgModule,
|
|
1835
|
+
args: [{
|
|
1836
|
+
declarations: [TaskListComponent],
|
|
1837
|
+
imports: [CommonModule, TaskModule],
|
|
1838
|
+
exports: [TaskListComponent],
|
|
1927
1839
|
}]
|
|
1928
1840
|
}] });
|
|
1929
1841
|
|
|
1930
|
-
class
|
|
1931
|
-
constructor() {
|
|
1842
|
+
class TypographyComponent {
|
|
1843
|
+
constructor() {
|
|
1844
|
+
this.typographyModel = {
|
|
1845
|
+
h1Text: '',
|
|
1846
|
+
h2Text: '',
|
|
1847
|
+
h3Text: '',
|
|
1848
|
+
h4Text: '',
|
|
1849
|
+
paragraphText: '',
|
|
1850
|
+
h5Text: '',
|
|
1851
|
+
};
|
|
1852
|
+
}
|
|
1932
1853
|
}
|
|
1933
|
-
|
|
1934
|
-
|
|
1935
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type:
|
|
1854
|
+
TypographyComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TypographyComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1855
|
+
TypographyComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: TypographyComponent, selector: "symphony-typography", inputs: { title: "title", typographyModel: "typographyModel" }, ngImport: i0, template: "<div class=\"sfx-typography\">\n <ul class=\"typography-list list-unstyled\">\n <li class=\"typography-list-item\">\n <symphony-h1\n [text]=\"typographyModel.h1Text\"\n [isSecondary]=\"typographyModel.isSecondary\"\n ></symphony-h1>\n </li>\n <li class=\"typography-list-item\">\n <symphony-h2\n [text]=\"typographyModel.h2Text\"\n [isSecondary]=\"typographyModel.isSecondary\"\n ></symphony-h2>\n </li>\n <li class=\"typography-list-item\">\n <symphony-h3\n [text]=\"typographyModel.h3Text\"\n [isSecondary]=\"typographyModel.isSecondary\"\n ></symphony-h3>\n </li>\n <li class=\"typography-list-item\">\n <symphony-h4\n [text]=\"typographyModel.h4Text\"\n [isSecondary]=\"typographyModel.isSecondary\"\n ></symphony-h4>\n </li>\n <li class=\"typography-list-item\">\n <symphony-h5\n [text]=\"typographyModel.h5Text\"\n [isSecondary]=\"typographyModel.isSecondary\"\n ></symphony-h5>\n </li>\n <li class=\"typography-list-item\">\n <symphony-paragraph\n [text]=\"typographyModel.paragraphText\"\n [isSecondary]=\"typographyModel.isSecondary\"\n ></symphony-paragraph>\n </li>\n </ul>\n</div>\n", styles: [".typography-list-item{padding:10px 0;border-bottom:1px solid #bababa}\n"], components: [{ type: H1Component, selector: "symphony-h1", inputs: ["text", "isSecondary"] }, { type: H2Component, selector: "symphony-h2", inputs: ["text", "isSecondary"] }, { type: H3Component, selector: "symphony-h3", inputs: ["text", "isSecondary"] }, { type: H4Component, selector: "symphony-h4", inputs: ["text", "isSecondary"] }, { type: H5Component, selector: "symphony-h5", inputs: ["text", "isSecondary"] }, { type: ParagraphComponent, selector: "symphony-paragraph", inputs: ["text", "isSecondary"] }] });
|
|
1856
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TypographyComponent, decorators: [{
|
|
1936
1857
|
type: Component,
|
|
1937
|
-
args: [{ selector: 'symphony-
|
|
1938
|
-
}], ctorParameters: function () { return []; }, propDecorators: {
|
|
1858
|
+
args: [{ selector: 'symphony-typography', template: "<div class=\"sfx-typography\">\n <ul class=\"typography-list list-unstyled\">\n <li class=\"typography-list-item\">\n <symphony-h1\n [text]=\"typographyModel.h1Text\"\n [isSecondary]=\"typographyModel.isSecondary\"\n ></symphony-h1>\n </li>\n <li class=\"typography-list-item\">\n <symphony-h2\n [text]=\"typographyModel.h2Text\"\n [isSecondary]=\"typographyModel.isSecondary\"\n ></symphony-h2>\n </li>\n <li class=\"typography-list-item\">\n <symphony-h3\n [text]=\"typographyModel.h3Text\"\n [isSecondary]=\"typographyModel.isSecondary\"\n ></symphony-h3>\n </li>\n <li class=\"typography-list-item\">\n <symphony-h4\n [text]=\"typographyModel.h4Text\"\n [isSecondary]=\"typographyModel.isSecondary\"\n ></symphony-h4>\n </li>\n <li class=\"typography-list-item\">\n <symphony-h5\n [text]=\"typographyModel.h5Text\"\n [isSecondary]=\"typographyModel.isSecondary\"\n ></symphony-h5>\n </li>\n <li class=\"typography-list-item\">\n <symphony-paragraph\n [text]=\"typographyModel.paragraphText\"\n [isSecondary]=\"typographyModel.isSecondary\"\n ></symphony-paragraph>\n </li>\n </ul>\n</div>\n", styles: [".typography-list-item{padding:10px 0;border-bottom:1px solid #bababa}\n"] }]
|
|
1859
|
+
}], ctorParameters: function () { return []; }, propDecorators: { title: [{
|
|
1860
|
+
type: Input
|
|
1861
|
+
}], typographyModel: [{
|
|
1939
1862
|
type: Input
|
|
1940
1863
|
}] } });
|
|
1941
1864
|
|
|
1942
|
-
class
|
|
1865
|
+
class TypographyModule {
|
|
1943
1866
|
}
|
|
1944
|
-
|
|
1945
|
-
|
|
1946
|
-
|
|
1947
|
-
|
|
1867
|
+
TypographyModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TypographyModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1868
|
+
TypographyModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TypographyModule, declarations: [TypographyComponent], imports: [CommonModule,
|
|
1869
|
+
H2Module,
|
|
1870
|
+
H3Module,
|
|
1871
|
+
H4Module,
|
|
1872
|
+
H1Module,
|
|
1873
|
+
ParagraphModule,
|
|
1874
|
+
H5Module], exports: [TypographyComponent] });
|
|
1875
|
+
TypographyModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TypographyModule, imports: [[
|
|
1876
|
+
CommonModule,
|
|
1877
|
+
H2Module,
|
|
1878
|
+
H3Module,
|
|
1879
|
+
H4Module,
|
|
1880
|
+
H1Module,
|
|
1881
|
+
ParagraphModule,
|
|
1882
|
+
H5Module,
|
|
1883
|
+
]] });
|
|
1884
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TypographyModule, decorators: [{
|
|
1948
1885
|
type: NgModule,
|
|
1949
1886
|
args: [{
|
|
1950
|
-
declarations: [
|
|
1951
|
-
imports: [
|
|
1952
|
-
|
|
1887
|
+
declarations: [TypographyComponent],
|
|
1888
|
+
imports: [
|
|
1889
|
+
CommonModule,
|
|
1890
|
+
H2Module,
|
|
1891
|
+
H3Module,
|
|
1892
|
+
H4Module,
|
|
1893
|
+
H1Module,
|
|
1894
|
+
ParagraphModule,
|
|
1895
|
+
H5Module,
|
|
1896
|
+
],
|
|
1897
|
+
exports: [TypographyComponent],
|
|
1953
1898
|
}]
|
|
1954
1899
|
}] });
|
|
1955
1900
|
|
|
@@ -2511,6 +2456,288 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
|
|
|
2511
2456
|
}]
|
|
2512
2457
|
}] });
|
|
2513
2458
|
|
|
2459
|
+
class OrganismsModule {
|
|
2460
|
+
}
|
|
2461
|
+
OrganismsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: OrganismsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
2462
|
+
OrganismsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: OrganismsModule, imports: [CommonModule,
|
|
2463
|
+
NoteListModule,
|
|
2464
|
+
TaskListModule,
|
|
2465
|
+
TypographyModule,
|
|
2466
|
+
IconExplorerModule,
|
|
2467
|
+
CardListModule] });
|
|
2468
|
+
OrganismsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: OrganismsModule, imports: [[
|
|
2469
|
+
CommonModule,
|
|
2470
|
+
NoteListModule,
|
|
2471
|
+
TaskListModule,
|
|
2472
|
+
TypographyModule,
|
|
2473
|
+
IconExplorerModule,
|
|
2474
|
+
CardListModule,
|
|
2475
|
+
]] });
|
|
2476
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: OrganismsModule, decorators: [{
|
|
2477
|
+
type: NgModule,
|
|
2478
|
+
args: [{
|
|
2479
|
+
declarations: [],
|
|
2480
|
+
imports: [
|
|
2481
|
+
CommonModule,
|
|
2482
|
+
NoteListModule,
|
|
2483
|
+
TaskListModule,
|
|
2484
|
+
TypographyModule,
|
|
2485
|
+
IconExplorerModule,
|
|
2486
|
+
CardListModule,
|
|
2487
|
+
],
|
|
2488
|
+
}]
|
|
2489
|
+
}] });
|
|
2490
|
+
|
|
2491
|
+
class AdminListTemplateComponent {
|
|
2492
|
+
constructor() { }
|
|
2493
|
+
}
|
|
2494
|
+
AdminListTemplateComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AdminListTemplateComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
2495
|
+
AdminListTemplateComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: AdminListTemplateComponent, selector: "symphony-admin-list-template", ngImport: i0, template: "<div class=\"sfx\">\n <!---->\n <section class=\"col-xs-12 col-sm-12 col-md-12 col-lg-12\">\n <div class=\"sfx-page-title\">\n <div class=\"row\">\n <div class=\"col-xs-12 col-sm-12 colmd-9 col-lg-9 sfx-pl-0\">\n <ng-content select=\"[sfx-header]\"></ng-content>\n </div>\n <span class=\"pull-right sfx-create-new\">\n <ng-content select=\"[sfx-page-action]\"></ng-content>\n </span>\n </div>\n </div>\n </section>\n <section class=\"col-xs-12 col-sm-12 col-md-12 col-lg-12\">\n <div class=\"sfx-filter-section\">\n <div class=\"row\">\n <ng-content select=\"[sfx-filter-area]\"></ng-content>\n </div>\n </div>\n </section>\n <section class=\"sfx-title-wrap\">\n <div class=\"col-xs-12 col-sm-12 col-md-12 col-lg-12 sfx-mb-30 sfx-p-0\">\n <div class=\"col-xs-12 col-sm-12 col-md-5 col-lg-5 sfx-pl-0 sfx-mt-10\">\n <!-- <h4 class=\"margin-left-minus-15\">22 Event Venues</h4> -->\n <ng-content select=\"[sfx-title]\"></ng-content>\n </div>\n <span class=\"pull-right sfx-create-new\">\n <ng-content select=\"[sfx-grid-action]\"></ng-content>\n </span>\n </div>\n </section>\n <section class=\"sfx-grid-wrap\">\n <ng-content select=\"[sfx-grid]\"></ng-content>\n </section>\n</div>\n", styles: [".sfx-page-title{margin-top:3.125rem;margin-bottom:1.875rem}.sfx-title-wrap{display:inline-block;width:100%;border-bottom:5px solid #000}\n"] });
|
|
2496
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AdminListTemplateComponent, decorators: [{
|
|
2497
|
+
type: Component,
|
|
2498
|
+
args: [{ selector: 'symphony-admin-list-template', template: "<div class=\"sfx\">\n <!---->\n <section class=\"col-xs-12 col-sm-12 col-md-12 col-lg-12\">\n <div class=\"sfx-page-title\">\n <div class=\"row\">\n <div class=\"col-xs-12 col-sm-12 colmd-9 col-lg-9 sfx-pl-0\">\n <ng-content select=\"[sfx-header]\"></ng-content>\n </div>\n <span class=\"pull-right sfx-create-new\">\n <ng-content select=\"[sfx-page-action]\"></ng-content>\n </span>\n </div>\n </div>\n </section>\n <section class=\"col-xs-12 col-sm-12 col-md-12 col-lg-12\">\n <div class=\"sfx-filter-section\">\n <div class=\"row\">\n <ng-content select=\"[sfx-filter-area]\"></ng-content>\n </div>\n </div>\n </section>\n <section class=\"sfx-title-wrap\">\n <div class=\"col-xs-12 col-sm-12 col-md-12 col-lg-12 sfx-mb-30 sfx-p-0\">\n <div class=\"col-xs-12 col-sm-12 col-md-5 col-lg-5 sfx-pl-0 sfx-mt-10\">\n <!-- <h4 class=\"margin-left-minus-15\">22 Event Venues</h4> -->\n <ng-content select=\"[sfx-title]\"></ng-content>\n </div>\n <span class=\"pull-right sfx-create-new\">\n <ng-content select=\"[sfx-grid-action]\"></ng-content>\n </span>\n </div>\n </section>\n <section class=\"sfx-grid-wrap\">\n <ng-content select=\"[sfx-grid]\"></ng-content>\n </section>\n</div>\n", styles: [".sfx-page-title{margin-top:3.125rem;margin-bottom:1.875rem}.sfx-title-wrap{display:inline-block;width:100%;border-bottom:5px solid #000}\n"] }]
|
|
2499
|
+
}], ctorParameters: function () { return []; } });
|
|
2500
|
+
|
|
2501
|
+
class PlaceholderComponent {
|
|
2502
|
+
constructor() { }
|
|
2503
|
+
}
|
|
2504
|
+
PlaceholderComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: PlaceholderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
2505
|
+
PlaceholderComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: PlaceholderComponent, selector: "symphony-placeholder", inputs: { type: "type", label: "label", tooltip: "tooltip", tooltipPlacement: "tooltipPlacement", height: "height", width: "width" }, ngImport: i0, template: "<div\n *ngIf=\"type !== 'circle'\"\n class=\"placeholder-dashed\"\n [ngStyle]=\"{ height: height }\"\n>\n {{ label }}\n</div>\n\n<div\n *ngIf=\"type === 'circle'\"\n [tooltip]=\"tooltip\"\n [placement]=\"tooltipPlacement\"\n class=\"placeholder-dashed-circle\"\n [ngStyle]=\"{ height: height, width: width }\"\n>\n {{ label }}\n</div>\n", styles: [".placeholder-dashed{color:#464646;background:repeating-linear-gradient(-55deg,#d0d0d0,#d0d0d0 10px,#d9d9d9 10px,#d9d9d9 20px);border:3px dashed #464646;height:100%;display:flex;align-items:center;justify-content:center;text-align:center;font-size:18px;border-radius:10px}.placeholder-dashed-circle{color:#464646;background:repeating-linear-gradient(-55deg,#d0d0d0,#d0d0d0 10px,#d9d9d9 10px,#d9d9d9 20px);border:3px dashed #464646;height:100%;display:flex;align-items:center;justify-content:center;text-align:center;font-size:18px;border-radius:50%}.wrapper div{height:100%}\n"], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { type: i2.TooltipDirective, selector: "[tooltip], [tooltipHtml]", inputs: ["containerClass", "tooltipAnimation", "tooltipFadeDuration", "isOpen", "tooltipHtml", "tooltip", "tooltipPlacement", "placement", "tooltipIsOpen", "tooltipEnable", "isDisabled", "tooltipAppendToBody", "container", "tooltipClass", "tooltipContext", "tooltipPopupDelay", "delay", "tooltipTrigger", "triggers", "adaptivePosition"], outputs: ["tooltipChange", "tooltipStateChanged", "onShown", "onHidden"], exportAs: ["bs-tooltip"] }] });
|
|
2506
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: PlaceholderComponent, decorators: [{
|
|
2507
|
+
type: Component,
|
|
2508
|
+
args: [{ selector: 'symphony-placeholder', template: "<div\n *ngIf=\"type !== 'circle'\"\n class=\"placeholder-dashed\"\n [ngStyle]=\"{ height: height }\"\n>\n {{ label }}\n</div>\n\n<div\n *ngIf=\"type === 'circle'\"\n [tooltip]=\"tooltip\"\n [placement]=\"tooltipPlacement\"\n class=\"placeholder-dashed-circle\"\n [ngStyle]=\"{ height: height, width: width }\"\n>\n {{ label }}\n</div>\n", styles: [".placeholder-dashed{color:#464646;background:repeating-linear-gradient(-55deg,#d0d0d0,#d0d0d0 10px,#d9d9d9 10px,#d9d9d9 20px);border:3px dashed #464646;height:100%;display:flex;align-items:center;justify-content:center;text-align:center;font-size:18px;border-radius:10px}.placeholder-dashed-circle{color:#464646;background:repeating-linear-gradient(-55deg,#d0d0d0,#d0d0d0 10px,#d9d9d9 10px,#d9d9d9 20px);border:3px dashed #464646;height:100%;display:flex;align-items:center;justify-content:center;text-align:center;font-size:18px;border-radius:50%}.wrapper div{height:100%}\n"] }]
|
|
2509
|
+
}], ctorParameters: function () { return []; }, propDecorators: { type: [{
|
|
2510
|
+
type: Input
|
|
2511
|
+
}], label: [{
|
|
2512
|
+
type: Input
|
|
2513
|
+
}], tooltip: [{
|
|
2514
|
+
type: Input
|
|
2515
|
+
}], tooltipPlacement: [{
|
|
2516
|
+
type: Input
|
|
2517
|
+
}], height: [{
|
|
2518
|
+
type: Input
|
|
2519
|
+
}], width: [{
|
|
2520
|
+
type: Input
|
|
2521
|
+
}] } });
|
|
2522
|
+
|
|
2523
|
+
class EventsSettingsPageComponent {
|
|
2524
|
+
constructor() {
|
|
2525
|
+
this.keywordSearchChange = new EventEmitter();
|
|
2526
|
+
this.gridActionsSelectedOption = new EventEmitter();
|
|
2527
|
+
this.addButtonClicked = new EventEmitter();
|
|
2528
|
+
this.eventsSettingsBreadcrumbs = [
|
|
2529
|
+
{
|
|
2530
|
+
label: 'Main Menu',
|
|
2531
|
+
link: '/tools',
|
|
2532
|
+
},
|
|
2533
|
+
{
|
|
2534
|
+
label: 'Sub Menu One',
|
|
2535
|
+
},
|
|
2536
|
+
];
|
|
2537
|
+
}
|
|
2538
|
+
keywordSearch(keyword) {
|
|
2539
|
+
this.keywordSearchChange.emit(keyword);
|
|
2540
|
+
console.log(keyword);
|
|
2541
|
+
}
|
|
2542
|
+
gridActionsSelect(selection) {
|
|
2543
|
+
this.gridActionsSelectedOption.emit(selection);
|
|
2544
|
+
console.log(selection);
|
|
2545
|
+
}
|
|
2546
|
+
onAddButtonClick() {
|
|
2547
|
+
this.addButtonClicked.emit();
|
|
2548
|
+
}
|
|
2549
|
+
}
|
|
2550
|
+
EventsSettingsPageComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: EventsSettingsPageComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
2551
|
+
EventsSettingsPageComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: EventsSettingsPageComponent, selector: "symphony-events-settings-page", inputs: { model: "model" }, outputs: { keywordSearchChange: "keywordSearchChange", gridActionsSelectedOption: "gridActionsSelectedOption", addButtonClicked: "addButtonClicked" }, ngImport: i0, template: "<symphony-admin-list-template *ngIf=\"model\">\n <symphony-breadcrumb sfx-header [breadcrumbs]=\"model.breadcrumbs\">\n </symphony-breadcrumb>\n <symphony-icon-wrapper\n sfx-page-action\n *ngIf=\"model.showAddButton\"\n (clicked)=\"onAddButtonClick()\"\n >\n <symphony-icon [icon]=\"'si-add'\"></symphony-icon>\n </symphony-icon-wrapper>\n <symphony-two-column-filter-area sfx-filter-area>\n <symphony-input-dropdown\n filter-one\n [isInverse]=\"true\"\n [inputDropdownListModel]=\"model.settingTypeDropdown\"\n *ngIf=\"!model.overrideSettingTypeFilterPlaceholder\"\n >\n </symphony-input-dropdown>\n <symphony-placeholder\n *ngIf=\"model.overrideSettingTypeFilterPlaceholder\"\n filter-one\n [label]=\"'filter-one'\"\n [height]=\"'80px'\"\n ></symphony-placeholder>\n <symphony-input-text\n filter-two\n [label]=\"'Search by Keyword'\"\n [placeholder]=\"'Enter Search Value'\"\n [icon]=\"'si-search-new'\"\n [isInverse]=\"true\"\n (textChange)=\"keywordSearch($event)\"\n >\n </symphony-input-text>\n </symphony-two-column-filter-area>\n <symphony-h4 sfx-title>{{ model.gridTitle }}</symphony-h4>\n <symphony-contextual-menu\n sfx-grid-action\n class=\"more-options\"\n *ngIf=\"model.gridActions.items && model.gridActions.items.length > 0\"\n [model]=\"model.gridActions\"\n (itemClick)=\"gridActionsSelect($event)\"\n >\n </symphony-contextual-menu>\n <symphony-grid\n sfx-grid\n [columnDefs]=\"model.grid.columnDefs\"\n [rowData]=\"model.grid.rowData\"\n *ngIf=\"!model.overrideGridPlaceholder\"\n ></symphony-grid>\n <symphony-placeholder\n *ngIf=\"model.overrideGridPlaceholder\"\n sfx-grid\n [label]=\"'sfx-grid'\"\n [height]=\"'500px'\"\n ></symphony-placeholder>\n</symphony-admin-list-template>\n", styles: [""], components: [{ type: AdminListTemplateComponent, selector: "symphony-admin-list-template" }, { type: BreadcrumbComponent, selector: "symphony-breadcrumb", inputs: ["breadcrumbs"] }, { type: IconWrapperComponent, selector: "symphony-icon-wrapper", inputs: ["isInverse"], outputs: ["clicked"] }, { type: IconComponent, selector: "symphony-icon", inputs: ["icon", "isSecondary", "size"], outputs: ["clicked"] }, { type: TwoColumnFilterAreaComponent, selector: "symphony-two-column-filter-area", inputs: ["height"] }, { type: InputDropdownComponent, selector: "symphony-input-dropdown", inputs: ["inputDropdownListModel", "disableBtn", "isInverse", "isRequired"], outputs: ["selectItem", "clearSelection"] }, { type: PlaceholderComponent, selector: "symphony-placeholder", inputs: ["type", "label", "tooltip", "tooltipPlacement", "height", "width"] }, { type: InputTextComponent, selector: "symphony-input-text", inputs: ["placeholder", "icon", "label", "isInverse"], outputs: ["textChange"] }, { type: H4Component, selector: "symphony-h4", inputs: ["text", "isSecondary"] }, { type: ContextualMenuComponent, selector: "symphony-contextual-menu", inputs: ["model"], outputs: ["itemClick"] }, { type: GridComponent, selector: "symphony-grid", inputs: ["columnDefs", "rowData"] }], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
2552
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: EventsSettingsPageComponent, decorators: [{
|
|
2553
|
+
type: Component,
|
|
2554
|
+
args: [{ selector: 'symphony-events-settings-page', template: "<symphony-admin-list-template *ngIf=\"model\">\n <symphony-breadcrumb sfx-header [breadcrumbs]=\"model.breadcrumbs\">\n </symphony-breadcrumb>\n <symphony-icon-wrapper\n sfx-page-action\n *ngIf=\"model.showAddButton\"\n (clicked)=\"onAddButtonClick()\"\n >\n <symphony-icon [icon]=\"'si-add'\"></symphony-icon>\n </symphony-icon-wrapper>\n <symphony-two-column-filter-area sfx-filter-area>\n <symphony-input-dropdown\n filter-one\n [isInverse]=\"true\"\n [inputDropdownListModel]=\"model.settingTypeDropdown\"\n *ngIf=\"!model.overrideSettingTypeFilterPlaceholder\"\n >\n </symphony-input-dropdown>\n <symphony-placeholder\n *ngIf=\"model.overrideSettingTypeFilterPlaceholder\"\n filter-one\n [label]=\"'filter-one'\"\n [height]=\"'80px'\"\n ></symphony-placeholder>\n <symphony-input-text\n filter-two\n [label]=\"'Search by Keyword'\"\n [placeholder]=\"'Enter Search Value'\"\n [icon]=\"'si-search-new'\"\n [isInverse]=\"true\"\n (textChange)=\"keywordSearch($event)\"\n >\n </symphony-input-text>\n </symphony-two-column-filter-area>\n <symphony-h4 sfx-title>{{ model.gridTitle }}</symphony-h4>\n <symphony-contextual-menu\n sfx-grid-action\n class=\"more-options\"\n *ngIf=\"model.gridActions.items && model.gridActions.items.length > 0\"\n [model]=\"model.gridActions\"\n (itemClick)=\"gridActionsSelect($event)\"\n >\n </symphony-contextual-menu>\n <symphony-grid\n sfx-grid\n [columnDefs]=\"model.grid.columnDefs\"\n [rowData]=\"model.grid.rowData\"\n *ngIf=\"!model.overrideGridPlaceholder\"\n ></symphony-grid>\n <symphony-placeholder\n *ngIf=\"model.overrideGridPlaceholder\"\n sfx-grid\n [label]=\"'sfx-grid'\"\n [height]=\"'500px'\"\n ></symphony-placeholder>\n</symphony-admin-list-template>\n", styles: [""] }]
|
|
2555
|
+
}], ctorParameters: function () { return []; }, propDecorators: { model: [{
|
|
2556
|
+
type: Input
|
|
2557
|
+
}], keywordSearchChange: [{
|
|
2558
|
+
type: Output
|
|
2559
|
+
}], gridActionsSelectedOption: [{
|
|
2560
|
+
type: Output
|
|
2561
|
+
}], addButtonClicked: [{
|
|
2562
|
+
type: Output
|
|
2563
|
+
}] } });
|
|
2564
|
+
|
|
2565
|
+
class AdminListModule {
|
|
2566
|
+
}
|
|
2567
|
+
AdminListModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AdminListModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
2568
|
+
AdminListModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AdminListModule, declarations: [AdminListTemplateComponent], imports: [CommonModule], exports: [AdminListTemplateComponent] });
|
|
2569
|
+
AdminListModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AdminListModule, imports: [[CommonModule]] });
|
|
2570
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AdminListModule, decorators: [{
|
|
2571
|
+
type: NgModule,
|
|
2572
|
+
args: [{
|
|
2573
|
+
declarations: [AdminListTemplateComponent],
|
|
2574
|
+
imports: [CommonModule],
|
|
2575
|
+
exports: [AdminListTemplateComponent],
|
|
2576
|
+
}]
|
|
2577
|
+
}] });
|
|
2578
|
+
|
|
2579
|
+
class PlaceholderModule {
|
|
2580
|
+
}
|
|
2581
|
+
PlaceholderModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: PlaceholderModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
2582
|
+
PlaceholderModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: PlaceholderModule, declarations: [PlaceholderComponent], imports: [CommonModule, i2.TooltipModule], exports: [PlaceholderComponent] });
|
|
2583
|
+
PlaceholderModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: PlaceholderModule, imports: [[CommonModule, TooltipModule.forRoot()]] });
|
|
2584
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: PlaceholderModule, decorators: [{
|
|
2585
|
+
type: NgModule,
|
|
2586
|
+
args: [{
|
|
2587
|
+
declarations: [PlaceholderComponent],
|
|
2588
|
+
imports: [CommonModule, TooltipModule.forRoot()],
|
|
2589
|
+
exports: [PlaceholderComponent],
|
|
2590
|
+
}]
|
|
2591
|
+
}] });
|
|
2592
|
+
|
|
2593
|
+
class EventsSettingsPageModule {
|
|
2594
|
+
}
|
|
2595
|
+
EventsSettingsPageModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: EventsSettingsPageModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
2596
|
+
EventsSettingsPageModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: EventsSettingsPageModule, declarations: [EventsSettingsPageComponent], imports: [CommonModule,
|
|
2597
|
+
AdminListModule,
|
|
2598
|
+
H3Module,
|
|
2599
|
+
H4Module,
|
|
2600
|
+
PlaceholderModule,
|
|
2601
|
+
BreadcrumbModule,
|
|
2602
|
+
TwoColumnFilterAreaModule,
|
|
2603
|
+
IconModule,
|
|
2604
|
+
InputTextModule,
|
|
2605
|
+
ContextualMenuModule,
|
|
2606
|
+
InputDropdownModule,
|
|
2607
|
+
GridModule,
|
|
2608
|
+
IconWrapperModule], exports: [EventsSettingsPageComponent] });
|
|
2609
|
+
EventsSettingsPageModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: EventsSettingsPageModule, imports: [[
|
|
2610
|
+
CommonModule,
|
|
2611
|
+
AdminListModule,
|
|
2612
|
+
H3Module,
|
|
2613
|
+
H4Module,
|
|
2614
|
+
PlaceholderModule,
|
|
2615
|
+
BreadcrumbModule,
|
|
2616
|
+
TwoColumnFilterAreaModule,
|
|
2617
|
+
IconModule,
|
|
2618
|
+
InputTextModule,
|
|
2619
|
+
ContextualMenuModule,
|
|
2620
|
+
InputDropdownModule,
|
|
2621
|
+
GridModule,
|
|
2622
|
+
IconWrapperModule,
|
|
2623
|
+
]] });
|
|
2624
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: EventsSettingsPageModule, decorators: [{
|
|
2625
|
+
type: NgModule,
|
|
2626
|
+
args: [{
|
|
2627
|
+
declarations: [EventsSettingsPageComponent],
|
|
2628
|
+
imports: [
|
|
2629
|
+
CommonModule,
|
|
2630
|
+
AdminListModule,
|
|
2631
|
+
H3Module,
|
|
2632
|
+
H4Module,
|
|
2633
|
+
PlaceholderModule,
|
|
2634
|
+
BreadcrumbModule,
|
|
2635
|
+
TwoColumnFilterAreaModule,
|
|
2636
|
+
IconModule,
|
|
2637
|
+
InputTextModule,
|
|
2638
|
+
ContextualMenuModule,
|
|
2639
|
+
InputDropdownModule,
|
|
2640
|
+
GridModule,
|
|
2641
|
+
IconWrapperModule,
|
|
2642
|
+
],
|
|
2643
|
+
exports: [EventsSettingsPageComponent],
|
|
2644
|
+
}]
|
|
2645
|
+
}] });
|
|
2646
|
+
|
|
2647
|
+
class SettingListTemplateComponent {
|
|
2648
|
+
constructor() { }
|
|
2649
|
+
}
|
|
2650
|
+
SettingListTemplateComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: SettingListTemplateComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
2651
|
+
SettingListTemplateComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: SettingListTemplateComponent, selector: "symphony-setting-list-template", ngImport: i0, template: "<section class=\"sfx-page-title\">\n <div class=\"row\">\n <div class=\"col-xs-12 col-sm-12 col-md-6 col-lg-6 sfx-mb-30\">\n <ng-content select=\"[page-title]\"></ng-content>\n </div>\n </div>\n</section>\n<section\n class=\"setting-list-header sfx-pt-30 sfx-pb-30 sfx-border-bottom-gray-1 sfx-mb-40\"\n>\n <div class=\"row\">\n <div class=\"col-xs-12 col-sm-12 col-md-9 col-lg-9 sfx-pt-15\">\n <ng-content select=\"[List-title]\"></ng-content>\n </div>\n <div class=\"col-xs-12 col-sm-12 col-md-3 col-lg-3\">\n <ng-content select=\"[filter-input]\"></ng-content>\n </div>\n </div>\n</section>\n<section class=\"setting-list-wrap\">\n <div class=\"row\">\n <div class=\"col-xs-12 col-sm-12 col-md-12 col-lg-12\">\n <ng-content select=\"[card-list]\"></ng-content>\n </div>\n </div>\n</section>\n", styles: [".sfx-page-title{border-bottom:5px solid #000}\n"] });
|
|
2652
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: SettingListTemplateComponent, decorators: [{
|
|
2653
|
+
type: Component,
|
|
2654
|
+
args: [{ selector: 'symphony-setting-list-template', template: "<section class=\"sfx-page-title\">\n <div class=\"row\">\n <div class=\"col-xs-12 col-sm-12 col-md-6 col-lg-6 sfx-mb-30\">\n <ng-content select=\"[page-title]\"></ng-content>\n </div>\n </div>\n</section>\n<section\n class=\"setting-list-header sfx-pt-30 sfx-pb-30 sfx-border-bottom-gray-1 sfx-mb-40\"\n>\n <div class=\"row\">\n <div class=\"col-xs-12 col-sm-12 col-md-9 col-lg-9 sfx-pt-15\">\n <ng-content select=\"[List-title]\"></ng-content>\n </div>\n <div class=\"col-xs-12 col-sm-12 col-md-3 col-lg-3\">\n <ng-content select=\"[filter-input]\"></ng-content>\n </div>\n </div>\n</section>\n<section class=\"setting-list-wrap\">\n <div class=\"row\">\n <div class=\"col-xs-12 col-sm-12 col-md-12 col-lg-12\">\n <ng-content select=\"[card-list]\"></ng-content>\n </div>\n </div>\n</section>\n", styles: [".sfx-page-title{border-bottom:5px solid #000}\n"] }]
|
|
2655
|
+
}], ctorParameters: function () { return []; } });
|
|
2656
|
+
|
|
2657
|
+
class SettingListPageComponent {
|
|
2658
|
+
constructor() {
|
|
2659
|
+
this.cardClicked = new EventEmitter();
|
|
2660
|
+
}
|
|
2661
|
+
ngOnInit() {
|
|
2662
|
+
this.filteredCardList = this.model.cardList;
|
|
2663
|
+
}
|
|
2664
|
+
keywordSearch(keyword) {
|
|
2665
|
+
this.filteredCardList = this.model.cardList.filter((card) => card.title.toLowerCase().includes(keyword));
|
|
2666
|
+
}
|
|
2667
|
+
onCardClick(card) {
|
|
2668
|
+
this.cardClicked.emit(card);
|
|
2669
|
+
}
|
|
2670
|
+
}
|
|
2671
|
+
SettingListPageComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: SettingListPageComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
2672
|
+
SettingListPageComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: SettingListPageComponent, selector: "symphony-setting-list-page", inputs: { model: "model" }, outputs: { cardClicked: "cardClicked" }, ngImport: i0, template: "<symphony-setting-list-template *ngIf=\"model\">\n <symphony-h3 page-title>{{ model.pageTitle }}</symphony-h3>\n <symphony-paragraph List-title>{{ model.listTitle }}</symphony-paragraph>\n <symphony-input-text\n filter-input\n [placeholder]=\"'Search by keyword'\"\n [icon]=\"'si-search-new'\"\n (textChange)=\"keywordSearch($event)\"\n >\n </symphony-input-text>\n <symphony-card-list\n card-list\n [cardList]=\"filteredCardList\"\n (cardClicked)=\"onCardClick($event)\"\n ></symphony-card-list>\n</symphony-setting-list-template>\n", styles: [".sfx-page-title{border-bottom:5px solid #000}\n"], components: [{ type: SettingListTemplateComponent, selector: "symphony-setting-list-template" }, { type: H3Component, selector: "symphony-h3", inputs: ["text", "isSecondary"] }, { type: ParagraphComponent, selector: "symphony-paragraph", inputs: ["text", "isSecondary"] }, { type: InputTextComponent, selector: "symphony-input-text", inputs: ["placeholder", "icon", "label", "isInverse"], outputs: ["textChange"] }, { type: CardListComponent, selector: "symphony-card-list", inputs: ["cardList"], outputs: ["cardClicked"] }], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
2673
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: SettingListPageComponent, decorators: [{
|
|
2674
|
+
type: Component,
|
|
2675
|
+
args: [{ selector: 'symphony-setting-list-page', template: "<symphony-setting-list-template *ngIf=\"model\">\n <symphony-h3 page-title>{{ model.pageTitle }}</symphony-h3>\n <symphony-paragraph List-title>{{ model.listTitle }}</symphony-paragraph>\n <symphony-input-text\n filter-input\n [placeholder]=\"'Search by keyword'\"\n [icon]=\"'si-search-new'\"\n (textChange)=\"keywordSearch($event)\"\n >\n </symphony-input-text>\n <symphony-card-list\n card-list\n [cardList]=\"filteredCardList\"\n (cardClicked)=\"onCardClick($event)\"\n ></symphony-card-list>\n</symphony-setting-list-template>\n", styles: [".sfx-page-title{border-bottom:5px solid #000}\n"] }]
|
|
2676
|
+
}], ctorParameters: function () { return []; }, propDecorators: { model: [{
|
|
2677
|
+
type: Input
|
|
2678
|
+
}], cardClicked: [{
|
|
2679
|
+
type: Output
|
|
2680
|
+
}] } });
|
|
2681
|
+
|
|
2682
|
+
class SettingListTemplateModule {
|
|
2683
|
+
}
|
|
2684
|
+
SettingListTemplateModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: SettingListTemplateModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
2685
|
+
SettingListTemplateModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: SettingListTemplateModule, declarations: [SettingListTemplateComponent], imports: [CommonModule,
|
|
2686
|
+
PlaceholderModule], exports: [SettingListTemplateComponent] });
|
|
2687
|
+
SettingListTemplateModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: SettingListTemplateModule, imports: [[
|
|
2688
|
+
CommonModule,
|
|
2689
|
+
PlaceholderModule
|
|
2690
|
+
]] });
|
|
2691
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: SettingListTemplateModule, decorators: [{
|
|
2692
|
+
type: NgModule,
|
|
2693
|
+
args: [{
|
|
2694
|
+
declarations: [
|
|
2695
|
+
SettingListTemplateComponent
|
|
2696
|
+
],
|
|
2697
|
+
imports: [
|
|
2698
|
+
CommonModule,
|
|
2699
|
+
PlaceholderModule
|
|
2700
|
+
],
|
|
2701
|
+
exports: [SettingListTemplateComponent],
|
|
2702
|
+
}]
|
|
2703
|
+
}] });
|
|
2704
|
+
|
|
2705
|
+
class SettingListPageModule {
|
|
2706
|
+
}
|
|
2707
|
+
SettingListPageModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: SettingListPageModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
2708
|
+
SettingListPageModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: SettingListPageModule, declarations: [SettingListPageComponent], imports: [CommonModule,
|
|
2709
|
+
PlaceholderModule,
|
|
2710
|
+
SettingListTemplateModule,
|
|
2711
|
+
H3Module,
|
|
2712
|
+
ParagraphModule,
|
|
2713
|
+
InputTextModule,
|
|
2714
|
+
CardListModule], exports: [SettingListPageComponent] });
|
|
2715
|
+
SettingListPageModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: SettingListPageModule, imports: [[
|
|
2716
|
+
CommonModule,
|
|
2717
|
+
PlaceholderModule,
|
|
2718
|
+
SettingListTemplateModule,
|
|
2719
|
+
H3Module,
|
|
2720
|
+
ParagraphModule,
|
|
2721
|
+
InputTextModule,
|
|
2722
|
+
CardListModule,
|
|
2723
|
+
]] });
|
|
2724
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: SettingListPageModule, decorators: [{
|
|
2725
|
+
type: NgModule,
|
|
2726
|
+
args: [{
|
|
2727
|
+
declarations: [SettingListPageComponent],
|
|
2728
|
+
imports: [
|
|
2729
|
+
CommonModule,
|
|
2730
|
+
PlaceholderModule,
|
|
2731
|
+
SettingListTemplateModule,
|
|
2732
|
+
H3Module,
|
|
2733
|
+
ParagraphModule,
|
|
2734
|
+
InputTextModule,
|
|
2735
|
+
CardListModule,
|
|
2736
|
+
],
|
|
2737
|
+
exports: [SettingListPageComponent],
|
|
2738
|
+
}]
|
|
2739
|
+
}] });
|
|
2740
|
+
|
|
2514
2741
|
/*
|
|
2515
2742
|
* ATOMS
|
|
2516
2743
|
*/
|
|
@@ -2519,5 +2746,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
|
|
|
2519
2746
|
* Generated bundle index. Do not edit.
|
|
2520
2747
|
*/
|
|
2521
2748
|
|
|
2522
|
-
export { AtomsModule, AvatarComponent, AvatarModule, BreadcrumbComponent, BreadcrumbModule, ButtonComponent, ButtonModule,
|
|
2749
|
+
export { ActivityScoreLevel, 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, IconComponent, IconModule, IconWrapperComponent, IconWrapperModule, Icons, InputCheckboxComponent, InputCheckboxModule, InputDropdownComponent, InputDropdownList, InputDropdownListItemModel, InputDropdownModule, InputRadioComponent, InputRadioModule, InputTextComponent, InputTextModule, InputToggleComponent, InputToggleModule, MoleculesModule, OrganismsModule, ParagraphComponent, ParagraphModule, PillComponent, PillModule, PillsComponent, PillsModule, RelevanceScoreComponent, RelevanceScoreModule, SettingListPageComponent, SettingListPageModule, SfxLoaderComponent, SfxLoaderModule, SfxPageLoaderComponent, SfxPageLoaderModule, SfxProgressBarComponent, SfxProgressBarModule, ToasterAlertComponent, ToasterAlertModel, ToasterAlertModule, ToasterAlertType, TwoColumnFilterAreaComponent, TwoColumnFilterAreaModule };
|
|
2523
2750
|
//# sourceMappingURL=symphony-talent-component-library-projects-component-library.mjs.map
|