@lowcodeunit/applications-flow-common 1.33.91-angular-13 → 1.33.92-lets-get-social-ish

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.
Files changed (235) hide show
  1. package/bundles/lowcodeunit-applications-flow-common.umd.js +5617 -0
  2. package/bundles/lowcodeunit-applications-flow-common.umd.js.map +1 -0
  3. package/bundles/lowcodeunit-applications-flow-common.umd.min.js +16 -0
  4. package/bundles/lowcodeunit-applications-flow-common.umd.min.js.map +1 -0
  5. package/esm2015/lcu.api.js +26 -0
  6. package/esm2015/lib/applications-flow.module.js +184 -0
  7. package/esm2015/lib/controls/processor-details-form/processor-details-form.component.js +262 -0
  8. package/esm2015/lib/controls/security-toggle/security-toggle.component.js +60 -0
  9. package/esm2015/lib/elements/analytics-card/analytics-card.component.js +21 -0
  10. package/esm2015/lib/elements/base-form/base-form.component.js +61 -0
  11. package/esm2015/lib/elements/card-carousel/card-carousel.component.js +67 -0
  12. package/esm2015/lib/elements/column-info-card/column-info-card.component.js +31 -0
  13. package/esm2015/lib/elements/dynamic-tabs/dynamic-tabs.component.js +69 -0
  14. package/esm2015/lib/elements/feed-card-sm/feed-card-sm.component.js +31 -0
  15. package/esm2015/lib/elements/form-card/form-card.component.js +22 -0
  16. package/esm2015/lib/elements/gh-control/gh-control.component.js +72 -0
  17. package/esm2015/lib/elements/main-feed-card/main-feed-card.component.js +24 -0
  18. package/esm2015/lib/elements/project-info-card/project-info-card.component.js +32 -0
  19. package/esm2015/lib/elements/projects/controls/builds/builds.component.js +31 -0
  20. package/esm2015/lib/elements/projects/controls/create-project-wizard/create-project-wizard.component.js +145 -0
  21. package/esm2015/lib/elements/projects/controls/forms/source-control/source-control.component.js +265 -0
  22. package/esm2015/lib/elements/projects/controls/git-auth/git-auth.component.js +25 -0
  23. package/esm2015/lib/elements/projects/controls/header/header.component.js +75 -0
  24. package/esm2015/lib/elements/projects/controls/hosting-details-form-group/hosting-details-form-group.component.js +102 -0
  25. package/esm2015/lib/elements/projects/controls/project-items/project-items.component.js +49 -0
  26. package/esm2015/lib/elements/projects/controls/project-tabs/project-tabs.component.js +91 -0
  27. package/esm2015/lib/elements/projects/controls/recent-activities/recent-activities.component.js +15 -0
  28. package/esm2015/lib/elements/projects/controls/tabs/apps-flow/apps-flow.component.js +592 -0
  29. package/esm2015/lib/elements/projects/controls/tabs/apps-flow/npm-package-select/npm-package-select.component.js +62 -0
  30. package/esm2015/lib/elements/projects/controls/tabs/devops/devops.component.js +202 -0
  31. package/esm2015/lib/elements/projects/controls/tabs/dfs-modifiers/dfs-modifiers.component.js +178 -0
  32. package/esm2015/lib/elements/projects/controls/tabs/domains/domains.component.js +133 -0
  33. package/esm2015/lib/elements/projects/controls/tabs/general/forms/base-form-test/base-form-test.component.js +86 -0
  34. package/esm2015/lib/elements/projects/controls/tabs/general/forms/project-details/project-details.component.js +129 -0
  35. package/esm2015/lib/elements/projects/controls/tabs/general/forms/root-directory/root-directory.component.js +113 -0
  36. package/esm2015/lib/elements/projects/controls/tabs/general/general.component.js +46 -0
  37. package/esm2015/lib/elements/projects/projects.component.js +226 -0
  38. package/esm2015/lib/elements/slotted-card/slotted-card.component.js +26 -0
  39. package/esm2015/lib/elements/three-column/three-column.component.js +32 -0
  40. package/esm2015/lib/elements/two-column-header/two-column-header.component.js +15 -0
  41. package/esm2015/lib/models/actions.model.js +3 -0
  42. package/esm2015/lib/models/base-form-config.model.js +6 -0
  43. package/esm2015/lib/models/card-form-config.model.js +6 -0
  44. package/esm2015/lib/models/card-slot.model.js +3 -0
  45. package/esm2015/lib/models/dev-settings-preset.model.js +3 -0
  46. package/esm2015/lib/models/domain.model.js +3 -0
  47. package/esm2015/lib/models/dynamic-tabs.model.js +6 -0
  48. package/esm2015/lib/models/form-actions.model.js +3 -0
  49. package/esm2015/lib/models/form.model.js +6 -0
  50. package/esm2015/lib/models/form.values.model.js +11 -0
  51. package/esm2015/lib/models/project-actions.model.js +6 -0
  52. package/esm2015/lib/models/slot-action.model.js +3 -0
  53. package/esm2015/lib/services/applications-flow-events.service.js +83 -0
  54. package/esm2015/lib/services/applications-flow.service.js +136 -0
  55. package/esm2015/lib/services/forms.service.js +131 -0
  56. package/esm2015/lib/services/npm.service.js +79 -0
  57. package/esm2015/lib/services/project.service.js +318 -0
  58. package/esm2015/lib/state/applications-flow-state.context.js +37 -0
  59. package/esm2015/lib/state/applications-flow.state.js +72 -0
  60. package/esm2015/lowcodeunit-applications-flow-common.js +32 -0
  61. package/fesm2015/lowcodeunit-applications-flow-common.js +4322 -0
  62. package/fesm2015/lowcodeunit-applications-flow-common.js.map +1 -0
  63. package/lcu.api.d.ts +2 -28
  64. package/lcu.api.d.ts.map +1 -0
  65. package/lib/applications-flow.module.d.ts +1 -39
  66. package/lib/applications-flow.module.d.ts.map +1 -0
  67. package/lib/controls/processor-details-form/processor-details-form.component.d.ts +47 -0
  68. package/lib/controls/processor-details-form/processor-details-form.component.d.ts.map +1 -0
  69. package/lib/controls/security-toggle/security-toggle.component.d.ts +16 -0
  70. package/lib/controls/security-toggle/security-toggle.component.d.ts.map +1 -0
  71. package/lib/elements/analytics-card/analytics-card.component.d.ts +1 -3
  72. package/lib/elements/analytics-card/analytics-card.component.d.ts.map +1 -0
  73. package/lib/elements/base-form/base-form.component.d.ts +1 -3
  74. package/lib/elements/base-form/base-form.component.d.ts.map +1 -0
  75. package/lib/elements/card-carousel/card-carousel.component.d.ts +14 -0
  76. package/lib/elements/card-carousel/card-carousel.component.d.ts.map +1 -0
  77. package/lib/elements/column-info-card/column-info-card.component.d.ts +1 -3
  78. package/lib/elements/column-info-card/column-info-card.component.d.ts.map +1 -0
  79. package/lib/elements/dynamic-tabs/dynamic-tabs.component.d.ts +1 -3
  80. package/lib/elements/dynamic-tabs/dynamic-tabs.component.d.ts.map +1 -0
  81. package/lib/elements/feed-card-sm/feed-card-sm.component.d.ts +1 -3
  82. package/lib/elements/feed-card-sm/feed-card-sm.component.d.ts.map +1 -0
  83. package/lib/elements/form-card/form-card.component.d.ts +1 -3
  84. package/lib/elements/form-card/form-card.component.d.ts.map +1 -0
  85. package/lib/elements/gh-control/gh-control.component.d.ts +1 -3
  86. package/lib/elements/gh-control/gh-control.component.d.ts.map +1 -0
  87. package/lib/elements/main-feed-card/main-feed-card.component.d.ts +1 -3
  88. package/lib/elements/main-feed-card/main-feed-card.component.d.ts.map +1 -0
  89. package/lib/elements/project-info-card/project-info-card.component.d.ts +1 -3
  90. package/lib/elements/project-info-card/project-info-card.component.d.ts.map +1 -0
  91. package/lib/elements/projects/controls/builds/builds.component.d.ts +1 -3
  92. package/lib/elements/projects/controls/builds/builds.component.d.ts.map +1 -0
  93. package/lib/elements/projects/controls/create-project-wizard/create-project-wizard.component.d.ts +1 -3
  94. package/lib/elements/projects/controls/create-project-wizard/create-project-wizard.component.d.ts.map +1 -0
  95. package/lib/elements/projects/controls/forms/source-control/source-control.component.d.ts +1 -3
  96. package/lib/elements/projects/controls/forms/source-control/source-control.component.d.ts.map +1 -0
  97. package/lib/elements/projects/controls/git-auth/git-auth.component.d.ts +1 -3
  98. package/lib/elements/projects/controls/git-auth/git-auth.component.d.ts.map +1 -0
  99. package/lib/elements/projects/controls/header/header.component.d.ts +1 -3
  100. package/lib/elements/projects/controls/header/header.component.d.ts.map +1 -0
  101. package/lib/elements/projects/controls/hosting-details-form-group/hosting-details-form-group.component.d.ts +1 -3
  102. package/lib/elements/projects/controls/hosting-details-form-group/hosting-details-form-group.component.d.ts.map +1 -0
  103. package/lib/elements/projects/controls/project-items/project-items.component.d.ts +1 -3
  104. package/lib/elements/projects/controls/project-items/project-items.component.d.ts.map +1 -0
  105. package/lib/elements/projects/controls/project-tabs/project-tabs.component.d.ts +1 -3
  106. package/lib/elements/projects/controls/project-tabs/project-tabs.component.d.ts.map +1 -0
  107. package/lib/elements/projects/controls/recent-activities/recent-activities.component.d.ts +1 -3
  108. package/lib/elements/projects/controls/recent-activities/recent-activities.component.d.ts.map +1 -0
  109. package/lib/elements/projects/controls/tabs/apps-flow/apps-flow.component.d.ts +1 -3
  110. package/lib/elements/projects/controls/tabs/apps-flow/apps-flow.component.d.ts.map +1 -0
  111. package/lib/elements/projects/controls/tabs/apps-flow/npm-package-select/npm-package-select.component.d.ts +1 -3
  112. package/lib/elements/projects/controls/tabs/apps-flow/npm-package-select/npm-package-select.component.d.ts.map +1 -0
  113. package/lib/elements/projects/controls/tabs/devops/devops.component.d.ts +1 -3
  114. package/lib/elements/projects/controls/tabs/devops/devops.component.d.ts.map +1 -0
  115. package/lib/elements/projects/controls/tabs/dfs-modifiers/dfs-modifiers.component.d.ts +1 -3
  116. package/lib/elements/projects/controls/tabs/dfs-modifiers/dfs-modifiers.component.d.ts.map +1 -0
  117. package/lib/elements/projects/controls/tabs/domains/domains.component.d.ts +1 -3
  118. package/lib/elements/projects/controls/tabs/domains/domains.component.d.ts.map +1 -0
  119. package/lib/elements/projects/controls/tabs/general/forms/base-form-test/base-form-test.component.d.ts +1 -3
  120. package/lib/elements/projects/controls/tabs/general/forms/base-form-test/base-form-test.component.d.ts.map +1 -0
  121. package/lib/elements/projects/controls/tabs/general/forms/project-details/project-details.component.d.ts +1 -3
  122. package/lib/elements/projects/controls/tabs/general/forms/project-details/project-details.component.d.ts.map +1 -0
  123. package/lib/elements/projects/controls/tabs/general/forms/root-directory/root-directory.component.d.ts +1 -3
  124. package/lib/elements/projects/controls/tabs/general/forms/root-directory/root-directory.component.d.ts.map +1 -0
  125. package/lib/elements/projects/controls/tabs/general/general.component.d.ts +1 -3
  126. package/lib/elements/projects/controls/tabs/general/general.component.d.ts.map +1 -0
  127. package/lib/elements/projects/projects.component.d.ts +1 -3
  128. package/lib/elements/projects/projects.component.d.ts.map +1 -0
  129. package/lib/elements/slotted-card/slotted-card.component.d.ts +1 -3
  130. package/lib/elements/slotted-card/slotted-card.component.d.ts.map +1 -0
  131. package/lib/elements/three-column/three-column.component.d.ts +1 -3
  132. package/lib/elements/three-column/three-column.component.d.ts.map +1 -0
  133. package/lib/elements/two-column-header/two-column-header.component.d.ts +1 -3
  134. package/lib/elements/two-column-header/two-column-header.component.d.ts.map +1 -0
  135. package/lib/models/actions.model.d.ts +1 -0
  136. package/lib/models/actions.model.d.ts.map +1 -0
  137. package/lib/models/base-form-config.model.d.ts +1 -0
  138. package/lib/models/base-form-config.model.d.ts.map +1 -0
  139. package/lib/models/card-form-config.model.d.ts +1 -0
  140. package/lib/models/card-form-config.model.d.ts.map +1 -0
  141. package/lib/models/card-slot.model.d.ts +1 -0
  142. package/lib/models/card-slot.model.d.ts.map +1 -0
  143. package/lib/models/dev-settings-preset.model.d.ts +1 -0
  144. package/lib/models/dev-settings-preset.model.d.ts.map +1 -0
  145. package/lib/models/domain.model.d.ts +1 -0
  146. package/lib/models/domain.model.d.ts.map +1 -0
  147. package/lib/models/dynamic-tabs.model.d.ts +1 -0
  148. package/lib/models/dynamic-tabs.model.d.ts.map +1 -0
  149. package/lib/models/form-actions.model.d.ts +1 -0
  150. package/lib/models/form-actions.model.d.ts.map +1 -0
  151. package/lib/models/form.model.d.ts +1 -0
  152. package/lib/models/form.model.d.ts.map +1 -0
  153. package/lib/models/form.values.model.d.ts +1 -0
  154. package/lib/models/form.values.model.d.ts.map +1 -0
  155. package/lib/models/project-actions.model.d.ts +1 -0
  156. package/lib/models/project-actions.model.d.ts.map +1 -0
  157. package/lib/models/slot-action.model.d.ts +1 -0
  158. package/lib/models/slot-action.model.d.ts.map +1 -0
  159. package/lib/services/applications-flow-events.service.d.ts +1 -3
  160. package/lib/services/applications-flow-events.service.d.ts.map +1 -0
  161. package/lib/services/applications-flow.service.d.ts +1 -3
  162. package/lib/services/applications-flow.service.d.ts.map +1 -0
  163. package/lib/services/forms.service.d.ts +1 -3
  164. package/lib/services/forms.service.d.ts.map +1 -0
  165. package/lib/services/npm.service.d.ts +1 -3
  166. package/lib/services/npm.service.d.ts.map +1 -0
  167. package/lib/services/project.service.d.ts +1 -3
  168. package/lib/services/project.service.d.ts.map +1 -0
  169. package/lib/state/applications-flow-state.context.d.ts +1 -3
  170. package/lib/state/applications-flow-state.context.d.ts.map +1 -0
  171. package/lib/state/applications-flow.state.d.ts +1 -0
  172. package/lib/state/applications-flow.state.d.ts.map +1 -0
  173. package/lowcodeunit-applications-flow-common.d.ts +28 -1
  174. package/lowcodeunit-applications-flow-common.d.ts.map +1 -0
  175. package/lowcodeunit-applications-flow-common.metadata.json +1 -0
  176. package/package.json +12 -20
  177. package/esm2020/lcu.api.mjs +0 -53
  178. package/esm2020/lib/applications-flow.module.mjs +0 -248
  179. package/esm2020/lib/elements/analytics-card/analytics-card.component.mjs +0 -28
  180. package/esm2020/lib/elements/base-form/base-form.component.mjs +0 -57
  181. package/esm2020/lib/elements/column-info-card/column-info-card.component.mjs +0 -50
  182. package/esm2020/lib/elements/dynamic-tabs/dynamic-tabs.component.mjs +0 -74
  183. package/esm2020/lib/elements/feed-card-sm/feed-card-sm.component.mjs +0 -40
  184. package/esm2020/lib/elements/flow-tool/flow-tool.component.mjs +0 -73
  185. package/esm2020/lib/elements/form-card/form-card.component.mjs +0 -33
  186. package/esm2020/lib/elements/gh-control/gh-control.component.mjs +0 -78
  187. package/esm2020/lib/elements/main-feed-card/main-feed-card.component.mjs +0 -34
  188. package/esm2020/lib/elements/project-info-card/project-info-card.component.mjs +0 -46
  189. package/esm2020/lib/elements/projects/controls/builds/builds.component.mjs +0 -35
  190. package/esm2020/lib/elements/projects/controls/create-project-wizard/create-project-wizard.component.mjs +0 -145
  191. package/esm2020/lib/elements/projects/controls/forms/source-control/source-control.component.mjs +0 -287
  192. package/esm2020/lib/elements/projects/controls/git-auth/git-auth.component.mjs +0 -26
  193. package/esm2020/lib/elements/projects/controls/header/header.component.mjs +0 -83
  194. package/esm2020/lib/elements/projects/controls/hosting-details-form-group/hosting-details-form-group.component.mjs +0 -118
  195. package/esm2020/lib/elements/projects/controls/project-items/project-items.component.mjs +0 -54
  196. package/esm2020/lib/elements/projects/controls/project-tabs/project-tabs.component.mjs +0 -103
  197. package/esm2020/lib/elements/projects/controls/recent-activities/recent-activities.component.mjs +0 -14
  198. package/esm2020/lib/elements/projects/controls/tabs/apps-flow/apps-flow.component.mjs +0 -563
  199. package/esm2020/lib/elements/projects/controls/tabs/apps-flow/npm-package-select/npm-package-select.component.mjs +0 -72
  200. package/esm2020/lib/elements/projects/controls/tabs/devops/devops.component.mjs +0 -242
  201. package/esm2020/lib/elements/projects/controls/tabs/dfs-modifiers/dfs-modifiers.component.mjs +0 -179
  202. package/esm2020/lib/elements/projects/controls/tabs/domains/domains.component.mjs +0 -137
  203. package/esm2020/lib/elements/projects/controls/tabs/general/forms/base-form-test/base-form-test.component.mjs +0 -90
  204. package/esm2020/lib/elements/projects/controls/tabs/general/forms/project-details/project-details.component.mjs +0 -142
  205. package/esm2020/lib/elements/projects/controls/tabs/general/forms/root-directory/root-directory.component.mjs +0 -124
  206. package/esm2020/lib/elements/projects/controls/tabs/general/general.component.mjs +0 -40
  207. package/esm2020/lib/elements/projects/projects.component.mjs +0 -218
  208. package/esm2020/lib/elements/slotted-card/slotted-card.component.mjs +0 -40
  209. package/esm2020/lib/elements/three-column/three-column.component.mjs +0 -30
  210. package/esm2020/lib/elements/two-column-header/two-column-header.component.mjs +0 -15
  211. package/esm2020/lib/models/actions.model.mjs +0 -3
  212. package/esm2020/lib/models/base-form-config.model.mjs +0 -6
  213. package/esm2020/lib/models/card-form-config.model.mjs +0 -6
  214. package/esm2020/lib/models/card-slot.model.mjs +0 -3
  215. package/esm2020/lib/models/dev-settings-preset.model.mjs +0 -3
  216. package/esm2020/lib/models/domain.model.mjs +0 -3
  217. package/esm2020/lib/models/dynamic-tabs.model.mjs +0 -6
  218. package/esm2020/lib/models/form-actions.model.mjs +0 -3
  219. package/esm2020/lib/models/form.model.mjs +0 -6
  220. package/esm2020/lib/models/form.values.model.mjs +0 -11
  221. package/esm2020/lib/models/project-actions.model.mjs +0 -6
  222. package/esm2020/lib/models/slot-action.model.mjs +0 -3
  223. package/esm2020/lib/services/applications-flow-events.service.mjs +0 -84
  224. package/esm2020/lib/services/applications-flow.service.mjs +0 -132
  225. package/esm2020/lib/services/forms.service.mjs +0 -132
  226. package/esm2020/lib/services/npm.service.mjs +0 -77
  227. package/esm2020/lib/services/project.service.mjs +0 -303
  228. package/esm2020/lib/state/applications-flow-state.context.mjs +0 -36
  229. package/esm2020/lib/state/applications-flow.state.mjs +0 -72
  230. package/esm2020/lowcodeunit-applications-flow-common.mjs +0 -5
  231. package/fesm2015/lowcodeunit-applications-flow-common.mjs +0 -4104
  232. package/fesm2015/lowcodeunit-applications-flow-common.mjs.map +0 -1
  233. package/fesm2020/lowcodeunit-applications-flow-common.mjs +0 -4048
  234. package/fesm2020/lowcodeunit-applications-flow-common.mjs.map +0 -1
  235. package/lib/elements/flow-tool/flow-tool.component.d.ts +0 -32
@@ -0,0 +1,60 @@
1
+ import { Component, Input } from '@angular/core';
2
+ import { FormBuilder, Validators } from '@angular/forms';
3
+ export class SecurityToggleComponent {
4
+ constructor(formBldr) {
5
+ this.formBldr = formBldr;
6
+ }
7
+ get IsPrivateFormControl() {
8
+ var _a;
9
+ return (_a = this.SecurityFormGroup) === null || _a === void 0 ? void 0 : _a.controls.isPrivate;
10
+ }
11
+ ngOnInit() {
12
+ this.setupSecurityFormGroup();
13
+ }
14
+ SecuritySubmit() {
15
+ console.log("submitting values");
16
+ }
17
+ setupSecurityFormGroup() {
18
+ var _a, _b, _c, _d, _e;
19
+ this.ProcessorType = ((_b = (_a = this.EditingApplication) === null || _a === void 0 ? void 0 : _a.Processor) === null || _b === void 0 ? void 0 : _b.Type) || '';
20
+ if (this.EditingApplication != null) {
21
+ this.SecurityFormGroup = this.formBldr.group({
22
+ name: [(_c = this.EditingApplication.Application) === null || _c === void 0 ? void 0 : _c.Name, Validators.required],
23
+ description: [
24
+ (_d = this.EditingApplication.Application) === null || _d === void 0 ? void 0 : _d.Description,
25
+ Validators.required,
26
+ ],
27
+ route: [
28
+ ((_e = this.EditingApplication.LookupConfig) === null || _e === void 0 ? void 0 : _e.PathRegex.replace('.*', '')) ||
29
+ '/',
30
+ Validators.required,
31
+ ],
32
+ // priority: [
33
+ // this.EditingApplication.Application?.Priority || 10000,
34
+ // Validators.required,
35
+ // ],
36
+ procType: [this.ProcessorType, [Validators.required]],
37
+ });
38
+ }
39
+ this.setupSecurityForm();
40
+ }
41
+ setupSecurityForm() {
42
+ var _a, _b;
43
+ this.SecurityFormGroup.addControl('isPrivate', this.formBldr.control(((_a = this.EditingApplication.LookupConfig) === null || _a === void 0 ? void 0 : _a.IsPrivate) || false, [Validators.required]));
44
+ this.SecurityFormGroup.addControl('isTriggerSignIn', this.formBldr.control(((_b = this.EditingApplication.LookupConfig) === null || _b === void 0 ? void 0 : _b.IsTriggerSignIn) || false, [Validators.required]));
45
+ }
46
+ }
47
+ SecurityToggleComponent.decorators = [
48
+ { type: Component, args: [{
49
+ selector: 'lcu-security-toggle',
50
+ template: "<form class=\"security-form\" [formGroup]=\"SecurityFormGroup\" (ngSubmit)=\"SecuritySubmit()\">\n <mat-card class=\"spread flow-card\">\n <mat-card-header>\n <mat-card-title> Security Settings </mat-card-title>\n\n <div fxFlex></div>\n\n <mat-slide-toggle\n formControlName=\"isPrivate\"\n matTooltip=\"Is Secure Application?\"\n >\n </mat-slide-toggle>\n\n <mat-icon\n matSuffix\n matTooltip=\"A Secured Application is one that requires the user to be authenticated to use the application. The application is hosted behind an identity wall.\"\n >\n info_outline\n </mat-icon>\n </mat-card-header>\n\n <mat-card-content>\n <div>\n <div *ngIf=\"IsPrivateFormControl.value\">\n <div>\n <mat-slide-toggle formControlName=\"isTriggerSignIn\">\n Is Trigger Sign In Application?\n </mat-slide-toggle>\n\n <mat-icon\n matSuffix\n matTooltip=\"A Trigger Sign In Application will direct the user to sign in if they are not already.\"\n >\n info_outline\n </mat-icon>\n </div>\n </div>\n </div>\n </mat-card-content>\n \n <mat-card-actions>\n <!-- [disabled]=\"!SecurityFormGroup.valid || !SecurityFormGroup.dirty\" -->\n <button mat-raised-button type=\"submit\" >Save Security Settings</button>\n </mat-card-actions>\n </mat-card>\n</form>\n",
51
+ styles: ["::ng-deep .mat-tooltip{color:#000!important}"]
52
+ },] }
53
+ ];
54
+ SecurityToggleComponent.ctorParameters = () => [
55
+ { type: FormBuilder }
56
+ ];
57
+ SecurityToggleComponent.propDecorators = {
58
+ EditingApplication: [{ type: Input, args: ['editing-application',] }]
59
+ };
60
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VjdXJpdHktdG9nZ2xlLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIvaG9tZS9ydW5uZXIvd29yay9hcHBsaWNhdGlvbnMtZmxvdy9hcHBsaWNhdGlvbnMtZmxvdy9wcm9qZWN0cy9jb21tb24vc3JjLyIsInNvdXJjZXMiOlsibGliL2NvbnRyb2xzL3NlY3VyaXR5LXRvZ2dsZS9zZWN1cml0eS10b2dnbGUuY29tcG9uZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsS0FBSyxFQUFVLE1BQU0sZUFBZSxDQUFDO0FBQ3pELE9BQU8sRUFBbUIsV0FBVyxFQUFhLFVBQVUsRUFBRSxNQUFNLGdCQUFnQixDQUFDO0FBUXJGLE1BQU0sT0FBTyx1QkFBdUI7SUFZbEMsWUFBc0IsUUFBcUI7UUFBckIsYUFBUSxHQUFSLFFBQVEsQ0FBYTtJQUFJLENBQUM7SUFQaEQsSUFBVyxvQkFBb0I7O1FBQzdCLGFBQU8sSUFBSSxDQUFDLGlCQUFpQiwwQ0FBRSxRQUFRLENBQUMsU0FBUyxDQUFDO0lBQ3BELENBQUM7SUFPTSxRQUFRO1FBQ2IsSUFBSSxDQUFDLHNCQUFzQixFQUFFLENBQUM7SUFDaEMsQ0FBQztJQUVNLGNBQWM7UUFDbkIsT0FBTyxDQUFDLEdBQUcsQ0FBQyxtQkFBbUIsQ0FBQyxDQUFBO0lBQ2xDLENBQUM7SUFFUyxzQkFBc0I7O1FBQzlCLElBQUksQ0FBQyxhQUFhLEdBQUcsYUFBQSxJQUFJLENBQUMsa0JBQWtCLDBDQUFFLFNBQVMsMENBQUUsSUFBSSxLQUFJLEVBQUUsQ0FBQztRQUNwRSxJQUFJLElBQUksQ0FBQyxrQkFBa0IsSUFBSSxJQUFJLEVBQUU7WUFDbkMsSUFBSSxDQUFDLGlCQUFpQixHQUFHLElBQUksQ0FBQyxRQUFRLENBQUMsS0FBSyxDQUFDO2dCQUMzQyxJQUFJLEVBQUUsT0FBQyxJQUFJLENBQUMsa0JBQWtCLENBQUMsV0FBVywwQ0FBRSxJQUFJLEVBQUUsVUFBVSxDQUFDLFFBQVEsQ0FBQztnQkFDdEUsV0FBVyxFQUFFOzBCQUNYLElBQUksQ0FBQyxrQkFBa0IsQ0FBQyxXQUFXLDBDQUFFLFdBQVc7b0JBQ2hELFVBQVUsQ0FBQyxRQUFRO2lCQUNwQjtnQkFDRCxLQUFLLEVBQUU7b0JBQ0wsT0FBQSxJQUFJLENBQUMsa0JBQWtCLENBQUMsWUFBWSwwQ0FBRSxTQUFTLENBQUMsT0FBTyxDQUFDLElBQUksRUFBRSxFQUFFO3dCQUM5RCxHQUFHO29CQUNMLFVBQVUsQ0FBQyxRQUFRO2lCQUNwQjtnQkFDRCxjQUFjO2dCQUNkLDREQUE0RDtnQkFDNUQseUJBQXlCO2dCQUN6QixLQUFLO2dCQUNMLFFBQVEsRUFBRSxDQUFDLElBQUksQ0FBQyxhQUFhLEVBQUUsQ0FBQyxVQUFVLENBQUMsUUFBUSxDQUFDLENBQUM7YUFDdEQsQ0FBQyxDQUFDO1NBRU47UUFDRCxJQUFJLENBQUMsaUJBQWlCLEVBQUUsQ0FBQztJQUN6QixDQUFDO0lBRVMsaUJBQWlCOztRQUN6QixJQUFJLENBQUMsaUJBQWlCLENBQUMsVUFBVSxDQUMvQixXQUFXLEVBQ1gsSUFBSSxDQUFDLFFBQVEsQ0FBQyxPQUFPLENBQ25CLE9BQUEsSUFBSSxDQUFDLGtCQUFrQixDQUFDLFlBQVksMENBQUUsU0FBUyxLQUFJLEtBQUssRUFDeEQsQ0FBQyxVQUFVLENBQUMsUUFBUSxDQUFDLENBQ3RCLENBQ0YsQ0FBQztRQUVGLElBQUksQ0FBQyxpQkFBaUIsQ0FBQyxVQUFVLENBQy9CLGlCQUFpQixFQUNqQixJQUFJLENBQUMsUUFBUSxDQUFDLE9BQU8sQ0FDbkIsT0FBQSxJQUFJLENBQUMsa0JBQWtCLENBQUMsWUFBWSwwQ0FBRSxlQUFlLEtBQUksS0FBSyxFQUM5RCxDQUFDLFVBQVUsQ0FBQyxRQUFRLENBQUMsQ0FDdEIsQ0FDRixDQUFDO0lBQ0osQ0FBQzs7O1lBcEVGLFNBQVMsU0FBQztnQkFDVCxRQUFRLEVBQUUscUJBQXFCO2dCQUMvQiwycURBQStDOzthQUVoRDs7O1lBUHlCLFdBQVc7OztpQ0FVbEMsS0FBSyxTQUFDLHFCQUFxQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgSW5wdXQsIE9uSW5pdCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQWJzdHJhY3RDb250cm9sLCBGb3JtQnVpbGRlciwgRm9ybUdyb3VwLCBWYWxpZGF0b3JzIH0gZnJvbSAnQGFuZ3VsYXIvZm9ybXMnO1xuaW1wb3J0IHsgRWFDQXBwbGljYXRpb25Bc0NvZGUgfSBmcm9tICdAc2VtYW50aWNqcy9jb21tb24nO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdsY3Utc2VjdXJpdHktdG9nZ2xlJyxcbiAgdGVtcGxhdGVVcmw6ICcuL3NlY3VyaXR5LXRvZ2dsZS5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL3NlY3VyaXR5LXRvZ2dsZS5jb21wb25lbnQuc2NzcyddXG59KVxuZXhwb3J0IGNsYXNzIFNlY3VyaXR5VG9nZ2xlQ29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0IHtcblxuICBASW5wdXQoJ2VkaXRpbmctYXBwbGljYXRpb24nKSBcbiAgcHVibGljIEVkaXRpbmdBcHBsaWNhdGlvbjogRWFDQXBwbGljYXRpb25Bc0NvZGU7XG4gIFxuICBwdWJsaWMgZ2V0IElzUHJpdmF0ZUZvcm1Db250cm9sKCk6IEFic3RyYWN0Q29udHJvbCB7XG4gICAgcmV0dXJuIHRoaXMuU2VjdXJpdHlGb3JtR3JvdXA/LmNvbnRyb2xzLmlzUHJpdmF0ZTtcbiAgfVxuICBwdWJsaWMgU2VjdXJpdHlGb3JtR3JvdXA6IEZvcm1Hcm91cDtcblxuICBwdWJsaWMgUHJvY2Vzc29yVHlwZTogc3RyaW5nO1xuXG4gIGNvbnN0cnVjdG9yKHByb3RlY3RlZCBmb3JtQmxkcjogRm9ybUJ1aWxkZXIpIHsgfVxuXG4gIHB1YmxpYyBuZ09uSW5pdCgpOiB2b2lkIHtcbiAgICB0aGlzLnNldHVwU2VjdXJpdHlGb3JtR3JvdXAoKTtcbiAgfVxuXG4gIHB1YmxpYyBTZWN1cml0eVN1Ym1pdCgpe1xuICAgIGNvbnNvbGUubG9nKFwic3VibWl0dGluZyB2YWx1ZXNcIilcbiAgfVxuXG4gIHByb3RlY3RlZCBzZXR1cFNlY3VyaXR5Rm9ybUdyb3VwKCl7XG4gICAgdGhpcy5Qcm9jZXNzb3JUeXBlID0gdGhpcy5FZGl0aW5nQXBwbGljYXRpb24/LlByb2Nlc3Nvcj8uVHlwZSB8fCAnJztcbiAgICBpZiAodGhpcy5FZGl0aW5nQXBwbGljYXRpb24gIT0gbnVsbCkge1xuICAgICAgdGhpcy5TZWN1cml0eUZvcm1Hcm91cCA9IHRoaXMuZm9ybUJsZHIuZ3JvdXAoe1xuICAgICAgICBuYW1lOiBbdGhpcy5FZGl0aW5nQXBwbGljYXRpb24uQXBwbGljYXRpb24/Lk5hbWUsIFZhbGlkYXRvcnMucmVxdWlyZWRdLFxuICAgICAgICBkZXNjcmlwdGlvbjogW1xuICAgICAgICAgIHRoaXMuRWRpdGluZ0FwcGxpY2F0aW9uLkFwcGxpY2F0aW9uPy5EZXNjcmlwdGlvbixcbiAgICAgICAgICBWYWxpZGF0b3JzLnJlcXVpcmVkLFxuICAgICAgICBdLFxuICAgICAgICByb3V0ZTogW1xuICAgICAgICAgIHRoaXMuRWRpdGluZ0FwcGxpY2F0aW9uLkxvb2t1cENvbmZpZz8uUGF0aFJlZ2V4LnJlcGxhY2UoJy4qJywgJycpIHx8XG4gICAgICAgICAgICAnLycsXG4gICAgICAgICAgVmFsaWRhdG9ycy5yZXF1aXJlZCxcbiAgICAgICAgXSxcbiAgICAgICAgLy8gcHJpb3JpdHk6IFtcbiAgICAgICAgLy8gICB0aGlzLkVkaXRpbmdBcHBsaWNhdGlvbi5BcHBsaWNhdGlvbj8uUHJpb3JpdHkgfHwgMTAwMDAsXG4gICAgICAgIC8vICAgVmFsaWRhdG9ycy5yZXF1aXJlZCxcbiAgICAgICAgLy8gXSxcbiAgICAgICAgcHJvY1R5cGU6IFt0aGlzLlByb2Nlc3NvclR5cGUsIFtWYWxpZGF0b3JzLnJlcXVpcmVkXV0sXG4gICAgICB9KTtcblxuICB9XG4gIHRoaXMuc2V0dXBTZWN1cml0eUZvcm0oKTtcbiAgfVxuXG4gIHByb3RlY3RlZCBzZXR1cFNlY3VyaXR5Rm9ybSgpOiB2b2lkIHtcbiAgICB0aGlzLlNlY3VyaXR5Rm9ybUdyb3VwLmFkZENvbnRyb2woXG4gICAgICAnaXNQcml2YXRlJyxcbiAgICAgIHRoaXMuZm9ybUJsZHIuY29udHJvbChcbiAgICAgICAgdGhpcy5FZGl0aW5nQXBwbGljYXRpb24uTG9va3VwQ29uZmlnPy5Jc1ByaXZhdGUgfHwgZmFsc2UsXG4gICAgICAgIFtWYWxpZGF0b3JzLnJlcXVpcmVkXVxuICAgICAgKVxuICAgICk7XG5cbiAgICB0aGlzLlNlY3VyaXR5Rm9ybUdyb3VwLmFkZENvbnRyb2woXG4gICAgICAnaXNUcmlnZ2VyU2lnbkluJyxcbiAgICAgIHRoaXMuZm9ybUJsZHIuY29udHJvbChcbiAgICAgICAgdGhpcy5FZGl0aW5nQXBwbGljYXRpb24uTG9va3VwQ29uZmlnPy5Jc1RyaWdnZXJTaWduSW4gfHwgZmFsc2UsXG4gICAgICAgIFtWYWxpZGF0b3JzLnJlcXVpcmVkXVxuICAgICAgKVxuICAgICk7XG4gIH1cblxufVxuIl19
@@ -0,0 +1,21 @@
1
+ import { Component, Input } from '@angular/core';
2
+ export class AnalyticsCardComponent {
3
+ constructor() {
4
+ }
5
+ ngOnInit() {
6
+ }
7
+ }
8
+ AnalyticsCardComponent.decorators = [
9
+ { type: Component, args: [{
10
+ selector: 'lcu-analytics-card',
11
+ template: "<mat-card class=\"analytics-card\">\n <mat-card-header>\n <mat-card-title *ngIf=\"Title\">{{Title}}</mat-card-title>\n <mat-card-subtitle *ngIf=\"Subtext\">{{Subtext}}</mat-card-subtitle>\n </mat-card-header>\n <mat-card-content>\n <!-- <ng-container *ngFor=\"let atics of analytics \"> -->\n \n <div class=\"analytic-container\" fxLayout=\"row\" fxLayoutAlign=\"space-between center\">\n <div fxLayout=\"column\">\n <div class=\"analytic-number\">57</div>\n <div class=\"analytic-name\">Unique Visitors</div>\n </div>\n\n <div class=\"percent-change increase\" fxLayout=\"row\" fxLayoutAlign=\"space-around center\">\n <mat-icon>arrow_drop_up</mat-icon>\n <div>{{ .16 | percent}}</div>\n </div>\n\n <!-- <div class=\"percent-change decrease\" fxLayout=\"row\" fxLayoutAlign=\"space-around center\">\n <mat-icon>arrow_drop_down</mat-icon>\n <div>16</div>\n </div> -->\n </div>\n\n <!-- </ng-container> -->\n </mat-card-content>\n <!-- <mat-card-actions>\n <button mat-button>LIKE</button>\n <button mat-button>SHARE</button>\n </mat-card-actions> -->\n </mat-card>\n",
12
+ styles: [".analytics-card{background-color:#fff;border:2px solid #d3d3d3;margin:20px;padding:10px}.increase{color:green}.decrease{color:red}"]
13
+ },] }
14
+ ];
15
+ AnalyticsCardComponent.ctorParameters = () => [];
16
+ AnalyticsCardComponent.propDecorators = {
17
+ Title: [{ type: Input, args: ['title',] }],
18
+ Subtext: [{ type: Input, args: ['subtext',] }],
19
+ Analytics: [{ type: Input, args: ['analytics',] }]
20
+ };
21
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYW5hbHl0aWNzLWNhcmQuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6Ii9ob21lL3J1bm5lci93b3JrL2FwcGxpY2F0aW9ucy1mbG93L2FwcGxpY2F0aW9ucy1mbG93L3Byb2plY3RzL2NvbW1vbi9zcmMvIiwic291cmNlcyI6WyJsaWIvZWxlbWVudHMvYW5hbHl0aWNzLWNhcmQvYW5hbHl0aWNzLWNhcmQuY29tcG9uZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsS0FBSyxFQUFVLE1BQU0sZUFBZSxDQUFDO0FBT3pELE1BQU0sT0FBTyxzQkFBc0I7SUFhakM7SUFFQyxDQUFDO0lBRUYsUUFBUTtJQUNSLENBQUM7OztZQXZCRixTQUFTLFNBQUM7Z0JBQ1QsUUFBUSxFQUFFLG9CQUFvQjtnQkFDOUIsMHhDQUE4Qzs7YUFFL0M7Ozs7b0JBR0UsS0FBSyxTQUFDLE9BQU87c0JBR2IsS0FBSyxTQUFDLFNBQVM7d0JBSWYsS0FBSyxTQUFDLFdBQVciLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIElucHV0LCBPbkluaXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnbGN1LWFuYWx5dGljcy1jYXJkJyxcbiAgdGVtcGxhdGVVcmw6ICcuL2FuYWx5dGljcy1jYXJkLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vYW5hbHl0aWNzLWNhcmQuY29tcG9uZW50LnNjc3MnXVxufSlcbmV4cG9ydCBjbGFzcyBBbmFseXRpY3NDYXJkQ29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0IHtcblxuICBASW5wdXQoJ3RpdGxlJylcbiAgcHVibGljIFRpdGxlOiBzdHJpbmc7XG5cbiAgQElucHV0KCdzdWJ0ZXh0JylcbiAgcHVibGljIFN1YnRleHQ6IHN0cmluZztcblxuICAvLyBUT0RPIHVwZGF0ZSBmcm9tIGFueSB0byBhbiBhbmFseXRpY3MgbW9kZWxcbiAgQElucHV0KCdhbmFseXRpY3MnKVxuICBwdWJsaWMgQW5hbHl0aWNzOiBhbnlbXTtcblxuXG4gIGNvbnN0cnVjdG9yKCkge1xuICAgIFxuICAgfVxuXG4gIG5nT25Jbml0KCk6IHZvaWQge1xuICB9XG5cbn1cbiJdfQ==
@@ -0,0 +1,61 @@
1
+ import { Component } from '@angular/core';
2
+ import { ApplicationsFlowEventsService } from '../../services/applications-flow-events.service';
3
+ import { FormsService } from '../../services/forms.service';
4
+ export class BaseFormComponent {
5
+ constructor(formsService, appsFlowEventsSvc) {
6
+ this.formsService = formsService;
7
+ this.appsFlowEventsSvc = appsFlowEventsSvc;
8
+ }
9
+ ngOnInit() {
10
+ this.setupForm();
11
+ }
12
+ setupForm() {
13
+ this.formsService.Form = { Id: this.FormConfig.FormName, Form: this.FormConfig.Form };
14
+ // this.onChange();
15
+ }
16
+ /**
17
+ * Listen to form value changes
18
+ */
19
+ onChange() {
20
+ }
21
+ checkFormForChanges() {
22
+ this.FormConfig.Form.valueChanges.subscribe((val) => {
23
+ if (this.formsService.ForRealThough(this.FormConfig.FormName, this.FormConfig.Form)) {
24
+ this.FormConfig.IsDirty = true;
25
+ // disable all forms except the current form being edited
26
+ this.formsService.DisableForms(this.FormConfig.FormName);
27
+ }
28
+ else {
29
+ this.FormConfig.IsDirty = false;
30
+ // enable all forms
31
+ this.formsService.DisableForms(false);
32
+ }
33
+ });
34
+ }
35
+ /**
36
+ * Update Form value reference
37
+ */
38
+ updateValueRef() {
39
+ this.formsService.UpdateValuesReference({
40
+ Id: this.FormConfig.FormName,
41
+ Form: this.FormConfig.Form
42
+ });
43
+ }
44
+ save() {
45
+ console.log('PARENT SAVE');
46
+ }
47
+ resetForm() {
48
+ }
49
+ }
50
+ BaseFormComponent.decorators = [
51
+ { type: Component, args: [{
52
+ selector: 'lcu-base-form',
53
+ template: "\n",
54
+ styles: [""]
55
+ },] }
56
+ ];
57
+ BaseFormComponent.ctorParameters = () => [
58
+ { type: FormsService },
59
+ { type: ApplicationsFlowEventsService }
60
+ ];
61
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYmFzZS1mb3JtLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIvaG9tZS9ydW5uZXIvd29yay9hcHBsaWNhdGlvbnMtZmxvdy9hcHBsaWNhdGlvbnMtZmxvdy9wcm9qZWN0cy9jb21tb24vc3JjLyIsInNvdXJjZXMiOlsibGliL2VsZW1lbnRzL2Jhc2UtZm9ybS9iYXNlLWZvcm0uY29tcG9uZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUNBLE9BQU8sRUFBRSxTQUFTLEVBQVUsTUFBTSxlQUFlLENBQUM7QUFFbEQsT0FBTyxFQUFFLDZCQUE2QixFQUFFLE1BQU0saURBQWlELENBQUM7QUFDaEcsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLDhCQUE4QixDQUFDO0FBTzVELE1BQU0sT0FBTyxpQkFBaUI7SUFtQjVCLFlBQ1ksWUFBMEIsRUFDMUIsaUJBQWdEO1FBRGhELGlCQUFZLEdBQVosWUFBWSxDQUFjO1FBQzFCLHNCQUFpQixHQUFqQixpQkFBaUIsQ0FBK0I7SUFDeEQsQ0FBQztJQUVFLFFBQVE7UUFFYixJQUFJLENBQUMsU0FBUyxFQUFFLENBQUM7SUFDbkIsQ0FBQztJQUVTLFNBQVM7UUFFakIsSUFBSSxDQUFDLFlBQVksQ0FBQyxJQUFJLEdBQUcsRUFBQyxFQUFFLEVBQUUsSUFBSSxDQUFDLFVBQVUsQ0FBQyxRQUFRLEVBQUUsSUFBSSxFQUFFLElBQUksQ0FBQyxVQUFVLENBQUMsSUFBSSxFQUFDLENBQUM7UUFFcEYsbUJBQW1CO0lBQ3JCLENBQUM7SUFFRDs7T0FFRztJQUNPLFFBQVE7SUFHbEIsQ0FBQztJQUVTLG1CQUFtQjtRQUMzQixJQUFJLENBQUMsVUFBVSxDQUFDLElBQUksQ0FBQyxZQUFZLENBQUMsU0FBUyxDQUFDLENBQUMsR0FBVyxFQUFFLEVBQUU7WUFFMUQsSUFBSSxJQUFJLENBQUMsWUFBWSxDQUFDLGFBQWEsQ0FBQyxJQUFJLENBQUMsVUFBVSxDQUFDLFFBQVEsRUFBRSxJQUFJLENBQUMsVUFBVSxDQUFDLElBQUksQ0FBQyxFQUFFO2dCQUNuRixJQUFJLENBQUMsVUFBVSxDQUFDLE9BQU8sR0FBRyxJQUFJLENBQUM7Z0JBQy9CLHlEQUF5RDtnQkFDekQsSUFBSSxDQUFDLFlBQVksQ0FBQyxZQUFZLENBQUMsSUFBSSxDQUFDLFVBQVUsQ0FBQyxRQUFRLENBQUMsQ0FBQzthQUMxRDtpQkFBTTtnQkFFTCxJQUFJLENBQUMsVUFBVSxDQUFDLE9BQU8sR0FBRyxLQUFLLENBQUM7Z0JBQ2hDLG1CQUFtQjtnQkFDbkIsSUFBSSxDQUFDLFlBQVksQ0FBQyxZQUFZLENBQUMsS0FBSyxDQUFDLENBQUM7YUFDdkM7UUFDSCxDQUFDLENBQUMsQ0FBQztJQUNMLENBQUM7SUFFRDs7T0FFRztJQUNPLGNBQWM7UUFFdEIsSUFBSSxDQUFDLFlBQVksQ0FBQyxxQkFBcUIsQ0FDckM7WUFDRSxFQUFFLEVBQUUsSUFBSSxDQUFDLFVBQVUsQ0FBQyxRQUFRO1lBQzVCLElBQUksRUFBRSxJQUFJLENBQUMsVUFBVSxDQUFDLElBQUk7U0FDM0IsQ0FBQyxDQUFDO0lBQ1AsQ0FBQztJQUVTLElBQUk7UUFDWixPQUFPLENBQUMsR0FBRyxDQUFDLGFBQWEsQ0FBQyxDQUFDO0lBQzdCLENBQUM7SUFFUyxTQUFTO0lBRW5CLENBQUM7OztZQW5GRixTQUFTLFNBQUM7Z0JBQ1QsUUFBUSxFQUFFLGVBQWU7Z0JBQ3pCLGNBQXlDOzthQUUxQzs7O1lBTlEsWUFBWTtZQURaLDZCQUE2QiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEJhc2VGb3JtQ29uZmlnTW9kZWwgfSBmcm9tICcuLy4uLy4uL21vZGVscy9iYXNlLWZvcm0tY29uZmlnLm1vZGVsJztcbmltcG9ydCB7IENvbXBvbmVudCwgT25Jbml0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBGb3JtR3JvdXAgfSBmcm9tICdAYW5ndWxhci9mb3Jtcyc7XG5pbXBvcnQgeyBBcHBsaWNhdGlvbnNGbG93RXZlbnRzU2VydmljZSB9IGZyb20gJy4uLy4uL3NlcnZpY2VzL2FwcGxpY2F0aW9ucy1mbG93LWV2ZW50cy5zZXJ2aWNlJztcbmltcG9ydCB7IEZvcm1zU2VydmljZSB9IGZyb20gJy4uLy4uL3NlcnZpY2VzL2Zvcm1zLnNlcnZpY2UnO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdsY3UtYmFzZS1mb3JtJyxcbiAgdGVtcGxhdGVVcmw6ICcuL2Jhc2UtZm9ybS5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL2Jhc2UtZm9ybS5jb21wb25lbnQuc2NzcyddXG59KVxuZXhwb3J0IGNsYXNzIEJhc2VGb3JtQ29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0IHtcblxuICAvKipcbiAgICogRm9ybUdyb3VwIGZvciBwcm9qZWN0IG5hbWUgY2FyZFxuICAgKi9cbiAgLy8gcHVibGljIEZvcm06IEZvcm1Hcm91cDtcblxuICAvKipcbiAgICogRm9ybSBuYW1lXG4gICAqL1xuICAvLyBwcm90ZWN0ZWQgZm9ybU5hbWU6IHN0cmluZztcblxuICAvKipcbiAgICogV2hlbiBmb3JtIGlzIGRpcnR5LCB0aWVzIGludG8gZm9ybXNTZXJ2aWNlLkRpc2FibGVGb3Jtc1xuICAgKi9cbiAgLy8gcHVibGljIElzRGlydHk6IGJvb2xlYW47XG5cbiAgcHVibGljIEZvcm1Db25maWc6IEJhc2VGb3JtQ29uZmlnTW9kZWw7XG5cbiAgY29uc3RydWN0b3IoXG4gICAgcHJvdGVjdGVkIGZvcm1zU2VydmljZTogRm9ybXNTZXJ2aWNlLFxuICAgIHByb3RlY3RlZCBhcHBzRmxvd0V2ZW50c1N2YzogQXBwbGljYXRpb25zRmxvd0V2ZW50c1NlcnZpY2VcbiAgKSB7IH1cblxuICBwdWJsaWMgbmdPbkluaXQoKTogdm9pZCB7XG5cbiAgICB0aGlzLnNldHVwRm9ybSgpO1xuICB9XG5cbiAgcHJvdGVjdGVkIHNldHVwRm9ybSgpOiB2b2lkIHtcblxuICAgIHRoaXMuZm9ybXNTZXJ2aWNlLkZvcm0gPSB7SWQ6IHRoaXMuRm9ybUNvbmZpZy5Gb3JtTmFtZSwgRm9ybTogdGhpcy5Gb3JtQ29uZmlnLkZvcm19O1xuXG4gICAgLy8gdGhpcy5vbkNoYW5nZSgpO1xuICB9XG5cbiAgLyoqXG4gICAqIExpc3RlbiB0byBmb3JtIHZhbHVlIGNoYW5nZXNcbiAgICovXG4gIHByb3RlY3RlZCBvbkNoYW5nZSgpOiB2b2lkIHtcbiAgICBcblxuICB9XG5cbiAgcHJvdGVjdGVkIGNoZWNrRm9ybUZvckNoYW5nZXMoKTogdm9pZCB7XG4gICAgdGhpcy5Gb3JtQ29uZmlnLkZvcm0udmFsdWVDaGFuZ2VzLnN1YnNjcmliZSgodmFsOiBvYmplY3QpID0+IHtcblxuICAgICAgaWYgKHRoaXMuZm9ybXNTZXJ2aWNlLkZvclJlYWxUaG91Z2godGhpcy5Gb3JtQ29uZmlnLkZvcm1OYW1lLCB0aGlzLkZvcm1Db25maWcuRm9ybSkpIHtcbiAgICAgICAgdGhpcy5Gb3JtQ29uZmlnLklzRGlydHkgPSB0cnVlO1xuICAgICAgICAvLyBkaXNhYmxlIGFsbCBmb3JtcyBleGNlcHQgdGhlIGN1cnJlbnQgZm9ybSBiZWluZyBlZGl0ZWRcbiAgICAgICAgdGhpcy5mb3Jtc1NlcnZpY2UuRGlzYWJsZUZvcm1zKHRoaXMuRm9ybUNvbmZpZy5Gb3JtTmFtZSk7XG4gICAgICB9IGVsc2Uge1xuXG4gICAgICAgIHRoaXMuRm9ybUNvbmZpZy5Jc0RpcnR5ID0gZmFsc2U7XG4gICAgICAgIC8vIGVuYWJsZSBhbGwgZm9ybXNcbiAgICAgICAgdGhpcy5mb3Jtc1NlcnZpY2UuRGlzYWJsZUZvcm1zKGZhbHNlKTtcbiAgICAgIH1cbiAgICB9KTtcbiAgfVxuXG4gIC8qKlxuICAgKiBVcGRhdGUgRm9ybSB2YWx1ZSByZWZlcmVuY2VcbiAgICovXG4gIHByb3RlY3RlZCB1cGRhdGVWYWx1ZVJlZigpOiB2b2lkIHtcblxuICAgIHRoaXMuZm9ybXNTZXJ2aWNlLlVwZGF0ZVZhbHVlc1JlZmVyZW5jZShcbiAgICAgIHtcbiAgICAgICAgSWQ6IHRoaXMuRm9ybUNvbmZpZy5Gb3JtTmFtZSxcbiAgICAgICAgRm9ybTogdGhpcy5Gb3JtQ29uZmlnLkZvcm1cbiAgICAgIH0pO1xuICB9XG5cbiAgcHJvdGVjdGVkIHNhdmUoKTogdm9pZCB7XG4gICAgY29uc29sZS5sb2coJ1BBUkVOVCBTQVZFJyk7XG4gIH1cblxuICBwcm90ZWN0ZWQgcmVzZXRGb3JtKCk6IHZvaWQge1xuXG4gIH1cbn1cbiJdfQ==
@@ -0,0 +1,67 @@
1
+ import { Component, Input } from '@angular/core';
2
+ export class CardCarouselComponent {
3
+ constructor() {
4
+ this.carouselIndex = 0;
5
+ }
6
+ ngOnInit() {
7
+ }
8
+ ngAfterViewInit() {
9
+ this.assignCarouselClass();
10
+ }
11
+ LeftChevronClicked() {
12
+ this.removeCarouselClasses();
13
+ if (this.carouselIndex === 0) {
14
+ this.carouselIndex = this.Stats.length - 1;
15
+ }
16
+ else {
17
+ this.carouselIndex--;
18
+ }
19
+ this.assignCarouselClass();
20
+ }
21
+ MoreDetailsClicked() {
22
+ console.log("More details clicked on carousel item", this.Stats[this.carouselIndex]);
23
+ }
24
+ RightChevronClicked() {
25
+ this.removeCarouselClasses();
26
+ if (this.carouselIndex === this.Stats.length - 1) {
27
+ this.carouselIndex = 0;
28
+ }
29
+ else {
30
+ this.carouselIndex++;
31
+ }
32
+ this.assignCarouselClass();
33
+ }
34
+ //HELPERS
35
+ removeCarouselClasses() {
36
+ for (let i = 0; i < this.Stats.length; i++) {
37
+ if (i === this.carouselIndex) {
38
+ document.getElementById("carousel-" + this.carouselIndex).classList.remove('active');
39
+ }
40
+ else {
41
+ document.getElementById("carousel-" + i).classList.remove('hidden');
42
+ }
43
+ }
44
+ }
45
+ assignCarouselClass() {
46
+ for (let i = 0; i < this.Stats.length; i++) {
47
+ if (i === this.carouselIndex) {
48
+ document.getElementById("carousel-" + this.carouselIndex).classList.add('active');
49
+ }
50
+ else {
51
+ document.getElementById("carousel-" + i).classList.add('hidden');
52
+ }
53
+ }
54
+ }
55
+ }
56
+ CardCarouselComponent.decorators = [
57
+ { type: Component, args: [{
58
+ selector: 'lcu-card-carousel',
59
+ template: "<div stats class=\"carousel-container\">\n <div class=\"chevron-container\" fxLayout=\"row\">\n <button mat-icon-button class=\"chevron-button\" id=\"left-chevron\" (click)=\"LeftChevronClicked()\">\n <mat-icon>chevron_left</mat-icon>\n </button>\n <button mat-icon-button class=\"chevron-button\" id=\"right-chevron\" (click)=\"RightChevronClicked()\">\n <mat-icon>chevron_right</mat-icon>\n </button>\n </div>\n <ng-container *ngFor=\"let stat of Stats; let i = index\">\n <div class=\"carousel-item\" [id]=\"'carousel-'+i\">\n <div class=\"carousel-title\">{{stat.Name}}</div>\n <div class=\"carousel-stat\">{{stat.Stat}}</div>\n </div>\n </ng-container>\n <div (click)=\"MoreDetailsClicked()\">More details</div>\n</div>\n",
60
+ styles: [".carousel-container{height:75px;padding-top:20px;text-align:center}.carousel-item.hidden{display:none}.carousel-item.active{visibility:visible}.chevron-button{position:absolute}#right-chevron{right:5px}#left-chevron{left:5px}"]
61
+ },] }
62
+ ];
63
+ CardCarouselComponent.ctorParameters = () => [];
64
+ CardCarouselComponent.propDecorators = {
65
+ Stats: [{ type: Input, args: ['stats',] }]
66
+ };
67
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2FyZC1jYXJvdXNlbC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiL2hvbWUvcnVubmVyL3dvcmsvYXBwbGljYXRpb25zLWZsb3cvYXBwbGljYXRpb25zLWZsb3cvcHJvamVjdHMvY29tbW9uL3NyYy8iLCJzb3VyY2VzIjpbImxpYi9lbGVtZW50cy9jYXJkLWNhcm91c2VsL2NhcmQtY2Fyb3VzZWwuY29tcG9uZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsS0FBSyxFQUFVLE1BQU0sZUFBZSxDQUFDO0FBT3pELE1BQU0sT0FBTyxxQkFBcUI7SUFPaEM7UUFDRSxJQUFJLENBQUMsYUFBYSxHQUFHLENBQUMsQ0FBQztJQUN6QixDQUFDO0lBRUQsUUFBUTtJQUNSLENBQUM7SUFFTSxlQUFlO1FBQ3BCLElBQUksQ0FBQyxtQkFBbUIsRUFBRSxDQUFDO0lBQzdCLENBQUM7SUFFTSxrQkFBa0I7UUFFdkIsSUFBSSxDQUFDLHFCQUFxQixFQUFFLENBQUM7UUFFM0IsSUFBRyxJQUFJLENBQUMsYUFBYSxLQUFLLENBQUMsRUFBQztZQUMxQixJQUFJLENBQUMsYUFBYSxHQUFHLElBQUksQ0FBQyxLQUFLLENBQUMsTUFBTSxHQUFDLENBQUMsQ0FBQztTQUMxQzthQUNHO1lBQ0YsSUFBSSxDQUFDLGFBQWEsRUFBRSxDQUFDO1NBQ3RCO1FBRUgsSUFBSSxDQUFDLG1CQUFtQixFQUFFLENBQUM7SUFFM0IsQ0FBQztJQUVNLGtCQUFrQjtRQUN2QixPQUFPLENBQUMsR0FBRyxDQUFDLHVDQUF1QyxFQUFFLElBQUksQ0FBQyxLQUFLLENBQUMsSUFBSSxDQUFDLGFBQWEsQ0FBQyxDQUFDLENBQUM7SUFDdkYsQ0FBQztJQUVNLG1CQUFtQjtRQUN4QixJQUFJLENBQUMscUJBQXFCLEVBQUUsQ0FBQztRQUU3QixJQUFHLElBQUksQ0FBQyxhQUFhLEtBQUssSUFBSSxDQUFDLEtBQUssQ0FBQyxNQUFNLEdBQUMsQ0FBQyxFQUFDO1lBQzVDLElBQUksQ0FBQyxhQUFhLEdBQUcsQ0FBQyxDQUFDO1NBQ3hCO2FBQ0c7WUFDRixJQUFJLENBQUMsYUFBYSxFQUFFLENBQUM7U0FDdEI7UUFFSCxJQUFJLENBQUMsbUJBQW1CLEVBQUUsQ0FBQztJQUMzQixDQUFDO0lBR0gsU0FBUztJQUVDLHFCQUFxQjtRQUM3QixLQUFJLElBQUksQ0FBQyxHQUFDLENBQUMsRUFBRSxDQUFDLEdBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxNQUFNLEVBQUUsQ0FBQyxFQUFFLEVBQUM7WUFDcEMsSUFBRyxDQUFDLEtBQUssSUFBSSxDQUFDLGFBQWEsRUFBQztnQkFDWixRQUFRLENBQUMsY0FBYyxDQUFDLFdBQVcsR0FBQyxJQUFJLENBQUMsYUFBYSxDQUFFLENBQUMsU0FBUyxDQUFDLE1BQU0sQ0FBQyxRQUFRLENBQUMsQ0FBQzthQUNuRztpQkFDRztnQkFDWSxRQUFRLENBQUMsY0FBYyxDQUFDLFdBQVcsR0FBQyxDQUFDLENBQUUsQ0FBQyxTQUFTLENBQUMsTUFBTSxDQUFDLFFBQVEsQ0FBQyxDQUFDO2FBQ2xGO1NBQ0Y7SUFDSCxDQUFDO0lBRVMsbUJBQW1CO1FBQzNCLEtBQUksSUFBSSxDQUFDLEdBQUMsQ0FBQyxFQUFFLENBQUMsR0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLE1BQU0sRUFBRSxDQUFDLEVBQUUsRUFBQztZQUNwQyxJQUFHLENBQUMsS0FBSyxJQUFJLENBQUMsYUFBYSxFQUFDO2dCQUNaLFFBQVEsQ0FBQyxjQUFjLENBQUMsV0FBVyxHQUFDLElBQUksQ0FBQyxhQUFhLENBQUUsQ0FBQyxTQUFTLENBQUMsR0FBRyxDQUFDLFFBQVEsQ0FBQyxDQUFDO2FBQ2hHO2lCQUNHO2dCQUNZLFFBQVEsQ0FBQyxjQUFjLENBQUMsV0FBVyxHQUFDLENBQUMsQ0FBRSxDQUFDLFNBQVMsQ0FBQyxHQUFHLENBQUMsUUFBUSxDQUFDLENBQUM7YUFDL0U7U0FDRjtJQUNILENBQUM7OztZQTlFRixTQUFTLFNBQUM7Z0JBQ1QsUUFBUSxFQUFFLG1CQUFtQjtnQkFDN0IsdTFCQUE2Qzs7YUFFOUM7Ozs7b0JBR0UsS0FBSyxTQUFDLE9BQU8iLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIElucHV0LCBPbkluaXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnbGN1LWNhcmQtY2Fyb3VzZWwnLFxuICB0ZW1wbGF0ZVVybDogJy4vY2FyZC1jYXJvdXNlbC5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL2NhcmQtY2Fyb3VzZWwuY29tcG9uZW50LnNjc3MnXVxufSlcbmV4cG9ydCBjbGFzcyBDYXJkQ2Fyb3VzZWxDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xuXG4gIEBJbnB1dCgnc3RhdHMnKVxuICBwdWJsaWMgU3RhdHM6IGFueVtdO1xuXG4gIHByb3RlY3RlZCBjYXJvdXNlbEluZGV4OiBudW1iZXI7XG5cbiAgY29uc3RydWN0b3IoKSB7IFxuICAgIHRoaXMuY2Fyb3VzZWxJbmRleCA9IDA7XG4gIH1cblxuICBuZ09uSW5pdCgpOiB2b2lkIHtcbiAgfVxuXG4gIHB1YmxpYyBuZ0FmdGVyVmlld0luaXQoKXtcbiAgICB0aGlzLmFzc2lnbkNhcm91c2VsQ2xhc3MoKTtcbiAgfVxuXG4gIHB1YmxpYyBMZWZ0Q2hldnJvbkNsaWNrZWQoKXtcblxuICAgIHRoaXMucmVtb3ZlQ2Fyb3VzZWxDbGFzc2VzKCk7XG4gIFxuICAgICAgaWYodGhpcy5jYXJvdXNlbEluZGV4ID09PSAwKXtcbiAgICAgICAgdGhpcy5jYXJvdXNlbEluZGV4ID0gdGhpcy5TdGF0cy5sZW5ndGgtMTtcbiAgICAgIH1cbiAgICAgIGVsc2V7XG4gICAgICAgIHRoaXMuY2Fyb3VzZWxJbmRleC0tO1xuICAgICAgfVxuICBcbiAgICB0aGlzLmFzc2lnbkNhcm91c2VsQ2xhc3MoKTtcbiAgXG4gICAgfVxuXG4gICAgcHVibGljIE1vcmVEZXRhaWxzQ2xpY2tlZCgpe1xuICAgICAgY29uc29sZS5sb2coXCJNb3JlIGRldGFpbHMgY2xpY2tlZCBvbiBjYXJvdXNlbCBpdGVtXCIsIHRoaXMuU3RhdHNbdGhpcy5jYXJvdXNlbEluZGV4XSk7XG4gICAgfVxuICBcbiAgICBwdWJsaWMgUmlnaHRDaGV2cm9uQ2xpY2tlZCgpe1xuICAgICAgdGhpcy5yZW1vdmVDYXJvdXNlbENsYXNzZXMoKTtcbiAgXG4gICAgICBpZih0aGlzLmNhcm91c2VsSW5kZXggPT09IHRoaXMuU3RhdHMubGVuZ3RoLTEpe1xuICAgICAgICB0aGlzLmNhcm91c2VsSW5kZXggPSAwO1xuICAgICAgfVxuICAgICAgZWxzZXtcbiAgICAgICAgdGhpcy5jYXJvdXNlbEluZGV4Kys7XG4gICAgICB9XG4gIFxuICAgIHRoaXMuYXNzaWduQ2Fyb3VzZWxDbGFzcygpO1xuICAgIH1cblxuICBcbiAgLy9IRUxQRVJTXG5cbiAgcHJvdGVjdGVkIHJlbW92ZUNhcm91c2VsQ2xhc3Nlcygpe1xuICAgIGZvcihsZXQgaT0wOyBpPHRoaXMuU3RhdHMubGVuZ3RoOyBpKyspe1xuICAgICAgaWYoaSA9PT0gdGhpcy5jYXJvdXNlbEluZGV4KXtcbiAgICAgICAgKDxIVE1MRWxlbWVudD5kb2N1bWVudC5nZXRFbGVtZW50QnlJZChcImNhcm91c2VsLVwiK3RoaXMuY2Fyb3VzZWxJbmRleCkpLmNsYXNzTGlzdC5yZW1vdmUoJ2FjdGl2ZScpO1xuICAgICAgfVxuICAgICAgZWxzZXtcbiAgICAgICAgKDxIVE1MRWxlbWVudD5kb2N1bWVudC5nZXRFbGVtZW50QnlJZChcImNhcm91c2VsLVwiK2kpKS5jbGFzc0xpc3QucmVtb3ZlKCdoaWRkZW4nKTtcbiAgICAgIH1cbiAgICB9XG4gIH1cblxuICBwcm90ZWN0ZWQgYXNzaWduQ2Fyb3VzZWxDbGFzcygpe1xuICAgIGZvcihsZXQgaT0wOyBpPHRoaXMuU3RhdHMubGVuZ3RoOyBpKyspe1xuICAgICAgaWYoaSA9PT0gdGhpcy5jYXJvdXNlbEluZGV4KXtcbiAgICAgICAgKDxIVE1MRWxlbWVudD5kb2N1bWVudC5nZXRFbGVtZW50QnlJZChcImNhcm91c2VsLVwiK3RoaXMuY2Fyb3VzZWxJbmRleCkpLmNsYXNzTGlzdC5hZGQoJ2FjdGl2ZScpO1xuICAgICAgfVxuICAgICAgZWxzZXtcbiAgICAgICAgKDxIVE1MRWxlbWVudD5kb2N1bWVudC5nZXRFbGVtZW50QnlJZChcImNhcm91c2VsLVwiK2kpKS5jbGFzc0xpc3QuYWRkKCdoaWRkZW4nKTtcbiAgICAgIH1cbiAgICB9XG4gIH1cblxufVxuIl19
@@ -0,0 +1,31 @@
1
+ import { Component, Input, Output } from '@angular/core';
2
+ export class ColumnInfoCardComponent {
3
+ constructor() { }
4
+ ngOnInit() {
5
+ }
6
+ SlotActionClickEvent(event) {
7
+ this.SlotActionClicked.emit(event);
8
+ }
9
+ MainCardClickEvent(event) {
10
+ this.MainCardClicked.emit(event);
11
+ }
12
+ }
13
+ ColumnInfoCardComponent.decorators = [
14
+ { type: Component, args: [{
15
+ selector: 'lcu-column-info-card',
16
+ template: "<mat-card class=\"col-info-card\">\n <mat-card-header>\n <mat-card-title>{{ Title }}</mat-card-title>\n <mat-icon>{{ MainIcon }}</mat-icon>\n </mat-card-header>\n \n <mat-card-content>\n <div class=\"header-description\">{{ MainSlotDescription }}</div>\n <div class=\"main-slot\" fxLayout=\"row\" *ngFor=\"let slot of MainSlots\">\n\n <img [src]=\"slot.imgUrl\" [alt]=\"slot.Name\">\n\n <div fxLayout=\"column\">\n <h3>{{slot.Name}}</h3>\n <p>{{slot.Description}}</p>\n </div>\n\n <ng-container *ngIf=\"slot.actions\">\n \n <div class=\"slot-actions\" *ngFor=\"let action of slot.actions\">\n\n <ng-container *ngIf=\"action.ButtonType === ICON\">\n <mat-icon [matTooltip]=\"action.Label\" click=\"SlotActionClickEvent(action.ClickEventName)\">{{ action.Icon }}</mat-icon>\n </ng-container>\n\n <ng-container *ngIf=\"action.ButtonType === BUTTON\">\n <button mat-button click=\"SlotActionClickEvent(action.ClickEventName)\">{{ action.Label }}</button>\n </ng-container>\n\n </div>\n </ng-container>\n\n \n\n </div>\n \n </mat-card-content>\n <mat-card-actions>\n <button mat-button click=\"MainCardClickEvent(MainCardAction.ClickEventName)\">{{ MainCardAction.Label }}</button>\n </mat-card-actions>\n </mat-card>",
17
+ styles: [""]
18
+ },] }
19
+ ];
20
+ ColumnInfoCardComponent.ctorParameters = () => [];
21
+ ColumnInfoCardComponent.propDecorators = {
22
+ Title: [{ type: Input, args: ['title',] }],
23
+ MainIcon: [{ type: Input, args: ['main-icon',] }],
24
+ MainSlotDescription: [{ type: Input, args: ['main-slot-description',] }],
25
+ MainSlots: [{ type: Input, args: ['main-slots',] }],
26
+ SecondarySlots: [{ type: Input, args: ['secondary-slots',] }],
27
+ MainCardAction: [{ type: Input, args: ['main-card-action',] }],
28
+ MainCardClicked: [{ type: Output, args: ['main-card-clicked',] }],
29
+ SlotActionClicked: [{ type: Output, args: ['slot-action-clicked',] }]
30
+ };
31
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29sdW1uLWluZm8tY2FyZC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiL2hvbWUvcnVubmVyL3dvcmsvYXBwbGljYXRpb25zLWZsb3cvYXBwbGljYXRpb25zLWZsb3cvcHJvamVjdHMvY29tbW9uL3NyYy8iLCJzb3VyY2VzIjpbImxpYi9lbGVtZW50cy9jb2x1bW4taW5mby1jYXJkL2NvbHVtbi1pbmZvLWNhcmQuY29tcG9uZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQWdCLEtBQUssRUFBVSxNQUFNLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFTL0UsTUFBTSxPQUFPLHVCQUF1QjtJQTBCbEMsZ0JBQWdCLENBQUM7SUFFakIsUUFBUTtJQUNSLENBQUM7SUFFTSxvQkFBb0IsQ0FBQyxLQUFhO1FBQ3ZDLElBQUksQ0FBQyxpQkFBaUIsQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLENBQUM7SUFDckMsQ0FBQztJQUVNLGtCQUFrQixDQUFDLEtBQWE7UUFDckMsSUFBSSxDQUFDLGVBQWUsQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLENBQUM7SUFDbkMsQ0FBQzs7O1lBMUNGLFNBQVMsU0FBQztnQkFDVCxRQUFRLEVBQUUsc0JBQXNCO2dCQUNoQyw4Z0RBQWdEOzthQUVqRDs7OztvQkFHRSxLQUFLLFNBQUMsT0FBTzt1QkFHYixLQUFLLFNBQUMsV0FBVztrQ0FHakIsS0FBSyxTQUFDLHVCQUF1Qjt3QkFHN0IsS0FBSyxTQUFDLFlBQVk7NkJBR2xCLEtBQUssU0FBQyxpQkFBaUI7NkJBR3ZCLEtBQUssU0FBQyxrQkFBa0I7OEJBR3hCLE1BQU0sU0FBQyxtQkFBbUI7Z0NBRzFCLE1BQU0sU0FBQyxxQkFBcUIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIEV2ZW50RW1pdHRlciwgSW5wdXQsIE9uSW5pdCwgT3V0cHV0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBDYXJkU2xvdE1vZGVsIH0gZnJvbSAnLi4vLi4vbW9kZWxzL2NhcmQtc2xvdC5tb2RlbCc7XG5pbXBvcnQgeyBTbG90QWN0aW9uTW9kZWwgfSBmcm9tICcuLi8uLi9tb2RlbHMvc2xvdC1hY3Rpb24ubW9kZWwnO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdsY3UtY29sdW1uLWluZm8tY2FyZCcsXG4gIHRlbXBsYXRlVXJsOiAnLi9jb2x1bW4taW5mby1jYXJkLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vY29sdW1uLWluZm8tY2FyZC5jb21wb25lbnQuc2NzcyddXG59KVxuZXhwb3J0IGNsYXNzIENvbHVtbkluZm9DYXJkQ29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0IHtcblxuICBASW5wdXQoJ3RpdGxlJykgXG4gIHB1YmxpYyBUaXRsZTogc3RyaW5nO1xuXG4gIEBJbnB1dCgnbWFpbi1pY29uJykgXG4gIHB1YmxpYyBNYWluSWNvbjogc3RyaW5nO1xuXG4gIEBJbnB1dCgnbWFpbi1zbG90LWRlc2NyaXB0aW9uJykgXG4gIHB1YmxpYyBNYWluU2xvdERlc2NyaXB0aW9uOiBzdHJpbmc7XG5cbiAgQElucHV0KCdtYWluLXNsb3RzJykgXG4gIHB1YmxpYyBNYWluU2xvdHM6IEFycmF5PENhcmRTbG90TW9kZWw+O1xuXG4gIEBJbnB1dCgnc2Vjb25kYXJ5LXNsb3RzJykgXG4gIHB1YmxpYyBTZWNvbmRhcnlTbG90czogQXJyYXk8Q2FyZFNsb3RNb2RlbD47XG5cbiAgQElucHV0KCdtYWluLWNhcmQtYWN0aW9uJykgXG4gIHB1YmxpYyBNYWluQ2FyZEFjdGlvbjogU2xvdEFjdGlvbk1vZGVsO1xuXG4gIEBPdXRwdXQoJ21haW4tY2FyZC1jbGlja2VkJykgXG4gIHB1YmxpYyBNYWluQ2FyZENsaWNrZWQ6IEV2ZW50RW1pdHRlcjxzdHJpbmc+O1xuXG4gIEBPdXRwdXQoJ3Nsb3QtYWN0aW9uLWNsaWNrZWQnKSBcbiAgcHVibGljIFNsb3RBY3Rpb25DbGlja2VkOiBFdmVudEVtaXR0ZXI8c3RyaW5nPjtcblxuICBjb25zdHJ1Y3RvcigpIHsgfVxuXG4gIG5nT25Jbml0KCk6IHZvaWQge1xuICB9XG5cbiAgcHVibGljIFNsb3RBY3Rpb25DbGlja0V2ZW50KGV2ZW50OiBzdHJpbmcpe1xuICAgIHRoaXMuU2xvdEFjdGlvbkNsaWNrZWQuZW1pdChldmVudCk7XG4gIH1cblxuICBwdWJsaWMgTWFpbkNhcmRDbGlja0V2ZW50KGV2ZW50OiBzdHJpbmcpe1xuICAgIHRoaXMuTWFpbkNhcmRDbGlja2VkLmVtaXQoZXZlbnQpO1xuICB9XG5cbn1cbiJdfQ==
@@ -0,0 +1,69 @@
1
+ import { FormsService } from './../../services/forms.service';
2
+ import { Component, ComponentFactoryResolver, Input, ViewChild, ViewContainerRef } from '@angular/core';
3
+ export class DynamicTabsComponent {
4
+ constructor(componentFactoryResolver, formsService) {
5
+ this.componentFactoryResolver = componentFactoryResolver;
6
+ this.formsService = formsService;
7
+ }
8
+ // Lifecycle hook
9
+ ngOnInit() {
10
+ // listen form any form to be dirty, then disable all tabs except for the current tab
11
+ this.formIsDirtySubscription = this.formsService.FormIsDirty.subscribe((val) => {
12
+ this.FormIsDirty = val;
13
+ });
14
+ }
15
+ ngAfterViewInit() {
16
+ this.renderComponent(0);
17
+ }
18
+ /**
19
+ * Tab change event
20
+ *
21
+ * @param index selected tab index
22
+ */
23
+ TabChanged(evt) {
24
+ setTimeout(() => {
25
+ this.renderComponent(evt.index);
26
+ }, 1000);
27
+ }
28
+ /**
29
+ * Render component for the active tab
30
+ *
31
+ * @param index TabComponents index position
32
+ */
33
+ renderComponent(index) {
34
+ if (!this.TabComponents) {
35
+ return;
36
+ }
37
+ // factory for creating a dynamic component
38
+ const factory = this.componentFactoryResolver
39
+ .resolveComponentFactory(this.TabComponents[index].Component);
40
+ // component created by a factory
41
+ const componentRef = this.viewContainer.createComponent(factory);
42
+ // current component instance
43
+ const instance = componentRef.instance;
44
+ // find the current component in TabComponents and set its data
45
+ this.TabComponents.find((comp) => {
46
+ if (comp.Component.name === instance.constructor.name) {
47
+ instance['Data'] = comp.Data;
48
+ }
49
+ });
50
+ }
51
+ }
52
+ DynamicTabsComponent.decorators = [
53
+ { type: Component, args: [{
54
+ selector: 'lcu-dynamic-tabs',
55
+ template: "<mat-tab-group \n [color]=\"Color\" \n [backgroundColor]=\"BackgroundColor\" \n (selectedTabChange)=\"TabChanged($event)\">\n <!-- <div>\n\n </div> -->\n <mat-tab\n *ngFor=\"let component of TabComponents\"\n #tab\n [disabled]='!tab.isActive && FormIsDirty'>\n <ng-template mat-tab-label>\n <mat-icon [color]=\"Color\" class=\"margin-right-2\">\n {{ component.Icon }}\n </mat-icon>\n {{ component.Label }}\n </ng-template>\n <ng-template matTabContent>\n <div #container class=\"margin-top-3\"></div>\n </ng-template>\n </mat-tab>\n</mat-tab-group>",
56
+ styles: ["@import url(\"https://fonts.googleapis.com/icon?family=Material+Icons\");@import url(\"https://fonts.googleapis.com/css?family=Encode+Sans+Condensed:400,900&display=swap\");@import url(\"https://fonts.googleapis.com/css?family=Open+Sans:300,400,700&display=swap\");.disable-autofill-background-default input:-webkit-autofill,.disable-autofill-background-default input:-webkit-autofill:focus,.disable-autofill-background-default input:-webkit-autofill:hover,.disable-autofill-background-default select:-webkit-autofill,.disable-autofill-background-default select:-webkit-autofill:focus,.disable-autofill-background-default select:-webkit-autofill:hover,.disable-autofill-background-default textarea:-webkit-autofill,.disable-autofill-background-default textarea:-webkit-autofill:focus,.disable-autofill-background-default textarea:-webkit-autofill:hover{-webkit-transition:background-color 5000s!important;transition:background-color 5000s!important}.list-item-disabled{cursor:not-allowed!important;filter:alpha(opacity=50);opacity:.5}.filler{display:inline-block!important;flex:1 1 auto}.sticky{position:-webkit-sticky;position:sticky;top:0;z-index:750}.inline{display:inline-block}.contents,.page-element{display:contents}.mat-spinner{margin:auto}.mat-full-width{width:100%}.spread{margin:2rem}.spread-thin{margin:1rem}.overlay{position:-webkit-sticky!important;position:sticky!important}.overlay.top{top:0}.overlay.bottom{bottom:0}.margin-0{margin:0!important}.margin-top-0,.margin-y-0{margin-top:0!important}.margin-right-0,.margin-x-0{margin-right:0!important}.margin-bottom-0,.margin-y-0{margin-bottom:0!important}.margin-left-0,.margin-x-0{margin-left:0!important}.margin-1{margin:.25rem!important}.margin-top-1,.margin-y-1{margin-top:.25rem!important}.margin-right-1,.margin-x-1{margin-right:.25rem!important}.margin-bottom-1,.margin-y-1{margin-bottom:.25rem!important}.margin-left-1,.margin-x-1{margin-left:.25rem!important}.margin-2{margin:.5rem!important}.margin-top-2,.margin-y-2{margin-top:.5rem!important}.margin-right-2,.margin-x-2{margin-right:.5rem!important}.margin-bottom-2,.margin-y-2{margin-bottom:.5rem!important}.margin-left-2,.margin-x-2{margin-left:.5rem!important}.margin-3{margin:1rem!important}.margin-top-3,.margin-y-3{margin-top:1rem!important}.margin-top-bottom-3{margin:1rem 0!important}.margin-right-3,.margin-x-3{margin-right:1rem!important}.margin-bottom-3,.margin-y-3{margin-bottom:1rem!important}.margin-left-3,.margin-x-3{margin-left:1rem!important}.margin-4{margin:2rem!important}.margin-top-4,.margin-y-4{margin-top:2rem!important}.margin-right-4,.margin-x-4{margin-right:2rem!important}.margin-bottom-4,.margin-y-4{margin-bottom:2rem!important}.margin-left-4,.margin-x-4{margin-left:2rem!important}.margin-right-5,.margin-x-5{margin-right:4rem!important}.margin-bottom-5,.margin-y-5{margin-bottom:4rem!important}.margin-left-5,.margin-x-5{margin-left:4rem!important}.margin-5{margin:4rem!important}.margin-top-5,.margin-y-5{margin-top:4rem!important}.margin-right-6,.margin-x-6{margin-right:4.5rem!important}.margin-bottom-6,.margin-y-6{margin-bottom:4.5rem!important}.margin-left-6,.margin-x-6{margin-left:4.5rem!important}.margin-7{margin:6rem!important}.margin-top-7,.margin-y-7{margin-top:6rem!important}.margin-right-7,.margin-x-7{margin-right:6rem!important}.margin-bottom-7,.margin-y-7{margin-bottom:6rem!important}.margin-left-7,.margin-x-7{margin-left:6rem!important}.margin-8{margin:7.5rem!important}.margin-top-8,.margin-y-8{margin-top:7.5rem!important}.margin-right-8,.margin-x-8{margin-right:7.5rem!important}.margin-bottom-8,.margin-y-8{margin-bottom:7.5rem!important}.margin-left-8,.margin-x-8{margin-left:7.5rem!important}.margin-9{margin:9rem!important}.margin-top-9,.margin-y-9{margin-top:9rem!important}.margin-right-9,.margin-x-9{margin-right:9rem!important}.margin-bottom-9,.margin-y-9{margin-bottom:9rem!important}.margin-left-9,.margin-x-9{margin-left:9rem!important}.padding-0{padding:0!important}.padding-top-0,.padding-y-0{padding-top:0!important}.padding-right-0,.padding-x-0{padding-right:0!important}.padding-bottom-0,.padding-y-0{padding-bottom:0!important}.padding-left-0,.padding-x-0{padding-left:0!important}.padding-1{padding:.25rem!important}.padding-top-1,.padding-y-1{padding-top:.25rem!important}.padding-right-1,.padding-x-1{padding-right:.25rem!important}.padding-bottom-1,.padding-y-1{padding-bottom:.25rem!important}.padding-left-1,.padding-x-1{padding-left:.25rem!important}.padding-2{padding:.5rem!important}.padding-top-2,.padding-y-2{padding-top:.5rem!important}.padding-right-2,.padding-x-2{padding-right:.5rem!important}.padding-bottom-2,.padding-y-2{padding-bottom:.5rem!important}.padding-left-2,.padding-x-2{padding-left:.5rem!important}.padding-3{padding:1rem!important}.padding-top-3,.padding-y-3{padding-top:1rem!important}.padding-right-3,.padding-x-3{padding-right:1rem!important}.padding-bottom-3,.padding-y-3{padding-bottom:1rem!important}.padding-left-3,.padding-x-3{padding-left:1rem!important}.padding-4{padding:2rem!important}.padding-top-4,.padding-y-4{padding-top:2rem!important}.padding-right-4,.padding-x-4{padding-right:2rem!important}.padding-bottom-4,.padding-y-4{padding-bottom:2rem!important}.padding-left-4,.padding-x-4{padding-left:2rem!important}.padding-5{padding:4rem!important}.padding-top-5,.padding-y-5{padding-top:4rem!important}.padding-right-5,.padding-x-5{padding-right:4rem!important}.padding-bottom-5,.padding-y-5{padding-bottom:4rem!important}.padding-left-5,.padding-x-5{padding-left:4rem!important}.margin-n1{margin:-.25rem!important}.margin-top-n1,.margin-y-n1{margin-top:-.25rem!important}.margin-right-n1,.margin-x-n1{margin-right:-.25rem!important}.margin-bottom-n1,.margin-y-n1{margin-bottom:-.25rem!important}.margin-left-n1,.margin-x-n1{margin-left:-.25rem!important}.margin-n2{margin:-.5rem!important}.margin-top-n2,.margin-y-n2{margin-top:-.5rem!important}.margin-right-n2,.margin-x-n2{margin-right:-.5rem!important}.margin-bottom-n2,.margin-y-n2{margin-bottom:-.5rem!important}.margin-left-n2,.margin-x-n2{margin-left:-.5rem!important}.margin-n3{margin:-1rem!important}.margin-top-n3,.margin-y-n3{margin-top:-1rem!important}.margin-right-n3,.margin-x-n3{margin-right:-1rem!important}.margin-bottom-n3,.margin-y-n3{margin-bottom:-1rem!important}.margin-left-n3,.margin-x-n3{margin-left:-1rem!important}.margin-n4{margin:-2rem!important}.margin-top-n4,.margin-y-n4{margin-top:-2rem!important}.margin-right-n4,.margin-x-n4{margin-right:-2rem!important}.margin-bottom-n4,.margin-y-n4{margin-bottom:-2rem!important}.margin-left-n4,.margin-x-n4{margin-left:-2rem!important}.margin-n5{margin:-4rem!important}.margin-top-n5,.margin-y-n5{margin-top:-4rem!important}.margin-right-n5,.margin-x-n5{margin-right:-4rem!important}.margin-bottom-n5,.margin-y-n5{margin-bottom:-4rem!important}.margin-left-n5,.margin-x-n5{margin-left:-4rem!important}.margin-auto{margin:auto!important}.margin-top-auto,.margin-y-auto{margin-top:auto!important}.margin-right-auto,.margin-x-auto{margin-right:auto!important}.margin-bottom-auto,.margin-y-auto{margin-bottom:auto!important}.margin-left-auto,.margin-x-auto{margin-left:auto!important}@media (min-width:576px){.margin-sm-0{margin:0!important}.margin-top-sm-0,.margin-y-sm-0{margin-top:0!important}.margin-right-sm-0,.margin-x-sm-0{margin-right:0!important}.margin-bottom-sm-0,.margin-y-sm-0{margin-bottom:0!important}.margin-left-sm-0,.margin-x-sm-0{margin-left:0!important}.margin-sm-1{margin:.25rem!important}.margin-top-sm-1,.margin-y-sm-1{margin-top:.25rem!important}.margin-right-sm-1,.margin-x-sm-1{margin-right:.25rem!important}.margin-bottom-sm-1,.margin-y-sm-1{margin-bottom:.25rem!important}.margin-left-sm-1,.margin-x-sm-1{margin-left:.25rem!important}.margin-sm-2{margin:.5rem!important}.margin-top-sm-2,.margin-y-sm-2{margin-top:.5rem!important}.margin-right-sm-2,.margin-x-sm-2{margin-right:.5rem!important}.margin-bottom-sm-2,.margin-y-sm-2{margin-bottom:.5rem!important}.margin-left-sm-2,.margin-x-sm-2{margin-left:.5rem!important}.margin-sm-3{margin:1rem!important}.margin-top-sm-3,.margin-y-sm-3{margin-top:1rem!important}.margin-right-sm-3,.margin-x-sm-3{margin-right:1rem!important}.margin-bottom-sm-3,.margin-y-sm-3{margin-bottom:1rem!important}.margin-left-sm-3,.margin-x-sm-3{margin-left:1rem!important}.margin-sm-4{margin:2rem!important}.margin-top-sm-4,.margin-y-sm-4{margin-top:2rem!important}.margin-right-sm-4,.margin-x-sm-4{margin-right:2rem!important}.margin-bottom-sm-4,.margin-y-sm-4{margin-bottom:2rem!important}.margin-left-sm-4,.margin-x-sm-4{margin-left:2rem!important}.margin-sm-5{margin:4rem!important}.margin-top-sm-5,.margin-y-sm-5{margin-top:4rem!important}.margin-right-sm-5,.margin-x-sm-5{margin-right:4rem!important}.margin-bottom-sm-5,.margin-y-sm-5{margin-bottom:4rem!important}.margin-left-sm-5,.margin-x-sm-5{margin-left:4rem!important}.padding-sm-0{padding:0!important}.padding-top-sm-0,.padding-y-sm-0{padding-top:0!important}.padding-right-sm-0,.padding-x-sm-0{padding-right:0!important}.padding-bottom-sm-0,.padding-y-sm-0{padding-bottom:0!important}.padding-left-sm-0,.padding-x-sm-0{padding-left:0!important}.padding-sm-1{padding:.25rem!important}.padding-top-sm-1,.padding-y-sm-1{padding-top:.25rem!important}.padding-right-sm-1,.padding-x-sm-1{padding-right:.25rem!important}.padding-bottom-sm-1,.padding-y-sm-1{padding-bottom:.25rem!important}.padding-left-sm-1,.padding-x-sm-1{padding-left:.25rem!important}.padding-sm-2{padding:.5rem!important}.padding-top-sm-2,.padding-y-sm-2{padding-top:.5rem!important}.padding-right-sm-2,.padding-x-sm-2{padding-right:.5rem!important}.padding-bottom-sm-2,.padding-y-sm-2{padding-bottom:.5rem!important}.padding-left-sm-2,.padding-x-sm-2{padding-left:.5rem!important}.padding-sm-3{padding:1rem!important}.padding-top-sm-3,.padding-y-sm-3{padding-top:1rem!important}.padding-right-sm-3,.padding-x-sm-3{padding-right:1rem!important}.padding-bottom-sm-3,.padding-y-sm-3{padding-bottom:1rem!important}.padding-left-sm-3,.padding-x-sm-3{padding-left:1rem!important}.padding-sm-4{padding:2rem!important}.padding-top-sm-4,.padding-y-sm-4{padding-top:2rem!important}.padding-right-sm-4,.padding-x-sm-4{padding-right:2rem!important}.padding-bottom-sm-4,.padding-y-sm-4{padding-bottom:2rem!important}.padding-left-sm-4,.padding-x-sm-4{padding-left:2rem!important}.padding-sm-5{padding:4rem!important}.padding-top-sm-5,.padding-y-sm-5{padding-top:4rem!important}.padding-right-sm-5,.padding-x-sm-5{padding-right:4rem!important}.padding-bottom-sm-5,.padding-y-sm-5{padding-bottom:4rem!important}.padding-left-sm-5,.padding-x-sm-5{padding-left:4rem!important}.margin-sm-n1{margin:-.25rem!important}.margin-top-sm-n1,.margin-y-sm-n1{margin-top:-.25rem!important}.margin-right-sm-n1,.margin-x-sm-n1{margin-right:-.25rem!important}.margin-bottom-sm-n1,.margin-y-sm-n1{margin-bottom:-.25rem!important}.margin-left-sm-n1,.margin-x-sm-n1{margin-left:-.25rem!important}.margin-sm-n2{margin:-.5rem!important}.margin-top-sm-n2,.margin-y-sm-n2{margin-top:-.5rem!important}.margin-right-sm-n2,.margin-x-sm-n2{margin-right:-.5rem!important}.margin-bottom-sm-n2,.margin-y-sm-n2{margin-bottom:-.5rem!important}.margin-left-sm-n2,.margin-x-sm-n2{margin-left:-.5rem!important}.margin-sm-n3{margin:-1rem!important}.margin-top-sm-n3,.margin-y-sm-n3{margin-top:-1rem!important}.margin-right-sm-n3,.margin-x-sm-n3{margin-right:-1rem!important}.margin-bottom-sm-n3,.margin-y-sm-n3{margin-bottom:-1rem!important}.margin-left-sm-n3,.margin-x-sm-n3{margin-left:-1rem!important}.margin-sm-n4{margin:-2rem!important}.margin-top-sm-n4,.margin-y-sm-n4{margin-top:-2rem!important}.margin-right-sm-n4,.margin-x-sm-n4{margin-right:-2rem!important}.margin-bottom-sm-n4,.margin-y-sm-n4{margin-bottom:-2rem!important}.margin-left-sm-n4,.margin-x-sm-n4{margin-left:-2rem!important}.margin-sm-n5{margin:-4rem!important}.margin-top-sm-n5,.margin-y-sm-n5{margin-top:-4rem!important}.margin-right-sm-n5,.margin-x-sm-n5{margin-right:-4rem!important}.margin-bottom-sm-n5,.margin-y-sm-n5{margin-bottom:-4rem!important}.margin-left-sm-n5,.margin-x-sm-n5{margin-left:-4rem!important}.margin-sm-auto{margin:auto!important}.margin-top-sm-auto,.margin-y-sm-auto{margin-top:auto!important}.margin-right-sm-auto,.margin-x-sm-auto{margin-right:auto!important}.margin-bottom-sm-auto,.margin-y-sm-auto{margin-bottom:auto!important}.margin-left-sm-auto,.margin-x-sm-auto{margin-left:auto!important}}@media (min-width:768px){.margin-md-0{margin:0!important}.margin-top-md-0,.margin-y-md-0{margin-top:0!important}.margin-right-md-0,.margin-x-md-0{margin-right:0!important}.margin-bottom-md-0,.margin-y-md-0{margin-bottom:0!important}.margin-left-md-0,.margin-x-md-0{margin-left:0!important}.margin-md-1{margin:.25rem!important}.margin-top-md-1,.margin-y-md-1{margin-top:.25rem!important}.margin-right-md-1,.margin-x-md-1{margin-right:.25rem!important}.margin-bottom-md-1,.margin-y-md-1{margin-bottom:.25rem!important}.margin-left-md-1,.margin-x-md-1{margin-left:.25rem!important}.margin-md-2{margin:.5rem!important}.margin-top-md-2,.margin-y-md-2{margin-top:.5rem!important}.margin-right-md-2,.margin-x-md-2{margin-right:.5rem!important}.margin-bottom-md-2,.margin-y-md-2{margin-bottom:.5rem!important}.margin-left-md-2,.margin-x-md-2{margin-left:.5rem!important}.margin-md-3{margin:1rem!important}.margin-top-md-3,.margin-y-md-3{margin-top:1rem!important}.margin-right-md-3,.margin-x-md-3{margin-right:1rem!important}.margin-bottom-md-3,.margin-y-md-3{margin-bottom:1rem!important}.margin-left-md-3,.margin-x-md-3{margin-left:1rem!important}.margin-md-4{margin:2rem!important}.margin-top-md-4,.margin-y-md-4{margin-top:2rem!important}.margin-right-md-4,.margin-x-md-4{margin-right:2rem!important}.margin-bottom-md-4,.margin-y-md-4{margin-bottom:2rem!important}.margin-left-md-4,.margin-x-md-4{margin-left:2rem!important}.margin-md-5{margin:4rem!important}.margin-top-md-5,.margin-y-md-5{margin-top:4rem!important}.margin-right-md-5,.margin-x-md-5{margin-right:4rem!important}.margin-bottom-md-5,.margin-y-md-5{margin-bottom:4rem!important}.margin-left-md-5,.margin-x-md-5{margin-left:4rem!important}.padding-md-0{padding:0!important}.padding-top-md-0,.padding-y-md-0{padding-top:0!important}.padding-right-md-0,.padding-x-md-0{padding-right:0!important}.padding-bottom-md-0,.padding-y-md-0{padding-bottom:0!important}.padding-left-md-0,.padding-x-md-0{padding-left:0!important}.padding-md-1{padding:.25rem!important}.padding-top-md-1,.padding-y-md-1{padding-top:.25rem!important}.padding-right-md-1,.padding-x-md-1{padding-right:.25rem!important}.padding-bottom-md-1,.padding-y-md-1{padding-bottom:.25rem!important}.padding-left-md-1,.padding-x-md-1{padding-left:.25rem!important}.padding-md-2{padding:.5rem!important}.padding-top-md-2,.padding-y-md-2{padding-top:.5rem!important}.padding-right-md-2,.padding-x-md-2{padding-right:.5rem!important}.padding-bottom-md-2,.padding-y-md-2{padding-bottom:.5rem!important}.padding-left-md-2,.padding-x-md-2{padding-left:.5rem!important}.padding-md-3{padding:1rem!important}.padding-top-md-3,.padding-y-md-3{padding-top:1rem!important}.padding-right-md-3,.padding-x-md-3{padding-right:1rem!important}.padding-bottom-md-3,.padding-y-md-3{padding-bottom:1rem!important}.padding-left-md-3,.padding-x-md-3{padding-left:1rem!important}.padding-md-4{padding:2rem!important}.padding-top-md-4,.padding-y-md-4{padding-top:2rem!important}.padding-right-md-4,.padding-x-md-4{padding-right:2rem!important}.padding-bottom-md-4,.padding-y-md-4{padding-bottom:2rem!important}.padding-left-md-4,.padding-x-md-4{padding-left:2rem!important}.padding-md-5{padding:4rem!important}.padding-top-md-5,.padding-y-md-5{padding-top:4rem!important}.padding-right-md-5,.padding-x-md-5{padding-right:4rem!important}.padding-bottom-md-5,.padding-y-md-5{padding-bottom:4rem!important}.padding-left-md-5,.padding-x-md-5{padding-left:4rem!important}.margin-md-n1{margin:-.25rem!important}.margin-top-md-n1,.margin-y-md-n1{margin-top:-.25rem!important}.margin-right-md-n1,.margin-x-md-n1{margin-right:-.25rem!important}.margin-bottom-md-n1,.margin-y-md-n1{margin-bottom:-.25rem!important}.margin-left-md-n1,.margin-x-md-n1{margin-left:-.25rem!important}.margin-md-n2{margin:-.5rem!important}.margin-top-md-n2,.margin-y-md-n2{margin-top:-.5rem!important}.margin-right-md-n2,.margin-x-md-n2{margin-right:-.5rem!important}.margin-bottom-md-n2,.margin-y-md-n2{margin-bottom:-.5rem!important}.margin-left-md-n2,.margin-x-md-n2{margin-left:-.5rem!important}.margin-md-n3{margin:-1rem!important}.margin-top-md-n3,.margin-y-md-n3{margin-top:-1rem!important}.margin-right-md-n3,.margin-x-md-n3{margin-right:-1rem!important}.margin-bottom-md-n3,.margin-y-md-n3{margin-bottom:-1rem!important}.margin-left-md-n3,.margin-x-md-n3{margin-left:-1rem!important}.margin-md-n4{margin:-2rem!important}.margin-top-md-n4,.margin-y-md-n4{margin-top:-2rem!important}.margin-right-md-n4,.margin-x-md-n4{margin-right:-2rem!important}.margin-bottom-md-n4,.margin-y-md-n4{margin-bottom:-2rem!important}.margin-left-md-n4,.margin-x-md-n4{margin-left:-2rem!important}.margin-md-n5{margin:-4rem!important}.margin-top-md-n5,.margin-y-md-n5{margin-top:-4rem!important}.margin-right-md-n5,.margin-x-md-n5{margin-right:-4rem!important}.margin-bottom-md-n5,.margin-y-md-n5{margin-bottom:-4rem!important}.margin-left-md-n5,.margin-x-md-n5{margin-left:-4rem!important}.margin-md-auto{margin:auto!important}.margin-top-md-auto,.margin-y-md-auto{margin-top:auto!important}.margin-right-md-auto,.margin-x-md-auto{margin-right:auto!important}.margin-bottom-md-auto,.margin-y-md-auto{margin-bottom:auto!important}.margin-left-md-auto,.margin-x-md-auto{margin-left:auto!important}}@media (min-width:992px){.margin-lg-0{margin:0!important}.margin-top-lg-0,.margin-y-lg-0{margin-top:0!important}.margin-right-lg-0,.margin-x-lg-0{margin-right:0!important}.margin-bottom-lg-0,.margin-y-lg-0{margin-bottom:0!important}.margin-left-lg-0,.margin-x-lg-0{margin-left:0!important}.margin-lg-1{margin:.25rem!important}.margin-top-lg-1,.margin-y-lg-1{margin-top:.25rem!important}.margin-right-lg-1,.margin-x-lg-1{margin-right:.25rem!important}.margin-bottom-lg-1,.margin-y-lg-1{margin-bottom:.25rem!important}.margin-left-lg-1,.margin-x-lg-1{margin-left:.25rem!important}.margin-lg-2{margin:.5rem!important}.margin-top-lg-2,.margin-y-lg-2{margin-top:.5rem!important}.margin-right-lg-2,.margin-x-lg-2{margin-right:.5rem!important}.margin-bottom-lg-2,.margin-y-lg-2{margin-bottom:.5rem!important}.margin-left-lg-2,.margin-x-lg-2{margin-left:.5rem!important}.margin-lg-3{margin:1rem!important}.margin-top-lg-3,.margin-y-lg-3{margin-top:1rem!important}.margin-right-lg-3,.margin-x-lg-3{margin-right:1rem!important}.margin-bottom-lg-3,.margin-y-lg-3{margin-bottom:1rem!important}.margin-left-lg-3,.margin-x-lg-3{margin-left:1rem!important}.margin-lg-4{margin:2rem!important}.margin-top-lg-4,.margin-y-lg-4{margin-top:2rem!important}.margin-right-lg-4,.margin-x-lg-4{margin-right:2rem!important}.margin-bottom-lg-4,.margin-y-lg-4{margin-bottom:2rem!important}.margin-left-lg-4,.margin-x-lg-4{margin-left:2rem!important}.margin-lg-5{margin:4rem!important}.margin-top-lg-5,.margin-y-lg-5{margin-top:4rem!important}.margin-right-lg-5,.margin-x-lg-5{margin-right:4rem!important}.margin-bottom-lg-5,.margin-y-lg-5{margin-bottom:4rem!important}.margin-left-lg-5,.margin-x-lg-5{margin-left:4rem!important}.padding-lg-0{padding:0!important}.padding-top-lg-0,.padding-y-lg-0{padding-top:0!important}.padding-right-lg-0,.padding-x-lg-0{padding-right:0!important}.padding-bottom-lg-0,.padding-y-lg-0{padding-bottom:0!important}.padding-left-lg-0,.padding-x-lg-0{padding-left:0!important}.padding-lg-1{padding:.25rem!important}.padding-top-lg-1,.padding-y-lg-1{padding-top:.25rem!important}.padding-right-lg-1,.padding-x-lg-1{padding-right:.25rem!important}.padding-bottom-lg-1,.padding-y-lg-1{padding-bottom:.25rem!important}.padding-left-lg-1,.padding-x-lg-1{padding-left:.25rem!important}.padding-lg-2{padding:.5rem!important}.padding-top-lg-2,.padding-y-lg-2{padding-top:.5rem!important}.padding-right-lg-2,.padding-x-lg-2{padding-right:.5rem!important}.padding-bottom-lg-2,.padding-y-lg-2{padding-bottom:.5rem!important}.padding-left-lg-2,.padding-x-lg-2{padding-left:.5rem!important}.padding-lg-3{padding:1rem!important}.padding-top-lg-3,.padding-y-lg-3{padding-top:1rem!important}.padding-right-lg-3,.padding-x-lg-3{padding-right:1rem!important}.padding-bottom-lg-3,.padding-y-lg-3{padding-bottom:1rem!important}.padding-left-lg-3,.padding-x-lg-3{padding-left:1rem!important}.padding-lg-4{padding:2rem!important}.padding-top-lg-4,.padding-y-lg-4{padding-top:2rem!important}.padding-right-lg-4,.padding-x-lg-4{padding-right:2rem!important}.padding-bottom-lg-4,.padding-y-lg-4{padding-bottom:2rem!important}.padding-left-lg-4,.padding-x-lg-4{padding-left:2rem!important}.padding-lg-5{padding:4rem!important}.padding-top-lg-5,.padding-y-lg-5{padding-top:4rem!important}.padding-right-lg-5,.padding-x-lg-5{padding-right:4rem!important}.padding-bottom-lg-5,.padding-y-lg-5{padding-bottom:4rem!important}.padding-left-lg-5,.padding-x-lg-5{padding-left:4rem!important}.margin-lg-n1{margin:-.25rem!important}.margin-top-lg-n1,.margin-y-lg-n1{margin-top:-.25rem!important}.margin-right-lg-n1,.margin-x-lg-n1{margin-right:-.25rem!important}.margin-bottom-lg-n1,.margin-y-lg-n1{margin-bottom:-.25rem!important}.margin-left-lg-n1,.margin-x-lg-n1{margin-left:-.25rem!important}.margin-lg-n2{margin:-.5rem!important}.margin-top-lg-n2,.margin-y-lg-n2{margin-top:-.5rem!important}.margin-right-lg-n2,.margin-x-lg-n2{margin-right:-.5rem!important}.margin-bottom-lg-n2,.margin-y-lg-n2{margin-bottom:-.5rem!important}.margin-left-lg-n2,.margin-x-lg-n2{margin-left:-.5rem!important}.margin-lg-n3{margin:-1rem!important}.margin-top-lg-n3,.margin-y-lg-n3{margin-top:-1rem!important}.margin-right-lg-n3,.margin-x-lg-n3{margin-right:-1rem!important}.margin-bottom-lg-n3,.margin-y-lg-n3{margin-bottom:-1rem!important}.margin-left-lg-n3,.margin-x-lg-n3{margin-left:-1rem!important}.margin-lg-n4{margin:-2rem!important}.margin-top-lg-n4,.margin-y-lg-n4{margin-top:-2rem!important}.margin-right-lg-n4,.margin-x-lg-n4{margin-right:-2rem!important}.margin-bottom-lg-n4,.margin-y-lg-n4{margin-bottom:-2rem!important}.margin-left-lg-n4,.margin-x-lg-n4{margin-left:-2rem!important}.margin-lg-n5{margin:-4rem!important}.margin-top-lg-n5,.margin-y-lg-n5{margin-top:-4rem!important}.margin-right-lg-n5,.margin-x-lg-n5{margin-right:-4rem!important}.margin-bottom-lg-n5,.margin-y-lg-n5{margin-bottom:-4rem!important}.margin-left-lg-n5,.margin-x-lg-n5{margin-left:-4rem!important}.margin-lg-auto{margin:auto!important}.margin-top-lg-auto,.margin-y-lg-auto{margin-top:auto!important}.margin-right-lg-auto,.margin-x-lg-auto{margin-right:auto!important}.margin-bottom-lg-auto,.margin-y-lg-auto{margin-bottom:auto!important}.margin-left-lg-auto,.margin-x-lg-auto{margin-left:auto!important}}@media (min-width:1200px){.margin-xl-0{margin:0!important}.margin-top-xl-0,.margin-y-xl-0{margin-top:0!important}.margin-right-xl-0,.margin-x-xl-0{margin-right:0!important}.margin-bottom-xl-0,.margin-y-xl-0{margin-bottom:0!important}.margin-left-xl-0,.margin-x-xl-0{margin-left:0!important}.margin-xl-1{margin:.25rem!important}.margin-top-xl-1,.margin-y-xl-1{margin-top:.25rem!important}.margin-right-xl-1,.margin-x-xl-1{margin-right:.25rem!important}.margin-bottom-xl-1,.margin-y-xl-1{margin-bottom:.25rem!important}.margin-left-xl-1,.margin-x-xl-1{margin-left:.25rem!important}.margin-xl-2{margin:.5rem!important}.margin-top-xl-2,.margin-y-xl-2{margin-top:.5rem!important}.margin-right-xl-2,.margin-x-xl-2{margin-right:.5rem!important}.margin-bottom-xl-2,.margin-y-xl-2{margin-bottom:.5rem!important}.margin-left-xl-2,.margin-x-xl-2{margin-left:.5rem!important}.margin-xl-3{margin:1rem!important}.margin-top-xl-3,.margin-y-xl-3{margin-top:1rem!important}.margin-right-xl-3,.margin-x-xl-3{margin-right:1rem!important}.margin-bottom-xl-3,.margin-y-xl-3{margin-bottom:1rem!important}.margin-left-xl-3,.margin-x-xl-3{margin-left:1rem!important}.margin-xl-4{margin:2rem!important}.margin-top-xl-4,.margin-y-xl-4{margin-top:2rem!important}.margin-right-xl-4,.margin-x-xl-4{margin-right:2rem!important}.margin-bottom-xl-4,.margin-y-xl-4{margin-bottom:2rem!important}.margin-left-xl-4,.margin-x-xl-4{margin-left:2rem!important}.margin-xl-5{margin:4rem!important}.margin-top-xl-5,.margin-y-xl-5{margin-top:4rem!important}.margin-right-xl-5,.margin-x-xl-5{margin-right:4rem!important}.margin-bottom-xl-5,.margin-y-xl-5{margin-bottom:4rem!important}.margin-left-xl-5,.margin-x-xl-5{margin-left:4rem!important}.padding-xl-0{padding:0!important}.padding-top-xl-0,.padding-y-xl-0{padding-top:0!important}.padding-right-xl-0,.padding-x-xl-0{padding-right:0!important}.padding-bottom-xl-0,.padding-y-xl-0{padding-bottom:0!important}.padding-left-xl-0,.padding-x-xl-0{padding-left:0!important}.padding-xl-1{padding:.25rem!important}.padding-top-xl-1,.padding-y-xl-1{padding-top:.25rem!important}.padding-right-xl-1,.padding-x-xl-1{padding-right:.25rem!important}.padding-bottom-xl-1,.padding-y-xl-1{padding-bottom:.25rem!important}.padding-left-xl-1,.padding-x-xl-1{padding-left:.25rem!important}.padding-xl-2{padding:.5rem!important}.padding-top-xl-2,.padding-y-xl-2{padding-top:.5rem!important}.padding-right-xl-2,.padding-x-xl-2{padding-right:.5rem!important}.padding-bottom-xl-2,.padding-y-xl-2{padding-bottom:.5rem!important}.padding-left-xl-2,.padding-x-xl-2{padding-left:.5rem!important}.padding-xl-3{padding:1rem!important}.padding-top-xl-3,.padding-y-xl-3{padding-top:1rem!important}.padding-right-xl-3,.padding-x-xl-3{padding-right:1rem!important}.padding-bottom-xl-3,.padding-y-xl-3{padding-bottom:1rem!important}.padding-left-xl-3,.padding-x-xl-3{padding-left:1rem!important}.padding-xl-4{padding:2rem!important}.padding-top-xl-4,.padding-y-xl-4{padding-top:2rem!important}.padding-right-xl-4,.padding-x-xl-4{padding-right:2rem!important}.padding-bottom-xl-4,.padding-y-xl-4{padding-bottom:2rem!important}.padding-left-xl-4,.padding-x-xl-4{padding-left:2rem!important}.padding-xl-5{padding:4rem!important}.padding-top-xl-5,.padding-y-xl-5{padding-top:4rem!important}.padding-right-xl-5,.padding-x-xl-5{padding-right:4rem!important}.padding-bottom-xl-5,.padding-y-xl-5{padding-bottom:4rem!important}.padding-left-xl-5,.padding-x-xl-5{padding-left:4rem!important}.margin-xl-n1{margin:-.25rem!important}.margin-top-xl-n1,.margin-y-xl-n1{margin-top:-.25rem!important}.margin-right-xl-n1,.margin-x-xl-n1{margin-right:-.25rem!important}.margin-bottom-xl-n1,.margin-y-xl-n1{margin-bottom:-.25rem!important}.margin-left-xl-n1,.margin-x-xl-n1{margin-left:-.25rem!important}.margin-xl-n2{margin:-.5rem!important}.margin-top-xl-n2,.margin-y-xl-n2{margin-top:-.5rem!important}.margin-right-xl-n2,.margin-x-xl-n2{margin-right:-.5rem!important}.margin-bottom-xl-n2,.margin-y-xl-n2{margin-bottom:-.5rem!important}.margin-left-xl-n2,.margin-x-xl-n2{margin-left:-.5rem!important}.margin-xl-n3{margin:-1rem!important}.margin-top-xl-n3,.margin-y-xl-n3{margin-top:-1rem!important}.margin-right-xl-n3,.margin-x-xl-n3{margin-right:-1rem!important}.margin-bottom-xl-n3,.margin-y-xl-n3{margin-bottom:-1rem!important}.margin-left-xl-n3,.margin-x-xl-n3{margin-left:-1rem!important}.margin-xl-n4{margin:-2rem!important}.margin-top-xl-n4,.margin-y-xl-n4{margin-top:-2rem!important}.margin-right-xl-n4,.margin-x-xl-n4{margin-right:-2rem!important}.margin-bottom-xl-n4,.margin-y-xl-n4{margin-bottom:-2rem!important}.margin-left-xl-n4,.margin-x-xl-n4{margin-left:-2rem!important}.margin-xl-n5{margin:-4rem!important}.margin-top-xl-n5,.margin-y-xl-n5{margin-top:-4rem!important}.margin-right-xl-n5,.margin-x-xl-n5{margin-right:-4rem!important}.margin-bottom-xl-n5,.margin-y-xl-n5{margin-bottom:-4rem!important}.margin-left-xl-n5,.margin-x-xl-n5{margin-left:-4rem!important}.margin-xl-auto{margin:auto!important}.margin-top-xl-auto,.margin-y-xl-auto{margin-top:auto!important}.margin-right-xl-auto,.margin-x-xl-auto{margin-right:auto!important}.margin-bottom-xl-auto,.margin-y-xl-auto{margin-bottom:auto!important}.margin-left-xl-auto,.margin-x-xl-auto{margin-left:auto!important}}.h1{font-size:2em}.h2{font-size:1.5em}.h3{font-size:1.17em}.h4{font-size:1em}.h5{font-size:.83em}.h6{font-size:.67em}.cursor-alias{cursor:alias}.cursor-all-scroll{cursor:all-scroll}.cursor-auto{cursor:auto}.cursor-cell{cursor:cell}.cursor-context-menu{cursor:context-menu}.cursor-col-resize{cursor:col-resize}.cursor-copy{cursor:copy}.cursor-crosshair{cursor:crosshair}.cursor-default{cursor:default}.cursor-e-resize{cursor:e-resize}.cursor-ew-resize{cursor:ew-resize}.cursor-grab{cursor:-webkit-grab;cursor:grab}.cursor-grabbing{cursor:-webkit-grabbing;cursor:grabbing}.cursor-help{cursor:help}.cursor-move{cursor:move}.cursor-n-resize{cursor:n-resize}.cursor-ne-resize{cursor:ne-resize}.cursor-nesw-resize{cursor:nesw-resize}.cursor-ns-resize{cursor:ns-resize}.cursor-nw-resize{cursor:nw-resize}.cursor-nwse-resize{cursor:nwse-resize}.cursor-no-drop{cursor:no-drop}.cursor-none{cursor:none}.cursor-not-allowed{cursor:not-allowed}.cursor-pointer{cursor:pointer}.cursor-progress{cursor:progress}.cursor-row-resize{cursor:row-resize}.cursor-s-resize{cursor:s-resize}.cursor-se-resize{cursor:se-resize}.cursor-sw-resize{cursor:sw-resize}.cursor-text{cursor:text}.cursor-w-resize{cursor:w-resize}.cursor-wait{cursor:wait}.cursor-zoom-in{cursor:zoom-in}.cursor-zoom-out{cursor:zoom-out}.mat-tooltip{font-size:15px!important}body,html{height:100%}body{font-family:opens sans regular,sans-serif;margin:0;padding:0}iframe{border:none}.mat-badge-content{font-family:Roboto,Helvetica Neue,sans-serif;font-size:12px;font-weight:600}.mat-badge-small .mat-badge-content{font-size:9px}.mat-badge-large .mat-badge-content{font-size:24px}.mat-h1,.mat-headline,.mat-typography h1{font:400 24px/32px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal;margin:0 0 16px}.mat-h2,.mat-title,.mat-typography h2{font:500 20px/32px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal;margin:0 0 16px}.mat-h3,.mat-subheading-2,.mat-typography h3{font:400 16px/28px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal;margin:0 0 16px}.mat-h4,.mat-subheading-1,.mat-typography h4{font:400 15px/24px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal;margin:0 0 16px}.mat-h5,.mat-typography h5{font:400 11.62px/20px Roboto,Helvetica Neue,sans-serif;margin:0 0 12px}.mat-h6,.mat-typography h6{font:400 9.38px/20px Roboto,Helvetica Neue,sans-serif;margin:0 0 12px}.mat-body-2,.mat-body-strong{font:500 14px/24px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal}.mat-body,.mat-body-1,.mat-typography{font:400 14px/20px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal}.mat-body-1 p,.mat-body p,.mat-typography p{margin:0 0 12px}.mat-caption,.mat-small{font:400 12px/20px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal}.mat-display-4,.mat-typography .mat-display-4{font:300 112px/112px Roboto,Helvetica Neue,sans-serif;letter-spacing:-.05em;margin:0 0 56px}.mat-display-3,.mat-typography .mat-display-3{font:400 56px/56px Roboto,Helvetica Neue,sans-serif;letter-spacing:-.02em;margin:0 0 64px}.mat-display-2,.mat-typography .mat-display-2{font:400 45px/48px Roboto,Helvetica Neue,sans-serif;letter-spacing:-.005em;margin:0 0 64px}.mat-display-1,.mat-typography .mat-display-1{font:400 34px/40px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal;margin:0 0 64px}.mat-bottom-sheet-container{font:400 14px/20px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal}.mat-button,.mat-fab,.mat-flat-button,.mat-icon-button,.mat-mini-fab,.mat-raised-button,.mat-stroked-button{font-family:Roboto,Helvetica Neue,sans-serif;font-size:14px;font-weight:500}.mat-button-toggle,.mat-card{font-family:Roboto,Helvetica Neue,sans-serif}.mat-card-title{font-size:24px;font-weight:500}.mat-card-header .mat-card-title{font-size:20px}.mat-card-content,.mat-card-subtitle{font-size:14px}.mat-checkbox{font-family:Roboto,Helvetica Neue,sans-serif}.mat-checkbox-layout .mat-checkbox-label{line-height:24px}.mat-chip{font-size:14px;font-weight:500}.mat-chip .mat-chip-remove.mat-icon,.mat-chip .mat-chip-trailing-icon.mat-icon{font-size:18px}.mat-table{font-family:Roboto,Helvetica Neue,sans-serif}.mat-header-cell{font-size:12px;font-weight:500}.mat-cell,.mat-footer-cell{font-size:14px}.mat-calendar{font-family:Roboto,Helvetica Neue,sans-serif}.mat-calendar-body{font-size:13px}.mat-calendar-body-label,.mat-calendar-period-button{font-size:14px;font-weight:500}.mat-calendar-table-header th{font-size:11px;font-weight:400}.mat-dialog-title{font:500 20px/32px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal}.mat-expansion-panel-header{font-family:Roboto,Helvetica Neue,sans-serif;font-size:15px;font-weight:400}.mat-expansion-panel-content{font:400 14px/20px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal}.mat-form-field{font-family:Roboto,Helvetica Neue,sans-serif;font-size:inherit;font-weight:400;letter-spacing:normal;line-height:1.125}.mat-form-field-wrapper{padding-bottom:1.34375em}.mat-form-field-prefix .mat-icon,.mat-form-field-suffix .mat-icon{font-size:150%;line-height:1.125}.mat-form-field-prefix .mat-icon-button,.mat-form-field-suffix .mat-icon-button{height:1.5em;width:1.5em}.mat-form-field-prefix .mat-icon-button .mat-icon,.mat-form-field-suffix .mat-icon-button .mat-icon{height:1.125em;line-height:1.125}.mat-form-field-infix{border-top:.84375em solid transparent;padding:.5em 0}.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,.mat-form-field-can-float .mat-input-server:focus+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.34375em) scale(.75);width:133.3333333333%}.mat-form-field-can-float .mat-input-server[label]:not(:label-shown)+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.34374em) scale(.75);width:133.3333433333%}.mat-form-field-label-wrapper{padding-top:.84375em;top:-.84375em}.mat-form-field-label{top:1.34375em}.mat-form-field-underline{bottom:1.34375em}.mat-form-field-subscript-wrapper{font-size:75%;margin-top:.6666666667em;top:calc(100% - 1.79167em)}.mat-form-field-appearance-legacy .mat-form-field-wrapper{padding-bottom:1.25em}.mat-form-field-appearance-legacy .mat-form-field-infix{padding:.4375em 0}.mat-form-field-appearance-legacy.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server:focus+.mat-form-field-label-wrapper .mat-form-field-label{-ms-transform:translateY(-1.28125em) scale(.75);transform:translateY(-1.28125em) scale(.75) perspective(100px) translateZ(.001px);width:133.3333333333%}.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-form-field-autofill-control:-webkit-autofill+.mat-form-field-label-wrapper .mat-form-field-label{-ms-transform:translateY(-1.28124em) scale(.75);transform:translateY(-1.28125em) scale(.75) perspective(100px) translateZ(.00101px);width:133.3333433333%}.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server[label]:not(:label-shown)+.mat-form-field-label-wrapper .mat-form-field-label{-ms-transform:translateY(-1.28123em) scale(.75);transform:translateY(-1.28125em) scale(.75) perspective(100px) translateZ(.00102px);width:133.3333533333%}.mat-form-field-appearance-legacy .mat-form-field-label{top:1.28125em}.mat-form-field-appearance-legacy .mat-form-field-underline{bottom:1.25em}.mat-form-field-appearance-legacy .mat-form-field-subscript-wrapper{margin-top:.5416666667em;top:calc(100% - 1.66667em)}@media print{.mat-form-field-appearance-legacy.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server:focus+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.28122em) scale(.75)}.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-form-field-autofill-control:-webkit-autofill+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.28121em) scale(.75)}.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server[label]:not(:label-shown)+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.2812em) scale(.75)}}.mat-form-field-appearance-fill .mat-form-field-infix{padding:.25em 0 .75em}.mat-form-field-appearance-fill .mat-form-field-label{margin-top:-.5em;top:1.09375em}.mat-form-field-appearance-fill.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,.mat-form-field-appearance-fill.mat-form-field-can-float .mat-input-server:focus+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-.59375em) scale(.75);width:133.3333333333%}.mat-form-field-appearance-fill.mat-form-field-can-float .mat-input-server[label]:not(:label-shown)+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-.59374em) scale(.75);width:133.3333433333%}.mat-form-field-appearance-outline .mat-form-field-infix{padding:1em 0}.mat-form-field-appearance-outline .mat-form-field-label{margin-top:-.25em;top:1.84375em}.mat-form-field-appearance-outline.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,.mat-form-field-appearance-outline.mat-form-field-can-float .mat-input-server:focus+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.59375em) scale(.75);width:133.3333333333%}.mat-form-field-appearance-outline.mat-form-field-can-float .mat-input-server[label]:not(:label-shown)+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.59374em) scale(.75);width:133.3333433333%}.mat-grid-tile-footer,.mat-grid-tile-header{font-size:14px}.mat-grid-tile-footer .mat-line,.mat-grid-tile-header .mat-line{box-sizing:border-box;display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.mat-grid-tile-footer .mat-line:nth-child(n+2),.mat-grid-tile-header .mat-line:nth-child(n+2){font-size:12px}input.mat-input-element{margin-top:-.0625em}.mat-menu-item{font-family:Roboto,Helvetica Neue,sans-serif;font-size:14px;font-weight:400}.mat-paginator,.mat-paginator-page-size .mat-select-trigger{font-family:Roboto,Helvetica Neue,sans-serif;font-size:12px}.mat-radio-button,.mat-select{font-family:Roboto,Helvetica Neue,sans-serif}.mat-select-trigger{height:1.125em}.mat-slide-toggle-content,.mat-slider-thumb-label-text{font-family:Roboto,Helvetica Neue,sans-serif}.mat-slider-thumb-label-text{font-size:12px;font-weight:500}.mat-stepper-horizontal,.mat-stepper-vertical{font-family:Roboto,Helvetica Neue,sans-serif}.mat-step-label{font-size:14px;font-weight:400}.mat-step-sub-label-error{font-weight:400}.mat-step-label-error{font-size:14px}.mat-step-label-selected{font-size:14px;font-weight:500}.mat-tab-group,.mat-tab-label,.mat-tab-link{font-family:Roboto,Helvetica Neue,sans-serif}.mat-tab-label,.mat-tab-link{font-size:14px;font-weight:500}.mat-toolbar,.mat-toolbar h1,.mat-toolbar h2,.mat-toolbar h3,.mat-toolbar h4,.mat-toolbar h5,.mat-toolbar h6{font:500 20px/32px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal;margin:0}.mat-tooltip{font-family:Roboto,Helvetica Neue,sans-serif;font-size:10px;padding-bottom:6px;padding-top:6px}.mat-tooltip-handset{font-size:14px;padding-bottom:8px;padding-top:8px}.mat-list-item,.mat-list-option{font-family:Roboto,Helvetica Neue,sans-serif}.mat-list-base .mat-list-item{font-size:16px}.mat-list-base .mat-list-item .mat-line{box-sizing:border-box;display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.mat-list-base .mat-list-item .mat-line:nth-child(n+2){font-size:14px}.mat-list-base .mat-list-option{font-size:16px}.mat-list-base .mat-list-option .mat-line{box-sizing:border-box;display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.mat-list-base .mat-list-option .mat-line:nth-child(n+2){font-size:14px}.mat-list-base .mat-subheader{font-family:Roboto,Helvetica Neue,sans-serif;font-size:14px;font-weight:500}.mat-list-base[dense] .mat-list-item{font-size:12px}.mat-list-base[dense] .mat-list-item .mat-line{box-sizing:border-box;display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.mat-list-base[dense] .mat-list-item .mat-line:nth-child(n+2),.mat-list-base[dense] .mat-list-option{font-size:12px}.mat-list-base[dense] .mat-list-option .mat-line{box-sizing:border-box;display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.mat-list-base[dense] .mat-list-option .mat-line:nth-child(n+2){font-size:12px}.mat-list-base[dense] .mat-subheader{font-family:Roboto,Helvetica Neue,sans-serif;font-size:12px;font-weight:500}.mat-option{font-family:Roboto,Helvetica Neue,sans-serif;font-size:16px}.mat-optgroup-label{font:500 14px/24px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal}.mat-simple-snackbar{font-family:Roboto,Helvetica Neue,sans-serif;font-size:14px}.mat-simple-snackbar-action{font-family:inherit;font-size:inherit;font-weight:500;line-height:1}.mat-tree{font-family:Roboto,Helvetica Neue,sans-serif}.mat-nested-tree-node,.mat-tree-node{font-size:14px;font-weight:400}.mat-ripple{overflow:hidden;position:relative}.mat-ripple:not(:empty){transform:translateZ(0)}.mat-ripple.mat-ripple-unbounded{overflow:visible}.mat-ripple-element{border-radius:50%;pointer-events:none;position:absolute;transform:scale(0);transition:opacity,transform 0ms cubic-bezier(0,0,.2,1)}.cdk-high-contrast-active .mat-ripple-element{display:none}.cdk-visually-hidden{-moz-appearance:none;-webkit-appearance:none;border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;outline:0;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.cdk-global-overlay-wrapper,.cdk-overlay-container{height:100%;left:0;pointer-events:none;top:0;width:100%}.cdk-overlay-container{position:fixed;z-index:1000}.cdk-overlay-container:empty{display:none}.cdk-global-overlay-wrapper,.cdk-overlay-pane{display:flex;position:absolute;z-index:1000}.cdk-overlay-pane{box-sizing:border-box;max-height:100%;max-width:100%;pointer-events:auto}.cdk-overlay-backdrop{-webkit-tap-highlight-color:transparent;bottom:0;left:0;opacity:0;pointer-events:auto;position:absolute;right:0;top:0;transition:opacity .4s cubic-bezier(.25,.8,.25,1);z-index:1000}.cdk-overlay-backdrop.cdk-overlay-backdrop-showing{opacity:1}.cdk-high-contrast-active .cdk-overlay-backdrop.cdk-overlay-backdrop-showing{opacity:.6}.cdk-overlay-dark-backdrop{background:rgba(0,0,0,.32)}.cdk-overlay-transparent-backdrop,.cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing{opacity:0}.cdk-overlay-connected-position-bounding-box{display:flex;flex-direction:column;min-height:1px;min-width:1px;position:absolute;z-index:1000}.cdk-global-scrollblock{overflow-y:scroll;position:fixed;width:100%}@-webkit-keyframes cdk-text-field-autofill-start{\n /*!*/}@keyframes cdk-text-field-autofill-start{\n /*!*/}@-webkit-keyframes cdk-text-field-autofill-end{\n /*!*/}@keyframes cdk-text-field-autofill-end{\n /*!*/}.cdk-text-field-autofill-monitored:-webkit-autofill{-webkit-animation:cdk-text-field-autofill-start 0s 1ms;animation:cdk-text-field-autofill-start 0s 1ms}.cdk-text-field-autofill-monitored:not(:-webkit-autofill){-webkit-animation:cdk-text-field-autofill-end 0s 1ms;animation:cdk-text-field-autofill-end 0s 1ms}textarea.cdk-textarea-autosize{resize:none}textarea.cdk-textarea-autosize-measuring{box-sizing:content-box!important;height:auto!important;overflow:hidden!important;padding:2px 0!important}textarea.cdk-textarea-autosize-measuring-firefox{box-sizing:content-box!important;height:0!important;padding:2px 0!important}.mat-focus-indicator,.mat-mdc-focus-indicator{position:relative}.header,.title{font-family:Encode Sans Condensed,sans-serif;font-weight:900}.paragraph-title,.tagline{font-family:Open Sans,sans-serif;font-weight:400}.paragraph-title-bold .tagLine-bold{font-family:Open Sans,sans-serif;font-weight:700}.plain-text,.remarks{font-family:Open Sans,sans-serif;font-weight:300}.plain-text-bold{font-family:Open Sans,sans-serif;font-weight:700}.flex-column{flex-direction:column}.flex-column,.flex-row{box-sizing:border-box;display:flex}.flex-row{flex-direction:row}.flex-row-center{align-items:center;justify-content:center}.mat-button-large{font-size:18px;font-weight:700;line-height:48px;padding:0 24px!important}.mat-round{border-radius:.5em}:root{--background:#050505;--cyan-accent:rgba(132,255,255,0.75);--green-accent:#00e676;--initial-accent:#9cd8d7;--initial-dark-background:#222;--initial-dark-text:hsla(0,0%,100%,0.87);--initial-light-background:#f2f2f2;--initial-light-background:#fff;--initial-light-text:rgba(0,0,0,0.87);--initial-primary:#4a918e;--initial-warn:#ef4351;--orange-accent:#ff9800;--pink-accent:#e91e63;--purple-accent:#9c27b0;--success:#00e676;--yellow-accent:#fdd835}body{background-color:var(--initial-dark-background)}::ng-deep .mat-tooltip{font-size:16px!important}:host .valid-control{color:var(--green-accent)}:host .invalid-control{color:var(--theme-warn-500)}:host .actions .item:not(:last-child){margin-right:0}:host .project-thumbnail img{height:50px;width:auto}:host .active{background-color:var(--theme-accent-400)}:host .active,:host .inactive{transition:background-color 1s linear}:host .inactive{background-color:rgba(242,245,169,0)}:host .expansion-panel{margin-bottom:10px;width:100%}:host .expansion-container{max-height:300px;overflow-y:auto}:host .divider-fill-vert{background-color:var(--theme-accent-500);bottom:10%;min-height:100%;min-width:5px;top:10%}:host .divider-fill-hor{background-color:var(--theme-accent-500);height:5px;width:100%}:host .form-disabled{background-color:#797979;border-radius:4px;opacity:.5}::ng-deep input:-webkit-autofill,input:-webkit-autofill:active,input:-webkit-autofill:focus,input:-webkit-autofill:hover{-webkit-text-fill-color:hsla(0,0%,100%,.8705882352941177);-webkit-transition:background-color 5000s ease-in-out 0s;transition:background-color 5000s ease-in-out 0s}@media (max-width:768px){.spread{margin:1em!important}}@media (max-width:480px){.spread{margin:.5em!important}}.spinner-logo{display:none!important}"]
57
+ },] }
58
+ ];
59
+ DynamicTabsComponent.ctorParameters = () => [
60
+ { type: ComponentFactoryResolver },
61
+ { type: FormsService }
62
+ ];
63
+ DynamicTabsComponent.propDecorators = {
64
+ viewContainer: [{ type: ViewChild, args: ['container', { read: ViewContainerRef, static: false },] }],
65
+ BackgroundColor: [{ type: Input, args: ['background-color',] }],
66
+ Color: [{ type: Input, args: ['color',] }],
67
+ TabComponents: [{ type: Input, args: ['tab-components',] }]
68
+ };
69
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZHluYW1pYy10YWJzLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIvaG9tZS9ydW5uZXIvd29yay9hcHBsaWNhdGlvbnMtZmxvdy9hcHBsaWNhdGlvbnMtZmxvdy9wcm9qZWN0cy9jb21tb24vc3JjLyIsInNvdXJjZXMiOlsibGliL2VsZW1lbnRzL2R5bmFtaWMtdGFicy9keW5hbWljLXRhYnMuY29tcG9uZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxnQ0FBZ0MsQ0FBQztBQUc5RCxPQUFPLEVBRUwsU0FBUyxFQUVULHdCQUF3QixFQUV4QixLQUFLLEVBRUwsU0FBUyxFQUNULGdCQUFnQixFQUFFLE1BQU0sZUFBZSxDQUFDO0FBUzFDLE1BQU0sT0FBTyxvQkFBb0I7SUE4Qi9CLFlBQ1ksd0JBQWtELEVBQ2xELFlBQTBCO1FBRDFCLDZCQUF3QixHQUF4Qix3QkFBd0IsQ0FBMEI7UUFDbEQsaUJBQVksR0FBWixZQUFZLENBQWM7SUFBSSxDQUFDO0lBRTNDLGlCQUFpQjtJQUNWLFFBQVE7UUFFYixxRkFBcUY7UUFDckYsSUFBSSxDQUFDLHVCQUF1QixHQUFHLElBQUksQ0FBQyxZQUFZLENBQUMsV0FBVyxDQUFDLFNBQVMsQ0FDcEUsQ0FBQyxHQUFZLEVBQUUsRUFBRTtZQUNmLElBQUksQ0FBQyxXQUFXLEdBQUcsR0FBRyxDQUFDO1FBQzNCLENBQUMsQ0FBQyxDQUFDO0lBQ0wsQ0FBQztJQUVNLGVBQWU7UUFDcEIsSUFBSSxDQUFDLGVBQWUsQ0FBQyxDQUFDLENBQUMsQ0FBQztJQUMxQixDQUFDO0lBRUQ7Ozs7T0FJRztJQUNJLFVBQVUsQ0FBQyxHQUFzQjtRQUV0QyxVQUFVLENBQUMsR0FBRyxFQUFFO1lBQ1osSUFBSSxDQUFDLGVBQWUsQ0FBQyxHQUFHLENBQUMsS0FBSyxDQUFDLENBQUM7UUFDcEMsQ0FBQyxFQUFFLElBQUksQ0FBQyxDQUFDO0lBQ1gsQ0FBQztJQUVEOzs7O09BSUc7SUFDTyxlQUFlLENBQUMsS0FBYTtRQUVuQyxJQUFJLENBQUMsSUFBSSxDQUFDLGFBQWEsRUFBRTtZQUN2QixPQUFPO1NBQ1I7UUFFRCwyQ0FBMkM7UUFDM0MsTUFBTSxPQUFPLEdBQTBCLElBQUksQ0FBQyx3QkFBd0I7YUFDbkUsdUJBQXVCLENBQUMsSUFBSSxDQUFDLGFBQWEsQ0FBQyxLQUFLLENBQUMsQ0FBQyxTQUFTLENBQUMsQ0FBQztRQUU5RCxpQ0FBaUM7UUFDakMsTUFBTSxZQUFZLEdBQXNCLElBQUksQ0FBQyxhQUFhLENBQUMsZUFBZSxDQUFDLE9BQU8sQ0FBQyxDQUFDO1FBRXBGLDZCQUE2QjtRQUM3QixNQUFNLFFBQVEsR0FBeUIsWUFBWSxDQUFDLFFBQWdDLENBQUM7UUFFckYsK0RBQStEO1FBQy9ELElBQUksQ0FBQyxhQUFhLENBQUMsSUFBSSxDQUFDLENBQUMsSUFBc0IsRUFBRSxFQUFFO1lBQ2pELElBQUksSUFBSSxDQUFDLFNBQVMsQ0FBQyxJQUFJLEtBQUssUUFBUSxDQUFDLFdBQVcsQ0FBQyxJQUFJLEVBQUU7Z0JBQ3JELFFBQVEsQ0FBQyxNQUFNLENBQUMsR0FBRyxJQUFJLENBQUMsSUFBSSxDQUFDO2FBQzlCO1FBQ0gsQ0FBQyxDQUFDLENBQUM7SUFDUCxDQUFDOzs7WUE3RkYsU0FBUyxTQUFDO2dCQUNULFFBQVEsRUFBRSxrQkFBa0I7Z0JBQzVCLG1yQkFBNEM7O2FBRTdDOzs7WUFaQyx3QkFBd0I7WUFQakIsWUFBWTs7OzRCQTBCbEIsU0FBUyxTQUFDLFdBQVcsRUFBRSxFQUFDLElBQUksRUFBRSxnQkFBZ0IsRUFBRSxNQUFNLEVBQUUsS0FBSyxFQUFDOzhCQUc5RCxLQUFLLFNBQUMsa0JBQWtCO29CQUd4QixLQUFLLFNBQUMsT0FBTzs0QkFnQmIsS0FBSyxTQUFDLGdCQUFnQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEZvcm1zU2VydmljZSB9IGZyb20gJy4vLi4vLi4vc2VydmljZXMvZm9ybXMuc2VydmljZSc7XG5pbXBvcnQgeyBTdWJzY3JpcHRpb24gfSBmcm9tICdyeGpzJztcbmltcG9ydCB7IER5bmFtaWNUYWJzTW9kZWwgfSBmcm9tICcuLy4uLy4uL21vZGVscy9keW5hbWljLXRhYnMubW9kZWwnO1xuaW1wb3J0IHsgXG4gIEFmdGVyVmlld0luaXQsIFxuICBDb21wb25lbnQsIFxuICBDb21wb25lbnRGYWN0b3J5LCBcbiAgQ29tcG9uZW50RmFjdG9yeVJlc29sdmVyLCBcbiAgQ29tcG9uZW50UmVmLCBcbiAgSW5wdXQsIFxuICBPbkluaXQsIFxuICBWaWV3Q2hpbGQsIFxuICBWaWV3Q29udGFpbmVyUmVmIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG4gIGltcG9ydCB7IE1hdFRhYkNoYW5nZUV2ZW50IH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvdGFicyc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2xjdS1keW5hbWljLXRhYnMnLFxuICB0ZW1wbGF0ZVVybDogJy4vZHluYW1pYy10YWJzLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vZHluYW1pYy10YWJzLmNvbXBvbmVudC5zY3NzJ11cbn0pXG5cbmV4cG9ydCBjbGFzcyBEeW5hbWljVGFic0NvbXBvbmVudCBpbXBsZW1lbnRzIE9uSW5pdCwgQWZ0ZXJWaWV3SW5pdCB7XG5cbiAgLyoqXG4gICAqIENvbnRhaW5lciB1c2VkIHRvIGRpc3BsYXkgZHluYW1pYyBjb21wb25lbnRzXG4gICAqL1xuICBAVmlld0NoaWxkKCdjb250YWluZXInLCB7cmVhZDogVmlld0NvbnRhaW5lclJlZiwgc3RhdGljOiBmYWxzZX0pXG4gIHByb3RlY3RlZCB2aWV3Q29udGFpbmVyOiBWaWV3Q29udGFpbmVyUmVmO1xuXG4gIEBJbnB1dCgnYmFja2dyb3VuZC1jb2xvcicpXG4gIHB1YmxpYyBCYWNrZ3JvdW5kQ29sb3I6IHN0cmluZztcblxuICBASW5wdXQoJ2NvbG9yJylcbiAgcHVibGljIENvbG9yOiBzdHJpbmc7XG5cbiAgLyoqXG4gICAqIEZvcm0gaXMgZGlydHkgZmxhZ1xuICAgKi9cbiAgcHVibGljIEZvcm1Jc0RpcnR5OiBib29sZWFuO1xuXG4gIC8qKlxuICAgKiBMaXN0ZW5lciBmb3Igd2hlbiBhbnkgZm9ybSBpcyBkaXJ0eVxuICAgKi9cbiAgcHJvdGVjdGVkIGZvcm1Jc0RpcnR5U3Vic2NyaXB0aW9uOiBTdWJzY3JpcHRpb247XG5cbiAgLyoqXG4gICAqIENvbXBvbmVudHMgbG9hZGVkIGFzIGR5bmFtaWMgY29tcG9uZW50c1xuICAgKi8gXG4gIEBJbnB1dCgndGFiLWNvbXBvbmVudHMnKVxuICBwdWJsaWMgVGFiQ29tcG9uZW50czogQXJyYXk8RHluYW1pY1RhYnNNb2RlbD47XG5cbiAgY29uc3RydWN0b3IoXG4gICAgcHJvdGVjdGVkIGNvbXBvbmVudEZhY3RvcnlSZXNvbHZlcjogQ29tcG9uZW50RmFjdG9yeVJlc29sdmVyLCBcbiAgICBwcm90ZWN0ZWQgZm9ybXNTZXJ2aWNlOiBGb3Jtc1NlcnZpY2UpIHsgfVxuXG4gIC8vIExpZmVjeWNsZSBob29rXG4gIHB1YmxpYyBuZ09uSW5pdCgpOiB2b2lkIHtcblxuICAgIC8vIGxpc3RlbiBmb3JtIGFueSBmb3JtIHRvIGJlIGRpcnR5LCB0aGVuIGRpc2FibGUgYWxsIHRhYnMgZXhjZXB0IGZvciB0aGUgY3VycmVudCB0YWJcbiAgICB0aGlzLmZvcm1Jc0RpcnR5U3Vic2NyaXB0aW9uID0gdGhpcy5mb3Jtc1NlcnZpY2UuRm9ybUlzRGlydHkuc3Vic2NyaWJlKFxuICAgICAgKHZhbDogYm9vbGVhbikgPT4ge1xuICAgICAgICB0aGlzLkZvcm1Jc0RpcnR5ID0gdmFsO1xuICAgIH0pO1xuICB9XG5cbiAgcHVibGljIG5nQWZ0ZXJWaWV3SW5pdCgpOiB2b2lkIHtcbiAgICB0aGlzLnJlbmRlckNvbXBvbmVudCgwKTtcbiAgfVxuXG4gIC8qKlxuICAgKiBUYWIgY2hhbmdlIGV2ZW50XG4gICAqXG4gICAqIEBwYXJhbSBpbmRleCBzZWxlY3RlZCB0YWIgaW5kZXhcbiAgICovXG4gIHB1YmxpYyBUYWJDaGFuZ2VkKGV2dDogTWF0VGFiQ2hhbmdlRXZlbnQpOiB2b2lkIHtcblxuICAgIHNldFRpbWVvdXQoKCkgPT4ge1xuICAgICAgICB0aGlzLnJlbmRlckNvbXBvbmVudChldnQuaW5kZXgpO1xuICAgIH0sIDEwMDApO1xuICB9XG5cbiAgLyoqXG4gICAqIFJlbmRlciBjb21wb25lbnQgZm9yIHRoZSBhY3RpdmUgdGFiXG4gICAqXG4gICAqIEBwYXJhbSBpbmRleCBUYWJDb21wb25lbnRzIGluZGV4IHBvc2l0aW9uXG4gICAqL1xuICBwcm90ZWN0ZWQgcmVuZGVyQ29tcG9uZW50KGluZGV4OiBudW1iZXIpIHtcblxuICAgICAgaWYgKCF0aGlzLlRhYkNvbXBvbmVudHMpIHtcbiAgICAgICAgcmV0dXJuO1xuICAgICAgfVxuXG4gICAgICAvLyBmYWN0b3J5IGZvciBjcmVhdGluZyBhIGR5bmFtaWMgY29tcG9uZW50XG4gICAgICBjb25zdCBmYWN0b3J5OiBDb21wb25lbnRGYWN0b3J5PGFueT4gPSB0aGlzLmNvbXBvbmVudEZhY3RvcnlSZXNvbHZlclxuICAgICAgLnJlc29sdmVDb21wb25lbnRGYWN0b3J5KHRoaXMuVGFiQ29tcG9uZW50c1tpbmRleF0uQ29tcG9uZW50KTtcblxuICAgICAgLy8gY29tcG9uZW50IGNyZWF0ZWQgYnkgYSBmYWN0b3J5XG4gICAgICBjb25zdCBjb21wb25lbnRSZWY6IENvbXBvbmVudFJlZjxhbnk+ID0gdGhpcy52aWV3Q29udGFpbmVyLmNyZWF0ZUNvbXBvbmVudChmYWN0b3J5KTtcblxuICAgICAgLy8gY3VycmVudCBjb21wb25lbnQgaW5zdGFuY2VcbiAgICAgIGNvbnN0IGluc3RhbmNlOiBEeW5hbWljVGFic0NvbXBvbmVudCA9IGNvbXBvbmVudFJlZi5pbnN0YW5jZSBhcyBEeW5hbWljVGFic0NvbXBvbmVudDtcblxuICAgICAgLy8gZmluZCB0aGUgY3VycmVudCBjb21wb25lbnQgaW4gVGFiQ29tcG9uZW50cyBhbmQgc2V0IGl0cyBkYXRhXG4gICAgICB0aGlzLlRhYkNvbXBvbmVudHMuZmluZCgoY29tcDogRHluYW1pY1RhYnNNb2RlbCkgPT4ge1xuICAgICAgICBpZiAoY29tcC5Db21wb25lbnQubmFtZSA9PT0gaW5zdGFuY2UuY29uc3RydWN0b3IubmFtZSkge1xuICAgICAgICAgIGluc3RhbmNlWydEYXRhJ10gPSBjb21wLkRhdGE7XG4gICAgICAgIH1cbiAgICAgIH0pO1xuICB9XG59XG4iXX0=
@@ -0,0 +1,31 @@
1
+ import { Component, Input } from '@angular/core';
2
+ export class FeedCardSmComponent {
3
+ constructor() { }
4
+ ngOnInit() {
5
+ this.determineIconColor();
6
+ }
7
+ //HELPERS
8
+ determineIconColor() {
9
+ if (this.Icon === "check_circle") {
10
+ this.IconColor = "green";
11
+ }
12
+ else if (this.Icon === "cancel") {
13
+ this.IconColor = "red";
14
+ }
15
+ }
16
+ }
17
+ FeedCardSmComponent.decorators = [
18
+ { type: Component, args: [{
19
+ selector: 'lcu-feed-card-sm',
20
+ template: "<mat-card class=\"social-card\">\n <div class=\"feed-card-container\" fxLayout=\"row\">\n <mat-icon *ngIf=\"Icon\" [style.color]=\"IconColor\">{{Icon}}</mat-icon>\n <div class=\"feed-card-main-content\">\n <mat-card-title *ngIf=\"Title\">{{Title}}</mat-card-title>\n <div *ngIf=\"Subtext\">{{Subtext}}</div>\n <div *ngIf=\"Description\">{{Description}}</div>\n <ng-content select=\"[more-details]\"></ng-content>\n </div>\n </div>\n\n <mat-card-actions fxLayout=\"row\" fxLayoutAlign=\"end\">\n <ng-content select=\"[actions]\"></ng-content>\n </mat-card-actions>\n </mat-card>\n",
21
+ styles: [".social-card{background-color:#fff;border:2px solid #d3d3d3;margin:20px;padding:15px 5px}mat-card-actions{margin-bottom:-1px!important;margin-left:0!important;margin-right:-.5px!important}.main-slot-container{padding:10px}.slot-header{align-items:center}.slot-content{width:100%}.slot-name{font-size:22px;font-weight:600;padding-left:5px}.slot-description{font-size:12px;margin-right:10px}.slot-action-anchor{color:#000;font-size:10px;text-decoration:none}.action-icon{font-size:25px;height:25px;width:25px}.gold-icon{color:#d4af37}.upgrade-text{cursor:pointer;font-weight:700;margin-left:10px}"]
22
+ },] }
23
+ ];
24
+ FeedCardSmComponent.ctorParameters = () => [];
25
+ FeedCardSmComponent.propDecorators = {
26
+ Icon: [{ type: Input, args: ["icon",] }],
27
+ Title: [{ type: Input, args: ["title",] }],
28
+ Subtext: [{ type: Input, args: ["subtext",] }],
29
+ Description: [{ type: Input, args: ["description",] }]
30
+ };
31
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZmVlZC1jYXJkLXNtLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIvaG9tZS9ydW5uZXIvd29yay9hcHBsaWNhdGlvbnMtZmxvdy9hcHBsaWNhdGlvbnMtZmxvdy9wcm9qZWN0cy9jb21tb24vc3JjLyIsInNvdXJjZXMiOlsibGliL2VsZW1lbnRzL2ZlZWQtY2FyZC1zbS9mZWVkLWNhcmQtc20uY29tcG9uZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsS0FBSyxFQUFVLE1BQU0sZUFBZSxDQUFDO0FBT3pELE1BQU0sT0FBTyxtQkFBbUI7SUFnQjlCLGdCQUFnQixDQUFDO0lBRWpCLFFBQVE7UUFDTixJQUFJLENBQUMsa0JBQWtCLEVBQUUsQ0FBQztJQUM1QixDQUFDO0lBRUQsU0FBUztJQUNDLGtCQUFrQjtRQUMxQixJQUFHLElBQUksQ0FBQyxJQUFJLEtBQUssY0FBYyxFQUFDO1lBRTlCLElBQUksQ0FBQyxTQUFTLEdBQUcsT0FBTyxDQUFDO1NBRTFCO2FBQ0ksSUFBRyxJQUFJLENBQUMsSUFBSSxLQUFLLFFBQVEsRUFBQztZQUM3QixJQUFJLENBQUMsU0FBUyxHQUFHLEtBQUssQ0FBQztTQUN4QjtJQUNILENBQUM7OztZQXJDRixTQUFTLFNBQUM7Z0JBQ1QsUUFBUSxFQUFFLGtCQUFrQjtnQkFDNUIsa3FCQUE0Qzs7YUFFN0M7Ozs7bUJBR0UsS0FBSyxTQUFDLE1BQU07b0JBR1osS0FBSyxTQUFDLE9BQU87c0JBR2IsS0FBSyxTQUFDLFNBQVM7MEJBR2YsS0FBSyxTQUFDLGFBQWEiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIElucHV0LCBPbkluaXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnbGN1LWZlZWQtY2FyZC1zbScsXG4gIHRlbXBsYXRlVXJsOiAnLi9mZWVkLWNhcmQtc20uY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9mZWVkLWNhcmQtc20uY29tcG9uZW50LnNjc3MnXVxufSlcbmV4cG9ydCBjbGFzcyBGZWVkQ2FyZFNtQ29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0IHtcblxuICBASW5wdXQoXCJpY29uXCIpXG4gIHB1YmxpYyBJY29uOiBzdHJpbmc7XG5cbiAgQElucHV0KFwidGl0bGVcIilcbiAgcHVibGljIFRpdGxlOiBzdHJpbmc7XG5cbiAgQElucHV0KFwic3VidGV4dFwiKVxuICBwdWJsaWMgU3VidGV4dDogc3RyaW5nO1xuXG4gIEBJbnB1dChcImRlc2NyaXB0aW9uXCIpXG4gIHB1YmxpYyBEZXNjcmlwdGlvbjogc3RyaW5nO1xuXG4gIHB1YmxpYyBJY29uQ29sb3I6IHN0cmluZztcblxuICBjb25zdHJ1Y3RvcigpIHsgfVxuXG4gIG5nT25Jbml0KCk6IHZvaWQge1xuICAgIHRoaXMuZGV0ZXJtaW5lSWNvbkNvbG9yKCk7XG4gIH1cblxuICAvL0hFTFBFUlNcbiAgcHJvdGVjdGVkIGRldGVybWluZUljb25Db2xvcigpe1xuICAgIGlmKHRoaXMuSWNvbiA9PT0gXCJjaGVja19jaXJjbGVcIil7XG5cbiAgICAgIHRoaXMuSWNvbkNvbG9yID0gXCJncmVlblwiO1xuICAgIFxuICAgIH1cbiAgICBlbHNlIGlmKHRoaXMuSWNvbiA9PT0gXCJjYW5jZWxcIil7XG4gICAgICB0aGlzLkljb25Db2xvciA9IFwicmVkXCI7XG4gICAgfVxuICB9XG5cbn1cbiJdfQ==