@stemy/ngx-utils 13.0.2 → 13.0.5

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 (169) hide show
  1. package/esm2020/ngx-utils/common-types.mjs +1 -1
  2. package/esm2020/ngx-utils/components/dynamic-table/dynamic-table.component.mjs +67 -296
  3. package/esm2020/ngx-utils/components/pagination-menu/pagination-menu.component.mjs +18 -108
  4. package/esm2020/ngx-utils/components/unordered-list/unordered-list.component.mjs +31 -227
  5. package/esm2020/ngx-utils/directives/async-method.base.mjs +34 -24
  6. package/esm2020/ngx-utils/directives/async-method.directive.mjs +14 -21
  7. package/esm2020/ngx-utils/directives/background.directive.mjs +13 -13
  8. package/esm2020/ngx-utils/directives/dynamic-table-template.directive.mjs +13 -13
  9. package/esm2020/ngx-utils/directives/global-template.directive.mjs +15 -15
  10. package/esm2020/ngx-utils/directives/icon.directive.mjs +26 -30
  11. package/esm2020/ngx-utils/directives/ngx-template-outlet.directive.mjs +15 -15
  12. package/esm2020/ngx-utils/directives/pagination-item.directive.mjs +9 -9
  13. package/esm2020/ngx-utils/directives/pagination.directive.mjs +25 -25
  14. package/esm2020/ngx-utils/directives/resource-if.directive.mjs +12 -12
  15. package/esm2020/ngx-utils/directives/sticky-class.directive.mjs +11 -11
  16. package/esm2020/ngx-utils/directives/sticky.directive.mjs +21 -25
  17. package/esm2020/ngx-utils/directives/unordered-list-item.directive.mjs +28 -28
  18. package/esm2020/ngx-utils/directives/unordered-list-template.directive.mjs +13 -13
  19. package/esm2020/ngx-utils/ngx-utils.imports.mjs +165 -0
  20. package/esm2020/ngx-utils/ngx-utils.module.mjs +98 -257
  21. package/esm2020/ngx-utils/pipes/chunk.pipe.mjs +9 -9
  22. package/esm2020/ngx-utils/pipes/entries.pipe.mjs +9 -9
  23. package/esm2020/ngx-utils/pipes/extra-item-properties.pipe.mjs +9 -9
  24. package/esm2020/ngx-utils/pipes/filter.pipe.mjs +9 -9
  25. package/esm2020/ngx-utils/pipes/find.pipe.mjs +9 -9
  26. package/esm2020/ngx-utils/pipes/format-number.pipe.mjs +9 -9
  27. package/esm2020/ngx-utils/pipes/get-offset.pipe.mjs +9 -9
  28. package/esm2020/ngx-utils/pipes/get-type.pipe.mjs +9 -9
  29. package/esm2020/ngx-utils/pipes/global-template.pipe.mjs +13 -13
  30. package/esm2020/ngx-utils/pipes/group-by.pipe.mjs +9 -9
  31. package/esm2020/ngx-utils/pipes/is-type.pipe.mjs +9 -9
  32. package/esm2020/ngx-utils/pipes/join.pipe.mjs +9 -9
  33. package/esm2020/ngx-utils/pipes/keys.pipe.mjs +9 -9
  34. package/esm2020/ngx-utils/pipes/map.pipe.mjs +9 -9
  35. package/esm2020/ngx-utils/pipes/max.pipe.mjs +9 -9
  36. package/esm2020/ngx-utils/pipes/min.pipe.mjs +9 -9
  37. package/esm2020/ngx-utils/pipes/reduce.pipe.mjs +9 -9
  38. package/esm2020/ngx-utils/pipes/remap.pipe.mjs +9 -9
  39. package/esm2020/ngx-utils/pipes/replace.pipe.mjs +9 -9
  40. package/esm2020/ngx-utils/pipes/reverse.pipe.mjs +9 -9
  41. package/esm2020/ngx-utils/pipes/round.pipe.mjs +9 -9
  42. package/esm2020/ngx-utils/pipes/safe-html.pipe.mjs +9 -9
  43. package/esm2020/ngx-utils/pipes/translate.pipe.mjs +16 -16
  44. package/esm2020/ngx-utils/pipes/values.pipe.mjs +9 -9
  45. package/esm2020/ngx-utils/plugins/resize-event.plugin.mjs +9 -9
  46. package/esm2020/ngx-utils/plugins/scroll-event.plugin.mjs +9 -9
  47. package/esm2020/ngx-utils/services/acl.service.mjs +9 -9
  48. package/esm2020/ngx-utils/services/api.service.mjs +6 -6
  49. package/esm2020/ngx-utils/services/base-http.client.mjs +6 -6
  50. package/esm2020/ngx-utils/services/base-http.service.mjs +26 -26
  51. package/esm2020/ngx-utils/services/config.service.mjs +27 -31
  52. package/esm2020/ngx-utils/services/error-handler.service.mjs +6 -6
  53. package/esm2020/ngx-utils/services/events.service.mjs +6 -6
  54. package/esm2020/ngx-utils/services/formatter.service.mjs +9 -9
  55. package/esm2020/ngx-utils/services/global-template.service.mjs +6 -6
  56. package/esm2020/ngx-utils/services/icon.service.mjs +6 -6
  57. package/esm2020/ngx-utils/services/language.service.mjs +6 -6
  58. package/esm2020/ngx-utils/services/open-api.service.mjs +9 -9
  59. package/esm2020/ngx-utils/services/promise.service.mjs +9 -9
  60. package/esm2020/ngx-utils/services/state.service.mjs +8 -8
  61. package/esm2020/ngx-utils/services/static-language.service.mjs +21 -21
  62. package/esm2020/ngx-utils/services/storage.service.mjs +6 -6
  63. package/esm2020/ngx-utils/services/toaster.service.mjs +9 -9
  64. package/esm2020/ngx-utils/services/translated-url.serializer.mjs +9 -9
  65. package/esm2020/ngx-utils/services/universal.service.mjs +9 -9
  66. package/esm2020/ngx-utils/utils/auth.guard.mjs +15 -15
  67. package/fesm2015/stemy-ngx-utils.mjs +344 -1186
  68. package/fesm2015/stemy-ngx-utils.mjs.map +1 -1
  69. package/fesm2020/stemy-ngx-utils.mjs +802 -1373
  70. package/fesm2020/stemy-ngx-utils.mjs.map +1 -1
  71. package/ngx-utils/common-types.d.ts +1 -0
  72. package/ngx-utils/directives/async-method.base.d.ts +4 -4
  73. package/ngx-utils/directives/async-method.directive.d.ts +1 -2
  74. package/ngx-utils/ngx-utils.module.d.ts +51 -73
  75. package/ngx-utils/services/config.service.d.ts +3 -2
  76. package/package.json +1 -4
  77. package/bundles/stemy-ngx-utils.umd.js +0 -6121
  78. package/bundles/stemy-ngx-utils.umd.js.map +0 -1
  79. package/bundles/stemy-ngx-utils.umd.min.js +0 -16
  80. package/bundles/stemy-ngx-utils.umd.min.js.map +0 -1
  81. package/esm2015/ngx-utils/common-types.js +0 -116
  82. package/esm2015/ngx-utils/components/dynamic-table/dynamic-table.component.js +0 -139
  83. package/esm2015/ngx-utils/components/pagination-menu/pagination-menu.component.js +0 -96
  84. package/esm2015/ngx-utils/components/unordered-list/unordered-list.component.js +0 -51
  85. package/esm2015/ngx-utils/directives/async-method.base.js +0 -54
  86. package/esm2015/ngx-utils/directives/async-method.directive.js +0 -24
  87. package/esm2015/ngx-utils/directives/background.directive.js +0 -51
  88. package/esm2015/ngx-utils/directives/dynamic-table-template.directive.js +0 -19
  89. package/esm2015/ngx-utils/directives/global-template.directive.js +0 -27
  90. package/esm2015/ngx-utils/directives/icon.directive.js +0 -59
  91. package/esm2015/ngx-utils/directives/ngx-template-outlet.directive.js +0 -88
  92. package/esm2015/ngx-utils/directives/pagination-item.directive.js +0 -33
  93. package/esm2015/ngx-utils/directives/pagination.directive.js +0 -76
  94. package/esm2015/ngx-utils/directives/resource-if.directive.js +0 -51
  95. package/esm2015/ngx-utils/directives/sticky-class.directive.js +0 -35
  96. package/esm2015/ngx-utils/directives/sticky.directive.js +0 -48
  97. package/esm2015/ngx-utils/directives/unordered-list-item.directive.js +0 -70
  98. package/esm2015/ngx-utils/directives/unordered-list-template.directive.js +0 -26
  99. package/esm2015/ngx-utils/ngx-utils.module.js +0 -238
  100. package/esm2015/ngx-utils/pipes/chunk.pipe.js +0 -21
  101. package/esm2015/ngx-utils/pipes/entries.pipe.js +0 -24
  102. package/esm2015/ngx-utils/pipes/extra-item-properties.pipe.js +0 -27
  103. package/esm2015/ngx-utils/pipes/filter.pipe.js +0 -38
  104. package/esm2015/ngx-utils/pipes/find.pipe.js +0 -25
  105. package/esm2015/ngx-utils/pipes/format-number.pipe.js +0 -19
  106. package/esm2015/ngx-utils/pipes/get-offset.pipe.js +0 -13
  107. package/esm2015/ngx-utils/pipes/get-type.pipe.js +0 -12
  108. package/esm2015/ngx-utils/pipes/global-template.pipe.js +0 -37
  109. package/esm2015/ngx-utils/pipes/group-by.pipe.js +0 -23
  110. package/esm2015/ngx-utils/pipes/is-type.pipe.js +0 -12
  111. package/esm2015/ngx-utils/pipes/join.pipe.js +0 -15
  112. package/esm2015/ngx-utils/pipes/keys.pipe.js +0 -18
  113. package/esm2015/ngx-utils/pipes/map.pipe.js +0 -25
  114. package/esm2015/ngx-utils/pipes/max.pipe.js +0 -22
  115. package/esm2015/ngx-utils/pipes/min.pipe.js +0 -22
  116. package/esm2015/ngx-utils/pipes/reduce.pipe.js +0 -26
  117. package/esm2015/ngx-utils/pipes/remap.pipe.js +0 -28
  118. package/esm2015/ngx-utils/pipes/replace.pipe.js +0 -12
  119. package/esm2015/ngx-utils/pipes/reverse.pipe.js +0 -20
  120. package/esm2015/ngx-utils/pipes/round.pipe.js +0 -19
  121. package/esm2015/ngx-utils/pipes/safe-html.pipe.js +0 -32
  122. package/esm2015/ngx-utils/pipes/translate.pipe.js +0 -81
  123. package/esm2015/ngx-utils/pipes/values.pipe.js +0 -18
  124. package/esm2015/ngx-utils/plugins/resize-event.plugin.js +0 -56
  125. package/esm2015/ngx-utils/plugins/scroll-event.plugin.js +0 -36
  126. package/esm2015/ngx-utils/services/acl.service.js +0 -79
  127. package/esm2015/ngx-utils/services/api.service.js +0 -35
  128. package/esm2015/ngx-utils/services/auth.service.js +0 -14
  129. package/esm2015/ngx-utils/services/base-http.client.js +0 -46
  130. package/esm2015/ngx-utils/services/base-http.service.js +0 -285
  131. package/esm2015/ngx-utils/services/config.service.js +0 -122
  132. package/esm2015/ngx-utils/services/error-handler.service.js +0 -49
  133. package/esm2015/ngx-utils/services/events.service.js +0 -24
  134. package/esm2015/ngx-utils/services/formatter.service.js +0 -44
  135. package/esm2015/ngx-utils/services/global-template.service.js +0 -35
  136. package/esm2015/ngx-utils/services/icon.service.js +0 -24
  137. package/esm2015/ngx-utils/services/language.service.js +0 -117
  138. package/esm2015/ngx-utils/services/open-api.service.js +0 -41
  139. package/esm2015/ngx-utils/services/promise.service.js +0 -52
  140. package/esm2015/ngx-utils/services/state.service.js +0 -181
  141. package/esm2015/ngx-utils/services/static-language.service.js +0 -152
  142. package/esm2015/ngx-utils/services/storage.service.js +0 -48
  143. package/esm2015/ngx-utils/services/toaster.service.js +0 -29
  144. package/esm2015/ngx-utils/services/translated-url.serializer.js +0 -70
  145. package/esm2015/ngx-utils/services/universal.service.js +0 -75
  146. package/esm2015/ngx-utils/utils/ajax-request-handler.js +0 -40
  147. package/esm2015/ngx-utils/utils/array.utils.js +0 -100
  148. package/esm2015/ngx-utils/utils/auth.guard.js +0 -156
  149. package/esm2015/ngx-utils/utils/canvas.utils.js +0 -388
  150. package/esm2015/ngx-utils/utils/date.utils.js +0 -28
  151. package/esm2015/ngx-utils/utils/file.utils.js +0 -90
  152. package/esm2015/ngx-utils/utils/generic-value.js +0 -20
  153. package/esm2015/ngx-utils/utils/geometry.js +0 -132
  154. package/esm2015/ngx-utils/utils/initializer.js +0 -20
  155. package/esm2015/ngx-utils/utils/loader.utils.js +0 -55
  156. package/esm2015/ngx-utils/utils/math.utils.js +0 -15
  157. package/esm2015/ngx-utils/utils/object.utils.js +0 -263
  158. package/esm2015/ngx-utils/utils/observable.utils.js +0 -63
  159. package/esm2015/ngx-utils/utils/reflect.utils.js +0 -33
  160. package/esm2015/ngx-utils/utils/set.utils.js +0 -20
  161. package/esm2015/ngx-utils/utils/string.utils.js +0 -28
  162. package/esm2015/ngx-utils/utils/timer.utils.js +0 -52
  163. package/esm2015/ngx-utils/utils/unique.utils.js +0 -24
  164. package/esm2015/ngx-utils/utils/vector.js +0 -77
  165. package/esm2015/public_api.js +0 -84
  166. package/esm2015/stemy-ngx-utils.js +0 -7
  167. package/fesm2015/stemy-ngx-utils.js +0 -4860
  168. package/fesm2015/stemy-ngx-utils.js.map +0 -1
  169. package/stemy-ngx-utils.metadata.json +0 -1
@@ -1,5 +1,5 @@
1
1
  import * as i0 from '@angular/core';
2
- import { InjectionToken, TemplateRef, PLATFORM_ID, Injectable, Inject, Optional, Injector, EventEmitter, isDevMode, ErrorHandler, NgZone, Pipe, Input, Output, HostBinding, HostListener, Directive, Component, ContentChildren, ViewChild, ContentChild, APP_INITIALIZER, NgModule } from '@angular/core';
2
+ import { InjectionToken, TemplateRef, PLATFORM_ID, Injectable, Inject, Optional, Injector, EventEmitter, isDevMode, ErrorHandler, NgZone, Pipe, Directive, Input, Output, HostBinding, HostListener, Component, ContentChildren, ViewChild, ContentChild, APP_INITIALIZER, NgModule } from '@angular/core';
3
3
  import 'reflect-metadata';
4
4
  import { utc } from 'moment';
5
5
  import { first, skipWhile, mergeMap, timeout, map } from 'rxjs/operators';
@@ -8,7 +8,7 @@ import { Invokable } from 'invokable';
8
8
  import * as i2 from '@angular/router';
9
9
  import { ActivatedRouteSnapshot, NavigationEnd, DefaultUrlSerializer, UrlTree, UrlSegmentGroup, UrlSegment, UrlSerializer } from '@angular/router';
10
10
  import * as i1$3 from '@angular/common';
11
- import { isPlatformBrowser, isPlatformServer, DOCUMENT, CommonModule } from '@angular/common';
11
+ import { isPlatformBrowser, isPlatformServer, APP_BASE_HREF, DOCUMENT, CommonModule } from '@angular/common';
12
12
  import * as i1 from 'ngx-device-detector';
13
13
  import { DeviceDetectorService } from 'ngx-device-detector';
14
14
  import * as i1$1 from '@angular/common/http';
@@ -16,7 +16,7 @@ import { HttpClient, HttpHeaders, HttpParams, HttpUrlEncodingCodec, HttpEventTyp
16
16
  import * as i1$2 from '@angular/platform-browser';
17
17
  import { ɵDomEventsPlugin, EVENT_MANAGER_PLUGINS } from '@angular/platform-browser';
18
18
  import { addListener, removeListener } from 'resize-detector';
19
- import * as i3 from '@angular/forms';
19
+ import * as i4 from '@angular/forms';
20
20
  import { FormsModule } from '@angular/forms';
21
21
 
22
22
  const defaultPredicate = () => true;
@@ -1268,14 +1268,14 @@ class UniversalService {
1268
1268
  return this.crawler;
1269
1269
  }
1270
1270
  }
1271
- UniversalService.ɵfac = function UniversalService_Factory(t) { return new (t || UniversalService)(i0.ɵɵinject(PLATFORM_ID), i0.ɵɵinject(i1.DeviceDetectorService)); };
1272
- UniversalService.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: UniversalService, factory: UniversalService.ɵfac });
1273
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(UniversalService, [{
1274
- type: Injectable
1275
- }], function () { return [{ type: undefined, decorators: [{
1276
- type: Inject,
1277
- args: [PLATFORM_ID]
1278
- }] }, { type: i1.DeviceDetectorService }]; }, null); })();
1271
+ UniversalService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: UniversalService, deps: [{ token: PLATFORM_ID }, { token: i1.DeviceDetectorService }], target: i0.ɵɵFactoryTarget.Injectable });
1272
+ UniversalService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: UniversalService });
1273
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: UniversalService, decorators: [{
1274
+ type: Injectable
1275
+ }], ctorParameters: function () { return [{ type: undefined, decorators: [{
1276
+ type: Inject,
1277
+ args: [PLATFORM_ID]
1278
+ }] }, { type: i1.DeviceDetectorService }]; } });
1279
1279
 
1280
1280
  const emptySnapshot = new ActivatedRouteSnapshot();
1281
1281
  const emptyData = { id: "" };
@@ -1433,13 +1433,13 @@ class StateService extends BehaviorSubject {
1433
1433
  return [url, extras];
1434
1434
  }
1435
1435
  }
1436
- StateService.ɵfac = function StateService_Factory(t) { return new (t || StateService)(i0.ɵɵinject(i0.Injector), i0.ɵɵinject(i0.NgZone), i0.ɵɵinject(UniversalService), i0.ɵɵinject(i2.Router, 8)); };
1437
- StateService.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: StateService, factory: StateService.ɵfac });
1438
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(StateService, [{
1439
- type: Injectable
1440
- }], function () { return [{ type: i0.Injector }, { type: i0.NgZone }, { type: UniversalService }, { type: i2.Router, decorators: [{
1441
- type: Optional
1442
- }] }]; }, null); })();
1436
+ StateService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: StateService, deps: [{ token: i0.Injector }, { token: i0.NgZone }, { token: UniversalService }, { token: i2.Router, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
1437
+ StateService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: StateService });
1438
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: StateService, decorators: [{
1439
+ type: Injectable
1440
+ }], ctorParameters: function () { return [{ type: i0.Injector }, { type: i0.NgZone }, { type: UniversalService }, { type: i2.Router, decorators: [{
1441
+ type: Optional
1442
+ }] }]; } });
1443
1443
 
1444
1444
  var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
1445
1445
  var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
@@ -1582,8 +1582,8 @@ class AuthGuard {
1582
1582
  });
1583
1583
  }
1584
1584
  }
1585
- AuthGuard.ɵfac = function AuthGuard_Factory(t) { return new (t || AuthGuard)(i0.ɵɵinject(Injector), i0.ɵɵinject(StateService), i0.ɵɵinject(AUTH_SERVICE)); };
1586
- AuthGuard.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: AuthGuard, factory: AuthGuard.ɵfac });
1585
+ AuthGuard.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: AuthGuard, deps: [{ token: Injector }, { token: StateService }, { token: AUTH_SERVICE }], target: i0.ɵɵFactoryTarget.Injectable });
1586
+ AuthGuard.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: AuthGuard });
1587
1587
  __decorate([
1588
1588
  FactoryDependencies(AUTH_SERVICE),
1589
1589
  __metadata("design:type", Function),
@@ -1602,18 +1602,18 @@ __decorate([
1602
1602
  __metadata("design:paramtypes", [Object, StateService, String]),
1603
1603
  __metadata("design:returntype", Function)
1604
1604
  ], AuthGuard, "guardAuthStateField", null);
1605
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AuthGuard, [{
1606
- type: Injectable
1607
- }], function () { return [{ type: i0.Injector, decorators: [{
1608
- type: Inject,
1609
- args: [Injector]
1610
- }] }, { type: StateService, decorators: [{
1611
- type: Inject,
1612
- args: [StateService]
1613
- }] }, { type: undefined, decorators: [{
1614
- type: Inject,
1615
- args: [AUTH_SERVICE]
1616
- }] }]; }, null); })();
1605
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: AuthGuard, decorators: [{
1606
+ type: Injectable
1607
+ }], ctorParameters: function () { return [{ type: i0.Injector, decorators: [{
1608
+ type: Inject,
1609
+ args: [Injector]
1610
+ }] }, { type: StateService, decorators: [{
1611
+ type: Inject,
1612
+ args: [StateService]
1613
+ }] }, { type: undefined, decorators: [{
1614
+ type: Inject,
1615
+ args: [AUTH_SERVICE]
1616
+ }] }]; } });
1617
1617
 
1618
1618
  class TimerUtils {
1619
1619
  static createTimeout(func, time) {
@@ -2038,14 +2038,14 @@ class AclService {
2038
2038
  return info;
2039
2039
  }
2040
2040
  }
2041
- AclService.ɵfac = function AclService_Factory(t) { return new (t || AclService)(i0.ɵɵinject(i0.Injector), i0.ɵɵinject(StateService), i0.ɵɵinject(AUTH_SERVICE)); };
2042
- AclService.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: AclService, factory: AclService.ɵfac });
2043
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AclService, [{
2044
- type: Injectable
2045
- }], function () { return [{ type: i0.Injector }, { type: StateService }, { type: undefined, decorators: [{
2046
- type: Inject,
2047
- args: [AUTH_SERVICE]
2048
- }] }]; }, null); })();
2041
+ AclService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: AclService, deps: [{ token: i0.Injector }, { token: StateService }, { token: AUTH_SERVICE }], target: i0.ɵɵFactoryTarget.Injectable });
2042
+ AclService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: AclService });
2043
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: AclService, decorators: [{
2044
+ type: Injectable
2045
+ }], ctorParameters: function () { return [{ type: i0.Injector }, { type: StateService }, { type: undefined, decorators: [{
2046
+ type: Inject,
2047
+ args: [AUTH_SERVICE]
2048
+ }] }]; } });
2049
2049
 
2050
2050
  class BaseHttpClient extends HttpClient {
2051
2051
  constructor(handler) {
@@ -2083,11 +2083,11 @@ class BaseHttpClient extends HttpClient {
2083
2083
  this.extraRequestParams[name] = value;
2084
2084
  }
2085
2085
  }
2086
- BaseHttpClient.ɵfac = function BaseHttpClient_Factory(t) { return new (t || BaseHttpClient)(i0.ɵɵinject(i1$1.HttpHandler)); };
2087
- BaseHttpClient.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: BaseHttpClient, factory: BaseHttpClient.ɵfac });
2088
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(BaseHttpClient, [{
2089
- type: Injectable
2090
- }], function () { return [{ type: i1$1.HttpHandler }]; }, null); })();
2086
+ BaseHttpClient.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: BaseHttpClient, deps: [{ token: i1$1.HttpHandler }], target: i0.ɵɵFactoryTarget.Injectable });
2087
+ BaseHttpClient.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: BaseHttpClient });
2088
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: BaseHttpClient, decorators: [{
2089
+ type: Injectable
2090
+ }], ctorParameters: function () { return [{ type: i1$1.HttpHandler }]; } });
2091
2091
 
2092
2092
  /**
2093
2093
  * Use this service instead of Storage to avoid Angular Universal breaks on server environment
@@ -2127,11 +2127,11 @@ class StorageService {
2127
2127
  storage.removeItem(key);
2128
2128
  }
2129
2129
  }
2130
- StorageService.ɵfac = function StorageService_Factory(t) { return new (t || StorageService)(i0.ɵɵinject(UniversalService)); };
2131
- StorageService.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: StorageService, factory: StorageService.ɵfac });
2132
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(StorageService, [{
2133
- type: Injectable
2134
- }], function () { return [{ type: UniversalService }]; }, null); })();
2130
+ StorageService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: StorageService, deps: [{ token: UniversalService }], target: i0.ɵɵFactoryTarget.Injectable });
2131
+ StorageService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: StorageService });
2132
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: StorageService, decorators: [{
2133
+ type: Injectable
2134
+ }], ctorParameters: function () { return [{ type: UniversalService }]; } });
2135
2135
 
2136
2136
  class BaseHttpService {
2137
2137
  constructor(client, storage, language, toaster, configs, request = null) {
@@ -2393,31 +2393,31 @@ class BaseHttpService {
2393
2393
  }
2394
2394
  }
2395
2395
  BaseHttpService.failedRequests = [];
2396
- BaseHttpService.ɵfac = function BaseHttpService_Factory(t) { return new (t || BaseHttpService)(i0.ɵɵinject(BaseHttpClient), i0.ɵɵinject(StorageService), i0.ɵɵinject(LANGUAGE_SERVICE), i0.ɵɵinject(TOASTER_SERVICE), i0.ɵɵinject(CONFIG_SERVICE), i0.ɵɵinject(EXPRESS_REQUEST, 8)); };
2397
- BaseHttpService.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: BaseHttpService, factory: BaseHttpService.ɵfac });
2398
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(BaseHttpService, [{
2399
- type: Injectable
2400
- }], function () { return [{ type: BaseHttpClient, decorators: [{
2401
- type: Inject,
2402
- args: [BaseHttpClient]
2403
- }] }, { type: StorageService, decorators: [{
2404
- type: Inject,
2405
- args: [StorageService]
2406
- }] }, { type: undefined, decorators: [{
2407
- type: Inject,
2408
- args: [LANGUAGE_SERVICE]
2409
- }] }, { type: undefined, decorators: [{
2410
- type: Inject,
2411
- args: [TOASTER_SERVICE]
2412
- }] }, { type: undefined, decorators: [{
2413
- type: Inject,
2414
- args: [CONFIG_SERVICE]
2415
- }] }, { type: undefined, decorators: [{
2416
- type: Optional
2417
- }, {
2418
- type: Inject,
2419
- args: [EXPRESS_REQUEST]
2420
- }] }]; }, null); })();
2396
+ BaseHttpService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: BaseHttpService, deps: [{ token: BaseHttpClient }, { token: StorageService }, { token: LANGUAGE_SERVICE }, { token: TOASTER_SERVICE }, { token: CONFIG_SERVICE }, { token: EXPRESS_REQUEST, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
2397
+ BaseHttpService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: BaseHttpService });
2398
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: BaseHttpService, decorators: [{
2399
+ type: Injectable
2400
+ }], ctorParameters: function () { return [{ type: BaseHttpClient, decorators: [{
2401
+ type: Inject,
2402
+ args: [BaseHttpClient]
2403
+ }] }, { type: StorageService, decorators: [{
2404
+ type: Inject,
2405
+ args: [StorageService]
2406
+ }] }, { type: undefined, decorators: [{
2407
+ type: Inject,
2408
+ args: [LANGUAGE_SERVICE]
2409
+ }] }, { type: undefined, decorators: [{
2410
+ type: Inject,
2411
+ args: [TOASTER_SERVICE]
2412
+ }] }, { type: undefined, decorators: [{
2413
+ type: Inject,
2414
+ args: [CONFIG_SERVICE]
2415
+ }] }, { type: undefined, decorators: [{
2416
+ type: Optional
2417
+ }, {
2418
+ type: Inject,
2419
+ args: [EXPRESS_REQUEST]
2420
+ }] }]; } });
2421
2421
 
2422
2422
  class ApiService extends BaseHttpService {
2423
2423
  get name() {
@@ -2448,11 +2448,11 @@ class ApiService extends BaseHttpService {
2448
2448
  return this.listPromise(url, params);
2449
2449
  }
2450
2450
  }
2451
- ApiService.ɵfac = /*@__PURE__*/ function () { let ɵApiService_BaseFactory; return function ApiService_Factory(t) { return (ɵApiService_BaseFactory || (ɵApiService_BaseFactory = i0.ɵɵgetInheritedFactory(ApiService)))(t || ApiService); }; }();
2452
- ApiService.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: ApiService, factory: ApiService.ɵfac });
2453
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ApiService, [{
2454
- type: Injectable
2455
- }], null, null); })();
2451
+ ApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ApiService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
2452
+ ApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ApiService });
2453
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ApiService, decorators: [{
2454
+ type: Injectable
2455
+ }] });
2456
2456
 
2457
2457
  class StaticAuthService {
2458
2458
  constructor() {
@@ -2468,26 +2468,18 @@ class StaticAuthService {
2468
2468
  }
2469
2469
 
2470
2470
  class ConfigService {
2471
- constructor(http, universal, rootElement, baseConfig = null, scriptParams = null) {
2471
+ constructor(http, universal, rootElement, baseHref, baseConfig = null, scriptParams = null) {
2472
2472
  this.http = http;
2473
2473
  this.universal = universal;
2474
2474
  this.rootElement = rootElement;
2475
+ this.baseHref = baseHref;
2475
2476
  for (const key in []) {
2476
2477
  Object.defineProperty(Array.prototype, key, {
2477
2478
  enumerable: false
2478
2479
  });
2479
2480
  }
2480
- let baseUrl = "";
2481
- if (this.universal.isBrowser) {
2482
- const currentScript = document.currentScript;
2483
- if (!!currentScript) {
2484
- const scriptSrc = currentScript.src;
2485
- const srcParts = scriptSrc.split(".js");
2486
- baseUrl = scriptSrc.substr(0, srcParts[0].lastIndexOf("/") + 1);
2487
- }
2488
- }
2489
2481
  this.baseConfig = baseConfig || {};
2490
- this.loadedConfig = Object.assign(!baseUrl ? {} : { baseUrl, baseDomain: this.parseDomain(baseUrl) }, this.baseConfig);
2482
+ this.loadedConfig = Object.assign(!this.baseHref ? {} : { baseUrl: this.baseHref, baseDomain: this.parseDomain(this.baseHref) }, this.baseConfig);
2491
2483
  this.scriptParameters = scriptParams || {};
2492
2484
  this.loaderFunc = () => {
2493
2485
  this.loader = this.loader || new Promise((resolve, reject) => {
@@ -2569,24 +2561,27 @@ class ConfigService {
2569
2561
  return decodeURIComponent(results[2].replace(/\+/g, " "));
2570
2562
  }
2571
2563
  }
2572
- ConfigService.ɵfac = function ConfigService_Factory(t) { return new (t || ConfigService)(i0.ɵɵinject(i1$1.HttpClient), i0.ɵɵinject(UniversalService), i0.ɵɵinject(ROOT_ELEMENT), i0.ɵɵinject(BASE_CONFIG, 8), i0.ɵɵinject(SCRIPT_PARAMS, 8)); };
2573
- ConfigService.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: ConfigService, factory: ConfigService.ɵfac });
2574
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ConfigService, [{
2575
- type: Injectable
2576
- }], function () { return [{ type: i1$1.HttpClient }, { type: UniversalService }, { type: undefined, decorators: [{
2577
- type: Inject,
2578
- args: [ROOT_ELEMENT]
2579
- }] }, { type: IConfiguration, decorators: [{
2580
- type: Optional
2581
- }, {
2582
- type: Inject,
2583
- args: [BASE_CONFIG]
2584
- }] }, { type: undefined, decorators: [{
2585
- type: Optional
2586
- }, {
2587
- type: Inject,
2588
- args: [SCRIPT_PARAMS]
2589
- }] }]; }, null); })();
2564
+ ConfigService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ConfigService, deps: [{ token: i1$1.HttpClient }, { token: UniversalService }, { token: ROOT_ELEMENT }, { token: APP_BASE_HREF }, { token: BASE_CONFIG, optional: true }, { token: SCRIPT_PARAMS, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
2565
+ ConfigService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ConfigService });
2566
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ConfigService, decorators: [{
2567
+ type: Injectable
2568
+ }], ctorParameters: function () { return [{ type: i1$1.HttpClient }, { type: UniversalService }, { type: undefined, decorators: [{
2569
+ type: Inject,
2570
+ args: [ROOT_ELEMENT]
2571
+ }] }, { type: undefined, decorators: [{
2572
+ type: Inject,
2573
+ args: [APP_BASE_HREF]
2574
+ }] }, { type: IConfiguration, decorators: [{
2575
+ type: Optional
2576
+ }, {
2577
+ type: Inject,
2578
+ args: [BASE_CONFIG]
2579
+ }] }, { type: undefined, decorators: [{
2580
+ type: Optional
2581
+ }, {
2582
+ type: Inject,
2583
+ args: [SCRIPT_PARAMS]
2584
+ }] }]; } });
2590
2585
 
2591
2586
  class ErrorHandlerService extends ErrorHandler {
2592
2587
  constructor(injector) {
@@ -2627,11 +2622,11 @@ class ErrorHandlerService extends ErrorHandler {
2627
2622
  console.error(`[${date}]: ${error.message}\n${error.stack}`);
2628
2623
  }
2629
2624
  }
2630
- ErrorHandlerService.ɵfac = function ErrorHandlerService_Factory(t) { return new (t || ErrorHandlerService)(i0.ɵɵinject(i0.Injector)); };
2631
- ErrorHandlerService.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: ErrorHandlerService, factory: ErrorHandlerService.ɵfac });
2632
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ErrorHandlerService, [{
2633
- type: Injectable
2634
- }], function () { return [{ type: i0.Injector }]; }, null); })();
2625
+ ErrorHandlerService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ErrorHandlerService, deps: [{ token: i0.Injector }], target: i0.ɵɵFactoryTarget.Injectable });
2626
+ ErrorHandlerService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ErrorHandlerService });
2627
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ErrorHandlerService, decorators: [{
2628
+ type: Injectable
2629
+ }], ctorParameters: function () { return [{ type: i0.Injector }]; } });
2635
2630
 
2636
2631
  class EventsService {
2637
2632
  constructor() {
@@ -2651,11 +2646,11 @@ class EventsService {
2651
2646
  this.stickyUpdated.emit(sticky);
2652
2647
  }
2653
2648
  }
2654
- EventsService.ɵfac = function EventsService_Factory(t) { return new (t || EventsService)(); };
2655
- EventsService.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: EventsService, factory: EventsService.ɵfac });
2656
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(EventsService, [{
2657
- type: Injectable
2658
- }], function () { return []; }, null); })();
2649
+ EventsService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: EventsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2650
+ EventsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: EventsService });
2651
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: EventsService, decorators: [{
2652
+ type: Injectable
2653
+ }], ctorParameters: function () { return []; } });
2659
2654
 
2660
2655
  class FormatterService {
2661
2656
  constructor(language) {
@@ -2690,14 +2685,14 @@ class FormatterService {
2690
2685
  return ObjectUtils.isNumber(precision) ? precision : this.defaultPrecision;
2691
2686
  }
2692
2687
  }
2693
- FormatterService.ɵfac = function FormatterService_Factory(t) { return new (t || FormatterService)(i0.ɵɵinject(LANGUAGE_SERVICE)); };
2694
- FormatterService.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: FormatterService, factory: FormatterService.ɵfac });
2695
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(FormatterService, [{
2696
- type: Injectable
2697
- }], function () { return [{ type: undefined, decorators: [{
2698
- type: Inject,
2699
- args: [LANGUAGE_SERVICE]
2700
- }] }]; }, null); })();
2688
+ FormatterService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: FormatterService, deps: [{ token: LANGUAGE_SERVICE }], target: i0.ɵɵFactoryTarget.Injectable });
2689
+ FormatterService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: FormatterService });
2690
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: FormatterService, decorators: [{
2691
+ type: Injectable
2692
+ }], ctorParameters: function () { return [{ type: undefined, decorators: [{
2693
+ type: Inject,
2694
+ args: [LANGUAGE_SERVICE]
2695
+ }] }]; } });
2701
2696
 
2702
2697
  class GlobalTemplateService {
2703
2698
  constructor() {
@@ -2727,11 +2722,11 @@ class GlobalTemplateService {
2727
2722
  this.componentModifiers[id] = modifier;
2728
2723
  }
2729
2724
  }
2730
- GlobalTemplateService.ɵfac = function GlobalTemplateService_Factory(t) { return new (t || GlobalTemplateService)(); };
2731
- GlobalTemplateService.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: GlobalTemplateService, factory: GlobalTemplateService.ɵfac });
2732
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(GlobalTemplateService, [{
2733
- type: Injectable
2734
- }], function () { return []; }, null); })();
2725
+ GlobalTemplateService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: GlobalTemplateService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2726
+ GlobalTemplateService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: GlobalTemplateService });
2727
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: GlobalTemplateService, decorators: [{
2728
+ type: Injectable
2729
+ }], ctorParameters: function () { return []; } });
2735
2730
 
2736
2731
  class IconService {
2737
2732
  constructor() {
@@ -2751,11 +2746,11 @@ class IconService {
2751
2746
  return Promise.resolve(active ? activeIcon : icon);
2752
2747
  }
2753
2748
  }
2754
- IconService.ɵfac = function IconService_Factory(t) { return new (t || IconService)(); };
2755
- IconService.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: IconService, factory: IconService.ɵfac });
2756
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(IconService, [{
2757
- type: Injectable
2758
- }], function () { return []; }, null); })();
2749
+ IconService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: IconService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2750
+ IconService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: IconService });
2751
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: IconService, decorators: [{
2752
+ type: Injectable
2753
+ }], ctorParameters: function () { return []; } });
2759
2754
 
2760
2755
  class StaticLanguageService {
2761
2756
  constructor(events, storage, configs, promises, client) {
@@ -2892,26 +2887,26 @@ class StaticLanguageService {
2892
2887
  return browserLang;
2893
2888
  }
2894
2889
  }
2895
- StaticLanguageService.ɵfac = function StaticLanguageService_Factory(t) { return new (t || StaticLanguageService)(i0.ɵɵinject(EventsService), i0.ɵɵinject(StorageService), i0.ɵɵinject(CONFIG_SERVICE), i0.ɵɵinject(PROMISE_SERVICE), i0.ɵɵinject(BaseHttpClient)); };
2896
- StaticLanguageService.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: StaticLanguageService, factory: StaticLanguageService.ɵfac });
2897
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(StaticLanguageService, [{
2898
- type: Injectable
2899
- }], function () { return [{ type: EventsService, decorators: [{
2900
- type: Inject,
2901
- args: [EventsService]
2902
- }] }, { type: StorageService, decorators: [{
2903
- type: Inject,
2904
- args: [StorageService]
2905
- }] }, { type: undefined, decorators: [{
2906
- type: Inject,
2907
- args: [CONFIG_SERVICE]
2908
- }] }, { type: undefined, decorators: [{
2909
- type: Inject,
2910
- args: [PROMISE_SERVICE]
2911
- }] }, { type: BaseHttpClient, decorators: [{
2912
- type: Inject,
2913
- args: [BaseHttpClient]
2914
- }] }]; }, null); })();
2890
+ StaticLanguageService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: StaticLanguageService, deps: [{ token: EventsService }, { token: StorageService }, { token: CONFIG_SERVICE }, { token: PROMISE_SERVICE }, { token: BaseHttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
2891
+ StaticLanguageService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: StaticLanguageService });
2892
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: StaticLanguageService, decorators: [{
2893
+ type: Injectable
2894
+ }], ctorParameters: function () { return [{ type: EventsService, decorators: [{
2895
+ type: Inject,
2896
+ args: [EventsService]
2897
+ }] }, { type: StorageService, decorators: [{
2898
+ type: Inject,
2899
+ args: [StorageService]
2900
+ }] }, { type: undefined, decorators: [{
2901
+ type: Inject,
2902
+ args: [CONFIG_SERVICE]
2903
+ }] }, { type: undefined, decorators: [{
2904
+ type: Inject,
2905
+ args: [PROMISE_SERVICE]
2906
+ }] }, { type: BaseHttpClient, decorators: [{
2907
+ type: Inject,
2908
+ args: [BaseHttpClient]
2909
+ }] }]; } });
2915
2910
 
2916
2911
  class LanguageService extends StaticLanguageService {
2917
2912
  get currentLanguage() {
@@ -3015,11 +3010,11 @@ class LanguageService extends StaticLanguageService {
3015
3010
  return this.settingsPromise;
3016
3011
  }
3017
3012
  }
3018
- LanguageService.ɵfac = /*@__PURE__*/ function () { let ɵLanguageService_BaseFactory; return function LanguageService_Factory(t) { return (ɵLanguageService_BaseFactory || (ɵLanguageService_BaseFactory = i0.ɵɵgetInheritedFactory(LanguageService)))(t || LanguageService); }; }();
3019
- LanguageService.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: LanguageService, factory: LanguageService.ɵfac });
3020
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(LanguageService, [{
3021
- type: Injectable
3022
- }], null, null); })();
3013
+ LanguageService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: LanguageService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
3014
+ LanguageService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: LanguageService });
3015
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: LanguageService, decorators: [{
3016
+ type: Injectable
3017
+ }] });
3023
3018
 
3024
3019
  class OpenApiService {
3025
3020
  constructor(api) {
@@ -3049,14 +3044,14 @@ class OpenApiService {
3049
3044
  return schemas[name];
3050
3045
  }
3051
3046
  }
3052
- OpenApiService.ɵfac = function OpenApiService_Factory(t) { return new (t || OpenApiService)(i0.ɵɵinject(API_SERVICE)); };
3053
- OpenApiService.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: OpenApiService, factory: OpenApiService.ɵfac });
3054
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(OpenApiService, [{
3055
- type: Injectable
3056
- }], function () { return [{ type: undefined, decorators: [{
3057
- type: Inject,
3058
- args: [API_SERVICE]
3059
- }] }]; }, null); })();
3047
+ OpenApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: OpenApiService, deps: [{ token: API_SERVICE }], target: i0.ɵɵFactoryTarget.Injectable });
3048
+ OpenApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: OpenApiService });
3049
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: OpenApiService, decorators: [{
3050
+ type: Injectable
3051
+ }], ctorParameters: function () { return [{ type: undefined, decorators: [{
3052
+ type: Inject,
3053
+ args: [API_SERVICE]
3054
+ }] }]; } });
3060
3055
 
3061
3056
  class ConsoleToasterService {
3062
3057
  constructor(language) {
@@ -3078,14 +3073,14 @@ class ConsoleToasterService {
3078
3073
  this.language.getTranslation(message, params).then(callback);
3079
3074
  }
3080
3075
  }
3081
- ConsoleToasterService.ɵfac = function ConsoleToasterService_Factory(t) { return new (t || ConsoleToasterService)(i0.ɵɵinject(LANGUAGE_SERVICE)); };
3082
- ConsoleToasterService.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: ConsoleToasterService, factory: ConsoleToasterService.ɵfac });
3083
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ConsoleToasterService, [{
3084
- type: Injectable
3085
- }], function () { return [{ type: undefined, decorators: [{
3086
- type: Inject,
3087
- args: [LANGUAGE_SERVICE]
3088
- }] }]; }, null); })();
3076
+ ConsoleToasterService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ConsoleToasterService, deps: [{ token: LANGUAGE_SERVICE }], target: i0.ɵɵFactoryTarget.Injectable });
3077
+ ConsoleToasterService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ConsoleToasterService });
3078
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ConsoleToasterService, decorators: [{
3079
+ type: Injectable
3080
+ }], ctorParameters: function () { return [{ type: undefined, decorators: [{
3081
+ type: Inject,
3082
+ args: [LANGUAGE_SERVICE]
3083
+ }] }]; } });
3089
3084
 
3090
3085
  class TranslatedUrlSerializer extends DefaultUrlSerializer {
3091
3086
  constructor(language) {
@@ -3147,14 +3142,14 @@ class TranslatedUrlSerializer extends DefaultUrlSerializer {
3147
3142
  return newGroup;
3148
3143
  }
3149
3144
  }
3150
- TranslatedUrlSerializer.ɵfac = function TranslatedUrlSerializer_Factory(t) { return new (t || TranslatedUrlSerializer)(i0.ɵɵinject(LANGUAGE_SERVICE)); };
3151
- TranslatedUrlSerializer.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: TranslatedUrlSerializer, factory: TranslatedUrlSerializer.ɵfac });
3152
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(TranslatedUrlSerializer, [{
3153
- type: Injectable
3154
- }], function () { return [{ type: undefined, decorators: [{
3155
- type: Inject,
3156
- args: [LANGUAGE_SERVICE]
3157
- }] }]; }, null); })();
3145
+ TranslatedUrlSerializer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: TranslatedUrlSerializer, deps: [{ token: LANGUAGE_SERVICE }], target: i0.ɵɵFactoryTarget.Injectable });
3146
+ TranslatedUrlSerializer.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: TranslatedUrlSerializer });
3147
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: TranslatedUrlSerializer, decorators: [{
3148
+ type: Injectable
3149
+ }], ctorParameters: function () { return [{ type: undefined, decorators: [{
3150
+ type: Inject,
3151
+ args: [LANGUAGE_SERVICE]
3152
+ }] }]; } });
3158
3153
 
3159
3154
  class PromiseService {
3160
3155
  constructor(zone) {
@@ -3200,14 +3195,14 @@ class PromiseService {
3200
3195
  });
3201
3196
  }
3202
3197
  }
3203
- PromiseService.ɵfac = function PromiseService_Factory(t) { return new (t || PromiseService)(i0.ɵɵinject(NgZone)); };
3204
- PromiseService.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: PromiseService, factory: PromiseService.ɵfac });
3205
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(PromiseService, [{
3206
- type: Injectable
3207
- }], function () { return [{ type: i0.NgZone, decorators: [{
3208
- type: Inject,
3209
- args: [NgZone]
3210
- }] }]; }, null); })();
3198
+ PromiseService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: PromiseService, deps: [{ token: NgZone }], target: i0.ɵɵFactoryTarget.Injectable });
3199
+ PromiseService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: PromiseService });
3200
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: PromiseService, decorators: [{
3201
+ type: Injectable
3202
+ }], ctorParameters: function () { return [{ type: i0.NgZone, decorators: [{
3203
+ type: Inject,
3204
+ args: [NgZone]
3205
+ }] }]; } });
3211
3206
 
3212
3207
  function emptyRemove$1() {
3213
3208
  }
@@ -3252,14 +3247,14 @@ class ResizeEventPlugin extends ɵDomEventsPlugin {
3252
3247
  }
3253
3248
  }
3254
3249
  ResizeEventPlugin.EVENT_NAME = "resize";
3255
- ResizeEventPlugin.ɵfac = function ResizeEventPlugin_Factory(t) { return new (t || ResizeEventPlugin)(i0.ɵɵinject(DOCUMENT), i0.ɵɵinject(UniversalService)); };
3256
- ResizeEventPlugin.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: ResizeEventPlugin, factory: ResizeEventPlugin.ɵfac });
3257
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ResizeEventPlugin, [{
3258
- type: Injectable
3259
- }], function () { return [{ type: undefined, decorators: [{
3260
- type: Inject,
3261
- args: [DOCUMENT]
3262
- }] }, { type: UniversalService }]; }, null); })();
3250
+ ResizeEventPlugin.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ResizeEventPlugin, deps: [{ token: DOCUMENT }, { token: UniversalService }], target: i0.ɵɵFactoryTarget.Injectable });
3251
+ ResizeEventPlugin.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ResizeEventPlugin });
3252
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ResizeEventPlugin, decorators: [{
3253
+ type: Injectable
3254
+ }], ctorParameters: function () { return [{ type: undefined, decorators: [{
3255
+ type: Inject,
3256
+ args: [DOCUMENT]
3257
+ }] }, { type: UniversalService }]; } });
3263
3258
 
3264
3259
  function emptyRemove() {
3265
3260
  }
@@ -3285,14 +3280,14 @@ class ScrollEventPlugin extends ɵDomEventsPlugin {
3285
3280
  }
3286
3281
  }
3287
3282
  ScrollEventPlugin.EVENT_NAME = "scroll";
3288
- ScrollEventPlugin.ɵfac = function ScrollEventPlugin_Factory(t) { return new (t || ScrollEventPlugin)(i0.ɵɵinject(DOCUMENT), i0.ɵɵinject(UniversalService)); };
3289
- ScrollEventPlugin.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: ScrollEventPlugin, factory: ScrollEventPlugin.ɵfac });
3290
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ScrollEventPlugin, [{
3291
- type: Injectable
3292
- }], function () { return [{ type: undefined, decorators: [{
3293
- type: Inject,
3294
- args: [DOCUMENT]
3295
- }] }, { type: UniversalService }]; }, null); })();
3283
+ ScrollEventPlugin.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ScrollEventPlugin, deps: [{ token: DOCUMENT }, { token: UniversalService }], target: i0.ɵɵFactoryTarget.Injectable });
3284
+ ScrollEventPlugin.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ScrollEventPlugin });
3285
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ScrollEventPlugin, decorators: [{
3286
+ type: Injectable
3287
+ }], ctorParameters: function () { return [{ type: undefined, decorators: [{
3288
+ type: Inject,
3289
+ args: [DOCUMENT]
3290
+ }] }, { type: UniversalService }]; } });
3296
3291
 
3297
3292
  class ChunkPipe {
3298
3293
  transform(items, count) {
@@ -3308,14 +3303,14 @@ class ChunkPipe {
3308
3303
  return result;
3309
3304
  }
3310
3305
  }
3311
- ChunkPipe.ɵfac = function ChunkPipe_Factory(t) { return new (t || ChunkPipe)(); };
3312
- ChunkPipe.ɵpipe = /*@__PURE__*/ i0.ɵɵdefinePipe({ name: "chunk", type: ChunkPipe, pure: true });
3313
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ChunkPipe, [{
3314
- type: Pipe,
3315
- args: [{
3316
- name: "chunk"
3317
- }]
3318
- }], null, null); })();
3306
+ ChunkPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ChunkPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
3307
+ ChunkPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ChunkPipe, name: "chunk" });
3308
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ChunkPipe, decorators: [{
3309
+ type: Pipe,
3310
+ args: [{
3311
+ name: "chunk"
3312
+ }]
3313
+ }] });
3319
3314
 
3320
3315
  const emptyEntries = [];
3321
3316
  class EntriesPipe {
@@ -3333,14 +3328,14 @@ class EntriesPipe {
3333
3328
  return entries;
3334
3329
  }
3335
3330
  }
3336
- EntriesPipe.ɵfac = function EntriesPipe_Factory(t) { return new (t || EntriesPipe)(); };
3337
- EntriesPipe.ɵpipe = /*@__PURE__*/ i0.ɵɵdefinePipe({ name: "entries", type: EntriesPipe, pure: true });
3338
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(EntriesPipe, [{
3339
- type: Pipe,
3340
- args: [{
3341
- name: "entries"
3342
- }]
3343
- }], null, null); })();
3331
+ EntriesPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: EntriesPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
3332
+ EntriesPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: EntriesPipe, name: "entries" });
3333
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: EntriesPipe, decorators: [{
3334
+ type: Pipe,
3335
+ args: [{
3336
+ name: "entries"
3337
+ }]
3338
+ }] });
3344
3339
 
3345
3340
  class ExtraItemPropertiesPipe {
3346
3341
  transform(items, properties, params = {}) {
@@ -3361,14 +3356,14 @@ class ExtraItemPropertiesPipe {
3361
3356
  }, { ...item }));
3362
3357
  }
3363
3358
  }
3364
- ExtraItemPropertiesPipe.ɵfac = function ExtraItemPropertiesPipe_Factory(t) { return new (t || ExtraItemPropertiesPipe)(); };
3365
- ExtraItemPropertiesPipe.ɵpipe = /*@__PURE__*/ i0.ɵɵdefinePipe({ name: "extraItemProperties", type: ExtraItemPropertiesPipe, pure: true });
3366
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ExtraItemPropertiesPipe, [{
3367
- type: Pipe,
3368
- args: [{
3369
- name: "extraItemProperties"
3370
- }]
3371
- }], null, null); })();
3359
+ ExtraItemPropertiesPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ExtraItemPropertiesPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
3360
+ ExtraItemPropertiesPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ExtraItemPropertiesPipe, name: "extraItemProperties" });
3361
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ExtraItemPropertiesPipe, decorators: [{
3362
+ type: Pipe,
3363
+ args: [{
3364
+ name: "extraItemProperties"
3365
+ }]
3366
+ }] });
3372
3367
 
3373
3368
  function defaultFilter$1() {
3374
3369
  return true;
@@ -3400,14 +3395,14 @@ class FilterPipe {
3400
3395
  });
3401
3396
  }
3402
3397
  }
3403
- FilterPipe.ɵfac = function FilterPipe_Factory(t) { return new (t || FilterPipe)(); };
3404
- FilterPipe.ɵpipe = /*@__PURE__*/ i0.ɵɵdefinePipe({ name: "filter", type: FilterPipe, pure: true });
3405
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(FilterPipe, [{
3406
- type: Pipe,
3407
- args: [{
3408
- name: "filter"
3409
- }]
3410
- }], null, null); })();
3398
+ FilterPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: FilterPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
3399
+ FilterPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: FilterPipe, name: "filter" });
3400
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: FilterPipe, decorators: [{
3401
+ type: Pipe,
3402
+ args: [{
3403
+ name: "filter"
3404
+ }]
3405
+ }] });
3411
3406
 
3412
3407
  function defaultFilter() {
3413
3408
  return true;
@@ -3426,14 +3421,14 @@ class FindPipe {
3426
3421
  return values.find((value, index) => filterFunc(value, index, params));
3427
3422
  }
3428
3423
  }
3429
- FindPipe.ɵfac = function FindPipe_Factory(t) { return new (t || FindPipe)(); };
3430
- FindPipe.ɵpipe = /*@__PURE__*/ i0.ɵɵdefinePipe({ name: "find", type: FindPipe, pure: true });
3431
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(FindPipe, [{
3432
- type: Pipe,
3433
- args: [{
3434
- name: "find"
3435
- }]
3436
- }], null, null); })();
3424
+ FindPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: FindPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
3425
+ FindPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: FindPipe, name: "find" });
3426
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: FindPipe, decorators: [{
3427
+ type: Pipe,
3428
+ args: [{
3429
+ name: "find"
3430
+ }]
3431
+ }] });
3437
3432
 
3438
3433
  class FormatNumberPipe {
3439
3434
  constructor(formatter) {
@@ -3443,42 +3438,42 @@ class FormatNumberPipe {
3443
3438
  return this.formatter.formatNumber(value, format, precision, divider);
3444
3439
  }
3445
3440
  }
3446
- FormatNumberPipe.ɵfac = function FormatNumberPipe_Factory(t) { return new (t || FormatNumberPipe)(i0.ɵɵdirectiveInject(FormatterService, 16)); };
3447
- FormatNumberPipe.ɵpipe = /*@__PURE__*/ i0.ɵɵdefinePipe({ name: "formatNumber", type: FormatNumberPipe, pure: true });
3448
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(FormatNumberPipe, [{
3449
- type: Pipe,
3450
- args: [{
3451
- name: "formatNumber"
3452
- }]
3453
- }], function () { return [{ type: FormatterService }]; }, null); })();
3441
+ FormatNumberPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: FormatNumberPipe, deps: [{ token: FormatterService }], target: i0.ɵɵFactoryTarget.Pipe });
3442
+ FormatNumberPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: FormatNumberPipe, name: "formatNumber" });
3443
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: FormatNumberPipe, decorators: [{
3444
+ type: Pipe,
3445
+ args: [{
3446
+ name: "formatNumber"
3447
+ }]
3448
+ }], ctorParameters: function () { return [{ type: FormatterService }]; } });
3454
3449
 
3455
3450
  class GetOffsetPipe {
3456
3451
  transform(value, offset) {
3457
3452
  return value ? (ObjectUtils.isNullOrUndefined(offset) ? value : value[offset]) : null;
3458
3453
  }
3459
3454
  }
3460
- GetOffsetPipe.ɵfac = function GetOffsetPipe_Factory(t) { return new (t || GetOffsetPipe)(); };
3461
- GetOffsetPipe.ɵpipe = /*@__PURE__*/ i0.ɵɵdefinePipe({ name: "getOffset", type: GetOffsetPipe, pure: true });
3462
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(GetOffsetPipe, [{
3463
- type: Pipe,
3464
- args: [{
3465
- name: "getOffset"
3466
- }]
3467
- }], null, null); })();
3455
+ GetOffsetPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: GetOffsetPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
3456
+ GetOffsetPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: GetOffsetPipe, name: "getOffset" });
3457
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: GetOffsetPipe, decorators: [{
3458
+ type: Pipe,
3459
+ args: [{
3460
+ name: "getOffset"
3461
+ }]
3462
+ }] });
3468
3463
 
3469
3464
  class GetTypePipe {
3470
3465
  transform(value) {
3471
3466
  return typeof value;
3472
3467
  }
3473
3468
  }
3474
- GetTypePipe.ɵfac = function GetTypePipe_Factory(t) { return new (t || GetTypePipe)(); };
3475
- GetTypePipe.ɵpipe = /*@__PURE__*/ i0.ɵɵdefinePipe({ name: "getType", type: GetTypePipe, pure: true });
3476
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(GetTypePipe, [{
3477
- type: Pipe,
3478
- args: [{
3479
- name: "getType"
3480
- }]
3481
- }], null, null); })();
3469
+ GetTypePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: GetTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
3470
+ GetTypePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: GetTypePipe, name: "getType" });
3471
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: GetTypePipe, decorators: [{
3472
+ type: Pipe,
3473
+ args: [{
3474
+ name: "getType"
3475
+ }]
3476
+ }] });
3482
3477
 
3483
3478
  class GlobalTemplatePipe {
3484
3479
  constructor(globalTemplates) {
@@ -3505,18 +3500,18 @@ class GlobalTemplatePipe {
3505
3500
  return this.cachedTemplate;
3506
3501
  }
3507
3502
  }
3508
- GlobalTemplatePipe.ɵfac = function GlobalTemplatePipe_Factory(t) { return new (t || GlobalTemplatePipe)(i0.ɵɵdirectiveInject(GLOBAL_TEMPLATES, 16)); };
3509
- GlobalTemplatePipe.ɵpipe = /*@__PURE__*/ i0.ɵɵdefinePipe({ name: "globalTemplate", type: GlobalTemplatePipe, pure: false });
3510
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(GlobalTemplatePipe, [{
3511
- type: Pipe,
3512
- args: [{
3513
- pure: false,
3514
- name: "globalTemplate"
3515
- }]
3516
- }], function () { return [{ type: undefined, decorators: [{
3517
- type: Inject,
3518
- args: [GLOBAL_TEMPLATES]
3519
- }] }]; }, null); })();
3503
+ GlobalTemplatePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: GlobalTemplatePipe, deps: [{ token: GLOBAL_TEMPLATES }], target: i0.ɵɵFactoryTarget.Pipe });
3504
+ GlobalTemplatePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: GlobalTemplatePipe, name: "globalTemplate", pure: false });
3505
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: GlobalTemplatePipe, decorators: [{
3506
+ type: Pipe,
3507
+ args: [{
3508
+ pure: false,
3509
+ name: "globalTemplate"
3510
+ }]
3511
+ }], ctorParameters: function () { return [{ type: undefined, decorators: [{
3512
+ type: Inject,
3513
+ args: [GLOBAL_TEMPLATES]
3514
+ }] }]; } });
3520
3515
 
3521
3516
  class GroupByPipe {
3522
3517
  transform(records, column, map = null) {
@@ -3533,28 +3528,28 @@ class GroupByPipe {
3533
3528
  });
3534
3529
  }
3535
3530
  }
3536
- GroupByPipe.ɵfac = function GroupByPipe_Factory(t) { return new (t || GroupByPipe)(); };
3537
- GroupByPipe.ɵpipe = /*@__PURE__*/ i0.ɵɵdefinePipe({ name: "groupBy", type: GroupByPipe, pure: true });
3538
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(GroupByPipe, [{
3539
- type: Pipe,
3540
- args: [{
3541
- name: "groupBy"
3542
- }]
3543
- }], null, null); })();
3531
+ GroupByPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: GroupByPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
3532
+ GroupByPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: GroupByPipe, name: "groupBy" });
3533
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: GroupByPipe, decorators: [{
3534
+ type: Pipe,
3535
+ args: [{
3536
+ name: "groupBy"
3537
+ }]
3538
+ }] });
3544
3539
 
3545
3540
  class IsTypePipe {
3546
3541
  transform(value, type) {
3547
3542
  return (typeof value) === type;
3548
3543
  }
3549
3544
  }
3550
- IsTypePipe.ɵfac = function IsTypePipe_Factory(t) { return new (t || IsTypePipe)(); };
3551
- IsTypePipe.ɵpipe = /*@__PURE__*/ i0.ɵɵdefinePipe({ name: "isType", type: IsTypePipe, pure: true });
3552
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(IsTypePipe, [{
3553
- type: Pipe,
3554
- args: [{
3555
- name: "isType"
3556
- }]
3557
- }], null, null); })();
3545
+ IsTypePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: IsTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
3546
+ IsTypePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: IsTypePipe, name: "isType" });
3547
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: IsTypePipe, decorators: [{
3548
+ type: Pipe,
3549
+ args: [{
3550
+ name: "isType"
3551
+ }]
3552
+ }] });
3558
3553
 
3559
3554
  class JoinPipe {
3560
3555
  transform(value, separator = ", ") {
@@ -3563,14 +3558,14 @@ class JoinPipe {
3563
3558
  : "";
3564
3559
  }
3565
3560
  }
3566
- JoinPipe.ɵfac = function JoinPipe_Factory(t) { return new (t || JoinPipe)(); };
3567
- JoinPipe.ɵpipe = /*@__PURE__*/ i0.ɵɵdefinePipe({ name: "join", type: JoinPipe, pure: true });
3568
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(JoinPipe, [{
3569
- type: Pipe,
3570
- args: [{
3571
- name: "join"
3572
- }]
3573
- }], null, null); })();
3561
+ JoinPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: JoinPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
3562
+ JoinPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: JoinPipe, name: "join" });
3563
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: JoinPipe, decorators: [{
3564
+ type: Pipe,
3565
+ args: [{
3566
+ name: "join"
3567
+ }]
3568
+ }] });
3574
3569
 
3575
3570
  const emptyKeys = [];
3576
3571
  class KeysPipe {
@@ -3582,14 +3577,14 @@ class KeysPipe {
3582
3577
  : Object.keys(value);
3583
3578
  }
3584
3579
  }
3585
- KeysPipe.ɵfac = function KeysPipe_Factory(t) { return new (t || KeysPipe)(); };
3586
- KeysPipe.ɵpipe = /*@__PURE__*/ i0.ɵɵdefinePipe({ name: "keys", type: KeysPipe, pure: true });
3587
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(KeysPipe, [{
3588
- type: Pipe,
3589
- args: [{
3590
- name: "keys"
3591
- }]
3592
- }], null, null); })();
3580
+ KeysPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: KeysPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
3581
+ KeysPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: KeysPipe, name: "keys" });
3582
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: KeysPipe, decorators: [{
3583
+ type: Pipe,
3584
+ args: [{
3585
+ name: "keys"
3586
+ }]
3587
+ }] });
3593
3588
 
3594
3589
  function defaultMapper(item) {
3595
3590
  return item;
@@ -3608,14 +3603,14 @@ class MapPipe {
3608
3603
  return values.map((value, index) => mapperFunc(value, index, params));
3609
3604
  }
3610
3605
  }
3611
- MapPipe.ɵfac = function MapPipe_Factory(t) { return new (t || MapPipe)(); };
3612
- MapPipe.ɵpipe = /*@__PURE__*/ i0.ɵɵdefinePipe({ name: "map", type: MapPipe, pure: true });
3613
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(MapPipe, [{
3614
- type: Pipe,
3615
- args: [{
3616
- name: "map"
3617
- }]
3618
- }], null, null); })();
3606
+ MapPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: MapPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
3607
+ MapPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: MapPipe, name: "map" });
3608
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: MapPipe, decorators: [{
3609
+ type: Pipe,
3610
+ args: [{
3611
+ name: "map"
3612
+ }]
3613
+ }] });
3619
3614
 
3620
3615
  class MaxPipe {
3621
3616
  transform(value, selector = null, params = {}) {
@@ -3630,14 +3625,14 @@ class MaxPipe {
3630
3625
  return ArrayUtils.max(value, (item, index) => maxSelector(item, index, params));
3631
3626
  }
3632
3627
  }
3633
- MaxPipe.ɵfac = function MaxPipe_Factory(t) { return new (t || MaxPipe)(); };
3634
- MaxPipe.ɵpipe = /*@__PURE__*/ i0.ɵɵdefinePipe({ name: "max", type: MaxPipe, pure: true });
3635
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(MaxPipe, [{
3636
- type: Pipe,
3637
- args: [{
3638
- name: "max"
3639
- }]
3640
- }], null, null); })();
3628
+ MaxPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: MaxPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
3629
+ MaxPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: MaxPipe, name: "max" });
3630
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: MaxPipe, decorators: [{
3631
+ type: Pipe,
3632
+ args: [{
3633
+ name: "max"
3634
+ }]
3635
+ }] });
3641
3636
 
3642
3637
  class MinPipe {
3643
3638
  transform(value, selector = null, params = {}) {
@@ -3652,14 +3647,14 @@ class MinPipe {
3652
3647
  return ArrayUtils.min(value, (item, index) => minSelector(item, index, params));
3653
3648
  }
3654
3649
  }
3655
- MinPipe.ɵfac = function MinPipe_Factory(t) { return new (t || MinPipe)(); };
3656
- MinPipe.ɵpipe = /*@__PURE__*/ i0.ɵɵdefinePipe({ name: "min", type: MinPipe, pure: true });
3657
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(MinPipe, [{
3658
- type: Pipe,
3659
- args: [{
3660
- name: "min"
3661
- }]
3662
- }], null, null); })();
3650
+ MinPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: MinPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
3651
+ MinPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: MinPipe, name: "min" });
3652
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: MinPipe, decorators: [{
3653
+ type: Pipe,
3654
+ args: [{
3655
+ name: "min"
3656
+ }]
3657
+ }] });
3663
3658
 
3664
3659
  function defaultReducer(result) {
3665
3660
  return result;
@@ -3679,14 +3674,14 @@ class ReducePipe {
3679
3674
  return values.reduce((result, value, index) => mapperFunc(result, value, index, params), source);
3680
3675
  }
3681
3676
  }
3682
- ReducePipe.ɵfac = function ReducePipe_Factory(t) { return new (t || ReducePipe)(); };
3683
- ReducePipe.ɵpipe = /*@__PURE__*/ i0.ɵɵdefinePipe({ name: "reduce", type: ReducePipe, pure: true });
3684
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ReducePipe, [{
3685
- type: Pipe,
3686
- args: [{
3687
- name: "reduce"
3688
- }]
3689
- }], null, null); })();
3677
+ ReducePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ReducePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
3678
+ ReducePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ReducePipe, name: "reduce" });
3679
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ReducePipe, decorators: [{
3680
+ type: Pipe,
3681
+ args: [{
3682
+ name: "reduce"
3683
+ }]
3684
+ }] });
3690
3685
 
3691
3686
  const empty = {};
3692
3687
  class RemapPipe {
@@ -3708,28 +3703,28 @@ class RemapPipe {
3708
3703
  return remapped.map;
3709
3704
  }
3710
3705
  }
3711
- RemapPipe.ɵfac = function RemapPipe_Factory(t) { return new (t || RemapPipe)(); };
3712
- RemapPipe.ɵpipe = /*@__PURE__*/ i0.ɵɵdefinePipe({ name: "remap", type: RemapPipe, pure: true });
3713
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(RemapPipe, [{
3714
- type: Pipe,
3715
- args: [{
3716
- name: "remap"
3717
- }]
3718
- }], null, null); })();
3706
+ RemapPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: RemapPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
3707
+ RemapPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: RemapPipe, name: "remap" });
3708
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: RemapPipe, decorators: [{
3709
+ type: Pipe,
3710
+ args: [{
3711
+ name: "remap"
3712
+ }]
3713
+ }] });
3719
3714
 
3720
3715
  class ReplacePipe {
3721
3716
  transform(value, from, to) {
3722
3717
  return value ? value.replace(from, to) : value;
3723
3718
  }
3724
3719
  }
3725
- ReplacePipe.ɵfac = function ReplacePipe_Factory(t) { return new (t || ReplacePipe)(); };
3726
- ReplacePipe.ɵpipe = /*@__PURE__*/ i0.ɵɵdefinePipe({ name: "replace", type: ReplacePipe, pure: true });
3727
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ReplacePipe, [{
3728
- type: Pipe,
3729
- args: [{
3730
- name: "replace"
3731
- }]
3732
- }], null, null); })();
3720
+ ReplacePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ReplacePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
3721
+ ReplacePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ReplacePipe, name: "replace" });
3722
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ReplacePipe, decorators: [{
3723
+ type: Pipe,
3724
+ args: [{
3725
+ name: "replace"
3726
+ }]
3727
+ }] });
3733
3728
 
3734
3729
  const emptyArray = [];
3735
3730
  class ReversePipe {
@@ -3743,14 +3738,14 @@ class ReversePipe {
3743
3738
  return result;
3744
3739
  }
3745
3740
  }
3746
- ReversePipe.ɵfac = function ReversePipe_Factory(t) { return new (t || ReversePipe)(); };
3747
- ReversePipe.ɵpipe = /*@__PURE__*/ i0.ɵɵdefinePipe({ name: "reverse", type: ReversePipe, pure: true });
3748
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ReversePipe, [{
3749
- type: Pipe,
3750
- args: [{
3751
- name: "reverse"
3752
- }]
3753
- }], null, null); })();
3741
+ ReversePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ReversePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
3742
+ ReversePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ReversePipe, name: "reverse" });
3743
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ReversePipe, decorators: [{
3744
+ type: Pipe,
3745
+ args: [{
3746
+ name: "reverse"
3747
+ }]
3748
+ }] });
3754
3749
 
3755
3750
  class RoundPipe {
3756
3751
  constructor(formatter) {
@@ -3760,14 +3755,14 @@ class RoundPipe {
3760
3755
  return this.formatter.roundNumber(value, precision, divider);
3761
3756
  }
3762
3757
  }
3763
- RoundPipe.ɵfac = function RoundPipe_Factory(t) { return new (t || RoundPipe)(i0.ɵɵdirectiveInject(FormatterService, 16)); };
3764
- RoundPipe.ɵpipe = /*@__PURE__*/ i0.ɵɵdefinePipe({ name: "round", type: RoundPipe, pure: true });
3765
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(RoundPipe, [{
3766
- type: Pipe,
3767
- args: [{
3768
- name: "round"
3769
- }]
3770
- }], function () { return [{ type: FormatterService }]; }, null); })();
3758
+ RoundPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: RoundPipe, deps: [{ token: FormatterService }], target: i0.ɵɵFactoryTarget.Pipe });
3759
+ RoundPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: RoundPipe, name: "round" });
3760
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: RoundPipe, decorators: [{
3761
+ type: Pipe,
3762
+ args: [{
3763
+ name: "round"
3764
+ }]
3765
+ }], ctorParameters: function () { return [{ type: FormatterService }]; } });
3771
3766
 
3772
3767
  class SafeHtmlPipe {
3773
3768
  constructor(sanitizer) {
@@ -3790,14 +3785,14 @@ class SafeHtmlPipe {
3790
3785
  }
3791
3786
  }
3792
3787
  }
3793
- SafeHtmlPipe.ɵfac = function SafeHtmlPipe_Factory(t) { return new (t || SafeHtmlPipe)(i0.ɵɵdirectiveInject(i1$2.DomSanitizer, 16)); };
3794
- SafeHtmlPipe.ɵpipe = /*@__PURE__*/ i0.ɵɵdefinePipe({ name: "safe", type: SafeHtmlPipe, pure: true });
3795
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(SafeHtmlPipe, [{
3796
- type: Pipe,
3797
- args: [{
3798
- name: "safe"
3799
- }]
3800
- }], function () { return [{ type: i1$2.DomSanitizer }]; }, null); })();
3788
+ SafeHtmlPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: SafeHtmlPipe, deps: [{ token: i1$2.DomSanitizer }], target: i0.ɵɵFactoryTarget.Pipe });
3789
+ SafeHtmlPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: SafeHtmlPipe, name: "safe" });
3790
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: SafeHtmlPipe, decorators: [{
3791
+ type: Pipe,
3792
+ args: [{
3793
+ name: "safe"
3794
+ }]
3795
+ }], ctorParameters: function () { return [{ type: i1$2.DomSanitizer }]; } });
3801
3796
 
3802
3797
  class TranslatePipe {
3803
3798
  constructor(cdr, language) {
@@ -3865,21 +3860,21 @@ class TranslatePipe {
3865
3860
  return this.lastValue;
3866
3861
  }
3867
3862
  }
3868
- TranslatePipe.ɵfac = function TranslatePipe_Factory(t) { return new (t || TranslatePipe)(i0.ɵɵdirectiveInject(i0.ChangeDetectorRef, 16), i0.ɵɵdirectiveInject(LANGUAGE_SERVICE, 16)); };
3869
- TranslatePipe.ɵpipe = /*@__PURE__*/ i0.ɵɵdefinePipe({ name: "translate", type: TranslatePipe, pure: false });
3870
- TranslatePipe.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: TranslatePipe, factory: TranslatePipe.ɵfac });
3871
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(TranslatePipe, [{
3872
- type: Injectable
3873
- }, {
3874
- type: Pipe,
3875
- args: [{
3876
- name: "translate",
3877
- pure: false
3878
- }]
3879
- }], function () { return [{ type: i0.ChangeDetectorRef }, { type: undefined, decorators: [{
3880
- type: Inject,
3881
- args: [LANGUAGE_SERVICE]
3882
- }] }]; }, null); })();
3863
+ TranslatePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: TranslatePipe, deps: [{ token: i0.ChangeDetectorRef }, { token: LANGUAGE_SERVICE }], target: i0.ɵɵFactoryTarget.Pipe });
3864
+ TranslatePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: TranslatePipe, name: "translate", pure: false });
3865
+ TranslatePipe.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: TranslatePipe });
3866
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: TranslatePipe, decorators: [{
3867
+ type: Injectable
3868
+ }, {
3869
+ type: Pipe,
3870
+ args: [{
3871
+ name: "translate",
3872
+ pure: false
3873
+ }]
3874
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: undefined, decorators: [{
3875
+ type: Inject,
3876
+ args: [LANGUAGE_SERVICE]
3877
+ }] }]; } });
3883
3878
 
3884
3879
  const emptyValues = [];
3885
3880
  class ValuesPipe {
@@ -3891,14 +3886,14 @@ class ValuesPipe {
3891
3886
  : Object.keys(value).map(key => value[key]);
3892
3887
  }
3893
3888
  }
3894
- ValuesPipe.ɵfac = function ValuesPipe_Factory(t) { return new (t || ValuesPipe)(); };
3895
- ValuesPipe.ɵpipe = /*@__PURE__*/ i0.ɵɵdefinePipe({ name: "values", type: ValuesPipe, pure: true });
3896
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ValuesPipe, [{
3897
- type: Pipe,
3898
- args: [{
3899
- name: "values"
3900
- }]
3901
- }], null, null); })();
3889
+ ValuesPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ValuesPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
3890
+ ValuesPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ValuesPipe, name: "values" });
3891
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ValuesPipe, decorators: [{
3892
+ type: Pipe,
3893
+ args: [{
3894
+ name: "values"
3895
+ }]
3896
+ }] });
3902
3897
 
3903
3898
  class AsyncMethodBase {
3904
3899
  constructor(toaster) {
@@ -3912,6 +3907,9 @@ class AsyncMethodBase {
3912
3907
  get isLoading() {
3913
3908
  return this.loading;
3914
3909
  }
3910
+ getMethod() {
3911
+ return async () => null;
3912
+ }
3915
3913
  click() {
3916
3914
  if (this.disabled)
3917
3915
  return;
@@ -3943,52 +3941,52 @@ class AsyncMethodBase {
3943
3941
  return true;
3944
3942
  }
3945
3943
  }
3946
- AsyncMethodBase.ɵfac = function AsyncMethodBase_Factory(t) { i0.ɵɵinvalidFactory(); };
3947
- AsyncMethodBase.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: AsyncMethodBase, factory: AsyncMethodBase.ɵfac });
3948
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AsyncMethodBase, [{
3949
- type: Injectable
3950
- }], function () { return [{ type: undefined }]; }, { disabled: [{
3951
- type: Input
3952
- }], context: [{
3953
- type: Input
3954
- }], onSuccess: [{
3955
- type: Output
3956
- }], onError: [{
3957
- type: Output
3958
- }], isDisabled: [{
3959
- type: HostBinding,
3960
- args: ["class.disabled"]
3961
- }], isLoading: [{
3962
- type: HostBinding,
3963
- args: ["class.loading"]
3964
- }], click: [{
3965
- type: HostListener,
3966
- args: ["click"]
3967
- }] }); })();
3944
+ AsyncMethodBase.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: AsyncMethodBase, deps: [{ token: TOASTER_SERVICE }], target: i0.ɵɵFactoryTarget.Directive });
3945
+ AsyncMethodBase.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.8", type: AsyncMethodBase, selector: "[__asmb__]", inputs: { disabled: "disabled", context: "context" }, outputs: { onSuccess: "onSuccess", onError: "onError" }, host: { listeners: { "click": "click()" }, properties: { "class.disabled": "this.isDisabled", "class.loading": "this.isLoading" } }, ngImport: i0 });
3946
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: AsyncMethodBase, decorators: [{
3947
+ type: Directive,
3948
+ args: [{
3949
+ selector: "[__asmb__]"
3950
+ }]
3951
+ }], ctorParameters: function () { return [{ type: undefined, decorators: [{
3952
+ type: Inject,
3953
+ args: [TOASTER_SERVICE]
3954
+ }] }]; }, propDecorators: { disabled: [{
3955
+ type: Input
3956
+ }], context: [{
3957
+ type: Input
3958
+ }], onSuccess: [{
3959
+ type: Output
3960
+ }], onError: [{
3961
+ type: Output
3962
+ }], isDisabled: [{
3963
+ type: HostBinding,
3964
+ args: ["class.disabled"]
3965
+ }], isLoading: [{
3966
+ type: HostBinding,
3967
+ args: ["class.loading"]
3968
+ }], click: [{
3969
+ type: HostListener,
3970
+ args: ["click"]
3971
+ }] } });
3968
3972
 
3969
3973
  class AsyncMethodDirective extends AsyncMethodBase {
3970
- constructor(toaster) {
3971
- super(toaster);
3972
- }
3973
3974
  getMethod() {
3974
3975
  return this.method;
3975
3976
  }
3976
3977
  }
3977
- AsyncMethodDirective.ɵfac = function AsyncMethodDirective_Factory(t) { return new (t || AsyncMethodDirective)(i0.ɵɵdirectiveInject(TOASTER_SERVICE)); };
3978
- AsyncMethodDirective.ɵdir = /*@__PURE__*/ i0.ɵɵdefineDirective({ type: AsyncMethodDirective, selectors: [["", "async-method", ""]], inputs: { method: ["async-method", "method"] }, exportAs: ["async-method"], features: [i0.ɵɵInheritDefinitionFeature] });
3979
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AsyncMethodDirective, [{
3980
- type: Directive,
3981
- args: [{
3982
- selector: "[async-method]",
3983
- exportAs: "async-method"
3984
- }]
3985
- }], function () { return [{ type: undefined, decorators: [{
3986
- type: Inject,
3987
- args: [TOASTER_SERVICE]
3988
- }] }]; }, { method: [{
3989
- type: Input,
3990
- args: ["async-method"]
3991
- }] }); })();
3978
+ AsyncMethodDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: AsyncMethodDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
3979
+ AsyncMethodDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.8", type: AsyncMethodDirective, selector: "[async-method]", inputs: { method: ["async-method", "method"] }, exportAs: ["async-method"], usesInheritance: true, ngImport: i0 });
3980
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: AsyncMethodDirective, decorators: [{
3981
+ type: Directive,
3982
+ args: [{
3983
+ selector: "[async-method]",
3984
+ exportAs: "async-method"
3985
+ }]
3986
+ }], propDecorators: { method: [{
3987
+ type: Input,
3988
+ args: ["async-method"]
3989
+ }] } });
3992
3990
 
3993
3991
  const defaultClass = "default-image";
3994
3992
  const loadingClass = "loading-image";
@@ -4021,36 +4019,36 @@ class BackgroundDirective {
4021
4019
  this.renderer.setStyle(this.element.nativeElement, "background-size", this.backgroundSize);
4022
4020
  }
4023
4021
  }
4024
- BackgroundDirective.ɵfac = function BackgroundDirective_Factory(t) { return new (t || BackgroundDirective)(i0.ɵɵdirectiveInject(i1$1.HttpClient), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.Renderer2), i0.ɵɵdirectiveInject(UniversalService)); };
4025
- BackgroundDirective.ɵdir = /*@__PURE__*/ i0.ɵɵdefineDirective({ type: BackgroundDirective, selectors: [["", "background", ""]], inputs: { background: "background", backgroundSize: "backgroundSize" }, features: [i0.ɵɵNgOnChangesFeature] });
4026
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(BackgroundDirective, [{
4027
- type: Directive,
4028
- args: [{
4029
- selector: "[background]"
4030
- }]
4031
- }], function () { return [{ type: i1$1.HttpClient }, { type: i0.ElementRef }, { type: i0.Renderer2 }, { type: UniversalService }]; }, { background: [{
4032
- type: Input
4033
- }], backgroundSize: [{
4034
- type: Input
4035
- }] }); })();
4022
+ BackgroundDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: BackgroundDirective, deps: [{ token: i1$1.HttpClient }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: UniversalService }], target: i0.ɵɵFactoryTarget.Directive });
4023
+ BackgroundDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.8", type: BackgroundDirective, selector: "[background]", inputs: { background: "background", backgroundSize: "backgroundSize" }, usesOnChanges: true, ngImport: i0 });
4024
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: BackgroundDirective, decorators: [{
4025
+ type: Directive,
4026
+ args: [{
4027
+ selector: "[background]"
4028
+ }]
4029
+ }], ctorParameters: function () { return [{ type: i1$1.HttpClient }, { type: i0.ElementRef }, { type: i0.Renderer2 }, { type: UniversalService }]; }, propDecorators: { background: [{
4030
+ type: Input
4031
+ }], backgroundSize: [{
4032
+ type: Input
4033
+ }] } });
4036
4034
 
4037
4035
  class DynamicTableTemplateDirective {
4038
4036
  constructor(ref) {
4039
4037
  this.ref = ref;
4040
4038
  }
4041
4039
  }
4042
- DynamicTableTemplateDirective.ɵfac = function DynamicTableTemplateDirective_Factory(t) { return new (t || DynamicTableTemplateDirective)(i0.ɵɵdirectiveInject(i0.TemplateRef)); };
4043
- DynamicTableTemplateDirective.ɵdir = /*@__PURE__*/ i0.ɵɵdefineDirective({ type: DynamicTableTemplateDirective, selectors: [["ng-template", "column", ""]], inputs: { column: "column", pure: "pure" } });
4044
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(DynamicTableTemplateDirective, [{
4045
- type: Directive,
4046
- args: [{
4047
- selector: "ng-template[column]"
4048
- }]
4049
- }], function () { return [{ type: i0.TemplateRef }]; }, { column: [{
4050
- type: Input
4051
- }], pure: [{
4052
- type: Input
4053
- }] }); })();
4040
+ DynamicTableTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: DynamicTableTemplateDirective, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
4041
+ DynamicTableTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.8", type: DynamicTableTemplateDirective, selector: "ng-template[column]", inputs: { column: "column", pure: "pure" }, ngImport: i0 });
4042
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: DynamicTableTemplateDirective, decorators: [{
4043
+ type: Directive,
4044
+ args: [{
4045
+ selector: "ng-template[column]"
4046
+ }]
4047
+ }], ctorParameters: function () { return [{ type: i0.TemplateRef }]; }, propDecorators: { column: [{
4048
+ type: Input
4049
+ }], pure: [{
4050
+ type: Input
4051
+ }] } });
4054
4052
 
4055
4053
  class GlobalTemplateDirective {
4056
4054
  constructor(globalTemplates, template) {
@@ -4064,20 +4062,20 @@ class GlobalTemplateDirective {
4064
4062
  this.globalTemplates.remove(this.id);
4065
4063
  }
4066
4064
  }
4067
- GlobalTemplateDirective.ɵfac = function GlobalTemplateDirective_Factory(t) { return new (t || GlobalTemplateDirective)(i0.ɵɵdirectiveInject(GLOBAL_TEMPLATES), i0.ɵɵdirectiveInject(i0.TemplateRef)); };
4068
- GlobalTemplateDirective.ɵdir = /*@__PURE__*/ i0.ɵɵdefineDirective({ type: GlobalTemplateDirective, selectors: [["", "globalTemplate", ""]], inputs: { id: ["globalTemplate", "id"] } });
4069
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(GlobalTemplateDirective, [{
4070
- type: Directive,
4071
- args: [{
4072
- selector: "[globalTemplate]"
4073
- }]
4074
- }], function () { return [{ type: undefined, decorators: [{
4075
- type: Inject,
4076
- args: [GLOBAL_TEMPLATES]
4077
- }] }, { type: i0.TemplateRef }]; }, { id: [{
4078
- type: Input,
4079
- args: ["globalTemplate"]
4080
- }] }); })();
4065
+ GlobalTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: GlobalTemplateDirective, deps: [{ token: GLOBAL_TEMPLATES }, { token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
4066
+ GlobalTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.8", type: GlobalTemplateDirective, selector: "[globalTemplate]", inputs: { id: ["globalTemplate", "id"] }, ngImport: i0 });
4067
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: GlobalTemplateDirective, decorators: [{
4068
+ type: Directive,
4069
+ args: [{
4070
+ selector: "[globalTemplate]"
4071
+ }]
4072
+ }], ctorParameters: function () { return [{ type: undefined, decorators: [{
4073
+ type: Inject,
4074
+ args: [GLOBAL_TEMPLATES]
4075
+ }] }, { type: i0.TemplateRef }]; }, propDecorators: { id: [{
4076
+ type: Input,
4077
+ args: ["globalTemplate"]
4078
+ }] } });
4081
4079
 
4082
4080
  class IconDirective {
4083
4081
  constructor(element, renderer, icons) {
@@ -4117,35 +4115,31 @@ class IconDirective {
4117
4115
  });
4118
4116
  }
4119
4117
  }
4120
- IconDirective.ɵfac = function IconDirective_Factory(t) { return new (t || IconDirective)(i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.Renderer2), i0.ɵɵdirectiveInject(ICON_SERVICE)); };
4121
- IconDirective.ɵdir = /*@__PURE__*/ i0.ɵɵdefineDirective({ type: IconDirective, selectors: [["", "icon", ""]], hostVars: 2, hostBindings: function IconDirective_HostBindings(rf, ctx) { if (rf & 1) {
4122
- i0.ɵɵlistener("click", function IconDirective_click_HostBindingHandler() { return ctx.click(); });
4123
- } if (rf & 2) {
4124
- i0.ɵɵclassProp("active", ctx.isActive);
4125
- } }, inputs: { icon: "icon", activeIcon: "activeIcon", active: "active" }, outputs: { activeChange: "activeChange" }, features: [i0.ɵɵNgOnChangesFeature] });
4126
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(IconDirective, [{
4127
- type: Directive,
4128
- args: [{
4129
- selector: "[icon]"
4130
- }]
4131
- }], function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: undefined, decorators: [{
4132
- type: Inject,
4133
- args: [ICON_SERVICE]
4134
- }] }]; }, { icon: [{
4135
- type: Input
4136
- }], activeIcon: [{
4137
- type: Input
4138
- }], active: [{
4139
- type: Input
4140
- }], activeChange: [{
4141
- type: Output
4142
- }], isActive: [{
4143
- type: HostBinding,
4144
- args: ["class.active"]
4145
- }], click: [{
4146
- type: HostListener,
4147
- args: ["click"]
4148
- }] }); })();
4118
+ IconDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: IconDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: ICON_SERVICE }], target: i0.ɵɵFactoryTarget.Directive });
4119
+ IconDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.8", type: IconDirective, selector: "[icon]", inputs: { icon: "icon", activeIcon: "activeIcon", active: "active" }, outputs: { activeChange: "activeChange" }, host: { listeners: { "click": "click()" }, properties: { "class.active": "this.isActive" } }, usesOnChanges: true, ngImport: i0 });
4120
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: IconDirective, decorators: [{
4121
+ type: Directive,
4122
+ args: [{
4123
+ selector: "[icon]"
4124
+ }]
4125
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: undefined, decorators: [{
4126
+ type: Inject,
4127
+ args: [ICON_SERVICE]
4128
+ }] }]; }, propDecorators: { icon: [{
4129
+ type: Input
4130
+ }], activeIcon: [{
4131
+ type: Input
4132
+ }], active: [{
4133
+ type: Input
4134
+ }], activeChange: [{
4135
+ type: Output
4136
+ }], isActive: [{
4137
+ type: HostBinding,
4138
+ args: ["class.active"]
4139
+ }], click: [{
4140
+ type: HostListener,
4141
+ args: ["click"]
4142
+ }] } });
4149
4143
 
4150
4144
  class NgxTemplateOutletDirective {
4151
4145
  constructor(_viewContainerRef) {
@@ -4219,20 +4213,20 @@ class NgxTemplateOutletDirective {
4219
4213
  }
4220
4214
  }
4221
4215
  }
4222
- NgxTemplateOutletDirective.ɵfac = function NgxTemplateOutletDirective_Factory(t) { return new (t || NgxTemplateOutletDirective)(i0.ɵɵdirectiveInject(i0.ViewContainerRef)); };
4223
- NgxTemplateOutletDirective.ɵdir = /*@__PURE__*/ i0.ɵɵdefineDirective({ type: NgxTemplateOutletDirective, selectors: [["", "ngxTemplateOutlet", ""]], inputs: { context: "context", additionalContext: "additionalContext", ngxTemplateOutlet: "ngxTemplateOutlet" }, features: [i0.ɵɵNgOnChangesFeature] });
4224
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(NgxTemplateOutletDirective, [{
4225
- type: Directive,
4226
- args: [{
4227
- selector: "[ngxTemplateOutlet]"
4228
- }]
4229
- }], function () { return [{ type: i0.ViewContainerRef }]; }, { context: [{
4230
- type: Input
4231
- }], additionalContext: [{
4232
- type: Input
4233
- }], ngxTemplateOutlet: [{
4234
- type: Input
4235
- }] }); })();
4216
+ NgxTemplateOutletDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: NgxTemplateOutletDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
4217
+ NgxTemplateOutletDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.8", type: NgxTemplateOutletDirective, selector: "[ngxTemplateOutlet]", inputs: { context: "context", additionalContext: "additionalContext", ngxTemplateOutlet: "ngxTemplateOutlet" }, usesOnChanges: true, ngImport: i0 });
4218
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: NgxTemplateOutletDirective, decorators: [{
4219
+ type: Directive,
4220
+ args: [{
4221
+ selector: "[ngxTemplateOutlet]"
4222
+ }]
4223
+ }], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; }, propDecorators: { context: [{
4224
+ type: Input
4225
+ }], additionalContext: [{
4226
+ type: Input
4227
+ }], ngxTemplateOutlet: [{
4228
+ type: Input
4229
+ }] } });
4236
4230
 
4237
4231
  class PaginationDirective {
4238
4232
  constructor(zone) {
@@ -4288,30 +4282,30 @@ class PaginationDirective {
4288
4282
  });
4289
4283
  }
4290
4284
  }
4291
- PaginationDirective.ɵfac = function PaginationDirective_Factory(t) { return new (t || PaginationDirective)(i0.ɵɵdirectiveInject(i0.NgZone)); };
4292
- PaginationDirective.ɵdir = /*@__PURE__*/ i0.ɵɵdefineDirective({ type: PaginationDirective, selectors: [["", "pagination", ""]], inputs: { loader: ["pagination", "loader"], page: "page", itemsPerPage: "itemsPerPage", updateTime: "updateTime", waitFor: "waitFor" }, outputs: { pageChange: "pageChange", onRefresh: "onRefresh" }, exportAs: ["pagination"], features: [i0.ɵɵNgOnChangesFeature] });
4293
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(PaginationDirective, [{
4294
- type: Directive,
4295
- args: [{
4296
- selector: "[pagination]",
4297
- exportAs: "pagination"
4298
- }]
4299
- }], function () { return [{ type: i0.NgZone }]; }, { loader: [{
4300
- type: Input,
4301
- args: ["pagination"]
4302
- }], page: [{
4303
- type: Input
4304
- }], itemsPerPage: [{
4305
- type: Input
4306
- }], updateTime: [{
4307
- type: Input
4308
- }], waitFor: [{
4309
- type: Input
4310
- }], pageChange: [{
4311
- type: Output
4312
- }], onRefresh: [{
4313
- type: Output
4314
- }] }); })();
4285
+ PaginationDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: PaginationDirective, deps: [{ token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive });
4286
+ PaginationDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.8", type: PaginationDirective, selector: "[pagination]", inputs: { loader: ["pagination", "loader"], page: "page", itemsPerPage: "itemsPerPage", updateTime: "updateTime", waitFor: "waitFor" }, outputs: { pageChange: "pageChange", onRefresh: "onRefresh" }, exportAs: ["pagination"], usesOnChanges: true, ngImport: i0 });
4287
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: PaginationDirective, decorators: [{
4288
+ type: Directive,
4289
+ args: [{
4290
+ selector: "[pagination]",
4291
+ exportAs: "pagination"
4292
+ }]
4293
+ }], ctorParameters: function () { return [{ type: i0.NgZone }]; }, propDecorators: { loader: [{
4294
+ type: Input,
4295
+ args: ["pagination"]
4296
+ }], page: [{
4297
+ type: Input
4298
+ }], itemsPerPage: [{
4299
+ type: Input
4300
+ }], updateTime: [{
4301
+ type: Input
4302
+ }], waitFor: [{
4303
+ type: Input
4304
+ }], pageChange: [{
4305
+ type: Output
4306
+ }], onRefresh: [{
4307
+ type: Output
4308
+ }] } });
4315
4309
 
4316
4310
  class PaginationItemDirective {
4317
4311
  constructor(pagination, viewContainer, templateRef) {
@@ -4333,14 +4327,14 @@ class PaginationItemDirective {
4333
4327
  });
4334
4328
  }
4335
4329
  }
4336
- PaginationItemDirective.ɵfac = function PaginationItemDirective_Factory(t) { return new (t || PaginationItemDirective)(i0.ɵɵdirectiveInject(PaginationDirective), i0.ɵɵdirectiveInject(i0.ViewContainerRef), i0.ɵɵdirectiveInject(i0.TemplateRef)); };
4337
- PaginationItemDirective.ɵdir = /*@__PURE__*/ i0.ɵɵdefineDirective({ type: PaginationItemDirective, selectors: [["", "paginationItem", ""]] });
4338
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(PaginationItemDirective, [{
4339
- type: Directive,
4340
- args: [{
4341
- selector: "[paginationItem]"
4342
- }]
4343
- }], function () { return [{ type: PaginationDirective }, { type: i0.ViewContainerRef }, { type: i0.TemplateRef }]; }, null); })();
4330
+ PaginationItemDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: PaginationItemDirective, deps: [{ token: PaginationDirective }, { token: i0.ViewContainerRef }, { token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
4331
+ PaginationItemDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.8", type: PaginationItemDirective, selector: "[paginationItem]", ngImport: i0 });
4332
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: PaginationItemDirective, decorators: [{
4333
+ type: Directive,
4334
+ args: [{
4335
+ selector: "[paginationItem]"
4336
+ }]
4337
+ }], ctorParameters: function () { return [{ type: PaginationDirective }, { type: i0.ViewContainerRef }, { type: i0.TemplateRef }]; } });
4344
4338
 
4345
4339
  class ResourceIfDirective {
4346
4340
  constructor(http, viewContainer, templateRef, universal) {
@@ -4372,17 +4366,17 @@ class ResourceIfDirective {
4372
4366
  }
4373
4367
  }
4374
4368
  }
4375
- ResourceIfDirective.ɵfac = function ResourceIfDirective_Factory(t) { return new (t || ResourceIfDirective)(i0.ɵɵdirectiveInject(i1$1.HttpClient), i0.ɵɵdirectiveInject(i0.ViewContainerRef), i0.ɵɵdirectiveInject(i0.TemplateRef), i0.ɵɵdirectiveInject(UniversalService)); };
4376
- ResourceIfDirective.ɵdir = /*@__PURE__*/ i0.ɵɵdefineDirective({ type: ResourceIfDirective, selectors: [["", "resourceIf", ""]], inputs: { resourceIf: "resourceIf" }, exportAs: ["resourceIf"] });
4377
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ResourceIfDirective, [{
4378
- type: Directive,
4379
- args: [{
4380
- selector: "[resourceIf]",
4381
- exportAs: "resourceIf"
4382
- }]
4383
- }], function () { return [{ type: i1$1.HttpClient }, { type: i0.ViewContainerRef }, { type: i0.TemplateRef }, { type: UniversalService }]; }, { resourceIf: [{
4384
- type: Input
4385
- }] }); })();
4369
+ ResourceIfDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ResourceIfDirective, deps: [{ token: i1$1.HttpClient }, { token: i0.ViewContainerRef }, { token: i0.TemplateRef }, { token: UniversalService }], target: i0.ɵɵFactoryTarget.Directive });
4370
+ ResourceIfDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.8", type: ResourceIfDirective, selector: "[resourceIf]", inputs: { resourceIf: "resourceIf" }, exportAs: ["resourceIf"], ngImport: i0 });
4371
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ResourceIfDirective, decorators: [{
4372
+ type: Directive,
4373
+ args: [{
4374
+ selector: "[resourceIf]",
4375
+ exportAs: "resourceIf"
4376
+ }]
4377
+ }], ctorParameters: function () { return [{ type: i1$1.HttpClient }, { type: i0.ViewContainerRef }, { type: i0.TemplateRef }, { type: UniversalService }]; }, propDecorators: { resourceIf: [{
4378
+ type: Input
4379
+ }] } });
4386
4380
 
4387
4381
  class StickyDirective {
4388
4382
  constructor(cdr, events, element) {
@@ -4413,30 +4407,26 @@ class StickyDirective {
4413
4407
  this.updateTimer.run();
4414
4408
  }
4415
4409
  }
4416
- StickyDirective.ɵfac = function StickyDirective_Factory(t) { return new (t || StickyDirective)(i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(EventsService), i0.ɵɵdirectiveInject(i0.ElementRef)); };
4417
- StickyDirective.ɵdir = /*@__PURE__*/ i0.ɵɵdefineDirective({ type: StickyDirective, selectors: [["", "sticky", ""]], hostVars: 4, hostBindings: function StickyDirective_HostBindings(rf, ctx) { if (rf & 1) {
4418
- i0.ɵɵlistener("resize", function StickyDirective_resize_HostBindingHandler() { return ctx.updateSticky(); }, false, i0.ɵɵresolveWindow)("scroll", function StickyDirective_scroll_HostBindingHandler() { return ctx.updateSticky(); }, false, i0.ɵɵresolveWindow);
4419
- } if (rf & 2) {
4420
- i0.ɵɵclassProp("sticky", ctx.isSticky)("sticky-update", ctx.isUpdating);
4421
- } } });
4422
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(StickyDirective, [{
4423
- type: Directive,
4424
- args: [{
4425
- selector: "[sticky]"
4426
- }]
4427
- }], function () { return [{ type: i0.ChangeDetectorRef }, { type: EventsService }, { type: i0.ElementRef }]; }, { isSticky: [{
4428
- type: HostBinding,
4429
- args: ["class.sticky"]
4430
- }], isUpdating: [{
4431
- type: HostBinding,
4432
- args: ["class.sticky-update"]
4433
- }], updateSticky: [{
4434
- type: HostListener,
4435
- args: ["window:resize"]
4436
- }, {
4437
- type: HostListener,
4438
- args: ["window:scroll"]
4439
- }] }); })();
4410
+ StickyDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: StickyDirective, deps: [{ token: i0.ChangeDetectorRef }, { token: EventsService }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
4411
+ StickyDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.8", type: StickyDirective, selector: "[sticky]", host: { listeners: { "window:resize": "updateSticky()", "window:scroll": "updateSticky()" }, properties: { "class.sticky": "this.isSticky", "class.sticky-update": "this.isUpdating" } }, ngImport: i0 });
4412
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: StickyDirective, decorators: [{
4413
+ type: Directive,
4414
+ args: [{
4415
+ selector: "[sticky]"
4416
+ }]
4417
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: EventsService }, { type: i0.ElementRef }]; }, propDecorators: { isSticky: [{
4418
+ type: HostBinding,
4419
+ args: ["class.sticky"]
4420
+ }], isUpdating: [{
4421
+ type: HostBinding,
4422
+ args: ["class.sticky-update"]
4423
+ }], updateSticky: [{
4424
+ type: HostListener,
4425
+ args: ["window:resize"]
4426
+ }, {
4427
+ type: HostListener,
4428
+ args: ["window:scroll"]
4429
+ }] } });
4440
4430
 
4441
4431
  class StickyClassDirective {
4442
4432
  constructor(events, element, renderer) {
@@ -4457,16 +4447,16 @@ class StickyClassDirective {
4457
4447
  this.stickyUpdated.unsubscribe();
4458
4448
  }
4459
4449
  }
4460
- StickyClassDirective.ɵfac = function StickyClassDirective_Factory(t) { return new (t || StickyClassDirective)(i0.ɵɵdirectiveInject(EventsService), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.Renderer2)); };
4461
- StickyClassDirective.ɵdir = /*@__PURE__*/ i0.ɵɵdefineDirective({ type: StickyClassDirective, selectors: [["", "stickyClass", ""]], inputs: { stickyClass: "stickyClass" } });
4462
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(StickyClassDirective, [{
4463
- type: Directive,
4464
- args: [{
4465
- selector: "[stickyClass]"
4466
- }]
4467
- }], function () { return [{ type: EventsService }, { type: i0.ElementRef }, { type: i0.Renderer2 }]; }, { stickyClass: [{
4468
- type: Input
4469
- }] }); })();
4450
+ StickyClassDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: StickyClassDirective, deps: [{ token: EventsService }, { token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive });
4451
+ StickyClassDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.8", type: StickyClassDirective, selector: "[stickyClass]", inputs: { stickyClass: "stickyClass" }, ngImport: i0 });
4452
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: StickyClassDirective, decorators: [{
4453
+ type: Directive,
4454
+ args: [{
4455
+ selector: "[stickyClass]"
4456
+ }]
4457
+ }], ctorParameters: function () { return [{ type: EventsService }, { type: i0.ElementRef }, { type: i0.Renderer2 }]; }, propDecorators: { stickyClass: [{
4458
+ type: Input
4459
+ }] } });
4470
4460
 
4471
4461
  class UnorderedListItemDirective {
4472
4462
  constructor(elementRef, renderer, viewContainer) {
@@ -4514,33 +4504,33 @@ class UnorderedListItemDirective {
4514
4504
  this.item.classList.push(className);
4515
4505
  }
4516
4506
  }
4517
- UnorderedListItemDirective.ɵfac = function UnorderedListItemDirective_Factory(t) { return new (t || UnorderedListItemDirective)(i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.Renderer2), i0.ɵɵdirectiveInject(i0.ViewContainerRef)); };
4518
- UnorderedListItemDirective.ɵdir = /*@__PURE__*/ i0.ɵɵdefineDirective({ type: UnorderedListItemDirective, selectors: [["", "unorderedListItem", ""]], inputs: { item: ["unorderedListItem", "item"], type: "type", data: "data", keyPrefix: "keyPrefix", listStyle: "listStyle", path: "path", level: "level", templates: "templates", defaultTemplates: "defaultTemplates" }, features: [i0.ɵɵNgOnChangesFeature] });
4519
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(UnorderedListItemDirective, [{
4520
- type: Directive,
4521
- args: [{
4522
- selector: "[unorderedListItem]"
4523
- }]
4524
- }], function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }]; }, { item: [{
4525
- type: Input,
4526
- args: ["unorderedListItem"]
4527
- }], type: [{
4528
- type: Input
4529
- }], data: [{
4530
- type: Input
4531
- }], keyPrefix: [{
4532
- type: Input
4533
- }], listStyle: [{
4534
- type: Input
4535
- }], path: [{
4536
- type: Input
4537
- }], level: [{
4538
- type: Input
4539
- }], templates: [{
4540
- type: Input
4541
- }], defaultTemplates: [{
4542
- type: Input
4543
- }] }); })();
4507
+ UnorderedListItemDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: UnorderedListItemDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
4508
+ UnorderedListItemDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.8", type: UnorderedListItemDirective, selector: "[unorderedListItem]", inputs: { item: ["unorderedListItem", "item"], type: "type", data: "data", keyPrefix: "keyPrefix", listStyle: "listStyle", path: "path", level: "level", templates: "templates", defaultTemplates: "defaultTemplates" }, usesOnChanges: true, ngImport: i0 });
4509
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: UnorderedListItemDirective, decorators: [{
4510
+ type: Directive,
4511
+ args: [{
4512
+ selector: "[unorderedListItem]"
4513
+ }]
4514
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }]; }, propDecorators: { item: [{
4515
+ type: Input,
4516
+ args: ["unorderedListItem"]
4517
+ }], type: [{
4518
+ type: Input
4519
+ }], data: [{
4520
+ type: Input
4521
+ }], keyPrefix: [{
4522
+ type: Input
4523
+ }], listStyle: [{
4524
+ type: Input
4525
+ }], path: [{
4526
+ type: Input
4527
+ }], level: [{
4528
+ type: Input
4529
+ }], templates: [{
4530
+ type: Input
4531
+ }], defaultTemplates: [{
4532
+ type: Input
4533
+ }] } });
4544
4534
 
4545
4535
  class UnorderedListTemplateDirective extends UnorederedListTemplate {
4546
4536
  constructor(elementRef, templateRef) {
@@ -4552,191 +4542,19 @@ class UnorderedListTemplateDirective extends UnorederedListTemplate {
4552
4542
  return this.templateRef.createEmbeddedView(context);
4553
4543
  }
4554
4544
  }
4555
- UnorderedListTemplateDirective.ɵfac = function UnorderedListTemplateDirective_Factory(t) { return new (t || UnorderedListTemplateDirective)(i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.TemplateRef)); };
4556
- UnorderedListTemplateDirective.ɵdir = /*@__PURE__*/ i0.ɵɵdefineDirective({ type: UnorderedListTemplateDirective, selectors: [["ng-template", "type", "", "selector", ""]], inputs: { type: "type", selector: "selector" }, features: [i0.ɵɵInheritDefinitionFeature] });
4557
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(UnorderedListTemplateDirective, [{
4558
- type: Directive,
4559
- args: [{
4560
- selector: "ng-template[type][selector]"
4561
- }]
4562
- }], function () { return [{ type: i0.ElementRef }, { type: i0.TemplateRef }]; }, { type: [{
4563
- type: Input
4564
- }], selector: [{
4565
- type: Input
4566
- }] }); })();
4545
+ UnorderedListTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: UnorderedListTemplateDirective, deps: [{ token: i0.ElementRef }, { token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
4546
+ UnorderedListTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.8", type: UnorderedListTemplateDirective, selector: "ng-template[type][selector]", inputs: { type: "type", selector: "selector" }, usesInheritance: true, ngImport: i0 });
4547
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: UnorderedListTemplateDirective, decorators: [{
4548
+ type: Directive,
4549
+ args: [{
4550
+ selector: "ng-template[type][selector]"
4551
+ }]
4552
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.TemplateRef }]; }, propDecorators: { type: [{
4553
+ type: Input
4554
+ }], selector: [{
4555
+ type: Input
4556
+ }] } });
4567
4557
 
4568
- const _c0$2 = ["defaultKeyTemplate"];
4569
- const _c1$2 = ["defaultValueTemplate"];
4570
- const _c2$1 = ["defaultItemTemplate"];
4571
- function UnorderedListComponent_ng_template_0_Template(rf, ctx) { if (rf & 1) {
4572
- i0.ɵɵtext(0);
4573
- i0.ɵɵpipe(1, "translate");
4574
- } if (rf & 2) {
4575
- const keyPrefix_r9 = ctx.keyPrefix;
4576
- const key_r10 = ctx.item.key;
4577
- i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(1, 1, keyPrefix_r9 ? keyPrefix_r9 + key_r10 : key_r10), ":\n");
4578
- } }
4579
- function UnorderedListComponent_ng_template_2_ng_template_0_Template(rf, ctx) { if (rf & 1) {
4580
- i0.ɵɵtext(0);
4581
- } if (rf & 2) {
4582
- const val_r14 = i0.ɵɵnextContext().item.value;
4583
- i0.ɵɵtextInterpolate(val_r14);
4584
- } }
4585
- function UnorderedListComponent_ng_template_2_unordered_list_2_Template(rf, ctx) { if (rf & 1) {
4586
- i0.ɵɵelement(0, "unordered-list", 6);
4587
- } if (rf & 2) {
4588
- const ctx_r23 = i0.ɵɵnextContext();
4589
- const val_r14 = ctx_r23.item.value;
4590
- const keyPrefix_r12 = ctx_r23.keyPrefix;
4591
- const listStyle_r13 = ctx_r23.listStyle;
4592
- const path_r15 = ctx_r23.path;
4593
- const templates_r16 = ctx_r23.templates;
4594
- const ctx_r21 = i0.ɵɵnextContext();
4595
- i0.ɵɵproperty("data", val_r14)("keyPrefix", keyPrefix_r12)("listStyle", listStyle_r13)("path", path_r15)("level", ctx_r21.level + 1)("templates", templates_r16);
4596
- } }
4597
- function UnorderedListComponent_ng_template_2_Template(rf, ctx) { if (rf & 1) {
4598
- i0.ɵɵtemplate(0, UnorderedListComponent_ng_template_2_ng_template_0_Template, 1, 1, "ng-template", null, 3, i0.ɵɵtemplateRefExtractor);
4599
- i0.ɵɵtemplate(2, UnorderedListComponent_ng_template_2_unordered_list_2_Template, 1, 6, "unordered-list", 5);
4600
- } if (rf & 2) {
4601
- const isObject_r17 = ctx.valueIsObject;
4602
- const isArray_r18 = ctx.valueIsArray;
4603
- const _r19 = i0.ɵɵreference(1);
4604
- i0.ɵɵadvance(2);
4605
- i0.ɵɵproperty("ngIf", isObject_r17 || isArray_r18)("ngIfElse", _r19);
4606
- } }
4607
- function UnorderedListComponent_ng_template_4_ng_template_0_Template(rf, ctx) { if (rf & 1) {
4608
- i0.ɵɵelementContainer(0, 11);
4609
- } if (rf & 2) {
4610
- const ctx_r37 = i0.ɵɵnextContext();
4611
- const item_r24 = ctx_r37.item;
4612
- const data_r25 = ctx_r37.data;
4613
- const keyPrefix_r26 = ctx_r37.keyPrefix;
4614
- const listStyle_r27 = ctx_r37.listStyle;
4615
- const path_r28 = ctx_r37.path;
4616
- const level_r29 = ctx_r37.level;
4617
- const templates_r30 = ctx_r37.templates;
4618
- const ctx_r32 = i0.ɵɵnextContext();
4619
- i0.ɵɵproperty("unorderedListItem", item_r24)("data", data_r25)("keyPrefix", keyPrefix_r26)("listStyle", listStyle_r27)("path", path_r28)("level", level_r29)("templates", templates_r30)("defaultTemplates", ctx_r32.defaultTemplates);
4620
- } }
4621
- function UnorderedListComponent_ng_template_4_ng_template_2_Template(rf, ctx) { if (rf & 1) {
4622
- i0.ɵɵelementContainer(0, 12);
4623
- } if (rf & 2) {
4624
- const ctx_r38 = i0.ɵɵnextContext();
4625
- const item_r24 = ctx_r38.item;
4626
- const data_r25 = ctx_r38.data;
4627
- const keyPrefix_r26 = ctx_r38.keyPrefix;
4628
- const listStyle_r27 = ctx_r38.listStyle;
4629
- const path_r28 = ctx_r38.path;
4630
- const level_r29 = ctx_r38.level;
4631
- const templates_r30 = ctx_r38.templates;
4632
- const ctx_r34 = i0.ɵɵnextContext();
4633
- i0.ɵɵproperty("unorderedListItem", item_r24)("data", data_r25)("keyPrefix", keyPrefix_r26)("listStyle", listStyle_r27)("path", path_r28)("level", level_r29)("templates", templates_r30)("defaultTemplates", ctx_r34.defaultTemplates);
4634
- } }
4635
- function UnorderedListComponent_ng_template_4_ng_container_4_th_1_Template(rf, ctx) { if (rf & 1) {
4636
- i0.ɵɵelementStart(0, "th");
4637
- i0.ɵɵelementContainer(1, 13);
4638
- i0.ɵɵelementEnd();
4639
- } if (rf & 2) {
4640
- i0.ɵɵnextContext(2);
4641
- const _r31 = i0.ɵɵreference(1);
4642
- i0.ɵɵadvance(1);
4643
- i0.ɵɵproperty("ngTemplateOutlet", _r31);
4644
- } }
4645
- function UnorderedListComponent_ng_template_4_ng_container_4_Template(rf, ctx) { if (rf & 1) {
4646
- i0.ɵɵelementContainerStart(0);
4647
- i0.ɵɵtemplate(1, UnorderedListComponent_ng_template_4_ng_container_4_th_1_Template, 2, 1, "th", 10);
4648
- i0.ɵɵelementContainerEnd();
4649
- } if (rf & 2) {
4650
- const listStyle_r27 = i0.ɵɵnextContext().listStyle;
4651
- const _r31 = i0.ɵɵreference(1);
4652
- i0.ɵɵadvance(1);
4653
- i0.ɵɵproperty("ngIf", listStyle_r27 == "table")("ngIfElse", _r31);
4654
- } }
4655
- function UnorderedListComponent_ng_template_4_td_5_Template(rf, ctx) { if (rf & 1) {
4656
- i0.ɵɵelementStart(0, "td");
4657
- i0.ɵɵelementContainer(1, 13);
4658
- i0.ɵɵelementEnd();
4659
- } if (rf & 2) {
4660
- i0.ɵɵnextContext();
4661
- const _r33 = i0.ɵɵreference(3);
4662
- i0.ɵɵadvance(1);
4663
- i0.ɵɵproperty("ngTemplateOutlet", _r33);
4664
- } }
4665
- function UnorderedListComponent_ng_template_4_Template(rf, ctx) { if (rf & 1) {
4666
- i0.ɵɵtemplate(0, UnorderedListComponent_ng_template_4_ng_template_0_Template, 1, 8, "ng-template", null, 7, i0.ɵɵtemplateRefExtractor);
4667
- i0.ɵɵtemplate(2, UnorderedListComponent_ng_template_4_ng_template_2_Template, 1, 8, "ng-template", null, 8, i0.ɵɵtemplateRefExtractor);
4668
- i0.ɵɵtemplate(4, UnorderedListComponent_ng_template_4_ng_container_4_Template, 2, 2, "ng-container", 9);
4669
- i0.ɵɵtemplate(5, UnorderedListComponent_ng_template_4_td_5_Template, 2, 1, "td", 10);
4670
- } if (rf & 2) {
4671
- const listStyle_r27 = ctx.listStyle;
4672
- const _r33 = i0.ɵɵreference(3);
4673
- const ctx_r5 = i0.ɵɵnextContext();
4674
- i0.ɵɵadvance(4);
4675
- i0.ɵɵproperty("ngIf", !ctx_r5.isArray);
4676
- i0.ɵɵadvance(1);
4677
- i0.ɵɵproperty("ngIf", listStyle_r27 == "table")("ngIfElse", _r33);
4678
- } }
4679
- function UnorderedListComponent_ng_template_6_Template(rf, ctx) { if (rf & 1) {
4680
- i0.ɵɵtext(0);
4681
- } if (rf & 2) {
4682
- const ctx_r7 = i0.ɵɵnextContext();
4683
- i0.ɵɵtextInterpolate1(" ", ctx_r7.data, "\n");
4684
- } }
4685
- function UnorderedListComponent_ng_container_8_ul_1_li_1_Template(rf, ctx) { if (rf & 1) {
4686
- i0.ɵɵelementStart(0, "li", 17);
4687
- i0.ɵɵelementContainer(1, 19);
4688
- i0.ɵɵelementEnd();
4689
- } if (rf & 2) {
4690
- const item_r44 = ctx.$implicit;
4691
- const ctx_r43 = i0.ɵɵnextContext(3);
4692
- i0.ɵɵproperty("ngClass", item_r44.classList);
4693
- i0.ɵɵadvance(1);
4694
- i0.ɵɵproperty("unorderedListItem", item_r44)("data", ctx_r43.data)("keyPrefix", ctx_r43.keyPrefix)("listStyle", ctx_r43.listStyle)("path", ctx_r43.path ? ctx_r43.path + "." + item_r44.key : item_r44.key)("level", ctx_r43.level)("templates", ctx_r43.templates)("defaultTemplates", ctx_r43.defaultTemplates);
4695
- } }
4696
- function UnorderedListComponent_ng_container_8_ul_1_Template(rf, ctx) { if (rf & 1) {
4697
- i0.ɵɵelementStart(0, "ul", 17);
4698
- i0.ɵɵtemplate(1, UnorderedListComponent_ng_container_8_ul_1_li_1_Template, 2, 9, "li", 18);
4699
- i0.ɵɵpipe(2, "entries");
4700
- i0.ɵɵelementEnd();
4701
- } if (rf & 2) {
4702
- const ctx_r41 = i0.ɵɵnextContext(2);
4703
- i0.ɵɵproperty("ngClass", "level-" + ctx_r41.level);
4704
- i0.ɵɵadvance(1);
4705
- i0.ɵɵproperty("ngForOf", i0.ɵɵpipeBind1(2, 2, ctx_r41.data));
4706
- } }
4707
- function UnorderedListComponent_ng_container_8_table_2_tr_1_Template(rf, ctx) { if (rf & 1) {
4708
- i0.ɵɵelementStart(0, "tr", 17);
4709
- i0.ɵɵelementContainer(1, 19);
4710
- i0.ɵɵelementEnd();
4711
- } if (rf & 2) {
4712
- const item_r46 = ctx.$implicit;
4713
- const ctx_r45 = i0.ɵɵnextContext(3);
4714
- i0.ɵɵproperty("ngClass", item_r46.classList);
4715
- i0.ɵɵadvance(1);
4716
- i0.ɵɵproperty("unorderedListItem", item_r46)("data", ctx_r45.data)("keyPrefix", ctx_r45.keyPrefix)("listStyle", ctx_r45.listStyle)("path", ctx_r45.path ? ctx_r45.path + "." + item_r46.key : item_r46.key)("level", ctx_r45.level)("templates", ctx_r45.templates)("defaultTemplates", ctx_r45.defaultTemplates);
4717
- } }
4718
- function UnorderedListComponent_ng_container_8_table_2_Template(rf, ctx) { if (rf & 1) {
4719
- i0.ɵɵelementStart(0, "table", 17);
4720
- i0.ɵɵtemplate(1, UnorderedListComponent_ng_container_8_table_2_tr_1_Template, 2, 9, "tr", 18);
4721
- i0.ɵɵpipe(2, "entries");
4722
- i0.ɵɵelementEnd();
4723
- } if (rf & 2) {
4724
- const ctx_r42 = i0.ɵɵnextContext(2);
4725
- i0.ɵɵproperty("ngClass", "level-" + ctx_r42.level);
4726
- i0.ɵɵadvance(1);
4727
- i0.ɵɵproperty("ngForOf", i0.ɵɵpipeBind1(2, 2, ctx_r42.data));
4728
- } }
4729
- function UnorderedListComponent_ng_container_8_Template(rf, ctx) { if (rf & 1) {
4730
- i0.ɵɵelementContainerStart(0, 14);
4731
- i0.ɵɵtemplate(1, UnorderedListComponent_ng_container_8_ul_1_Template, 3, 4, "ul", 15);
4732
- i0.ɵɵtemplate(2, UnorderedListComponent_ng_container_8_table_2_Template, 3, 4, "table", 16);
4733
- i0.ɵɵelementContainerEnd();
4734
- } if (rf & 2) {
4735
- const ctx_r8 = i0.ɵɵnextContext();
4736
- i0.ɵɵproperty("ngSwitch", ctx_r8.listStyle);
4737
- i0.ɵɵadvance(1);
4738
- i0.ɵɵproperty("ngSwitchCase", "list");
4739
- } }
4740
4558
  class UnorderedListComponent {
4741
4559
  constructor(cdr) {
4742
4560
  this.cdr = cdr;
@@ -4763,147 +4581,37 @@ class UnorderedListComponent {
4763
4581
  this.cdr.detectChanges();
4764
4582
  }
4765
4583
  }
4766
- UnorderedListComponent.ɵfac = function UnorderedListComponent_Factory(t) { return new (t || UnorderedListComponent)(i0.ɵɵdirectiveInject(i0.ChangeDetectorRef)); };
4767
- UnorderedListComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: UnorderedListComponent, selectors: [["unordered-list"]], contentQueries: function UnorderedListComponent_ContentQueries(rf, ctx, dirIndex) { if (rf & 1) {
4768
- i0.ɵɵcontentQuery(dirIndex, UnorderedListTemplateDirective, 4);
4769
- } if (rf & 2) {
4770
- let _t;
4771
- i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.templateDirectives = _t);
4772
- } }, viewQuery: function UnorderedListComponent_Query(rf, ctx) { if (rf & 1) {
4773
- i0.ɵɵviewQuery(_c0$2, 5);
4774
- i0.ɵɵviewQuery(_c1$2, 5);
4775
- i0.ɵɵviewQuery(_c2$1, 5);
4776
- } if (rf & 2) {
4777
- let _t;
4778
- i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.defaultKeyTemplate = _t.first);
4779
- i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.defaultValueTemplate = _t.first);
4780
- i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.defaultItemTemplate = _t.first);
4781
- } }, inputs: { data: "data", keyPrefix: "keyPrefix", listStyle: "listStyle", path: "path", level: "level", templates: "templates" }, features: [i0.ɵɵNgOnChangesFeature], decls: 9, vars: 2, consts: [["defaultKeyTemplate", ""], ["defaultValueTemplate", ""], ["defaultItemTemplate", ""], ["value", ""], [3, "ngSwitch", 4, "ngIf", "ngIfElse"], [3, "data", "keyPrefix", "listStyle", "path", "level", "templates", 4, "ngIf", "ngIfElse"], [3, "data", "keyPrefix", "listStyle", "path", "level", "templates"], ["itemKey", ""], ["itemValue", ""], [4, "ngIf"], [4, "ngIf", "ngIfElse"], ["type", "key", 3, "unorderedListItem", "data", "keyPrefix", "listStyle", "path", "level", "templates", "defaultTemplates"], ["type", "value", 3, "unorderedListItem", "data", "keyPrefix", "listStyle", "path", "level", "templates", "defaultTemplates"], [3, "ngTemplateOutlet"], [3, "ngSwitch"], [3, "ngClass", 4, "ngSwitchCase"], [3, "ngClass", 4, "ngSwitchDefault"], [3, "ngClass"], [3, "ngClass", 4, "ngFor", "ngForOf"], ["type", "item", 3, "unorderedListItem", "data", "keyPrefix", "listStyle", "path", "level", "templates", "defaultTemplates"]], template: function UnorderedListComponent_Template(rf, ctx) { if (rf & 1) {
4782
- i0.ɵɵtemplate(0, UnorderedListComponent_ng_template_0_Template, 2, 3, "ng-template", null, 0, i0.ɵɵtemplateRefExtractor);
4783
- i0.ɵɵtemplate(2, UnorderedListComponent_ng_template_2_Template, 3, 2, "ng-template", null, 1, i0.ɵɵtemplateRefExtractor);
4784
- i0.ɵɵtemplate(4, UnorderedListComponent_ng_template_4_Template, 6, 3, "ng-template", null, 2, i0.ɵɵtemplateRefExtractor);
4785
- i0.ɵɵtemplate(6, UnorderedListComponent_ng_template_6_Template, 1, 1, "ng-template", null, 3, i0.ɵɵtemplateRefExtractor);
4786
- i0.ɵɵtemplate(8, UnorderedListComponent_ng_container_8_Template, 3, 2, "ng-container", 4);
4787
- } if (rf & 2) {
4788
- const _r6 = i0.ɵɵreference(7);
4789
- i0.ɵɵadvance(8);
4790
- i0.ɵɵproperty("ngIf", ctx.isObject || ctx.isArray)("ngIfElse", _r6);
4791
- } }, directives: [i1$3.NgIf, UnorderedListComponent, UnorderedListItemDirective, i1$3.NgTemplateOutlet, i1$3.NgSwitch, i1$3.NgSwitchCase, i1$3.NgClass, i1$3.NgForOf, i1$3.NgSwitchDefault], pipes: [TranslatePipe, EntriesPipe], encapsulation: 2 });
4792
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(UnorderedListComponent, [{
4793
- type: Component,
4794
- args: [{ selector: "unordered-list", template: "<ng-template let-keyPrefix=\"keyPrefix\" let-key=\"item.key\" let-isArray=\"isArray\" #defaultKeyTemplate>\r\n {{ (keyPrefix ? keyPrefix + key : key) | translate }}:\r\n</ng-template>\r\n<ng-template let-keyPrefix=\"keyPrefix\" let-listStyle=\"listStyle\" let-val=\"item.value\" let-path=\"path\"\r\n let-templates=\"templates\" let-isObject=\"valueIsObject\" let-isArray=\"valueIsArray\" #defaultValueTemplate>\r\n <ng-template #value>{{ val }}</ng-template>\r\n <unordered-list [data]=\"val\"\r\n [keyPrefix]=\"keyPrefix\"\r\n [listStyle]=\"listStyle\"\r\n [path]=\"path\"\r\n [level]=\"level + 1\"\r\n [templates]=\"templates\"\r\n *ngIf=\"(isObject || isArray); else value\"></unordered-list>\r\n</ng-template>\r\n<ng-template let-item=\"item\" let-data=\"data\" let-keyPrefix=\"keyPrefix\" let-listStyle=\"listStyle\" let-path=\"path\" let-level=\"level\" let-templates=\"templates\" #defaultItemTemplate>\r\n <ng-template #itemKey>\r\n <ng-container [unorderedListItem]=\"item\"\r\n type=\"key\"\r\n [data]=\"data\"\r\n [keyPrefix]=\"keyPrefix\"\r\n [listStyle]=\"listStyle\"\r\n [path]=\"path\"\r\n [level]=\"level\"\r\n [templates]=\"templates\"\r\n [defaultTemplates]=\"defaultTemplates\"></ng-container>\r\n </ng-template>\r\n <ng-template #itemValue>\r\n <ng-container [unorderedListItem]=\"item\"\r\n type=\"value\"\r\n [data]=\"data\"\r\n [keyPrefix]=\"keyPrefix\"\r\n [listStyle]=\"listStyle\"\r\n [path]=\"path\"\r\n [level]=\"level\"\r\n [templates]=\"templates\"\r\n [defaultTemplates]=\"defaultTemplates\"></ng-container>\r\n </ng-template>\r\n <ng-container *ngIf=\"!isArray\">\r\n <th *ngIf=\"listStyle == 'table'; else itemKey\">\r\n <ng-container [ngTemplateOutlet]=\"itemKey\"></ng-container>\r\n </th>\r\n </ng-container>\r\n <td *ngIf=\"listStyle == 'table'; else itemValue\">\r\n <ng-container [ngTemplateOutlet]=\"itemValue\"></ng-container>\r\n </td>\r\n</ng-template>\r\n<ng-template #value>\r\n {{ data }}\r\n</ng-template>\r\n<ng-container *ngIf=\"(isObject || isArray); else value\" [ngSwitch]=\"listStyle\">\r\n <ul [ngClass]=\"'level-' + level\" *ngSwitchCase=\"'list'\">\r\n <li *ngFor=\"let item of data | entries\" [ngClass]=\"item.classList\">\r\n <ng-container [unorderedListItem]=\"item\"\r\n type=\"item\"\r\n [data]=\"data\"\r\n [keyPrefix]=\"keyPrefix\"\r\n [listStyle]=\"listStyle\"\r\n [path]=\"path ? path + '.' + item.key : item.key\"\r\n [level]=\"level\"\r\n [templates]=\"templates\"\r\n [defaultTemplates]=\"defaultTemplates\"></ng-container>\r\n </li>\r\n </ul>\r\n <table [ngClass]=\"'level-' + level\" *ngSwitchDefault>\r\n <tr *ngFor=\"let item of data | entries\" [ngClass]=\"item.classList\">\r\n <ng-container [unorderedListItem]=\"item\"\r\n type=\"item\"\r\n [data]=\"data\"\r\n [keyPrefix]=\"keyPrefix\"\r\n [listStyle]=\"listStyle\"\r\n [path]=\"path ? path + '.' + item.key : item.key\"\r\n [level]=\"level\"\r\n [templates]=\"templates\"\r\n [defaultTemplates]=\"defaultTemplates\"></ng-container>\r\n </tr>\r\n </table>\r\n</ng-container>\r\n" }]
4795
- }], function () { return [{ type: i0.ChangeDetectorRef }]; }, { data: [{
4796
- type: Input
4797
- }], keyPrefix: [{
4798
- type: Input
4799
- }], listStyle: [{
4800
- type: Input
4801
- }], path: [{
4802
- type: Input
4803
- }], level: [{
4804
- type: Input
4805
- }], templates: [{
4806
- type: Input
4807
- }], templateDirectives: [{
4808
- type: ContentChildren,
4809
- args: [UnorderedListTemplateDirective]
4810
- }], defaultKeyTemplate: [{
4811
- type: ViewChild,
4812
- args: ["defaultKeyTemplate"]
4813
- }], defaultValueTemplate: [{
4814
- type: ViewChild,
4815
- args: ["defaultValueTemplate"]
4816
- }], defaultItemTemplate: [{
4817
- type: ViewChild,
4818
- args: ["defaultItemTemplate"]
4819
- }] }); })();
4584
+ UnorderedListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: UnorderedListComponent, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
4585
+ UnorderedListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.8", type: UnorderedListComponent, selector: "unordered-list", inputs: { data: "data", keyPrefix: "keyPrefix", listStyle: "listStyle", path: "path", level: "level", templates: "templates" }, queries: [{ propertyName: "templateDirectives", predicate: UnorderedListTemplateDirective }], viewQueries: [{ propertyName: "defaultKeyTemplate", first: true, predicate: ["defaultKeyTemplate"], descendants: true }, { propertyName: "defaultValueTemplate", first: true, predicate: ["defaultValueTemplate"], descendants: true }, { propertyName: "defaultItemTemplate", first: true, predicate: ["defaultItemTemplate"], descendants: true }], usesOnChanges: true, ngImport: i0, template: "<ng-template let-keyPrefix=\"keyPrefix\" let-key=\"item.key\" let-isArray=\"isArray\" #defaultKeyTemplate>\r\n {{ (keyPrefix ? keyPrefix + key : key) | translate }}:\r\n</ng-template>\r\n<ng-template let-keyPrefix=\"keyPrefix\" let-listStyle=\"listStyle\" let-val=\"item.value\" let-path=\"path\"\r\n let-templates=\"templates\" let-isObject=\"valueIsObject\" let-isArray=\"valueIsArray\" #defaultValueTemplate>\r\n <ng-template #value>{{ val }}</ng-template>\r\n <unordered-list [data]=\"val\"\r\n [keyPrefix]=\"keyPrefix\"\r\n [listStyle]=\"listStyle\"\r\n [path]=\"path\"\r\n [level]=\"level + 1\"\r\n [templates]=\"templates\"\r\n *ngIf=\"(isObject || isArray); else value\"></unordered-list>\r\n</ng-template>\r\n<ng-template let-item=\"item\" let-data=\"data\" let-keyPrefix=\"keyPrefix\" let-listStyle=\"listStyle\" let-path=\"path\" let-level=\"level\" let-templates=\"templates\" #defaultItemTemplate>\r\n <ng-template #itemKey>\r\n <ng-container [unorderedListItem]=\"item\"\r\n type=\"key\"\r\n [data]=\"data\"\r\n [keyPrefix]=\"keyPrefix\"\r\n [listStyle]=\"listStyle\"\r\n [path]=\"path\"\r\n [level]=\"level\"\r\n [templates]=\"templates\"\r\n [defaultTemplates]=\"defaultTemplates\"></ng-container>\r\n </ng-template>\r\n <ng-template #itemValue>\r\n <ng-container [unorderedListItem]=\"item\"\r\n type=\"value\"\r\n [data]=\"data\"\r\n [keyPrefix]=\"keyPrefix\"\r\n [listStyle]=\"listStyle\"\r\n [path]=\"path\"\r\n [level]=\"level\"\r\n [templates]=\"templates\"\r\n [defaultTemplates]=\"defaultTemplates\"></ng-container>\r\n </ng-template>\r\n <ng-container *ngIf=\"!isArray\">\r\n <th *ngIf=\"listStyle == 'table'; else itemKey\">\r\n <ng-container [ngTemplateOutlet]=\"itemKey\"></ng-container>\r\n </th>\r\n </ng-container>\r\n <td *ngIf=\"listStyle == 'table'; else itemValue\">\r\n <ng-container [ngTemplateOutlet]=\"itemValue\"></ng-container>\r\n </td>\r\n</ng-template>\r\n<ng-template #value>\r\n {{ data }}\r\n</ng-template>\r\n<ng-container *ngIf=\"(isObject || isArray); else value\" [ngSwitch]=\"listStyle\">\r\n <ul [ngClass]=\"'level-' + level\" *ngSwitchCase=\"'list'\">\r\n <li *ngFor=\"let item of data | entries\" [ngClass]=\"item.classList\">\r\n <ng-container [unorderedListItem]=\"item\"\r\n type=\"item\"\r\n [data]=\"data\"\r\n [keyPrefix]=\"keyPrefix\"\r\n [listStyle]=\"listStyle\"\r\n [path]=\"path ? path + '.' + item.key : item.key\"\r\n [level]=\"level\"\r\n [templates]=\"templates\"\r\n [defaultTemplates]=\"defaultTemplates\"></ng-container>\r\n </li>\r\n </ul>\r\n <table [ngClass]=\"'level-' + level\" *ngSwitchDefault>\r\n <tr *ngFor=\"let item of data | entries\" [ngClass]=\"item.classList\">\r\n <ng-container [unorderedListItem]=\"item\"\r\n type=\"item\"\r\n [data]=\"data\"\r\n [keyPrefix]=\"keyPrefix\"\r\n [listStyle]=\"listStyle\"\r\n [path]=\"path ? path + '.' + item.key : item.key\"\r\n [level]=\"level\"\r\n [templates]=\"templates\"\r\n [defaultTemplates]=\"defaultTemplates\"></ng-container>\r\n </tr>\r\n </table>\r\n</ng-container>\r\n", components: [{ type: UnorderedListComponent, selector: "unordered-list", inputs: ["data", "keyPrefix", "listStyle", "path", "level", "templates"] }], directives: [{ type: i1$3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: UnorderedListItemDirective, selector: "[unorderedListItem]", inputs: ["unorderedListItem", "type", "data", "keyPrefix", "listStyle", "path", "level", "templates", "defaultTemplates"] }, { type: i1$3.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }, { type: i1$3.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { type: i1$3.NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }, { type: i1$3.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i1$3.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i1$3.NgSwitchDefault, selector: "[ngSwitchDefault]" }], pipes: { "translate": TranslatePipe, "entries": EntriesPipe } });
4586
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: UnorderedListComponent, decorators: [{
4587
+ type: Component,
4588
+ args: [{ selector: "unordered-list", template: "<ng-template let-keyPrefix=\"keyPrefix\" let-key=\"item.key\" let-isArray=\"isArray\" #defaultKeyTemplate>\r\n {{ (keyPrefix ? keyPrefix + key : key) | translate }}:\r\n</ng-template>\r\n<ng-template let-keyPrefix=\"keyPrefix\" let-listStyle=\"listStyle\" let-val=\"item.value\" let-path=\"path\"\r\n let-templates=\"templates\" let-isObject=\"valueIsObject\" let-isArray=\"valueIsArray\" #defaultValueTemplate>\r\n <ng-template #value>{{ val }}</ng-template>\r\n <unordered-list [data]=\"val\"\r\n [keyPrefix]=\"keyPrefix\"\r\n [listStyle]=\"listStyle\"\r\n [path]=\"path\"\r\n [level]=\"level + 1\"\r\n [templates]=\"templates\"\r\n *ngIf=\"(isObject || isArray); else value\"></unordered-list>\r\n</ng-template>\r\n<ng-template let-item=\"item\" let-data=\"data\" let-keyPrefix=\"keyPrefix\" let-listStyle=\"listStyle\" let-path=\"path\" let-level=\"level\" let-templates=\"templates\" #defaultItemTemplate>\r\n <ng-template #itemKey>\r\n <ng-container [unorderedListItem]=\"item\"\r\n type=\"key\"\r\n [data]=\"data\"\r\n [keyPrefix]=\"keyPrefix\"\r\n [listStyle]=\"listStyle\"\r\n [path]=\"path\"\r\n [level]=\"level\"\r\n [templates]=\"templates\"\r\n [defaultTemplates]=\"defaultTemplates\"></ng-container>\r\n </ng-template>\r\n <ng-template #itemValue>\r\n <ng-container [unorderedListItem]=\"item\"\r\n type=\"value\"\r\n [data]=\"data\"\r\n [keyPrefix]=\"keyPrefix\"\r\n [listStyle]=\"listStyle\"\r\n [path]=\"path\"\r\n [level]=\"level\"\r\n [templates]=\"templates\"\r\n [defaultTemplates]=\"defaultTemplates\"></ng-container>\r\n </ng-template>\r\n <ng-container *ngIf=\"!isArray\">\r\n <th *ngIf=\"listStyle == 'table'; else itemKey\">\r\n <ng-container [ngTemplateOutlet]=\"itemKey\"></ng-container>\r\n </th>\r\n </ng-container>\r\n <td *ngIf=\"listStyle == 'table'; else itemValue\">\r\n <ng-container [ngTemplateOutlet]=\"itemValue\"></ng-container>\r\n </td>\r\n</ng-template>\r\n<ng-template #value>\r\n {{ data }}\r\n</ng-template>\r\n<ng-container *ngIf=\"(isObject || isArray); else value\" [ngSwitch]=\"listStyle\">\r\n <ul [ngClass]=\"'level-' + level\" *ngSwitchCase=\"'list'\">\r\n <li *ngFor=\"let item of data | entries\" [ngClass]=\"item.classList\">\r\n <ng-container [unorderedListItem]=\"item\"\r\n type=\"item\"\r\n [data]=\"data\"\r\n [keyPrefix]=\"keyPrefix\"\r\n [listStyle]=\"listStyle\"\r\n [path]=\"path ? path + '.' + item.key : item.key\"\r\n [level]=\"level\"\r\n [templates]=\"templates\"\r\n [defaultTemplates]=\"defaultTemplates\"></ng-container>\r\n </li>\r\n </ul>\r\n <table [ngClass]=\"'level-' + level\" *ngSwitchDefault>\r\n <tr *ngFor=\"let item of data | entries\" [ngClass]=\"item.classList\">\r\n <ng-container [unorderedListItem]=\"item\"\r\n type=\"item\"\r\n [data]=\"data\"\r\n [keyPrefix]=\"keyPrefix\"\r\n [listStyle]=\"listStyle\"\r\n [path]=\"path ? path + '.' + item.key : item.key\"\r\n [level]=\"level\"\r\n [templates]=\"templates\"\r\n [defaultTemplates]=\"defaultTemplates\"></ng-container>\r\n </tr>\r\n </table>\r\n</ng-container>\r\n" }]
4589
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }]; }, propDecorators: { data: [{
4590
+ type: Input
4591
+ }], keyPrefix: [{
4592
+ type: Input
4593
+ }], listStyle: [{
4594
+ type: Input
4595
+ }], path: [{
4596
+ type: Input
4597
+ }], level: [{
4598
+ type: Input
4599
+ }], templates: [{
4600
+ type: Input
4601
+ }], templateDirectives: [{
4602
+ type: ContentChildren,
4603
+ args: [UnorderedListTemplateDirective]
4604
+ }], defaultKeyTemplate: [{
4605
+ type: ViewChild,
4606
+ args: ["defaultKeyTemplate"]
4607
+ }], defaultValueTemplate: [{
4608
+ type: ViewChild,
4609
+ args: ["defaultValueTemplate"]
4610
+ }], defaultItemTemplate: [{
4611
+ type: ViewChild,
4612
+ args: ["defaultItemTemplate"]
4613
+ }] } });
4820
4614
 
4821
- const _c0$1 = function (a0) { return { disabled: a0 }; };
4822
- function PaginationMenuComponent_div_0_li_2_Template(rf, ctx) { if (rf & 1) {
4823
- const _r7 = i0.ɵɵgetCurrentView();
4824
- i0.ɵɵelementStart(0, "li", 5)(1, "a", 6);
4825
- i0.ɵɵlistener("click", function PaginationMenuComponent_div_0_li_2_Template_a_click_1_listener() { i0.ɵɵrestoreView(_r7); const ctx_r6 = i0.ɵɵnextContext(2); return ctx_r6.paginate(1); });
4826
- i0.ɵɵpipe(2, "safe");
4827
- i0.ɵɵelementEnd()();
4828
- } if (rf & 2) {
4829
- const ctx_r1 = i0.ɵɵnextContext(2);
4830
- i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(4, _c0$1, !ctx_r1.hasPrev));
4831
- i0.ɵɵadvance(1);
4832
- i0.ɵɵproperty("innerHTML", i0.ɵɵpipeBind1(2, 2, ctx_r1.firstLabel), i0.ɵɵsanitizeHtml);
4833
- } }
4834
- function PaginationMenuComponent_div_0_li_3_Template(rf, ctx) { if (rf & 1) {
4835
- const _r9 = i0.ɵɵgetCurrentView();
4836
- i0.ɵɵelementStart(0, "li", 5)(1, "a", 6);
4837
- i0.ɵɵlistener("click", function PaginationMenuComponent_div_0_li_3_Template_a_click_1_listener() { i0.ɵɵrestoreView(_r9); const ctx_r8 = i0.ɵɵnextContext(2); return ctx_r8.paginate(ctx_r8.pagination.page - 1); });
4838
- i0.ɵɵpipe(2, "safe");
4839
- i0.ɵɵelementEnd()();
4840
- } if (rf & 2) {
4841
- const ctx_r2 = i0.ɵɵnextContext(2);
4842
- i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(4, _c0$1, !ctx_r2.hasPrev));
4843
- i0.ɵɵadvance(1);
4844
- i0.ɵɵproperty("innerHTML", i0.ɵɵpipeBind1(2, 2, ctx_r2.prevLabel), i0.ɵɵsanitizeHtml);
4845
- } }
4846
- const _c1$1 = function (a0) { return { active: a0 }; };
4847
- function PaginationMenuComponent_div_0_li_4_Template(rf, ctx) { if (rf & 1) {
4848
- const _r12 = i0.ɵɵgetCurrentView();
4849
- i0.ɵɵelementStart(0, "li", 5)(1, "a", 7);
4850
- i0.ɵɵlistener("click", function PaginationMenuComponent_div_0_li_4_Template_a_click_1_listener() { const restoredCtx = i0.ɵɵrestoreView(_r12); const page_r10 = restoredCtx.$implicit; const ctx_r11 = i0.ɵɵnextContext(2); return ctx_r11.paginate(page_r10); });
4851
- i0.ɵɵtext(2);
4852
- i0.ɵɵelementEnd()();
4853
- } if (rf & 2) {
4854
- const page_r10 = ctx.$implicit;
4855
- const ctx_r3 = i0.ɵɵnextContext(2);
4856
- i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(3, _c1$1, ctx_r3.pagination.page == page_r10));
4857
- i0.ɵɵadvance(1);
4858
- i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(5, _c1$1, ctx_r3.pagination.page == page_r10));
4859
- i0.ɵɵadvance(1);
4860
- i0.ɵɵtextInterpolate(page_r10);
4861
- } }
4862
- function PaginationMenuComponent_div_0_li_5_Template(rf, ctx) { if (rf & 1) {
4863
- const _r14 = i0.ɵɵgetCurrentView();
4864
- i0.ɵɵelementStart(0, "li", 5)(1, "a", 6);
4865
- i0.ɵɵlistener("click", function PaginationMenuComponent_div_0_li_5_Template_a_click_1_listener() { i0.ɵɵrestoreView(_r14); const ctx_r13 = i0.ɵɵnextContext(2); return ctx_r13.paginate(ctx_r13.pagination.page + 1); });
4866
- i0.ɵɵpipe(2, "safe");
4867
- i0.ɵɵelementEnd()();
4868
- } if (rf & 2) {
4869
- const ctx_r4 = i0.ɵɵnextContext(2);
4870
- i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(4, _c0$1, !ctx_r4.hasNext));
4871
- i0.ɵɵadvance(1);
4872
- i0.ɵɵproperty("innerHTML", i0.ɵɵpipeBind1(2, 2, ctx_r4.nextLabel), i0.ɵɵsanitizeHtml);
4873
- } }
4874
- function PaginationMenuComponent_div_0_li_6_Template(rf, ctx) { if (rf & 1) {
4875
- const _r16 = i0.ɵɵgetCurrentView();
4876
- i0.ɵɵelementStart(0, "li", 5)(1, "a", 6);
4877
- i0.ɵɵlistener("click", function PaginationMenuComponent_div_0_li_6_Template_a_click_1_listener() { i0.ɵɵrestoreView(_r16); const ctx_r15 = i0.ɵɵnextContext(2); return ctx_r15.paginate(ctx_r15.pagination.maxPage); });
4878
- i0.ɵɵpipe(2, "safe");
4879
- i0.ɵɵelementEnd()();
4880
- } if (rf & 2) {
4881
- const ctx_r5 = i0.ɵɵnextContext(2);
4882
- i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(4, _c0$1, !ctx_r5.hasNext));
4883
- i0.ɵɵadvance(1);
4884
- i0.ɵɵproperty("innerHTML", i0.ɵɵpipeBind1(2, 2, ctx_r5.lastLabel), i0.ɵɵsanitizeHtml);
4885
- } }
4886
- function PaginationMenuComponent_div_0_Template(rf, ctx) { if (rf & 1) {
4887
- i0.ɵɵelementStart(0, "div", 1)(1, "ul", 2);
4888
- i0.ɵɵtemplate(2, PaginationMenuComponent_div_0_li_2_Template, 3, 6, "li", 3);
4889
- i0.ɵɵtemplate(3, PaginationMenuComponent_div_0_li_3_Template, 3, 6, "li", 3);
4890
- i0.ɵɵtemplate(4, PaginationMenuComponent_div_0_li_4_Template, 3, 7, "li", 4);
4891
- i0.ɵɵtemplate(5, PaginationMenuComponent_div_0_li_5_Template, 3, 6, "li", 3);
4892
- i0.ɵɵtemplate(6, PaginationMenuComponent_div_0_li_6_Template, 3, 6, "li", 3);
4893
- i0.ɵɵelementEnd()();
4894
- } if (rf & 2) {
4895
- const ctx_r0 = i0.ɵɵnextContext();
4896
- i0.ɵɵadvance(2);
4897
- i0.ɵɵproperty("ngIf", ctx_r0.boundaryLinks);
4898
- i0.ɵɵadvance(1);
4899
- i0.ɵɵproperty("ngIf", ctx_r0.directionLinks);
4900
- i0.ɵɵadvance(1);
4901
- i0.ɵɵproperty("ngForOf", ctx_r0.pages);
4902
- i0.ɵɵadvance(1);
4903
- i0.ɵɵproperty("ngIf", ctx_r0.directionLinks);
4904
- i0.ɵɵadvance(1);
4905
- i0.ɵɵproperty("ngIf", ctx_r0.boundaryLinks);
4906
- } }
4907
4615
  class PaginationMenuComponent {
4908
4616
  constructor(state, pagination, icons) {
4909
4617
  this.state = state;
@@ -4977,207 +4685,24 @@ class PaginationMenuComponent {
4977
4685
  this.pages = pages;
4978
4686
  }
4979
4687
  }
4980
- PaginationMenuComponent.ɵfac = function PaginationMenuComponent_Factory(t) { return new (t || PaginationMenuComponent)(i0.ɵɵdirectiveInject(StateService), i0.ɵɵdirectiveInject(PaginationDirective), i0.ɵɵdirectiveInject(ICON_SERVICE)); };
4981
- PaginationMenuComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: PaginationMenuComponent, selectors: [["pagination-menu"]], inputs: { maxSize: "maxSize", urlParam: "urlParam", directionLinks: "directionLinks", boundaryLinks: "boundaryLinks" }, features: [i0.ɵɵNgOnChangesFeature], decls: 1, vars: 1, consts: [["class", "pagination-menu", 4, "ngIf"], [1, "pagination-menu"], [1, "pagination"], ["class", "page-item", 3, "ngClass", 4, "ngIf"], ["class", "page-item", 3, "ngClass", 4, "ngFor", "ngForOf"], [1, "page-item", 3, "ngClass"], [1, "page-link", 3, "innerHTML", "click"], [1, "page-link", 3, "ngClass", "click"]], template: function PaginationMenuComponent_Template(rf, ctx) { if (rf & 1) {
4982
- i0.ɵɵtemplate(0, PaginationMenuComponent_div_0_Template, 7, 5, "div", 0);
4983
- } if (rf & 2) {
4984
- i0.ɵɵproperty("ngIf", ctx.pagination.total > ctx.pagination.itemsPerPage);
4985
- } }, directives: [i1$3.NgIf, i1$3.NgClass, i1$3.NgForOf], pipes: [SafeHtmlPipe], encapsulation: 2 });
4986
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(PaginationMenuComponent, [{
4987
- type: Component,
4988
- args: [{ selector: "pagination-menu", template: "<div class=\"pagination-menu\" *ngIf=\"pagination.total > pagination.itemsPerPage\">\r\n <ul class=\"pagination\">\r\n <li class=\"page-item\" [ngClass]=\"{disabled: !hasPrev}\" *ngIf=\"boundaryLinks\">\r\n <a class=\"page-link\" (click)=\"paginate(1)\" [innerHTML]=\"firstLabel | safe\"></a>\r\n </li>\r\n <li class=\"page-item\" [ngClass]=\"{disabled: !hasPrev}\" *ngIf=\"directionLinks\">\r\n <a class=\"page-link\" (click)=\"paginate(pagination.page - 1)\" [innerHTML]=\"prevLabel | safe\"></a>\r\n </li>\r\n <li class=\"page-item\" [ngClass]=\"{active: pagination.page == page}\" *ngFor=\"let page of pages\">\r\n <a class=\"page-link\" [ngClass]=\"{active: pagination.page == page}\" (click)=\"paginate(page)\">{{ page }}</a>\r\n </li>\r\n <li class=\"page-item\" [ngClass]=\"{disabled: !hasNext}\" *ngIf=\"directionLinks\">\r\n <a class=\"page-link\" (click)=\"paginate(pagination.page + 1)\" [innerHTML]=\"nextLabel | safe\"></a>\r\n </li>\r\n <li class=\"page-item\" [ngClass]=\"{disabled: !hasNext}\" *ngIf=\"boundaryLinks\">\r\n <a class=\"page-link\" (click)=\"paginate(pagination.maxPage)\" [innerHTML]=\"lastLabel | safe\"></a>\r\n </li>\r\n </ul>\r\n</div>\r\n" }]
4989
- }], function () { return [{ type: StateService }, { type: PaginationDirective }, { type: undefined, decorators: [{
4990
- type: Inject,
4991
- args: [ICON_SERVICE]
4992
- }] }]; }, { maxSize: [{
4993
- type: Input
4994
- }], urlParam: [{
4995
- type: Input
4996
- }], directionLinks: [{
4997
- type: Input
4998
- }], boundaryLinks: [{
4999
- type: Input
5000
- }] }); })();
4688
+ PaginationMenuComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: PaginationMenuComponent, deps: [{ token: StateService }, { token: PaginationDirective }, { token: ICON_SERVICE }], target: i0.ɵɵFactoryTarget.Component });
4689
+ PaginationMenuComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.8", type: PaginationMenuComponent, selector: "pagination-menu", inputs: { maxSize: "maxSize", urlParam: "urlParam", directionLinks: "directionLinks", boundaryLinks: "boundaryLinks" }, usesOnChanges: true, ngImport: i0, template: "<div class=\"pagination-menu\" *ngIf=\"pagination.total > pagination.itemsPerPage\">\r\n <ul class=\"pagination\">\r\n <li class=\"page-item\" [ngClass]=\"{disabled: !hasPrev}\" *ngIf=\"boundaryLinks\">\r\n <a class=\"page-link\" (click)=\"paginate(1)\" [innerHTML]=\"firstLabel | safe\"></a>\r\n </li>\r\n <li class=\"page-item\" [ngClass]=\"{disabled: !hasPrev}\" *ngIf=\"directionLinks\">\r\n <a class=\"page-link\" (click)=\"paginate(pagination.page - 1)\" [innerHTML]=\"prevLabel | safe\"></a>\r\n </li>\r\n <li class=\"page-item\" [ngClass]=\"{active: pagination.page == page}\" *ngFor=\"let page of pages\">\r\n <a class=\"page-link\" [ngClass]=\"{active: pagination.page == page}\" (click)=\"paginate(page)\">{{ page }}</a>\r\n </li>\r\n <li class=\"page-item\" [ngClass]=\"{disabled: !hasNext}\" *ngIf=\"directionLinks\">\r\n <a class=\"page-link\" (click)=\"paginate(pagination.page + 1)\" [innerHTML]=\"nextLabel | safe\"></a>\r\n </li>\r\n <li class=\"page-item\" [ngClass]=\"{disabled: !hasNext}\" *ngIf=\"boundaryLinks\">\r\n <a class=\"page-link\" (click)=\"paginate(pagination.maxPage)\" [innerHTML]=\"lastLabel | safe\"></a>\r\n </li>\r\n </ul>\r\n</div>\r\n", directives: [{ type: i1$3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i1$3.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i1$3.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }], pipes: { "safe": SafeHtmlPipe } });
4690
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: PaginationMenuComponent, decorators: [{
4691
+ type: Component,
4692
+ args: [{ selector: "pagination-menu", template: "<div class=\"pagination-menu\" *ngIf=\"pagination.total > pagination.itemsPerPage\">\r\n <ul class=\"pagination\">\r\n <li class=\"page-item\" [ngClass]=\"{disabled: !hasPrev}\" *ngIf=\"boundaryLinks\">\r\n <a class=\"page-link\" (click)=\"paginate(1)\" [innerHTML]=\"firstLabel | safe\"></a>\r\n </li>\r\n <li class=\"page-item\" [ngClass]=\"{disabled: !hasPrev}\" *ngIf=\"directionLinks\">\r\n <a class=\"page-link\" (click)=\"paginate(pagination.page - 1)\" [innerHTML]=\"prevLabel | safe\"></a>\r\n </li>\r\n <li class=\"page-item\" [ngClass]=\"{active: pagination.page == page}\" *ngFor=\"let page of pages\">\r\n <a class=\"page-link\" [ngClass]=\"{active: pagination.page == page}\" (click)=\"paginate(page)\">{{ page }}</a>\r\n </li>\r\n <li class=\"page-item\" [ngClass]=\"{disabled: !hasNext}\" *ngIf=\"directionLinks\">\r\n <a class=\"page-link\" (click)=\"paginate(pagination.page + 1)\" [innerHTML]=\"nextLabel | safe\"></a>\r\n </li>\r\n <li class=\"page-item\" [ngClass]=\"{disabled: !hasNext}\" *ngIf=\"boundaryLinks\">\r\n <a class=\"page-link\" (click)=\"paginate(pagination.maxPage)\" [innerHTML]=\"lastLabel | safe\"></a>\r\n </li>\r\n </ul>\r\n</div>\r\n" }]
4693
+ }], ctorParameters: function () { return [{ type: StateService }, { type: PaginationDirective }, { type: undefined, decorators: [{
4694
+ type: Inject,
4695
+ args: [ICON_SERVICE]
4696
+ }] }]; }, propDecorators: { maxSize: [{
4697
+ type: Input
4698
+ }], urlParam: [{
4699
+ type: Input
4700
+ }], directionLinks: [{
4701
+ type: Input
4702
+ }], boundaryLinks: [{
4703
+ type: Input
4704
+ }] } });
5001
4705
 
5002
- const _c0 = ["rowTemplate"];
5003
- const _c1 = ["wrapperTemplate"];
5004
- const _c2 = ["filterTemplate"];
5005
- const _c3 = ["columnsTemplate"];
5006
- const _c4 = ["defaultRowTemplate"];
5007
- const _c5 = ["defaultWrapperTemplate"];
5008
- const _c6 = ["defaultFilterTemplate"];
5009
- const _c7 = ["pagination"];
5010
- function DynamicTableComponent_ng_template_2_div_0_label_1_Template(rf, ctx) { if (rf & 1) {
5011
- i0.ɵɵelementStart(0, "label");
5012
- i0.ɵɵtext(1);
5013
- i0.ɵɵpipe(2, "translate");
5014
- i0.ɵɵelementEnd();
5015
- } if (rf & 2) {
5016
- const ctx_r13 = i0.ɵɵnextContext(3);
5017
- i0.ɵɵattribute("for", ctx_r13.tableId);
5018
- i0.ɵɵadvance(1);
5019
- i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(2, 2, ctx_r13.label));
5020
- } }
5021
- function DynamicTableComponent_ng_template_2_div_0_Template(rf, ctx) { if (rf & 1) {
5022
- const _r16 = i0.ɵɵgetCurrentView();
5023
- i0.ɵɵelementStart(0, "div", 11);
5024
- i0.ɵɵtemplate(1, DynamicTableComponent_ng_template_2_div_0_label_1_Template, 3, 4, "label", 12);
5025
- i0.ɵɵelementStart(2, "input", 13);
5026
- i0.ɵɵlistener("ngModelChange", function DynamicTableComponent_ng_template_2_div_0_Template_input_ngModelChange_2_listener($event) { i0.ɵɵrestoreView(_r16); const table_r11 = i0.ɵɵnextContext().$implicit; return table_r11.setFilter($event); });
5027
- i0.ɵɵpipe(3, "translate");
5028
- i0.ɵɵelementEnd()();
5029
- } if (rf & 2) {
5030
- const table_r11 = i0.ɵɵnextContext().$implicit;
5031
- const ctx_r12 = i0.ɵɵnextContext();
5032
- i0.ɵɵadvance(1);
5033
- i0.ɵɵproperty("ngIf", ctx_r12.label);
5034
- i0.ɵɵadvance(1);
5035
- i0.ɵɵproperty("placeholder", i0.ɵɵpipeBind1(3, 4, ctx_r12.placeholder))("ngModel", table_r11.filter);
5036
- i0.ɵɵattribute("id", ctx_r12.tableId);
5037
- } }
5038
- function DynamicTableComponent_ng_template_2_Template(rf, ctx) { if (rf & 1) {
5039
- i0.ɵɵtemplate(0, DynamicTableComponent_ng_template_2_div_0_Template, 4, 6, "div", 10);
5040
- } if (rf & 2) {
5041
- const table_r11 = ctx.$implicit;
5042
- i0.ɵɵproperty("ngIf", table_r11.showFilter);
5043
- } }
5044
- function DynamicTableComponent_ng_template_7_ng_template_0_Template(rf, ctx) { if (rf & 1) {
5045
- i0.ɵɵelementStart(0, "span");
5046
- i0.ɵɵtext(1);
5047
- i0.ɵɵelementEnd();
5048
- } if (rf & 2) {
5049
- const column_r26 = ctx.column;
5050
- const item_r27 = ctx.item;
5051
- i0.ɵɵadvance(1);
5052
- i0.ɵɵtextInterpolate(item_r27[column_r26] == undefined || item_r27[column_r26] == null ? "-" : item_r27[column_r26]);
5053
- } }
5054
- function DynamicTableComponent_ng_template_7_ng_template_2_Template(rf, ctx) { if (rf & 1) {
5055
- i0.ɵɵelementContainer(0, 3);
5056
- } if (rf & 2) {
5057
- const ctx_r28 = i0.ɵɵnextContext();
5058
- const template_r20 = ctx_r28.template;
5059
- const context_r18 = ctx_r28.$implicit;
5060
- i0.ɵɵproperty("ngxTemplateOutlet", template_r20.ref)("context", context_r18);
5061
- } }
5062
- function DynamicTableComponent_ng_template_7_td_4_Template(rf, ctx) { if (rf & 1) {
5063
- i0.ɵɵelementStart(0, "td", 17);
5064
- i0.ɵɵelementContainer(1, 3);
5065
- i0.ɵɵelementEnd();
5066
- } if (rf & 2) {
5067
- const ctx_r29 = i0.ɵɵnextContext();
5068
- const column_r19 = ctx_r29.column;
5069
- const template_r20 = ctx_r29.template;
5070
- const context_r18 = ctx_r29.$implicit;
5071
- const _r21 = i0.ɵɵreference(1);
5072
- i0.ɵɵproperty("ngClass", "column-" + column_r19);
5073
- i0.ɵɵadvance(1);
5074
- i0.ɵɵproperty("ngxTemplateOutlet", !template_r20 ? _r21 : template_r20.ref)("context", context_r18);
5075
- } }
5076
- function DynamicTableComponent_ng_template_7_Template(rf, ctx) { if (rf & 1) {
5077
- i0.ɵɵtemplate(0, DynamicTableComponent_ng_template_7_ng_template_0_Template, 2, 1, "ng-template", null, 14, i0.ɵɵtemplateRefExtractor);
5078
- i0.ɵɵtemplate(2, DynamicTableComponent_ng_template_7_ng_template_2_Template, 1, 2, "ng-template", null, 15, i0.ɵɵtemplateRefExtractor);
5079
- i0.ɵɵtemplate(4, DynamicTableComponent_ng_template_7_td_4_Template, 2, 3, "td", 16);
5080
- } if (rf & 2) {
5081
- const template_r20 = ctx.template;
5082
- const _r23 = i0.ɵɵreference(3);
5083
- i0.ɵɵadvance(4);
5084
- i0.ɵɵproperty("ngIf", !template_r20 || !template_r20.pure)("ngIfElse", _r23);
5085
- } }
5086
- const _c8 = function (a0, a1) { return { template: a0, column: a1 }; };
5087
- function DynamicTableComponent_ng_template_9_ng_container_0_Template(rf, ctx) { if (rf & 1) {
5088
- i0.ɵɵelementContainer(0, 19);
5089
- } if (rf & 2) {
5090
- const column_r32 = ctx.$implicit;
5091
- const context_r30 = i0.ɵɵnextContext().$implicit;
5092
- const ctx_r31 = i0.ɵɵnextContext();
5093
- const _r3 = i0.ɵɵreference(8);
5094
- i0.ɵɵproperty("ngxTemplateOutlet", _r3)("context", context_r30)("additionalContext", i0.ɵɵpureFunction2(3, _c8, ctx_r31.templates[column_r32], column_r32));
5095
- } }
5096
- function DynamicTableComponent_ng_template_9_Template(rf, ctx) { if (rf & 1) {
5097
- i0.ɵɵtemplate(0, DynamicTableComponent_ng_template_9_ng_container_0_Template, 1, 6, "ng-container", 18);
5098
- } if (rf & 2) {
5099
- const ctx_r6 = i0.ɵɵnextContext();
5100
- i0.ɵɵproperty("ngForOf", ctx_r6.cols);
5101
- } }
5102
- function DynamicTableComponent_ng_template_11_Template(rf, ctx) { if (rf & 1) {
5103
- i0.ɵɵelementStart(0, "tr");
5104
- i0.ɵɵelementContainer(1, 3);
5105
- i0.ɵɵelementEnd();
5106
- } if (rf & 2) {
5107
- const context_r34 = ctx.$implicit;
5108
- i0.ɵɵnextContext();
5109
- const _r5 = i0.ɵɵreference(10);
5110
- i0.ɵɵadvance(1);
5111
- i0.ɵɵproperty("ngxTemplateOutlet", _r5)("context", context_r34);
5112
- } }
5113
- function DynamicTableComponent_ng_template_13_th_3_a_1_i_4_Template(rf, ctx) { if (rf & 1) {
5114
- i0.ɵɵelement(0, "i", 26);
5115
- } if (rf & 2) {
5116
- const column_r37 = i0.ɵɵnextContext(2).$implicit;
5117
- const ctx_r40 = i0.ɵɵnextContext(2);
5118
- i0.ɵɵproperty("icon", ctx_r40.orderDescending ? "sort-desc" : "sort-asc")("ngClass", ctx_r40.orderBy == column_r37 ? ctx_r40.orderDescending ? "sort-desc" : "sort-asc" : "");
5119
- } }
5120
- function DynamicTableComponent_ng_template_13_th_3_a_1_Template(rf, ctx) { if (rf & 1) {
5121
- const _r44 = i0.ɵɵgetCurrentView();
5122
- i0.ɵɵelementStart(0, "a", 24);
5123
- i0.ɵɵlistener("click", function DynamicTableComponent_ng_template_13_th_3_a_1_Template_a_click_0_listener() { i0.ɵɵrestoreView(_r44); const column_r37 = i0.ɵɵnextContext().$implicit; const ctx_r42 = i0.ɵɵnextContext(2); return ctx_r42.setOrder(column_r37); });
5124
- i0.ɵɵelementStart(1, "span");
5125
- i0.ɵɵtext(2);
5126
- i0.ɵɵpipe(3, "translate");
5127
- i0.ɵɵelementEnd();
5128
- i0.ɵɵtemplate(4, DynamicTableComponent_ng_template_13_th_3_a_1_i_4_Template, 1, 2, "i", 25);
5129
- i0.ɵɵelementEnd();
5130
- } if (rf & 2) {
5131
- const column_r37 = i0.ɵɵnextContext().$implicit;
5132
- const ctx_r38 = i0.ɵɵnextContext(2);
5133
- i0.ɵɵadvance(2);
5134
- i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(3, 2, "label." + column_r37));
5135
- i0.ɵɵadvance(2);
5136
- i0.ɵɵproperty("ngIf", ctx_r38.orderBy == column_r37);
5137
- } }
5138
- function DynamicTableComponent_ng_template_13_th_3_span_2_Template(rf, ctx) { if (rf & 1) {
5139
- i0.ɵɵelementStart(0, "span");
5140
- i0.ɵɵtext(1);
5141
- i0.ɵɵpipe(2, "translate");
5142
- i0.ɵɵelementEnd();
5143
- } if (rf & 2) {
5144
- const column_r37 = i0.ɵɵnextContext().$implicit;
5145
- i0.ɵɵadvance(1);
5146
- i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(2, 1, "label." + column_r37));
5147
- } }
5148
- function DynamicTableComponent_ng_template_13_th_3_Template(rf, ctx) { if (rf & 1) {
5149
- i0.ɵɵelementStart(0, "th", 17);
5150
- i0.ɵɵtemplate(1, DynamicTableComponent_ng_template_13_th_3_a_1_Template, 5, 4, "a", 23);
5151
- i0.ɵɵtemplate(2, DynamicTableComponent_ng_template_13_th_3_span_2_Template, 3, 3, "span", 12);
5152
- i0.ɵɵelementEnd();
5153
- } if (rf & 2) {
5154
- const column_r37 = ctx.$implicit;
5155
- const ctx_r35 = i0.ɵɵnextContext(2);
5156
- i0.ɵɵproperty("ngClass", "column-" + column_r37);
5157
- i0.ɵɵadvance(1);
5158
- i0.ɵɵproperty("ngIf", ctx_r35.orders[column_r37]);
5159
- i0.ɵɵadvance(1);
5160
- i0.ɵɵproperty("ngIf", !ctx_r35.orders[column_r37]);
5161
- } }
5162
- function DynamicTableComponent_ng_template_13_ng_container_5_Template(rf, ctx) { if (rf & 1) {
5163
- i0.ɵɵelementContainer(0, 19);
5164
- } if (rf & 2) {
5165
- const context_r47 = ctx.$implicit;
5166
- const ctx_r36 = i0.ɵɵnextContext(2);
5167
- i0.ɵɵproperty("ngxTemplateOutlet", ctx_r36.rowTemplate)("context", context_r47)("additionalContext", ctx_r36);
5168
- } }
5169
- function DynamicTableComponent_ng_template_13_Template(rf, ctx) { if (rf & 1) {
5170
- i0.ɵɵelementStart(0, "table", 20)(1, "thead")(2, "tr");
5171
- i0.ɵɵtemplate(3, DynamicTableComponent_ng_template_13_th_3_Template, 3, 3, "th", 21);
5172
- i0.ɵɵelementEnd()();
5173
- i0.ɵɵelementStart(4, "tbody");
5174
- i0.ɵɵtemplate(5, DynamicTableComponent_ng_template_13_ng_container_5_Template, 1, 3, "ng-container", 22);
5175
- i0.ɵɵelementEnd()();
5176
- } if (rf & 2) {
5177
- const ctx_r10 = i0.ɵɵnextContext();
5178
- i0.ɵɵadvance(3);
5179
- i0.ɵɵproperty("ngForOf", ctx_r10.cols);
5180
- } }
5181
4706
  class DynamicTableComponent {
5182
4707
  constructor() {
5183
4708
  this.loadData = (page, itemsPerPage) => {
@@ -5279,117 +4804,67 @@ class DynamicTableComponent {
5279
4804
  });
5280
4805
  }
5281
4806
  }
5282
- DynamicTableComponent.ɵfac = function DynamicTableComponent_Factory(t) { return new (t || DynamicTableComponent)(); };
5283
- DynamicTableComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: DynamicTableComponent, selectors: [["dynamic-table"]], contentQueries: function DynamicTableComponent_ContentQueries(rf, ctx, dirIndex) { if (rf & 1) {
5284
- i0.ɵɵcontentQuery(dirIndex, _c0, 7);
5285
- i0.ɵɵcontentQuery(dirIndex, _c1, 7);
5286
- i0.ɵɵcontentQuery(dirIndex, _c2, 7);
5287
- i0.ɵɵcontentQuery(dirIndex, DynamicTableTemplateDirective, 4);
5288
- } if (rf & 2) {
5289
- let _t;
5290
- i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.rowTemplate = _t.first);
5291
- i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.wrapperTemplate = _t.first);
5292
- i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.filterTemplate = _t.first);
5293
- i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.templateDirectives = _t);
5294
- } }, viewQuery: function DynamicTableComponent_Query(rf, ctx) { if (rf & 1) {
5295
- i0.ɵɵviewQuery(_c3, 7);
5296
- i0.ɵɵviewQuery(_c4, 7);
5297
- i0.ɵɵviewQuery(_c5, 7);
5298
- i0.ɵɵviewQuery(_c6, 7);
5299
- i0.ɵɵviewQuery(_c7, 5);
5300
- } if (rf & 2) {
5301
- let _t;
5302
- i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.columnsTemplate = _t.first);
5303
- i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.defaultRowTemplate = _t.first);
5304
- i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.defaultWrapperTemplate = _t.first);
5305
- i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.defaultFilterTemplate = _t.first);
5306
- i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.pagination = _t.first);
5307
- } }, inputs: { label: "label", placeholder: "placeholder", dataLoader: "dataLoader", data: "data", parallelData: "parallelData", columns: "columns", showFilter: "showFilter", itemsPerPage: "itemsPerPage", updateTime: "updateTime", maxPages: "maxPages", directionLinks: "directionLinks", boundaryLinks: "boundaryLinks", orderBy: "orderBy", orderDescending: "orderDescending" }, features: [i0.ɵɵNgOnChangesFeature], decls: 17, vars: 13, consts: [[1, "dynamic-table", 3, "pagination", "itemsPerPage", "updateTime"], ["pagination", "pagination"], ["defaultFilterTemplate", ""], [3, "ngxTemplateOutlet", "context"], [3, "maxSize", "directionLinks", "boundaryLinks"], [1, "table-responsive"], ["columnTemplate", ""], ["columnsTemplate", ""], ["defaultRowTemplate", ""], ["defaultWrapperTemplate", ""], ["class", "table-search", 4, "ngIf"], [1, "table-search"], [4, "ngIf"], ["type", "text", 1, "form-control", 3, "placeholder", "ngModel", "ngModelChange"], ["defaultTemplate", ""], ["pureTemplate", ""], [3, "ngClass", 4, "ngIf", "ngIfElse"], [3, "ngClass"], [3, "ngxTemplateOutlet", "context", "additionalContext", 4, "ngFor", "ngForOf"], [3, "ngxTemplateOutlet", "context", "additionalContext"], [1, "table", "table-striped"], [3, "ngClass", 4, "ngFor", "ngForOf"], [3, "ngxTemplateOutlet", "context", "additionalContext", 4, "paginationItem"], [3, "click", 4, "ngIf"], [3, "click"], [3, "icon", "ngClass", 4, "ngIf"], [3, "icon", "ngClass"]], template: function DynamicTableComponent_Template(rf, ctx) { if (rf & 1) {
5308
- i0.ɵɵelementStart(0, "div", 0, 1);
5309
- i0.ɵɵtemplate(2, DynamicTableComponent_ng_template_2_Template, 1, 1, "ng-template", null, 2, i0.ɵɵtemplateRefExtractor);
5310
- i0.ɵɵelementContainer(4, 3);
5311
- i0.ɵɵelement(5, "pagination-menu", 4);
5312
- i0.ɵɵelementStart(6, "div", 5);
5313
- i0.ɵɵtemplate(7, DynamicTableComponent_ng_template_7_Template, 5, 2, "ng-template", null, 6, i0.ɵɵtemplateRefExtractor);
5314
- i0.ɵɵtemplate(9, DynamicTableComponent_ng_template_9_Template, 1, 1, "ng-template", null, 7, i0.ɵɵtemplateRefExtractor);
5315
- i0.ɵɵtemplate(11, DynamicTableComponent_ng_template_11_Template, 2, 2, "ng-template", null, 8, i0.ɵɵtemplateRefExtractor);
5316
- i0.ɵɵtemplate(13, DynamicTableComponent_ng_template_13_Template, 6, 1, "ng-template", null, 9, i0.ɵɵtemplateRefExtractor);
5317
- i0.ɵɵelementContainer(15, 3);
5318
- i0.ɵɵelementEnd();
5319
- i0.ɵɵelement(16, "pagination-menu", 4);
5320
- i0.ɵɵelementEnd();
5321
- } if (rf & 2) {
5322
- const _r1 = i0.ɵɵreference(3);
5323
- const _r9 = i0.ɵɵreference(14);
5324
- i0.ɵɵproperty("pagination", ctx.loadData)("itemsPerPage", ctx.itemsPerPage)("updateTime", ctx.updateTime);
5325
- i0.ɵɵadvance(4);
5326
- i0.ɵɵproperty("ngxTemplateOutlet", ctx.filterTemplate || _r1)("context", ctx);
5327
- i0.ɵɵadvance(1);
5328
- i0.ɵɵproperty("maxSize", ctx.maxPages)("directionLinks", ctx.directionLinks)("boundaryLinks", ctx.boundaryLinks);
5329
- i0.ɵɵadvance(10);
5330
- i0.ɵɵproperty("ngxTemplateOutlet", ctx.wrapperTemplate || _r9)("context", ctx);
5331
- i0.ɵɵadvance(1);
5332
- i0.ɵɵproperty("maxSize", ctx.maxPages)("directionLinks", ctx.directionLinks)("boundaryLinks", ctx.boundaryLinks);
5333
- } }, directives: [PaginationDirective, i1$3.NgIf, i3.DefaultValueAccessor, i3.NgControlStatus, i3.NgModel, NgxTemplateOutletDirective, PaginationMenuComponent, i1$3.NgClass, i1$3.NgForOf, IconDirective, PaginationItemDirective], pipes: [TranslatePipe], encapsulation: 2 });
5334
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(DynamicTableComponent, [{
5335
- type: Component,
5336
- args: [{ selector: "dynamic-table", template: "<div class=\"dynamic-table\" #pagination=\"pagination\" [pagination]=\"loadData\" [itemsPerPage]=\"itemsPerPage\" [updateTime]=\"updateTime\">\r\n <ng-template #defaultFilterTemplate let-table>\r\n <div class=\"table-search\" *ngIf=\"table.showFilter\">\r\n <label *ngIf=\"label\" [attr.for]=\"tableId\">{{ label | translate }}</label>\r\n <input type=\"text\"\r\n class=\"form-control\"\r\n [attr.id]=\"tableId\"\r\n [placeholder]=\"placeholder | translate\"\r\n [ngModel]=\"table.filter\"\r\n (ngModelChange)=\"table.setFilter($event)\"/>\r\n </div>\r\n </ng-template>\r\n <ng-container [ngxTemplateOutlet]=\"filterTemplate || defaultFilterTemplate\" [context]=\"this\"></ng-container>\r\n <pagination-menu [maxSize]=\"maxPages\" [directionLinks]=\"directionLinks\" [boundaryLinks]=\"boundaryLinks\"></pagination-menu>\r\n <div class=\"table-responsive\">\r\n\r\n <ng-template #columnTemplate let-context let-column=\"column\" let-template=\"template\">\r\n <ng-template #defaultTemplate let-column=\"column\" let-item=\"item\">\r\n <span>{{ item[column] == undefined || item[column] == null ? '-' : item[column] }}</span>\r\n </ng-template>\r\n <ng-template #pureTemplate>\r\n <ng-container [ngxTemplateOutlet]=\"template.ref\" [context]=\"context\"></ng-container>\r\n </ng-template>\r\n <td [ngClass]=\"'column-' + column\" *ngIf=\"!template || !template.pure; else pureTemplate\">\r\n <ng-container [ngxTemplateOutlet]=\"!template ? defaultTemplate : template.ref\" [context]=\"context\"></ng-container>\r\n </td>\r\n </ng-template>\r\n\r\n <ng-template #columnsTemplate let-context>\r\n <ng-container *ngFor=\"let column of cols\"\r\n [ngxTemplateOutlet]=\"columnTemplate\"\r\n [context]=\"context\"\r\n [additionalContext]=\"{\r\n template: templates[column],\r\n column: column\r\n }\"></ng-container>\r\n </ng-template>\r\n\r\n <ng-template #defaultRowTemplate let-context>\r\n <tr>\r\n <ng-container [ngxTemplateOutlet]=\"columnsTemplate\" [context]=\"context\"></ng-container>\r\n </tr>\r\n </ng-template>\r\n\r\n <ng-template #defaultWrapperTemplate>\r\n <table class=\"table table-striped\">\r\n <thead>\r\n <tr>\r\n <th *ngFor=\"let column of cols\" [ngClass]=\"'column-' + column\">\r\n <a *ngIf=\"orders[column]\" (click)=\"setOrder(column)\">\r\n <span>{{ 'label.' + column | translate }}</span>\r\n <i *ngIf=\"orderBy == column\"\r\n [icon]=\"orderDescending ? 'sort-desc' : 'sort-asc'\"\r\n [ngClass]=\"orderBy == column ? (orderDescending ? 'sort-desc': 'sort-asc') : ''\"></i>\r\n </a>\r\n <span *ngIf=\"!orders[column]\">{{ 'label.' + column | translate }}</span>\r\n </th>\r\n </tr>\r\n </thead>\r\n <tbody>\r\n <ng-container *paginationItem=\"let context\"\r\n [ngxTemplateOutlet]=\"rowTemplate\"\r\n [context]=\"context\"\r\n [additionalContext]=\"this\"></ng-container>\r\n </tbody>\r\n </table>\r\n </ng-template>\r\n\r\n <ng-container [ngxTemplateOutlet]=\"wrapperTemplate || defaultWrapperTemplate\"\r\n [context]=\"this\"></ng-container>\r\n </div>\r\n <pagination-menu [maxSize]=\"maxPages\" [directionLinks]=\"directionLinks\" [boundaryLinks]=\"boundaryLinks\"></pagination-menu>\r\n</div>\r\n" }]
5337
- }], function () { return []; }, { label: [{
5338
- type: Input
5339
- }], placeholder: [{
5340
- type: Input
5341
- }], dataLoader: [{
5342
- type: Input
5343
- }], data: [{
5344
- type: Input
5345
- }], parallelData: [{
5346
- type: Input
5347
- }], columns: [{
5348
- type: Input
5349
- }], showFilter: [{
5350
- type: Input
5351
- }], itemsPerPage: [{
5352
- type: Input
5353
- }], updateTime: [{
5354
- type: Input
5355
- }], maxPages: [{
5356
- type: Input
5357
- }], directionLinks: [{
5358
- type: Input
5359
- }], boundaryLinks: [{
5360
- type: Input
5361
- }], orderBy: [{
5362
- type: Input
5363
- }], orderDescending: [{
5364
- type: Input
5365
- }], rowTemplate: [{
5366
- type: ContentChild,
5367
- args: ["rowTemplate", { static: true }]
5368
- }], wrapperTemplate: [{
5369
- type: ContentChild,
5370
- args: ["wrapperTemplate", { static: true }]
5371
- }], filterTemplate: [{
5372
- type: ContentChild,
5373
- args: ["filterTemplate", { static: true }]
5374
- }], columnsTemplate: [{
5375
- type: ViewChild,
5376
- args: ["columnsTemplate", { static: true }]
5377
- }], defaultRowTemplate: [{
5378
- type: ViewChild,
5379
- args: ["defaultRowTemplate", { static: true }]
5380
- }], defaultWrapperTemplate: [{
5381
- type: ViewChild,
5382
- args: ["defaultWrapperTemplate", { static: true }]
5383
- }], defaultFilterTemplate: [{
5384
- type: ViewChild,
5385
- args: ["defaultFilterTemplate", { static: true }]
5386
- }], pagination: [{
5387
- type: ViewChild,
5388
- args: ["pagination"]
5389
- }], templateDirectives: [{
5390
- type: ContentChildren,
5391
- args: [DynamicTableTemplateDirective]
5392
- }] }); })();
4807
+ DynamicTableComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: DynamicTableComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
4808
+ DynamicTableComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.8", type: DynamicTableComponent, selector: "dynamic-table", inputs: { label: "label", placeholder: "placeholder", dataLoader: "dataLoader", data: "data", parallelData: "parallelData", columns: "columns", showFilter: "showFilter", itemsPerPage: "itemsPerPage", updateTime: "updateTime", maxPages: "maxPages", directionLinks: "directionLinks", boundaryLinks: "boundaryLinks", orderBy: "orderBy", orderDescending: "orderDescending" }, queries: [{ propertyName: "rowTemplate", first: true, predicate: ["rowTemplate"], descendants: true, static: true }, { propertyName: "wrapperTemplate", first: true, predicate: ["wrapperTemplate"], descendants: true, static: true }, { propertyName: "filterTemplate", first: true, predicate: ["filterTemplate"], descendants: true, static: true }, { propertyName: "templateDirectives", predicate: DynamicTableTemplateDirective }], viewQueries: [{ propertyName: "columnsTemplate", first: true, predicate: ["columnsTemplate"], descendants: true, static: true }, { propertyName: "defaultRowTemplate", first: true, predicate: ["defaultRowTemplate"], descendants: true, static: true }, { propertyName: "defaultWrapperTemplate", first: true, predicate: ["defaultWrapperTemplate"], descendants: true, static: true }, { propertyName: "defaultFilterTemplate", first: true, predicate: ["defaultFilterTemplate"], descendants: true, static: true }, { propertyName: "pagination", first: true, predicate: ["pagination"], descendants: true }], usesOnChanges: true, ngImport: i0, template: "<div class=\"dynamic-table\" #pagination=\"pagination\" [pagination]=\"loadData\" [itemsPerPage]=\"itemsPerPage\" [updateTime]=\"updateTime\">\r\n <ng-template #defaultFilterTemplate let-table>\r\n <div class=\"table-search\" *ngIf=\"table.showFilter\">\r\n <label *ngIf=\"label\" [attr.for]=\"tableId\">{{ label | translate }}</label>\r\n <input type=\"text\"\r\n class=\"form-control\"\r\n [attr.id]=\"tableId\"\r\n [placeholder]=\"placeholder | translate\"\r\n [ngModel]=\"table.filter\"\r\n (ngModelChange)=\"table.setFilter($event)\"/>\r\n </div>\r\n </ng-template>\r\n <ng-container [ngxTemplateOutlet]=\"filterTemplate || defaultFilterTemplate\" [context]=\"this\"></ng-container>\r\n <pagination-menu [maxSize]=\"maxPages\" [directionLinks]=\"directionLinks\" [boundaryLinks]=\"boundaryLinks\"></pagination-menu>\r\n <div class=\"table-responsive\">\r\n\r\n <ng-template #columnTemplate let-context let-column=\"column\" let-template=\"template\">\r\n <ng-template #defaultTemplate let-column=\"column\" let-item=\"item\">\r\n <span>{{ item[column] == undefined || item[column] == null ? '-' : item[column] }}</span>\r\n </ng-template>\r\n <ng-template #pureTemplate>\r\n <ng-container [ngxTemplateOutlet]=\"template.ref\" [context]=\"context\"></ng-container>\r\n </ng-template>\r\n <td [ngClass]=\"'column-' + column\" *ngIf=\"!template || !template.pure; else pureTemplate\">\r\n <ng-container [ngxTemplateOutlet]=\"!template ? defaultTemplate : template.ref\" [context]=\"context\"></ng-container>\r\n </td>\r\n </ng-template>\r\n\r\n <ng-template #columnsTemplate let-context>\r\n <ng-container *ngFor=\"let column of cols\"\r\n [ngxTemplateOutlet]=\"columnTemplate\"\r\n [context]=\"context\"\r\n [additionalContext]=\"{\r\n template: templates[column],\r\n column: column\r\n }\"></ng-container>\r\n </ng-template>\r\n\r\n <ng-template #defaultRowTemplate let-context>\r\n <tr>\r\n <ng-container [ngxTemplateOutlet]=\"columnsTemplate\" [context]=\"context\"></ng-container>\r\n </tr>\r\n </ng-template>\r\n\r\n <ng-template #defaultWrapperTemplate>\r\n <table class=\"table table-striped\">\r\n <thead>\r\n <tr>\r\n <th *ngFor=\"let column of cols\" [ngClass]=\"'column-' + column\">\r\n <a *ngIf=\"orders[column]\" (click)=\"setOrder(column)\">\r\n <span>{{ 'label.' + column | translate }}</span>\r\n <i *ngIf=\"orderBy == column\"\r\n [icon]=\"orderDescending ? 'sort-desc' : 'sort-asc'\"\r\n [ngClass]=\"orderBy == column ? (orderDescending ? 'sort-desc': 'sort-asc') : ''\"></i>\r\n </a>\r\n <span *ngIf=\"!orders[column]\">{{ 'label.' + column | translate }}</span>\r\n </th>\r\n </tr>\r\n </thead>\r\n <tbody>\r\n <ng-container *paginationItem=\"let context\"\r\n [ngxTemplateOutlet]=\"rowTemplate\"\r\n [context]=\"context\"\r\n [additionalContext]=\"this\"></ng-container>\r\n </tbody>\r\n </table>\r\n </ng-template>\r\n\r\n <ng-container [ngxTemplateOutlet]=\"wrapperTemplate || defaultWrapperTemplate\"\r\n [context]=\"this\"></ng-container>\r\n </div>\r\n <pagination-menu [maxSize]=\"maxPages\" [directionLinks]=\"directionLinks\" [boundaryLinks]=\"boundaryLinks\"></pagination-menu>\r\n</div>\r\n", components: [{ type: PaginationMenuComponent, selector: "pagination-menu", inputs: ["maxSize", "urlParam", "directionLinks", "boundaryLinks"] }], directives: [{ type: PaginationDirective, selector: "[pagination]", inputs: ["pagination", "page", "itemsPerPage", "updateTime", "waitFor"], outputs: ["pageChange", "onRefresh"], exportAs: ["pagination"] }, { type: i1$3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i4.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { type: i4.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { type: i4.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { type: NgxTemplateOutletDirective, selector: "[ngxTemplateOutlet]", inputs: ["context", "additionalContext", "ngxTemplateOutlet"] }, { type: i1$3.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i1$3.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: IconDirective, selector: "[icon]", inputs: ["icon", "activeIcon", "active"], outputs: ["activeChange"] }, { type: PaginationItemDirective, selector: "[paginationItem]" }], pipes: { "translate": TranslatePipe } });
4809
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: DynamicTableComponent, decorators: [{
4810
+ type: Component,
4811
+ args: [{ selector: "dynamic-table", template: "<div class=\"dynamic-table\" #pagination=\"pagination\" [pagination]=\"loadData\" [itemsPerPage]=\"itemsPerPage\" [updateTime]=\"updateTime\">\r\n <ng-template #defaultFilterTemplate let-table>\r\n <div class=\"table-search\" *ngIf=\"table.showFilter\">\r\n <label *ngIf=\"label\" [attr.for]=\"tableId\">{{ label | translate }}</label>\r\n <input type=\"text\"\r\n class=\"form-control\"\r\n [attr.id]=\"tableId\"\r\n [placeholder]=\"placeholder | translate\"\r\n [ngModel]=\"table.filter\"\r\n (ngModelChange)=\"table.setFilter($event)\"/>\r\n </div>\r\n </ng-template>\r\n <ng-container [ngxTemplateOutlet]=\"filterTemplate || defaultFilterTemplate\" [context]=\"this\"></ng-container>\r\n <pagination-menu [maxSize]=\"maxPages\" [directionLinks]=\"directionLinks\" [boundaryLinks]=\"boundaryLinks\"></pagination-menu>\r\n <div class=\"table-responsive\">\r\n\r\n <ng-template #columnTemplate let-context let-column=\"column\" let-template=\"template\">\r\n <ng-template #defaultTemplate let-column=\"column\" let-item=\"item\">\r\n <span>{{ item[column] == undefined || item[column] == null ? '-' : item[column] }}</span>\r\n </ng-template>\r\n <ng-template #pureTemplate>\r\n <ng-container [ngxTemplateOutlet]=\"template.ref\" [context]=\"context\"></ng-container>\r\n </ng-template>\r\n <td [ngClass]=\"'column-' + column\" *ngIf=\"!template || !template.pure; else pureTemplate\">\r\n <ng-container [ngxTemplateOutlet]=\"!template ? defaultTemplate : template.ref\" [context]=\"context\"></ng-container>\r\n </td>\r\n </ng-template>\r\n\r\n <ng-template #columnsTemplate let-context>\r\n <ng-container *ngFor=\"let column of cols\"\r\n [ngxTemplateOutlet]=\"columnTemplate\"\r\n [context]=\"context\"\r\n [additionalContext]=\"{\r\n template: templates[column],\r\n column: column\r\n }\"></ng-container>\r\n </ng-template>\r\n\r\n <ng-template #defaultRowTemplate let-context>\r\n <tr>\r\n <ng-container [ngxTemplateOutlet]=\"columnsTemplate\" [context]=\"context\"></ng-container>\r\n </tr>\r\n </ng-template>\r\n\r\n <ng-template #defaultWrapperTemplate>\r\n <table class=\"table table-striped\">\r\n <thead>\r\n <tr>\r\n <th *ngFor=\"let column of cols\" [ngClass]=\"'column-' + column\">\r\n <a *ngIf=\"orders[column]\" (click)=\"setOrder(column)\">\r\n <span>{{ 'label.' + column | translate }}</span>\r\n <i *ngIf=\"orderBy == column\"\r\n [icon]=\"orderDescending ? 'sort-desc' : 'sort-asc'\"\r\n [ngClass]=\"orderBy == column ? (orderDescending ? 'sort-desc': 'sort-asc') : ''\"></i>\r\n </a>\r\n <span *ngIf=\"!orders[column]\">{{ 'label.' + column | translate }}</span>\r\n </th>\r\n </tr>\r\n </thead>\r\n <tbody>\r\n <ng-container *paginationItem=\"let context\"\r\n [ngxTemplateOutlet]=\"rowTemplate\"\r\n [context]=\"context\"\r\n [additionalContext]=\"this\"></ng-container>\r\n </tbody>\r\n </table>\r\n </ng-template>\r\n\r\n <ng-container [ngxTemplateOutlet]=\"wrapperTemplate || defaultWrapperTemplate\"\r\n [context]=\"this\"></ng-container>\r\n </div>\r\n <pagination-menu [maxSize]=\"maxPages\" [directionLinks]=\"directionLinks\" [boundaryLinks]=\"boundaryLinks\"></pagination-menu>\r\n</div>\r\n" }]
4812
+ }], ctorParameters: function () { return []; }, propDecorators: { label: [{
4813
+ type: Input
4814
+ }], placeholder: [{
4815
+ type: Input
4816
+ }], dataLoader: [{
4817
+ type: Input
4818
+ }], data: [{
4819
+ type: Input
4820
+ }], parallelData: [{
4821
+ type: Input
4822
+ }], columns: [{
4823
+ type: Input
4824
+ }], showFilter: [{
4825
+ type: Input
4826
+ }], itemsPerPage: [{
4827
+ type: Input
4828
+ }], updateTime: [{
4829
+ type: Input
4830
+ }], maxPages: [{
4831
+ type: Input
4832
+ }], directionLinks: [{
4833
+ type: Input
4834
+ }], boundaryLinks: [{
4835
+ type: Input
4836
+ }], orderBy: [{
4837
+ type: Input
4838
+ }], orderDescending: [{
4839
+ type: Input
4840
+ }], rowTemplate: [{
4841
+ type: ContentChild,
4842
+ args: ["rowTemplate", { static: true }]
4843
+ }], wrapperTemplate: [{
4844
+ type: ContentChild,
4845
+ args: ["wrapperTemplate", { static: true }]
4846
+ }], filterTemplate: [{
4847
+ type: ContentChild,
4848
+ args: ["filterTemplate", { static: true }]
4849
+ }], columnsTemplate: [{
4850
+ type: ViewChild,
4851
+ args: ["columnsTemplate", { static: true }]
4852
+ }], defaultRowTemplate: [{
4853
+ type: ViewChild,
4854
+ args: ["defaultRowTemplate", { static: true }]
4855
+ }], defaultWrapperTemplate: [{
4856
+ type: ViewChild,
4857
+ args: ["defaultWrapperTemplate", { static: true }]
4858
+ }], defaultFilterTemplate: [{
4859
+ type: ViewChild,
4860
+ args: ["defaultFilterTemplate", { static: true }]
4861
+ }], pagination: [{
4862
+ type: ViewChild,
4863
+ args: ["pagination"]
4864
+ }], templateDirectives: [{
4865
+ type: ContentChildren,
4866
+ args: [DynamicTableTemplateDirective]
4867
+ }] } });
5393
4868
 
5394
4869
  // --- Pipes ---
5395
4870
  const pipes = [
@@ -5420,6 +4895,7 @@ const pipes = [
5420
4895
  ];
5421
4896
  // --- Directives ---
5422
4897
  const directives = [
4898
+ AsyncMethodBase,
5423
4899
  AsyncMethodDirective,
5424
4900
  BackgroundDirective,
5425
4901
  DynamicTableTemplateDirective,
@@ -5485,8 +4961,31 @@ const providers = [
5485
4961
  ];
5486
4962
  function loadConfig(config) {
5487
4963
  return config.load;
4964
+ }
4965
+
4966
+ function loadBaseHref() {
4967
+ if (typeof (document) === "undefined" || typeof (location) === "undefined")
4968
+ return "/";
4969
+ const currentScript = document.currentScript;
4970
+ if (!currentScript) {
4971
+ try {
4972
+ // noinspection ExceptionCaughtLocallyJS
4973
+ throw new Error();
4974
+ }
4975
+ catch (e) {
4976
+ const qualifiedUrl = location.protocol + "//" + location.host;
4977
+ const srcUrl = (e.stack || "").match(new RegExp(qualifiedUrl + ".*?\\.js", "g")) || e.stack.match(/http([A-Z:\/\-\.]+)\.js/gi).shift();
4978
+ const lastIndex = srcUrl.lastIndexOf("/");
4979
+ return lastIndex < 0 ? "/" : srcUrl.substring(0, lastIndex + 1);
4980
+ }
4981
+ }
4982
+ const scriptSrc = currentScript.src;
4983
+ const lastIndex = scriptSrc.lastIndexOf("/");
4984
+ return lastIndex < 0 ? "/" : scriptSrc.substring(0, lastIndex + 1);
5488
4985
  }
5489
4986
  class NgxUtilsModule {
4987
+ constructor() {
4988
+ }
5490
4989
  static forRoot(config) {
5491
4990
  return {
5492
4991
  ngModule: NgxUtilsModule,
@@ -5533,114 +5032,44 @@ class NgxUtilsModule {
5533
5032
  useFactory: (!config ? null : config.initializeApp) || loadConfig,
5534
5033
  multi: true,
5535
5034
  deps: [(!config ? null : config.initializeApp) ? Injector : CONFIG_SERVICE]
5035
+ },
5036
+ {
5037
+ provide: APP_BASE_HREF,
5038
+ useFactory: (!config ? null : config.baseHref) || loadBaseHref,
5039
+ deps: [Injector]
5536
5040
  }
5537
5041
  ]
5538
5042
  };
5539
5043
  }
5540
5044
  }
5541
- NgxUtilsModule.ɵfac = function NgxUtilsModule_Factory(t) { return new (t || NgxUtilsModule)(); };
5542
- NgxUtilsModule.ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: NgxUtilsModule });
5543
- NgxUtilsModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ providers: pipes, imports: [[
5045
+ NgxUtilsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: NgxUtilsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
5046
+ NgxUtilsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: NgxUtilsModule, declarations: [ChunkPipe, EntriesPipe, ExtraItemPropertiesPipe, FilterPipe, FindPipe, FormatNumberPipe, GetOffsetPipe, GetTypePipe, GlobalTemplatePipe, GroupByPipe, IsTypePipe, JoinPipe, KeysPipe, MapPipe, MaxPipe, MinPipe, ReducePipe, RemapPipe, ReplacePipe, ReversePipe, RoundPipe, SafeHtmlPipe, TranslatePipe, ValuesPipe, AsyncMethodBase, AsyncMethodDirective, BackgroundDirective, DynamicTableTemplateDirective, GlobalTemplateDirective, IconDirective, NgxTemplateOutletDirective, PaginationDirective, PaginationItemDirective, ResourceIfDirective, StickyDirective, StickyClassDirective, UnorderedListItemDirective, UnorderedListTemplateDirective, DynamicTableComponent, PaginationMenuComponent, UnorderedListComponent], imports: [CommonModule,
5047
+ FormsModule], exports: [ChunkPipe, EntriesPipe, ExtraItemPropertiesPipe, FilterPipe, FindPipe, FormatNumberPipe, GetOffsetPipe, GetTypePipe, GlobalTemplatePipe, GroupByPipe, IsTypePipe, JoinPipe, KeysPipe, MapPipe, MaxPipe, MinPipe, ReducePipe, RemapPipe, ReplacePipe, ReversePipe, RoundPipe, SafeHtmlPipe, TranslatePipe, ValuesPipe, AsyncMethodBase, AsyncMethodDirective, BackgroundDirective, DynamicTableTemplateDirective, GlobalTemplateDirective, IconDirective, NgxTemplateOutletDirective, PaginationDirective, PaginationItemDirective, ResourceIfDirective, StickyDirective, StickyClassDirective, UnorderedListItemDirective, UnorderedListTemplateDirective, DynamicTableComponent, PaginationMenuComponent, UnorderedListComponent, FormsModule] });
5048
+ NgxUtilsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: NgxUtilsModule, providers: pipes, imports: [[
5544
5049
  CommonModule,
5545
5050
  FormsModule
5546
5051
  ], FormsModule] });
5547
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(NgxUtilsModule, [{
5548
- type: NgModule,
5549
- args: [{
5550
- declarations: [
5551
- ...pipes,
5552
- ...directives,
5553
- ...components
5554
- ],
5555
- imports: [
5556
- CommonModule,
5557
- FormsModule
5558
- ],
5559
- exports: [
5560
- ...pipes,
5561
- ...directives,
5562
- ...components,
5563
- FormsModule
5564
- ],
5565
- providers: pipes
5566
- }]
5567
- }], null, null); })();
5568
- (function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(NgxUtilsModule, { declarations: [ChunkPipe,
5569
- EntriesPipe,
5570
- ExtraItemPropertiesPipe,
5571
- FilterPipe,
5572
- FindPipe,
5573
- FormatNumberPipe,
5574
- GetOffsetPipe,
5575
- GetTypePipe,
5576
- GlobalTemplatePipe,
5577
- GroupByPipe,
5578
- IsTypePipe,
5579
- JoinPipe,
5580
- KeysPipe,
5581
- MapPipe,
5582
- MaxPipe,
5583
- MinPipe,
5584
- ReducePipe,
5585
- RemapPipe,
5586
- ReplacePipe,
5587
- ReversePipe,
5588
- RoundPipe,
5589
- SafeHtmlPipe,
5590
- TranslatePipe,
5591
- ValuesPipe, AsyncMethodDirective,
5592
- BackgroundDirective,
5593
- DynamicTableTemplateDirective,
5594
- GlobalTemplateDirective,
5595
- IconDirective,
5596
- NgxTemplateOutletDirective,
5597
- PaginationDirective,
5598
- PaginationItemDirective,
5599
- ResourceIfDirective,
5600
- StickyDirective,
5601
- StickyClassDirective,
5602
- UnorderedListItemDirective,
5603
- UnorderedListTemplateDirective, DynamicTableComponent,
5604
- PaginationMenuComponent,
5605
- UnorderedListComponent], imports: [CommonModule,
5606
- FormsModule], exports: [ChunkPipe,
5607
- EntriesPipe,
5608
- ExtraItemPropertiesPipe,
5609
- FilterPipe,
5610
- FindPipe,
5611
- FormatNumberPipe,
5612
- GetOffsetPipe,
5613
- GetTypePipe,
5614
- GlobalTemplatePipe,
5615
- GroupByPipe,
5616
- IsTypePipe,
5617
- JoinPipe,
5618
- KeysPipe,
5619
- MapPipe,
5620
- MaxPipe,
5621
- MinPipe,
5622
- ReducePipe,
5623
- RemapPipe,
5624
- ReplacePipe,
5625
- ReversePipe,
5626
- RoundPipe,
5627
- SafeHtmlPipe,
5628
- TranslatePipe,
5629
- ValuesPipe, AsyncMethodDirective,
5630
- BackgroundDirective,
5631
- DynamicTableTemplateDirective,
5632
- GlobalTemplateDirective,
5633
- IconDirective,
5634
- NgxTemplateOutletDirective,
5635
- PaginationDirective,
5636
- PaginationItemDirective,
5637
- ResourceIfDirective,
5638
- StickyDirective,
5639
- StickyClassDirective,
5640
- UnorderedListItemDirective,
5641
- UnorderedListTemplateDirective, DynamicTableComponent,
5642
- PaginationMenuComponent,
5643
- UnorderedListComponent, FormsModule] }); })();
5052
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: NgxUtilsModule, decorators: [{
5053
+ type: NgModule,
5054
+ args: [{
5055
+ declarations: [
5056
+ ...pipes,
5057
+ ...directives,
5058
+ ...components
5059
+ ],
5060
+ imports: [
5061
+ CommonModule,
5062
+ FormsModule
5063
+ ],
5064
+ exports: [
5065
+ ...pipes,
5066
+ ...directives,
5067
+ ...components,
5068
+ FormsModule
5069
+ ],
5070
+ providers: pipes
5071
+ }]
5072
+ }], ctorParameters: function () { return []; } });
5644
5073
 
5645
5074
  /**
5646
5075
  * Generated bundle index. Do not edit.