@indice/ng-components 0.2.146 → 0.2.147

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 (159) hide show
  1. package/_styles.css +1 -1
  2. package/{esm2015/indice-ng-components.js → esm2020/indice-ng-components.mjs} +0 -0
  3. package/{esm2015/lib/controls/avatar-initials/avatar-initials.component.js → esm2020/lib/controls/avatar-initials/avatar-initials.component.mjs} +5 -8
  4. package/esm2020/lib/controls/collapsible-panel/collapsible-panel.component.mjs +20 -0
  5. package/esm2020/lib/controls/combobox/combobox.component.mjs +96 -0
  6. package/esm2020/lib/controls/date-picker/date-picker.component.mjs +260 -0
  7. package/esm2020/lib/controls/drop-down-menu/drop-down-menu.component.mjs +68 -0
  8. package/esm2020/lib/controls/kpi-tile/kpi-tile.component.mjs +36 -0
  9. package/esm2020/lib/controls/language-selection/language-selection.component.mjs +31 -0
  10. package/{esm2015/lib/controls/list-view/list-column.component.js → esm2020/lib/controls/list-view/list-column.component.mjs} +4 -4
  11. package/{esm2015/lib/controls/list-view/list-details-section.component.js → esm2020/lib/controls/list-view/list-details-section.component.mjs} +4 -4
  12. package/{esm2015/lib/controls/list-view/list-tile.component.js → esm2020/lib/controls/list-view/list-tile.component.mjs} +4 -4
  13. package/esm2020/lib/controls/list-view/list-view-empty-state.component.mjs +29 -0
  14. package/esm2020/lib/controls/list-view/list-view.component.mjs +183 -0
  15. package/esm2020/lib/controls/nav-links-list/nav-links-list.component.mjs +42 -0
  16. package/esm2020/lib/controls/notifications-indicator/notifications-indicator.component.mjs +73 -0
  17. package/esm2020/lib/controls/pager/pager.component.mjs +130 -0
  18. package/esm2020/lib/controls/side-pane/side-pane.component.mjs +72 -0
  19. package/esm2020/lib/controls/skeleton-loader/skeleton-loader.component.mjs +25 -0
  20. package/esm2020/lib/controls/tabs/lib-tab-group.component.mjs +59 -0
  21. package/esm2020/lib/controls/tabs/lib-tab.component.mjs +57 -0
  22. package/esm2020/lib/controls/toaster/toaster-container.component.mjs +28 -0
  23. package/esm2020/lib/controls/toaster/toaster.component.mjs +31 -0
  24. package/esm2020/lib/controls/toggle/toggle.component.mjs +64 -0
  25. package/esm2020/lib/controls/user-profile-menu/user-profile-menu.component.mjs +71 -0
  26. package/{esm2015/lib/directives/click-outside.directive.js → esm2020/lib/directives/click-outside.directive.mjs} +4 -4
  27. package/{esm2015/lib/directives/dynamic-component-host.directive.js → esm2020/lib/directives/dynamic-component-host.directive.mjs} +4 -4
  28. package/esm2020/lib/helpers/base-list.component.mjs +181 -0
  29. package/esm2020/lib/icons.mjs +34 -0
  30. package/esm2020/lib/layouts/shell/shell-footer/shell-footer.component.mjs +19 -0
  31. package/esm2020/lib/layouts/shell/shell-header/shell-header.component.mjs +131 -0
  32. package/esm2020/lib/layouts/shell/shell-layout/shell-layout.component.mjs +103 -0
  33. package/esm2020/lib/layouts/shell/shell-sidebar/shell-sidebar.component.mjs +47 -0
  34. package/esm2020/lib/layouts/views/form-layout/form-layout.component.mjs +80 -0
  35. package/esm2020/lib/layouts/views/model-view-layout/model-view-layout.component.mjs +49 -0
  36. package/esm2020/lib/layouts/views/side-view-layout/side-view-layout.component.mjs +98 -0
  37. package/esm2020/lib/layouts/views/view-layout/view-layout.component.mjs +104 -0
  38. package/esm2020/lib/ng-components.module.mjs +245 -0
  39. package/esm2020/lib/pages/auth/auth-callback/auth-callback.component.mjs +30 -0
  40. package/{esm2015/lib/pages/auth/auth-renew/auth-renew.component.js → esm2020/lib/pages/auth/auth-renew/auth-renew.component.mjs} +4 -4
  41. package/esm2020/lib/pages/auth/logged-out/logged-out.component.mjs +28 -0
  42. package/esm2020/lib/pages/http-status/error/error.component.mjs +17 -0
  43. package/esm2020/lib/pages/http-status/page-not-found/page-not-found.component.mjs +15 -0
  44. package/esm2020/lib/pages/http-status/unauthorized/unauthorized.component.mjs +14 -0
  45. package/{esm2015/lib/pipes/address.pipe.js → esm2020/lib/pipes/address.pipe.mjs} +4 -4
  46. package/{esm2015/lib/pipes/duration-format.pipe.js → esm2020/lib/pipes/duration-format.pipe.mjs} +4 -4
  47. package/{esm2015/lib/services/component-loader/component-loader-options.class.js → esm2020/lib/services/component-loader/component-loader-options.class.mjs} +0 -0
  48. package/esm2020/lib/services/component-loader/component-loader.class.mjs +188 -0
  49. package/{esm2015/lib/services/component-loader/component-loader.factory.js → esm2020/lib/services/component-loader/component-loader.factory.mjs} +4 -4
  50. package/{esm2015/lib/services/component-loader/content-ref.class.js → esm2020/lib/services/component-loader/content-ref.class.mjs} +0 -0
  51. package/esm2020/lib/services/modal-service/modal-backdrop-component.mjs +44 -0
  52. package/esm2020/lib/services/modal-service/modal-container-component.mjs +126 -0
  53. package/{esm2015/lib/services/modal-service/modal-options.class.js → esm2020/lib/services/modal-service/modal-options.class.mjs} +4 -4
  54. package/esm2020/lib/services/modal-service/modal-service.mjs +219 -0
  55. package/{esm2015/lib/services/modal-service/modal-styles.class.js → esm2020/lib/services/modal-service/modal-styles.class.mjs} +0 -0
  56. package/{esm2015/lib/services/modal-service/modal.class.js → esm2020/lib/services/modal-service/modal.class.mjs} +4 -4
  57. package/{esm2015/lib/services/toaster.service.js → esm2020/lib/services/toaster.service.mjs} +4 -4
  58. package/esm2020/lib/tokens.mjs +7 -0
  59. package/{esm2015/lib/types.js → esm2020/lib/types.mjs} +1 -1
  60. package/esm2020/public-api.mjs +56 -0
  61. package/fesm2015/indice-ng-components.mjs +3629 -0
  62. package/fesm2015/indice-ng-components.mjs.map +1 -0
  63. package/fesm2020/indice-ng-components.mjs +3572 -0
  64. package/fesm2020/indice-ng-components.mjs.map +1 -0
  65. package/{indice-ng-components.d.ts → index.d.ts} +0 -0
  66. package/lib/controls/avatar-initials/avatar-initials.component.d.ts +1 -1
  67. package/lib/controls/collapsible-panel/collapsible-panel.component.d.ts +1 -1
  68. package/lib/controls/combobox/combobox.component.d.ts +29 -0
  69. package/lib/controls/date-picker/date-picker.component.d.ts +1 -1
  70. package/lib/controls/drop-down-menu/drop-down-menu.component.d.ts +1 -1
  71. package/lib/controls/kpi-tile/kpi-tile.component.d.ts +1 -1
  72. package/lib/controls/language-selection/language-selection.component.d.ts +1 -1
  73. package/lib/controls/list-view/list-column.component.d.ts +1 -1
  74. package/lib/controls/list-view/list-details-section.component.d.ts +1 -1
  75. package/lib/controls/list-view/list-tile.component.d.ts +1 -1
  76. package/lib/controls/list-view/list-view-empty-state.component.d.ts +1 -1
  77. package/lib/controls/list-view/list-view.component.d.ts +1 -1
  78. package/lib/controls/nav-links-list/nav-links-list.component.d.ts +1 -1
  79. package/lib/controls/notifications-indicator/notifications-indicator.component.d.ts +1 -1
  80. package/lib/controls/pager/pager.component.d.ts +1 -1
  81. package/lib/controls/side-pane/side-pane.component.d.ts +1 -1
  82. package/lib/controls/skeleton-loader/skeleton-loader.component.d.ts +1 -1
  83. package/lib/controls/tabs/lib-tab-group.component.d.ts +1 -1
  84. package/lib/controls/tabs/lib-tab.component.d.ts +4 -5
  85. package/lib/controls/toaster/toaster-container.component.d.ts +1 -1
  86. package/lib/controls/toaster/toaster.component.d.ts +1 -1
  87. package/lib/controls/toggle/toggle.component.d.ts +1 -1
  88. package/lib/controls/user-profile-menu/user-profile-menu.component.d.ts +1 -1
  89. package/lib/directives/click-outside.directive.d.ts +1 -1
  90. package/lib/directives/dynamic-component-host.directive.d.ts +1 -1
  91. package/lib/helpers/base-list.component.d.ts +1 -1
  92. package/lib/icons.d.ts +2 -0
  93. package/lib/layouts/shell/shell-footer/shell-footer.component.d.ts +1 -1
  94. package/lib/layouts/shell/shell-header/shell-header.component.d.ts +1 -1
  95. package/lib/layouts/shell/shell-layout/shell-layout.component.d.ts +1 -1
  96. package/lib/layouts/shell/shell-sidebar/shell-sidebar.component.d.ts +1 -1
  97. package/lib/layouts/views/form-layout/form-layout.component.d.ts +1 -1
  98. package/lib/layouts/views/model-view-layout/model-view-layout.component.d.ts +1 -1
  99. package/lib/layouts/views/side-view-layout/side-view-layout.component.d.ts +1 -1
  100. package/lib/layouts/views/view-layout/view-layout.component.d.ts +1 -1
  101. package/lib/ng-components.module.d.ts +28 -27
  102. package/lib/pages/auth/auth-callback/auth-callback.component.d.ts +1 -1
  103. package/lib/pages/auth/auth-renew/auth-renew.component.d.ts +1 -1
  104. package/lib/pages/auth/logged-out/logged-out.component.d.ts +1 -1
  105. package/lib/pages/http-status/error/error.component.d.ts +1 -1
  106. package/lib/pages/http-status/page-not-found/page-not-found.component.d.ts +1 -1
  107. package/lib/pages/http-status/unauthorized/unauthorized.component.d.ts +1 -1
  108. package/lib/pipes/address.pipe.d.ts +1 -1
  109. package/lib/pipes/duration-format.pipe.d.ts +1 -1
  110. package/lib/services/modal-service/modal-backdrop-component.d.ts +1 -1
  111. package/lib/services/modal-service/modal-container-component.d.ts +1 -1
  112. package/lib/tokens.d.ts +2 -0
  113. package/lib/types.d.ts +2 -0
  114. package/package.json +25 -12
  115. package/public-api.d.ts +2 -1
  116. package/bundles/indice-ng-components.umd.js +0 -4181
  117. package/bundles/indice-ng-components.umd.js.map +0 -1
  118. package/esm2015/lib/controls/collapsible-panel/collapsible-panel.component.js +0 -23
  119. package/esm2015/lib/controls/date-picker/date-picker.component.js +0 -269
  120. package/esm2015/lib/controls/drop-down-menu/drop-down-menu.component.js +0 -72
  121. package/esm2015/lib/controls/kpi-tile/kpi-tile.component.js +0 -39
  122. package/esm2015/lib/controls/language-selection/language-selection.component.js +0 -35
  123. package/esm2015/lib/controls/list-view/list-view-empty-state.component.js +0 -32
  124. package/esm2015/lib/controls/list-view/list-view.component.js +0 -186
  125. package/esm2015/lib/controls/nav-links-list/nav-links-list.component.js +0 -45
  126. package/esm2015/lib/controls/notifications-indicator/notifications-indicator.component.js +0 -76
  127. package/esm2015/lib/controls/pager/pager.component.js +0 -133
  128. package/esm2015/lib/controls/side-pane/side-pane.component.js +0 -76
  129. package/esm2015/lib/controls/skeleton-loader/skeleton-loader.component.js +0 -29
  130. package/esm2015/lib/controls/tabs/lib-tab-group.component.js +0 -60
  131. package/esm2015/lib/controls/tabs/lib-tab.component.js +0 -57
  132. package/esm2015/lib/controls/toaster/toaster-container.component.js +0 -31
  133. package/esm2015/lib/controls/toaster/toaster.component.js +0 -34
  134. package/esm2015/lib/controls/toggle/toggle.component.js +0 -68
  135. package/esm2015/lib/controls/user-profile-menu/user-profile-menu.component.js +0 -75
  136. package/esm2015/lib/helpers/base-list.component.js +0 -182
  137. package/esm2015/lib/icons.js +0 -32
  138. package/esm2015/lib/layouts/shell/shell-footer/shell-footer.component.js +0 -22
  139. package/esm2015/lib/layouts/shell/shell-header/shell-header.component.js +0 -136
  140. package/esm2015/lib/layouts/shell/shell-layout/shell-layout.component.js +0 -108
  141. package/esm2015/lib/layouts/shell/shell-sidebar/shell-sidebar.component.js +0 -50
  142. package/esm2015/lib/layouts/views/form-layout/form-layout.component.js +0 -85
  143. package/esm2015/lib/layouts/views/model-view-layout/model-view-layout.component.js +0 -53
  144. package/esm2015/lib/layouts/views/side-view-layout/side-view-layout.component.js +0 -101
  145. package/esm2015/lib/layouts/views/view-layout/view-layout.component.js +0 -110
  146. package/esm2015/lib/ng-components.module.js +0 -242
  147. package/esm2015/lib/pages/auth/auth-callback/auth-callback.component.js +0 -34
  148. package/esm2015/lib/pages/auth/logged-out/logged-out.component.js +0 -32
  149. package/esm2015/lib/pages/http-status/error/error.component.js +0 -20
  150. package/esm2015/lib/pages/http-status/page-not-found/page-not-found.component.js +0 -18
  151. package/esm2015/lib/pages/http-status/unauthorized/unauthorized.component.js +0 -17
  152. package/esm2015/lib/services/component-loader/component-loader.class.js +0 -192
  153. package/esm2015/lib/services/modal-service/modal-backdrop-component.js +0 -44
  154. package/esm2015/lib/services/modal-service/modal-container-component.js +0 -128
  155. package/esm2015/lib/services/modal-service/modal-service.js +0 -220
  156. package/esm2015/lib/tokens.js +0 -6
  157. package/esm2015/public-api.js +0 -55
  158. package/fesm2015/indice-ng-components.js +0 -3600
  159. package/fesm2015/indice-ng-components.js.map +0 -1
@@ -0,0 +1,3629 @@
1
+ import * as i0 from '@angular/core';
2
+ import { EventEmitter, PLATFORM_ID, Directive, Inject, Input, Output, Component, TemplateRef, ContentChild, ContentChildren, forwardRef, ViewChild, Injectable, InjectionToken, ViewEncapsulation, ChangeDetectionStrategy, Optional, Injector, ElementRef, ViewChildren, Pipe, HostListener, NgModule } from '@angular/core';
3
+ import * as i1 from '@angular/common';
4
+ import { isPlatformBrowser, DOCUMENT, CommonModule } from '@angular/common';
5
+ import * as i1$1 from '@angular/router';
6
+ import { Router, NavigationStart, ActivatedRoute, ActivationStart, RouterModule } from '@angular/router';
7
+ import { NG_VALUE_ACCESSOR } from '@angular/forms';
8
+ import { BehaviorSubject, Subject, of, fromEvent } from 'rxjs';
9
+ import { filter, debounceTime, distinctUntilChanged, share, map } from 'rxjs/operators';
10
+ import * as uuid from 'uuid';
11
+ import * as i2 from '@indice/ng-auth';
12
+ import { AuthService, IndiceAuthModule } from '@indice/ng-auth';
13
+
14
+ //
15
+ // tslint:disable-next-line:directive-selector
16
+ class ClickOutsideDirective {
17
+ constructor(
18
+ // tslint:disable-next-line:variable-name
19
+ _el,
20
+ // tslint:disable-next-line:variable-name
21
+ _ngZone, platformId) {
22
+ this._el = _el;
23
+ this._ngZone = _ngZone;
24
+ this.platformId = platformId;
25
+ this.clickOutsideEnabled = true;
26
+ this.attachOutsideOnClick = false;
27
+ this.delayClickOutsideInit = false;
28
+ this.emitOnBlur = false;
29
+ this.exclude = '';
30
+ this.excludeBeforeClick = false;
31
+ this.clickOutsideEvents = '';
32
+ this.clickOutside = new EventEmitter();
33
+ // tslint:disable-next-line:variable-name
34
+ this._nodesExcluded = [];
35
+ // tslint:disable-next-line:variable-name
36
+ this._events = ['click'];
37
+ this._initOnClickBody = this._initOnClickBody.bind(this);
38
+ this._onClickBody = this._onClickBody.bind(this);
39
+ this._onWindowBlur = this._onWindowBlur.bind(this);
40
+ }
41
+ ngOnInit() {
42
+ if (!isPlatformBrowser(this.platformId)) {
43
+ return;
44
+ }
45
+ this._init();
46
+ }
47
+ ngOnDestroy() {
48
+ if (!isPlatformBrowser(this.platformId)) {
49
+ return;
50
+ }
51
+ this._removeClickOutsideListener();
52
+ this._removeAttachOutsideOnClickListener();
53
+ this._removeWindowBlurListener();
54
+ }
55
+ ngOnChanges(changes) {
56
+ if (!isPlatformBrowser(this.platformId)) {
57
+ return;
58
+ }
59
+ // tslint:disable-next-line:no-string-literal
60
+ if (changes['attachOutsideOnClick'] || changes['exclude'] || changes['emitOnBlur']) {
61
+ this._init();
62
+ }
63
+ }
64
+ _init() {
65
+ if (this.clickOutsideEvents !== '') {
66
+ this._events = this.clickOutsideEvents.split(',').map(e => e.trim());
67
+ }
68
+ this._excludeCheck();
69
+ if (this.attachOutsideOnClick) {
70
+ this._initAttachOutsideOnClickListener();
71
+ }
72
+ else {
73
+ this._initOnClickBody();
74
+ }
75
+ if (this.emitOnBlur) {
76
+ this._initWindowBlurListener();
77
+ }
78
+ }
79
+ _initOnClickBody() {
80
+ if (this.delayClickOutsideInit) {
81
+ setTimeout(this._initClickOutsideListener.bind(this));
82
+ }
83
+ else {
84
+ this._initClickOutsideListener();
85
+ }
86
+ }
87
+ _excludeCheck() {
88
+ if (this.exclude) {
89
+ try {
90
+ const nodes = Array.from(document.querySelectorAll(this.exclude));
91
+ if (nodes) {
92
+ this._nodesExcluded = nodes;
93
+ }
94
+ }
95
+ catch (err) {
96
+ console.error('[ng-click-outside] Check your exclude selector syntax.', err);
97
+ }
98
+ }
99
+ }
100
+ _onClickBody(ev) {
101
+ if (!this.clickOutsideEnabled) {
102
+ return;
103
+ }
104
+ if (this.excludeBeforeClick) {
105
+ this._excludeCheck();
106
+ }
107
+ if (!this._el.nativeElement.contains(ev.target) && !this._shouldExclude(ev.target)) {
108
+ this._emit(ev);
109
+ if (this.attachOutsideOnClick) {
110
+ this._removeClickOutsideListener();
111
+ }
112
+ }
113
+ }
114
+ /**
115
+ * Resolves problem with outside click on iframe
116
+ * @see https://github.com/arkon/ng-click-outside/issues/32
117
+ */
118
+ _onWindowBlur(ev) {
119
+ setTimeout(() => {
120
+ if (!document.hidden) {
121
+ this._emit(ev);
122
+ }
123
+ });
124
+ }
125
+ _emit(ev) {
126
+ if (!this.clickOutsideEnabled) {
127
+ return;
128
+ }
129
+ this._ngZone.run(() => this.clickOutside.emit(ev));
130
+ }
131
+ _shouldExclude(target) {
132
+ // tslint:disable-next-line:prefer-const
133
+ for (let excludedNode of this._nodesExcluded) {
134
+ if (excludedNode.contains(target)) {
135
+ return true;
136
+ }
137
+ }
138
+ return false;
139
+ }
140
+ _initClickOutsideListener() {
141
+ this._ngZone.runOutsideAngular(() => {
142
+ this._events.forEach(e => document.addEventListener(e, this._onClickBody));
143
+ });
144
+ }
145
+ _removeClickOutsideListener() {
146
+ this._ngZone.runOutsideAngular(() => {
147
+ this._events.forEach(e => document.removeEventListener(e, this._onClickBody));
148
+ });
149
+ }
150
+ _initAttachOutsideOnClickListener() {
151
+ this._ngZone.runOutsideAngular(() => {
152
+ this._events.forEach(e => this._el.nativeElement.addEventListener(e, this._initOnClickBody));
153
+ });
154
+ }
155
+ _removeAttachOutsideOnClickListener() {
156
+ this._ngZone.runOutsideAngular(() => {
157
+ this._events.forEach(e => this._el.nativeElement.removeEventListener(e, this._initOnClickBody));
158
+ });
159
+ }
160
+ _initWindowBlurListener() {
161
+ this._ngZone.runOutsideAngular(() => {
162
+ window.addEventListener('blur', this._onWindowBlur);
163
+ });
164
+ }
165
+ _removeWindowBlurListener() {
166
+ this._ngZone.runOutsideAngular(() => {
167
+ window.removeEventListener('blur', this._onWindowBlur);
168
+ });
169
+ }
170
+ }
171
+ ClickOutsideDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: ClickOutsideDirective, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }, { token: PLATFORM_ID }], target: i0.ɵɵFactoryTarget.Directive });
172
+ ClickOutsideDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.0.0", type: ClickOutsideDirective, selector: "[clickOutside]", inputs: { clickOutsideEnabled: "clickOutsideEnabled", attachOutsideOnClick: "attachOutsideOnClick", delayClickOutsideInit: "delayClickOutsideInit", emitOnBlur: "emitOnBlur", exclude: "exclude", excludeBeforeClick: "excludeBeforeClick", clickOutsideEvents: "clickOutsideEvents" }, outputs: { clickOutside: "clickOutside" }, usesOnChanges: true, ngImport: i0 });
173
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: ClickOutsideDirective, decorators: [{
174
+ type: Directive,
175
+ args: [{ selector: '[clickOutside]' }]
176
+ }], ctorParameters: function () {
177
+ return [{ type: i0.ElementRef }, { type: i0.NgZone }, { type: undefined, decorators: [{
178
+ type: Inject,
179
+ args: [PLATFORM_ID]
180
+ }] }];
181
+ }, propDecorators: { clickOutsideEnabled: [{
182
+ type: Input
183
+ }], attachOutsideOnClick: [{
184
+ type: Input
185
+ }], delayClickOutsideInit: [{
186
+ type: Input
187
+ }], emitOnBlur: [{
188
+ type: Input
189
+ }], exclude: [{
190
+ type: Input
191
+ }], excludeBeforeClick: [{
192
+ type: Input
193
+ }], clickOutsideEvents: [{
194
+ type: Input
195
+ }], clickOutside: [{
196
+ type: Output
197
+ }] } });
198
+
199
+ class DropDownMenuComponent {
200
+ constructor() {
201
+ this.options = [];
202
+ // tslint:disable-next-line:no-input-rename
203
+ this.selectedValue = null;
204
+ this.multiple = false;
205
+ this.placeholder = 'Παρακαλώ επιλέξτε...';
206
+ this.selectedOption$ = null;
207
+ this.selectedChange = new EventEmitter();
208
+ this.selectedChanged = new EventEmitter();
209
+ this.expanded$ = false;
210
+ }
211
+ get selectedOption() {
212
+ return this.selectedOption$;
213
+ }
214
+ set selectedOption(option) {
215
+ this.selectedOption$ = option;
216
+ this.selectedValue = option ? option.value : null;
217
+ this.expanded = false;
218
+ }
219
+ get expanded() {
220
+ return this.expanded$;
221
+ }
222
+ set expanded(value) {
223
+ this.expanded$ = value;
224
+ }
225
+ ngOnChanges(changes) {
226
+ if (this.options && this.options.length > 0 && this.selectedValue !== null && this.selectedValue !== undefined) {
227
+ this.selectedOption$ = this.options.filter((o) => o.value === this.selectedValue)[0];
228
+ }
229
+ }
230
+ ngOnInit() { }
231
+ isSelected(option) {
232
+ return option != null && this.selectedValue != null && option.value === this.selectedValue;
233
+ }
234
+ onClickOutside($event) {
235
+ this.expanded = false;
236
+ }
237
+ selectOption(option) {
238
+ this.selectedOption = option;
239
+ this.selectedChange.emit(option.value);
240
+ this.selectedChanged.emit(option.value);
241
+ }
242
+ }
243
+ DropDownMenuComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: DropDownMenuComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
244
+ DropDownMenuComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.0", type: DropDownMenuComponent, selector: "lib-drop-down-menu", inputs: { options: "options", selectedValue: ["selected", "selectedValue"], multiple: "multiple", placeholder: "placeholder" }, outputs: { selectedChange: "selectedChange", selectedChanged: "selectedChanged" }, usesOnChanges: true, ngImport: i0, template: "<div class=\"dropdown-container\" (clickOutside)=\"onClickOutside($event)\">\n <button\n type=\"button\"\n (click)=\"expanded = !expanded\"\n class=\"dropdown-button\"\n aria-haspopup=\"listbox\"\n aria-expanded=\"true\"\n aria-labelledby=\"listbox-label\"\n >\n <span class=\"dropdown-selected-text\">\n {{ selectedOption?.text || placeholder }}\n </span>\n <span class=\"dropdown-button-icon\">\n <!-- Heroicon name: solid/selector -->\n <svg class=\"dropdown-arrow\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\" fill=\"currentColor\" aria-hidden=\"true\">\n <path\n fill-rule=\"evenodd\"\n d=\"M10 3a1 1 0 01.707.293l3 3a1 1 0 01-1.414 1.414L10 5.414 7.707 7.707a1 1 0 01-1.414-1.414l3-3A1 1 0 0110 3zm-3.707 9.293a1 1 0 011.414 0L10 14.586l2.293-2.293a1 1 0 011.414 1.414l-3 3a1 1 0 01-1.414 0l-3-3a1 1 0 010-1.414z\"\n clip-rule=\"evenodd\"\n />\n </svg>\n </span>\n </button>\n <ul\n *ngIf=\"expanded && options && options.length > 0\"\n class=\"dropdown-ul\"\n tabindex=\"-1\"\n role=\"listbox\"\n aria-labelledby=\"listbox-label\"\n aria-activedescendant=\"listbox-option-3\"\n >\n <ng-container *ngFor=\"let option of options\">\n <li\n [class]=\"isSelected(option) ? 'dropdown-li-selected' : 'dropdown-li'\"\n (click)=\"selectOption(option)\"\n id=\"listbox-option-0\"\n role=\"option\"\n >\n <span [class]=\"isSelected(option) ? 'dropdown-li-selected-text' : 'dropdown-li-text'\">\n {{ option.text }}\n </span>\n <span *ngIf=\"isSelected(option)\" class=\"dropdown-li-selected-indicator-container\">\n <!-- Heroicon name: solid/check -->\n <svg\n class=\"dropdown-li-selected-indicator\"\n xmlns=\"http://www.w3.org/2000/svg\"\n viewBox=\"0 0 20 20\"\n fill=\"currentColor\"\n aria-hidden=\"true\"\n >\n <path\n fill-rule=\"evenodd\"\n d=\"M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z\"\n clip-rule=\"evenodd\"\n />\n </svg>\n </span>\n </li>\n </ng-container>\n </ul>\n</div>\n", dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: ClickOutsideDirective, selector: "[clickOutside]", inputs: ["clickOutsideEnabled", "attachOutsideOnClick", "delayClickOutsideInit", "emitOnBlur", "exclude", "excludeBeforeClick", "clickOutsideEvents"], outputs: ["clickOutside"] }] });
245
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: DropDownMenuComponent, decorators: [{
246
+ type: Component,
247
+ args: [{ selector: 'lib-drop-down-menu', template: "<div class=\"dropdown-container\" (clickOutside)=\"onClickOutside($event)\">\n <button\n type=\"button\"\n (click)=\"expanded = !expanded\"\n class=\"dropdown-button\"\n aria-haspopup=\"listbox\"\n aria-expanded=\"true\"\n aria-labelledby=\"listbox-label\"\n >\n <span class=\"dropdown-selected-text\">\n {{ selectedOption?.text || placeholder }}\n </span>\n <span class=\"dropdown-button-icon\">\n <!-- Heroicon name: solid/selector -->\n <svg class=\"dropdown-arrow\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\" fill=\"currentColor\" aria-hidden=\"true\">\n <path\n fill-rule=\"evenodd\"\n d=\"M10 3a1 1 0 01.707.293l3 3a1 1 0 01-1.414 1.414L10 5.414 7.707 7.707a1 1 0 01-1.414-1.414l3-3A1 1 0 0110 3zm-3.707 9.293a1 1 0 011.414 0L10 14.586l2.293-2.293a1 1 0 011.414 1.414l-3 3a1 1 0 01-1.414 0l-3-3a1 1 0 010-1.414z\"\n clip-rule=\"evenodd\"\n />\n </svg>\n </span>\n </button>\n <ul\n *ngIf=\"expanded && options && options.length > 0\"\n class=\"dropdown-ul\"\n tabindex=\"-1\"\n role=\"listbox\"\n aria-labelledby=\"listbox-label\"\n aria-activedescendant=\"listbox-option-3\"\n >\n <ng-container *ngFor=\"let option of options\">\n <li\n [class]=\"isSelected(option) ? 'dropdown-li-selected' : 'dropdown-li'\"\n (click)=\"selectOption(option)\"\n id=\"listbox-option-0\"\n role=\"option\"\n >\n <span [class]=\"isSelected(option) ? 'dropdown-li-selected-text' : 'dropdown-li-text'\">\n {{ option.text }}\n </span>\n <span *ngIf=\"isSelected(option)\" class=\"dropdown-li-selected-indicator-container\">\n <!-- Heroicon name: solid/check -->\n <svg\n class=\"dropdown-li-selected-indicator\"\n xmlns=\"http://www.w3.org/2000/svg\"\n viewBox=\"0 0 20 20\"\n fill=\"currentColor\"\n aria-hidden=\"true\"\n >\n <path\n fill-rule=\"evenodd\"\n d=\"M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z\"\n clip-rule=\"evenodd\"\n />\n </svg>\n </span>\n </li>\n </ng-container>\n </ul>\n</div>\n" }]
248
+ }], ctorParameters: function () { return []; }, propDecorators: { options: [{
249
+ type: Input
250
+ }], selectedValue: [{
251
+ type: Input,
252
+ args: ['selected']
253
+ }], multiple: [{
254
+ type: Input
255
+ }], placeholder: [{
256
+ type: Input
257
+ }], selectedChange: [{
258
+ type: Output
259
+ }], selectedChanged: [{
260
+ type: Output
261
+ }] } });
262
+
263
+ class Icons {
264
+ }
265
+ // https://uifabricicons.azurewebsites.net/
266
+ Icons.Dashboard = `ms-Icon ms-Icon--HomeGroup `;
267
+ Icons.Locations = `ms-Icon ms-Icon--MapPin `;
268
+ Icons.ChargePoints = `ms-Icon ms-Icon--ChatBot `;
269
+ Icons.Transations = `ms-Icon ms-Icon--PaymentCard `;
270
+ Icons.Badges = `ms-Icon ms-Icon--IDBadge `;
271
+ Icons.Information = `ms-Icon ms-Icon--Info`;
272
+ Icons.Refresh = `ms-Icon ms-Icon--Refresh`;
273
+ Icons.Search = `ms-Icon ms-Icon--Search`;
274
+ Icons.Add = `ms-Icon ms-Icon--Add`;
275
+ Icons.Delete = `ms-Icon ms-Icon--Delete`;
276
+ Icons.SendEmail = `ms-Icon ms-Icon--NewMail`;
277
+ Icons.Filter = `ms-Icon ms-Icon--Filter`;
278
+ Icons.Export = `ms-Icon ms-Icon--ExcelDocument`;
279
+ Icons.Import = `ms-Icon ms-Icon--PeopleAdd`;
280
+ Icons.TilesView = `ms-Icon ms-Icon--AppIconDefault`;
281
+ Icons.TableView = `ms-Icon ms-Icon--Table`;
282
+ Icons.MapView = `ms-Icon ms-Icon--MapPin`;
283
+ Icons.EntryView = `ms-Icon ms-Icon--EntryView`;
284
+ Icons.Separator = `ms-Icon ms-Icon--Separator text-white`;
285
+ Icons.ItemsCount = 'ms-Icon ms-Icon--Boards';
286
+ Icons.Heart = 'ms-Icon ms-Icon--Heart';
287
+ Icons.HeartBroken = 'ms-Icon ms-Icon--HeartBroken';
288
+ Icons.DateTime = 'ms-Icon ms-Icon--ReminderTime';
289
+ Icons.Expand = 'ms-Icon ms-Icon--ChevronDown';
290
+ Icons.Collapse = 'ms-Icon ms-Icon--ChevronUp';
291
+ Icons.SortAsc = 'ms-Icon ms-Icon--Ascending';
292
+ Icons.SortDesc = 'ms-Icon ms-Icon--Descending';
293
+ Icons.Details = ' ms-Icon ms-Icon--AccountActivity';
294
+ Icons.Messages = ' ms-Icon ms-Icon--Message';
295
+ Icons.MessagesUnread = ' ms-Icon ms-Icon--MessageFill';
296
+
297
+ class NavLink {
298
+ constructor(text, path, exact = false, external = false, icon, data) {
299
+ this.type = 'router';
300
+ this.text = text;
301
+ this.path = path;
302
+ this.exact = exact;
303
+ this.external = external;
304
+ this.icon = icon;
305
+ this.data = data;
306
+ }
307
+ }
308
+ class ExternalNavLink extends NavLink {
309
+ constructor(text, path, openInNewTab, icon) {
310
+ super(text, path, true, openInNewTab, icon);
311
+ this.type = 'external';
312
+ }
313
+ }
314
+ class FragmentNavLink extends NavLink {
315
+ constructor(text, path, icon) {
316
+ super(text, path, true, true, icon);
317
+ this.type = 'fragment';
318
+ }
319
+ }
320
+ class NotificationNavLink extends NavLink {
321
+ constructor(text, path, isRead, creationDate) {
322
+ super(text, path, true, false, undefined);
323
+ this.isRead = isRead;
324
+ this.creationDate = creationDate;
325
+ }
326
+ }
327
+ class ViewAction {
328
+ constructor(type, key, param, icon, tooltip) {
329
+ this.type = type;
330
+ this.key = key;
331
+ this.param = param;
332
+ this.icon = icon;
333
+ this.tooltip = tooltip;
334
+ }
335
+ }
336
+ class ListViewType {
337
+ }
338
+ ListViewType.Tiles = 'tiles';
339
+ ListViewType.Table = 'table';
340
+ ListViewType.Map = 'map';
341
+ ListViewType.Gallery = 'gallery';
342
+ class RouterViewAction extends ViewAction {
343
+ constructor(icon, link, outlet, tooltip) {
344
+ super('router-link', null, null, icon, tooltip);
345
+ this.outlet = null;
346
+ this.link = null;
347
+ this.outlet = outlet;
348
+ this.link = link;
349
+ }
350
+ }
351
+ class SwitchViewAction extends ViewAction {
352
+ constructor(view, icon, tooltip) {
353
+ super('switch-view', null, view, icon, tooltip);
354
+ }
355
+ }
356
+ class HeaderMetaItem {
357
+ constructor() {
358
+ this.key = null;
359
+ this.icon = null;
360
+ this.text = null;
361
+ }
362
+ }
363
+ class MenuOption {
364
+ constructor(text, value, description, data, icon) {
365
+ this.text = text;
366
+ this.value = value;
367
+ this.description = description;
368
+ this.data = data;
369
+ this.icon = icon;
370
+ }
371
+ }
372
+ var ShellLayoutType;
373
+ (function (ShellLayoutType) {
374
+ ShellLayoutType["Stacked"] = "Stacked";
375
+ ShellLayoutType["Sidebar"] = "Sidebar";
376
+ })(ShellLayoutType || (ShellLayoutType = {}));
377
+ class DefaultShellConfig {
378
+ constructor() {
379
+ this.layout = ShellLayoutType.Stacked;
380
+ this.appLogo = 'https://tailwindui.com/img/logos/workflow-mark.svg?color=white';
381
+ this.appLogoAlt = 'your app name here';
382
+ this.showHeader = true;
383
+ this.showUserNameOnHeader = false;
384
+ this.showAlertsOnHeader = false;
385
+ this.showFooter = true;
386
+ this.fluid = false;
387
+ }
388
+ }
389
+ var SCREEN_SIZE;
390
+ (function (SCREEN_SIZE) {
391
+ SCREEN_SIZE[SCREEN_SIZE["XS"] = 0] = "XS";
392
+ SCREEN_SIZE[SCREEN_SIZE["SM"] = 1] = "SM";
393
+ SCREEN_SIZE[SCREEN_SIZE["MD"] = 2] = "MD";
394
+ SCREEN_SIZE[SCREEN_SIZE["LG"] = 3] = "LG";
395
+ SCREEN_SIZE[SCREEN_SIZE["XL"] = 4] = "XL";
396
+ })(SCREEN_SIZE || (SCREEN_SIZE = {}));
397
+ var ToastType;
398
+ (function (ToastType) {
399
+ ToastType["Info"] = "info";
400
+ ToastType["Success"] = "success";
401
+ ToastType["Error"] = "error";
402
+ ToastType["Warning"] = "warning";
403
+ })(ToastType || (ToastType = {}));
404
+ const NULL_TOAST = { title: '_____NULL_____' };
405
+ var SidePaneSize;
406
+ (function (SidePaneSize) {
407
+ SidePaneSize["Default"] = "";
408
+ SidePaneSize["Small25"] = "25%";
409
+ SidePaneSize["Medium50"] = "50%";
410
+ SidePaneSize["Large75"] = "75%";
411
+ })(SidePaneSize || (SidePaneSize = {}));
412
+ var SidePaneOverlayType;
413
+ (function (SidePaneOverlayType) {
414
+ SidePaneOverlayType["Default"] = "";
415
+ SidePaneOverlayType["None"] = "-opacity-0";
416
+ SidePaneOverlayType["Light"] = "";
417
+ SidePaneOverlayType["Dark"] = "-opacity-50";
418
+ })(SidePaneOverlayType || (SidePaneOverlayType = {}));
419
+
420
+ class PagerComponent {
421
+ constructor(router) {
422
+ this.router = router;
423
+ // BUSY STATE
424
+ this.busy = false;
425
+ // PAGING
426
+ this.count = null;
427
+ this.page = 1;
428
+ // tslint:disable-next-line:no-input-rename
429
+ this.pageSize = 20;
430
+ // tslint:disable-next-line:no-input-rename
431
+ this.pageSizeOptions = [
432
+ new MenuOption('10', 10),
433
+ new MenuOption('20', 20),
434
+ new MenuOption('30', 30),
435
+ new MenuOption('50', 50),
436
+ new MenuOption('100', 100)
437
+ ];
438
+ this.pages = [];
439
+ this.pageChanged = new EventEmitter();
440
+ this.pageSizeChanged = new EventEmitter();
441
+ this.canPreviousPage = false;
442
+ this.canNextPage = false;
443
+ // SORTING
444
+ // tslint:disable-next-line:no-input-rename
445
+ this.sortOptions = [];
446
+ // tslint:disable-next-line:no-input-rename
447
+ this.sort = null;
448
+ // tslint:disable-next-line:no-input-rename
449
+ this.sortdir = 'desc';
450
+ this.sortChanged = new EventEmitter();
451
+ this.sortdirChanged = new EventEmitter();
452
+ this.sortdirIcon = Icons.SortDesc;
453
+ }
454
+ ngOnChanges(changes) {
455
+ this.calcPages();
456
+ }
457
+ ngOnInit() {
458
+ }
459
+ calcPages() {
460
+ this.pages = [];
461
+ if (this.count && this.count > 0) {
462
+ const pageCount = this.count / this.pageSize;
463
+ for (let i = 0; i < pageCount; i++) {
464
+ this.pages.push(new MenuOption(i + 1 + '', i + 1));
465
+ }
466
+ }
467
+ this.canPreviousPage = this.page > 1;
468
+ this.canNextPage = this.page < this.pages.length;
469
+ }
470
+ nextPage() {
471
+ const next = this.page + 1;
472
+ this.gotoPage(next);
473
+ }
474
+ previousPage() {
475
+ const previous = this.page - 1;
476
+ this.gotoPage(previous);
477
+ }
478
+ gotoPage(page) {
479
+ this.page = page;
480
+ this.pageChanged.emit(page);
481
+ this.calcPages();
482
+ }
483
+ pageSizeOptionChanged(pageSize) {
484
+ this.pageSizeChanged.emit(pageSize);
485
+ this.calcPages();
486
+ }
487
+ pageOptionChanged(page) {
488
+ this.pageChanged.emit(page);
489
+ this.calcPages();
490
+ }
491
+ sortOptionChanged(sort) {
492
+ this.sortChanged.emit(sort);
493
+ }
494
+ toggleSortdir() {
495
+ let sortdir = 'desc';
496
+ if (this.sortdir === 'desc') {
497
+ sortdir = 'asc';
498
+ this.sortdirIcon = Icons.SortAsc;
499
+ }
500
+ else {
501
+ sortdir = 'desc';
502
+ this.sortdirIcon = Icons.SortDesc;
503
+ }
504
+ this.sortdirChanged.emit(sortdir);
505
+ }
506
+ }
507
+ PagerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: PagerComponent, deps: [{ token: i1$1.Router }], target: i0.ɵɵFactoryTarget.Component });
508
+ PagerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.0", type: PagerComponent, selector: "lib-pager", inputs: { busy: "busy", count: "count", page: "page", pageSize: ["page-size", "pageSize"], pageSizeOptions: ["page-size-options", "pageSizeOptions"], sortOptions: ["sort-options", "sortOptions"], sort: "sort", sortdir: ["sort-dir", "sortdir"] }, outputs: { pageChanged: "pageChanged", pageSizeChanged: "pageSizeChanged", sortChanged: "sortChanged", sortdirChanged: "sortdirChanged" }, usesOnChanges: true, ngImport: i0, template: "<div class=\"pager-container\">\n <div class=\"pager-container-inner\">\n <div class=\"inline-flex\" *ngIf=\"sortOptions && sortOptions.length > 0\">\n <lib-drop-down-menu [options]=\"sortOptions\" [selected]=\"sort\" (selectedChanged)=\"sortOptionChanged($event)\"></lib-drop-down-menu>\n <button (click)=\"toggleSortdir()\" [disabled]=\"!sort || busy\" class=\"pager-icon-button\">\n <span class=\"sr-only\">sort direction</span>\n <span class=\"inline-block relative\">\n <i [class]=\"sortdirIcon\"></i>\n </span>\n </button>\n </div>\n <div class=\"pager-pages-container\">\n <lib-drop-down-menu [options]=\"pageSizeOptions\" [selected]=\"pageSize\" (selectedChanged)=\"pageSizeOptionChanged($event)\"></lib-drop-down-menu>\n <div class=\"mx-2\" *ngIf=\"count !== null && count > pageSize\">\n <button [disabled]=\"!canPreviousPage || busy\" (click)=\"previousPage()\"\n class=\"pager-arrow-button-left\">\n <span class=\"sr-only\">Previous</span>\n <svg class=\"h-5 w-5\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\" fill=\"currentColor\" aria-hidden=\"true\">\n <path fill-rule=\"evenodd\" d=\"M12.707 5.293a1 1 0 010 1.414L9.414 10l3.293 3.293a1 1 0 01-1.414 1.414l-4-4a1 1 0 010-1.414l4-4a1 1 0 011.414 0z\" clip-rule=\"evenodd\" />\n </svg>\n </button>\n <button [disabled]=\"!canNextPage || busy\" (click)=\"nextPage()\"\n class=\"pager-arrow-button-right\">\n <span class=\"sr-only\">Next</span>\n <svg class=\"h-5 w-5\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\" fill=\"currentColor\" aria-hidden=\"true\">\n <path fill-rule=\"evenodd\" d=\"M7.293 14.707a1 1 0 010-1.414L10.586 10 7.293 6.707a1 1 0 011.414-1.414l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414 0z\" clip-rule=\"evenodd\" />\n </svg>\n </button>\n </div>\n <lib-drop-down-menu *ngIf=\"(pages && pages.length > 0) && (count !== null && count > pageSize)\" [options]=\"pages\" [selected]=\"page\" (selectedChanged)=\"pageOptionChanged($event)\"></lib-drop-down-menu>\n </div>\n </div>\n</div>\n", dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: DropDownMenuComponent, selector: "lib-drop-down-menu", inputs: ["options", "selected", "multiple", "placeholder"], outputs: ["selectedChange", "selectedChanged"] }] });
509
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: PagerComponent, decorators: [{
510
+ type: Component,
511
+ args: [{ selector: 'lib-pager', template: "<div class=\"pager-container\">\n <div class=\"pager-container-inner\">\n <div class=\"inline-flex\" *ngIf=\"sortOptions && sortOptions.length > 0\">\n <lib-drop-down-menu [options]=\"sortOptions\" [selected]=\"sort\" (selectedChanged)=\"sortOptionChanged($event)\"></lib-drop-down-menu>\n <button (click)=\"toggleSortdir()\" [disabled]=\"!sort || busy\" class=\"pager-icon-button\">\n <span class=\"sr-only\">sort direction</span>\n <span class=\"inline-block relative\">\n <i [class]=\"sortdirIcon\"></i>\n </span>\n </button>\n </div>\n <div class=\"pager-pages-container\">\n <lib-drop-down-menu [options]=\"pageSizeOptions\" [selected]=\"pageSize\" (selectedChanged)=\"pageSizeOptionChanged($event)\"></lib-drop-down-menu>\n <div class=\"mx-2\" *ngIf=\"count !== null && count > pageSize\">\n <button [disabled]=\"!canPreviousPage || busy\" (click)=\"previousPage()\"\n class=\"pager-arrow-button-left\">\n <span class=\"sr-only\">Previous</span>\n <svg class=\"h-5 w-5\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\" fill=\"currentColor\" aria-hidden=\"true\">\n <path fill-rule=\"evenodd\" d=\"M12.707 5.293a1 1 0 010 1.414L9.414 10l3.293 3.293a1 1 0 01-1.414 1.414l-4-4a1 1 0 010-1.414l4-4a1 1 0 011.414 0z\" clip-rule=\"evenodd\" />\n </svg>\n </button>\n <button [disabled]=\"!canNextPage || busy\" (click)=\"nextPage()\"\n class=\"pager-arrow-button-right\">\n <span class=\"sr-only\">Next</span>\n <svg class=\"h-5 w-5\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\" fill=\"currentColor\" aria-hidden=\"true\">\n <path fill-rule=\"evenodd\" d=\"M7.293 14.707a1 1 0 010-1.414L10.586 10 7.293 6.707a1 1 0 011.414-1.414l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414 0z\" clip-rule=\"evenodd\" />\n </svg>\n </button>\n </div>\n <lib-drop-down-menu *ngIf=\"(pages && pages.length > 0) && (count !== null && count > pageSize)\" [options]=\"pages\" [selected]=\"page\" (selectedChanged)=\"pageOptionChanged($event)\"></lib-drop-down-menu>\n </div>\n </div>\n</div>\n" }]
512
+ }], ctorParameters: function () { return [{ type: i1$1.Router }]; }, propDecorators: { busy: [{
513
+ type: Input
514
+ }], count: [{
515
+ type: Input
516
+ }], page: [{
517
+ type: Input
518
+ }], pageSize: [{
519
+ type: Input,
520
+ args: ['page-size']
521
+ }], pageSizeOptions: [{
522
+ type: Input,
523
+ args: ['page-size-options']
524
+ }], pageChanged: [{
525
+ type: Output
526
+ }], pageSizeChanged: [{
527
+ type: Output
528
+ }], sortOptions: [{
529
+ type: Input,
530
+ args: ['sort-options']
531
+ }], sort: [{
532
+ type: Input,
533
+ args: ['sort']
534
+ }], sortdir: [{
535
+ type: Input,
536
+ args: ['sort-dir']
537
+ }], sortChanged: [{
538
+ type: Output
539
+ }], sortdirChanged: [{
540
+ type: Output
541
+ }] } });
542
+
543
+ class ListTileComponent {
544
+ constructor() {
545
+ this.template = null;
546
+ }
547
+ }
548
+ ListTileComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: ListTileComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
549
+ ListTileComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.0", type: ListTileComponent, selector: "lib-list-tile", queries: [{ propertyName: "template", first: true, predicate: TemplateRef, descendants: true }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
550
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: ListTileComponent, decorators: [{
551
+ type: Component,
552
+ args: [{ selector: 'lib-list-tile', template: '<ng-content></ng-content>' }]
553
+ }], ctorParameters: function () { return []; }, propDecorators: { template: [{
554
+ type: ContentChild,
555
+ args: [TemplateRef]
556
+ }] } });
557
+
558
+ class ListColumnComponent {
559
+ constructor() {
560
+ this.title = null;
561
+ // tslint:disable-next-line:no-input-rename
562
+ this.fullWidth = false;
563
+ this.template = null;
564
+ }
565
+ }
566
+ ListColumnComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: ListColumnComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
567
+ ListColumnComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.0", type: ListColumnComponent, selector: "lib-list-column", inputs: { title: "title", fullWidth: ["full-width", "fullWidth"] }, queries: [{ propertyName: "template", first: true, predicate: TemplateRef, descendants: true }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
568
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: ListColumnComponent, decorators: [{
569
+ type: Component,
570
+ args: [{ selector: 'lib-list-column', template: '<ng-content></ng-content>' }]
571
+ }], ctorParameters: function () { return []; }, propDecorators: { title: [{
572
+ type: Input
573
+ }], fullWidth: [{
574
+ type: Input,
575
+ args: ['full-width']
576
+ }], template: [{
577
+ type: ContentChild,
578
+ args: [TemplateRef]
579
+ }] } });
580
+
581
+ class ListDetailsSectionComponent {
582
+ constructor() {
583
+ this.template = null;
584
+ }
585
+ }
586
+ ListDetailsSectionComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: ListDetailsSectionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
587
+ ListDetailsSectionComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.0", type: ListDetailsSectionComponent, selector: "lib-list-details-section", queries: [{ propertyName: "template", first: true, predicate: TemplateRef, descendants: true }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
588
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: ListDetailsSectionComponent, decorators: [{
589
+ type: Component,
590
+ args: [{ selector: 'lib-list-details-section', template: '<ng-content></ng-content>' }]
591
+ }], ctorParameters: function () { return []; }, propDecorators: { template: [{
592
+ type: ContentChild,
593
+ args: [TemplateRef]
594
+ }] } });
595
+
596
+ class ListViewEmptyStateComponent {
597
+ constructor() {
598
+ this.title = 'Δεν βρέθηκαν εγγραφές.';
599
+ // tslint:disable-next-line:no-input-rename
600
+ this.subTitle = 'Παρακαλώ αλλάξτε τα κριτήρια αναζήτησης σας ή ξεκινήστε προσθέτοντας μια νέα εγγραφή';
601
+ // tslint:disable-next-line:no-input-rename
602
+ this.newItemLabel = 'Νέα εγγραφή';
603
+ }
604
+ ngOnInit() {
605
+ }
606
+ }
607
+ ListViewEmptyStateComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: ListViewEmptyStateComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
608
+ ListViewEmptyStateComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.0", type: ListViewEmptyStateComponent, selector: "lib-list-view-empty-state", inputs: { title: "title", subTitle: ["sub-title", "subTitle"], newItemLabel: ["new-item-label", "newItemLabel"] }, ngImport: i0, template: "<div class=\"p-20\">\n <div class=\"text-center p-2\">\n <svg xmlns=\"http://www.w3.org/2000/svg\" class=\"mx-auto h-12 w-12 text-gray-400\" fill=\"none\" viewBox=\"0 0 24 24\" stroke=\"currentColor\">\n <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M4 7v10c0 2.21 3.582 4 8 4s8-1.79 8-4V7M4 7c0 2.21 3.582 4 8 4s8-1.79 8-4M4 7c0-2.21 3.582-4 8-4s8 1.79 8 4m0 5c0 2.21-3.582 4-8 4s-8-1.79-8-4\" />\n </svg>\n <h3 class=\"mt-2 text-sm font-medium text-gray-900\">{{title}}</h3>\n <p class=\"mt-1 text-sm text-gray-500\">\n {{subTitle}}\n </p>\n <div class=\"mt-6\" *ngIf=\"false\">\n <button type=\"button\" class=\"inline-flex items-center px-4 py-2 border border-transparent shadow-sm text-sm font-medium rounded-md text-white bg-gray-600 hover:bg-gray-700 focus:outline-none focus:ring-2 focus:ring-offset-1 focus:ring-gray-500\">\n <!-- Heroicon name: solid/plus -->\n <svg class=\"-ml-1 mr-2 h-6 w-6\" fill=\"none\" viewBox=\"0 0 24 24\" stroke=\"currentColor\" aria-hidden=\"true\">\n <path vector-effect=\"non-scaling-stroke\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M9 13h6m-3-3v6m-9 1V7a2 2 0 012-2h6l2 2h6a2 2 0 012 2v8a2 2 0 01-2 2H5a2 2 0 01-2-2z\" />\n </svg>\n {{newItemLabel}}\n </button>\n </div>\n </div>\n</div>\n", dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
609
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: ListViewEmptyStateComponent, decorators: [{
610
+ type: Component,
611
+ args: [{ selector: 'lib-list-view-empty-state', template: "<div class=\"p-20\">\n <div class=\"text-center p-2\">\n <svg xmlns=\"http://www.w3.org/2000/svg\" class=\"mx-auto h-12 w-12 text-gray-400\" fill=\"none\" viewBox=\"0 0 24 24\" stroke=\"currentColor\">\n <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M4 7v10c0 2.21 3.582 4 8 4s8-1.79 8-4V7M4 7c0 2.21 3.582 4 8 4s8-1.79 8-4M4 7c0-2.21 3.582-4 8-4s8 1.79 8 4m0 5c0 2.21-3.582 4-8 4s-8-1.79-8-4\" />\n </svg>\n <h3 class=\"mt-2 text-sm font-medium text-gray-900\">{{title}}</h3>\n <p class=\"mt-1 text-sm text-gray-500\">\n {{subTitle}}\n </p>\n <div class=\"mt-6\" *ngIf=\"false\">\n <button type=\"button\" class=\"inline-flex items-center px-4 py-2 border border-transparent shadow-sm text-sm font-medium rounded-md text-white bg-gray-600 hover:bg-gray-700 focus:outline-none focus:ring-2 focus:ring-offset-1 focus:ring-gray-500\">\n <!-- Heroicon name: solid/plus -->\n <svg class=\"-ml-1 mr-2 h-6 w-6\" fill=\"none\" viewBox=\"0 0 24 24\" stroke=\"currentColor\" aria-hidden=\"true\">\n <path vector-effect=\"non-scaling-stroke\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M9 13h6m-3-3v6m-9 1V7a2 2 0 012-2h6l2 2h6a2 2 0 012 2v8a2 2 0 01-2 2H5a2 2 0 01-2-2z\" />\n </svg>\n {{newItemLabel}}\n </button>\n </div>\n </div>\n</div>\n" }]
612
+ }], ctorParameters: function () { return []; }, propDecorators: { title: [{
613
+ type: Input
614
+ }], subTitle: [{
615
+ type: Input,
616
+ args: ['sub-title']
617
+ }], newItemLabel: [{
618
+ type: Input,
619
+ args: ['new-item-label']
620
+ }] } });
621
+
622
+ class SkeletonLoaderComponent {
623
+ constructor() {
624
+ this.count = 5;
625
+ this.type = 'tiles'; // 'large-tile', 'table'
626
+ }
627
+ ngOnInit() {
628
+ }
629
+ counter(i) {
630
+ return new Array(i);
631
+ }
632
+ }
633
+ SkeletonLoaderComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: SkeletonLoaderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
634
+ SkeletonLoaderComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.0", type: SkeletonLoaderComponent, selector: "lib-skeleton-loader", inputs: { count: "count", type: "type" }, ngImport: i0, template: "<!-- <h1>SKELETON LOADER!</h1> -->\n<ng-container *ngSwitch=\"type\">\n <div class=\"cards-deck-4\" *ngSwitchCase=\"'tiles'\">\n <ng-container *ngFor=\"let i of counter(count)\">\n <div class=\"relative p-4 w-full bg-white rounded-lg overflow-hidden shadow hover:shadow-md rounded-lg\">\n <div class=\"animate-pulse flex flex-col\">\n <div class=\"rounded w-full h-32 bg-gray-200\"></div>\n <div class=\"flex flex-col mt-5\">\n <div class=\"w-full h-5 bg-gray-200 rounded\"></div>\n <div class=\"mt-2 w-10/12 h-3 bg-gray-200 rounded\"></div>\n <div class=\"mt-2 w-8/12 h-3 bg-gray-200 rounded\"></div>\n </div>\n\n <div class=\"grid grid-cols-2 mt-5 gap-x-2 gap-y-1\">\n <div class=\"mt-2 w-full h-3 bg-gray-200 rounded\"></div>\n <div class=\"mt-2 w-full h-3 bg-gray-200 rounded\"></div>\n <div class=\"mt-2 w-full h-3 bg-gray-200 rounded\"></div>\n <div class=\"mt-2 w-full h-3 bg-gray-200 rounded\"></div>\n </div>\n\n <div class=\"flex items-center mt-5\">\n <div>\n <div class=\"rounded-full bg-gray-200 w-10 h-10\"></div>\n </div>\n <div class=\"flex justify-between w-full ml-3\">\n <div class=\"w-5/12 h-3 bg-gray-200 rounded\"></div>\n <div class=\"w-2/12 h-3 bg-gray-200 rounded\"></div>\n </div>\n </div>\n </div>\n </div>\n </ng-container>\n </div>\n <div class=\"cards-deck-3\" *ngSwitchCase=\"'large-tiles'\">\n <ng-container *ngFor=\"let i of counter(count)\">\n <div class=\"relative p-4 w-full bg-white rounded-lg overflow-hidden shadow hover:shadow-md rounded-lg\">\n <div class=\"animate-pulse flex flex-col\">\n <div class=\"rounded w-full h-52 bg-gray-200\"></div>\n <div class=\"flex flex-col mt-5\">\n <div class=\"w-full h-5 bg-gray-200 rounded\"></div>\n <div class=\"mt-2 w-10/12 h-3 bg-gray-200 rounded\"></div>\n <div class=\"mt-2 w-8/12 h-3 bg-gray-200 rounded\"></div>\n </div>\n\n <div class=\"grid grid-cols-2 mt-5 gap-x-2 gap-y-1\">\n <div class=\"mt-2 w-full h-3 bg-gray-200 rounded\"></div>\n <div class=\"mt-2 w-full h-3 bg-gray-200 rounded\"></div>\n <div class=\"mt-2 w-full h-3 bg-gray-200 rounded\"></div>\n <div class=\"mt-2 w-full h-3 bg-gray-200 rounded\"></div>\n </div>\n\n <div class=\"flex items-center mt-5\">\n <div>\n <div class=\"rounded-full bg-gray-200 w-10 h-10\"></div>\n </div>\n <div class=\"flex justify-between w-full ml-3\">\n <div class=\"w-5/12 h-3 bg-gray-200 rounded\"></div>\n <div class=\"w-2/12 h-3 bg-gray-200 rounded\"></div>\n </div>\n </div>\n </div>\n </div>\n </ng-container>\n </div>\n <div class=\"cards-deck-1\" *ngSwitchCase=\"'table'\">\n <ng-container *ngFor=\"let i of counter(count)\">\n <div class=\"border border-light-blue-300 shadow rounded-sm p-4 max-w-sm w-full mx-auto mb-4\">\n <div class=\"animate-pulse flex space-x-4\">\n <div class=\"rounded-full bg-light-blue-400 h-12 w-12\">&nbsp;</div>\n <div class=\"flex-1 space-y-4 py-1\">\n <div class=\"h-4 bg-light-blue-400 rounded w-3/4\">&nbsp;</div>\n <div class=\"space-y-2\">\n <div class=\"h-4 bg-light-blue-400 rounded\">&nbsp;</div>\n <div class=\"h-4 bg-light-blue-400 rounded w-5/6\">&nbsp;</div>\n </div>\n </div>\n </div>\n </div>\n </ng-container>\n </div>\n <div class=\"cards-deck-3\" *ngSwitchDefault>\n <ng-container *ngFor=\"let i of counter(count)\">\n <div class=\"relative p-4 w-full bg-white rounded-lg overflow-hidden shadow hover:shadow-md rounded-lg\">\n <div class=\"animate-pulse flex flex-col\">\n <div class=\"rounded w-full h-52 bg-gray-200\"></div>\n <div class=\"flex flex-col mt-5\">\n <div class=\"w-full h-5 bg-gray-200 rounded\"></div>\n <div class=\"mt-2 w-10/12 h-3 bg-gray-200 rounded\"></div>\n <div class=\"mt-2 w-8/12 h-3 bg-gray-200 rounded\"></div>\n </div>\n\n <div class=\"grid grid-cols-2 mt-5 gap-x-2 gap-y-1\">\n <div class=\"mt-2 w-full h-3 bg-gray-200 rounded\"></div>\n <div class=\"mt-2 w-full h-3 bg-gray-200 rounded\"></div>\n <div class=\"mt-2 w-full h-3 bg-gray-200 rounded\"></div>\n <div class=\"mt-2 w-full h-3 bg-gray-200 rounded\"></div>\n </div>\n\n <div class=\"flex items-center mt-5\">\n <div>\n <div class=\"rounded-full bg-gray-200 w-10 h-10\"></div>\n </div>\n <div class=\"flex justify-between w-full ml-3\">\n <div class=\"w-5/12 h-3 bg-gray-200 rounded\"></div>\n <div class=\"w-2/12 h-3 bg-gray-200 rounded\"></div>\n </div>\n </div>\n </div>\n </div>\n </ng-container>\n </div>\n</ng-container>\n", dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { kind: "directive", type: i1.NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }, { kind: "directive", type: i1.NgSwitchDefault, selector: "[ngSwitchDefault]" }] });
635
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: SkeletonLoaderComponent, decorators: [{
636
+ type: Component,
637
+ args: [{ selector: 'lib-skeleton-loader', template: "<!-- <h1>SKELETON LOADER!</h1> -->\n<ng-container *ngSwitch=\"type\">\n <div class=\"cards-deck-4\" *ngSwitchCase=\"'tiles'\">\n <ng-container *ngFor=\"let i of counter(count)\">\n <div class=\"relative p-4 w-full bg-white rounded-lg overflow-hidden shadow hover:shadow-md rounded-lg\">\n <div class=\"animate-pulse flex flex-col\">\n <div class=\"rounded w-full h-32 bg-gray-200\"></div>\n <div class=\"flex flex-col mt-5\">\n <div class=\"w-full h-5 bg-gray-200 rounded\"></div>\n <div class=\"mt-2 w-10/12 h-3 bg-gray-200 rounded\"></div>\n <div class=\"mt-2 w-8/12 h-3 bg-gray-200 rounded\"></div>\n </div>\n\n <div class=\"grid grid-cols-2 mt-5 gap-x-2 gap-y-1\">\n <div class=\"mt-2 w-full h-3 bg-gray-200 rounded\"></div>\n <div class=\"mt-2 w-full h-3 bg-gray-200 rounded\"></div>\n <div class=\"mt-2 w-full h-3 bg-gray-200 rounded\"></div>\n <div class=\"mt-2 w-full h-3 bg-gray-200 rounded\"></div>\n </div>\n\n <div class=\"flex items-center mt-5\">\n <div>\n <div class=\"rounded-full bg-gray-200 w-10 h-10\"></div>\n </div>\n <div class=\"flex justify-between w-full ml-3\">\n <div class=\"w-5/12 h-3 bg-gray-200 rounded\"></div>\n <div class=\"w-2/12 h-3 bg-gray-200 rounded\"></div>\n </div>\n </div>\n </div>\n </div>\n </ng-container>\n </div>\n <div class=\"cards-deck-3\" *ngSwitchCase=\"'large-tiles'\">\n <ng-container *ngFor=\"let i of counter(count)\">\n <div class=\"relative p-4 w-full bg-white rounded-lg overflow-hidden shadow hover:shadow-md rounded-lg\">\n <div class=\"animate-pulse flex flex-col\">\n <div class=\"rounded w-full h-52 bg-gray-200\"></div>\n <div class=\"flex flex-col mt-5\">\n <div class=\"w-full h-5 bg-gray-200 rounded\"></div>\n <div class=\"mt-2 w-10/12 h-3 bg-gray-200 rounded\"></div>\n <div class=\"mt-2 w-8/12 h-3 bg-gray-200 rounded\"></div>\n </div>\n\n <div class=\"grid grid-cols-2 mt-5 gap-x-2 gap-y-1\">\n <div class=\"mt-2 w-full h-3 bg-gray-200 rounded\"></div>\n <div class=\"mt-2 w-full h-3 bg-gray-200 rounded\"></div>\n <div class=\"mt-2 w-full h-3 bg-gray-200 rounded\"></div>\n <div class=\"mt-2 w-full h-3 bg-gray-200 rounded\"></div>\n </div>\n\n <div class=\"flex items-center mt-5\">\n <div>\n <div class=\"rounded-full bg-gray-200 w-10 h-10\"></div>\n </div>\n <div class=\"flex justify-between w-full ml-3\">\n <div class=\"w-5/12 h-3 bg-gray-200 rounded\"></div>\n <div class=\"w-2/12 h-3 bg-gray-200 rounded\"></div>\n </div>\n </div>\n </div>\n </div>\n </ng-container>\n </div>\n <div class=\"cards-deck-1\" *ngSwitchCase=\"'table'\">\n <ng-container *ngFor=\"let i of counter(count)\">\n <div class=\"border border-light-blue-300 shadow rounded-sm p-4 max-w-sm w-full mx-auto mb-4\">\n <div class=\"animate-pulse flex space-x-4\">\n <div class=\"rounded-full bg-light-blue-400 h-12 w-12\">&nbsp;</div>\n <div class=\"flex-1 space-y-4 py-1\">\n <div class=\"h-4 bg-light-blue-400 rounded w-3/4\">&nbsp;</div>\n <div class=\"space-y-2\">\n <div class=\"h-4 bg-light-blue-400 rounded\">&nbsp;</div>\n <div class=\"h-4 bg-light-blue-400 rounded w-5/6\">&nbsp;</div>\n </div>\n </div>\n </div>\n </div>\n </ng-container>\n </div>\n <div class=\"cards-deck-3\" *ngSwitchDefault>\n <ng-container *ngFor=\"let i of counter(count)\">\n <div class=\"relative p-4 w-full bg-white rounded-lg overflow-hidden shadow hover:shadow-md rounded-lg\">\n <div class=\"animate-pulse flex flex-col\">\n <div class=\"rounded w-full h-52 bg-gray-200\"></div>\n <div class=\"flex flex-col mt-5\">\n <div class=\"w-full h-5 bg-gray-200 rounded\"></div>\n <div class=\"mt-2 w-10/12 h-3 bg-gray-200 rounded\"></div>\n <div class=\"mt-2 w-8/12 h-3 bg-gray-200 rounded\"></div>\n </div>\n\n <div class=\"grid grid-cols-2 mt-5 gap-x-2 gap-y-1\">\n <div class=\"mt-2 w-full h-3 bg-gray-200 rounded\"></div>\n <div class=\"mt-2 w-full h-3 bg-gray-200 rounded\"></div>\n <div class=\"mt-2 w-full h-3 bg-gray-200 rounded\"></div>\n <div class=\"mt-2 w-full h-3 bg-gray-200 rounded\"></div>\n </div>\n\n <div class=\"flex items-center mt-5\">\n <div>\n <div class=\"rounded-full bg-gray-200 w-10 h-10\"></div>\n </div>\n <div class=\"flex justify-between w-full ml-3\">\n <div class=\"w-5/12 h-3 bg-gray-200 rounded\"></div>\n <div class=\"w-2/12 h-3 bg-gray-200 rounded\"></div>\n </div>\n </div>\n </div>\n </div>\n </ng-container>\n </div>\n</ng-container>\n" }]
638
+ }], ctorParameters: function () { return []; }, propDecorators: { count: [{
639
+ type: Input
640
+ }], type: [{
641
+ type: Input
642
+ }] } });
643
+
644
+ class ListViewComponent {
645
+ constructor() {
646
+ // BUSY STATE
647
+ this.busy = false;
648
+ this.expandIcon = Icons.Expand;
649
+ this.collapseIcon = Icons.Collapse;
650
+ // tslint:disable-next-line:no-input-rename
651
+ this.showPager = true;
652
+ // PAGING - pass through for pager component
653
+ this.count = null;
654
+ this.page = 1;
655
+ // tslint:disable-next-line:no-input-rename
656
+ this.pageSize = 20;
657
+ // tslint:disable-next-line:no-input-rename
658
+ this.pageSizeOptions = [];
659
+ this.pageChanged = new EventEmitter();
660
+ this.pageSizeChanged = new EventEmitter();
661
+ this.detailsOpened = new EventEmitter();
662
+ this.tableViewSupported = false;
663
+ this.multipleFullWidth = false;
664
+ this.fullWidthTHClass = 'list-view-th-full';
665
+ this.fullWidthTDClass = 'list-view-td-full';
666
+ this.tilesViewSupported = false;
667
+ this.detailsSectionSupported = false;
668
+ this.loaderItems = [];
669
+ // DETAILS SECTION
670
+ // Check if details section and button should be displayed according to the count of the value given
671
+ // tslint:disable-next-line:no-input-rename
672
+ this.detailsSectionPropertyCount = null;
673
+ // SORTING - pass through for pager component
674
+ // tslint:disable-next-line:no-input-rename
675
+ this.sortOptions = [];
676
+ this.sort = null;
677
+ // tslint:disable-next-line:no-input-rename
678
+ this.sortdir = '-';
679
+ this.sortChanged = new EventEmitter();
680
+ this.sortdirChanged = new EventEmitter();
681
+ this.view = ListViewType.Table;
682
+ // COLUMNS
683
+ this.columns = [];
684
+ this.tilesDeckClass = 'cards-deck-4';
685
+ // tslint:disable-next-line:no-input-rename
686
+ this.tilesCount = 4;
687
+ this.tileTemplate = null;
688
+ this.detailsTemplate = null;
689
+ for (let i = 0; i < 5; i++) {
690
+ this.loaderItems.push({});
691
+ }
692
+ }
693
+ set cols(refs) {
694
+ this.columns = refs === null || refs === void 0 ? void 0 : refs.toArray();
695
+ if (this.columns && this.columns.length > 0) {
696
+ this.tableViewSupported = true;
697
+ }
698
+ this.multipleFullWidth = this.columns.filter(c => c.fullWidth).length > 1;
699
+ this.fullWidthTHClass = this.multipleFullWidth ? 'list-view-th-half' : 'list-view-th-full';
700
+ this.fullWidthTDClass = this.multipleFullWidth ? 'list-view-td-half' : 'list-view-td-full';
701
+ }
702
+ set tiles(ref) {
703
+ this.tileTemplate = ref;
704
+ if (this.tileTemplate) {
705
+ this.tilesViewSupported = true;
706
+ }
707
+ }
708
+ set details(ref) {
709
+ this.detailsTemplate = ref;
710
+ if (this.detailsTemplate) {
711
+ this.detailsSectionSupported = true;
712
+ }
713
+ }
714
+ ngOnChanges(changes) {
715
+ const tilesCountChange = changes['tiles-count'] || changes.tilesCount;
716
+ if (tilesCountChange) {
717
+ this.setTilesDeckClass(tilesCountChange.currentValue);
718
+ }
719
+ }
720
+ // events
721
+ emitPageChanged($event) {
722
+ this.pageChanged.emit($event);
723
+ }
724
+ emitPageSizeChanged($event) {
725
+ this.pageSizeChanged.emit($event);
726
+ }
727
+ emitSortChanged($event) {
728
+ this.sortChanged.emit($event);
729
+ }
730
+ emitSortdirChanged($event) {
731
+ this.sortdirChanged.emit($event);
732
+ }
733
+ toggleDetails(item) {
734
+ item.detailsExpanded = !item.detailsExpanded;
735
+ this.detailsOpened.emit({ item, open: item.detailsExpanded });
736
+ }
737
+ // helpers
738
+ setTilesDeckClass(tiles) {
739
+ if (tiles >= 1 && tiles <= 4) {
740
+ this.tilesDeckClass =
741
+ this.view !== ListViewType.Gallery
742
+ ? `cards-deck-${tiles}`
743
+ : this.items && this.items.length > 0
744
+ ? `gallery-deck-${tiles}`
745
+ : 'gallery-deck';
746
+ }
747
+ else {
748
+ this.tilesDeckClass =
749
+ this.view !== ListViewType.Gallery
750
+ ? 'cards-deck-3'
751
+ : this.items && this.items.length > 0
752
+ ? 'gallery-deck-3'
753
+ : 'gallery-deck';
754
+ }
755
+ }
756
+ }
757
+ ListViewComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: ListViewComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
758
+ ListViewComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.0", type: ListViewComponent, selector: "lib-list-view", inputs: { busy: "busy", items: "items", showPager: ["show-pager", "showPager"], count: "count", page: "page", pageSize: ["page-size", "pageSize"], pageSizeOptions: ["page-size-options", "pageSizeOptions"], detailsSectionPropertyCount: ["details-section-property-count", "detailsSectionPropertyCount"], sortOptions: ["sort-options", "sortOptions"], sort: "sort", sortdir: ["sort-dir", "sortdir"], view: "view", tilesCount: ["tiles-count", "tilesCount"] }, outputs: { pageChanged: "pageChanged", pageSizeChanged: "pageSizeChanged", detailsOpened: "detailsOpened", sortChanged: "sortChanged", sortdirChanged: "sortdirChanged" }, queries: [{ propertyName: "tiles", first: true, predicate: ListTileComponent, descendants: true, read: ListTileComponent }, { propertyName: "details", first: true, predicate: ListDetailsSectionComponent, descendants: true, read: ListDetailsSectionComponent }, { propertyName: "cols", predicate: ListColumnComponent, read: ListColumnComponent }], usesOnChanges: true, ngImport: i0, template: "<div class=\"px-2\">\n\n <lib-pager *ngIf=\"showPager\"\n [page]=\"page\"\n [page-size]=\"pageSize\"\n [count]=\"count\"\n [sort-options]=\"sortOptions\"\n [sort]=\"sort\"\n [sort-dir]=\"sortdir\"\n [busy]=\"busy\"\n (pageChanged)=\"emitPageChanged($event)\"\n (pageSizeChanged)=\"emitPageSizeChanged($event)\"\n (sortChanged)=\"emitSortChanged($event)\"\n (sortdirChanged)=\"emitSortdirChanged($event)\">\n </lib-pager>\n</div>\n\n<ng-container [ngSwitch]=\"view\">\n\n <ng-container *ngSwitchCase=\"'tiles'\">\n <div [class]=\"tilesDeckClass\">\n\n <lib-skeleton-loader *ngIf=\"busy\" [count]=\"5\" [type]=\"'tiles'\"></lib-skeleton-loader>\n\n <ng-container *ngIf=\"items && items.length > 0\">\n <ng-container *ngFor=\"let item of items\">\n <span *ngIf=\"!tileTemplate || !tileTemplate.template\">template missing..</span>\n <ng-template [ngTemplateOutlet]=\"tileTemplate.template\"\n [ngTemplateOutletContext]=\"{ $implicit: item }\"></ng-template>\n </ng-container>\n </ng-container>\n\n </div>\n </ng-container>\n\n\n <!-- *ngSwitchCase=\"'gallery'\" -->\n <ng-container *ngSwitchCase=\"'gallery'\">\n <ul role=\"list\" [class]=\"tilesDeckClass\">\n\n <lib-skeleton-loader *ngIf=\"busy\" [count]=\"5\" [type]=\"'tiles'\"></lib-skeleton-loader>\n\n <ng-container *ngIf=\"!busy && items && items.length > 0\">\n <ng-container *ngFor=\"let item of items\">\n <span *ngIf=\"!tileTemplate || !tileTemplate.template\">template missing..</span>\n <ng-template [ngTemplateOutlet]=\"tileTemplate.template\"\n [ngTemplateOutletContext]=\"{ $implicit: item }\"></ng-template>\n </ng-container>\n </ng-container>\n </ul>\n </ng-container>\n\n <!-- *ngSwitchCase=\"'table'\" -->\n <ng-container *ngSwitchDefault>\n\n <div class=\"list-view-container\">\n <div class=\"list-view-container-inner\">\n <table class=\"list-view-table\">\n <thead class=\"list-view-thead\">\n <tr>\n <ng-container *ngIf=\"detailsSectionSupported\">\n <th class=\"list-view-th-details\"></th>\n </ng-container>\n <ng-container *ngFor=\"let col of columns\">\n <th scope=\"col\"\n [class]=\"col.fullWidth ? fullWidthTHClass : 'list-view-th'\">\n {{col.title}}\n </th>\n </ng-container>\n </tr>\n </thead>\n <tbody class=\"list-view-tbody\" *ngIf=\"busy\">\n <ng-container *ngFor=\"let item of loaderItems;let i=index\">\n <tr class=\"list-view-tr\">\n <ng-container *ngIf=\"detailsSectionSupported\">\n <td class=\"list-view-td-details\"\n *ngIf=\"detailsSectionPropertyCount !== null ? item[detailsSectionPropertyCount] !== 0 : true; else hiddenDetailsButton\">\n <button disabled\n type=\"button\"\n class=\"expand-collapse-button\">\n <!-- Heroicon name: solid/plus -->\n <i [class]=\"item.detailsExpanded ? collapseIcon : expandIcon\"></i>\n </button>\n </td>\n <ng-template #hiddenDetailsButton>\n <td class=\"list-view-td-details\"></td>\n </ng-template>\n </ng-container>\n <td *ngFor=\"let col of columns\"\n [class]=\"col.fullWidth ? fullWidthTDClass : 'list-view-td'\">\n <div class=\"w-full animate-pulse h-8 bg-gray-200 rounded\"></div>\n </td>\n </tr>\n <ng-container *ngIf=\"detailsSectionSupported\">\n <tr *ngIf=\"item.detailsExpanded\">\n <td [colSpan]=\"columns.length + 1\"\n class=\"list-view-td bg-gray-100\">\n <ng-template [ngTemplateOutlet]=\"detailsTemplate.template\"\n [ngTemplateOutletContext]=\"{ $implicit: item }\"></ng-template>\n </td>\n </tr>\n </ng-container>\n </ng-container>\n </tbody>\n <tbody class=\"list-view-tbody\" *ngIf=\"!busy\">\n <ng-container *ngFor=\"let item of items;let i=index\">\n <tr class=\"list-view-tr\">\n <ng-container *ngIf=\"detailsSectionSupported\">\n <td class=\"list-view-td-details\"\n *ngIf=\"detailsSectionPropertyCount !== null ? item[detailsSectionPropertyCount] !== 0 : true; else hiddenDetailsButton\">\n <button (click)=\"toggleDetails(item)\"\n type=\"button\"\n class=\"expand-collapse-button\">\n <!-- Heroicon name: solid/plus -->\n <i [class]=\"item.detailsExpanded ? collapseIcon : expandIcon\"></i>\n </button>\n </td>\n <ng-template #hiddenDetailsButton>\n <td class=\"list-view-td-details\"></td>\n </ng-template>\n </ng-container>\n <td *ngFor=\"let col of columns\"\n [class]=\"col.fullWidth ? fullWidthTDClass : 'list-view-td'\">\n <ng-template [ngTemplateOutlet]=\"col.template\"\n [ngTemplateOutletContext]=\"{ $implicit: item }\"></ng-template>\n </td>\n </tr>\n <ng-container *ngIf=\"detailsSectionSupported\">\n <tr *ngIf=\"item.detailsExpanded\">\n <td [colSpan]=\"columns.length + 1\"\n class=\"list-view-td bg-gray-100\">\n <ng-template [ngTemplateOutlet]=\"detailsTemplate.template\"\n [ngTemplateOutletContext]=\"{ $implicit: item }\"></ng-template>\n </td>\n </tr>\n </ng-container>\n </ng-container>\n </tbody>\n </table>\n </div>\n </div>\n </ng-container>\n\n <ng-container *ngIf=\"!busy && items && items.length === 0\">\n <div class=\"cards-deck-1\">\n <lib-list-view-empty-state></lib-list-view-empty-state>\n </div>\n </ng-container>\n</ng-container>\n\n<ng-content></ng-content>\n", dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: i1.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { kind: "directive", type: i1.NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }, { kind: "directive", type: i1.NgSwitchDefault, selector: "[ngSwitchDefault]" }, { kind: "component", type: PagerComponent, selector: "lib-pager", inputs: ["busy", "count", "page", "page-size", "page-size-options", "sort-options", "sort", "sort-dir"], outputs: ["pageChanged", "pageSizeChanged", "sortChanged", "sortdirChanged"] }, { kind: "component", type: ListViewEmptyStateComponent, selector: "lib-list-view-empty-state", inputs: ["title", "sub-title", "new-item-label"] }, { kind: "component", type: SkeletonLoaderComponent, selector: "lib-skeleton-loader", inputs: ["count", "type"] }] });
759
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: ListViewComponent, decorators: [{
760
+ type: Component,
761
+ args: [{ selector: 'lib-list-view', template: "<div class=\"px-2\">\n\n <lib-pager *ngIf=\"showPager\"\n [page]=\"page\"\n [page-size]=\"pageSize\"\n [count]=\"count\"\n [sort-options]=\"sortOptions\"\n [sort]=\"sort\"\n [sort-dir]=\"sortdir\"\n [busy]=\"busy\"\n (pageChanged)=\"emitPageChanged($event)\"\n (pageSizeChanged)=\"emitPageSizeChanged($event)\"\n (sortChanged)=\"emitSortChanged($event)\"\n (sortdirChanged)=\"emitSortdirChanged($event)\">\n </lib-pager>\n</div>\n\n<ng-container [ngSwitch]=\"view\">\n\n <ng-container *ngSwitchCase=\"'tiles'\">\n <div [class]=\"tilesDeckClass\">\n\n <lib-skeleton-loader *ngIf=\"busy\" [count]=\"5\" [type]=\"'tiles'\"></lib-skeleton-loader>\n\n <ng-container *ngIf=\"items && items.length > 0\">\n <ng-container *ngFor=\"let item of items\">\n <span *ngIf=\"!tileTemplate || !tileTemplate.template\">template missing..</span>\n <ng-template [ngTemplateOutlet]=\"tileTemplate.template\"\n [ngTemplateOutletContext]=\"{ $implicit: item }\"></ng-template>\n </ng-container>\n </ng-container>\n\n </div>\n </ng-container>\n\n\n <!-- *ngSwitchCase=\"'gallery'\" -->\n <ng-container *ngSwitchCase=\"'gallery'\">\n <ul role=\"list\" [class]=\"tilesDeckClass\">\n\n <lib-skeleton-loader *ngIf=\"busy\" [count]=\"5\" [type]=\"'tiles'\"></lib-skeleton-loader>\n\n <ng-container *ngIf=\"!busy && items && items.length > 0\">\n <ng-container *ngFor=\"let item of items\">\n <span *ngIf=\"!tileTemplate || !tileTemplate.template\">template missing..</span>\n <ng-template [ngTemplateOutlet]=\"tileTemplate.template\"\n [ngTemplateOutletContext]=\"{ $implicit: item }\"></ng-template>\n </ng-container>\n </ng-container>\n </ul>\n </ng-container>\n\n <!-- *ngSwitchCase=\"'table'\" -->\n <ng-container *ngSwitchDefault>\n\n <div class=\"list-view-container\">\n <div class=\"list-view-container-inner\">\n <table class=\"list-view-table\">\n <thead class=\"list-view-thead\">\n <tr>\n <ng-container *ngIf=\"detailsSectionSupported\">\n <th class=\"list-view-th-details\"></th>\n </ng-container>\n <ng-container *ngFor=\"let col of columns\">\n <th scope=\"col\"\n [class]=\"col.fullWidth ? fullWidthTHClass : 'list-view-th'\">\n {{col.title}}\n </th>\n </ng-container>\n </tr>\n </thead>\n <tbody class=\"list-view-tbody\" *ngIf=\"busy\">\n <ng-container *ngFor=\"let item of loaderItems;let i=index\">\n <tr class=\"list-view-tr\">\n <ng-container *ngIf=\"detailsSectionSupported\">\n <td class=\"list-view-td-details\"\n *ngIf=\"detailsSectionPropertyCount !== null ? item[detailsSectionPropertyCount] !== 0 : true; else hiddenDetailsButton\">\n <button disabled\n type=\"button\"\n class=\"expand-collapse-button\">\n <!-- Heroicon name: solid/plus -->\n <i [class]=\"item.detailsExpanded ? collapseIcon : expandIcon\"></i>\n </button>\n </td>\n <ng-template #hiddenDetailsButton>\n <td class=\"list-view-td-details\"></td>\n </ng-template>\n </ng-container>\n <td *ngFor=\"let col of columns\"\n [class]=\"col.fullWidth ? fullWidthTDClass : 'list-view-td'\">\n <div class=\"w-full animate-pulse h-8 bg-gray-200 rounded\"></div>\n </td>\n </tr>\n <ng-container *ngIf=\"detailsSectionSupported\">\n <tr *ngIf=\"item.detailsExpanded\">\n <td [colSpan]=\"columns.length + 1\"\n class=\"list-view-td bg-gray-100\">\n <ng-template [ngTemplateOutlet]=\"detailsTemplate.template\"\n [ngTemplateOutletContext]=\"{ $implicit: item }\"></ng-template>\n </td>\n </tr>\n </ng-container>\n </ng-container>\n </tbody>\n <tbody class=\"list-view-tbody\" *ngIf=\"!busy\">\n <ng-container *ngFor=\"let item of items;let i=index\">\n <tr class=\"list-view-tr\">\n <ng-container *ngIf=\"detailsSectionSupported\">\n <td class=\"list-view-td-details\"\n *ngIf=\"detailsSectionPropertyCount !== null ? item[detailsSectionPropertyCount] !== 0 : true; else hiddenDetailsButton\">\n <button (click)=\"toggleDetails(item)\"\n type=\"button\"\n class=\"expand-collapse-button\">\n <!-- Heroicon name: solid/plus -->\n <i [class]=\"item.detailsExpanded ? collapseIcon : expandIcon\"></i>\n </button>\n </td>\n <ng-template #hiddenDetailsButton>\n <td class=\"list-view-td-details\"></td>\n </ng-template>\n </ng-container>\n <td *ngFor=\"let col of columns\"\n [class]=\"col.fullWidth ? fullWidthTDClass : 'list-view-td'\">\n <ng-template [ngTemplateOutlet]=\"col.template\"\n [ngTemplateOutletContext]=\"{ $implicit: item }\"></ng-template>\n </td>\n </tr>\n <ng-container *ngIf=\"detailsSectionSupported\">\n <tr *ngIf=\"item.detailsExpanded\">\n <td [colSpan]=\"columns.length + 1\"\n class=\"list-view-td bg-gray-100\">\n <ng-template [ngTemplateOutlet]=\"detailsTemplate.template\"\n [ngTemplateOutletContext]=\"{ $implicit: item }\"></ng-template>\n </td>\n </tr>\n </ng-container>\n </ng-container>\n </tbody>\n </table>\n </div>\n </div>\n </ng-container>\n\n <ng-container *ngIf=\"!busy && items && items.length === 0\">\n <div class=\"cards-deck-1\">\n <lib-list-view-empty-state></lib-list-view-empty-state>\n </div>\n </ng-container>\n</ng-container>\n\n<ng-content></ng-content>\n" }]
762
+ }], ctorParameters: function () { return []; }, propDecorators: { busy: [{
763
+ type: Input
764
+ }], items: [{
765
+ type: Input
766
+ }], showPager: [{
767
+ type: Input,
768
+ args: ['show-pager']
769
+ }], count: [{
770
+ type: Input
771
+ }], page: [{
772
+ type: Input
773
+ }], pageSize: [{
774
+ type: Input,
775
+ args: ['page-size']
776
+ }], pageSizeOptions: [{
777
+ type: Input,
778
+ args: ['page-size-options']
779
+ }], pageChanged: [{
780
+ type: Output
781
+ }], pageSizeChanged: [{
782
+ type: Output
783
+ }], detailsOpened: [{
784
+ type: Output
785
+ }], detailsSectionPropertyCount: [{
786
+ type: Input,
787
+ args: ['details-section-property-count']
788
+ }], sortOptions: [{
789
+ type: Input,
790
+ args: ['sort-options']
791
+ }], sort: [{
792
+ type: Input
793
+ }], sortdir: [{
794
+ type: Input,
795
+ args: ['sort-dir']
796
+ }], sortChanged: [{
797
+ type: Output
798
+ }], sortdirChanged: [{
799
+ type: Output
800
+ }], view: [{
801
+ type: Input
802
+ }], cols: [{
803
+ type: ContentChildren,
804
+ args: [ListColumnComponent, { read: ListColumnComponent }]
805
+ }], tilesCount: [{
806
+ type: Input,
807
+ args: ['tiles-count']
808
+ }], tiles: [{
809
+ type: ContentChild,
810
+ args: [ListTileComponent, { read: ListTileComponent }]
811
+ }], details: [{
812
+ type: ContentChild,
813
+ args: [ListDetailsSectionComponent, { read: ListDetailsSectionComponent }]
814
+ }] } });
815
+
816
+ class CollapsiblePanelComponent {
817
+ constructor() {
818
+ this.title = null;
819
+ this.visible = false;
820
+ }
821
+ ngOnInit() {
822
+ }
823
+ }
824
+ CollapsiblePanelComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: CollapsiblePanelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
825
+ CollapsiblePanelComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.0", type: CollapsiblePanelComponent, selector: "lib-collapsible-panel", inputs: { title: "title" }, ngImport: i0, template: "<div class=\"collapsible-panel-container\">\n <div class=\"collapsible-panel-container-shadow\">\n <div class=\"collapsible-panel-container-inner\">\n <button type=\"button\" class=\"collapsible-panel-button\" (click)=\"visible = !visible\">\n <div class=\"collapsible-panel-button-content-container\">\n <span>{{ title }} </span>\n <span class=\"ico-plus\"></span>\n </div>\n </button>\n <div class=\"collapsible-panel-content-container\" *ngIf=\"visible\">\n <ng-content></ng-content>\n </div>\n </div>\n </div>\n</div>\n", dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
826
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: CollapsiblePanelComponent, decorators: [{
827
+ type: Component,
828
+ args: [{ selector: 'lib-collapsible-panel', template: "<div class=\"collapsible-panel-container\">\n <div class=\"collapsible-panel-container-shadow\">\n <div class=\"collapsible-panel-container-inner\">\n <button type=\"button\" class=\"collapsible-panel-button\" (click)=\"visible = !visible\">\n <div class=\"collapsible-panel-button-content-container\">\n <span>{{ title }} </span>\n <span class=\"ico-plus\"></span>\n </div>\n </button>\n <div class=\"collapsible-panel-content-container\" *ngIf=\"visible\">\n <ng-content></ng-content>\n </div>\n </div>\n </div>\n</div>\n" }]
829
+ }], ctorParameters: function () { return []; }, propDecorators: { title: [{
830
+ type: Input
831
+ }] } });
832
+
833
+ class KpiTileComponent {
834
+ constructor() {
835
+ this.title = undefined;
836
+ this.busy = false;
837
+ this.kpi = undefined;
838
+ // tslint:disable-next-line:no-output-rename
839
+ this.tileAction = new EventEmitter();
840
+ }
841
+ ngOnInit() {
842
+ }
843
+ emitTileAction($event) {
844
+ $event.preventDefault();
845
+ $event.stopPropagation();
846
+ this.tileAction.emit($event);
847
+ return false;
848
+ }
849
+ }
850
+ KpiTileComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: KpiTileComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
851
+ KpiTileComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.0", type: KpiTileComponent, selector: "lib-kpi-tile", inputs: { title: "title", busy: "busy", kpi: "kpi" }, outputs: { tileAction: "tile-action" }, ngImport: i0, template: "<div class=\"card\"\n [ngClass]=\"{'card-deck-busy' : busy }\">\n <div class=\"card-body\">\n <div class=\"kpi-tile-title-container\">\n <a href=\"#\"\n class=\"kpi-tile-action\"\n (click)=\"emitTileAction($event)\">{{title || '-'}}</a>\n </div>\n <p class=\"kpi-tile-value\">{{kpi || '-'}}</p>\n <div class=\"card-footer\">\n <div class=\"text-xs\">\n <a href=\"#\"\n class=\"kpi-tile-action\"\n (click)=\"emitTileAction($event)\">\u03A0\u03B5\u03C1\u03B9\u03C3\u03C3\u03CC\u03C4\u03B5\u03C1\u03B1</a>\n </div>\n </div>\n </div>\n</div>", dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
852
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: KpiTileComponent, decorators: [{
853
+ type: Component,
854
+ args: [{ selector: 'lib-kpi-tile', template: "<div class=\"card\"\n [ngClass]=\"{'card-deck-busy' : busy }\">\n <div class=\"card-body\">\n <div class=\"kpi-tile-title-container\">\n <a href=\"#\"\n class=\"kpi-tile-action\"\n (click)=\"emitTileAction($event)\">{{title || '-'}}</a>\n </div>\n <p class=\"kpi-tile-value\">{{kpi || '-'}}</p>\n <div class=\"card-footer\">\n <div class=\"text-xs\">\n <a href=\"#\"\n class=\"kpi-tile-action\"\n (click)=\"emitTileAction($event)\">\u03A0\u03B5\u03C1\u03B9\u03C3\u03C3\u03CC\u03C4\u03B5\u03C1\u03B1</a>\n </div>\n </div>\n </div>\n</div>" }]
855
+ }], ctorParameters: function () { return []; }, propDecorators: { title: [{
856
+ type: Input
857
+ }], busy: [{
858
+ type: Input
859
+ }], kpi: [{
860
+ type: Input
861
+ }], tileAction: [{
862
+ type: Output,
863
+ args: ['tile-action']
864
+ }] } });
865
+
866
+ // freaksly simple date picker : https://tailwind-elements.com/docs/standard/forms/datepicker/
867
+ class DatepickerComponent {
868
+ constructor() {
869
+ this.readonly = false;
870
+ this.disabled = false;
871
+ this.displayFormat = 'dd/MM/yyyy';
872
+ this.placeholder = '';
873
+ this.value = null;
874
+ this.valueChange = new EventEmitter();
875
+ this.showCalendar = false;
876
+ this.showYears = false;
877
+ this.monthNames = [
878
+ 'Ιανουάριος',
879
+ 'Φεβρουάριος',
880
+ 'Μάρτιος',
881
+ 'Απρίλιος',
882
+ 'Μάϊος',
883
+ 'Ιούνιος',
884
+ 'Ιούλιος',
885
+ 'Αύγουστος',
886
+ 'Σεπτέμβριος',
887
+ 'Οκτώβριος',
888
+ 'Νοεμβριος',
889
+ 'Δεκέμβριος',
890
+ ];
891
+ this.dayNames = ['Κυρ', 'Δευ', 'Τρι', 'Τετ', 'Πεμ', 'Παρ', 'Σαβ'];
892
+ this.month = -1;
893
+ this.year = -1;
894
+ this.calendarDates = [];
895
+ this.calendarYears = [];
896
+ this.showCalendarYears = [];
897
+ this.blankDays = [];
898
+ this.calendarYearPage = 1;
899
+ this.yearsPerPage = 30;
900
+ this.onChange$ = undefined;
901
+ this.onTouched$ = undefined;
902
+ }
903
+ ngOnInit() {
904
+ var _a, _b;
905
+ let today = new Date();
906
+ this.month = today.getMonth();
907
+ this.year = today.getFullYear();
908
+ this.calendarDates = [{ day: this.value, today: this.value, selected: this.value }];
909
+ this.calendarYears = [{ year: (_a = this.value) === null || _a === void 0 ? void 0 : _a.getFullYear(), today: this.value, selected: this.value }];
910
+ const yearsArray = [];
911
+ for (let i = 1950; i <= today.getFullYear() + 2; i++) {
912
+ yearsArray.push({ year: i, today: this.compareDates(today, null, i), selected: i == ((_b = this.value) === null || _b === void 0 ? void 0 : _b.getFullYear()) });
913
+ }
914
+ this.calendarYears = yearsArray;
915
+ this.showCalendarYears = this.paginate(this.calendarYears, 1);
916
+ this.calcDays();
917
+ }
918
+ writeValue(obj) {
919
+ if (obj) {
920
+ this.value = new Date(obj);
921
+ this.month = this.value.getMonth();
922
+ this.year = this.value.getFullYear();
923
+ }
924
+ }
925
+ registerOnChange(fn) {
926
+ this.onChange$ = fn;
927
+ }
928
+ registerOnTouched(fn) {
929
+ this.onTouched$ = fn;
930
+ }
931
+ onBlur(event) {
932
+ if (this.onTouched$) {
933
+ this.onTouched$();
934
+ }
935
+ this.getDateFromInput();
936
+ }
937
+ selectDateValue(date) {
938
+ // This should be in UTC
939
+ let selectedDate = new Date(this.year, this.month, date.day, 3, 0, 0, 0);
940
+ this.value = selectedDate;
941
+ this.valueChange.emit(this.value);
942
+ if (this.onChange$) {
943
+ this.onChange$(this.value);
944
+ }
945
+ this.updateDays();
946
+ if (this.onTouched$) {
947
+ this.onTouched$();
948
+ }
949
+ this.showCalendar = false;
950
+ }
951
+ selectYearValue(year) {
952
+ var _a, _b, _c;
953
+ // This should be in UTC
954
+ let selectedDate = new Date(year.year, (_a = this.month) !== null && _a !== void 0 ? _a : 1, (_c = (_b = this.calendarDates) === null || _b === void 0 ? void 0 : _b.find(x => x.selected == true).day) !== null && _c !== void 0 ? _c : 1, 3, 0, 0, 0);
955
+ this.year = year.year;
956
+ this.value = selectedDate;
957
+ this.valueChange.emit(this.value);
958
+ if (this.onChange$) {
959
+ this.onChange$(this.value);
960
+ }
961
+ this.updateDays();
962
+ if (this.onTouched$) {
963
+ this.onTouched$();
964
+ }
965
+ this.showYears = false;
966
+ this.showCalendar = true;
967
+ this.calcDays();
968
+ }
969
+ previousMonth() {
970
+ if (this.month !== 0) {
971
+ this.month = this.month - 1;
972
+ this.calcDays();
973
+ }
974
+ else {
975
+ this.month = 11;
976
+ this.year = this.year - 1;
977
+ this.calcDays();
978
+ }
979
+ if (this.onTouched$) {
980
+ this.onTouched$();
981
+ }
982
+ }
983
+ nextMonth() {
984
+ if (this.month !== 11) {
985
+ this.month = this.month + 1;
986
+ this.calcDays();
987
+ }
988
+ else {
989
+ this.month = 0;
990
+ this.year = this.year + 1;
991
+ this.calcDays();
992
+ }
993
+ if (this.onTouched$) {
994
+ this.onTouched$();
995
+ }
996
+ }
997
+ previousYear() {
998
+ this.showCalendarYears = this.paginate(this.calendarYears, this.calendarYearPage > 1 ? --this.calendarYearPage : 1);
999
+ this.calcDays();
1000
+ if (this.onTouched$) {
1001
+ this.onTouched$();
1002
+ }
1003
+ }
1004
+ nextYear() {
1005
+ this.showCalendarYears = this.paginate(this.calendarYears, this.calendarYearPage <= this.calendarYears.length / this.yearsPerPage
1006
+ ? ++this.calendarYearPage
1007
+ : this.calendarYearPage);
1008
+ this.calcDays();
1009
+ if (this.onTouched$) {
1010
+ this.onTouched$();
1011
+ }
1012
+ }
1013
+ compareDates(date1, day, year) {
1014
+ var _a;
1015
+ if (!date1) {
1016
+ return false;
1017
+ }
1018
+ const d = new Date(year !== null && year !== void 0 ? year : this.year, this.month, day !== null && day !== void 0 ? day : (_a = this.value) === null || _a === void 0 ? void 0 : _a.getDay());
1019
+ return date1.toDateString() === d.toDateString();
1020
+ }
1021
+ ;
1022
+ calcDays() {
1023
+ var _a;
1024
+ const daysInMonth = new Date(this.year, this.month + 1, 0).getDate();
1025
+ // find where to start calendar day of week
1026
+ const dayOfWeek = new Date(this.year, this.month).getDay();
1027
+ const blankdaysArray = new Array();
1028
+ for (var i = 1; i <= dayOfWeek; i++) {
1029
+ // check if month is February
1030
+ blankdaysArray.push(this.month != 2 ? (32 - i) : (29 - i));
1031
+ blankdaysArray.reverse().sort();
1032
+ }
1033
+ const daysArray = [];
1034
+ const today = new Date();
1035
+ for (var i = 1; i <= daysInMonth; i++) {
1036
+ daysArray.push({ day: i, today: this.compareDates(today, i, null), selected: this.compareDates((_a = this.value) !== null && _a !== void 0 ? _a : today, i, null) });
1037
+ }
1038
+ const yearsArray = [];
1039
+ for (let i = 1950; i <= today.getFullYear() + 2; i++) {
1040
+ yearsArray.push({ year: i, today: this.compareDates(today, null, i), selected: i == this.year });
1041
+ }
1042
+ this.calendarYears = yearsArray;
1043
+ this.blankDays = blankdaysArray;
1044
+ this.calendarDates = daysArray;
1045
+ }
1046
+ updateDays() {
1047
+ const today = new Date();
1048
+ this.calendarDates.forEach(d => {
1049
+ d.today = this.compareDates(today, d, this.year);
1050
+ d.selected = this.compareDates(this.value, d, this.year);
1051
+ });
1052
+ }
1053
+ paginate(array, page_number) {
1054
+ return array.slice((page_number - 1) * this.yearsPerPage, page_number * this.yearsPerPage);
1055
+ }
1056
+ getDateFromInput() {
1057
+ var _a, _b;
1058
+ if (((_a = this.dateInput) === null || _a === void 0 ? void 0 : _a.nativeElement.value) !== '') {
1059
+ var dateParts = (_b = this.dateInput) === null || _b === void 0 ? void 0 : _b.nativeElement.value.split("/");
1060
+ let dateInGrFormat = new Date(+dateParts[2], dateParts[1] - 1, +dateParts[0], 3, 0, 0);
1061
+ if (dateInGrFormat.toString() !== 'Invalid Date') {
1062
+ this.writeValue(dateInGrFormat);
1063
+ this.calcDays();
1064
+ this.valueChange.emit(dateInGrFormat);
1065
+ }
1066
+ if (this.onChange$) {
1067
+ this.onChange$(this.value);
1068
+ }
1069
+ this.updateDays();
1070
+ if (this.onTouched$) {
1071
+ this.onTouched$();
1072
+ }
1073
+ }
1074
+ this.showCalendar = false;
1075
+ }
1076
+ openYears() {
1077
+ this.showYears = !this.showYears;
1078
+ this.calendarYearPage = Math.ceil(this.calendarYears.map(x => x.year).indexOf(this.year) / this.yearsPerPage);
1079
+ this.showCalendarYears = this.paginate(this.calendarYears, this.calendarYearPage !== 0 ? this.calendarYearPage : 1);
1080
+ this.calcDays();
1081
+ }
1082
+ openCalendar() {
1083
+ this.showCalendar = !this.showCalendar;
1084
+ this.calcDays();
1085
+ }
1086
+ closeCalendar() {
1087
+ this.showCalendar = false;
1088
+ this.getDateFromInput();
1089
+ }
1090
+ }
1091
+ DatepickerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: DatepickerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1092
+ DatepickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.0", type: DatepickerComponent, selector: "lib-date-picker", inputs: { readonly: "readonly", disabled: "disabled", displayFormat: ["display-format", "displayFormat"], placeholder: "placeholder", value: "value" }, outputs: { valueChange: "valueChange" }, providers: [
1093
+ {
1094
+ provide: NG_VALUE_ACCESSOR,
1095
+ useExisting: forwardRef(() => DatepickerComponent),
1096
+ multi: true
1097
+ }
1098
+ ], viewQueries: [{ propertyName: "dateInput", first: true, predicate: ["dateInput"], descendants: true }], ngImport: i0, template: "<div class=\"relative flex\"\n (clickOutside)=\"closeCalendar()\">\n\n <input type=\"text\"\n #dateInput\n [readonly]=\"readonly\"\n name=\"dateInput\"\n (blur)=\"onBlur($event)\"\n id=\"dateInput\"\n (focus)=\"showCalendar = false\"\n [value]=\"value | date: displayFormat\"\n class=\"w-full focus:ring-0 focus:outline-none rounded-none sm:text-sm border-gray-300 focus:border-0\"\n [ngClass]=\"{'cursor-not-allowed': disabled}\"\n [placeholder]=\"disabled ? '' : placeholder\">\n\n <button type=\"button\"\n class=\"relative inline-flex items-center px-2 py-2 border border-gray-300 text-sm font-medium rounded-r-sm text-gray-700 bg-gray-50 hover:bg-gray-100 focus:outline-none focus:ring-1 focus:ring-gray-500 focus:border-gray-500\"\n [disabled]=\"disabled\"\n (click)=\"openCalendar()\"\n [ngClass]=\"{'cursor-not-allowed': disabled}\">\n <i class=\"ms-Icon ms-Icon--DateTime2\"></i>\n </button>\n\n <div *ngIf=\"showCalendar\"\n class=\"bg-gray-100 mt-10 rounded-sm shadow-md p-4 absolute left-0 z-50 w-full\"\n style=\"height:18rem;min-width:16rem;\"\n name=\"calendar\">\n <div class=\"flex justify-between items-center mb-2\">\n <div>\n <button type=\"button\"\n (click)=\"openYears()\">\n <span class=\"text-lg font-bold text-gray-800\">\n {{monthNames[month]}}\n </span>\n <span class=\"ml-1 text-lg text-gray-600 font-normal\">\n {{year}}</span>\n </button>\n </div>\n <div *ngIf=\"!showYears; else showYearsPickerTmpl\">\n <button type=\"button\"\n class=\"transition ease-in-out duration-100 inline-flex cursor-pointer hover:bg-gray-200 p-1 rounded-full disabled:opacity-25\"\n (click)=\"previousMonth();\">\n <svg class=\"h-6 w-6 text-gray-500 inline-flex\"\n fill=\"none\"\n viewBox=\"0 0 24 24\"\n stroke=\"currentColor\">\n <path stroke-linecap=\"round\"\n stroke-linejoin=\"round\"\n stroke-width=\"2\"\n d=\"M15 19l-7-7 7-7\" />\n </svg>\n </button>\n <button type=\"button\"\n class=\"transition ease-in-out duration-100 inline-flex cursor-pointer hover:bg-gray-200 p-1 rounded-full disabled:opacity-25\"\n (click)=\"nextMonth()\">\n <svg class=\"h-6 w-6 text-gray-500 inline-flex\"\n fill=\"none\"\n viewBox=\"0 0 24 24\"\n stroke=\"currentColor\">\n <path stroke-linecap=\"round\"\n stroke-linejoin=\"round\"\n stroke-width=\"2\"\n d=\"M9 5l7 7-7 7\" />\n </svg>\n </button>\n </div>\n <ng-template #showYearsPickerTmpl>\n <div>\n <button type=\"button\"\n class=\"transition ease-in-out duration-100 inline-flex cursor-pointer hover:bg-gray-200 p-1 rounded-full disabled:opacity-25 w-1/2\"\n (click)=\"previousYear();\">\n <svg class=\"h-6 w-6 text-gray-500 inline-flex\"\n fill=\"none\"\n viewBox=\"0 0 24 24\"\n stroke=\"currentColor\">\n <path stroke-linecap=\"round\"\n stroke-linejoin=\"round\"\n stroke-width=\"2\"\n d=\"M15 19l-7-7 7-7\" />\n </svg>\n </button>\n <button type=\"button\"\n class=\"transition ease-in-out duration-100 inline-flex cursor-pointer hover:bg-gray-200 p-1 rounded-full disabled:opacity-25 w-1/2\"\n (click)=\"nextYear()\">\n <svg class=\"h-6 w-6 text-gray-500 inline-flex\"\n fill=\"none\"\n viewBox=\"0 0 24 24\"\n stroke=\"currentColor\">\n <path stroke-linecap=\"round\"\n stroke-linejoin=\"round\"\n stroke-width=\"2\"\n d=\"M9 5l7 7-7 7\" />\n </svg>\n </button>\n </div>\n </ng-template>\n </div>\n\n <div class=\"flex flex-wrap mb-3 -mx-1\"\n *ngIf=\"!showYears; else showCalYearsTmpl\">\n <div *ngFor=\"let day of dayNames\"\n class=\"text-gray-800 font-medium text-center text-sm uppercase\"\n style=\"width: 14.28%\">{{day}}</div>\n </div>\n\n <ng-template #showCalYearsTmpl>\n <div class=\"flex flex-wrap -mx-1 items-center\">\n <div *ngFor=\"let year of showCalendarYears\"\n style=\"width: 18.28%\"\n class=\"px-1 mb-1\">\n <div (click)=\"selectYearValue(year)\"\n class=\"cursor-pointer text-center hover:text-blue-600 text-sm leading-none rounded-full leading-loose transition ease-in-out duration-100\"\n [class]=\"year.selected ? 'bg-gray-700 text-blue-600 font-medium' : 'text-gray-800 hover:bg-gray-800'\">{{year.year}}</div>\n </div>\n </div>\n </ng-template>\n\n <div class=\"flex flex-wrap -mx-1 items-center\"\n *ngIf=\"!showYears\">\n <div *ngFor=\"let blankday of blankDays\"\n style=\"width: 14.28%\"\n class=\"text-center border p-1 border-transparent text-sm opacity-50\">{{blankday}}</div>\n <div *ngFor=\"let date of calendarDates\"\n style=\"width: 14.28%\"\n class=\"px-1 mb-1\">\n <div (click)=\"selectDateValue(date)\"\n class=\"cursor-pointer text-center hover:text-blue-600 text-sm leading-none rounded-full leading-loose transition ease-in-out duration-100\"\n [class]=\"date.selected ? 'bg-gray-700 text-blue-600 font-medium' : 'text-gray-800 hover:bg-gray-800'\">{{date.day}}</div>\n </div>\n </div>\n </div>\n\n</div>", dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: ClickOutsideDirective, selector: "[clickOutside]", inputs: ["clickOutsideEnabled", "attachOutsideOnClick", "delayClickOutsideInit", "emitOnBlur", "exclude", "excludeBeforeClick", "clickOutsideEvents"], outputs: ["clickOutside"] }, { kind: "pipe", type: i1.DatePipe, name: "date" }] });
1099
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: DatepickerComponent, decorators: [{
1100
+ type: Component,
1101
+ args: [{ selector: 'lib-date-picker', providers: [
1102
+ {
1103
+ provide: NG_VALUE_ACCESSOR,
1104
+ useExisting: forwardRef(() => DatepickerComponent),
1105
+ multi: true
1106
+ }
1107
+ ], template: "<div class=\"relative flex\"\n (clickOutside)=\"closeCalendar()\">\n\n <input type=\"text\"\n #dateInput\n [readonly]=\"readonly\"\n name=\"dateInput\"\n (blur)=\"onBlur($event)\"\n id=\"dateInput\"\n (focus)=\"showCalendar = false\"\n [value]=\"value | date: displayFormat\"\n class=\"w-full focus:ring-0 focus:outline-none rounded-none sm:text-sm border-gray-300 focus:border-0\"\n [ngClass]=\"{'cursor-not-allowed': disabled}\"\n [placeholder]=\"disabled ? '' : placeholder\">\n\n <button type=\"button\"\n class=\"relative inline-flex items-center px-2 py-2 border border-gray-300 text-sm font-medium rounded-r-sm text-gray-700 bg-gray-50 hover:bg-gray-100 focus:outline-none focus:ring-1 focus:ring-gray-500 focus:border-gray-500\"\n [disabled]=\"disabled\"\n (click)=\"openCalendar()\"\n [ngClass]=\"{'cursor-not-allowed': disabled}\">\n <i class=\"ms-Icon ms-Icon--DateTime2\"></i>\n </button>\n\n <div *ngIf=\"showCalendar\"\n class=\"bg-gray-100 mt-10 rounded-sm shadow-md p-4 absolute left-0 z-50 w-full\"\n style=\"height:18rem;min-width:16rem;\"\n name=\"calendar\">\n <div class=\"flex justify-between items-center mb-2\">\n <div>\n <button type=\"button\"\n (click)=\"openYears()\">\n <span class=\"text-lg font-bold text-gray-800\">\n {{monthNames[month]}}\n </span>\n <span class=\"ml-1 text-lg text-gray-600 font-normal\">\n {{year}}</span>\n </button>\n </div>\n <div *ngIf=\"!showYears; else showYearsPickerTmpl\">\n <button type=\"button\"\n class=\"transition ease-in-out duration-100 inline-flex cursor-pointer hover:bg-gray-200 p-1 rounded-full disabled:opacity-25\"\n (click)=\"previousMonth();\">\n <svg class=\"h-6 w-6 text-gray-500 inline-flex\"\n fill=\"none\"\n viewBox=\"0 0 24 24\"\n stroke=\"currentColor\">\n <path stroke-linecap=\"round\"\n stroke-linejoin=\"round\"\n stroke-width=\"2\"\n d=\"M15 19l-7-7 7-7\" />\n </svg>\n </button>\n <button type=\"button\"\n class=\"transition ease-in-out duration-100 inline-flex cursor-pointer hover:bg-gray-200 p-1 rounded-full disabled:opacity-25\"\n (click)=\"nextMonth()\">\n <svg class=\"h-6 w-6 text-gray-500 inline-flex\"\n fill=\"none\"\n viewBox=\"0 0 24 24\"\n stroke=\"currentColor\">\n <path stroke-linecap=\"round\"\n stroke-linejoin=\"round\"\n stroke-width=\"2\"\n d=\"M9 5l7 7-7 7\" />\n </svg>\n </button>\n </div>\n <ng-template #showYearsPickerTmpl>\n <div>\n <button type=\"button\"\n class=\"transition ease-in-out duration-100 inline-flex cursor-pointer hover:bg-gray-200 p-1 rounded-full disabled:opacity-25 w-1/2\"\n (click)=\"previousYear();\">\n <svg class=\"h-6 w-6 text-gray-500 inline-flex\"\n fill=\"none\"\n viewBox=\"0 0 24 24\"\n stroke=\"currentColor\">\n <path stroke-linecap=\"round\"\n stroke-linejoin=\"round\"\n stroke-width=\"2\"\n d=\"M15 19l-7-7 7-7\" />\n </svg>\n </button>\n <button type=\"button\"\n class=\"transition ease-in-out duration-100 inline-flex cursor-pointer hover:bg-gray-200 p-1 rounded-full disabled:opacity-25 w-1/2\"\n (click)=\"nextYear()\">\n <svg class=\"h-6 w-6 text-gray-500 inline-flex\"\n fill=\"none\"\n viewBox=\"0 0 24 24\"\n stroke=\"currentColor\">\n <path stroke-linecap=\"round\"\n stroke-linejoin=\"round\"\n stroke-width=\"2\"\n d=\"M9 5l7 7-7 7\" />\n </svg>\n </button>\n </div>\n </ng-template>\n </div>\n\n <div class=\"flex flex-wrap mb-3 -mx-1\"\n *ngIf=\"!showYears; else showCalYearsTmpl\">\n <div *ngFor=\"let day of dayNames\"\n class=\"text-gray-800 font-medium text-center text-sm uppercase\"\n style=\"width: 14.28%\">{{day}}</div>\n </div>\n\n <ng-template #showCalYearsTmpl>\n <div class=\"flex flex-wrap -mx-1 items-center\">\n <div *ngFor=\"let year of showCalendarYears\"\n style=\"width: 18.28%\"\n class=\"px-1 mb-1\">\n <div (click)=\"selectYearValue(year)\"\n class=\"cursor-pointer text-center hover:text-blue-600 text-sm leading-none rounded-full leading-loose transition ease-in-out duration-100\"\n [class]=\"year.selected ? 'bg-gray-700 text-blue-600 font-medium' : 'text-gray-800 hover:bg-gray-800'\">{{year.year}}</div>\n </div>\n </div>\n </ng-template>\n\n <div class=\"flex flex-wrap -mx-1 items-center\"\n *ngIf=\"!showYears\">\n <div *ngFor=\"let blankday of blankDays\"\n style=\"width: 14.28%\"\n class=\"text-center border p-1 border-transparent text-sm opacity-50\">{{blankday}}</div>\n <div *ngFor=\"let date of calendarDates\"\n style=\"width: 14.28%\"\n class=\"px-1 mb-1\">\n <div (click)=\"selectDateValue(date)\"\n class=\"cursor-pointer text-center hover:text-blue-600 text-sm leading-none rounded-full leading-loose transition ease-in-out duration-100\"\n [class]=\"date.selected ? 'bg-gray-700 text-blue-600 font-medium' : 'text-gray-800 hover:bg-gray-800'\">{{date.day}}</div>\n </div>\n </div>\n </div>\n\n</div>" }]
1108
+ }], ctorParameters: function () { return []; }, propDecorators: { readonly: [{
1109
+ type: Input
1110
+ }], disabled: [{
1111
+ type: Input
1112
+ }], displayFormat: [{
1113
+ type: Input,
1114
+ args: ['display-format']
1115
+ }], placeholder: [{
1116
+ type: Input
1117
+ }], value: [{
1118
+ type: Input
1119
+ }], valueChange: [{
1120
+ type: Output
1121
+ }], dateInput: [{
1122
+ type: ViewChild,
1123
+ args: ['dateInput']
1124
+ }] } });
1125
+
1126
+ class ToasterService {
1127
+ constructor() {
1128
+ this.subject = new BehaviorSubject(NULL_TOAST);
1129
+ this.toast$ = this.subject.asObservable()
1130
+ .pipe(filter(toast => toast !== null && toast.title !== NULL_TOAST.title));
1131
+ }
1132
+ show(type, title, body, delay) {
1133
+ this.subject.next({ type, title, body, delay });
1134
+ }
1135
+ }
1136
+ ToasterService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: ToasterService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
1137
+ ToasterService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: ToasterService, providedIn: 'root' });
1138
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: ToasterService, decorators: [{
1139
+ type: Injectable,
1140
+ args: [{
1141
+ providedIn: 'root'
1142
+ }]
1143
+ }], ctorParameters: function () { return []; } });
1144
+
1145
+ class ToasterComponent {
1146
+ constructor() {
1147
+ this.i = 0;
1148
+ this.remove = new EventEmitter();
1149
+ this.isMobile = false;
1150
+ this.closed = false;
1151
+ }
1152
+ ngOnInit() {
1153
+ window.screen.width > 640 ? this.isMobile = false : this.isMobile = true;
1154
+ }
1155
+ closeToast(index) {
1156
+ this.closed = true;
1157
+ setTimeout(() => this.remove.emit(index), 100);
1158
+ }
1159
+ }
1160
+ ToasterComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: ToasterComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1161
+ ToasterComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.0", type: ToasterComponent, selector: "lib-toaster", inputs: { toast: "toast", i: "i" }, outputs: { remove: "remove" }, ngImport: i0, template: "<div aria-live=\"assertive\"\n [ngClass]=\"closed ? 'toast-closed': 'toast z-50'\"\n [ngStyle]=\"isMobile ? { 'margin-bottom.px': i * 85 } : {'margin-top.px': i * 85 }\">\n <div class=\"toast-container\">\n <div class=\"toast-pill\">\n <div class=\"toast-context-padding\">\n <div class=\"toast-context\"\n [ngSwitch]=\"toast?.type\">\n <div class=\"toast-icon\"\n *ngSwitchCase=\"'info'\">\n <svg class=\"h-5 w-5 text-blue-400\"\n xmlns=\"http://www.w3.org/2000/svg\"\n viewBox=\"0 0 20 20\"\n fill=\"currentColor\"\n aria-hidden=\"true\">\n <path fill-rule=\"evenodd\"\n d=\"M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-7-4a1 1 0 11-2 0 1 1 0 012 0zM9 9a1 1 0 000 2v3a1 1 0 001 1h1a1 1 0 100-2v-3a1 1 0 00-1-1H9z\"\n clip-rule=\"evenodd\" />\n </svg>\n </div>\n <div class=\"toast-icon\"\n *ngSwitchCase=\"'success'\">\n <svg class=\"h-5 w-5 text-green-400\"\n xmlns=\"http://www.w3.org/2000/svg\"\n fill=\"none\"\n viewBox=\"0 0 24 24\"\n stroke=\"currentColor\"\n aria-hidden=\"true\">\n <path stroke-linecap=\"round\"\n stroke-linejoin=\"round\"\n stroke-width=\"2\"\n d=\"M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z\" />\n </svg>\n </div>\n <div class=\"toast-icon\"\n *ngSwitchCase=\"'error'\">\n <svg class=\"h-5 w-5 text-red-400\"\n xmlns=\"http://www.w3.org/2000/svg\"\n viewBox=\"0 0 20 20\"\n fill=\"currentColor\"\n aria-hidden=\"true\">\n <path fill-rule=\"evenodd\"\n d=\"M10 18a8 8 0 100-16 8 8 0 000 16zM8.707 7.293a1 1 0 00-1.414 1.414L8.586 10l-1.293 1.293a1 1 0 101.414 1.414L10 11.414l1.293 1.293a1 1 0 001.414-1.414L11.414 10l1.293-1.293a1 1 0 00-1.414-1.414L10 8.586 8.707 7.293z\"\n clip-rule=\"evenodd\" />\n </svg>\n </div>\n <div class=\"toast-icon\"\n *ngSwitchCase=\"'warning'\">\n <svg class=\"h-5 w-5 text-yellow-400\"\n xmlns=\"http://www.w3.org/2000/svg\"\n viewBox=\"0 0 20 20\"\n fill=\"currentColor\"\n aria-hidden=\"true\">\n <path fill-rule=\"evenodd\"\n d=\"M8.257 3.099c.765-1.36 2.722-1.36 3.486 0l5.58 9.92c.75 1.334-.213 2.98-1.742 2.98H4.42c-1.53 0-2.493-1.646-1.743-2.98l5.58-9.92zM11 13a1 1 0 11-2 0 1 1 0 012 0zm-1-8a1 1 0 00-1 1v3a1 1 0 002 0V6a1 1 0 00-1-1z\"\n clip-rule=\"evenodd\" />\n </svg>\n </div>\n <div class=\"toast-icon\"\n *ngSwitchDefault>\n <svg class=\"h-5 w-5 text-green-400\"\n xmlns=\"http://www.w3.org/2000/svg\"\n fill=\"none\"\n viewBox=\"0 0 24 24\"\n stroke=\"currentColor\"\n aria-hidden=\"true\">\n <path stroke-linecap=\"round\"\n stroke-linejoin=\"round\"\n stroke-width=\"2\"\n d=\"M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z\" />\n </svg>\n </div>\n\n <div class=\"ml-3 w-0 flex-1\">\n <p class=\"toast-title\"\n *ngIf=\"toast?.title\">\n {{toast?.title}}\n </p>\n <p class=\"toast-body\">\n {{toast?.body}}\n </p>\n </div>\n <div class=\"toast-close-icon\">\n <button class=\"toast-close-button\"\n (click)=\"closeToast(i)\">\n <span class=\"sr-only\">Close</span>\n <!-- Heroicon name: solid/x -->\n <svg class=\"h-5 w-5\"\n xmlns=\"http://www.w3.org/2000/svg\"\n viewBox=\"0 0 20 20\"\n fill=\"currentColor\"\n aria-hidden=\"true\">\n <path fill-rule=\"evenodd\"\n d=\"M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z\"\n clip-rule=\"evenodd\" />\n </svg>\n </button>\n </div>\n </div>\n </div>\n </div>\n </div>\n</div>", dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "directive", type: i1.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { kind: "directive", type: i1.NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }, { kind: "directive", type: i1.NgSwitchDefault, selector: "[ngSwitchDefault]" }] });
1162
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: ToasterComponent, decorators: [{
1163
+ type: Component,
1164
+ args: [{ selector: 'lib-toaster', template: "<div aria-live=\"assertive\"\n [ngClass]=\"closed ? 'toast-closed': 'toast z-50'\"\n [ngStyle]=\"isMobile ? { 'margin-bottom.px': i * 85 } : {'margin-top.px': i * 85 }\">\n <div class=\"toast-container\">\n <div class=\"toast-pill\">\n <div class=\"toast-context-padding\">\n <div class=\"toast-context\"\n [ngSwitch]=\"toast?.type\">\n <div class=\"toast-icon\"\n *ngSwitchCase=\"'info'\">\n <svg class=\"h-5 w-5 text-blue-400\"\n xmlns=\"http://www.w3.org/2000/svg\"\n viewBox=\"0 0 20 20\"\n fill=\"currentColor\"\n aria-hidden=\"true\">\n <path fill-rule=\"evenodd\"\n d=\"M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-7-4a1 1 0 11-2 0 1 1 0 012 0zM9 9a1 1 0 000 2v3a1 1 0 001 1h1a1 1 0 100-2v-3a1 1 0 00-1-1H9z\"\n clip-rule=\"evenodd\" />\n </svg>\n </div>\n <div class=\"toast-icon\"\n *ngSwitchCase=\"'success'\">\n <svg class=\"h-5 w-5 text-green-400\"\n xmlns=\"http://www.w3.org/2000/svg\"\n fill=\"none\"\n viewBox=\"0 0 24 24\"\n stroke=\"currentColor\"\n aria-hidden=\"true\">\n <path stroke-linecap=\"round\"\n stroke-linejoin=\"round\"\n stroke-width=\"2\"\n d=\"M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z\" />\n </svg>\n </div>\n <div class=\"toast-icon\"\n *ngSwitchCase=\"'error'\">\n <svg class=\"h-5 w-5 text-red-400\"\n xmlns=\"http://www.w3.org/2000/svg\"\n viewBox=\"0 0 20 20\"\n fill=\"currentColor\"\n aria-hidden=\"true\">\n <path fill-rule=\"evenodd\"\n d=\"M10 18a8 8 0 100-16 8 8 0 000 16zM8.707 7.293a1 1 0 00-1.414 1.414L8.586 10l-1.293 1.293a1 1 0 101.414 1.414L10 11.414l1.293 1.293a1 1 0 001.414-1.414L11.414 10l1.293-1.293a1 1 0 00-1.414-1.414L10 8.586 8.707 7.293z\"\n clip-rule=\"evenodd\" />\n </svg>\n </div>\n <div class=\"toast-icon\"\n *ngSwitchCase=\"'warning'\">\n <svg class=\"h-5 w-5 text-yellow-400\"\n xmlns=\"http://www.w3.org/2000/svg\"\n viewBox=\"0 0 20 20\"\n fill=\"currentColor\"\n aria-hidden=\"true\">\n <path fill-rule=\"evenodd\"\n d=\"M8.257 3.099c.765-1.36 2.722-1.36 3.486 0l5.58 9.92c.75 1.334-.213 2.98-1.742 2.98H4.42c-1.53 0-2.493-1.646-1.743-2.98l5.58-9.92zM11 13a1 1 0 11-2 0 1 1 0 012 0zm-1-8a1 1 0 00-1 1v3a1 1 0 002 0V6a1 1 0 00-1-1z\"\n clip-rule=\"evenodd\" />\n </svg>\n </div>\n <div class=\"toast-icon\"\n *ngSwitchDefault>\n <svg class=\"h-5 w-5 text-green-400\"\n xmlns=\"http://www.w3.org/2000/svg\"\n fill=\"none\"\n viewBox=\"0 0 24 24\"\n stroke=\"currentColor\"\n aria-hidden=\"true\">\n <path stroke-linecap=\"round\"\n stroke-linejoin=\"round\"\n stroke-width=\"2\"\n d=\"M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z\" />\n </svg>\n </div>\n\n <div class=\"ml-3 w-0 flex-1\">\n <p class=\"toast-title\"\n *ngIf=\"toast?.title\">\n {{toast?.title}}\n </p>\n <p class=\"toast-body\">\n {{toast?.body}}\n </p>\n </div>\n <div class=\"toast-close-icon\">\n <button class=\"toast-close-button\"\n (click)=\"closeToast(i)\">\n <span class=\"sr-only\">Close</span>\n <!-- Heroicon name: solid/x -->\n <svg class=\"h-5 w-5\"\n xmlns=\"http://www.w3.org/2000/svg\"\n viewBox=\"0 0 20 20\"\n fill=\"currentColor\"\n aria-hidden=\"true\">\n <path fill-rule=\"evenodd\"\n d=\"M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z\"\n clip-rule=\"evenodd\" />\n </svg>\n </button>\n </div>\n </div>\n </div>\n </div>\n </div>\n</div>" }]
1165
+ }], ctorParameters: function () { return []; }, propDecorators: { toast: [{
1166
+ type: Input
1167
+ }], i: [{
1168
+ type: Input
1169
+ }], remove: [{
1170
+ type: Output
1171
+ }] } });
1172
+
1173
+ class ToasterContainerComponent {
1174
+ constructor(toaster) {
1175
+ this.toaster = toaster;
1176
+ this.toasts = [];
1177
+ }
1178
+ ngOnInit() {
1179
+ this.toaster.toast$
1180
+ .subscribe(toast => {
1181
+ this.toasts = [toast, ...this.toasts];
1182
+ setTimeout(() => this.toasts.pop(), toast.delay || 6000);
1183
+ });
1184
+ }
1185
+ remove(index) {
1186
+ this.toasts = this.toasts.slice(0, index).concat(this.toasts.slice(index + 1));
1187
+ }
1188
+ }
1189
+ ToasterContainerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: ToasterContainerComponent, deps: [{ token: ToasterService }], target: i0.ɵɵFactoryTarget.Component });
1190
+ ToasterContainerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.0", type: ToasterContainerComponent, selector: "lib-toaster-container", ngImport: i0, template: "<lib-toaster *ngFor=\"let toast of toasts; let i=index\" [toast]=\"toast\" [i]=\"i\" (remove)=\"remove($event)\"></lib-toaster>\n", dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "component", type: ToasterComponent, selector: "lib-toaster", inputs: ["toast", "i"], outputs: ["remove"] }] });
1191
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: ToasterContainerComponent, decorators: [{
1192
+ type: Component,
1193
+ args: [{ selector: 'lib-toaster-container', template: "<lib-toaster *ngFor=\"let toast of toasts; let i=index\" [toast]=\"toast\" [i]=\"i\" (remove)=\"remove($event)\"></lib-toaster>\n" }]
1194
+ }], ctorParameters: function () { return [{ type: ToasterService }]; } });
1195
+
1196
+ class AvatarInitialsComponent {
1197
+ constructor() {
1198
+ this.large = false;
1199
+ this.colors = [
1200
+ '#EB7181',
1201
+ '#468547',
1202
+ '#FFD558',
1203
+ '#3670B2', // blue
1204
+ ];
1205
+ }
1206
+ ngOnInit() {
1207
+ this.createInititals();
1208
+ const randomIndex = Math.floor(Math.random() * Math.floor(this.colors.length));
1209
+ // assign this to a class if you want to randomly change background colors of the circle.
1210
+ this.circleColor = this.colors[randomIndex];
1211
+ }
1212
+ createInititals() {
1213
+ if (this.name) {
1214
+ let initials = '';
1215
+ for (let i = 0; i < this.name.length; i++) {
1216
+ if (this.name.charAt(i) === ' ') {
1217
+ continue;
1218
+ }
1219
+ if (this.name.charAt(i) === this.name.charAt(i).toUpperCase()) {
1220
+ initials += this.name.charAt(i);
1221
+ if (initials.length === 2) {
1222
+ break;
1223
+ }
1224
+ }
1225
+ }
1226
+ this.initials = initials;
1227
+ }
1228
+ }
1229
+ }
1230
+ AvatarInitialsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: AvatarInitialsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1231
+ AvatarInitialsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.0", type: AvatarInitialsComponent, selector: "lib-avatar-initials", inputs: { name: "name", large: "large" }, ngImport: i0, template: "<div [ngClass]=\"large ? 'avatar-container-large': 'avatar-container'\">\n <span [ngClass]=\"large ? 'avatar-text-large': 'avatar-text'\">{{ initials }}</span>\n</div>\n", dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
1232
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: AvatarInitialsComponent, decorators: [{
1233
+ type: Component,
1234
+ args: [{ selector: 'lib-avatar-initials', template: "<div [ngClass]=\"large ? 'avatar-container-large': 'avatar-container'\">\n <span [ngClass]=\"large ? 'avatar-text-large': 'avatar-text'\">{{ initials }}</span>\n</div>\n" }]
1235
+ }], ctorParameters: function () { return []; }, propDecorators: { name: [{
1236
+ type: Input
1237
+ }], large: [{
1238
+ type: Input
1239
+ }] } });
1240
+
1241
+ class ToggleComponent {
1242
+ constructor() {
1243
+ this.valueChange = new EventEmitter();
1244
+ this.onChange$ = undefined;
1245
+ this.onTouched$ = undefined;
1246
+ }
1247
+ writeValue(obj) {
1248
+ if (obj) {
1249
+ this.value = obj || false;
1250
+ }
1251
+ }
1252
+ registerOnChange(fn) {
1253
+ this.onChange$ = fn;
1254
+ }
1255
+ registerOnTouched(fn) {
1256
+ this.onTouched$ = fn;
1257
+ }
1258
+ onBlur(event) {
1259
+ if (this.onTouched$) {
1260
+ this.onTouched$();
1261
+ }
1262
+ }
1263
+ ngOnInit() {
1264
+ }
1265
+ changeValue() {
1266
+ this.value = !this.value;
1267
+ this.valueChange.emit(this.value);
1268
+ if (this.onChange$) {
1269
+ this.onChange$(this.value);
1270
+ }
1271
+ if (this.onTouched$) {
1272
+ this.onTouched$();
1273
+ }
1274
+ }
1275
+ }
1276
+ ToggleComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: ToggleComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1277
+ ToggleComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.0", type: ToggleComponent, selector: "lib-toggle", inputs: { value: "value", disabled: "disabled" }, outputs: { valueChange: "valueChange" }, providers: [
1278
+ {
1279
+ provide: NG_VALUE_ACCESSOR,
1280
+ useExisting: forwardRef(() => ToggleComponent),
1281
+ multi: true
1282
+ }
1283
+ ], ngImport: i0, template: "<button type=\"button\"\n [ngClass]=\"value ? (disabled ? 'on disabled' : 'on') : 'off'\"\n class=\"toggle-button\"\n role=\"switch\"\n aria-checked=\"false\"\n aria-labelledby=\"isPrivate\"\n (click)=\"changeValue()\"\n (blur)=\"onBlur($event)\"\n value=\"{{value}}\"\n [disabled]=\"disabled\"\n [title]=\"disabled ? '\u03A4\u03BF \u03B1\u03C1\u03C7\u03B5\u03AF\u03BF \u03C0\u03C1\u03AD\u03C0\u03B5\u03B9 \u03BD\u03B1 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B9\u03B4\u03C9\u03C4\u03B9\u03BA\u03CC' : '\u0399\u03B4\u03B9\u03C9\u03C4\u03B9\u03BA\u03CC'\">\n <span aria-hidden=\"true\"\n [ngClass]=\"value ? 'enabled-anim' : 'disabled-anim'\"\n class=\"toggle-span\"></span>\n</button>", dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
1284
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: ToggleComponent, decorators: [{
1285
+ type: Component,
1286
+ args: [{ selector: 'lib-toggle', providers: [
1287
+ {
1288
+ provide: NG_VALUE_ACCESSOR,
1289
+ useExisting: forwardRef(() => ToggleComponent),
1290
+ multi: true
1291
+ }
1292
+ ], template: "<button type=\"button\"\n [ngClass]=\"value ? (disabled ? 'on disabled' : 'on') : 'off'\"\n class=\"toggle-button\"\n role=\"switch\"\n aria-checked=\"false\"\n aria-labelledby=\"isPrivate\"\n (click)=\"changeValue()\"\n (blur)=\"onBlur($event)\"\n value=\"{{value}}\"\n [disabled]=\"disabled\"\n [title]=\"disabled ? '\u03A4\u03BF \u03B1\u03C1\u03C7\u03B5\u03AF\u03BF \u03C0\u03C1\u03AD\u03C0\u03B5\u03B9 \u03BD\u03B1 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B9\u03B4\u03C9\u03C4\u03B9\u03BA\u03CC' : '\u0399\u03B4\u03B9\u03C9\u03C4\u03B9\u03BA\u03CC'\">\n <span aria-hidden=\"true\"\n [ngClass]=\"value ? 'enabled-anim' : 'disabled-anim'\"\n class=\"toggle-span\"></span>\n</button>" }]
1293
+ }], ctorParameters: function () { return []; }, propDecorators: { value: [{
1294
+ type: Input
1295
+ }], disabled: [{
1296
+ type: Input
1297
+ }], valueChange: [{
1298
+ type: Output
1299
+ }] } });
1300
+
1301
+ class SidePaneComponent {
1302
+ constructor(router, document) {
1303
+ this.router = router;
1304
+ this.document = document;
1305
+ // tslint:disable-next-line:no-input-rename
1306
+ this.showPane = false;
1307
+ this.sizeContainerStyle = 'side-pane-box-size';
1308
+ this.overlayStyle = 'side-pane-overlay';
1309
+ this.onComplete = new EventEmitter();
1310
+ }
1311
+ ngOnDestroy() {
1312
+ }
1313
+ ngOnInit() {
1314
+ }
1315
+ onSidePaneActivated(component) {
1316
+ var _a;
1317
+ this.document.body.classList.add('modal-active');
1318
+ let sizeStyleSuffix = '';
1319
+ const state = (_a = this.router.getCurrentNavigation()) === null || _a === void 0 ? void 0 : _a.extras.state;
1320
+ if (state) {
1321
+ if (state.paneSize) {
1322
+ if (state.paneSize === SidePaneSize.Small25) {
1323
+ sizeStyleSuffix = '-25';
1324
+ }
1325
+ else if (state.paneSize === SidePaneSize.Medium50) {
1326
+ sizeStyleSuffix = '-50';
1327
+ }
1328
+ else if (state.paneSize === SidePaneSize.Large75) {
1329
+ sizeStyleSuffix = '-75';
1330
+ }
1331
+ }
1332
+ if (state.paneOverlay) {
1333
+ if (state.paneOverlay === SidePaneOverlayType.None) {
1334
+ this.overlayStyle = 'side-pane-overlay-opacity-0';
1335
+ }
1336
+ else if (state.paneOverlay === SidePaneOverlayType.Dark) {
1337
+ this.overlayStyle = 'side-pane-overlay-opacity-50';
1338
+ }
1339
+ else {
1340
+ this.overlayStyle = 'side-pane-overlay';
1341
+ }
1342
+ }
1343
+ }
1344
+ this.sizeContainerStyle = `side-pane-box-size${sizeStyleSuffix}`;
1345
+ this.showPane = true;
1346
+ }
1347
+ onSidePaneDeactivated($event) {
1348
+ this.document.body.classList.remove('modal-active');
1349
+ this.showPane = false;
1350
+ this.onComplete.emit(true);
1351
+ }
1352
+ }
1353
+ SidePaneComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: SidePaneComponent, deps: [{ token: i1$1.Router }, { token: DOCUMENT }], target: i0.ɵɵFactoryTarget.Component });
1354
+ SidePaneComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.0", type: SidePaneComponent, selector: "lib-side-pane", inputs: { showPane: ["visible", "showPane"] }, outputs: { onComplete: "onComplete" }, ngImport: i0, template: "<div *ngIf=\"showPane\" class=\"side-pane-outer-container\" aria-labelledby=\"slide-over\" role=\"dialog\" aria-modal=\"true\">\n <div [class]=\"showPane ? overlayStyle : 'hidden'\" aria-hidden=\"true\"></div>\n <div [class]=\"showPane ? 'side-pane-container' : 'hidden'\">\n <div [class]=\"sizeContainerStyle\">\n <div class=\"side-pane\">\n <ng-content></ng-content>\n </div>\n </div>\n </div>\n</div>\n", dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
1355
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: SidePaneComponent, decorators: [{
1356
+ type: Component,
1357
+ args: [{ selector: 'lib-side-pane', template: "<div *ngIf=\"showPane\" class=\"side-pane-outer-container\" aria-labelledby=\"slide-over\" role=\"dialog\" aria-modal=\"true\">\n <div [class]=\"showPane ? overlayStyle : 'hidden'\" aria-hidden=\"true\"></div>\n <div [class]=\"showPane ? 'side-pane-container' : 'hidden'\">\n <div [class]=\"sizeContainerStyle\">\n <div class=\"side-pane\">\n <ng-content></ng-content>\n </div>\n </div>\n </div>\n</div>\n" }]
1358
+ }], ctorParameters: function () {
1359
+ return [{ type: i1$1.Router }, { type: undefined, decorators: [{
1360
+ type: Inject,
1361
+ args: [DOCUMENT]
1362
+ }] }];
1363
+ }, propDecorators: { showPane: [{
1364
+ type: Input,
1365
+ args: ['visible']
1366
+ }], onComplete: [{
1367
+ type: Output
1368
+ }] } });
1369
+
1370
+ class NavLinksListComponent {
1371
+ constructor() {
1372
+ // tslint:disable-next-line:no-input-rename
1373
+ this.navLinkClass = 'nav-link';
1374
+ // tslint:disable-next-line:no-input-rename
1375
+ this.navLinkActiveClass = 'nav-link-active';
1376
+ // tslint:disable-next-line:no-input-rename
1377
+ this.containerClass = undefined;
1378
+ // tslint:disable-next-line:no-input-rename
1379
+ this.showIcons = false;
1380
+ }
1381
+ ngOnInit() {
1382
+ }
1383
+ }
1384
+ NavLinksListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: NavLinksListComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1385
+ NavLinksListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.0", type: NavLinksListComponent, selector: "lib-nav-links-list", inputs: { links: "links", activeFragment: ["active-fragment", "activeFragment"], navLinkClass: ["link-class", "navLinkClass"], navLinkActiveClass: ["link-active-class", "navLinkActiveClass"], containerClass: ["container-class", "containerClass"], showIcons: ["show-icons", "showIcons"] }, ngImport: i0, template: "\n<div [class]=\"containerClass ?? 'nav-link-list-container'\">\n <div class=\"nav-link-list-container-inner\">\n <ng-container *ngFor=\"let link of links | async\">\n <ng-container [ngSwitch]=\"link.type\">\n <a *ngSwitchCase=\"'router'\"\n href=\"#\"\n [routerLink]=\"[link.path]\"\n [routerLinkActive]=\"navLinkActiveClass\"\n [routerLinkActiveOptions]=\"{ exact: link.exact }\"\n [class]=\"navLinkClass\">\n <i *ngIf=\"showIcons && link.icon\" [class]=\"link.icon + ' mr-3'\"></i>{{ link.text }}\n </a>\n <a *ngSwitchCase=\"'external'\"\n [href]=\"link.path\"\n [attr.target]=\"link.external ? '_blank' : '_self'\"\n [class]=\"navLinkClass\">\n <i *ngIf=\"showIcons && link.icon\" [class]=\"link.icon+ ' mr-3'\"></i>{{ link.text }}\n </a>\n <a *ngSwitchCase=\"'fragment'\"\n routerLink=\".\"\n [fragment]=\"link.path\"\n [class.active]=\"(activeFragment | async) === link.path\"\n [routerLinkActive]=\"navLinkActiveClass\"\n [class]=\"navLinkClass\">\n <i *ngIf=\"showIcons && link.icon\" [class]=\"link.icon+ ' mr-3'\"></i>{{ link.text }}\n </a>\n </ng-container>\n </ng-container>\n </div>\n</div>\n", dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { kind: "directive", type: i1.NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }, { kind: "directive", type: i1$1.RouterLinkWithHref, selector: "a[routerLink],area[routerLink]", inputs: ["target", "queryParams", "fragment", "queryParamsHandling", "preserveFragment", "skipLocationChange", "replaceUrl", "state", "relativeTo", "routerLink"] }, { kind: "directive", type: i1$1.RouterLinkActive, selector: "[routerLinkActive]", inputs: ["routerLinkActiveOptions", "ariaCurrentWhenActive", "routerLinkActive"], outputs: ["isActiveChange"], exportAs: ["routerLinkActive"] }, { kind: "pipe", type: i1.AsyncPipe, name: "async" }] });
1386
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: NavLinksListComponent, decorators: [{
1387
+ type: Component,
1388
+ args: [{ selector: 'lib-nav-links-list', template: "\n<div [class]=\"containerClass ?? 'nav-link-list-container'\">\n <div class=\"nav-link-list-container-inner\">\n <ng-container *ngFor=\"let link of links | async\">\n <ng-container [ngSwitch]=\"link.type\">\n <a *ngSwitchCase=\"'router'\"\n href=\"#\"\n [routerLink]=\"[link.path]\"\n [routerLinkActive]=\"navLinkActiveClass\"\n [routerLinkActiveOptions]=\"{ exact: link.exact }\"\n [class]=\"navLinkClass\">\n <i *ngIf=\"showIcons && link.icon\" [class]=\"link.icon + ' mr-3'\"></i>{{ link.text }}\n </a>\n <a *ngSwitchCase=\"'external'\"\n [href]=\"link.path\"\n [attr.target]=\"link.external ? '_blank' : '_self'\"\n [class]=\"navLinkClass\">\n <i *ngIf=\"showIcons && link.icon\" [class]=\"link.icon+ ' mr-3'\"></i>{{ link.text }}\n </a>\n <a *ngSwitchCase=\"'fragment'\"\n routerLink=\".\"\n [fragment]=\"link.path\"\n [class.active]=\"(activeFragment | async) === link.path\"\n [routerLinkActive]=\"navLinkActiveClass\"\n [class]=\"navLinkClass\">\n <i *ngIf=\"showIcons && link.icon\" [class]=\"link.icon+ ' mr-3'\"></i>{{ link.text }}\n </a>\n </ng-container>\n </ng-container>\n </div>\n</div>\n" }]
1389
+ }], ctorParameters: function () { return []; }, propDecorators: { links: [{
1390
+ type: Input
1391
+ }], activeFragment: [{
1392
+ type: Input,
1393
+ args: ['active-fragment']
1394
+ }], navLinkClass: [{
1395
+ type: Input,
1396
+ args: ['link-class']
1397
+ }], navLinkActiveClass: [{
1398
+ type: Input,
1399
+ args: ['link-active-class']
1400
+ }], containerClass: [{
1401
+ type: Input,
1402
+ args: ['container-class']
1403
+ }], showIcons: [{
1404
+ type: Input,
1405
+ args: ['show-icons']
1406
+ }] } });
1407
+
1408
+ class ComboboxComponent {
1409
+ constructor() {
1410
+ this._debouncer = new Subject();
1411
+ this._items = [];
1412
+ this._defaultItemsFilter = (item) => {
1413
+ const selectedItem = this.selectedItems.find(x => x == item);
1414
+ return selectedItem == null || selectedItem == undefined;
1415
+ };
1416
+ this.id = 'combobox';
1417
+ this.itemTemplate = null;
1418
+ this.selectedItemsFilter = () => true;
1419
+ this.selectedItemTemplate = null;
1420
+ this.busy = false;
1421
+ this.debounceMs = 1000;
1422
+ this.onSearch = new EventEmitter();
1423
+ this.onItemSelected = new EventEmitter();
1424
+ this.showOptions = false;
1425
+ this.selectedItems = [];
1426
+ }
1427
+ set items(items) {
1428
+ if (!this.itemTemplate) {
1429
+ this._items = items.filter(this._defaultItemsFilter);
1430
+ }
1431
+ else {
1432
+ this._items = items.filter(this.selectedItemsFilter);
1433
+ }
1434
+ }
1435
+ get items() {
1436
+ if (!this.itemTemplate) {
1437
+ return this._items.filter(this._defaultItemsFilter);
1438
+ }
1439
+ else {
1440
+ return this._items.filter(this.selectedItemsFilter);
1441
+ }
1442
+ }
1443
+ ngOnInit() {
1444
+ this.emitSearchEvent();
1445
+ this._debouncer
1446
+ .pipe(debounceTime(this.debounceMs), distinctUntilChanged())
1447
+ .subscribe((value) => this.emitSearchEvent(value));
1448
+ }
1449
+ onInputClick() {
1450
+ this.showOptions = true;
1451
+ }
1452
+ onInputClickOutside() {
1453
+ this.showOptions = false;
1454
+ }
1455
+ onInputKeyUp(event) {
1456
+ this._debouncer.next(event.currentTarget.value);
1457
+ }
1458
+ onListItemSelected(item) {
1459
+ this.onItemSelected.emit(item);
1460
+ this.selectedItems.push(item);
1461
+ }
1462
+ removeSelectedItem(item) {
1463
+ const index = this.selectedItems.indexOf(item);
1464
+ if (index > -1) {
1465
+ this.selectedItems.splice(index, 1);
1466
+ }
1467
+ }
1468
+ emitSearchEvent(searchTerm = undefined) {
1469
+ this.onSearch.emit(searchTerm);
1470
+ }
1471
+ }
1472
+ ComboboxComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: ComboboxComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1473
+ ComboboxComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.0", type: ComboboxComponent, selector: "lib-combobox", inputs: { id: "id", items: "items", itemTemplate: "itemTemplate", selectedItemsFilter: "selectedItemsFilter", selectedItemTemplate: "selectedItemTemplate", busy: "busy", debounceMs: "debounceMs" }, outputs: { onSearch: "onSearch", onItemSelected: "onItemSelected" }, ngImport: i0, template: "<div class=\"relative mt-1\">\n <form autocomplete=\"off\" [id]=\"id + '-form'\">\n <input [id]=\"id + '-input'\" type=\"text\" (click)=\"onInputClick()\" (clickOutside)=\"onInputClickOutside()\" (keyup)=\"onInputKeyUp($event)\"\n class=\"w-full rounded-md border border-gray-300 bg-white py-2 pl-3 pr-12 shadow-sm focus:border-indigo-500 focus:outline-none focus:ring-1 focus:ring-indigo-500 sm:text-sm\" role=\"combobox\" aria-controls=\"options\"\n aria-expanded=\"false\" autocomplete=\"off\" list=\"autocomplete\">\n </form>\n <div class=\"absolute inset-y-0 right-0 flex items-center rounded-r-md px-2 focus:outline-none\">\n <svg *ngIf=\"!busy\" xmlns=\"http://www.w3.org/2000/svg\" class=\"h-6 w-6 text-gray-400\" fill=\"none\" viewBox=\"0 0 24 24\" stroke=\"currentColor\" stroke-width=\"2\">\n <path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z\" />\n </svg>\n <svg *ngIf=\"busy\" class=\"animate-spin h-6 w-6 text-gray-400\" xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 24 24\">\n <circle class=\"opacity-25\" cx=\"12\" cy=\"12\" r=\"10\" stroke=\"currentColor\" stroke-width=\"4\"></circle>\n <path class=\"opacity-75\" fill=\"currentColor\" d=\"M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z\"></path>\n </svg>\n </div>\n <ul [id]=\"id + '-options'\" *ngIf=\"showOptions\" class=\"absolute z-10 mt-1 max-h-60 w-full overflow-auto rounded-md bg-white py-1 text-base shadow-lg ring-1 ring-black ring-opacity-5 focus:outline-none sm:text-sm\" role=\"listbox\">\n <li *ngFor=\"let item of items; let i = index;\" [id]=\"'option-'+ i\" (click)=\"onListItemSelected(item)\" role=\"option\" tabindex=\"-1\">\n <ng-container [ngTemplateOutlet]=\"itemTemplate || defaultItemTemplate\" [ngTemplateOutletContext]=\"{ $implicit: item }\"></ng-container>\n </li>\n </ul>\n</div>\n<ul *ngIf=\"selectedItems.length > 0\" role=\"list\" class=\"grid grid-cols-1\">\n <li *ngFor=\"let item of selectedItems; let i = index;\" class=\"mt-3\">\n <ng-container [ngTemplateOutlet]=\"selectedItemTemplate || defaultSelectedItemTemplate\" [ngTemplateOutletContext]=\"{ $implicit: item }\"></ng-container>\n </li>\n</ul>\n<ng-template #defaultItemTemplate let-item>\n <span class=\"hover:bg-gray-100 relative cursor-pointer select-none py-2 pl-3 pr-3 block truncate\">{{ item }}</span>\n</ng-template>\n<ng-template #defaultSelectedItemTemplate let-item>\n <div class=\"grid grid-cols-1\">\n <div class=\"relative rounded-lg border border-gray-300 bg-white px-6 py-5 shadow-sm flex items-center space-x-3 hover:border-gray-400\">\n <div class=\"flex-1 min-w-0\">\n <div class=\"focus:outline-none\">\n <span class=\"absolute\" aria-hidden=\"true\"></span>\n <p class=\"text-sm font-medium text-gray-900\">{{ item }}</p>\n </div>\n </div>\n <div class=\"ml-4 flex-shrink-0 flex\">\n <button type=\"button\" (click)=\"removeSelectedItem(item)\" class=\"cursor-pointer bg-white rounded-md inline-flex text-gray-400 hover:text-gray-500\">\n <span class=\"sr-only\">Close</span>\n <svg class=\"h-5 w-5\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\" fill=\"currentColor\" aria-hidden=\"true\">\n <path fill-rule=\"evenodd\"\n d=\"M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z\"\n clip-rule=\"evenodd\" />\n </svg>\n </button>\n </div>\n </div>\n </div>\n</ng-template>", dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: ClickOutsideDirective, selector: "[clickOutside]", inputs: ["clickOutsideEnabled", "attachOutsideOnClick", "delayClickOutsideInit", "emitOnBlur", "exclude", "excludeBeforeClick", "clickOutsideEvents"], outputs: ["clickOutside"] }] });
1474
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: ComboboxComponent, decorators: [{
1475
+ type: Component,
1476
+ args: [{ selector: 'lib-combobox', template: "<div class=\"relative mt-1\">\n <form autocomplete=\"off\" [id]=\"id + '-form'\">\n <input [id]=\"id + '-input'\" type=\"text\" (click)=\"onInputClick()\" (clickOutside)=\"onInputClickOutside()\" (keyup)=\"onInputKeyUp($event)\"\n class=\"w-full rounded-md border border-gray-300 bg-white py-2 pl-3 pr-12 shadow-sm focus:border-indigo-500 focus:outline-none focus:ring-1 focus:ring-indigo-500 sm:text-sm\" role=\"combobox\" aria-controls=\"options\"\n aria-expanded=\"false\" autocomplete=\"off\" list=\"autocomplete\">\n </form>\n <div class=\"absolute inset-y-0 right-0 flex items-center rounded-r-md px-2 focus:outline-none\">\n <svg *ngIf=\"!busy\" xmlns=\"http://www.w3.org/2000/svg\" class=\"h-6 w-6 text-gray-400\" fill=\"none\" viewBox=\"0 0 24 24\" stroke=\"currentColor\" stroke-width=\"2\">\n <path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z\" />\n </svg>\n <svg *ngIf=\"busy\" class=\"animate-spin h-6 w-6 text-gray-400\" xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 24 24\">\n <circle class=\"opacity-25\" cx=\"12\" cy=\"12\" r=\"10\" stroke=\"currentColor\" stroke-width=\"4\"></circle>\n <path class=\"opacity-75\" fill=\"currentColor\" d=\"M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z\"></path>\n </svg>\n </div>\n <ul [id]=\"id + '-options'\" *ngIf=\"showOptions\" class=\"absolute z-10 mt-1 max-h-60 w-full overflow-auto rounded-md bg-white py-1 text-base shadow-lg ring-1 ring-black ring-opacity-5 focus:outline-none sm:text-sm\" role=\"listbox\">\n <li *ngFor=\"let item of items; let i = index;\" [id]=\"'option-'+ i\" (click)=\"onListItemSelected(item)\" role=\"option\" tabindex=\"-1\">\n <ng-container [ngTemplateOutlet]=\"itemTemplate || defaultItemTemplate\" [ngTemplateOutletContext]=\"{ $implicit: item }\"></ng-container>\n </li>\n </ul>\n</div>\n<ul *ngIf=\"selectedItems.length > 0\" role=\"list\" class=\"grid grid-cols-1\">\n <li *ngFor=\"let item of selectedItems; let i = index;\" class=\"mt-3\">\n <ng-container [ngTemplateOutlet]=\"selectedItemTemplate || defaultSelectedItemTemplate\" [ngTemplateOutletContext]=\"{ $implicit: item }\"></ng-container>\n </li>\n</ul>\n<ng-template #defaultItemTemplate let-item>\n <span class=\"hover:bg-gray-100 relative cursor-pointer select-none py-2 pl-3 pr-3 block truncate\">{{ item }}</span>\n</ng-template>\n<ng-template #defaultSelectedItemTemplate let-item>\n <div class=\"grid grid-cols-1\">\n <div class=\"relative rounded-lg border border-gray-300 bg-white px-6 py-5 shadow-sm flex items-center space-x-3 hover:border-gray-400\">\n <div class=\"flex-1 min-w-0\">\n <div class=\"focus:outline-none\">\n <span class=\"absolute\" aria-hidden=\"true\"></span>\n <p class=\"text-sm font-medium text-gray-900\">{{ item }}</p>\n </div>\n </div>\n <div class=\"ml-4 flex-shrink-0 flex\">\n <button type=\"button\" (click)=\"removeSelectedItem(item)\" class=\"cursor-pointer bg-white rounded-md inline-flex text-gray-400 hover:text-gray-500\">\n <span class=\"sr-only\">Close</span>\n <svg class=\"h-5 w-5\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\" fill=\"currentColor\" aria-hidden=\"true\">\n <path fill-rule=\"evenodd\"\n d=\"M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z\"\n clip-rule=\"evenodd\" />\n </svg>\n </button>\n </div>\n </div>\n </div>\n</ng-template>" }]
1477
+ }], ctorParameters: function () { return []; }, propDecorators: { id: [{
1478
+ type: Input
1479
+ }], items: [{
1480
+ type: Input,
1481
+ args: ['items']
1482
+ }], itemTemplate: [{
1483
+ type: Input
1484
+ }], selectedItemsFilter: [{
1485
+ type: Input
1486
+ }], selectedItemTemplate: [{
1487
+ type: Input
1488
+ }], busy: [{
1489
+ type: Input
1490
+ }], debounceMs: [{
1491
+ type: Input
1492
+ }], onSearch: [{
1493
+ type: Output
1494
+ }], onItemSelected: [{
1495
+ type: Output
1496
+ }] } });
1497
+
1498
+ const APP_LINKS = new InjectionToken('APP_LINKS');
1499
+ const APP_NOTIFICATIONS = new InjectionToken('APP_NOTIFICATIONS');
1500
+ const SHELL_CONFIG = new InjectionToken('SHELL_CONFIG');
1501
+ const APP_LANGUAGES = new InjectionToken('APP_LANGUAGES');
1502
+ const LIBTABGROUP_ACCESSOR = new InjectionToken('LibTabGroupAccessor');
1503
+
1504
+ class LibTabComponent {
1505
+ constructor(_tabGroup) {
1506
+ this._tabGroup = _tabGroup;
1507
+ this._isActive = false;
1508
+ }
1509
+ /** Indicates the index of the tab. */
1510
+ get index() {
1511
+ var _a, _b;
1512
+ return ((_b = (_a = this._tabGroup) === null || _a === void 0 ? void 0 : _a.tabs) === null || _b === void 0 ? void 0 : _b.toArray().indexOf(this)) || undefined;
1513
+ }
1514
+ /** Indicates whether the tab is active. */
1515
+ get isActive() {
1516
+ return this._isActive;
1517
+ }
1518
+ /** Setter for LibTabComponent isActive property. */
1519
+ set isActive(isActive) {
1520
+ this._isActive = isActive;
1521
+ }
1522
+ ngOnInit() {
1523
+ this.id = this.id || uuid.v4();
1524
+ }
1525
+ }
1526
+ LibTabComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: LibTabComponent, deps: [{ token: LIBTABGROUP_ACCESSOR, optional: true }], target: i0.ɵɵFactoryTarget.Component });
1527
+ LibTabComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.0", type: LibTabComponent, selector: "lib-tab", inputs: { label: "label", id: "id" }, viewQueries: [{ propertyName: "content", first: true, predicate: TemplateRef, descendants: true, static: true }], ngImport: i0, template: `
1528
+ <ng-template>
1529
+ <ng-content></ng-content>
1530
+ </ng-template>
1531
+ `, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
1532
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: LibTabComponent, decorators: [{
1533
+ type: Component,
1534
+ args: [{
1535
+ selector: 'lib-tab',
1536
+ template: `
1537
+ <ng-template>
1538
+ <ng-content></ng-content>
1539
+ </ng-template>
1540
+ `,
1541
+ encapsulation: ViewEncapsulation.None,
1542
+ changeDetection: ChangeDetectionStrategy.OnPush
1543
+ }]
1544
+ }], ctorParameters: function () {
1545
+ return [{ type: undefined, decorators: [{
1546
+ type: Optional
1547
+ }, {
1548
+ type: Inject,
1549
+ args: [LIBTABGROUP_ACCESSOR]
1550
+ }] }];
1551
+ }, propDecorators: { content: [{
1552
+ type: ViewChild,
1553
+ args: [TemplateRef, { static: true }]
1554
+ }], label: [{
1555
+ type: Input
1556
+ }], id: [{
1557
+ type: Input
1558
+ }] } });
1559
+
1560
+ class LibTabGroupComponent {
1561
+ constructor() {
1562
+ /** The inner tabs of the group. */
1563
+ this.tabs = undefined;
1564
+ /** Emmited when a step change occurs. */
1565
+ this.tabChanged = new EventEmitter();
1566
+ }
1567
+ /** The current tab. */
1568
+ get currentTab() {
1569
+ var _a;
1570
+ return (_a = this.tabs) === null || _a === void 0 ? void 0 : _a.find(x => x.isActive);
1571
+ }
1572
+ /** The index (starting from zero) of the current tab. */
1573
+ get currentΤabIndex() {
1574
+ var _a;
1575
+ return ((_a = this.currentTab) === null || _a === void 0 ? void 0 : _a.index) || undefined;
1576
+ }
1577
+ ngOnInit() { }
1578
+ ngAfterContentInit() {
1579
+ if (!this.tabs) {
1580
+ return;
1581
+ }
1582
+ }
1583
+ ngAfterContentChecked() {
1584
+ if (this.tabs && this.tabs.length > 0) {
1585
+ const anyActive = this.tabs.filter(x => x.isActive).length > 0;
1586
+ if (!anyActive) {
1587
+ this.tabs.get(0).isActive = true;
1588
+ }
1589
+ }
1590
+ }
1591
+ onTabChanged(selectedTab) {
1592
+ this.tabs.forEach((tab) => tab.isActive = tab.id === selectedTab.id);
1593
+ this.tabChanged.emit(selectedTab);
1594
+ }
1595
+ onTabSelectChanged(selectedTabIndex) {
1596
+ var _a;
1597
+ this.tabs.forEach((tab, index) => tab.isActive = index === selectedTabIndex);
1598
+ this.tabChanged.emit((_a = this.tabs) === null || _a === void 0 ? void 0 : _a.get(selectedTabIndex));
1599
+ }
1600
+ }
1601
+ LibTabGroupComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: LibTabGroupComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1602
+ LibTabGroupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.0", type: LibTabGroupComponent, selector: "lib-tab-group", outputs: { tabChanged: "tabChanged" }, providers: [
1603
+ { provide: LIBTABGROUP_ACCESSOR, useExisting: forwardRef(() => LibTabGroupComponent) }
1604
+ ], queries: [{ propertyName: "tabs", predicate: LibTabComponent, descendants: true }], ngImport: i0, template: "<div class=\"sm:hidden\">\n <label for=\"tabs\" class=\"sr-only\">Select a tab</label>\n <select id=\"tabs\" name=\"tabs\" (change)=\"onTabSelectChanged(+tabsSelect.value)\" class=\"tab-group-select\" #tabsSelect>\n <option [value]=\"i\" *ngFor=\"let tab of tabs; let i = index\">{{ tab.label }}</option>\n </select>\n</div>\n<div class=\"hidden sm:block\">\n <div class=\"tab-group-container\">\n <nav class=\"-mb-px flex space-x-8\" aria-label=\"Tabs\">\n <a *ngFor=\"let tab of tabs\" href=\"javascript:void(0)\" [class.tab]=\"!tab.isActive\" [class.tab-active]=\"tab.isActive\" (click)=\"onTabChanged(tab)\">\n {{ tab.label }}\n </a>\n </nav>\n </div>\n</div>\n<div *ngIf=\"currentTab?.content\">\n <ng-container [ngTemplateOutlet]=\"currentTab!.content\"></ng-container>\n</div>", dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] });
1605
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: LibTabGroupComponent, decorators: [{
1606
+ type: Component,
1607
+ args: [{ selector: 'lib-tab-group', providers: [
1608
+ { provide: LIBTABGROUP_ACCESSOR, useExisting: forwardRef(() => LibTabGroupComponent) }
1609
+ ], template: "<div class=\"sm:hidden\">\n <label for=\"tabs\" class=\"sr-only\">Select a tab</label>\n <select id=\"tabs\" name=\"tabs\" (change)=\"onTabSelectChanged(+tabsSelect.value)\" class=\"tab-group-select\" #tabsSelect>\n <option [value]=\"i\" *ngFor=\"let tab of tabs; let i = index\">{{ tab.label }}</option>\n </select>\n</div>\n<div class=\"hidden sm:block\">\n <div class=\"tab-group-container\">\n <nav class=\"-mb-px flex space-x-8\" aria-label=\"Tabs\">\n <a *ngFor=\"let tab of tabs\" href=\"javascript:void(0)\" [class.tab]=\"!tab.isActive\" [class.tab-active]=\"tab.isActive\" (click)=\"onTabChanged(tab)\">\n {{ tab.label }}\n </a>\n </nav>\n </div>\n</div>\n<div *ngIf=\"currentTab?.content\">\n <ng-container [ngTemplateOutlet]=\"currentTab!.content\"></ng-container>\n</div>" }]
1610
+ }], ctorParameters: function () { return []; }, propDecorators: { tabs: [{
1611
+ type: ContentChildren,
1612
+ args: [LibTabComponent, { descendants: true }]
1613
+ }], tabChanged: [{
1614
+ type: Output
1615
+ }] } });
1616
+
1617
+ class DynamicComponentHostDirective {
1618
+ constructor(viewContainerRef) {
1619
+ this.viewContainerRef = viewContainerRef;
1620
+ this.hostName = '';
1621
+ }
1622
+ }
1623
+ DynamicComponentHostDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: DynamicComponentHostDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
1624
+ DynamicComponentHostDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.0.0", type: DynamicComponentHostDirective, selector: "[appDynamicComponentHost]", inputs: { hostName: "hostName" }, ngImport: i0 });
1625
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: DynamicComponentHostDirective, decorators: [{
1626
+ type: Directive,
1627
+ args: [{ selector: '[appDynamicComponentHost]' }]
1628
+ }], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; }, propDecorators: { hostName: [{
1629
+ type: Input
1630
+ }] } });
1631
+
1632
+ /**
1633
+ * Holds information about the dynamic content.
1634
+ * @remarks
1635
+ * `ComponentRef` is undefined in the case content is of `TemplateRef` type.
1636
+ */
1637
+ class ContentRef {
1638
+ constructor(nodes, viewRef, componentRef) {
1639
+ this.nodes = nodes;
1640
+ this.viewRef = viewRef;
1641
+ this.componentRef = componentRef;
1642
+ }
1643
+ }
1644
+
1645
+ /**
1646
+ * Provides ways of loading and handling dynamic content.
1647
+ *
1648
+ * @remarks
1649
+ * Do NOT use this directly, create an instance through {@link ComponentLoaderFactory}
1650
+ * You can use this loader in two ways:
1651
+ * - Attaches a component to `ViewContainerRef`.
1652
+ * - Attaches a component to `ViewContainerRef`. The attached component has a `<ng-content>` tag inside its view. The {@link ComponentLoaderOptions.content} will be drawn inside this tag.
1653
+ *
1654
+ * @internal
1655
+ */
1656
+ class ComponentLoader {
1657
+ constructor(vcr, cfr, applicationRef, injector) {
1658
+ this.vcr = vcr;
1659
+ this.cfr = cfr;
1660
+ this.applicationRef = applicationRef;
1661
+ this.injector = injector;
1662
+ /**
1663
+ * Before content is shown event.
1664
+ */
1665
+ this.onBeforeShow = new Subject();
1666
+ /**
1667
+ * After show content event.
1668
+ * @returns The id of newly created component ref.
1669
+ */
1670
+ this.onShown = new Subject();
1671
+ /**
1672
+ * Before content is hidden event.
1673
+ * @returns The instance of attached component;
1674
+ */
1675
+ this.onBeforeHide = new Subject();
1676
+ /**
1677
+ * After content is hidden event.
1678
+ * @returns The id of destroyed component ref.
1679
+ */
1680
+ this.onHidden = new Subject();
1681
+ this.providers = [];
1682
+ this.containerDefaultSelector = 'body';
1683
+ }
1684
+ /**
1685
+ * Attaches component.
1686
+ * @param componentType - The type component to attach.
1687
+ * @returns Current instance of {@link ComponentLoader}
1688
+ */
1689
+ attach(componentType) {
1690
+ this.componentFactory = this.cfr.resolveComponentFactory(componentType);
1691
+ return this;
1692
+ }
1693
+ /**
1694
+ * Body will be used in nothing is provided.
1695
+ * @param container - The element in which dynamic content will be drawn inside to. For string case a query to the dom will be executed to find the element.
1696
+ * @returns Current instance of {@link ComponentLoader}
1697
+ */
1698
+ to(container) {
1699
+ this.container = container || this.container;
1700
+ return this;
1701
+ }
1702
+ /**
1703
+ * Adds provider to the providers array. These providers will be injected to the attached component.
1704
+ *
1705
+ * @see {@link https://angular.io/guide/glossary#di-token | Injection Token}
1706
+ *
1707
+ * @param provider - Provider to inject.
1708
+ * @returns Current instance of {@link ComponentLoader}
1709
+ */
1710
+ provide(provider) {
1711
+ this.providers.push(provider);
1712
+ return this;
1713
+ }
1714
+ /**
1715
+ * Attaches attached component to dom and any dynamic content if provided.
1716
+ * @remarks
1717
+ * Also triggers the {@link ComponentLoader.onBeforeShow} and {@link ComponentLoader.onShown} events.
1718
+ *
1719
+ * @param options - {@link ComponentLoaderOptions}.
1720
+ * @returns A reference to the created content.
1721
+ */
1722
+ show(options = {}) {
1723
+ if (this.componentRef) {
1724
+ throw Error('Component is already shown');
1725
+ }
1726
+ if (!this.componentFactory) {
1727
+ throw Error('You must attach a component');
1728
+ }
1729
+ this.onBeforeShow.next();
1730
+ if (options.content) {
1731
+ this.contentRef = this.getContentRef(options.content, options.context, options.initialState);
1732
+ }
1733
+ this.createComponentAndAttachToView(options);
1734
+ this.appendContentToContainer();
1735
+ this.markComponentsForCheck();
1736
+ this.onShown.next(options.id);
1737
+ return this.componentRef;
1738
+ }
1739
+ /**
1740
+ * Removes attached component from dom.
1741
+ * @remarks
1742
+ * Also triggers the {@link ComponentLoader.onBeforeHide} and {@link ComponentLoader.onHidden} events.
1743
+ *
1744
+ * @param id - If provided it is returned through the {@link ComponentLoader.onHidden}.
1745
+ * @returns Current instance of {@link ComponentLoader}
1746
+ */
1747
+ hide(id, result) {
1748
+ var _a, _b, _c;
1749
+ if (!this.componentRef) {
1750
+ throw Error('No attached component found to hide');
1751
+ }
1752
+ this.onBeforeHide.next(this.componentRef.instance);
1753
+ const componentEl = this.componentRef.location.nativeElement;
1754
+ componentEl.parentNode.removeChild(componentEl);
1755
+ if ((_a = this.contentRef) === null || _a === void 0 ? void 0 : _a.componentRef) {
1756
+ this.contentRef.componentRef.destroy();
1757
+ }
1758
+ if (this.vcr && ((_b = this.contentRef) === null || _b === void 0 ? void 0 : _b.viewRef)) {
1759
+ this.vcr.remove(this.vcr.indexOf(this.contentRef.viewRef));
1760
+ }
1761
+ if ((_c = this.contentRef) === null || _c === void 0 ? void 0 : _c.viewRef) {
1762
+ this.contentRef.viewRef.destroy();
1763
+ }
1764
+ this.contentRef = void 0;
1765
+ this.componentRef = void 0;
1766
+ this.onHidden.next(id ? { id, result } : null);
1767
+ return this;
1768
+ }
1769
+ getInnerComponent() {
1770
+ return this.innerComponent;
1771
+ }
1772
+ markComponentsForCheck() {
1773
+ var _a;
1774
+ if ((_a = this.contentRef) === null || _a === void 0 ? void 0 : _a.componentRef) {
1775
+ this.innerComponent = this.contentRef.componentRef.instance;
1776
+ this.contentRef.componentRef.changeDetectorRef.markForCheck();
1777
+ this.contentRef.componentRef.changeDetectorRef.detectChanges();
1778
+ }
1779
+ this.componentRef.changeDetectorRef.markForCheck();
1780
+ this.componentRef.changeDetectorRef.detectChanges();
1781
+ }
1782
+ createComponentAndAttachToView(options) {
1783
+ var _a;
1784
+ const injector = Injector.create({
1785
+ providers: this.providers,
1786
+ parent: this.injector,
1787
+ });
1788
+ this.componentRef = this.componentFactory.create(injector, (_a = this.contentRef) === null || _a === void 0 ? void 0 : _a.nodes);
1789
+ this.applicationRef.attachView(this.componentRef.hostView);
1790
+ this.instance = this.componentRef.instance;
1791
+ Object.assign(this.componentRef.instance, options);
1792
+ }
1793
+ appendContentToContainer() {
1794
+ var _a, _b;
1795
+ if (this.container instanceof ElementRef) {
1796
+ this.container.nativeElement.appendChild((_a = this.componentRef) === null || _a === void 0 ? void 0 : _a.location.nativeElement);
1797
+ }
1798
+ if (typeof this.container === 'string' && typeof document !== 'undefined') {
1799
+ const selectedElement = document.querySelector(this.container) || document.querySelector(this.containerDefaultSelector);
1800
+ if (!selectedElement) {
1801
+ return;
1802
+ }
1803
+ selectedElement.appendChild((_b = this.componentRef) === null || _b === void 0 ? void 0 : _b.location.nativeElement);
1804
+ }
1805
+ }
1806
+ getContentRef(content, context, initialState) {
1807
+ //TemplateRef case
1808
+ if (content instanceof TemplateRef) {
1809
+ if (this.vcr) {
1810
+ const viewRef = this.vcr.createEmbeddedView(content, context);
1811
+ viewRef.markForCheck();
1812
+ return new ContentRef([viewRef.rootNodes], viewRef);
1813
+ }
1814
+ const viewRef = content.createEmbeddedView({});
1815
+ this.applicationRef.attachView(viewRef);
1816
+ return new ContentRef([viewRef.rootNodes], viewRef);
1817
+ }
1818
+ //Component case
1819
+ if (typeof content === 'function') {
1820
+ const contentCf = this.cfr.resolveComponentFactory(content);
1821
+ const injector = Injector.create({
1822
+ providers: this.providers,
1823
+ parent: this.injector,
1824
+ });
1825
+ const componentRef = contentCf.create(injector);
1826
+ Object.assign(componentRef.instance, initialState);
1827
+ this.applicationRef.attachView(componentRef.hostView);
1828
+ return new ContentRef([[componentRef.location.nativeElement]], componentRef.hostView, componentRef);
1829
+ }
1830
+ throw Error('Unsupported content type');
1831
+ }
1832
+ }
1833
+
1834
+ /**
1835
+ * Use to create instances of {@link ComponentLoader}.
1836
+ *
1837
+ * @public
1838
+ */
1839
+ class ComponentLoaderFactory {
1840
+ constructor(componentFactoryResolver, injector, applicationRef) {
1841
+ this.componentFactoryResolver = componentFactoryResolver;
1842
+ this.injector = injector;
1843
+ this.applicationRef = applicationRef;
1844
+ }
1845
+ /**
1846
+ * Returns a new instance of {@link ComponentLoader}
1847
+ * @param viewContainerRef - The view container the dynamic content will be attached to.
1848
+ * @returns A new instance of {@link ComponentLoader}.
1849
+ *
1850
+ * @public
1851
+ */
1852
+ createLoader(viewContainerRef) {
1853
+ return new ComponentLoader(viewContainerRef, this.componentFactoryResolver, this.applicationRef, this.injector);
1854
+ }
1855
+ }
1856
+ ComponentLoaderFactory.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: ComponentLoaderFactory, deps: [{ token: i0.ComponentFactoryResolver }, { token: i0.Injector }, { token: i0.ApplicationRef }], target: i0.ɵɵFactoryTarget.Injectable });
1857
+ ComponentLoaderFactory.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: ComponentLoaderFactory, providedIn: 'root' });
1858
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: ComponentLoaderFactory, decorators: [{
1859
+ type: Injectable,
1860
+ args: [{ providedIn: 'root' }]
1861
+ }], ctorParameters: function () { return [{ type: i0.ComponentFactoryResolver }, { type: i0.Injector }, { type: i0.ApplicationRef }]; } });
1862
+
1863
+ class NotificationsIndicatorComponent {
1864
+ constructor(notifications, links) {
1865
+ this.notifications = notifications;
1866
+ this.links = links;
1867
+ this.menuExpanded = false;
1868
+ this.unreadCount = 0;
1869
+ this.items = [];
1870
+ this.inboxAction = undefined;
1871
+ this.newArrival = false;
1872
+ }
1873
+ ngOnDestroy() {
1874
+ if (this.notificationsSub$) {
1875
+ this.notificationsSub$.unsubscribe();
1876
+ }
1877
+ }
1878
+ ngOnInit() {
1879
+ this.links['notifications'].subscribe(notificationsLink => {
1880
+ this.allNotificationsLink = notificationsLink;
1881
+ });
1882
+ this.notificationsSub$ = this.notifications.messages.subscribe(result => {
1883
+ if (result.items) {
1884
+ this.newArrival = true;
1885
+ this.unreadCount = result.count;
1886
+ this.items = result.items;
1887
+ setTimeout(() => { this.newArrival = false; }, 1000);
1888
+ }
1889
+ });
1890
+ }
1891
+ doInboxAction() {
1892
+ if (this.notifications.inboxAction) {
1893
+ this.notifications.inboxAction();
1894
+ }
1895
+ else {
1896
+ this.menuExpanded = !this.menuExpanded;
1897
+ }
1898
+ this.unreadCount = 0;
1899
+ }
1900
+ removeItem(index) {
1901
+ this.items.splice(index, 1);
1902
+ }
1903
+ // this.notificationsSub$ = this.links.notifications?.pipe(map(result => {
1904
+ // this.allItemsLink = result.allNotifications;
1905
+ // this.items = result.items;
1906
+ // this.unreadCount = result.count;
1907
+ // }));
1908
+ // [this.notificationsLinksPath] as Observable<NotificationNavLink[]>;
1909
+ // this.allNotificationsLink = this.links[this.allNotificationsLinkPath] as Observable<NavLink>;
1910
+ // this.unreadNotificationsCountObs = this.links[this.notificationsCounterLinksPath] as Observable<number>;
1911
+ // this.getUnreadNotificationsCount();
1912
+ // tslint:disable-next-line:typedef
1913
+ onClickOutside($event) {
1914
+ this.menuExpanded = false;
1915
+ }
1916
+ }
1917
+ NotificationsIndicatorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: NotificationsIndicatorComponent, deps: [{ token: APP_NOTIFICATIONS }, { token: APP_LINKS }], target: i0.ɵɵFactoryTarget.Component });
1918
+ NotificationsIndicatorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.0", type: NotificationsIndicatorComponent, selector: "lib-notifications-indicator", ngImport: i0, template: "<div class=\"relative\"\n(clickOutside)=\"onClickOutside($event)\">\n <!-- Notifications Button -->\n <button type=\"button\"\n (click)=\"doInboxAction()\"\n aria-expanded=\"false\"\n aria-haspopup=\"true\">\n <span class=\"sr-only\">View notifications</span>\n <span class=\"avatar-container\">\n <span class=\"avatar-text\">\n <i class=\"ms-Icon hover:text-blue-400\"\n [class.ms-Icon--MessageFill]=\"unreadCount > 0\"\n [class.text-sky-400]=\"unreadCount > 0\"\n [class.animate-notification]=\"newArrival\"\n [class.ms-Icon--Message]=\"unreadCount === 0\">\n </i>\n </span>\n <span\n *ngIf=\"unreadCount > 0\"\n [class.animate-pulse]=\"newArrival\"\n class=\"absolute top-0 right-0 inline-flex items-center justify-center -mt-1 ml-1 text-xs leading-none text-gray-100 ordinal\">\n {{ unreadCount }}\n </span>\n </span>\n </button>\n\n <!-- Notifications dropdown -->\n <div *ngIf=\"menuExpanded\" class=\"header-notifications-dropdown-with-username\" role=\"menu\" aria-orientation=\"vertical\" aria-labelledby=\"messages-menu\">\n <div class=\"max-h-64 overflow-y-auto notification-messages min-h\">\n <ng-container *ngIf=\"!items; else messagesDropDown\" class=\"py-5\">\n <div class=\"notifications-nav-link hover:bg-transparent\">\u0394\u03B5\u03BD \u03AD\u03C7\u03B5\u03C4\u03B5 \u03BD\u03AD\u03B5\u03C2 \u03B5\u03B9\u03B4\u03BF\u03C0\u03BF\u03B9\u03AE\u03C3\u03B5\u03B9\u03C2</div>\n </ng-container>\n <ng-template #messagesDropDown>\n <ul class=\"pr-1.5\">\n <ng-container *ngIf=\"items; else loading\">\n <ng-container *ngIf=\"items.length <= 0\" class=\"py-5\">\n <div class=\"notifications-nav-link hover:bg-transparent\">\u0394\u03B5\u03BD \u03AD\u03C7\u03B5\u03C4\u03B5 \u03BD\u03AD\u03B5\u03C2 \u03B5\u03B9\u03B4\u03BF\u03C0\u03BF\u03B9\u03AE\u03C3\u03B5\u03B9\u03C2</div>\n </ng-container>\n <ng-container *ngFor=\"let message of items; let i = index\">\n <li class=\"mb-2\" [ngClass]=\"{ 'border-l-2 border-blue-500 bg-blue-50 hover:bg-blue-50': !message.data.isRead }\">\n <div class=\"flex justify-between\">\n <div class=\"flex-grow\">\n <a\n [routerLink]=\"message.path\"\n (click)=\"removeItem(i)\"\n class=\"notifications-nav-link grid\"\n [ngClass]=\"!message.data.isRead ? ' hover:bg-blue-50' : 'border-b border-gray-100'\"\n >\n <div class=\"flex flex-col\">\n <div class=\"font-thin tracking-tighter\">\n {{ message.data.creationDate | date: \"EEE, d MMMM\" }}\n </div>\n <div class=\"font-bold\">\n {{ message.data.text }}\n </div>\n </div>\n </a>\n </div>\n </div>\n </li>\n </ng-container>\n </ng-container>\n\n <ng-template #loading>\n <div class=\"h-32 flex items-center justify-center\">\n <div class=\"animate-pulse text-s text-gray-600\">Loading...</div>\n </div>\n </ng-template>\n </ul>\n </ng-template>\n </div>\n <div class=\"p-1 rounded-sm\">\n <a [routerLink]=\"allNotificationsLink!.path\">\n <button type=\"button\" class=\"header-notifications-dropdown-view-all-button\">{{allNotificationsLink!.text}}</button>\n </a>\n </div>\n </div>\n</div>\n", dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1$1.RouterLinkWithHref, selector: "a[routerLink],area[routerLink]", inputs: ["target", "queryParams", "fragment", "queryParamsHandling", "preserveFragment", "skipLocationChange", "replaceUrl", "state", "relativeTo", "routerLink"] }, { kind: "directive", type: ClickOutsideDirective, selector: "[clickOutside]", inputs: ["clickOutsideEnabled", "attachOutsideOnClick", "delayClickOutsideInit", "emitOnBlur", "exclude", "excludeBeforeClick", "clickOutsideEvents"], outputs: ["clickOutside"] }, { kind: "pipe", type: i1.DatePipe, name: "date" }] });
1919
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: NotificationsIndicatorComponent, decorators: [{
1920
+ type: Component,
1921
+ args: [{ selector: 'lib-notifications-indicator', template: "<div class=\"relative\"\n(clickOutside)=\"onClickOutside($event)\">\n <!-- Notifications Button -->\n <button type=\"button\"\n (click)=\"doInboxAction()\"\n aria-expanded=\"false\"\n aria-haspopup=\"true\">\n <span class=\"sr-only\">View notifications</span>\n <span class=\"avatar-container\">\n <span class=\"avatar-text\">\n <i class=\"ms-Icon hover:text-blue-400\"\n [class.ms-Icon--MessageFill]=\"unreadCount > 0\"\n [class.text-sky-400]=\"unreadCount > 0\"\n [class.animate-notification]=\"newArrival\"\n [class.ms-Icon--Message]=\"unreadCount === 0\">\n </i>\n </span>\n <span\n *ngIf=\"unreadCount > 0\"\n [class.animate-pulse]=\"newArrival\"\n class=\"absolute top-0 right-0 inline-flex items-center justify-center -mt-1 ml-1 text-xs leading-none text-gray-100 ordinal\">\n {{ unreadCount }}\n </span>\n </span>\n </button>\n\n <!-- Notifications dropdown -->\n <div *ngIf=\"menuExpanded\" class=\"header-notifications-dropdown-with-username\" role=\"menu\" aria-orientation=\"vertical\" aria-labelledby=\"messages-menu\">\n <div class=\"max-h-64 overflow-y-auto notification-messages min-h\">\n <ng-container *ngIf=\"!items; else messagesDropDown\" class=\"py-5\">\n <div class=\"notifications-nav-link hover:bg-transparent\">\u0394\u03B5\u03BD \u03AD\u03C7\u03B5\u03C4\u03B5 \u03BD\u03AD\u03B5\u03C2 \u03B5\u03B9\u03B4\u03BF\u03C0\u03BF\u03B9\u03AE\u03C3\u03B5\u03B9\u03C2</div>\n </ng-container>\n <ng-template #messagesDropDown>\n <ul class=\"pr-1.5\">\n <ng-container *ngIf=\"items; else loading\">\n <ng-container *ngIf=\"items.length <= 0\" class=\"py-5\">\n <div class=\"notifications-nav-link hover:bg-transparent\">\u0394\u03B5\u03BD \u03AD\u03C7\u03B5\u03C4\u03B5 \u03BD\u03AD\u03B5\u03C2 \u03B5\u03B9\u03B4\u03BF\u03C0\u03BF\u03B9\u03AE\u03C3\u03B5\u03B9\u03C2</div>\n </ng-container>\n <ng-container *ngFor=\"let message of items; let i = index\">\n <li class=\"mb-2\" [ngClass]=\"{ 'border-l-2 border-blue-500 bg-blue-50 hover:bg-blue-50': !message.data.isRead }\">\n <div class=\"flex justify-between\">\n <div class=\"flex-grow\">\n <a\n [routerLink]=\"message.path\"\n (click)=\"removeItem(i)\"\n class=\"notifications-nav-link grid\"\n [ngClass]=\"!message.data.isRead ? ' hover:bg-blue-50' : 'border-b border-gray-100'\"\n >\n <div class=\"flex flex-col\">\n <div class=\"font-thin tracking-tighter\">\n {{ message.data.creationDate | date: \"EEE, d MMMM\" }}\n </div>\n <div class=\"font-bold\">\n {{ message.data.text }}\n </div>\n </div>\n </a>\n </div>\n </div>\n </li>\n </ng-container>\n </ng-container>\n\n <ng-template #loading>\n <div class=\"h-32 flex items-center justify-center\">\n <div class=\"animate-pulse text-s text-gray-600\">Loading...</div>\n </div>\n </ng-template>\n </ul>\n </ng-template>\n </div>\n <div class=\"p-1 rounded-sm\">\n <a [routerLink]=\"allNotificationsLink!.path\">\n <button type=\"button\" class=\"header-notifications-dropdown-view-all-button\">{{allNotificationsLink!.text}}</button>\n </a>\n </div>\n </div>\n</div>\n" }]
1922
+ }], ctorParameters: function () {
1923
+ return [{ type: undefined, decorators: [{
1924
+ type: Inject,
1925
+ args: [APP_NOTIFICATIONS]
1926
+ }] }, { type: undefined, decorators: [{
1927
+ type: Inject,
1928
+ args: [APP_LINKS]
1929
+ }] }];
1930
+ } });
1931
+
1932
+ class LanguageSelectionComponent {
1933
+ constructor(langsService) {
1934
+ this.langsService = langsService;
1935
+ this.menuExpanded = false;
1936
+ }
1937
+ ngOnInit() {
1938
+ }
1939
+ selectLang(option) {
1940
+ var _a;
1941
+ if ((_a = this.langsService) === null || _a === void 0 ? void 0 : _a.setSelected) {
1942
+ this.langsService.setSelected(option.value);
1943
+ }
1944
+ }
1945
+ onClickOutside($event) {
1946
+ this.menuExpanded = false;
1947
+ }
1948
+ }
1949
+ LanguageSelectionComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: LanguageSelectionComponent, deps: [{ token: APP_LANGUAGES }], target: i0.ɵɵFactoryTarget.Component });
1950
+ LanguageSelectionComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.0", type: LanguageSelectionComponent, selector: "lib-language-selection", ngImport: i0, template: "<div class=\"relative\" (clickOutside)=\"onClickOutside($event)\">\n <button class=\"text-blue-300 hover:text-blue-400\" (click)=\"menuExpanded = !menuExpanded\">\n <i class=\"text-xs mr-1 ms-Icon ms-Icon--Globe\"></i>\n <span>{{langsService?.selected || langsService?.default}}</span>\n </button>\n\n <div\n [class]=\"menuExpanded ? 'transition ease-out duration-200 origin-top-right z-30 absolute right-0 mt-2 w-56 rounded-sm shadow-lg bg-white ring-1 ring-black ring-opacity-5 focus:outline-none':'hidden transition ease-in duration-75 origin-top-right z-30 right-0 mt-2 w-56 rounded-sm shadow-lg bg-white ring-1 ring-black ring-opacity-5 focus:outline-none'\" role=\"menu\" aria-orientation=\"vertical\" aria-labelledby=\"menu-button\" tabindex=\"-1\">\n <div class=\"py-1\" role=\"none\">\n <ng-container *ngFor=\"let lang of langsService?.options | async\">\n <a (click)=\"selectLang(lang)\" *ngIf=\"lang.value != langsService?.selected\" class=\"nav-link-profile\" role=\"menuitem\" tabindex=\"-1\" id=\"menu-item-0\">\n <i class=\"text-xs mr-1 ms-Icon ms-Icon--GlobeFavorite\"></i>\n {{lang.description}}\n </a>\n </ng-container>\n </div>\n </div>\n</div>\n", dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: ClickOutsideDirective, selector: "[clickOutside]", inputs: ["clickOutsideEnabled", "attachOutsideOnClick", "delayClickOutsideInit", "emitOnBlur", "exclude", "excludeBeforeClick", "clickOutsideEvents"], outputs: ["clickOutside"] }, { kind: "pipe", type: i1.AsyncPipe, name: "async" }] });
1951
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: LanguageSelectionComponent, decorators: [{
1952
+ type: Component,
1953
+ args: [{ selector: 'lib-language-selection', template: "<div class=\"relative\" (clickOutside)=\"onClickOutside($event)\">\n <button class=\"text-blue-300 hover:text-blue-400\" (click)=\"menuExpanded = !menuExpanded\">\n <i class=\"text-xs mr-1 ms-Icon ms-Icon--Globe\"></i>\n <span>{{langsService?.selected || langsService?.default}}</span>\n </button>\n\n <div\n [class]=\"menuExpanded ? 'transition ease-out duration-200 origin-top-right z-30 absolute right-0 mt-2 w-56 rounded-sm shadow-lg bg-white ring-1 ring-black ring-opacity-5 focus:outline-none':'hidden transition ease-in duration-75 origin-top-right z-30 right-0 mt-2 w-56 rounded-sm shadow-lg bg-white ring-1 ring-black ring-opacity-5 focus:outline-none'\" role=\"menu\" aria-orientation=\"vertical\" aria-labelledby=\"menu-button\" tabindex=\"-1\">\n <div class=\"py-1\" role=\"none\">\n <ng-container *ngFor=\"let lang of langsService?.options | async\">\n <a (click)=\"selectLang(lang)\" *ngIf=\"lang.value != langsService?.selected\" class=\"nav-link-profile\" role=\"menuitem\" tabindex=\"-1\" id=\"menu-item-0\">\n <i class=\"text-xs mr-1 ms-Icon ms-Icon--GlobeFavorite\"></i>\n {{lang.description}}\n </a>\n </ng-container>\n </div>\n </div>\n</div>\n" }]
1954
+ }], ctorParameters: function () {
1955
+ return [{ type: undefined, decorators: [{
1956
+ type: Inject,
1957
+ args: [APP_LANGUAGES]
1958
+ }] }];
1959
+ } });
1960
+
1961
+ class UserProfileMenuComponent {
1962
+ constructor(authService, router, links) {
1963
+ this.authService = authService;
1964
+ this.router = router;
1965
+ this.links = links;
1966
+ // tslint:disable-next-line:no-input-rename
1967
+ this.showUserName = false;
1968
+ this.userSub$ = null;
1969
+ this.statusSub$ = null;
1970
+ this.user = null;
1971
+ this.avatarName = null;
1972
+ this.userMenuExpanded = false;
1973
+ }
1974
+ ngOnInit() {
1975
+ this.authService.loadUser().subscribe((user) => {
1976
+ this.setCurrentUser(user);
1977
+ }, error => {
1978
+ console.error(error);
1979
+ });
1980
+ // Detect user changes and display / or not user info accordingly...
1981
+ this.userSub$ = this.authService.user$.subscribe((user) => {
1982
+ // console.log('ShellHeaderComponent user subscription');
1983
+ this.setCurrentUser(user);
1984
+ });
1985
+ }
1986
+ signin(event) {
1987
+ if (event) {
1988
+ event.preventDefault();
1989
+ }
1990
+ this.authService.signinRedirect();
1991
+ }
1992
+ setCurrentUser(user) {
1993
+ var _a, _b;
1994
+ this.user = user;
1995
+ if (this.user && this.user.profile) {
1996
+ this.avatarName = `${(_a = this.user.profile.given_name) === null || _a === void 0 ? void 0 : _a.charAt(0)}${(_b = this.user.profile.family_name) === null || _b === void 0 ? void 0 : _b.charAt(0)}`.toUpperCase();
1997
+ }
1998
+ }
1999
+ // tslint:disable-next-line:typedef
2000
+ onClickOutside($event) {
2001
+ this.userMenuExpanded = false;
2002
+ }
2003
+ }
2004
+ UserProfileMenuComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: UserProfileMenuComponent, deps: [{ token: AuthService }, { token: Router }, { token: APP_LINKS }], target: i0.ɵɵFactoryTarget.Component });
2005
+ UserProfileMenuComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.0", type: UserProfileMenuComponent, selector: "lib-user-profile-menu", inputs: { showUserName: ["show-user-name", "showUserName"] }, ngImport: i0, template: "<div class=\"relative\" (clickOutside)=\"onClickOutside($event)\" (click)=\"userMenuExpanded = !userMenuExpanded\">\n\n <div class=\"inline-flex\">\n <!-- Username -->\n <div [ngClass]=\"{'shell-header-profile': showUserName}\">\n <div *ngIf=\"user && showUserName\" class=\"shell-header-profile-userName\">\n {{ user.profile.name }}\n </div>\n </div>\n\n <div [class.ml-2]=\"showUserName\">\n <button type=\"button\" *ngIf=\"user\"\n class=\"shell-header-profile-dropdown-button\"\n id=\"user-menu\"\n aria-expanded=\"false\"\n aria-haspopup=\"true\">\n <span class=\"sr-only\">Open user menu</span>\n <span class=\"avatar-container\">\n <span class=\"avatar-text\">{{this.avatarName}}</span>\n </span>\n </button>\n\n <button type=\"button\"\n *ngIf=\"!user\"\n (click)=\"signin(null)\"\n class=\"shell-header-profile-dropdown-button\"\n id=\"user-menu\"\n aria-expanded=\"false\"\n aria-haspopup=\"true\">\n <span class=\"sr-only\">sign in</span>\n <span class=\"avatar-container\">\n <span class=\"avatar-text\"><i class=\"ms-Icon ms-Icon--Signin\"></i></span>\n </span>\n </button>\n </div>\n </div>\n\n <div [class]=\"userMenuExpanded ?\n 'transition ease-out duration-200 origin-top-right z-30 absolute right-0 mt-2 w-56 rounded-sm shadow-lg bg-white ring-1 ring-black ring-opacity-5 focus:outline-none'\n :\n 'hidden transition ease-in duration-75 origin-top-right z-30 right-0 mt-2 w-56 rounded-sm shadow-lg bg-white ring-1 ring-black ring-opacity-5 focus:outline-none'\"\n role=\"menu\" aria-orientation=\"vertical\" aria-labelledby=\"menu-button\" tabindex=\"-1\">\n <lib-nav-links-list\n [links]=\"links.profile\"\n [link-class]=\"'nav-link-profile'\"\n [link-active-class]=\"'nav-link-profile-active'\">\n </lib-nav-links-list>\n </div>\n\n</div>\n\n", dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: ClickOutsideDirective, selector: "[clickOutside]", inputs: ["clickOutsideEnabled", "attachOutsideOnClick", "delayClickOutsideInit", "emitOnBlur", "exclude", "excludeBeforeClick", "clickOutsideEvents"], outputs: ["clickOutside"] }, { kind: "component", type: NavLinksListComponent, selector: "lib-nav-links-list", inputs: ["links", "active-fragment", "link-class", "link-active-class", "container-class", "show-icons"] }] });
2006
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: UserProfileMenuComponent, decorators: [{
2007
+ type: Component,
2008
+ args: [{ selector: 'lib-user-profile-menu', template: "<div class=\"relative\" (clickOutside)=\"onClickOutside($event)\" (click)=\"userMenuExpanded = !userMenuExpanded\">\n\n <div class=\"inline-flex\">\n <!-- Username -->\n <div [ngClass]=\"{'shell-header-profile': showUserName}\">\n <div *ngIf=\"user && showUserName\" class=\"shell-header-profile-userName\">\n {{ user.profile.name }}\n </div>\n </div>\n\n <div [class.ml-2]=\"showUserName\">\n <button type=\"button\" *ngIf=\"user\"\n class=\"shell-header-profile-dropdown-button\"\n id=\"user-menu\"\n aria-expanded=\"false\"\n aria-haspopup=\"true\">\n <span class=\"sr-only\">Open user menu</span>\n <span class=\"avatar-container\">\n <span class=\"avatar-text\">{{this.avatarName}}</span>\n </span>\n </button>\n\n <button type=\"button\"\n *ngIf=\"!user\"\n (click)=\"signin(null)\"\n class=\"shell-header-profile-dropdown-button\"\n id=\"user-menu\"\n aria-expanded=\"false\"\n aria-haspopup=\"true\">\n <span class=\"sr-only\">sign in</span>\n <span class=\"avatar-container\">\n <span class=\"avatar-text\"><i class=\"ms-Icon ms-Icon--Signin\"></i></span>\n </span>\n </button>\n </div>\n </div>\n\n <div [class]=\"userMenuExpanded ?\n 'transition ease-out duration-200 origin-top-right z-30 absolute right-0 mt-2 w-56 rounded-sm shadow-lg bg-white ring-1 ring-black ring-opacity-5 focus:outline-none'\n :\n 'hidden transition ease-in duration-75 origin-top-right z-30 right-0 mt-2 w-56 rounded-sm shadow-lg bg-white ring-1 ring-black ring-opacity-5 focus:outline-none'\"\n role=\"menu\" aria-orientation=\"vertical\" aria-labelledby=\"menu-button\" tabindex=\"-1\">\n <lib-nav-links-list\n [links]=\"links.profile\"\n [link-class]=\"'nav-link-profile'\"\n [link-active-class]=\"'nav-link-profile-active'\">\n </lib-nav-links-list>\n </div>\n\n</div>\n\n" }]
2009
+ }], ctorParameters: function () {
2010
+ return [{ type: i2.AuthService, decorators: [{
2011
+ type: Inject,
2012
+ args: [AuthService]
2013
+ }] }, { type: i1$1.Router, decorators: [{
2014
+ type: Inject,
2015
+ args: [Router]
2016
+ }] }, { type: undefined, decorators: [{
2017
+ type: Inject,
2018
+ args: [APP_LINKS]
2019
+ }] }];
2020
+ }, propDecorators: { showUserName: [{
2021
+ type: Input,
2022
+ args: ['show-user-name']
2023
+ }] } });
2024
+
2025
+ class ShellHeaderComponent {
2026
+ constructor(authService, router, route, config, links) {
2027
+ this.authService = authService;
2028
+ this.router = router;
2029
+ this.route = route;
2030
+ this.config = config;
2031
+ this.links = links;
2032
+ // tslint:disable-next-line:no-input-rename
2033
+ this.sectionLinksPath = 'main';
2034
+ // tslint:disable-next-line:no-input-rename
2035
+ this.profileMenuVisible = true;
2036
+ // tslint:disable-next-line:no-input-rename
2037
+ this.showUserNameOnHeader = false;
2038
+ // tslint:disable-next-line:no-input-rename
2039
+ this.showAlerts = false;
2040
+ // tslint:disable-next-line:no-input-rename
2041
+ this.shellLayout = ShellLayoutType.Stacked;
2042
+ this.border = true;
2043
+ this.sectionLinks = of([]);
2044
+ this.mobileMenuExpanded = false;
2045
+ this.userMenuExpanded = false;
2046
+ this.routerSub$ = null;
2047
+ this.userSub$ = null;
2048
+ this.statusSub$ = null;
2049
+ this.user = null;
2050
+ this.avatarName = null;
2051
+ this.activeFragment = null;
2052
+ this.routeSubject = this.router.events.pipe(filter((event) => event instanceof NavigationStart));
2053
+ }
2054
+ ngOnInit() {
2055
+ this.activeFragment = this.route.fragment.pipe(share());
2056
+ this.sectionLinks = this.links[this.sectionLinksPath];
2057
+ this.routerSub$ = this.routeSubject.subscribe((event) => {
2058
+ this.mobileMenuExpanded = false;
2059
+ this.userMenuExpanded = false;
2060
+ });
2061
+ this.authService.loadUser().subscribe((user) => {
2062
+ this.setCurrentUser(user);
2063
+ }, error => {
2064
+ console.error(error);
2065
+ });
2066
+ // Detect user changes and display / or not user info accordingly...
2067
+ this.userSub$ = this.authService.user$.subscribe((user) => {
2068
+ // console.log('ShellHeaderComponent user subscription');
2069
+ this.setCurrentUser(user);
2070
+ });
2071
+ }
2072
+ ngOnDestroy() {
2073
+ if (this.routerSub$) {
2074
+ this.routerSub$.unsubscribe();
2075
+ }
2076
+ // TODO: check authenticated user here before we start polling server status
2077
+ if (this.statusSub$) {
2078
+ this.statusSub$.unsubscribe();
2079
+ }
2080
+ if (this.userSub$) {
2081
+ this.userSub$.unsubscribe();
2082
+ }
2083
+ }
2084
+ // tslint:disable-next-line:typedef
2085
+ onClickOutside($event) {
2086
+ this.userMenuExpanded = false;
2087
+ }
2088
+ signin(event) {
2089
+ if (event) {
2090
+ event.preventDefault();
2091
+ }
2092
+ this.authService.signinRedirect();
2093
+ }
2094
+ setCurrentUser(user) {
2095
+ var _a, _b;
2096
+ this.user = user;
2097
+ if (this.user && this.user.profile) {
2098
+ this.avatarName = `${(_a = this.user.profile.given_name) === null || _a === void 0 ? void 0 : _a.charAt(0)}${(_b = this.user.profile.family_name) === null || _b === void 0 ? void 0 : _b.charAt(0)}`.toUpperCase();
2099
+ }
2100
+ }
2101
+ }
2102
+ ShellHeaderComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: ShellHeaderComponent, deps: [{ token: AuthService }, { token: Router }, { token: ActivatedRoute }, { token: SHELL_CONFIG }, { token: APP_LINKS }], target: i0.ɵɵFactoryTarget.Component });
2103
+ ShellHeaderComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.0", type: ShellHeaderComponent, selector: "lib-shell-header", inputs: { sectionLinksPath: ["section-links", "sectionLinksPath"], profileMenuVisible: ["profile-menu", "profileMenuVisible"], showUserNameOnHeader: ["show-userName", "showUserNameOnHeader"], showAlerts: ["show-alerts", "showAlerts"], shellLayout: ["shell-layout", "shellLayout"], border: "border" }, ngImport: i0, template: "<nav>\n <div class=\"shell-header-paddings\">\n <div [class]=\"border ? 'shell-header-border' : ''\">\n <div class=\"shell-header-menu-container\">\n <div *ngIf=\"shellLayout==='Stacked'\" class=\"shell-header-logo-container\">\n <div>\n <a href=\"#\" [routerLink]=\"['/']\"><img class=\"app-logo\" [src]=\"config.appLogo\" [alt]=\"config.appLogoAlt\" /></a>\n </div>\n </div>\n\n <div *ngIf=\"shellLayout==='Stacked'\" class=\"shell-header-link-container\">\n <div class=\"shell-header-link-container-inner\">\n <lib-nav-links-list\n [links]=\"sectionLinks\"\n [active-fragment]=\"activeFragment\"\n [link-class]=\"'nav-link'\"\n [link-active-class]=\"'nav-link-active'\">\n </lib-nav-links-list>\n </div>\n </div>\n\n <div class=\"shell-header-md-visible\">\n\n <div class=\"shell-header-links-far-container\" (clickOutside)=\"onClickOutside($event)\">\n\n <lib-nav-links-list\n [links]=\"links.profileActions\"\n [active-fragment]=\"activeFragment\"\n [link-class]=\"'shell-header-menu-rounded-button'\"\n [link-active-class]=\"'shell-header-menu-rounded-button-active'\">\n </lib-nav-links-list>\n\n\n <!-- Profile dropdown -->\n <div *ngIf=\"profileMenuVisible\" class=\"ml-2\">\n <lib-user-profile-menu [show-user-name]=\"showUserNameOnHeader\"></lib-user-profile-menu>\n </div>\n\n <!-- Notifications dropdown -->\n <div *ngIf=\"showAlerts && user\" class=\"ml-2\">\n <lib-notifications-indicator></lib-notifications-indicator>\n </div>\n\n <!-- languages dropdown -->\n <div *ngIf=\"config.showLangsOnHeader\" class=\"ml-2\">\n <lib-language-selection></lib-language-selection>\n </div>\n </div>\n </div>\n\n <div class=\"mobile-menu-button-container\" *ngIf=\"shellLayout === 'Stacked'\">\n <!-- Mobile menu button -->\n <button type=\"button\"\n (click)=\"mobileMenuExpanded = !mobileMenuExpanded\"\n class=\"mobile-menu-button\"\n aria-controls=\"mobile-menu\"\n [attr.aria-expanded]=\"mobileMenuExpanded\">\n <span class=\"sr-only\">Open main menu</span>\n <!--Heroicon name: outline/menu Menu open: \"hidden\", Menu closed: \"block\"-->\n <svg xmlns=\"http://www.w3.org/2000/svg\"\n fill=\"none\"\n viewBox=\"0 0 24 24\"\n stroke=\"currentColor\"\n aria-hidden=\"true\"\n [class]=\"mobileMenuExpanded ? 'hidden':'block h-6 w-6'\">\n <path stroke-linecap=\"round\"\n stroke-linejoin=\"round\"\n stroke-width=\"2\"\n d=\"M4 6h16M4 12h16M4 18h16\" />\n </svg>\n <!--Heroicon name: outline/x Menu open: \"block\", Menu closed: \"hidden\"-->\n <svg xmlns=\"http://www.w3.org/2000/svg\"\n fill=\"none\"\n viewBox=\"0 0 24 24\"\n stroke=\"currentColor\"\n aria-hidden=\"true\"\n [class]=\"mobileMenuExpanded ? 'block h-6 w-6':'hidden'\">\n <path stroke-linecap=\"round\"\n stroke-linejoin=\"round\"\n stroke-width=\"2\"\n d=\"M6 18L18 6M6 6l12 12\" />\n </svg>\n </button>\n </div>\n\n </div>\n </div>\n </div>\n <!-- Mobile menu, show/hide based on menu state. -->\n <div class=\"mobile-menu-container\" *ngIf=\"mobileMenuExpanded\" id=\"mobile-menu\">\n <lib-nav-links-list\n [links]=\"sectionLinks\"\n [active-fragment]=\"activeFragment\"\n [link-class]=\"'nav-link-mobile'\"\n [link-active-class]=\"'nav-link-mobile-active'\"\n [container-class]=\"'mobile-menu-link-container'\">\n </lib-nav-links-list>\n\n <div *ngIf=\"!user\">\n <a href=\"#\" (click)=\"signin($event)\" class=\"nav-link-mobile\">\n <i class=\"ms-Icon ms-Icon--Signin mr-2\"></i>\u03A3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7\n </a>\n </div>\n\n <div class=\"mobile-menu-user-info-container\" *ngIf=\"user\">\n <div class=\"mobile-menu-user-info-container-inner\">\n <div class=\"flex-shrink-0\">\n <span class=\"mobile-menu-avatar-container\">\n <span class=\"mobile-menu-avatar-name\">{{ this.avatarName }}</span>\n </span>\n </div>\n <div class=\"ml-3\">\n <div class=\"mobile-menu-user-name\">{{ user.profile.name }}</div>\n <div class=\"mobile-menu-user-email\">{{ user.profile.email }}</div>\n </div>\n <!--\n <button class=\"mobile-menu-rounded-button\">\n <span class=\"sr-only\">View notifications</span>\n <svg class=\"mobile-menu-rounded-button-icon-style\"\n xmlns=\"http://www.w3.org/2000/svg\"\n fill=\"none\"\n viewBox=\"0 0 24 24\"\n stroke=\"currentColor\"\n aria-hidden=\"true\">\n <path stroke-linecap=\"round\"\n stroke-linejoin=\"round\"\n stroke-width=\"2\"\n d=\"M15 17h5l-1.405-1.405A2.032 2.032 0 0118 14.158V11a6.002 6.002 0 00-4-5.659V5a2 2 0 10-4 0v.341C7.67 6.165 6 8.388 6 11v3.159c0 .538-.214 1.055-.595 1.436L4 17h5m6 0v1a3 3 0 11-6 0v-1m6 0H9\" />\n </svg>\n </button>\n -->\n </div>\n </div>\n\n <lib-nav-links-list\n [links]=\"links.profile\"\n [active-fragment]=\"activeFragment\"\n [link-class]=\"'nav-link-mobile'\"\n [link-active-class]=\"'nav-link-mobile-active'\"\n [container-class]=\"'mobile-menu-link-container'\">\n </lib-nav-links-list>\n </div>\n</nav>\n", dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1$1.RouterLinkWithHref, selector: "a[routerLink],area[routerLink]", inputs: ["target", "queryParams", "fragment", "queryParamsHandling", "preserveFragment", "skipLocationChange", "replaceUrl", "state", "relativeTo", "routerLink"] }, { kind: "directive", type: ClickOutsideDirective, selector: "[clickOutside]", inputs: ["clickOutsideEnabled", "attachOutsideOnClick", "delayClickOutsideInit", "emitOnBlur", "exclude", "excludeBeforeClick", "clickOutsideEvents"], outputs: ["clickOutside"] }, { kind: "component", type: NavLinksListComponent, selector: "lib-nav-links-list", inputs: ["links", "active-fragment", "link-class", "link-active-class", "container-class", "show-icons"] }, { kind: "component", type: NotificationsIndicatorComponent, selector: "lib-notifications-indicator" }, { kind: "component", type: LanguageSelectionComponent, selector: "lib-language-selection" }, { kind: "component", type: UserProfileMenuComponent, selector: "lib-user-profile-menu", inputs: ["show-user-name"] }] });
2104
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: ShellHeaderComponent, decorators: [{
2105
+ type: Component,
2106
+ args: [{ selector: 'lib-shell-header', template: "<nav>\n <div class=\"shell-header-paddings\">\n <div [class]=\"border ? 'shell-header-border' : ''\">\n <div class=\"shell-header-menu-container\">\n <div *ngIf=\"shellLayout==='Stacked'\" class=\"shell-header-logo-container\">\n <div>\n <a href=\"#\" [routerLink]=\"['/']\"><img class=\"app-logo\" [src]=\"config.appLogo\" [alt]=\"config.appLogoAlt\" /></a>\n </div>\n </div>\n\n <div *ngIf=\"shellLayout==='Stacked'\" class=\"shell-header-link-container\">\n <div class=\"shell-header-link-container-inner\">\n <lib-nav-links-list\n [links]=\"sectionLinks\"\n [active-fragment]=\"activeFragment\"\n [link-class]=\"'nav-link'\"\n [link-active-class]=\"'nav-link-active'\">\n </lib-nav-links-list>\n </div>\n </div>\n\n <div class=\"shell-header-md-visible\">\n\n <div class=\"shell-header-links-far-container\" (clickOutside)=\"onClickOutside($event)\">\n\n <lib-nav-links-list\n [links]=\"links.profileActions\"\n [active-fragment]=\"activeFragment\"\n [link-class]=\"'shell-header-menu-rounded-button'\"\n [link-active-class]=\"'shell-header-menu-rounded-button-active'\">\n </lib-nav-links-list>\n\n\n <!-- Profile dropdown -->\n <div *ngIf=\"profileMenuVisible\" class=\"ml-2\">\n <lib-user-profile-menu [show-user-name]=\"showUserNameOnHeader\"></lib-user-profile-menu>\n </div>\n\n <!-- Notifications dropdown -->\n <div *ngIf=\"showAlerts && user\" class=\"ml-2\">\n <lib-notifications-indicator></lib-notifications-indicator>\n </div>\n\n <!-- languages dropdown -->\n <div *ngIf=\"config.showLangsOnHeader\" class=\"ml-2\">\n <lib-language-selection></lib-language-selection>\n </div>\n </div>\n </div>\n\n <div class=\"mobile-menu-button-container\" *ngIf=\"shellLayout === 'Stacked'\">\n <!-- Mobile menu button -->\n <button type=\"button\"\n (click)=\"mobileMenuExpanded = !mobileMenuExpanded\"\n class=\"mobile-menu-button\"\n aria-controls=\"mobile-menu\"\n [attr.aria-expanded]=\"mobileMenuExpanded\">\n <span class=\"sr-only\">Open main menu</span>\n <!--Heroicon name: outline/menu Menu open: \"hidden\", Menu closed: \"block\"-->\n <svg xmlns=\"http://www.w3.org/2000/svg\"\n fill=\"none\"\n viewBox=\"0 0 24 24\"\n stroke=\"currentColor\"\n aria-hidden=\"true\"\n [class]=\"mobileMenuExpanded ? 'hidden':'block h-6 w-6'\">\n <path stroke-linecap=\"round\"\n stroke-linejoin=\"round\"\n stroke-width=\"2\"\n d=\"M4 6h16M4 12h16M4 18h16\" />\n </svg>\n <!--Heroicon name: outline/x Menu open: \"block\", Menu closed: \"hidden\"-->\n <svg xmlns=\"http://www.w3.org/2000/svg\"\n fill=\"none\"\n viewBox=\"0 0 24 24\"\n stroke=\"currentColor\"\n aria-hidden=\"true\"\n [class]=\"mobileMenuExpanded ? 'block h-6 w-6':'hidden'\">\n <path stroke-linecap=\"round\"\n stroke-linejoin=\"round\"\n stroke-width=\"2\"\n d=\"M6 18L18 6M6 6l12 12\" />\n </svg>\n </button>\n </div>\n\n </div>\n </div>\n </div>\n <!-- Mobile menu, show/hide based on menu state. -->\n <div class=\"mobile-menu-container\" *ngIf=\"mobileMenuExpanded\" id=\"mobile-menu\">\n <lib-nav-links-list\n [links]=\"sectionLinks\"\n [active-fragment]=\"activeFragment\"\n [link-class]=\"'nav-link-mobile'\"\n [link-active-class]=\"'nav-link-mobile-active'\"\n [container-class]=\"'mobile-menu-link-container'\">\n </lib-nav-links-list>\n\n <div *ngIf=\"!user\">\n <a href=\"#\" (click)=\"signin($event)\" class=\"nav-link-mobile\">\n <i class=\"ms-Icon ms-Icon--Signin mr-2\"></i>\u03A3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7\n </a>\n </div>\n\n <div class=\"mobile-menu-user-info-container\" *ngIf=\"user\">\n <div class=\"mobile-menu-user-info-container-inner\">\n <div class=\"flex-shrink-0\">\n <span class=\"mobile-menu-avatar-container\">\n <span class=\"mobile-menu-avatar-name\">{{ this.avatarName }}</span>\n </span>\n </div>\n <div class=\"ml-3\">\n <div class=\"mobile-menu-user-name\">{{ user.profile.name }}</div>\n <div class=\"mobile-menu-user-email\">{{ user.profile.email }}</div>\n </div>\n <!--\n <button class=\"mobile-menu-rounded-button\">\n <span class=\"sr-only\">View notifications</span>\n <svg class=\"mobile-menu-rounded-button-icon-style\"\n xmlns=\"http://www.w3.org/2000/svg\"\n fill=\"none\"\n viewBox=\"0 0 24 24\"\n stroke=\"currentColor\"\n aria-hidden=\"true\">\n <path stroke-linecap=\"round\"\n stroke-linejoin=\"round\"\n stroke-width=\"2\"\n d=\"M15 17h5l-1.405-1.405A2.032 2.032 0 0118 14.158V11a6.002 6.002 0 00-4-5.659V5a2 2 0 10-4 0v.341C7.67 6.165 6 8.388 6 11v3.159c0 .538-.214 1.055-.595 1.436L4 17h5m6 0v1a3 3 0 11-6 0v-1m6 0H9\" />\n </svg>\n </button>\n -->\n </div>\n </div>\n\n <lib-nav-links-list\n [links]=\"links.profile\"\n [active-fragment]=\"activeFragment\"\n [link-class]=\"'nav-link-mobile'\"\n [link-active-class]=\"'nav-link-mobile-active'\"\n [container-class]=\"'mobile-menu-link-container'\">\n </lib-nav-links-list>\n </div>\n</nav>\n" }]
2107
+ }], ctorParameters: function () {
2108
+ return [{ type: i2.AuthService, decorators: [{
2109
+ type: Inject,
2110
+ args: [AuthService]
2111
+ }] }, { type: i1$1.Router, decorators: [{
2112
+ type: Inject,
2113
+ args: [Router]
2114
+ }] }, { type: i1$1.ActivatedRoute, decorators: [{
2115
+ type: Inject,
2116
+ args: [ActivatedRoute]
2117
+ }] }, { type: undefined, decorators: [{
2118
+ type: Inject,
2119
+ args: [SHELL_CONFIG]
2120
+ }] }, { type: undefined, decorators: [{
2121
+ type: Inject,
2122
+ args: [APP_LINKS]
2123
+ }] }];
2124
+ }, propDecorators: { sectionLinksPath: [{
2125
+ type: Input,
2126
+ args: ['section-links']
2127
+ }], profileMenuVisible: [{
2128
+ type: Input,
2129
+ args: ['profile-menu']
2130
+ }], showUserNameOnHeader: [{
2131
+ type: Input,
2132
+ args: ['show-userName']
2133
+ }], showAlerts: [{
2134
+ type: Input,
2135
+ args: ['show-alerts']
2136
+ }], shellLayout: [{
2137
+ type: Input,
2138
+ args: ['shell-layout']
2139
+ }], border: [{
2140
+ type: Input
2141
+ }] } });
2142
+
2143
+ class ShellFooterComponent {
2144
+ constructor(links) {
2145
+ this.links = links;
2146
+ }
2147
+ }
2148
+ ShellFooterComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: ShellFooterComponent, deps: [{ token: APP_LINKS }], target: i0.ɵɵFactoryTarget.Component });
2149
+ ShellFooterComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.0", type: ShellFooterComponent, selector: "lib-shell-footer", ngImport: i0, template: "<footer class=\"shell-footer-component-container\">\n <div class=\"shell-footer-paddings\">\n <div class=\"shell-footer-component-container-inner\">\n <div class=\"shell-footer-sections-container\">\n <div class=\"shell-footer-section\">\n <img class=\"shell-footer-logo-h\" src=\"assets/images/branding/indice.png\" alt=\"INDICE logo\" />\n <nav class=\"mt-4\">\n <ul class=\"space-y-2\">\n <ng-container *ngFor=\"let link of links.brand | async\">\n <li>\n <a [href]=\"link.path\" class=\"shell-footer-link\">{{ link.text }}</a>\n </li>\n </ng-container>\n </ul>\n </nav>\n </div>\n <div class=\"shell-footer-section-links\">\n <h5 class=\"shell-footer-section-title\">Legal</h5>\n <nav class=\"mt-4\">\n <ul class=\"grid lg:grid-cols-2\">\n <ng-container *ngFor=\"let link of links.legal | async\">\n <li class=\"mb-2\">\n <a [href]=\"link.path\" class=\"shell-footer-link\">{{ link.text }}</a>\n </li>\n </ng-container>\n </ul>\n </nav>\n </div>\n <div class=\"shell-footer-section-links\">\n <h5 class=\"shell-footer-section-title\">Follow us</h5>\n <nav class=\"mt-4\">\n <ul class=\"grid lg:grid-cols-2\">\n <li class=\"mb-2\">\n <a href=\"#\" class=\"shell-footer-social\">\n <svg class=\"shell-footer-social-icon\" aria-hidden=\"true\" fill=\"currentColor\" viewBox=\"0 0 24 24\">\n <path d=\"M8.29 20.251c7.547 0 11.675-6.253 11.675-11.675 0-.178 0-.355-.012-.53A8.348 8.348 0 0022 5.92a8.19 8.19 0 01-2.357.646 4.118 4.118 0 001.804-2.27 8.224 8.224 0 01-2.605.996 4.107 4.107 0 00-6.993 3.743 11.65 11.65 0 01-8.457-4.287 4.106 4.106 0 001.27 5.477A4.072 4.072 0 012.8 9.713v.052a4.105 4.105 0 003.292 4.022 4.095 4.095 0 01-1.853.07 4.108 4.108 0 003.834 2.85A8.233 8.233 0 012 18.407a11.616 11.616 0 006.29 1.84\"/>\n </svg>\n <span> Twitter </span>\n </a>\n </li>\n <li class=\"mb-2\">\n <a href=\"#\" class=\"shell-footer-social\">\n <svg class=\"shell-footer-social-icon\" aria-hidden=\"true\" fill=\"currentColor\" viewBox=\"0 0 24 24\">\n <path fill-rule=\"evenodd\" d=\"M12.315 2c2.43 0 2.784.013 3.808.06 1.064.049 1.791.218 2.427.465a4.902 4.902 0 011.772 1.153 4.902 4.902 0 011.153 1.772c.247.636.416 1.363.465 2.427.048 1.067.06 1.407.06 4.123v.08c0 2.643-.012 2.987-.06 4.043-.049 1.064-.218 1.791-.465 2.427a4.902 4.902 0 01-1.153 1.772 4.902 4.902 0 01-1.772 1.153c-.636.247-1.363.416-2.427.465-1.067.048-1.407.06-4.123.06h-.08c-2.643 0-2.987-.012-4.043-.06-1.064-.049-1.791-.218-2.427-.465a4.902 4.902 0 01-1.772-1.153 4.902 4.902 0 01-1.153-1.772c-.247-.636-.416-1.363-.465-2.427-.047-1.024-.06-1.379-.06-3.808v-.63c0-2.43.013-2.784.06-3.808.049-1.064.218-1.791.465-2.427a4.902 4.902 0 011.153-1.772A4.902 4.902 0 015.45 2.525c.636-.247 1.363-.416 2.427-.465C8.901 2.013 9.256 2 11.685 2h.63zm-.081 1.802h-.468c-2.456 0-2.784.011-3.807.058-.975.045-1.504.207-1.857.344-.467.182-.8.398-1.15.748-.35.35-.566.683-.748 1.15-.137.353-.3.882-.344 1.857-.047 1.023-.058 1.351-.058 3.807v.468c0 2.456.011 2.784.058 3.807.045.975.207 1.504.344 1.857.182.466.399.8.748 1.15.35.35.683.566 1.15.748.353.137.882.3 1.857.344 1.054.048 1.37.058 4.041.058h.08c2.597 0 2.917-.01 3.96-.058.976-.045 1.505-.207 1.858-.344.466-.182.8-.398 1.15-.748.35-.35.566-.683.748-1.15.137-.353.3-.882.344-1.857.048-1.055.058-1.37.058-4.041v-.08c0-2.597-.01-2.917-.058-3.96-.045-.976-.207-1.505-.344-1.858a3.097 3.097 0 00-.748-1.15 3.098 3.098 0 00-1.15-.748c-.353-.137-.882-.3-1.857-.344-1.023-.047-1.351-.058-3.807-.058zM12 6.865a5.135 5.135 0 110 10.27 5.135 5.135 0 010-10.27zm0 1.802a3.333 3.333 0 100 6.666 3.333 3.333 0 000-6.666zm5.338-3.205a1.2 1.2 0 110 2.4 1.2 1.2 0 010-2.4z\" clip-rule=\"evenodd\"/>\n </svg>\n <span> Instagram </span>\n </a>\n </li>\n <li class=\"mb-2\">\n <a href=\"#\" class=\"shell-footer-social\">\n <svg class=\"shell-footer-social-icon\" aria-hidden=\"true\" fill=\"currentColor\" viewBox=\"0 0 24 24\" >\n <path fill-rule=\"evenodd\" d=\"M22 12c0-5.523-4.477-10-10-10S2 6.477 2 12c0 4.991 3.657 9.128 8.438 9.878v-6.987h-2.54V12h2.54V9.797c0-2.506 1.492-3.89 3.777-3.89 1.094 0 2.238.195 2.238.195v2.46h-1.26c-1.243 0-1.63.771-1.63 1.562V12h2.773l-.443 2.89h-2.33v6.988C18.343 21.128 22 16.991 22 12z\" clip-rule=\"evenodd\"/>\n </svg>\n <span> Facebook </span>\n </a>\n </li>\n </ul>\n </nav>\n </div>\n </div>\n </div>\n <div class=\"shell-footer-copyright\">\n <!--<nav class=\"flex flex-wrap justify-center space-x-6\">\n <a href=\"#\" class=\"font-normal text-sm hover:text-gray-100 mb-2\">Cookie settings</a>\n </nav>-->\n <p class=\"text-sm text-center sm:text-right\">\n \u00A9 2021 INDICE. All rights reserved.\n </p>\n </div>\n </div>\n</footer>\n", dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "pipe", type: i1.AsyncPipe, name: "async" }] });
2150
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: ShellFooterComponent, decorators: [{
2151
+ type: Component,
2152
+ args: [{ selector: 'lib-shell-footer', template: "<footer class=\"shell-footer-component-container\">\n <div class=\"shell-footer-paddings\">\n <div class=\"shell-footer-component-container-inner\">\n <div class=\"shell-footer-sections-container\">\n <div class=\"shell-footer-section\">\n <img class=\"shell-footer-logo-h\" src=\"assets/images/branding/indice.png\" alt=\"INDICE logo\" />\n <nav class=\"mt-4\">\n <ul class=\"space-y-2\">\n <ng-container *ngFor=\"let link of links.brand | async\">\n <li>\n <a [href]=\"link.path\" class=\"shell-footer-link\">{{ link.text }}</a>\n </li>\n </ng-container>\n </ul>\n </nav>\n </div>\n <div class=\"shell-footer-section-links\">\n <h5 class=\"shell-footer-section-title\">Legal</h5>\n <nav class=\"mt-4\">\n <ul class=\"grid lg:grid-cols-2\">\n <ng-container *ngFor=\"let link of links.legal | async\">\n <li class=\"mb-2\">\n <a [href]=\"link.path\" class=\"shell-footer-link\">{{ link.text }}</a>\n </li>\n </ng-container>\n </ul>\n </nav>\n </div>\n <div class=\"shell-footer-section-links\">\n <h5 class=\"shell-footer-section-title\">Follow us</h5>\n <nav class=\"mt-4\">\n <ul class=\"grid lg:grid-cols-2\">\n <li class=\"mb-2\">\n <a href=\"#\" class=\"shell-footer-social\">\n <svg class=\"shell-footer-social-icon\" aria-hidden=\"true\" fill=\"currentColor\" viewBox=\"0 0 24 24\">\n <path d=\"M8.29 20.251c7.547 0 11.675-6.253 11.675-11.675 0-.178 0-.355-.012-.53A8.348 8.348 0 0022 5.92a8.19 8.19 0 01-2.357.646 4.118 4.118 0 001.804-2.27 8.224 8.224 0 01-2.605.996 4.107 4.107 0 00-6.993 3.743 11.65 11.65 0 01-8.457-4.287 4.106 4.106 0 001.27 5.477A4.072 4.072 0 012.8 9.713v.052a4.105 4.105 0 003.292 4.022 4.095 4.095 0 01-1.853.07 4.108 4.108 0 003.834 2.85A8.233 8.233 0 012 18.407a11.616 11.616 0 006.29 1.84\"/>\n </svg>\n <span> Twitter </span>\n </a>\n </li>\n <li class=\"mb-2\">\n <a href=\"#\" class=\"shell-footer-social\">\n <svg class=\"shell-footer-social-icon\" aria-hidden=\"true\" fill=\"currentColor\" viewBox=\"0 0 24 24\">\n <path fill-rule=\"evenodd\" d=\"M12.315 2c2.43 0 2.784.013 3.808.06 1.064.049 1.791.218 2.427.465a4.902 4.902 0 011.772 1.153 4.902 4.902 0 011.153 1.772c.247.636.416 1.363.465 2.427.048 1.067.06 1.407.06 4.123v.08c0 2.643-.012 2.987-.06 4.043-.049 1.064-.218 1.791-.465 2.427a4.902 4.902 0 01-1.153 1.772 4.902 4.902 0 01-1.772 1.153c-.636.247-1.363.416-2.427.465-1.067.048-1.407.06-4.123.06h-.08c-2.643 0-2.987-.012-4.043-.06-1.064-.049-1.791-.218-2.427-.465a4.902 4.902 0 01-1.772-1.153 4.902 4.902 0 01-1.153-1.772c-.247-.636-.416-1.363-.465-2.427-.047-1.024-.06-1.379-.06-3.808v-.63c0-2.43.013-2.784.06-3.808.049-1.064.218-1.791.465-2.427a4.902 4.902 0 011.153-1.772A4.902 4.902 0 015.45 2.525c.636-.247 1.363-.416 2.427-.465C8.901 2.013 9.256 2 11.685 2h.63zm-.081 1.802h-.468c-2.456 0-2.784.011-3.807.058-.975.045-1.504.207-1.857.344-.467.182-.8.398-1.15.748-.35.35-.566.683-.748 1.15-.137.353-.3.882-.344 1.857-.047 1.023-.058 1.351-.058 3.807v.468c0 2.456.011 2.784.058 3.807.045.975.207 1.504.344 1.857.182.466.399.8.748 1.15.35.35.683.566 1.15.748.353.137.882.3 1.857.344 1.054.048 1.37.058 4.041.058h.08c2.597 0 2.917-.01 3.96-.058.976-.045 1.505-.207 1.858-.344.466-.182.8-.398 1.15-.748.35-.35.566-.683.748-1.15.137-.353.3-.882.344-1.857.048-1.055.058-1.37.058-4.041v-.08c0-2.597-.01-2.917-.058-3.96-.045-.976-.207-1.505-.344-1.858a3.097 3.097 0 00-.748-1.15 3.098 3.098 0 00-1.15-.748c-.353-.137-.882-.3-1.857-.344-1.023-.047-1.351-.058-3.807-.058zM12 6.865a5.135 5.135 0 110 10.27 5.135 5.135 0 010-10.27zm0 1.802a3.333 3.333 0 100 6.666 3.333 3.333 0 000-6.666zm5.338-3.205a1.2 1.2 0 110 2.4 1.2 1.2 0 010-2.4z\" clip-rule=\"evenodd\"/>\n </svg>\n <span> Instagram </span>\n </a>\n </li>\n <li class=\"mb-2\">\n <a href=\"#\" class=\"shell-footer-social\">\n <svg class=\"shell-footer-social-icon\" aria-hidden=\"true\" fill=\"currentColor\" viewBox=\"0 0 24 24\" >\n <path fill-rule=\"evenodd\" d=\"M22 12c0-5.523-4.477-10-10-10S2 6.477 2 12c0 4.991 3.657 9.128 8.438 9.878v-6.987h-2.54V12h2.54V9.797c0-2.506 1.492-3.89 3.777-3.89 1.094 0 2.238.195 2.238.195v2.46h-1.26c-1.243 0-1.63.771-1.63 1.562V12h2.773l-.443 2.89h-2.33v6.988C18.343 21.128 22 16.991 22 12z\" clip-rule=\"evenodd\"/>\n </svg>\n <span> Facebook </span>\n </a>\n </li>\n </ul>\n </nav>\n </div>\n </div>\n </div>\n <div class=\"shell-footer-copyright\">\n <!--<nav class=\"flex flex-wrap justify-center space-x-6\">\n <a href=\"#\" class=\"font-normal text-sm hover:text-gray-100 mb-2\">Cookie settings</a>\n </nav>-->\n <p class=\"text-sm text-center sm:text-right\">\n \u00A9 2021 INDICE. All rights reserved.\n </p>\n </div>\n </div>\n</footer>\n" }]
2153
+ }], ctorParameters: function () {
2154
+ return [{ type: undefined, decorators: [{
2155
+ type: Inject,
2156
+ args: [APP_LINKS]
2157
+ }] }];
2158
+ } });
2159
+
2160
+ class ShellSidebarComponent {
2161
+ constructor(router, route, links) {
2162
+ this.router = router;
2163
+ this.route = route;
2164
+ this.links = links;
2165
+ // tslint:disable-next-line:no-input-rename
2166
+ this.sectionLinksPath = 'main';
2167
+ this.sectionLinks = of([]);
2168
+ // tslint:disable-next-line:no-input-rename
2169
+ this.shellConfig = undefined;
2170
+ this.activeFragment = null;
2171
+ }
2172
+ ngOnInit() {
2173
+ this.activeFragment = this.route.fragment.pipe(share());
2174
+ this.sectionLinks = this.links[this.sectionLinksPath];
2175
+ }
2176
+ }
2177
+ ShellSidebarComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: ShellSidebarComponent, deps: [{ token: Router }, { token: ActivatedRoute }, { token: APP_LINKS }], target: i0.ɵɵFactoryTarget.Component });
2178
+ ShellSidebarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.0", type: ShellSidebarComponent, selector: "lib-shell-sidebar", inputs: { sectionLinksPath: ["section-links", "sectionLinksPath"], shellConfig: ["config", "shellConfig"] }, ngImport: i0, template: "<!-- Sidebar component, swap this element with another sidebar if you like -->\n<div class=\"flex w-full flex-col h-full min-h-0 bg-gray-800\">\n <div class=\"flex items-center h-16 flex-shrink-0 px-4 bg-gray-900\">\n <!-- <img class=\"h-8 w-auto\" src=\"https://tailwindui.com/img/logos/workflow-logo-indigo-500-mark-white-text.svg\" alt=\"Workflow\"> -->\n <a href=\"#\" [routerLink]=\"['/']\"><img class=\"app-logo\" [src]=\"shellConfig?.appLogo\" [alt]=\"shellConfig?.appLogoAlt\" /></a>\n </div>\n <div class=\"pt-4 px-2 sidebar\">\n <lib-nav-links-list\n [show-icons]=\"true\"\n [links]=\"sectionLinks\"\n [active-fragment]=\"activeFragment\"\n [link-class]=\"'sidebar nav-link'\"\n [link-active-class]=\"'sidebar nav-link-active'\">\n </lib-nav-links-list>\n </div>\n</div>\n", dependencies: [{ kind: "directive", type: i1$1.RouterLinkWithHref, selector: "a[routerLink],area[routerLink]", inputs: ["target", "queryParams", "fragment", "queryParamsHandling", "preserveFragment", "skipLocationChange", "replaceUrl", "state", "relativeTo", "routerLink"] }, { kind: "component", type: NavLinksListComponent, selector: "lib-nav-links-list", inputs: ["links", "active-fragment", "link-class", "link-active-class", "container-class", "show-icons"] }] });
2179
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: ShellSidebarComponent, decorators: [{
2180
+ type: Component,
2181
+ args: [{ selector: 'lib-shell-sidebar', template: "<!-- Sidebar component, swap this element with another sidebar if you like -->\n<div class=\"flex w-full flex-col h-full min-h-0 bg-gray-800\">\n <div class=\"flex items-center h-16 flex-shrink-0 px-4 bg-gray-900\">\n <!-- <img class=\"h-8 w-auto\" src=\"https://tailwindui.com/img/logos/workflow-logo-indigo-500-mark-white-text.svg\" alt=\"Workflow\"> -->\n <a href=\"#\" [routerLink]=\"['/']\"><img class=\"app-logo\" [src]=\"shellConfig?.appLogo\" [alt]=\"shellConfig?.appLogoAlt\" /></a>\n </div>\n <div class=\"pt-4 px-2 sidebar\">\n <lib-nav-links-list\n [show-icons]=\"true\"\n [links]=\"sectionLinks\"\n [active-fragment]=\"activeFragment\"\n [link-class]=\"'sidebar nav-link'\"\n [link-active-class]=\"'sidebar nav-link-active'\">\n </lib-nav-links-list>\n </div>\n</div>\n" }]
2182
+ }], ctorParameters: function () {
2183
+ return [{ type: i1$1.Router, decorators: [{
2184
+ type: Inject,
2185
+ args: [Router]
2186
+ }] }, { type: i1$1.ActivatedRoute, decorators: [{
2187
+ type: Inject,
2188
+ args: [ActivatedRoute]
2189
+ }] }, { type: undefined, decorators: [{
2190
+ type: Inject,
2191
+ args: [APP_LINKS]
2192
+ }] }];
2193
+ }, propDecorators: { sectionLinksPath: [{
2194
+ type: Input,
2195
+ args: ['section-links']
2196
+ }], shellConfig: [{
2197
+ type: Input,
2198
+ args: ['config']
2199
+ }] } });
2200
+
2201
+ class ShellLayoutComponent {
2202
+ constructor(document, router, location, config, componentLoaderFactory) {
2203
+ this.document = document;
2204
+ this.router = router;
2205
+ this.location = location;
2206
+ this.config = config;
2207
+ this.componentLoaderFactory = componentLoaderFactory;
2208
+ this.dynamicComponentHosts = null;
2209
+ this.showRightPaneSM = false;
2210
+ this.routerSub$ = null;
2211
+ this.activeConfig = new DefaultShellConfig();
2212
+ this.loaded = false;
2213
+ this.hideSidebar = false;
2214
+ if (!config) {
2215
+ config = new DefaultShellConfig();
2216
+ }
2217
+ this.activeConfig = config;
2218
+ }
2219
+ ngAfterViewChecked() {
2220
+ setTimeout(() => { this.loaded = true; }, 200);
2221
+ }
2222
+ ngOnInit() {
2223
+ this.routerSub$ = this.router.events.pipe(filter((event) => event instanceof ActivationStart)).subscribe((e) => {
2224
+ var _a, _b;
2225
+ // console.log('ShellLayoutComponent ActivationStart', e);
2226
+ if (e === null || e === void 0 ? void 0 : e.snapshot) {
2227
+ // console.log('ShellLayoutComponent ActivationStart snapshot', (e as ActivationStart)?.snapshot);
2228
+ if ((_a = e === null || e === void 0 ? void 0 : e.snapshot) === null || _a === void 0 ? void 0 : _a.data) {
2229
+ // console.log('ShellLayoutComponent ActivationStart snapshot data', (e as ActivationStart)?.snapshot.data);
2230
+ if ((_b = e === null || e === void 0 ? void 0 : e.snapshot) === null || _b === void 0 ? void 0 : _b.data.shell) {
2231
+ // console.log('ShellLayoutComponent ActivationStart snapshot data shell params',
2232
+ // (e as ActivationStart)?.snapshot.data.shell);
2233
+ this.activeConfig = e === null || e === void 0 ? void 0 : e.snapshot.data.shell;
2234
+ // console.log('ShellLayoutComponent activeConfig from route: ', this.activeConfig);
2235
+ if (this.activeConfig.customHeaderComponent) {
2236
+ this.initCustomComponents();
2237
+ }
2238
+ }
2239
+ else {
2240
+ this.activeConfig = this.config ? this.config : new DefaultShellConfig();
2241
+ // console.log('ShellLayoutComponent default activeConfig: ', this.activeConfig);
2242
+ }
2243
+ }
2244
+ }
2245
+ });
2246
+ }
2247
+ ngAfterViewInit() {
2248
+ this.initCustomComponents();
2249
+ }
2250
+ initCustomComponents() {
2251
+ if (this.dynamicComponentHosts && this.dynamicComponentHosts.length > 0) {
2252
+ this.loadCustomComponent(this.dynamicComponentHosts.find((_) => _.hostName === 'Header'));
2253
+ // since you're not using it...
2254
+ // this.loadCustomComponent(this.dynamicComponentHosts.find(_ => _.hostName === 'Footer'));
2255
+ }
2256
+ }
2257
+ ngOnDestroy() {
2258
+ if (this.routerSub$) {
2259
+ this.routerSub$.unsubscribe();
2260
+ }
2261
+ }
2262
+ loadCustomComponent(host) {
2263
+ if (host) {
2264
+ const viewContainerRef = host.viewContainerRef;
2265
+ if (viewContainerRef && this.activeConfig.customHeaderComponent) {
2266
+ const clf = this.componentLoaderFactory.createLoader(viewContainerRef);
2267
+ const headerCompRef = clf.attach(this.activeConfig.customHeaderComponent).to(viewContainerRef.element).show();
2268
+ }
2269
+ }
2270
+ }
2271
+ }
2272
+ ShellLayoutComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: ShellLayoutComponent, deps: [{ token: DOCUMENT }, { token: i1$1.Router }, { token: i1.Location }, { token: SHELL_CONFIG }, { token: ComponentLoaderFactory }], target: i0.ɵɵFactoryTarget.Component });
2273
+ ShellLayoutComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.0", type: ShellLayoutComponent, selector: "lib-shell-layout", viewQueries: [{ propertyName: "dynamicComponentHosts", predicate: DynamicComponentHostDirective, descendants: true }], ngImport: i0, template: "<div *ngIf=\"loaded && (activeConfig.layout === 'Stacked' || !activeConfig.layout)\" [style.display]=\"!loaded ? 'none':'block'\" class=\"shell-container active-side-pane\">\n\n <div class=\"shell-header-container\" *ngIf=\"activeConfig.showHeader\">\n <div [class]=\"activeConfig.fluid ? 'shell-header-container-inner-fluid' : 'shell-header-container-inner'\">\n <ng-container *ngIf=\"activeConfig.customHeaderComponent\">\n <div appDynamicComponentHost =\"Header\"></div>\n </ng-container>\n <lib-shell-header *ngIf=\"!activeConfig.customHeaderComponent\" [show-userName]=\"activeConfig.showUserNameOnHeader\"\n [show-alerts]=\"activeConfig.showAlertsOnHeader\">\n </lib-shell-header>\n </div>\n </div>\n\n <main [class]=\"activeConfig.showHeader ? 'shell-content-container' : 'shell-content-container-no-header'\">\n <div [class]=\"activeConfig.fluid ? 'shell-content-container-inner-fluid' : 'shell-content-container-inner'\">\n <router-outlet *ngIf=\"loaded && (activeConfig.layout === 'Stacked' || !activeConfig.layout)\"></router-outlet>\n </div>\n </main>\n\n <div class=\"shell-footer-container\" *ngIf=\"activeConfig.showFooter\">\n <div [class]=\"activeConfig.fluid ? 'shell-footer-container-inner-fluid' : 'shell-footer-container-inner'\">\n <ng-container *ngIf=\"activeConfig.customFooterComponent\">\n <div appDynamicComponentHost hostName=\"Footer\"></div>\n </ng-container>\n <lib-shell-footer *ngIf=\"!activeConfig.customFooterComponent\"></lib-shell-footer>\n </div>\n </div>\n\n <lib-side-pane #rightPane>\n <router-outlet name=\"rightpane\" (activate)=\"rightPane.onSidePaneActivated($event)\" (deactivate)=\"rightPane.onSidePaneDeactivated($event)\"></router-outlet>\n </lib-side-pane>\n\n <lib-toaster-container></lib-toaster-container>\n</div>\n\n<!-- SIDEBAR LAYOUT -->\n\n<div *ngIf=\"loaded && activeConfig.layout === 'Sidebar'\" [style.display]=\"!loaded ? 'none':'block'\" class=\"sidebar shell-container active-side-pane\">\n\n <!-- Static sidebar for desktop -->\n <div class=\"hidden w-0 sm:w-64 flex-col inset-y-0 bg-gray-800\" [class.hidden]=\"hideSidebar\" [class.fixed]=\"!hideSidebar\">\n <lib-shell-sidebar [config]=\"activeConfig\" ></lib-shell-sidebar>\n </div>\n\n <div class=\"flex flex-col\" [class.pl-64]=\"!hideSidebar\">\n <div class=\"sticky top-0 z-10 flex-shrink-0 flex h-16 bg-gray-800\">\n\n <button type=\"button\" class=\"hidden sm:block px-4 border-0 text-white focus:outline-none\" (click)=\"hideSidebar = !hideSidebar\">\n <span class=\"sr-only\">Open sidebar</span>\n <!-- Heroicon name: outline/menu-alt-2 -->\n <svg class=\"h-6 w-6\" xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 24 24\" stroke-width=\"2\" stroke=\"currentColor\" aria-hidden=\"true\">\n <path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M4 6h16M4 12h16M4 18h7\" />\n </svg>\n </button>\n\n <button type=\"button\" class=\"block sm:hidden px-4 border-0 text-gray-200 focus:outline-none\" (click)=\"hideSidebar = !hideSidebar\">\n <span class=\"sr-only\">Open sidebar</span>\n <!-- Heroicon name: outline/menu-alt-2 --> 111\n <svg class=\"h-6 w-6\" xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 24 24\" stroke-width=\"2\" stroke=\"currentColor\" aria-hidden=\"true\">\n <path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M4 6h16M4 12h16M4 18h7\" />\n </svg>\n </button>\n\n <div class=\"flex-1\">\n <div class=\"shell-header-container\">\n <lib-shell-header [shell-layout]=\"activeConfig.layout\" [show-userName]=\"activeConfig.showUserNameOnHeader\" [show-alerts]=\"activeConfig.showAlertsOnHeader\"></lib-shell-header>\n </div>\n </div>\n </div>\n\n <main class=\"shell-content-container-sidebar\">\n <div class=\"shell-content-container-inner\">\n <router-outlet *ngIf=\"loaded && activeConfig.layout === 'Sidebar'\"></router-outlet>\n </div>\n </main>\n </div>\n\n <lib-side-pane #rightPane>\n <router-outlet name=\"rightpane\" (activate)=\"rightPane.onSidePaneActivated($event)\" (deactivate)=\"rightPane.onSidePaneDeactivated($event)\"></router-outlet>\n </lib-side-pane>\n\n <lib-toaster-container></lib-toaster-container>\n\n</div>\n", dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1$1.RouterOutlet, selector: "router-outlet", outputs: ["activate", "deactivate", "attach", "detach"], exportAs: ["outlet"] }, { kind: "directive", type: DynamicComponentHostDirective, selector: "[appDynamicComponentHost]", inputs: ["hostName"] }, { kind: "component", type: SidePaneComponent, selector: "lib-side-pane", inputs: ["visible"], outputs: ["onComplete"] }, { kind: "component", type: ToasterContainerComponent, selector: "lib-toaster-container" }, { kind: "component", type: ShellHeaderComponent, selector: "lib-shell-header", inputs: ["section-links", "profile-menu", "show-userName", "show-alerts", "shell-layout", "border"] }, { kind: "component", type: ShellFooterComponent, selector: "lib-shell-footer" }, { kind: "component", type: ShellSidebarComponent, selector: "lib-shell-sidebar", inputs: ["section-links", "config"] }] });
2274
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: ShellLayoutComponent, decorators: [{
2275
+ type: Component,
2276
+ args: [{ selector: 'lib-shell-layout', template: "<div *ngIf=\"loaded && (activeConfig.layout === 'Stacked' || !activeConfig.layout)\" [style.display]=\"!loaded ? 'none':'block'\" class=\"shell-container active-side-pane\">\n\n <div class=\"shell-header-container\" *ngIf=\"activeConfig.showHeader\">\n <div [class]=\"activeConfig.fluid ? 'shell-header-container-inner-fluid' : 'shell-header-container-inner'\">\n <ng-container *ngIf=\"activeConfig.customHeaderComponent\">\n <div appDynamicComponentHost =\"Header\"></div>\n </ng-container>\n <lib-shell-header *ngIf=\"!activeConfig.customHeaderComponent\" [show-userName]=\"activeConfig.showUserNameOnHeader\"\n [show-alerts]=\"activeConfig.showAlertsOnHeader\">\n </lib-shell-header>\n </div>\n </div>\n\n <main [class]=\"activeConfig.showHeader ? 'shell-content-container' : 'shell-content-container-no-header'\">\n <div [class]=\"activeConfig.fluid ? 'shell-content-container-inner-fluid' : 'shell-content-container-inner'\">\n <router-outlet *ngIf=\"loaded && (activeConfig.layout === 'Stacked' || !activeConfig.layout)\"></router-outlet>\n </div>\n </main>\n\n <div class=\"shell-footer-container\" *ngIf=\"activeConfig.showFooter\">\n <div [class]=\"activeConfig.fluid ? 'shell-footer-container-inner-fluid' : 'shell-footer-container-inner'\">\n <ng-container *ngIf=\"activeConfig.customFooterComponent\">\n <div appDynamicComponentHost hostName=\"Footer\"></div>\n </ng-container>\n <lib-shell-footer *ngIf=\"!activeConfig.customFooterComponent\"></lib-shell-footer>\n </div>\n </div>\n\n <lib-side-pane #rightPane>\n <router-outlet name=\"rightpane\" (activate)=\"rightPane.onSidePaneActivated($event)\" (deactivate)=\"rightPane.onSidePaneDeactivated($event)\"></router-outlet>\n </lib-side-pane>\n\n <lib-toaster-container></lib-toaster-container>\n</div>\n\n<!-- SIDEBAR LAYOUT -->\n\n<div *ngIf=\"loaded && activeConfig.layout === 'Sidebar'\" [style.display]=\"!loaded ? 'none':'block'\" class=\"sidebar shell-container active-side-pane\">\n\n <!-- Static sidebar for desktop -->\n <div class=\"hidden w-0 sm:w-64 flex-col inset-y-0 bg-gray-800\" [class.hidden]=\"hideSidebar\" [class.fixed]=\"!hideSidebar\">\n <lib-shell-sidebar [config]=\"activeConfig\" ></lib-shell-sidebar>\n </div>\n\n <div class=\"flex flex-col\" [class.pl-64]=\"!hideSidebar\">\n <div class=\"sticky top-0 z-10 flex-shrink-0 flex h-16 bg-gray-800\">\n\n <button type=\"button\" class=\"hidden sm:block px-4 border-0 text-white focus:outline-none\" (click)=\"hideSidebar = !hideSidebar\">\n <span class=\"sr-only\">Open sidebar</span>\n <!-- Heroicon name: outline/menu-alt-2 -->\n <svg class=\"h-6 w-6\" xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 24 24\" stroke-width=\"2\" stroke=\"currentColor\" aria-hidden=\"true\">\n <path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M4 6h16M4 12h16M4 18h7\" />\n </svg>\n </button>\n\n <button type=\"button\" class=\"block sm:hidden px-4 border-0 text-gray-200 focus:outline-none\" (click)=\"hideSidebar = !hideSidebar\">\n <span class=\"sr-only\">Open sidebar</span>\n <!-- Heroicon name: outline/menu-alt-2 --> 111\n <svg class=\"h-6 w-6\" xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 24 24\" stroke-width=\"2\" stroke=\"currentColor\" aria-hidden=\"true\">\n <path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M4 6h16M4 12h16M4 18h7\" />\n </svg>\n </button>\n\n <div class=\"flex-1\">\n <div class=\"shell-header-container\">\n <lib-shell-header [shell-layout]=\"activeConfig.layout\" [show-userName]=\"activeConfig.showUserNameOnHeader\" [show-alerts]=\"activeConfig.showAlertsOnHeader\"></lib-shell-header>\n </div>\n </div>\n </div>\n\n <main class=\"shell-content-container-sidebar\">\n <div class=\"shell-content-container-inner\">\n <router-outlet *ngIf=\"loaded && activeConfig.layout === 'Sidebar'\"></router-outlet>\n </div>\n </main>\n </div>\n\n <lib-side-pane #rightPane>\n <router-outlet name=\"rightpane\" (activate)=\"rightPane.onSidePaneActivated($event)\" (deactivate)=\"rightPane.onSidePaneDeactivated($event)\"></router-outlet>\n </lib-side-pane>\n\n <lib-toaster-container></lib-toaster-container>\n\n</div>\n" }]
2277
+ }], ctorParameters: function () {
2278
+ return [{ type: undefined, decorators: [{
2279
+ type: Inject,
2280
+ args: [DOCUMENT]
2281
+ }] }, { type: i1$1.Router }, { type: i1.Location }, { type: undefined, decorators: [{
2282
+ type: Inject,
2283
+ args: [SHELL_CONFIG]
2284
+ }] }, { type: ComponentLoaderFactory }];
2285
+ }, propDecorators: { dynamicComponentHosts: [{
2286
+ type: ViewChildren,
2287
+ args: [DynamicComponentHostDirective]
2288
+ }] } });
2289
+
2290
+ class ViewLayoutComponent {
2291
+ constructor(route$, router$) {
2292
+ this.route$ = route$;
2293
+ this.router$ = router$;
2294
+ // tslint:disable-next-line:no-input-rename
2295
+ this.header = true;
2296
+ this.fluid = false;
2297
+ this.title = 'no title';
2298
+ this.icon = null;
2299
+ this.actions = null;
2300
+ this.busy = false;
2301
+ // tslint:disable-next-line:no-input-rename
2302
+ this.searchPlaceholder = 'αναζήτηση';
2303
+ this.view = null;
2304
+ // tslint:disable-next-line:no-input-rename
2305
+ this.metaItems = [];
2306
+ // tslint:disable-next-line:no-output-on-prefix
2307
+ this.onAction = new EventEmitter();
2308
+ // tslint:disable-next-line:no-output-on-prefix
2309
+ this.onSearch = new EventEmitter();
2310
+ }
2311
+ ngOnInit() {
2312
+ var _a;
2313
+ if ((_a = this.searchInput$) === null || _a === void 0 ? void 0 : _a.nativeElement) {
2314
+ fromEvent(this.searchInput$.nativeElement, 'keyup').pipe(map((event) => {
2315
+ return event.target.value; // Get input value.
2316
+ }), filter(inputValue => inputValue.length >= 3 || inputValue.length === 0),
2317
+ // If character length greater than minimumSearchCharacters setting.
2318
+ debounceTime(1000), // Time in milliseconds between key events.
2319
+ distinctUntilChanged() // If previous query is different from current.
2320
+ ).subscribe();
2321
+ }
2322
+ }
2323
+ emitActionClick(action) {
2324
+ this.onAction.emit(action);
2325
+ }
2326
+ routerLinkActionClick(action) {
2327
+ // console.log('routerLinkActionClick', action);
2328
+ if (action.outlet) {
2329
+ this.router$.navigate(['', { outlets: { rightpane: action.link } }]);
2330
+ }
2331
+ else {
2332
+ this.router$.navigate([action.link]);
2333
+ }
2334
+ }
2335
+ searchActionClick(action, text) {
2336
+ this.onSearch.emit(text);
2337
+ }
2338
+ searchActionType(text) {
2339
+ var _a;
2340
+ this.onSearch.emit((_a = this.searchInput$) === null || _a === void 0 ? void 0 : _a.nativeElement.value);
2341
+ }
2342
+ handleClear(event) {
2343
+ var _a;
2344
+ console.log('handle clear!!!');
2345
+ event.stopPropagation();
2346
+ this.onSearch.emit((_a = event.target) === null || _a === void 0 ? void 0 : _a.value);
2347
+ }
2348
+ switchViewActionClick(action) {
2349
+ // console.log('switchViewActionClick', action);
2350
+ this.view = action.param;
2351
+ if (action && action.param) {
2352
+ this.router$.navigate([], { queryParams: { view: action.param }, queryParamsHandling: 'merge', skipLocationChange: false });
2353
+ }
2354
+ }
2355
+ }
2356
+ ViewLayoutComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: ViewLayoutComponent, deps: [{ token: i1$1.ActivatedRoute }, { token: i1$1.Router }], target: i0.ɵɵFactoryTarget.Component });
2357
+ ViewLayoutComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.0", type: ViewLayoutComponent, selector: "lib-view-layout", inputs: { header: ["show-header", "header"], fluid: "fluid", title: "title", icon: "icon", actions: "actions", busy: "busy", searchPlaceholder: ["search-placeholder", "searchPlaceholder"], view: "view", metaItems: ["meta-items", "metaItems"] }, outputs: { onAction: "onAction", onSearch: "onSearch" }, viewQueries: [{ propertyName: "searchInput$", first: true, predicate: ["search"], descendants: true }], ngImport: i0, template: "<header *ngIf=\"header\" class=\"view-layout-paddings\">\n\n <div class=\"view-layout-title-container\">\n\n <div class=\"view-layout-title-container-inner\">\n <div class=\"flex items-center\">\n <i *ngIf=\"icon\" [class]=\"icon + ' title-icon'\" aria-hidden=\"true\"></i>\n <h1 [class]=\"busy ? 'view-layout-title-busy' : 'view-layout-title'\">{{title}}</h1>\n </div>\n <div *ngIf=\"metaItems && metaItems.length > 0\" class=\"meta-container\">\n <ng-container *ngFor=\"let meta of metaItems\">\n <div class=\"meta-item-container\">\n <i *ngIf=\"meta.icon\" [class]=\"meta.icon + ' meta-icon'\" aria-hidden=\"true\"></i>\n <span class=\"meta-text\">{{meta.text}}</span>\n </div>\n </ng-container>\n </div>\n </div>\n\n <div class=\"flex items-center justify-end\">\n <ng-container *ngFor=\"let action of actions\" [ngSwitch]=\"action.type\">\n\n <ng-container *ngSwitchCase=\"'switch-view'\">\n <button [disabled]=\"view === action.param\" type=\"button\" href=\"#\" class=\"ml-1 disabled:opacity-50 btn-view-header\" (click)=\"switchViewActionClick(action)\">\n <span class=\"inline-block relative\">\n <i [class]=\"action.icon\"></i>\n <span *ngIf=\"view === action.param\" class=\"selected-view-indicator\"></span>\n </span>\n </button>\n </ng-container>\n\n <ng-container *ngSwitchCase=\"'search'\">\n <label for=\"search\" class=\"sr-only\">Search</label>\n <div class=\"search-container\">\n <div class=\"pointer-events-none absolute inset-y-0 left-0 pl-3 flex items-center\">\n <!--<svg class=\"h-5 w-5\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\" fill=\"currentColor\" aria-hidden=\"true\">\n <path fill-rule=\"evenodd\" d=\"M8 4a4 4 0 100 8 4 4 0 000-8zM2 8a6 6 0 1110.89 3.476l4.817 4.817a1 1 0 01-1.414 1.414l-4.816-4.816A6 6 0 012 8z\" clip-rule=\"evenodd\" />\n </svg>-->\n </div>\n <input id=\"search\" #search class=\"search-input\" [placeholder]=\"searchPlaceholder\"\n type=\"search\" name=\"search\" (input)=\"searchActionType(search.value)\" (onsearch)=\"handleClear($event)\">\n </div>\n <button type=\"button\" href=\"#\" class=\"btn-view-header rounded-l-none\" [title]=\"action.tooltip\" (click)=\"searchActionClick(action, search.value)\">\n <i [class]=\"action.icon\"></i>\n </button>\n </ng-container>\n\n <ng-container *ngSwitchCase=\"'router-link'\">\n <button type=\"button\" href=\"#\" class=\"ml-1 btn-view-header\" [title]=\"action.tooltip\" (click)=\"routerLinkActionClick(action)\">\n <i [class]=\"action.icon\"></i>\n </button>\n </ng-container>\n\n\n <ng-container *ngSwitchDefault>\n <button type=\"button\" class=\"ml-1 btn-view-header\" [title]=\"action.tooltip\" (click)=\"emitActionClick(action)\">\n <i [class]=\"action.icon\"></i>\n </button>\n </ng-container>\n </ng-container>\n </div>\n </div>\n</header>\n\n<!-- component -->\n<div [class]=\"fluid ? 'view-container-fluid' : 'view-container'\">\n <ng-content></ng-content>\n</div>\n", dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { kind: "directive", type: i1.NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }, { kind: "directive", type: i1.NgSwitchDefault, selector: "[ngSwitchDefault]" }] });
2358
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: ViewLayoutComponent, decorators: [{
2359
+ type: Component,
2360
+ args: [{ selector: 'lib-view-layout', template: "<header *ngIf=\"header\" class=\"view-layout-paddings\">\n\n <div class=\"view-layout-title-container\">\n\n <div class=\"view-layout-title-container-inner\">\n <div class=\"flex items-center\">\n <i *ngIf=\"icon\" [class]=\"icon + ' title-icon'\" aria-hidden=\"true\"></i>\n <h1 [class]=\"busy ? 'view-layout-title-busy' : 'view-layout-title'\">{{title}}</h1>\n </div>\n <div *ngIf=\"metaItems && metaItems.length > 0\" class=\"meta-container\">\n <ng-container *ngFor=\"let meta of metaItems\">\n <div class=\"meta-item-container\">\n <i *ngIf=\"meta.icon\" [class]=\"meta.icon + ' meta-icon'\" aria-hidden=\"true\"></i>\n <span class=\"meta-text\">{{meta.text}}</span>\n </div>\n </ng-container>\n </div>\n </div>\n\n <div class=\"flex items-center justify-end\">\n <ng-container *ngFor=\"let action of actions\" [ngSwitch]=\"action.type\">\n\n <ng-container *ngSwitchCase=\"'switch-view'\">\n <button [disabled]=\"view === action.param\" type=\"button\" href=\"#\" class=\"ml-1 disabled:opacity-50 btn-view-header\" (click)=\"switchViewActionClick(action)\">\n <span class=\"inline-block relative\">\n <i [class]=\"action.icon\"></i>\n <span *ngIf=\"view === action.param\" class=\"selected-view-indicator\"></span>\n </span>\n </button>\n </ng-container>\n\n <ng-container *ngSwitchCase=\"'search'\">\n <label for=\"search\" class=\"sr-only\">Search</label>\n <div class=\"search-container\">\n <div class=\"pointer-events-none absolute inset-y-0 left-0 pl-3 flex items-center\">\n <!--<svg class=\"h-5 w-5\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\" fill=\"currentColor\" aria-hidden=\"true\">\n <path fill-rule=\"evenodd\" d=\"M8 4a4 4 0 100 8 4 4 0 000-8zM2 8a6 6 0 1110.89 3.476l4.817 4.817a1 1 0 01-1.414 1.414l-4.816-4.816A6 6 0 012 8z\" clip-rule=\"evenodd\" />\n </svg>-->\n </div>\n <input id=\"search\" #search class=\"search-input\" [placeholder]=\"searchPlaceholder\"\n type=\"search\" name=\"search\" (input)=\"searchActionType(search.value)\" (onsearch)=\"handleClear($event)\">\n </div>\n <button type=\"button\" href=\"#\" class=\"btn-view-header rounded-l-none\" [title]=\"action.tooltip\" (click)=\"searchActionClick(action, search.value)\">\n <i [class]=\"action.icon\"></i>\n </button>\n </ng-container>\n\n <ng-container *ngSwitchCase=\"'router-link'\">\n <button type=\"button\" href=\"#\" class=\"ml-1 btn-view-header\" [title]=\"action.tooltip\" (click)=\"routerLinkActionClick(action)\">\n <i [class]=\"action.icon\"></i>\n </button>\n </ng-container>\n\n\n <ng-container *ngSwitchDefault>\n <button type=\"button\" class=\"ml-1 btn-view-header\" [title]=\"action.tooltip\" (click)=\"emitActionClick(action)\">\n <i [class]=\"action.icon\"></i>\n </button>\n </ng-container>\n </ng-container>\n </div>\n </div>\n</header>\n\n<!-- component -->\n<div [class]=\"fluid ? 'view-container-fluid' : 'view-container'\">\n <ng-content></ng-content>\n</div>\n" }]
2361
+ }], ctorParameters: function () { return [{ type: i1$1.ActivatedRoute }, { type: i1$1.Router }]; }, propDecorators: { searchInput$: [{
2362
+ type: ViewChild,
2363
+ args: ['search']
2364
+ }], header: [{
2365
+ type: Input,
2366
+ args: ['show-header']
2367
+ }], fluid: [{
2368
+ type: Input
2369
+ }], title: [{
2370
+ type: Input
2371
+ }], icon: [{
2372
+ type: Input
2373
+ }], actions: [{
2374
+ type: Input
2375
+ }], busy: [{
2376
+ type: Input
2377
+ }], searchPlaceholder: [{
2378
+ type: Input,
2379
+ args: ['search-placeholder']
2380
+ }], view: [{
2381
+ type: Input
2382
+ }], metaItems: [{
2383
+ type: Input,
2384
+ args: ['meta-items']
2385
+ }], onAction: [{
2386
+ type: Output
2387
+ }], onSearch: [{
2388
+ type: Output
2389
+ }] } });
2390
+
2391
+ class ModelViewLayoutComponent {
2392
+ constructor(location) {
2393
+ this.location = location;
2394
+ this.showRightPaneSM = false;
2395
+ this.title = 'no title';
2396
+ // tslint:disable-next-line:no-input-rename
2397
+ this.primary = null;
2398
+ // tslint:disable-next-line:no-input-rename
2399
+ this.secondary = null;
2400
+ // tslint:disable-next-line:no-input-rename
2401
+ this.metaItems = [
2402
+ // { key: 'test', icon: Icons.Badges, text: 'βρέθηκαν 200 αποτελέσματα' }
2403
+ ];
2404
+ }
2405
+ ngOnInit() {
2406
+ }
2407
+ onSidePaneActivated($event) {
2408
+ this.showRightPaneSM = true;
2409
+ }
2410
+ onSidePaneDeactivated($event) {
2411
+ this.showRightPaneSM = false;
2412
+ }
2413
+ closeSidePane() {
2414
+ this.location.back();
2415
+ }
2416
+ }
2417
+ ModelViewLayoutComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: ModelViewLayoutComponent, deps: [{ token: i1.Location }], target: i0.ɵɵFactoryTarget.Component });
2418
+ ModelViewLayoutComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.0", type: ModelViewLayoutComponent, selector: "lib-model-view-layout", inputs: { title: "title", primary: ["primary-links", "primary"], secondary: ["secondary-links", "secondary"], metaItems: ["meta-items", "metaItems"] }, ngImport: i0, template: "<lib-view-layout [title]=\"title\" [meta-items]=\"metaItems\">\n <main class=\"model-view-container\">\n <div class=\"model-view-container-inner\">\n <aside class=\"model-view-aside\">\n <section aria-labelledby=\"menu\" class=\"details-view-aside-header-section\">\n <div class=\"model-view-aside-header-container\">\n <div class=\"model-view-aside-header-container-inner\">\n <ng-content></ng-content>\n </div>\n <!-- menu items -->\n <div class=\"model-view-menu-container\">\n <nav class=\"model-view-menu-nav\">\n <div class=\"model-view-menu-item\">\n <ng-container *ngFor=\"let section of primary\">\n <a href=\"#\"\n [routerLinkActive]=\"['view-nav-link-active']\"\n [routerLink]=\"section.link\"\n class=\"view-nav-link\">\n {{section.text}}\n </a>\n </ng-container>\n </div>\n <div class=\"model-view-menu-item-far\">\n <ng-container *ngFor=\"let section of secondary\">\n <a href=\"#\"\n [routerLinkActive]=\"['view-nav-link-active']\"\n [routerLinkActiveOptions]=\"{ exact: true }\"\n [routerLink]=\"section.link\"\n class=\"view-nav-link\">\n {{section.text}}\n </a>\n </ng-container>\n </div>\n </nav>\n </div>\n </div>\n </section>\n </aside>\n <div class=\"model-view-details-container\">\n <router-outlet></router-outlet>\n </div>\n </div>\n </main>\n", dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1$1.RouterOutlet, selector: "router-outlet", outputs: ["activate", "deactivate", "attach", "detach"], exportAs: ["outlet"] }, { kind: "directive", type: i1$1.RouterLinkWithHref, selector: "a[routerLink],area[routerLink]", inputs: ["target", "queryParams", "fragment", "queryParamsHandling", "preserveFragment", "skipLocationChange", "replaceUrl", "state", "relativeTo", "routerLink"] }, { kind: "directive", type: i1$1.RouterLinkActive, selector: "[routerLinkActive]", inputs: ["routerLinkActiveOptions", "ariaCurrentWhenActive", "routerLinkActive"], outputs: ["isActiveChange"], exportAs: ["routerLinkActive"] }, { kind: "component", type: ViewLayoutComponent, selector: "lib-view-layout", inputs: ["show-header", "fluid", "title", "icon", "actions", "busy", "search-placeholder", "view", "meta-items"], outputs: ["onAction", "onSearch"] }] });
2419
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: ModelViewLayoutComponent, decorators: [{
2420
+ type: Component,
2421
+ args: [{ selector: 'lib-model-view-layout', template: "<lib-view-layout [title]=\"title\" [meta-items]=\"metaItems\">\n <main class=\"model-view-container\">\n <div class=\"model-view-container-inner\">\n <aside class=\"model-view-aside\">\n <section aria-labelledby=\"menu\" class=\"details-view-aside-header-section\">\n <div class=\"model-view-aside-header-container\">\n <div class=\"model-view-aside-header-container-inner\">\n <ng-content></ng-content>\n </div>\n <!-- menu items -->\n <div class=\"model-view-menu-container\">\n <nav class=\"model-view-menu-nav\">\n <div class=\"model-view-menu-item\">\n <ng-container *ngFor=\"let section of primary\">\n <a href=\"#\"\n [routerLinkActive]=\"['view-nav-link-active']\"\n [routerLink]=\"section.link\"\n class=\"view-nav-link\">\n {{section.text}}\n </a>\n </ng-container>\n </div>\n <div class=\"model-view-menu-item-far\">\n <ng-container *ngFor=\"let section of secondary\">\n <a href=\"#\"\n [routerLinkActive]=\"['view-nav-link-active']\"\n [routerLinkActiveOptions]=\"{ exact: true }\"\n [routerLink]=\"section.link\"\n class=\"view-nav-link\">\n {{section.text}}\n </a>\n </ng-container>\n </div>\n </nav>\n </div>\n </div>\n </section>\n </aside>\n <div class=\"model-view-details-container\">\n <router-outlet></router-outlet>\n </div>\n </div>\n </main>\n" }]
2422
+ }], ctorParameters: function () { return [{ type: i1.Location }]; }, propDecorators: { title: [{
2423
+ type: Input
2424
+ }], primary: [{
2425
+ type: Input,
2426
+ args: ['primary-links']
2427
+ }], secondary: [{
2428
+ type: Input,
2429
+ args: ['secondary-links']
2430
+ }], metaItems: [{
2431
+ type: Input,
2432
+ args: ['meta-items']
2433
+ }] } });
2434
+
2435
+ class SideViewLayoutComponent {
2436
+ constructor(location, router) {
2437
+ this.location = location;
2438
+ this.router = router;
2439
+ this.title = 'Πληροφορίες';
2440
+ this.showActions = true;
2441
+ this.disabled = false;
2442
+ // tslint:disable-next-line:no-input-rename
2443
+ this.okLabel = 'Αποθήκευση';
2444
+ // tslint:disable-next-line:no-input-rename
2445
+ this.okShow = true;
2446
+ // tslint:disable-next-line:no-input-rename
2447
+ this.closeOnOk = true;
2448
+ // tslint:disable-next-line:no-input-rename
2449
+ this.cancelLabel = 'Ακύρωση';
2450
+ // tslint:disable-next-line:no-input-rename
2451
+ this.cancelShow = true;
2452
+ // tslint:disable-next-line:no-input-rename
2453
+ this.forceLocationBack = false;
2454
+ // @Output() close = new EventEmitter<any>();
2455
+ this.cancel = new EventEmitter();
2456
+ this.ok = new EventEmitter();
2457
+ }
2458
+ ngOnInit() {
2459
+ }
2460
+ closeSidePane() {
2461
+ if (this.returnPath) {
2462
+ this.router.navigateByUrl('/', { skipLocationChange: true }).then(() => this.router.navigateByUrl(this.returnPath || '/'));
2463
+ }
2464
+ else {
2465
+ if ((this.router.url.split('/(')[0] !== this.router.url) && !this.forceLocationBack) {
2466
+ this.router.navigateByUrl(this.router.url.split('/(')[0]);
2467
+ }
2468
+ else if ((this.router.url.split('(')[0] !== this.router.url) && !this.forceLocationBack) {
2469
+ this.router.navigateByUrl(this.router.url.split('(')[0]);
2470
+ }
2471
+ else {
2472
+ this.location.back();
2473
+ }
2474
+ }
2475
+ }
2476
+ emitClose() {
2477
+ this.cancel.emit(false);
2478
+ this.closeSidePane();
2479
+ }
2480
+ emitCancel() {
2481
+ this.cancel.emit(false);
2482
+ this.closeSidePane();
2483
+ }
2484
+ emitOK() {
2485
+ this.ok.emit(true);
2486
+ if (this.closeOnOk) {
2487
+ this.closeSidePane();
2488
+ }
2489
+ }
2490
+ }
2491
+ SideViewLayoutComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: SideViewLayoutComponent, deps: [{ token: i1.Location }, { token: i1$1.Router }], target: i0.ɵɵFactoryTarget.Component });
2492
+ SideViewLayoutComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.0", type: SideViewLayoutComponent, selector: "lib-side-view-layout", inputs: { title: "title", showActions: "showActions", disabled: "disabled", returnPath: ["return-path", "returnPath"], okLabel: ["ok-label", "okLabel"], okShow: ["ok-show", "okShow"], closeOnOk: ["ok-close-dialog", "closeOnOk"], cancelLabel: ["cancel-label", "cancelLabel"], cancelShow: ["cancel-show", "cancelShow"], forceLocationBack: ["force-location-back", "forceLocationBack"] }, outputs: { cancel: "cancel", ok: "ok" }, ngImport: i0, template: "<div class=\"side-view-layout-size-box\">\n <div class=\"side-view-layout-container\">\n <div class=\"side-view-layout-container-inner\">\n <div class=\"side-view-layout-header-margins\">\n <div class=\"side-view-layout-header-container\">\n <h2 class=\"side-view-layout-header-title\" id=\"slide-over-title\">\n {{title}}\n </h2>\n <div class=\"side-view-layout-close-button-container\">\n <button (click)=\"emitClose()\" class=\"side-view-layout-close-button\">\n <span class=\"sr-only\">Close panel</span>\n <!-- Heroicon name: outline/x -->\n <svg class=\"side-view-layout-close-button-icon\" xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 24 24\" stroke=\"currentColor\" aria-hidden=\"true\">\n <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M6 18L18 6M6 6l12 12\" />\n </svg>\n </button>\n </div>\n </div>\n </div>\n <div class=\"side-view-layout-content-container\">\n <!-- Replace with your content -->\n <ng-content></ng-content>\n <!-- /End replace -->\n </div>\n </div>\n <div *ngIf=\"showActions\" class=\"side-view-layout-actions-container\">\n <button *ngIf=\"cancelShow\" (click)=\"emitCancel()\" type=\"button\" class=\"side-view-layout-action-button-cancel\">\n {{cancelLabel}}\n </button>\n <button *ngIf=\"okShow\" (click)=\"emitOK()\" class=\"side-view-layout-action-button-submit\" [disabled]=\"disabled\">\n {{okLabel}}\n </button>\n </div>\n </div>\n</div>\n\n", dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
2493
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: SideViewLayoutComponent, decorators: [{
2494
+ type: Component,
2495
+ args: [{ selector: 'lib-side-view-layout', template: "<div class=\"side-view-layout-size-box\">\n <div class=\"side-view-layout-container\">\n <div class=\"side-view-layout-container-inner\">\n <div class=\"side-view-layout-header-margins\">\n <div class=\"side-view-layout-header-container\">\n <h2 class=\"side-view-layout-header-title\" id=\"slide-over-title\">\n {{title}}\n </h2>\n <div class=\"side-view-layout-close-button-container\">\n <button (click)=\"emitClose()\" class=\"side-view-layout-close-button\">\n <span class=\"sr-only\">Close panel</span>\n <!-- Heroicon name: outline/x -->\n <svg class=\"side-view-layout-close-button-icon\" xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 24 24\" stroke=\"currentColor\" aria-hidden=\"true\">\n <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M6 18L18 6M6 6l12 12\" />\n </svg>\n </button>\n </div>\n </div>\n </div>\n <div class=\"side-view-layout-content-container\">\n <!-- Replace with your content -->\n <ng-content></ng-content>\n <!-- /End replace -->\n </div>\n </div>\n <div *ngIf=\"showActions\" class=\"side-view-layout-actions-container\">\n <button *ngIf=\"cancelShow\" (click)=\"emitCancel()\" type=\"button\" class=\"side-view-layout-action-button-cancel\">\n {{cancelLabel}}\n </button>\n <button *ngIf=\"okShow\" (click)=\"emitOK()\" class=\"side-view-layout-action-button-submit\" [disabled]=\"disabled\">\n {{okLabel}}\n </button>\n </div>\n </div>\n</div>\n\n" }]
2496
+ }], ctorParameters: function () { return [{ type: i1.Location }, { type: i1$1.Router }]; }, propDecorators: { title: [{
2497
+ type: Input
2498
+ }], showActions: [{
2499
+ type: Input
2500
+ }], disabled: [{
2501
+ type: Input
2502
+ }], returnPath: [{
2503
+ type: Input,
2504
+ args: ['return-path']
2505
+ }], okLabel: [{
2506
+ type: Input,
2507
+ args: ['ok-label']
2508
+ }], okShow: [{
2509
+ type: Input,
2510
+ args: ['ok-show']
2511
+ }], closeOnOk: [{
2512
+ type: Input,
2513
+ args: ['ok-close-dialog']
2514
+ }], cancelLabel: [{
2515
+ type: Input,
2516
+ args: ['cancel-label']
2517
+ }], cancelShow: [{
2518
+ type: Input,
2519
+ args: ['cancel-show']
2520
+ }], forceLocationBack: [{
2521
+ type: Input,
2522
+ args: ['force-location-back']
2523
+ }], cancel: [{
2524
+ type: Output
2525
+ }], ok: [{
2526
+ type: Output
2527
+ }] } });
2528
+
2529
+ class FormLayoutComponent {
2530
+ constructor(router$) {
2531
+ this.router$ = router$;
2532
+ this.title = null;
2533
+ // tslint:disable-next-line:no-input-rename
2534
+ this.searchPlaceholder = 'αναζήτηση';
2535
+ this.actions = null;
2536
+ // tslint:disable-next-line:no-input-rename
2537
+ this.subTitle = null;
2538
+ // tslint:disable-next-line:no-output-on-prefix
2539
+ this.onAction = new EventEmitter();
2540
+ // tslint:disable-next-line:no-output-on-prefix
2541
+ this.onSearch = new EventEmitter();
2542
+ this.onComplete = new EventEmitter();
2543
+ }
2544
+ ngOnInit() {
2545
+ var _a;
2546
+ if ((_a = this.searchInput$) === null || _a === void 0 ? void 0 : _a.nativeElement) {
2547
+ fromEvent(this.searchInput$.nativeElement, 'keyup').pipe(map((event) => {
2548
+ return event.target.value; // Get input value.
2549
+ }), filter(inputValue => inputValue.length >= 3 || inputValue.length === 0),
2550
+ // If character length greater than minimumSearchCharacters setting.
2551
+ debounceTime(1000), // Time in milliseconds between key events.
2552
+ distinctUntilChanged() // If previous query is different from current.
2553
+ ).subscribe();
2554
+ }
2555
+ }
2556
+ onSidePaneDeactivated($event) {
2557
+ this.onComplete.emit(true);
2558
+ }
2559
+ emitActionClick(action) {
2560
+ this.onAction.emit(action);
2561
+ }
2562
+ searchActionClick(action, text) {
2563
+ this.onSearch.emit(text);
2564
+ }
2565
+ searchActionType(text) {
2566
+ var _a;
2567
+ this.onSearch.emit((_a = this.searchInput$) === null || _a === void 0 ? void 0 : _a.nativeElement.value);
2568
+ }
2569
+ routerLinkActionClick(action, relative = false) {
2570
+ if (action.outlet) {
2571
+ this.router$.navigate(['', { outlets: { formRightPane: action.link } }]);
2572
+ }
2573
+ else {
2574
+ this.router$.navigate([action.link]);
2575
+ }
2576
+ }
2577
+ }
2578
+ FormLayoutComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: FormLayoutComponent, deps: [{ token: i1$1.Router }], target: i0.ɵɵFactoryTarget.Component });
2579
+ FormLayoutComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.0", type: FormLayoutComponent, selector: "lib-form-layout", inputs: { title: "title", searchPlaceholder: ["search-placeholder", "searchPlaceholder"], actions: "actions", subTitle: ["sub-title", "subTitle"] }, outputs: { onAction: "onAction", onSearch: "onSearch", onComplete: "onComplete" }, viewQueries: [{ propertyName: "searchInput$", first: true, predicate: ["search"], descendants: true }], ngImport: i0, template: "<div class=\"form-layout-container\">\n <div class=\"form-header\" *ngIf=\"title || subTitle || actions\">\n <div class=\"form-header-inner\">\n <h3 class=\"form-title\">\n {{ title }}\n </h3>\n <p class=\"form-subtitle\">\n {{ subTitle }}\n </p>\n </div>\n <div class=\"form-header-actions\">\n <ng-container *ngFor=\"let action of actions\" [ngSwitch]=\"action.type\">\n <ng-container *ngSwitchCase=\"'search'\">\n <label for=\"search\" class=\"sr-only\">Search</label>\n <div class=\"search-container\">\n <div class=\"pointer-events-none absolute inset-y-0 left-0 pl-3 flex items-center\">\n <!--<svg class=\"h-5 w-5\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\" fill=\"currentColor\" aria-hidden=\"true\">\n <path fill-rule=\"evenodd\" d=\"M8 4a4 4 0 100 8 4 4 0 000-8zM2 8a6 6 0 1110.89 3.476l4.817 4.817a1 1 0 01-1.414 1.414l-4.816-4.816A6 6 0 012 8z\" clip-rule=\"evenodd\" />\n </svg>-->\n </div>\n <input id=\"search\"\n #search\n class=\"form-search-input\"\n [placeholder]=\"searchPlaceholder\"\n type=\"search\"\n name=\"search\"\n (input)=\"searchActionType(search.value)\">\n </div>\n <button type=\"button\"\n href=\"#\"\n class=\"btn-form-view-header-search\"\n [title]=\"action.tooltip\"\n (click)=\"searchActionClick(action, search.value)\">\n <i [class]=\"action.icon\"></i>\n </button>\n </ng-container>\n <ng-container *ngSwitchCase=\"'router-link'\">\n <button type=\"button\"\n href=\"#\"\n class=\"ml-1 btn-form-view-header\"\n [title]=\"action.tooltip\"\n (click)=\"routerLinkActionClick(action)\">\n <i [class]=\"action.icon\"></i>\n </button>\n </ng-container>\n <ng-container *ngSwitchDefault>\n <button type=\"button\"\n class=\"ml-1 btn-form-view-header\"\n [title]=\"action.tooltip\"\n (click)=\"emitActionClick(action)\">\n <i [class]=\"action.icon\"></i>\n </button>\n </ng-container>\n </ng-container>\n </div>\n </div>\n <div class=\"form-content-container\">\n <div [ngClass]=\"{'form-content-container-inner': actions}\">\n <ng-content></ng-content>\n </div>\n </div>\n <lib-side-pane #formPane (onComplete)=\"onSidePaneDeactivated($event)\">\n <router-outlet name=\"formRightPane\"\n (activate)=\"formPane.onSidePaneActivated($event)\"\n (deactivate)=\"formPane.onSidePaneDeactivated($event)\"></router-outlet>\n </lib-side-pane>\n</div>\n", dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { kind: "directive", type: i1.NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }, { kind: "directive", type: i1.NgSwitchDefault, selector: "[ngSwitchDefault]" }, { kind: "directive", type: i1$1.RouterOutlet, selector: "router-outlet", outputs: ["activate", "deactivate", "attach", "detach"], exportAs: ["outlet"] }, { kind: "component", type: SidePaneComponent, selector: "lib-side-pane", inputs: ["visible"], outputs: ["onComplete"] }] });
2580
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: FormLayoutComponent, decorators: [{
2581
+ type: Component,
2582
+ args: [{ selector: 'lib-form-layout', template: "<div class=\"form-layout-container\">\n <div class=\"form-header\" *ngIf=\"title || subTitle || actions\">\n <div class=\"form-header-inner\">\n <h3 class=\"form-title\">\n {{ title }}\n </h3>\n <p class=\"form-subtitle\">\n {{ subTitle }}\n </p>\n </div>\n <div class=\"form-header-actions\">\n <ng-container *ngFor=\"let action of actions\" [ngSwitch]=\"action.type\">\n <ng-container *ngSwitchCase=\"'search'\">\n <label for=\"search\" class=\"sr-only\">Search</label>\n <div class=\"search-container\">\n <div class=\"pointer-events-none absolute inset-y-0 left-0 pl-3 flex items-center\">\n <!--<svg class=\"h-5 w-5\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\" fill=\"currentColor\" aria-hidden=\"true\">\n <path fill-rule=\"evenodd\" d=\"M8 4a4 4 0 100 8 4 4 0 000-8zM2 8a6 6 0 1110.89 3.476l4.817 4.817a1 1 0 01-1.414 1.414l-4.816-4.816A6 6 0 012 8z\" clip-rule=\"evenodd\" />\n </svg>-->\n </div>\n <input id=\"search\"\n #search\n class=\"form-search-input\"\n [placeholder]=\"searchPlaceholder\"\n type=\"search\"\n name=\"search\"\n (input)=\"searchActionType(search.value)\">\n </div>\n <button type=\"button\"\n href=\"#\"\n class=\"btn-form-view-header-search\"\n [title]=\"action.tooltip\"\n (click)=\"searchActionClick(action, search.value)\">\n <i [class]=\"action.icon\"></i>\n </button>\n </ng-container>\n <ng-container *ngSwitchCase=\"'router-link'\">\n <button type=\"button\"\n href=\"#\"\n class=\"ml-1 btn-form-view-header\"\n [title]=\"action.tooltip\"\n (click)=\"routerLinkActionClick(action)\">\n <i [class]=\"action.icon\"></i>\n </button>\n </ng-container>\n <ng-container *ngSwitchDefault>\n <button type=\"button\"\n class=\"ml-1 btn-form-view-header\"\n [title]=\"action.tooltip\"\n (click)=\"emitActionClick(action)\">\n <i [class]=\"action.icon\"></i>\n </button>\n </ng-container>\n </ng-container>\n </div>\n </div>\n <div class=\"form-content-container\">\n <div [ngClass]=\"{'form-content-container-inner': actions}\">\n <ng-content></ng-content>\n </div>\n </div>\n <lib-side-pane #formPane (onComplete)=\"onSidePaneDeactivated($event)\">\n <router-outlet name=\"formRightPane\"\n (activate)=\"formPane.onSidePaneActivated($event)\"\n (deactivate)=\"formPane.onSidePaneDeactivated($event)\"></router-outlet>\n </lib-side-pane>\n</div>\n" }]
2583
+ }], ctorParameters: function () { return [{ type: i1$1.Router }]; }, propDecorators: { searchInput$: [{
2584
+ type: ViewChild,
2585
+ args: ['search']
2586
+ }], title: [{
2587
+ type: Input
2588
+ }], searchPlaceholder: [{
2589
+ type: Input,
2590
+ args: ['search-placeholder']
2591
+ }], actions: [{
2592
+ type: Input
2593
+ }], subTitle: [{
2594
+ type: Input,
2595
+ args: ['sub-title']
2596
+ }], onAction: [{
2597
+ type: Output
2598
+ }], onSearch: [{
2599
+ type: Output
2600
+ }], onComplete: [{
2601
+ type: Output
2602
+ }] } });
2603
+
2604
+ class AuthCallbackComponent {
2605
+ constructor(authService, router) {
2606
+ this.authService = authService;
2607
+ this.router = router;
2608
+ this.status = 'παρακαλώ περιμένετε...';
2609
+ }
2610
+ ngOnInit() {
2611
+ this.authService.signinRedirectCallback().subscribe((user) => {
2612
+ var _a;
2613
+ if (user) {
2614
+ this.router.navigateByUrl(((_a = user.state) === null || _a === void 0 ? void 0 : _a.url) || '/');
2615
+ }
2616
+ });
2617
+ }
2618
+ }
2619
+ AuthCallbackComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: AuthCallbackComponent, deps: [{ token: AuthService }, { token: i1$1.Router }], target: i0.ɵɵFactoryTarget.Component });
2620
+ AuthCallbackComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.0", type: AuthCallbackComponent, selector: "lib-auth-callback", ngImport: i0, template: "<lib-view-layout [title]=\"status\" [busy]=\"true\"></lib-view-layout>", dependencies: [{ kind: "component", type: ViewLayoutComponent, selector: "lib-view-layout", inputs: ["show-header", "fluid", "title", "icon", "actions", "busy", "search-placeholder", "view", "meta-items"], outputs: ["onAction", "onSearch"] }] });
2621
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: AuthCallbackComponent, decorators: [{
2622
+ type: Component,
2623
+ args: [{ selector: 'lib-auth-callback', template: "<lib-view-layout [title]=\"status\" [busy]=\"true\"></lib-view-layout>" }]
2624
+ }], ctorParameters: function () {
2625
+ return [{ type: i2.AuthService, decorators: [{
2626
+ type: Inject,
2627
+ args: [AuthService]
2628
+ }] }, { type: i1$1.Router }];
2629
+ } });
2630
+
2631
+ class AuthRenewComponent {
2632
+ constructor(authService, router) {
2633
+ this.authService = authService;
2634
+ this.router = router;
2635
+ }
2636
+ ngOnInit() {
2637
+ this.authService.signinSilentCallback().subscribe(user => {
2638
+ if (!user) {
2639
+ this.router.navigate(['/unauthorized']);
2640
+ }
2641
+ });
2642
+ }
2643
+ }
2644
+ AuthRenewComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: AuthRenewComponent, deps: [{ token: AuthService }, { token: i1$1.Router }], target: i0.ɵɵFactoryTarget.Component });
2645
+ AuthRenewComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.0", type: AuthRenewComponent, selector: "lib-auth-renew", ngImport: i0, template: '', isInline: true });
2646
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: AuthRenewComponent, decorators: [{
2647
+ type: Component,
2648
+ args: [{
2649
+ selector: 'lib-auth-renew',
2650
+ template: ''
2651
+ }]
2652
+ }], ctorParameters: function () {
2653
+ return [{ type: i2.AuthService, decorators: [{
2654
+ type: Inject,
2655
+ args: [AuthService]
2656
+ }] }, { type: i1$1.Router }];
2657
+ } });
2658
+
2659
+ class LoggedOutComponent {
2660
+ constructor(authService) {
2661
+ this.authService = authService;
2662
+ this.status = 'working on it, please give me a sec...';
2663
+ this.finished = false;
2664
+ }
2665
+ ngOnInit() {
2666
+ this.authService.removeUser().subscribe(() => {
2667
+ this.status = 'Thank you!';
2668
+ this.finished = true;
2669
+ });
2670
+ }
2671
+ }
2672
+ LoggedOutComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: LoggedOutComponent, deps: [{ token: AuthService }], target: i0.ɵɵFactoryTarget.Component });
2673
+ LoggedOutComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.0", type: LoggedOutComponent, selector: "lib-logged-out", ngImport: i0, template: "<lib-view-layout title=\"\u0388\u03C7\u03B5\u03C4\u03B5 \u03B1\u03C0\u03BF\u03C3\u03C5\u03BD\u03B4\u03B5\u03B8\u03B5\u03AF \u03BC\u03B5 \u03B5\u03C0\u03B9\u03C4\u03C5\u03C7\u03AF\u03B1!\"></lib-view-layout>", dependencies: [{ kind: "component", type: ViewLayoutComponent, selector: "lib-view-layout", inputs: ["show-header", "fluid", "title", "icon", "actions", "busy", "search-placeholder", "view", "meta-items"], outputs: ["onAction", "onSearch"] }] });
2674
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: LoggedOutComponent, decorators: [{
2675
+ type: Component,
2676
+ args: [{ selector: 'lib-logged-out', template: "<lib-view-layout title=\"\u0388\u03C7\u03B5\u03C4\u03B5 \u03B1\u03C0\u03BF\u03C3\u03C5\u03BD\u03B4\u03B5\u03B8\u03B5\u03AF \u03BC\u03B5 \u03B5\u03C0\u03B9\u03C4\u03C5\u03C7\u03AF\u03B1!\"></lib-view-layout>" }]
2677
+ }], ctorParameters: function () {
2678
+ return [{ type: i2.AuthService, decorators: [{
2679
+ type: Inject,
2680
+ args: [AuthService]
2681
+ }] }];
2682
+ } });
2683
+
2684
+ class ErrorComponent {
2685
+ constructor() {
2686
+ this.error = 'Error!';
2687
+ }
2688
+ ngOnInit() {
2689
+ }
2690
+ }
2691
+ ErrorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: ErrorComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
2692
+ ErrorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.0", type: ErrorComponent, selector: "lib-error", ngImport: i0, template: "<lib-view-layout [show-header]=\"false\" title=\"500 - \u03C0\u03B1\u03C1\u03BF\u03C5\u03C3\u03B9\u03AC\u03C3\u03C4\u03B7\u03BA\u03B5 \u03C3\u03C6\u03AC\u03BB\u03BC\u03B1!\">\n <div class=\"bg-gray-600 view-container\">\n <div class=\"max-w-2xl mx-auto text-center py-16 px-4 sm:py-20 sm:px-6 lg:px-8\">\n <h2 class=\"text-3xl font-extrabold text-white sm:text-4xl\">\n <span class=\"block\">500</span>\n </h2>\n <p class=\"mt-4 text-lg leading-6 text-gray-200\">\u03C3\u03C6\u03AC\u03BB\u03BC\u03B1, \u03BA\u03B1\u03C4\u03B9 \u03B4\u03B5\u03BD \u03C0\u03AE\u03B3\u03B5 \u03BA\u03B1\u03BB\u03AC...!</p>\n <a href=\"/\" class=\"mt-8 inline-flex items-center justify-center px-5 py-3 border border-transparent text-base font-sm rounded-sm text-gray-600 bg-white hover:bg-gray-50 sm:w-auto\">\n \u03C0\u03B1\u03C4\u03AE\u03C3\u03C4\u03B5 \u03B5\u03B4\u03CE \u03B3\u03B9\u03B1 \u03BD\u03B1 \u03B5\u03C0\u03B9\u03C3\u03C4\u03C1\u03AD\u03C8\u03B5\u03C4\u03B5\n </a>\n </div>\n </div>\n</lib-view-layout>\n", dependencies: [{ kind: "component", type: ViewLayoutComponent, selector: "lib-view-layout", inputs: ["show-header", "fluid", "title", "icon", "actions", "busy", "search-placeholder", "view", "meta-items"], outputs: ["onAction", "onSearch"] }] });
2693
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: ErrorComponent, decorators: [{
2694
+ type: Component,
2695
+ args: [{ selector: 'lib-error', template: "<lib-view-layout [show-header]=\"false\" title=\"500 - \u03C0\u03B1\u03C1\u03BF\u03C5\u03C3\u03B9\u03AC\u03C3\u03C4\u03B7\u03BA\u03B5 \u03C3\u03C6\u03AC\u03BB\u03BC\u03B1!\">\n <div class=\"bg-gray-600 view-container\">\n <div class=\"max-w-2xl mx-auto text-center py-16 px-4 sm:py-20 sm:px-6 lg:px-8\">\n <h2 class=\"text-3xl font-extrabold text-white sm:text-4xl\">\n <span class=\"block\">500</span>\n </h2>\n <p class=\"mt-4 text-lg leading-6 text-gray-200\">\u03C3\u03C6\u03AC\u03BB\u03BC\u03B1, \u03BA\u03B1\u03C4\u03B9 \u03B4\u03B5\u03BD \u03C0\u03AE\u03B3\u03B5 \u03BA\u03B1\u03BB\u03AC...!</p>\n <a href=\"/\" class=\"mt-8 inline-flex items-center justify-center px-5 py-3 border border-transparent text-base font-sm rounded-sm text-gray-600 bg-white hover:bg-gray-50 sm:w-auto\">\n \u03C0\u03B1\u03C4\u03AE\u03C3\u03C4\u03B5 \u03B5\u03B4\u03CE \u03B3\u03B9\u03B1 \u03BD\u03B1 \u03B5\u03C0\u03B9\u03C3\u03C4\u03C1\u03AD\u03C8\u03B5\u03C4\u03B5\n </a>\n </div>\n </div>\n</lib-view-layout>\n" }]
2696
+ }] });
2697
+
2698
+ class PageNotFoundComponent {
2699
+ constructor() { }
2700
+ ngOnInit() {
2701
+ }
2702
+ }
2703
+ PageNotFoundComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: PageNotFoundComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
2704
+ PageNotFoundComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.0", type: PageNotFoundComponent, selector: "lib-page-not-found", ngImport: i0, template: "<lib-view-layout [show-header]=\"false\" title=\"404 - \u03B4\u03B5\u03BD \u03B2\u03C1\u03AD\u03B8\u03B7\u03BA\u03B5!\">\n <div class=\"text-gray-900\">\n <div class=\"max-w-4xl mx-auto text-center py-16 px-4 sm:py-20 sm:px-6 lg:px-8\">\n <h2 class=\"text-3xl font-extrabold sm:text-4xl\">\n <span class=\"block\">404</span>\n </h2>\n <p class=\"mt-4 text-lg leading-6 text-gray-800\">\u03B4\u03B5\u03BD \u03B2\u03C1\u03AD\u03B8\u03B7\u03BA\u03B5 \u03B7 \u03C3\u03B5\u03BB\u03AF\u03B4\u03B1 \u03C0\u03BF\u03C5 \u03B6\u03B7\u03C4\u03AE\u03C3\u03B1\u03C4\u03B5!</p>\n <a href=\"/\"\n class=\"mt-8 inline-flex items-center justify-center px-5 py-3 border border-transparent text-base font-sm rounded-sm text-gray-600 bg-white hover:bg-gray-50 sm:w-auto\">\n \u03C0\u03B1\u03C4\u03AE\u03C3\u03C4\u03B5 \u03B5\u03B4\u03CE \u03B3\u03B9\u03B1 \u03BD\u03B1 \u03B5\u03C0\u03B9\u03C3\u03C4\u03C1\u03AD\u03C8\u03B5\u03C4\u03B5\n </a>\n </div>\n </div>\n</lib-view-layout>\n", dependencies: [{ kind: "component", type: ViewLayoutComponent, selector: "lib-view-layout", inputs: ["show-header", "fluid", "title", "icon", "actions", "busy", "search-placeholder", "view", "meta-items"], outputs: ["onAction", "onSearch"] }] });
2705
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: PageNotFoundComponent, decorators: [{
2706
+ type: Component,
2707
+ args: [{ selector: 'lib-page-not-found', template: "<lib-view-layout [show-header]=\"false\" title=\"404 - \u03B4\u03B5\u03BD \u03B2\u03C1\u03AD\u03B8\u03B7\u03BA\u03B5!\">\n <div class=\"text-gray-900\">\n <div class=\"max-w-4xl mx-auto text-center py-16 px-4 sm:py-20 sm:px-6 lg:px-8\">\n <h2 class=\"text-3xl font-extrabold sm:text-4xl\">\n <span class=\"block\">404</span>\n </h2>\n <p class=\"mt-4 text-lg leading-6 text-gray-800\">\u03B4\u03B5\u03BD \u03B2\u03C1\u03AD\u03B8\u03B7\u03BA\u03B5 \u03B7 \u03C3\u03B5\u03BB\u03AF\u03B4\u03B1 \u03C0\u03BF\u03C5 \u03B6\u03B7\u03C4\u03AE\u03C3\u03B1\u03C4\u03B5!</p>\n <a href=\"/\"\n class=\"mt-8 inline-flex items-center justify-center px-5 py-3 border border-transparent text-base font-sm rounded-sm text-gray-600 bg-white hover:bg-gray-50 sm:w-auto\">\n \u03C0\u03B1\u03C4\u03AE\u03C3\u03C4\u03B5 \u03B5\u03B4\u03CE \u03B3\u03B9\u03B1 \u03BD\u03B1 \u03B5\u03C0\u03B9\u03C3\u03C4\u03C1\u03AD\u03C8\u03B5\u03C4\u03B5\n </a>\n </div>\n </div>\n</lib-view-layout>\n" }]
2708
+ }], ctorParameters: function () { return []; } });
2709
+
2710
+ class UnauthorizedComponent {
2711
+ constructor() { }
2712
+ ngOnInit() { }
2713
+ }
2714
+ UnauthorizedComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: UnauthorizedComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
2715
+ UnauthorizedComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.0", type: UnauthorizedComponent, selector: "lib-unauthorized", ngImport: i0, template: "<lib-view-layout [show-header]=\"false\" title=\"401 - \u03B4\u03B5\u03BD \u03B5\u03C0\u03B9\u03C4\u03C1\u03AD\u03C0\u03B5\u03C4\u03B1\u03B9 \u03B7 \u03C0\u03C1\u03CC\u03C3\u03B2\u03B1\u03C3\u03B7!\">\n <div class=\"bg-gray-600 view-container\">\n <div class=\"max-w-2xl mx-auto text-center py-16 px-4 sm:py-20 sm:px-6 lg:px-8\">\n <h2 class=\"text-3xl font-extrabold text-white sm:text-4xl\">\n <span class=\"block\">401</span>\n </h2>\n <p class=\"mt-4 text-lg leading-6 text-gray-200\">\u03B4\u03B5\u03BD \u03AD\u03C7\u03B5\u03C4\u03B5 \u03C4\u03B1 \u03BA\u03B1\u03C4\u03AC\u03BB\u03BB\u03B7\u03BB\u03B1 \u03B4\u03B9\u03BA\u03B1\u03B9\u03CE\u03BC\u03B1\u03C4\u03B1 \u03C0\u03C1\u03CC\u03C3\u03B2\u03B1\u03C3\u03B7\u03C2!</p>\n <a href=\"/\" class=\"mt-8 inline-flex items-center justify-center px-5 py-3 border border-transparent text-base font-sm rounded-sm text-gray-600 bg-white hover:bg-gray-50 sm:w-auto\">\n \u03C0\u03B1\u03C4\u03AE\u03C3\u03C4\u03B5 \u03B5\u03B4\u03CE \u03B3\u03B9\u03B1 \u03BD\u03B1 \u03B5\u03C0\u03B9\u03C3\u03C4\u03C1\u03AD\u03C8\u03B5\u03C4\u03B5\n </a>\n </div>\n </div>\n </lib-view-layout>\n\n\n", dependencies: [{ kind: "component", type: ViewLayoutComponent, selector: "lib-view-layout", inputs: ["show-header", "fluid", "title", "icon", "actions", "busy", "search-placeholder", "view", "meta-items"], outputs: ["onAction", "onSearch"] }] });
2716
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: UnauthorizedComponent, decorators: [{
2717
+ type: Component,
2718
+ args: [{ selector: 'lib-unauthorized', template: "<lib-view-layout [show-header]=\"false\" title=\"401 - \u03B4\u03B5\u03BD \u03B5\u03C0\u03B9\u03C4\u03C1\u03AD\u03C0\u03B5\u03C4\u03B1\u03B9 \u03B7 \u03C0\u03C1\u03CC\u03C3\u03B2\u03B1\u03C3\u03B7!\">\n <div class=\"bg-gray-600 view-container\">\n <div class=\"max-w-2xl mx-auto text-center py-16 px-4 sm:py-20 sm:px-6 lg:px-8\">\n <h2 class=\"text-3xl font-extrabold text-white sm:text-4xl\">\n <span class=\"block\">401</span>\n </h2>\n <p class=\"mt-4 text-lg leading-6 text-gray-200\">\u03B4\u03B5\u03BD \u03AD\u03C7\u03B5\u03C4\u03B5 \u03C4\u03B1 \u03BA\u03B1\u03C4\u03AC\u03BB\u03BB\u03B7\u03BB\u03B1 \u03B4\u03B9\u03BA\u03B1\u03B9\u03CE\u03BC\u03B1\u03C4\u03B1 \u03C0\u03C1\u03CC\u03C3\u03B2\u03B1\u03C3\u03B7\u03C2!</p>\n <a href=\"/\" class=\"mt-8 inline-flex items-center justify-center px-5 py-3 border border-transparent text-base font-sm rounded-sm text-gray-600 bg-white hover:bg-gray-50 sm:w-auto\">\n \u03C0\u03B1\u03C4\u03AE\u03C3\u03C4\u03B5 \u03B5\u03B4\u03CE \u03B3\u03B9\u03B1 \u03BD\u03B1 \u03B5\u03C0\u03B9\u03C3\u03C4\u03C1\u03AD\u03C8\u03B5\u03C4\u03B5\n </a>\n </div>\n </div>\n </lib-view-layout>\n\n\n" }]
2719
+ }], ctorParameters: function () { return []; } });
2720
+
2721
+ class AddressPipe {
2722
+ transform(value) {
2723
+ if (value === undefined || null || '') {
2724
+ return '';
2725
+ }
2726
+ // tslint:disable-next-line:no-non-null-assertion
2727
+ return `${value.street || ''}${value.streetNumber ? ' ' + value.streetNumber : ''}${value.city ? ', ' + value.city : ''}${+value.postalCode ? ', ' + +value.postalCode : ''}`;
2728
+ }
2729
+ }
2730
+ AddressPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: AddressPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
2731
+ AddressPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "14.0.0", ngImport: i0, type: AddressPipe, name: "address", pure: false });
2732
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: AddressPipe, decorators: [{
2733
+ type: Pipe,
2734
+ args: [{
2735
+ name: 'address',
2736
+ pure: false
2737
+ }]
2738
+ }] });
2739
+
2740
+ class DurationFormatPipe {
2741
+ transform(value, arg1, arg2) {
2742
+ let days;
2743
+ let seconds;
2744
+ let minutes;
2745
+ let hours;
2746
+ if (arg1 === 'ms' && arg2 === 'hhmmss') {
2747
+ seconds = Math.floor((value / 1000) % 60);
2748
+ minutes = Math.floor(((value / (1000 * 60)) % 60));
2749
+ hours = Math.floor((value / (1000 * 60 * 60)));
2750
+ return this.format(arg2, seconds, minutes, hours, days);
2751
+ }
2752
+ else if (arg1 === 's' && arg2 === 'hhmmss') {
2753
+ seconds = Math.floor((value % 60));
2754
+ minutes = Math.floor(((value / 60) % 60));
2755
+ hours = Math.floor(((value / 60) / 60));
2756
+ return this.format(arg2, seconds, minutes, hours, days);
2757
+ }
2758
+ else if (arg1 === 'ms' && (arg2 === 'ddhhmmss' || arg2 === 'ddhhmmssLong')) {
2759
+ seconds = Math.floor(((value / 1000) % 60));
2760
+ minutes = Math.floor((value / (1000 * 60) % 60));
2761
+ hours = Math.floor((value / (1000 * 60 * 60) % 24));
2762
+ days = Math.floor((value / (1000 * 60 * 60 * 24)));
2763
+ return this.format(arg2, seconds, minutes, hours, days);
2764
+ }
2765
+ else if (arg1 === 's' && (arg2 === 'ddhhmmss' || arg2 === 'ddhhmmssLong')) {
2766
+ seconds = Math.floor(value % 60);
2767
+ minutes = Math.floor(((value / 60) % 60));
2768
+ hours = Math.floor(((value / 60) / 60) % 24);
2769
+ days = Math.floor((((value / 60) / 60) / 24));
2770
+ return this.format(arg2, seconds, minutes, hours, days);
2771
+ }
2772
+ else {
2773
+ return value;
2774
+ }
2775
+ }
2776
+ format(arg2, seconds, minutes, hours, days) {
2777
+ (days < 10) ? days = '0' + days : days;
2778
+ (hours < 10) ? hours = '0' + hours : hours;
2779
+ (minutes < 10) ? minutes = '0' + minutes : minutes;
2780
+ (seconds < 10) ? seconds = '0' + seconds : seconds;
2781
+ switch (arg2) {
2782
+ case 'hhmmss':
2783
+ return `${hours}:${minutes}:${seconds}`;
2784
+ case 'ddhhmmss':
2785
+ return `${days}d, ${hours}h, ${minutes}m, ${seconds}s`;
2786
+ case 'ddhhmmssLong':
2787
+ return `${days} days, ${hours} hours, ${minutes} minutes, ${seconds} seconds`;
2788
+ }
2789
+ return undefined;
2790
+ }
2791
+ }
2792
+ DurationFormatPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: DurationFormatPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
2793
+ DurationFormatPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "14.0.0", ngImport: i0, type: DurationFormatPipe, name: "durationFormat", pure: false });
2794
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: DurationFormatPipe, decorators: [{
2795
+ type: Pipe,
2796
+ args: [{
2797
+ name: 'durationFormat',
2798
+ pure: false
2799
+ }]
2800
+ }] });
2801
+
2802
+ class BaseListComponent {
2803
+ constructor(route$, router$) {
2804
+ this.route$ = route$;
2805
+ this.router$ = router$;
2806
+ this.items = null;
2807
+ this.view = ListViewType.Tiles;
2808
+ this.title = null;
2809
+ this.actions = [];
2810
+ this.loaderItems = [1, 2, 3, 4, 5];
2811
+ this.page = 1;
2812
+ this.pageSize = 20;
2813
+ this.count = 0;
2814
+ this.sort = '';
2815
+ this.sortdir = '-';
2816
+ this.search = '';
2817
+ this.sortOptions = [];
2818
+ this.metaItems = [];
2819
+ }
2820
+ ngOnDestroy() {
2821
+ if (this.routeSub$) {
2822
+ this.routeSub$.unsubscribe();
2823
+ }
2824
+ }
2825
+ getViewActions() {
2826
+ const actions = [
2827
+ new ViewAction('search', null, null, Icons.Search, 'αναζήτηση'),
2828
+ new ViewAction('refresh', null, null, Icons.Refresh, 'ανανέωση στοιχείων')
2829
+ ];
2830
+ if (this.newItemLink) {
2831
+ actions.push(new RouterViewAction(Icons.Add, this.newItemLink, 'rightpane', 'προσθήκη νέας εγγραφής;'));
2832
+ }
2833
+ return of(actions);
2834
+ }
2835
+ ngOnInit() {
2836
+ this.getViewActions().subscribe(actions => {
2837
+ this.actions = actions || [];
2838
+ });
2839
+ this.metaItems = [
2840
+ { key: 'count', icon: Icons.ItemsCount, text: 'παρακαλώ περιμένετε...' }
2841
+ ];
2842
+ // disabled external route changes monitoring due to sync issues - which is bad :) - refresh from url will not work
2843
+ // until i come up with a solution...
2844
+ this.routeSub$ = this.route$.queryParamMap.subscribe(params => {
2845
+ if (params.keys.length === 0) {
2846
+ return;
2847
+ }
2848
+ // changing the view mode does not require reloading...
2849
+ this.view = params.get('view') || ListViewType.Tiles;
2850
+ // console.log('route changes ', this.view);
2851
+ if (params.get('search') !== this.search) {
2852
+ this.searchChanged(params.get('search'));
2853
+ }
2854
+ const page = +(params.get('page') || 1);
2855
+ if (page !== this.page) {
2856
+ this.page = page;
2857
+ }
2858
+ const size = +(params.get('pagesize') || 20);
2859
+ if (this.pageSize !== size) {
2860
+ this.pageSize = size;
2861
+ }
2862
+ if (params.get('search') !== this.search) {
2863
+ this.search = params.get('search');
2864
+ }
2865
+ if (params.get('sort') !== this.sort) {
2866
+ this.sort = params.get('sort');
2867
+ }
2868
+ if (params.get('sortdir') !== this.sortdir) {
2869
+ this.sortdir = params.get('sortdir');
2870
+ }
2871
+ });
2872
+ // just to sync params in query
2873
+ this.setRouteParams(true);
2874
+ this.load();
2875
+ }
2876
+ setRouteParams(locationChange = false) {
2877
+ this.router$.navigate([], {
2878
+ relativeTo: this.route$, queryParams: {
2879
+ view: this.view,
2880
+ page: this.page,
2881
+ pagesize: this.pageSize,
2882
+ search: this.search,
2883
+ sort: this.sort,
2884
+ dir: this.sortdir
2885
+ }, queryParamsHandling: 'merge', skipLocationChange: locationChange
2886
+ });
2887
+ }
2888
+ actionHandler($event) {
2889
+ // console.log('BaseListComponent actionHandler', $event);
2890
+ if ($event.key === 'refresh') {
2891
+ this.refresh();
2892
+ }
2893
+ }
2894
+ load() {
2895
+ // console.log('BaseListComponent LOAD');
2896
+ this.count = 0;
2897
+ this.items = null;
2898
+ this.loadItems().subscribe(result => {
2899
+ this.count = result ? result.count : 0;
2900
+ this.items = result === null || result === void 0 ? void 0 : result.items;
2901
+ this.updateHeaderMeta();
2902
+ }, err => {
2903
+ this.count = 0;
2904
+ this.items = null;
2905
+ this.updateHeaderMeta();
2906
+ });
2907
+ }
2908
+ updateHeaderMeta() {
2909
+ var _a;
2910
+ const count = (_a = this.metaItems) === null || _a === void 0 ? void 0 : _a.filter(m => m.key === 'count')[0];
2911
+ if (count) {
2912
+ this.count === 1 ? count.text = `${this.count} αποτέλεσμα` : count.text = `${this.count} αποτελέσματα`;
2913
+ }
2914
+ }
2915
+ clear() {
2916
+ this.count = 0;
2917
+ this.page = 1;
2918
+ this.items = null;
2919
+ this.search = null;
2920
+ this.setRouteParams();
2921
+ this.load();
2922
+ }
2923
+ refresh() {
2924
+ this.count = 0;
2925
+ this.page = 1;
2926
+ this.items = null;
2927
+ this.setRouteParams();
2928
+ this.load();
2929
+ }
2930
+ pageChanged(page) {
2931
+ if (this.page !== page) {
2932
+ this.page = page;
2933
+ this.setRouteParams();
2934
+ this.load();
2935
+ }
2936
+ }
2937
+ pageSizeChanged(pageSize) {
2938
+ if (this.pageSize !== pageSize) {
2939
+ this.pageSize = pageSize;
2940
+ this.page = 1;
2941
+ this.setRouteParams();
2942
+ this.refresh();
2943
+ }
2944
+ }
2945
+ sortChanged(sort) {
2946
+ // console.log('base-list sortChanged', sort);
2947
+ if (this.sort !== sort) {
2948
+ this.page = 1;
2949
+ this.sort = sort;
2950
+ this.setRouteParams();
2951
+ this.refresh();
2952
+ }
2953
+ }
2954
+ sortdirChanged(sortdir) {
2955
+ if (this.sortdir !== sortdir) {
2956
+ this.page = 1;
2957
+ this.sortdir = sortdir;
2958
+ this.setRouteParams();
2959
+ this.refresh();
2960
+ }
2961
+ }
2962
+ searchChanged(searchText) {
2963
+ this.count = 0;
2964
+ this.page = 1;
2965
+ this.items = null;
2966
+ this.search = searchText;
2967
+ this.setRouteParams();
2968
+ this.load();
2969
+ }
2970
+ }
2971
+ BaseListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: BaseListComponent, deps: [{ token: i1$1.ActivatedRoute }, { token: i1$1.Router }], target: i0.ɵɵFactoryTarget.Component });
2972
+ BaseListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.0", type: BaseListComponent, selector: "ng-component", ngImport: i0, template: '', isInline: true });
2973
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: BaseListComponent, decorators: [{
2974
+ type: Component,
2975
+ args: [{ template: '' }]
2976
+ }], ctorParameters: function () { return [{ type: i1$1.ActivatedRoute }, { type: i1$1.Router }]; } });
2977
+
2978
+ const cssClassNames = {
2979
+ backdrop: 'modal-backdrop',
2980
+ show: 'show',
2981
+ fade: 'fade',
2982
+ modalOpen: 'modal-open'
2983
+ };
2984
+ const animationTime = {
2985
+ backdrop: 150,
2986
+ modal: 300,
2987
+ };
2988
+
2989
+ /**
2990
+ * Background layer for modals.
2991
+ * Override class name to theme it.
2992
+ * @see {@link cssClassNames}
2993
+ * @internal
2994
+ */
2995
+ class ModalBackdropComponent {
2996
+ constructor(element, renderer) {
2997
+ this.element = element;
2998
+ this.renderer = renderer;
2999
+ this.animationsEnabled = false;
3000
+ }
3001
+ ngOnInit() {
3002
+ if (this.animationsEnabled) {
3003
+ this.renderer.addClass(this.element.nativeElement, cssClassNames.fade);
3004
+ this.reflow(this.element.nativeElement);
3005
+ }
3006
+ this.renderer.addClass(this.element.nativeElement, cssClassNames.show);
3007
+ }
3008
+ hide() {
3009
+ this.renderer.removeClass(this.element.nativeElement, cssClassNames.show);
3010
+ setTimeout(() => { var _a; return (_a = this.backdropLoader) === null || _a === void 0 ? void 0 : _a.hide(); }, this.animationsEnabled ? animationTime.backdrop : 0);
3011
+ }
3012
+ reflow(element) {
3013
+ ((bs) => bs)(element.offsetHeight);
3014
+ }
3015
+ }
3016
+ ModalBackdropComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: ModalBackdropComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component });
3017
+ ModalBackdropComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.0", type: ModalBackdropComponent, selector: "lib-modal-backdrop", host: { classAttribute: "modal-backdrop" }, ngImport: i0, template: '', isInline: true, encapsulation: i0.ViewEncapsulation.None });
3018
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: ModalBackdropComponent, decorators: [{
3019
+ type: Component,
3020
+ args: [{
3021
+ selector: 'lib-modal-backdrop',
3022
+ encapsulation: ViewEncapsulation.None,
3023
+ template: '',
3024
+ host: {
3025
+ class: cssClassNames.backdrop,
3026
+ },
3027
+ }]
3028
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }]; } });
3029
+
3030
+ /**
3031
+ * Modals option can be passed to a specific modal from {@link ModalService.show} or
3032
+ * set globbaly using the injection token {@link MODAL_CONFIG_DEFAULT_OVERRIDE}.
3033
+ * @remarks
3034
+ * Modal specific options are merged with global options.
3035
+ * @see {@link modalConfigDefaults} for defaults.
3036
+ * @public
3037
+ */
3038
+ class ModalOptions {
3039
+ }
3040
+ ModalOptions.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: ModalOptions, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
3041
+ ModalOptions.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: ModalOptions });
3042
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: ModalOptions, decorators: [{
3043
+ type: Injectable
3044
+ }] });
3045
+ /**
3046
+ * Default option values.
3047
+ */
3048
+ const modalConfigDefaults = {
3049
+ backdrop: true,
3050
+ keyboard: true,
3051
+ show: false,
3052
+ ignoreBackdropClick: false,
3053
+ class: '',
3054
+ animated: true,
3055
+ initialState: {},
3056
+ closeInterceptor: void 0,
3057
+ };
3058
+ /**
3059
+ * Use this injection token to set global options.
3060
+ */
3061
+ const MODAL_CONFIG_DEFAULT_OVERRIDE = new InjectionToken('override-default-config');
3062
+
3063
+ /**
3064
+ * Modal container component.
3065
+ * @remarks
3066
+ * All dynamic content `TemplateRef` or `Component` case will be drawn inside this.
3067
+ * You can override css classes to theme it {@link cssClassNames}
3068
+ * @internal
3069
+ */
3070
+ class ModalContainerComponent {
3071
+ constructor(options, _element, renderer) {
3072
+ this._element = _element;
3073
+ this.renderer = renderer;
3074
+ this.isShown = false;
3075
+ this.animationsEnabled = false;
3076
+ this.isModalHiding = false;
3077
+ this.clickStartedInContent = false;
3078
+ this.config = Object.assign({}, options);
3079
+ }
3080
+ ngOnInit() {
3081
+ if (this.animationsEnabled) {
3082
+ this.renderer.addClass(this._element.nativeElement, cssClassNames.fade);
3083
+ }
3084
+ this.renderer.setStyle(this._element.nativeElement, 'display', 'block');
3085
+ setTimeout(() => {
3086
+ this.isShown = true;
3087
+ this.renderer.addClass(this._element.nativeElement, cssClassNames.show);
3088
+ }, this.animationsEnabled ? animationTime.backdrop : 0);
3089
+ if (this._element.nativeElement) {
3090
+ this._element.nativeElement.focus();
3091
+ }
3092
+ }
3093
+ onClickStarted(event) {
3094
+ this.clickStartedInContent = event.target !== this._element.nativeElement;
3095
+ }
3096
+ onClickStop(event) {
3097
+ const clickedInBackdrop = event.target === this._element.nativeElement && !this.clickStartedInContent;
3098
+ if (this.config.ignoreBackdropClick || this.config.backdrop === 'static' || !clickedInBackdrop) {
3099
+ this.clickStartedInContent = false;
3100
+ return;
3101
+ }
3102
+ this.hide();
3103
+ }
3104
+ onPopState() {
3105
+ this.hide();
3106
+ }
3107
+ onEsc(event) {
3108
+ var _a;
3109
+ if (!this.isShown) {
3110
+ return;
3111
+ }
3112
+ if (event.keyCode === 27 || event.key === 'Escape' || event.key === 'Esc') {
3113
+ event.preventDefault();
3114
+ }
3115
+ if (this.config.keyboard && this.config.id === ((_a = this.modalService) === null || _a === void 0 ? void 0 : _a.getActiveModal().config.id)) {
3116
+ this.hide();
3117
+ }
3118
+ }
3119
+ ngOnDestroy() {
3120
+ if (this.isShown) {
3121
+ this._hide();
3122
+ }
3123
+ }
3124
+ hide(result) {
3125
+ if (this.isModalHiding || !this.isShown) {
3126
+ return;
3127
+ }
3128
+ if (this.config.closeInterceptor) {
3129
+ this.config.closeInterceptor().then(() => this._hide(), () => undefined);
3130
+ return;
3131
+ }
3132
+ this._hide(result);
3133
+ }
3134
+ _hide(result) {
3135
+ this.isModalHiding = true;
3136
+ this.renderer.removeClass(this._element.nativeElement, cssClassNames.show);
3137
+ setTimeout(() => {
3138
+ var _a;
3139
+ this.isShown = false;
3140
+ (_a = this.modalService) === null || _a === void 0 ? void 0 : _a.hide(this.config.id, result);
3141
+ this.isModalHiding = false;
3142
+ }, this.animationsEnabled ? animationTime.modal : 0);
3143
+ }
3144
+ }
3145
+ ModalContainerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: ModalContainerComponent, deps: [{ token: ModalOptions }, { token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component });
3146
+ ModalContainerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.0", type: ModalContainerComponent, selector: "lib-modal-container", host: { attributes: { "role": "dialog", "tabindex": "-1" }, listeners: { "mousedown": "onClickStarted($event)", "click": "onClickStop($event)", "window:popstate": "onPopState()", "window:keydown.esc": "onEsc($event)" }, properties: { "attr.aria-modal": "true", "attr.aria-labelledby": "config.ariaLabelledBy", "attr.aria-describedby": "config.ariaDescribedby" }, classAttribute: "modal" }, ngImport: i0, template: `
3147
+ <div [class]="'modal-dialog' + (config.class ? ' ' + config.class : '')" role="document" focusTrap>
3148
+ <div class="modal-content">
3149
+ <ng-content></ng-content>
3150
+ </div>
3151
+ </div>
3152
+ `, isInline: true });
3153
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: ModalContainerComponent, decorators: [{
3154
+ type: Component,
3155
+ args: [{
3156
+ selector: 'lib-modal-container',
3157
+ template: `
3158
+ <div [class]="'modal-dialog' + (config.class ? ' ' + config.class : '')" role="document" focusTrap>
3159
+ <div class="modal-content">
3160
+ <ng-content></ng-content>
3161
+ </div>
3162
+ </div>
3163
+ `,
3164
+ host: {
3165
+ class: 'modal',
3166
+ role: 'dialog',
3167
+ tabindex: '-1',
3168
+ '[attr.aria-modal]': 'true',
3169
+ '[attr.aria-labelledby]': 'config.ariaLabelledBy',
3170
+ '[attr.aria-describedby]': 'config.ariaDescribedby',
3171
+ },
3172
+ }]
3173
+ }], ctorParameters: function () { return [{ type: ModalOptions }, { type: i0.ElementRef }, { type: i0.Renderer2 }]; }, propDecorators: { onClickStarted: [{
3174
+ type: HostListener,
3175
+ args: ['mousedown', ['$event']]
3176
+ }], onClickStop: [{
3177
+ type: HostListener,
3178
+ args: ['click', ['$event']]
3179
+ }], onPopState: [{
3180
+ type: HostListener,
3181
+ args: ['window:popstate']
3182
+ }], onEsc: [{
3183
+ type: HostListener,
3184
+ args: ['window:keydown.esc', ['$event']]
3185
+ }] } });
3186
+
3187
+ /**
3188
+ * Modal class.
3189
+ * @remarks
3190
+ * This is returned from {@link ModalService.show}.
3191
+ * @public
3192
+ */
3193
+ class Modal {
3194
+ constructor() {
3195
+ /**
3196
+ * Hides the modal
3197
+ * @param result - A result to the observers.
3198
+ */
3199
+ this.hide = () => void 0;
3200
+ /**
3201
+ * Sets new class to modal window.
3202
+ */
3203
+ this.setClass = () => void 0;
3204
+ }
3205
+ }
3206
+ Modal.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: Modal, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
3207
+ Modal.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: Modal });
3208
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: Modal, decorators: [{
3209
+ type: Injectable
3210
+ }] });
3211
+
3212
+ /**
3213
+ * A service for using modals.
3214
+ *
3215
+ * @public
3216
+ */
3217
+ class ModalService {
3218
+ constructor(clf, rendererFactory, document, modalDefaultOption) {
3219
+ this.clf = clf;
3220
+ this.document = document;
3221
+ this.onBeforeShow = new Subject();
3222
+ this.onShown = new Subject();
3223
+ this.onBeforeHide = new Subject();
3224
+ this.onHidden = new Subject();
3225
+ this.loaders = [];
3226
+ this.modalsCount = 0;
3227
+ this.initialPadding = '0px';
3228
+ this.backdropLoader = this.clf.createLoader();
3229
+ this.defaultConfig = Object.assign(Object.assign({}, modalConfigDefaults), modalDefaultOption);
3230
+ this.renderer = rendererFactory.createRenderer(null, null);
3231
+ }
3232
+ ngOnDestroy() {
3233
+ this.loaders.forEach((loader) => { var _a; return (_a = loader.instance) === null || _a === void 0 ? void 0 : _a.hide(); });
3234
+ }
3235
+ /**
3236
+ * Opens a new modal.
3237
+ *
3238
+ * @param content - `Component` or `TemplateRef` type.
3239
+ * @param config - Specific {@link ModalOptions | options} for this modal. Global and specific options are merged.
3240
+ * @returns An instance of {@link Modal}
3241
+ */
3242
+ show(content, config) {
3243
+ this.modalsCount++;
3244
+ const combinedConfig = Object.assign(Object.assign({}, this.defaultConfig), config);
3245
+ combinedConfig.id = (config === null || config === void 0 ? void 0 : config.id) || new Date().getUTCMilliseconds();
3246
+ this.createLoaders();
3247
+ this.addBodyPadding();
3248
+ if (this.modalsCount === 1) {
3249
+ this.renderer.addClass(this.document.body, cssClassNames.modalOpen);
3250
+ }
3251
+ this.showBackdrop(combinedConfig);
3252
+ return this.showModal(content, combinedConfig);
3253
+ }
3254
+ /**
3255
+ * Hide an active modal.
3256
+ * @param id - Id of modal to hide. If not provided all active modals are hidden.
3257
+ * @param result - A result to be sent to observers.
3258
+ */
3259
+ hide(id, result) {
3260
+ if (this.modalsCount === 1 || id == null) {
3261
+ this.hideBackdrop();
3262
+ this.revertScrollbar();
3263
+ this.renderer.removeClass(this.document.body, cssClassNames.modalOpen);
3264
+ }
3265
+ this.modalsCount = this.modalsCount >= 1 && id != null ? this.modalsCount - 1 : 0;
3266
+ setTimeout(() => {
3267
+ this.hideModal(id, result);
3268
+ this.removeLoaders(id);
3269
+ },
3270
+ //Bug
3271
+ //Should use combined config but for the moment is not possible to pass it this parameter.
3272
+ //If config is an instance variable then every newly opened modal will override the config
3273
+ //resulting in opened modals to get a new configuration
3274
+ this.defaultConfig.animated ? animationTime.backdrop : 0);
3275
+ }
3276
+ getActiveModal() {
3277
+ return this.loaders[this.modalsCount - 1].instance;
3278
+ }
3279
+ showModal(content, combinedConfig) {
3280
+ var _a;
3281
+ const modalLoader = this.loaders[this.loaders.length - 1];
3282
+ if (combinedConfig && combinedConfig.providers) {
3283
+ combinedConfig.providers.forEach((provider) => modalLoader.provide(provider));
3284
+ }
3285
+ const modal = new Modal();
3286
+ const modalContainerRef = modalLoader
3287
+ .provide({ provide: ModalOptions, useValue: combinedConfig })
3288
+ .provide({ provide: Modal, useValue: modal })
3289
+ .attach(ModalContainerComponent)
3290
+ .to('body');
3291
+ modal.setClass = (newClass) => {
3292
+ if (modalContainerRef.instance) {
3293
+ modalContainerRef.instance.config.class = newClass;
3294
+ }
3295
+ };
3296
+ modal.onBeforeHide = new Subject();
3297
+ modal.onHidden = new Subject();
3298
+ this.copyEvent(modalLoader.onBeforeHide, modal.onBeforeHide);
3299
+ this.copyEvent(modalLoader.onHidden, modal.onHidden);
3300
+ modalContainerRef.show({
3301
+ content,
3302
+ animationsEnabled: combinedConfig.animated,
3303
+ initialState: combinedConfig.initialState,
3304
+ modalService: this,
3305
+ id: combinedConfig.id,
3306
+ });
3307
+ if (modalContainerRef.instance) {
3308
+ modalContainerRef.instance.level = this.modalsCount;
3309
+ modal.content = modalLoader.getInnerComponent();
3310
+ modal.id = (_a = modalContainerRef.instance.config) === null || _a === void 0 ? void 0 : _a.id;
3311
+ modal.hide = (res) => { var _a; return (_a = modalContainerRef.instance) === null || _a === void 0 ? void 0 : _a.hide(res); };
3312
+ }
3313
+ return modal;
3314
+ }
3315
+ hideModal(id, result) {
3316
+ if (id != null) {
3317
+ const indexToRemove = this.loaders.findIndex((loader) => { var _a; return ((_a = loader.instance) === null || _a === void 0 ? void 0 : _a.config.id) === id; });
3318
+ const modalLoader = this.loaders[indexToRemove];
3319
+ if (modalLoader) {
3320
+ modalLoader.hide(id, result);
3321
+ }
3322
+ }
3323
+ else {
3324
+ this.loaders.forEach((loader) => {
3325
+ if (loader.instance) {
3326
+ loader.hide(loader.instance.config.id);
3327
+ }
3328
+ });
3329
+ }
3330
+ }
3331
+ showBackdrop(combinedConfig) {
3332
+ const isBackdropEnabled = combinedConfig.backdrop === true || combinedConfig.backdrop === 'static';
3333
+ const isBackdropInDOM = this.backdropRef != null;
3334
+ if (isBackdropEnabled && !isBackdropInDOM) {
3335
+ this.backdropLoader
3336
+ .attach(ModalBackdropComponent)
3337
+ .to('body')
3338
+ .show({ animationsEnabled: combinedConfig.animated, backdropLoader: this.backdropLoader });
3339
+ this.backdropRef = this.backdropLoader.componentRef;
3340
+ }
3341
+ }
3342
+ hideBackdrop() {
3343
+ if (!this.backdropRef) {
3344
+ return;
3345
+ }
3346
+ this.backdropRef.instance.hide();
3347
+ this.backdropRef = void 0;
3348
+ }
3349
+ removeLoaders(id) {
3350
+ if (id != null) {
3351
+ const indexToRemove = this.loaders.findIndex((loader) => { var _a; return ((_a = loader.instance) === null || _a === void 0 ? void 0 : _a.config.id) === id; });
3352
+ if (indexToRemove >= 0) {
3353
+ this.loaders.splice(indexToRemove, 1);
3354
+ this.loaders.forEach((loader, i) => {
3355
+ if (loader.instance) {
3356
+ loader.instance.level = i + 1;
3357
+ }
3358
+ });
3359
+ }
3360
+ }
3361
+ else {
3362
+ this.loaders.splice(0, this.loaders.length);
3363
+ }
3364
+ }
3365
+ addBodyPadding() {
3366
+ if (this.modalsCount === 1) {
3367
+ const width = this.getScrollbarWidth();
3368
+ if (this.isScrollBarPresent(width)) {
3369
+ this.initialPadding = this.document.body.style.paddingRight;
3370
+ const actualPadding = parseFloat(window.getComputedStyle(this.document.body).paddingRight);
3371
+ this.document.body.style.paddingRight = `${actualPadding + width}px`;
3372
+ }
3373
+ }
3374
+ }
3375
+ revertScrollbar() {
3376
+ this.document.body.style.paddingRight = this.initialPadding;
3377
+ }
3378
+ getScrollbarWidth() {
3379
+ const measurer = this.document.createElement('div');
3380
+ measurer.className = 'modal-scrollbar-measure';
3381
+ const body = this.document.body;
3382
+ body.appendChild(measurer);
3383
+ const width = measurer.getBoundingClientRect().width - measurer.clientWidth;
3384
+ body.removeChild(measurer);
3385
+ return width;
3386
+ }
3387
+ isScrollBarPresent(scrollbarWidth) {
3388
+ const rect = this.document.body.getBoundingClientRect();
3389
+ const bodyToViewportGap = window.innerWidth - (rect.left + rect.right);
3390
+ const uncertainty = 0.1 * scrollbarWidth;
3391
+ return bodyToViewportGap >= scrollbarWidth - uncertainty;
3392
+ }
3393
+ createLoaders() {
3394
+ const loader = this.clf.createLoader();
3395
+ this.copyEvent(loader.onBeforeShow, this.onBeforeShow);
3396
+ this.copyEvent(loader.onShown, this.onShown);
3397
+ this.copyEvent(loader.onBeforeHide, this.onBeforeHide);
3398
+ this.copyEvent(loader.onHidden, this.onHidden);
3399
+ this.loaders.push(loader);
3400
+ }
3401
+ copyEvent(from, to) {
3402
+ from.subscribe((data) => {
3403
+ to.next(data);
3404
+ });
3405
+ }
3406
+ }
3407
+ ModalService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: ModalService, deps: [{ token: ComponentLoaderFactory }, { token: i0.RendererFactory2 }, { token: DOCUMENT }, { token: MODAL_CONFIG_DEFAULT_OVERRIDE, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
3408
+ ModalService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: ModalService });
3409
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: ModalService, decorators: [{
3410
+ type: Injectable
3411
+ }], ctorParameters: function () {
3412
+ return [{ type: ComponentLoaderFactory }, { type: i0.RendererFactory2 }, { type: undefined, decorators: [{
3413
+ type: Inject,
3414
+ args: [DOCUMENT]
3415
+ }] }, { type: ModalOptions, decorators: [{
3416
+ type: Optional
3417
+ }, {
3418
+ type: Inject,
3419
+ args: [MODAL_CONFIG_DEFAULT_OVERRIDE]
3420
+ }] }];
3421
+ } });
3422
+
3423
+ class IndiceComponentsModule {
3424
+ // tslint:disable-next-line:typedef
3425
+ static forRoot() {
3426
+ return {
3427
+ ngModule: IndiceComponentsModule,
3428
+ providers: [ToasterService]
3429
+ };
3430
+ }
3431
+ }
3432
+ IndiceComponentsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: IndiceComponentsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
3433
+ IndiceComponentsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.0.0", ngImport: i0, type: IndiceComponentsModule, declarations: [
3434
+ // Directives
3435
+ ClickOutsideDirective,
3436
+ DynamicComponentHostDirective,
3437
+ // Controls
3438
+ DropDownMenuComponent,
3439
+ PagerComponent,
3440
+ ListViewComponent,
3441
+ ListColumnComponent,
3442
+ ListTileComponent,
3443
+ ListDetailsSectionComponent,
3444
+ ListViewEmptyStateComponent,
3445
+ SkeletonLoaderComponent,
3446
+ CollapsiblePanelComponent,
3447
+ KpiTileComponent,
3448
+ SidePaneComponent,
3449
+ DatepickerComponent,
3450
+ AvatarInitialsComponent,
3451
+ ToggleComponent,
3452
+ ComboboxComponent,
3453
+ // Toaster
3454
+ ToasterContainerComponent,
3455
+ ToasterComponent,
3456
+ // Shell Layout
3457
+ ShellLayoutComponent,
3458
+ ShellHeaderComponent,
3459
+ ShellFooterComponent,
3460
+ // View Layouts
3461
+ ViewLayoutComponent,
3462
+ SideViewLayoutComponent,
3463
+ ModelViewLayoutComponent,
3464
+ FormLayoutComponent,
3465
+ // Pages (common)
3466
+ AuthCallbackComponent,
3467
+ AuthRenewComponent,
3468
+ LoggedOutComponent,
3469
+ ErrorComponent,
3470
+ PageNotFoundComponent,
3471
+ UnauthorizedComponent,
3472
+ // Pipes
3473
+ AddressPipe,
3474
+ DurationFormatPipe,
3475
+ NavLinksListComponent,
3476
+ NotificationsIndicatorComponent,
3477
+ LanguageSelectionComponent,
3478
+ UserProfileMenuComponent,
3479
+ ShellSidebarComponent,
3480
+ // Tab Group Component
3481
+ LibTabComponent,
3482
+ LibTabGroupComponent
3483
+ ], imports: [CommonModule,
3484
+ RouterModule,
3485
+ IndiceAuthModule], exports: [AddressPipe,
3486
+ AuthCallbackComponent,
3487
+ AuthRenewComponent,
3488
+ AvatarInitialsComponent,
3489
+ ClickOutsideDirective,
3490
+ CollapsiblePanelComponent,
3491
+ ComboboxComponent,
3492
+ DatepickerComponent,
3493
+ DropDownMenuComponent,
3494
+ DurationFormatPipe,
3495
+ ErrorComponent,
3496
+ FormLayoutComponent,
3497
+ KpiTileComponent,
3498
+ LibTabComponent,
3499
+ LibTabGroupComponent,
3500
+ ListColumnComponent,
3501
+ ListDetailsSectionComponent,
3502
+ ListTileComponent,
3503
+ ListViewComponent,
3504
+ ListViewEmptyStateComponent,
3505
+ LoggedOutComponent,
3506
+ ModelViewLayoutComponent,
3507
+ PageNotFoundComponent,
3508
+ PagerComponent,
3509
+ ShellFooterComponent,
3510
+ ShellHeaderComponent,
3511
+ ShellLayoutComponent,
3512
+ SidePaneComponent,
3513
+ SideViewLayoutComponent,
3514
+ SkeletonLoaderComponent,
3515
+ ToasterComponent,
3516
+ ToasterContainerComponent,
3517
+ ToggleComponent,
3518
+ UnauthorizedComponent,
3519
+ ViewLayoutComponent] });
3520
+ IndiceComponentsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: IndiceComponentsModule, imports: [CommonModule,
3521
+ RouterModule,
3522
+ IndiceAuthModule] });
3523
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.0", ngImport: i0, type: IndiceComponentsModule, decorators: [{
3524
+ type: NgModule,
3525
+ args: [{
3526
+ declarations: [
3527
+ // Directives
3528
+ ClickOutsideDirective,
3529
+ DynamicComponentHostDirective,
3530
+ // Controls
3531
+ DropDownMenuComponent,
3532
+ PagerComponent,
3533
+ ListViewComponent,
3534
+ ListColumnComponent,
3535
+ ListTileComponent,
3536
+ ListDetailsSectionComponent,
3537
+ ListViewEmptyStateComponent,
3538
+ SkeletonLoaderComponent,
3539
+ CollapsiblePanelComponent,
3540
+ KpiTileComponent,
3541
+ SidePaneComponent,
3542
+ DatepickerComponent,
3543
+ AvatarInitialsComponent,
3544
+ ToggleComponent,
3545
+ ComboboxComponent,
3546
+ // Toaster
3547
+ ToasterContainerComponent,
3548
+ ToasterComponent,
3549
+ // Shell Layout
3550
+ ShellLayoutComponent,
3551
+ ShellHeaderComponent,
3552
+ ShellFooterComponent,
3553
+ // View Layouts
3554
+ ViewLayoutComponent,
3555
+ SideViewLayoutComponent,
3556
+ ModelViewLayoutComponent,
3557
+ FormLayoutComponent,
3558
+ // Pages (common)
3559
+ AuthCallbackComponent,
3560
+ AuthRenewComponent,
3561
+ LoggedOutComponent,
3562
+ ErrorComponent,
3563
+ PageNotFoundComponent,
3564
+ UnauthorizedComponent,
3565
+ // Pipes
3566
+ AddressPipe,
3567
+ DurationFormatPipe,
3568
+ NavLinksListComponent,
3569
+ NotificationsIndicatorComponent,
3570
+ LanguageSelectionComponent,
3571
+ UserProfileMenuComponent,
3572
+ ShellSidebarComponent,
3573
+ // Tab Group Component
3574
+ LibTabComponent,
3575
+ LibTabGroupComponent
3576
+ ],
3577
+ imports: [
3578
+ CommonModule,
3579
+ RouterModule,
3580
+ IndiceAuthModule
3581
+ ],
3582
+ exports: [
3583
+ AddressPipe,
3584
+ AuthCallbackComponent,
3585
+ AuthRenewComponent,
3586
+ AvatarInitialsComponent,
3587
+ ClickOutsideDirective,
3588
+ CollapsiblePanelComponent,
3589
+ ComboboxComponent,
3590
+ DatepickerComponent,
3591
+ DropDownMenuComponent,
3592
+ DurationFormatPipe,
3593
+ ErrorComponent,
3594
+ FormLayoutComponent,
3595
+ KpiTileComponent,
3596
+ LibTabComponent,
3597
+ LibTabGroupComponent,
3598
+ ListColumnComponent,
3599
+ ListDetailsSectionComponent,
3600
+ ListTileComponent,
3601
+ ListViewComponent,
3602
+ ListViewEmptyStateComponent,
3603
+ LoggedOutComponent,
3604
+ ModelViewLayoutComponent,
3605
+ PageNotFoundComponent,
3606
+ PagerComponent,
3607
+ ShellFooterComponent,
3608
+ ShellHeaderComponent,
3609
+ ShellLayoutComponent,
3610
+ SidePaneComponent,
3611
+ SideViewLayoutComponent,
3612
+ SkeletonLoaderComponent,
3613
+ ToasterComponent,
3614
+ ToasterContainerComponent,
3615
+ ToggleComponent,
3616
+ UnauthorizedComponent,
3617
+ ViewLayoutComponent
3618
+ ]
3619
+ }]
3620
+ }] });
3621
+
3622
+ // Public API Surface of @indice/ng-components
3623
+
3624
+ /**
3625
+ * Generated bundle index. Do not edit.
3626
+ */
3627
+
3628
+ export { APP_LANGUAGES, APP_LINKS, APP_NOTIFICATIONS, AddressPipe, AuthCallbackComponent, AuthRenewComponent, AvatarInitialsComponent, BaseListComponent, ClickOutsideDirective, CollapsiblePanelComponent, ComboboxComponent, ComponentLoaderFactory, DatepickerComponent, DefaultShellConfig, DropDownMenuComponent, DurationFormatPipe, ErrorComponent, ExternalNavLink, FormLayoutComponent, FragmentNavLink, HeaderMetaItem, Icons, IndiceComponentsModule, KpiTileComponent, LIBTABGROUP_ACCESSOR, LibTabComponent, LibTabGroupComponent, ListColumnComponent, ListDetailsSectionComponent, ListTileComponent, ListViewComponent, ListViewEmptyStateComponent, ListViewType, LoggedOutComponent, MODAL_CONFIG_DEFAULT_OVERRIDE, MenuOption, Modal, ModalOptions, ModalService, ModelViewLayoutComponent, NULL_TOAST, NavLink, NavLinksListComponent, NotificationNavLink, PageNotFoundComponent, PagerComponent, RouterViewAction, SCREEN_SIZE, SHELL_CONFIG, ShellFooterComponent, ShellHeaderComponent, ShellLayoutComponent, ShellLayoutType, SidePaneComponent, SidePaneOverlayType, SidePaneSize, SideViewLayoutComponent, SkeletonLoaderComponent, SwitchViewAction, ToastType, ToasterComponent, ToasterContainerComponent, ToasterService, ToggleComponent, UnauthorizedComponent, ViewAction, ViewLayoutComponent };
3629
+ //# sourceMappingURL=indice-ng-components.mjs.map