@stemy/ngx-utils 13.0.2 → 13.0.3

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 (164) hide show
  1. package/esm2020/ngx-utils/components/dynamic-table/dynamic-table.component.mjs +67 -296
  2. package/esm2020/ngx-utils/components/pagination-menu/pagination-menu.component.mjs +18 -108
  3. package/esm2020/ngx-utils/components/unordered-list/unordered-list.component.mjs +31 -227
  4. package/esm2020/ngx-utils/directives/async-method.base.mjs +23 -23
  5. package/esm2020/ngx-utils/directives/async-method.directive.mjs +16 -16
  6. package/esm2020/ngx-utils/directives/background.directive.mjs +13 -13
  7. package/esm2020/ngx-utils/directives/dynamic-table-template.directive.mjs +13 -13
  8. package/esm2020/ngx-utils/directives/global-template.directive.mjs +15 -15
  9. package/esm2020/ngx-utils/directives/icon.directive.mjs +26 -30
  10. package/esm2020/ngx-utils/directives/ngx-template-outlet.directive.mjs +15 -15
  11. package/esm2020/ngx-utils/directives/pagination-item.directive.mjs +9 -9
  12. package/esm2020/ngx-utils/directives/pagination.directive.mjs +25 -25
  13. package/esm2020/ngx-utils/directives/resource-if.directive.mjs +12 -12
  14. package/esm2020/ngx-utils/directives/sticky-class.directive.mjs +11 -11
  15. package/esm2020/ngx-utils/directives/sticky.directive.mjs +21 -25
  16. package/esm2020/ngx-utils/directives/unordered-list-item.directive.mjs +28 -28
  17. package/esm2020/ngx-utils/directives/unordered-list-template.directive.mjs +13 -13
  18. package/esm2020/ngx-utils/ngx-utils.imports.mjs +163 -0
  19. package/esm2020/ngx-utils/ngx-utils.module.mjs +73 -258
  20. package/esm2020/ngx-utils/pipes/chunk.pipe.mjs +9 -9
  21. package/esm2020/ngx-utils/pipes/entries.pipe.mjs +9 -9
  22. package/esm2020/ngx-utils/pipes/extra-item-properties.pipe.mjs +9 -9
  23. package/esm2020/ngx-utils/pipes/filter.pipe.mjs +9 -9
  24. package/esm2020/ngx-utils/pipes/find.pipe.mjs +9 -9
  25. package/esm2020/ngx-utils/pipes/format-number.pipe.mjs +9 -9
  26. package/esm2020/ngx-utils/pipes/get-offset.pipe.mjs +9 -9
  27. package/esm2020/ngx-utils/pipes/get-type.pipe.mjs +9 -9
  28. package/esm2020/ngx-utils/pipes/global-template.pipe.mjs +13 -13
  29. package/esm2020/ngx-utils/pipes/group-by.pipe.mjs +9 -9
  30. package/esm2020/ngx-utils/pipes/is-type.pipe.mjs +9 -9
  31. package/esm2020/ngx-utils/pipes/join.pipe.mjs +9 -9
  32. package/esm2020/ngx-utils/pipes/keys.pipe.mjs +9 -9
  33. package/esm2020/ngx-utils/pipes/map.pipe.mjs +9 -9
  34. package/esm2020/ngx-utils/pipes/max.pipe.mjs +9 -9
  35. package/esm2020/ngx-utils/pipes/min.pipe.mjs +9 -9
  36. package/esm2020/ngx-utils/pipes/reduce.pipe.mjs +9 -9
  37. package/esm2020/ngx-utils/pipes/remap.pipe.mjs +9 -9
  38. package/esm2020/ngx-utils/pipes/replace.pipe.mjs +9 -9
  39. package/esm2020/ngx-utils/pipes/reverse.pipe.mjs +9 -9
  40. package/esm2020/ngx-utils/pipes/round.pipe.mjs +9 -9
  41. package/esm2020/ngx-utils/pipes/safe-html.pipe.mjs +9 -9
  42. package/esm2020/ngx-utils/pipes/translate.pipe.mjs +16 -16
  43. package/esm2020/ngx-utils/pipes/values.pipe.mjs +9 -9
  44. package/esm2020/ngx-utils/plugins/resize-event.plugin.mjs +9 -9
  45. package/esm2020/ngx-utils/plugins/scroll-event.plugin.mjs +9 -9
  46. package/esm2020/ngx-utils/services/acl.service.mjs +9 -9
  47. package/esm2020/ngx-utils/services/api.service.mjs +6 -6
  48. package/esm2020/ngx-utils/services/base-http.client.mjs +6 -6
  49. package/esm2020/ngx-utils/services/base-http.service.mjs +26 -26
  50. package/esm2020/ngx-utils/services/config.service.mjs +19 -19
  51. package/esm2020/ngx-utils/services/error-handler.service.mjs +6 -6
  52. package/esm2020/ngx-utils/services/events.service.mjs +6 -6
  53. package/esm2020/ngx-utils/services/formatter.service.mjs +9 -9
  54. package/esm2020/ngx-utils/services/global-template.service.mjs +6 -6
  55. package/esm2020/ngx-utils/services/icon.service.mjs +6 -6
  56. package/esm2020/ngx-utils/services/language.service.mjs +6 -6
  57. package/esm2020/ngx-utils/services/open-api.service.mjs +9 -9
  58. package/esm2020/ngx-utils/services/promise.service.mjs +9 -9
  59. package/esm2020/ngx-utils/services/state.service.mjs +8 -8
  60. package/esm2020/ngx-utils/services/static-language.service.mjs +21 -21
  61. package/esm2020/ngx-utils/services/storage.service.mjs +6 -6
  62. package/esm2020/ngx-utils/services/toaster.service.mjs +9 -9
  63. package/esm2020/ngx-utils/services/translated-url.serializer.mjs +9 -9
  64. package/esm2020/ngx-utils/services/universal.service.mjs +9 -9
  65. package/esm2020/ngx-utils/utils/auth.guard.mjs +15 -15
  66. package/fesm2015/stemy-ngx-utils.mjs +300 -1166
  67. package/fesm2015/stemy-ngx-utils.mjs.map +1 -1
  68. package/fesm2020/stemy-ngx-utils.mjs +763 -1358
  69. package/fesm2020/stemy-ngx-utils.mjs.map +1 -1
  70. package/ngx-utils/ngx-utils.module.d.ts +49 -73
  71. package/package.json +1 -4
  72. package/bundles/stemy-ngx-utils.umd.js +0 -6121
  73. package/bundles/stemy-ngx-utils.umd.js.map +0 -1
  74. package/bundles/stemy-ngx-utils.umd.min.js +0 -16
  75. package/bundles/stemy-ngx-utils.umd.min.js.map +0 -1
  76. package/esm2015/ngx-utils/common-types.js +0 -116
  77. package/esm2015/ngx-utils/components/dynamic-table/dynamic-table.component.js +0 -139
  78. package/esm2015/ngx-utils/components/pagination-menu/pagination-menu.component.js +0 -96
  79. package/esm2015/ngx-utils/components/unordered-list/unordered-list.component.js +0 -51
  80. package/esm2015/ngx-utils/directives/async-method.base.js +0 -54
  81. package/esm2015/ngx-utils/directives/async-method.directive.js +0 -24
  82. package/esm2015/ngx-utils/directives/background.directive.js +0 -51
  83. package/esm2015/ngx-utils/directives/dynamic-table-template.directive.js +0 -19
  84. package/esm2015/ngx-utils/directives/global-template.directive.js +0 -27
  85. package/esm2015/ngx-utils/directives/icon.directive.js +0 -59
  86. package/esm2015/ngx-utils/directives/ngx-template-outlet.directive.js +0 -88
  87. package/esm2015/ngx-utils/directives/pagination-item.directive.js +0 -33
  88. package/esm2015/ngx-utils/directives/pagination.directive.js +0 -76
  89. package/esm2015/ngx-utils/directives/resource-if.directive.js +0 -51
  90. package/esm2015/ngx-utils/directives/sticky-class.directive.js +0 -35
  91. package/esm2015/ngx-utils/directives/sticky.directive.js +0 -48
  92. package/esm2015/ngx-utils/directives/unordered-list-item.directive.js +0 -70
  93. package/esm2015/ngx-utils/directives/unordered-list-template.directive.js +0 -26
  94. package/esm2015/ngx-utils/ngx-utils.module.js +0 -238
  95. package/esm2015/ngx-utils/pipes/chunk.pipe.js +0 -21
  96. package/esm2015/ngx-utils/pipes/entries.pipe.js +0 -24
  97. package/esm2015/ngx-utils/pipes/extra-item-properties.pipe.js +0 -27
  98. package/esm2015/ngx-utils/pipes/filter.pipe.js +0 -38
  99. package/esm2015/ngx-utils/pipes/find.pipe.js +0 -25
  100. package/esm2015/ngx-utils/pipes/format-number.pipe.js +0 -19
  101. package/esm2015/ngx-utils/pipes/get-offset.pipe.js +0 -13
  102. package/esm2015/ngx-utils/pipes/get-type.pipe.js +0 -12
  103. package/esm2015/ngx-utils/pipes/global-template.pipe.js +0 -37
  104. package/esm2015/ngx-utils/pipes/group-by.pipe.js +0 -23
  105. package/esm2015/ngx-utils/pipes/is-type.pipe.js +0 -12
  106. package/esm2015/ngx-utils/pipes/join.pipe.js +0 -15
  107. package/esm2015/ngx-utils/pipes/keys.pipe.js +0 -18
  108. package/esm2015/ngx-utils/pipes/map.pipe.js +0 -25
  109. package/esm2015/ngx-utils/pipes/max.pipe.js +0 -22
  110. package/esm2015/ngx-utils/pipes/min.pipe.js +0 -22
  111. package/esm2015/ngx-utils/pipes/reduce.pipe.js +0 -26
  112. package/esm2015/ngx-utils/pipes/remap.pipe.js +0 -28
  113. package/esm2015/ngx-utils/pipes/replace.pipe.js +0 -12
  114. package/esm2015/ngx-utils/pipes/reverse.pipe.js +0 -20
  115. package/esm2015/ngx-utils/pipes/round.pipe.js +0 -19
  116. package/esm2015/ngx-utils/pipes/safe-html.pipe.js +0 -32
  117. package/esm2015/ngx-utils/pipes/translate.pipe.js +0 -81
  118. package/esm2015/ngx-utils/pipes/values.pipe.js +0 -18
  119. package/esm2015/ngx-utils/plugins/resize-event.plugin.js +0 -56
  120. package/esm2015/ngx-utils/plugins/scroll-event.plugin.js +0 -36
  121. package/esm2015/ngx-utils/services/acl.service.js +0 -79
  122. package/esm2015/ngx-utils/services/api.service.js +0 -35
  123. package/esm2015/ngx-utils/services/auth.service.js +0 -14
  124. package/esm2015/ngx-utils/services/base-http.client.js +0 -46
  125. package/esm2015/ngx-utils/services/base-http.service.js +0 -285
  126. package/esm2015/ngx-utils/services/config.service.js +0 -122
  127. package/esm2015/ngx-utils/services/error-handler.service.js +0 -49
  128. package/esm2015/ngx-utils/services/events.service.js +0 -24
  129. package/esm2015/ngx-utils/services/formatter.service.js +0 -44
  130. package/esm2015/ngx-utils/services/global-template.service.js +0 -35
  131. package/esm2015/ngx-utils/services/icon.service.js +0 -24
  132. package/esm2015/ngx-utils/services/language.service.js +0 -117
  133. package/esm2015/ngx-utils/services/open-api.service.js +0 -41
  134. package/esm2015/ngx-utils/services/promise.service.js +0 -52
  135. package/esm2015/ngx-utils/services/state.service.js +0 -181
  136. package/esm2015/ngx-utils/services/static-language.service.js +0 -152
  137. package/esm2015/ngx-utils/services/storage.service.js +0 -48
  138. package/esm2015/ngx-utils/services/toaster.service.js +0 -29
  139. package/esm2015/ngx-utils/services/translated-url.serializer.js +0 -70
  140. package/esm2015/ngx-utils/services/universal.service.js +0 -75
  141. package/esm2015/ngx-utils/utils/ajax-request-handler.js +0 -40
  142. package/esm2015/ngx-utils/utils/array.utils.js +0 -100
  143. package/esm2015/ngx-utils/utils/auth.guard.js +0 -156
  144. package/esm2015/ngx-utils/utils/canvas.utils.js +0 -388
  145. package/esm2015/ngx-utils/utils/date.utils.js +0 -28
  146. package/esm2015/ngx-utils/utils/file.utils.js +0 -90
  147. package/esm2015/ngx-utils/utils/generic-value.js +0 -20
  148. package/esm2015/ngx-utils/utils/geometry.js +0 -132
  149. package/esm2015/ngx-utils/utils/initializer.js +0 -20
  150. package/esm2015/ngx-utils/utils/loader.utils.js +0 -55
  151. package/esm2015/ngx-utils/utils/math.utils.js +0 -15
  152. package/esm2015/ngx-utils/utils/object.utils.js +0 -263
  153. package/esm2015/ngx-utils/utils/observable.utils.js +0 -63
  154. package/esm2015/ngx-utils/utils/reflect.utils.js +0 -33
  155. package/esm2015/ngx-utils/utils/set.utils.js +0 -20
  156. package/esm2015/ngx-utils/utils/string.utils.js +0 -28
  157. package/esm2015/ngx-utils/utils/timer.utils.js +0 -52
  158. package/esm2015/ngx-utils/utils/unique.utils.js +0 -24
  159. package/esm2015/ngx-utils/utils/vector.js +0 -77
  160. package/esm2015/public_api.js +0 -84
  161. package/esm2015/stemy-ngx-utils.js +0 -7
  162. package/fesm2015/stemy-ngx-utils.js +0 -4860
  163. package/fesm2015/stemy-ngx-utils.js.map +0 -1
  164. package/stemy-ngx-utils.metadata.json +0 -1
@@ -17,7 +17,7 @@ import { HttpClient, HttpHeaders, HttpParams, HttpUrlEncodingCodec, HttpEventTyp
17
17
  import * as i1$2 from '@angular/platform-browser';
18
18
  import { ɵDomEventsPlugin, EVENT_MANAGER_PLUGINS } from '@angular/platform-browser';
19
19
  import { addListener, removeListener } from 'resize-detector';
20
- import * as i3 from '@angular/forms';
20
+ import * as i4 from '@angular/forms';
21
21
  import { FormsModule } from '@angular/forms';
22
22
 
23
23
  const defaultPredicate = () => true;
@@ -1269,18 +1269,16 @@ class UniversalService {
1269
1269
  return this.crawler;
1270
1270
  }
1271
1271
  }
1272
- UniversalService.ɵfac = function UniversalService_Factory(t) { return new (t || UniversalService)(i0.ɵɵinject(PLATFORM_ID), i0.ɵɵinject(i1.DeviceDetectorService)); };
1273
- UniversalService.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: UniversalService, factory: UniversalService.ɵfac });
1274
- (function () {
1275
- (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(UniversalService, [{
1272
+ 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 });
1273
+ UniversalService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: UniversalService });
1274
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: UniversalService, decorators: [{
1276
1275
  type: Injectable
1277
- }], function () {
1276
+ }], ctorParameters: function () {
1278
1277
  return [{ type: undefined, decorators: [{
1279
1278
  type: Inject,
1280
1279
  args: [PLATFORM_ID]
1281
1280
  }] }, { type: i1.DeviceDetectorService }];
1282
- }, null);
1283
- })();
1281
+ } });
1284
1282
 
1285
1283
  const emptySnapshot = new ActivatedRouteSnapshot();
1286
1284
  const emptyData = { id: "" };
@@ -1446,17 +1444,15 @@ class StateService extends BehaviorSubject {
1446
1444
  return [url, extras];
1447
1445
  }
1448
1446
  }
1449
- 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)); };
1450
- StateService.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: StateService, factory: StateService.ɵfac });
1451
- (function () {
1452
- (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(StateService, [{
1447
+ 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 });
1448
+ StateService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: StateService });
1449
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: StateService, decorators: [{
1453
1450
  type: Injectable
1454
- }], function () {
1451
+ }], ctorParameters: function () {
1455
1452
  return [{ type: i0.Injector }, { type: i0.NgZone }, { type: UniversalService }, { type: i2.Router, decorators: [{
1456
1453
  type: Optional
1457
1454
  }] }];
1458
- }, null);
1459
- })();
1455
+ } });
1460
1456
 
1461
1457
  var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
1462
1458
  var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
@@ -1604,8 +1600,8 @@ class AuthGuard {
1604
1600
  });
1605
1601
  }
1606
1602
  }
1607
- AuthGuard.ɵfac = function AuthGuard_Factory(t) { return new (t || AuthGuard)(i0.ɵɵinject(Injector), i0.ɵɵinject(StateService), i0.ɵɵinject(AUTH_SERVICE)); };
1608
- AuthGuard.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: AuthGuard, factory: AuthGuard.ɵfac });
1603
+ 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 });
1604
+ AuthGuard.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: AuthGuard });
1609
1605
  __decorate([
1610
1606
  FactoryDependencies(AUTH_SERVICE),
1611
1607
  __metadata("design:type", Function),
@@ -1624,10 +1620,9 @@ __decorate([
1624
1620
  __metadata("design:paramtypes", [Object, StateService, String]),
1625
1621
  __metadata("design:returntype", Function)
1626
1622
  ], AuthGuard, "guardAuthStateField", null);
1627
- (function () {
1628
- (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AuthGuard, [{
1623
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: AuthGuard, decorators: [{
1629
1624
  type: Injectable
1630
- }], function () {
1625
+ }], ctorParameters: function () {
1631
1626
  return [{ type: i0.Injector, decorators: [{
1632
1627
  type: Inject,
1633
1628
  args: [Injector]
@@ -1638,8 +1633,7 @@ __decorate([
1638
1633
  type: Inject,
1639
1634
  args: [AUTH_SERVICE]
1640
1635
  }] }];
1641
- }, null);
1642
- })();
1636
+ } });
1643
1637
 
1644
1638
  class TimerUtils {
1645
1639
  static createTimeout(func, time) {
@@ -2064,18 +2058,16 @@ class AclService {
2064
2058
  return info;
2065
2059
  }
2066
2060
  }
2067
- AclService.ɵfac = function AclService_Factory(t) { return new (t || AclService)(i0.ɵɵinject(i0.Injector), i0.ɵɵinject(StateService), i0.ɵɵinject(AUTH_SERVICE)); };
2068
- AclService.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: AclService, factory: AclService.ɵfac });
2069
- (function () {
2070
- (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AclService, [{
2061
+ 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 });
2062
+ AclService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: AclService });
2063
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: AclService, decorators: [{
2071
2064
  type: Injectable
2072
- }], function () {
2065
+ }], ctorParameters: function () {
2073
2066
  return [{ type: i0.Injector }, { type: StateService }, { type: undefined, decorators: [{
2074
2067
  type: Inject,
2075
2068
  args: [AUTH_SERVICE]
2076
2069
  }] }];
2077
- }, null);
2078
- })();
2070
+ } });
2079
2071
 
2080
2072
  class BaseHttpClient extends HttpClient {
2081
2073
  constructor(handler) {
@@ -2113,13 +2105,11 @@ class BaseHttpClient extends HttpClient {
2113
2105
  this.extraRequestParams[name] = value;
2114
2106
  }
2115
2107
  }
2116
- BaseHttpClient.ɵfac = function BaseHttpClient_Factory(t) { return new (t || BaseHttpClient)(i0.ɵɵinject(i1$1.HttpHandler)); };
2117
- BaseHttpClient.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: BaseHttpClient, factory: BaseHttpClient.ɵfac });
2118
- (function () {
2119
- (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(BaseHttpClient, [{
2108
+ 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 });
2109
+ BaseHttpClient.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: BaseHttpClient });
2110
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: BaseHttpClient, decorators: [{
2120
2111
  type: Injectable
2121
- }], function () { return [{ type: i1$1.HttpHandler }]; }, null);
2122
- })();
2112
+ }], ctorParameters: function () { return [{ type: i1$1.HttpHandler }]; } });
2123
2113
 
2124
2114
  /**
2125
2115
  * Use this service instead of Storage to avoid Angular Universal breaks on server environment
@@ -2159,13 +2149,11 @@ class StorageService {
2159
2149
  storage.removeItem(key);
2160
2150
  }
2161
2151
  }
2162
- StorageService.ɵfac = function StorageService_Factory(t) { return new (t || StorageService)(i0.ɵɵinject(UniversalService)); };
2163
- StorageService.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: StorageService, factory: StorageService.ɵfac });
2164
- (function () {
2165
- (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(StorageService, [{
2152
+ StorageService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: StorageService, deps: [{ token: UniversalService }], target: i0.ɵɵFactoryTarget.Injectable });
2153
+ StorageService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: StorageService });
2154
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: StorageService, decorators: [{
2166
2155
  type: Injectable
2167
- }], function () { return [{ type: UniversalService }]; }, null);
2168
- })();
2156
+ }], ctorParameters: function () { return [{ type: UniversalService }]; } });
2169
2157
 
2170
2158
  class BaseHttpService {
2171
2159
  constructor(client, storage, language, toaster, configs, request = null) {
@@ -2430,12 +2418,11 @@ class BaseHttpService {
2430
2418
  }
2431
2419
  }
2432
2420
  BaseHttpService.failedRequests = [];
2433
- 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)); };
2434
- BaseHttpService.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: BaseHttpService, factory: BaseHttpService.ɵfac });
2435
- (function () {
2436
- (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(BaseHttpService, [{
2421
+ 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 });
2422
+ BaseHttpService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: BaseHttpService });
2423
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: BaseHttpService, decorators: [{
2437
2424
  type: Injectable
2438
- }], function () {
2425
+ }], ctorParameters: function () {
2439
2426
  return [{ type: BaseHttpClient, decorators: [{
2440
2427
  type: Inject,
2441
2428
  args: [BaseHttpClient]
@@ -2457,8 +2444,7 @@ BaseHttpService.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: BaseHttp
2457
2444
  type: Inject,
2458
2445
  args: [EXPRESS_REQUEST]
2459
2446
  }] }];
2460
- }, null);
2461
- })();
2447
+ } });
2462
2448
 
2463
2449
  class ApiService extends BaseHttpService {
2464
2450
  get name() {
@@ -2489,13 +2475,11 @@ class ApiService extends BaseHttpService {
2489
2475
  return this.listPromise(url, params);
2490
2476
  }
2491
2477
  }
2492
- ApiService.ɵfac = /*@__PURE__*/ function () { let ɵApiService_BaseFactory; return function ApiService_Factory(t) { return (ɵApiService_BaseFactory || (ɵApiService_BaseFactory = i0.ɵɵgetInheritedFactory(ApiService)))(t || ApiService); }; }();
2493
- ApiService.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: ApiService, factory: ApiService.ɵfac });
2494
- (function () {
2495
- (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ApiService, [{
2478
+ ApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ApiService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
2479
+ ApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ApiService });
2480
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ApiService, decorators: [{
2496
2481
  type: Injectable
2497
- }], null, null);
2498
- })();
2482
+ }] });
2499
2483
 
2500
2484
  class StaticAuthService {
2501
2485
  constructor() {
@@ -2615,12 +2599,11 @@ class ConfigService {
2615
2599
  return decodeURIComponent(results[2].replace(/\+/g, " "));
2616
2600
  }
2617
2601
  }
2618
- 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)); };
2619
- ConfigService.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: ConfigService, factory: ConfigService.ɵfac });
2620
- (function () {
2621
- (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ConfigService, [{
2602
+ 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: BASE_CONFIG, optional: true }, { token: SCRIPT_PARAMS, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
2603
+ ConfigService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ConfigService });
2604
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ConfigService, decorators: [{
2622
2605
  type: Injectable
2623
- }], function () {
2606
+ }], ctorParameters: function () {
2624
2607
  return [{ type: i1$1.HttpClient }, { type: UniversalService }, { type: undefined, decorators: [{
2625
2608
  type: Inject,
2626
2609
  args: [ROOT_ELEMENT]
@@ -2635,8 +2618,7 @@ ConfigService.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: ConfigServ
2635
2618
  type: Inject,
2636
2619
  args: [SCRIPT_PARAMS]
2637
2620
  }] }];
2638
- }, null);
2639
- })();
2621
+ } });
2640
2622
 
2641
2623
  class ErrorHandlerService extends ErrorHandler {
2642
2624
  constructor(injector) {
@@ -2677,13 +2659,11 @@ class ErrorHandlerService extends ErrorHandler {
2677
2659
  console.error(`[${date}]: ${error.message}\n${error.stack}`);
2678
2660
  }
2679
2661
  }
2680
- ErrorHandlerService.ɵfac = function ErrorHandlerService_Factory(t) { return new (t || ErrorHandlerService)(i0.ɵɵinject(i0.Injector)); };
2681
- ErrorHandlerService.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: ErrorHandlerService, factory: ErrorHandlerService.ɵfac });
2682
- (function () {
2683
- (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ErrorHandlerService, [{
2662
+ ErrorHandlerService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ErrorHandlerService, deps: [{ token: i0.Injector }], target: i0.ɵɵFactoryTarget.Injectable });
2663
+ ErrorHandlerService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ErrorHandlerService });
2664
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ErrorHandlerService, decorators: [{
2684
2665
  type: Injectable
2685
- }], function () { return [{ type: i0.Injector }]; }, null);
2686
- })();
2666
+ }], ctorParameters: function () { return [{ type: i0.Injector }]; } });
2687
2667
 
2688
2668
  class EventsService {
2689
2669
  constructor() {
@@ -2703,13 +2683,11 @@ class EventsService {
2703
2683
  this.stickyUpdated.emit(sticky);
2704
2684
  }
2705
2685
  }
2706
- EventsService.ɵfac = function EventsService_Factory(t) { return new (t || EventsService)(); };
2707
- EventsService.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: EventsService, factory: EventsService.ɵfac });
2708
- (function () {
2709
- (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(EventsService, [{
2686
+ EventsService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: EventsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2687
+ EventsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: EventsService });
2688
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: EventsService, decorators: [{
2710
2689
  type: Injectable
2711
- }], function () { return []; }, null);
2712
- })();
2690
+ }], ctorParameters: function () { return []; } });
2713
2691
 
2714
2692
  class FormatterService {
2715
2693
  constructor(language) {
@@ -2744,18 +2722,16 @@ class FormatterService {
2744
2722
  return ObjectUtils.isNumber(precision) ? precision : this.defaultPrecision;
2745
2723
  }
2746
2724
  }
2747
- FormatterService.ɵfac = function FormatterService_Factory(t) { return new (t || FormatterService)(i0.ɵɵinject(LANGUAGE_SERVICE)); };
2748
- FormatterService.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: FormatterService, factory: FormatterService.ɵfac });
2749
- (function () {
2750
- (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(FormatterService, [{
2725
+ FormatterService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: FormatterService, deps: [{ token: LANGUAGE_SERVICE }], target: i0.ɵɵFactoryTarget.Injectable });
2726
+ FormatterService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: FormatterService });
2727
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: FormatterService, decorators: [{
2751
2728
  type: Injectable
2752
- }], function () {
2729
+ }], ctorParameters: function () {
2753
2730
  return [{ type: undefined, decorators: [{
2754
2731
  type: Inject,
2755
2732
  args: [LANGUAGE_SERVICE]
2756
2733
  }] }];
2757
- }, null);
2758
- })();
2734
+ } });
2759
2735
 
2760
2736
  class GlobalTemplateService {
2761
2737
  constructor() {
@@ -2785,13 +2761,11 @@ class GlobalTemplateService {
2785
2761
  this.componentModifiers[id] = modifier;
2786
2762
  }
2787
2763
  }
2788
- GlobalTemplateService.ɵfac = function GlobalTemplateService_Factory(t) { return new (t || GlobalTemplateService)(); };
2789
- GlobalTemplateService.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: GlobalTemplateService, factory: GlobalTemplateService.ɵfac });
2790
- (function () {
2791
- (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(GlobalTemplateService, [{
2764
+ GlobalTemplateService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: GlobalTemplateService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2765
+ GlobalTemplateService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: GlobalTemplateService });
2766
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: GlobalTemplateService, decorators: [{
2792
2767
  type: Injectable
2793
- }], function () { return []; }, null);
2794
- })();
2768
+ }], ctorParameters: function () { return []; } });
2795
2769
 
2796
2770
  class IconService {
2797
2771
  constructor() {
@@ -2811,13 +2785,11 @@ class IconService {
2811
2785
  return Promise.resolve(active ? activeIcon : icon);
2812
2786
  }
2813
2787
  }
2814
- IconService.ɵfac = function IconService_Factory(t) { return new (t || IconService)(); };
2815
- IconService.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: IconService, factory: IconService.ɵfac });
2816
- (function () {
2817
- (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(IconService, [{
2788
+ IconService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: IconService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2789
+ IconService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: IconService });
2790
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: IconService, decorators: [{
2818
2791
  type: Injectable
2819
- }], function () { return []; }, null);
2820
- })();
2792
+ }], ctorParameters: function () { return []; } });
2821
2793
 
2822
2794
  class StaticLanguageService {
2823
2795
  constructor(events, storage, configs, promises, client) {
@@ -2954,12 +2926,11 @@ class StaticLanguageService {
2954
2926
  return browserLang;
2955
2927
  }
2956
2928
  }
2957
- 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)); };
2958
- StaticLanguageService.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: StaticLanguageService, factory: StaticLanguageService.ɵfac });
2959
- (function () {
2960
- (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(StaticLanguageService, [{
2929
+ 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 });
2930
+ StaticLanguageService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: StaticLanguageService });
2931
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: StaticLanguageService, decorators: [{
2961
2932
  type: Injectable
2962
- }], function () {
2933
+ }], ctorParameters: function () {
2963
2934
  return [{ type: EventsService, decorators: [{
2964
2935
  type: Inject,
2965
2936
  args: [EventsService]
@@ -2976,8 +2947,7 @@ StaticLanguageService.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: St
2976
2947
  type: Inject,
2977
2948
  args: [BaseHttpClient]
2978
2949
  }] }];
2979
- }, null);
2980
- })();
2950
+ } });
2981
2951
 
2982
2952
  class LanguageService extends StaticLanguageService {
2983
2953
  get currentLanguage() {
@@ -3087,13 +3057,11 @@ class LanguageService extends StaticLanguageService {
3087
3057
  return this.settingsPromise;
3088
3058
  }
3089
3059
  }
3090
- LanguageService.ɵfac = /*@__PURE__*/ function () { let ɵLanguageService_BaseFactory; return function LanguageService_Factory(t) { return (ɵLanguageService_BaseFactory || (ɵLanguageService_BaseFactory = i0.ɵɵgetInheritedFactory(LanguageService)))(t || LanguageService); }; }();
3091
- LanguageService.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: LanguageService, factory: LanguageService.ɵfac });
3092
- (function () {
3093
- (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(LanguageService, [{
3060
+ LanguageService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: LanguageService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
3061
+ LanguageService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: LanguageService });
3062
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: LanguageService, decorators: [{
3094
3063
  type: Injectable
3095
- }], null, null);
3096
- })();
3064
+ }] });
3097
3065
 
3098
3066
  class OpenApiService {
3099
3067
  constructor(api) {
@@ -3126,18 +3094,16 @@ class OpenApiService {
3126
3094
  });
3127
3095
  }
3128
3096
  }
3129
- OpenApiService.ɵfac = function OpenApiService_Factory(t) { return new (t || OpenApiService)(i0.ɵɵinject(API_SERVICE)); };
3130
- OpenApiService.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: OpenApiService, factory: OpenApiService.ɵfac });
3131
- (function () {
3132
- (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(OpenApiService, [{
3097
+ OpenApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: OpenApiService, deps: [{ token: API_SERVICE }], target: i0.ɵɵFactoryTarget.Injectable });
3098
+ OpenApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: OpenApiService });
3099
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: OpenApiService, decorators: [{
3133
3100
  type: Injectable
3134
- }], function () {
3101
+ }], ctorParameters: function () {
3135
3102
  return [{ type: undefined, decorators: [{
3136
3103
  type: Inject,
3137
3104
  args: [API_SERVICE]
3138
3105
  }] }];
3139
- }, null);
3140
- })();
3106
+ } });
3141
3107
 
3142
3108
  class ConsoleToasterService {
3143
3109
  constructor(language) {
@@ -3159,18 +3125,16 @@ class ConsoleToasterService {
3159
3125
  this.language.getTranslation(message, params).then(callback);
3160
3126
  }
3161
3127
  }
3162
- ConsoleToasterService.ɵfac = function ConsoleToasterService_Factory(t) { return new (t || ConsoleToasterService)(i0.ɵɵinject(LANGUAGE_SERVICE)); };
3163
- ConsoleToasterService.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: ConsoleToasterService, factory: ConsoleToasterService.ɵfac });
3164
- (function () {
3165
- (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ConsoleToasterService, [{
3128
+ ConsoleToasterService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ConsoleToasterService, deps: [{ token: LANGUAGE_SERVICE }], target: i0.ɵɵFactoryTarget.Injectable });
3129
+ ConsoleToasterService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ConsoleToasterService });
3130
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ConsoleToasterService, decorators: [{
3166
3131
  type: Injectable
3167
- }], function () {
3132
+ }], ctorParameters: function () {
3168
3133
  return [{ type: undefined, decorators: [{
3169
3134
  type: Inject,
3170
3135
  args: [LANGUAGE_SERVICE]
3171
3136
  }] }];
3172
- }, null);
3173
- })();
3137
+ } });
3174
3138
 
3175
3139
  class TranslatedUrlSerializer extends DefaultUrlSerializer {
3176
3140
  constructor(language) {
@@ -3232,18 +3196,16 @@ class TranslatedUrlSerializer extends DefaultUrlSerializer {
3232
3196
  return newGroup;
3233
3197
  }
3234
3198
  }
3235
- TranslatedUrlSerializer.ɵfac = function TranslatedUrlSerializer_Factory(t) { return new (t || TranslatedUrlSerializer)(i0.ɵɵinject(LANGUAGE_SERVICE)); };
3236
- TranslatedUrlSerializer.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: TranslatedUrlSerializer, factory: TranslatedUrlSerializer.ɵfac });
3237
- (function () {
3238
- (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(TranslatedUrlSerializer, [{
3199
+ TranslatedUrlSerializer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: TranslatedUrlSerializer, deps: [{ token: LANGUAGE_SERVICE }], target: i0.ɵɵFactoryTarget.Injectable });
3200
+ TranslatedUrlSerializer.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: TranslatedUrlSerializer });
3201
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: TranslatedUrlSerializer, decorators: [{
3239
3202
  type: Injectable
3240
- }], function () {
3203
+ }], ctorParameters: function () {
3241
3204
  return [{ type: undefined, decorators: [{
3242
3205
  type: Inject,
3243
3206
  args: [LANGUAGE_SERVICE]
3244
3207
  }] }];
3245
- }, null);
3246
- })();
3208
+ } });
3247
3209
 
3248
3210
  class PromiseService {
3249
3211
  constructor(zone) {
@@ -3289,18 +3251,16 @@ class PromiseService {
3289
3251
  });
3290
3252
  }
3291
3253
  }
3292
- PromiseService.ɵfac = function PromiseService_Factory(t) { return new (t || PromiseService)(i0.ɵɵinject(NgZone)); };
3293
- PromiseService.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: PromiseService, factory: PromiseService.ɵfac });
3294
- (function () {
3295
- (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(PromiseService, [{
3254
+ PromiseService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: PromiseService, deps: [{ token: NgZone }], target: i0.ɵɵFactoryTarget.Injectable });
3255
+ PromiseService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: PromiseService });
3256
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: PromiseService, decorators: [{
3296
3257
  type: Injectable
3297
- }], function () {
3258
+ }], ctorParameters: function () {
3298
3259
  return [{ type: i0.NgZone, decorators: [{
3299
3260
  type: Inject,
3300
3261
  args: [NgZone]
3301
3262
  }] }];
3302
- }, null);
3303
- })();
3263
+ } });
3304
3264
 
3305
3265
  function emptyRemove$1() {
3306
3266
  }
@@ -3345,18 +3305,16 @@ class ResizeEventPlugin extends ɵDomEventsPlugin {
3345
3305
  }
3346
3306
  }
3347
3307
  ResizeEventPlugin.EVENT_NAME = "resize";
3348
- ResizeEventPlugin.ɵfac = function ResizeEventPlugin_Factory(t) { return new (t || ResizeEventPlugin)(i0.ɵɵinject(DOCUMENT), i0.ɵɵinject(UniversalService)); };
3349
- ResizeEventPlugin.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: ResizeEventPlugin, factory: ResizeEventPlugin.ɵfac });
3350
- (function () {
3351
- (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ResizeEventPlugin, [{
3308
+ 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 });
3309
+ ResizeEventPlugin.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ResizeEventPlugin });
3310
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ResizeEventPlugin, decorators: [{
3352
3311
  type: Injectable
3353
- }], function () {
3312
+ }], ctorParameters: function () {
3354
3313
  return [{ type: undefined, decorators: [{
3355
3314
  type: Inject,
3356
3315
  args: [DOCUMENT]
3357
3316
  }] }, { type: UniversalService }];
3358
- }, null);
3359
- })();
3317
+ } });
3360
3318
 
3361
3319
  function emptyRemove() {
3362
3320
  }
@@ -3382,18 +3340,16 @@ class ScrollEventPlugin extends ɵDomEventsPlugin {
3382
3340
  }
3383
3341
  }
3384
3342
  ScrollEventPlugin.EVENT_NAME = "scroll";
3385
- ScrollEventPlugin.ɵfac = function ScrollEventPlugin_Factory(t) { return new (t || ScrollEventPlugin)(i0.ɵɵinject(DOCUMENT), i0.ɵɵinject(UniversalService)); };
3386
- ScrollEventPlugin.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: ScrollEventPlugin, factory: ScrollEventPlugin.ɵfac });
3387
- (function () {
3388
- (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ScrollEventPlugin, [{
3343
+ 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 });
3344
+ ScrollEventPlugin.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ScrollEventPlugin });
3345
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ScrollEventPlugin, decorators: [{
3389
3346
  type: Injectable
3390
- }], function () {
3347
+ }], ctorParameters: function () {
3391
3348
  return [{ type: undefined, decorators: [{
3392
3349
  type: Inject,
3393
3350
  args: [DOCUMENT]
3394
3351
  }] }, { type: UniversalService }];
3395
- }, null);
3396
- })();
3352
+ } });
3397
3353
 
3398
3354
  class ChunkPipe {
3399
3355
  transform(items, count) {
@@ -3409,16 +3365,14 @@ class ChunkPipe {
3409
3365
  return result;
3410
3366
  }
3411
3367
  }
3412
- ChunkPipe.ɵfac = function ChunkPipe_Factory(t) { return new (t || ChunkPipe)(); };
3413
- ChunkPipe.ɵpipe = /*@__PURE__*/ i0.ɵɵdefinePipe({ name: "chunk", type: ChunkPipe, pure: true });
3414
- (function () {
3415
- (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ChunkPipe, [{
3368
+ ChunkPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ChunkPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
3369
+ ChunkPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ChunkPipe, name: "chunk" });
3370
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ChunkPipe, decorators: [{
3416
3371
  type: Pipe,
3417
3372
  args: [{
3418
3373
  name: "chunk"
3419
3374
  }]
3420
- }], null, null);
3421
- })();
3375
+ }] });
3422
3376
 
3423
3377
  const emptyEntries = [];
3424
3378
  class EntriesPipe {
@@ -3436,16 +3390,14 @@ class EntriesPipe {
3436
3390
  return entries;
3437
3391
  }
3438
3392
  }
3439
- EntriesPipe.ɵfac = function EntriesPipe_Factory(t) { return new (t || EntriesPipe)(); };
3440
- EntriesPipe.ɵpipe = /*@__PURE__*/ i0.ɵɵdefinePipe({ name: "entries", type: EntriesPipe, pure: true });
3441
- (function () {
3442
- (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(EntriesPipe, [{
3393
+ EntriesPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: EntriesPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
3394
+ EntriesPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: EntriesPipe, name: "entries" });
3395
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: EntriesPipe, decorators: [{
3443
3396
  type: Pipe,
3444
3397
  args: [{
3445
3398
  name: "entries"
3446
3399
  }]
3447
- }], null, null);
3448
- })();
3400
+ }] });
3449
3401
 
3450
3402
  class ExtraItemPropertiesPipe {
3451
3403
  transform(items, properties, params = {}) {
@@ -3466,16 +3418,14 @@ class ExtraItemPropertiesPipe {
3466
3418
  }, Object.assign({}, item)));
3467
3419
  }
3468
3420
  }
3469
- ExtraItemPropertiesPipe.ɵfac = function ExtraItemPropertiesPipe_Factory(t) { return new (t || ExtraItemPropertiesPipe)(); };
3470
- ExtraItemPropertiesPipe.ɵpipe = /*@__PURE__*/ i0.ɵɵdefinePipe({ name: "extraItemProperties", type: ExtraItemPropertiesPipe, pure: true });
3471
- (function () {
3472
- (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ExtraItemPropertiesPipe, [{
3421
+ ExtraItemPropertiesPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ExtraItemPropertiesPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
3422
+ ExtraItemPropertiesPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ExtraItemPropertiesPipe, name: "extraItemProperties" });
3423
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ExtraItemPropertiesPipe, decorators: [{
3473
3424
  type: Pipe,
3474
3425
  args: [{
3475
3426
  name: "extraItemProperties"
3476
3427
  }]
3477
- }], null, null);
3478
- })();
3428
+ }] });
3479
3429
 
3480
3430
  function defaultFilter$1() {
3481
3431
  return true;
@@ -3507,16 +3457,14 @@ class FilterPipe {
3507
3457
  });
3508
3458
  }
3509
3459
  }
3510
- FilterPipe.ɵfac = function FilterPipe_Factory(t) { return new (t || FilterPipe)(); };
3511
- FilterPipe.ɵpipe = /*@__PURE__*/ i0.ɵɵdefinePipe({ name: "filter", type: FilterPipe, pure: true });
3512
- (function () {
3513
- (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(FilterPipe, [{
3460
+ FilterPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: FilterPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
3461
+ FilterPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: FilterPipe, name: "filter" });
3462
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: FilterPipe, decorators: [{
3514
3463
  type: Pipe,
3515
3464
  args: [{
3516
3465
  name: "filter"
3517
3466
  }]
3518
- }], null, null);
3519
- })();
3467
+ }] });
3520
3468
 
3521
3469
  function defaultFilter() {
3522
3470
  return true;
@@ -3535,16 +3483,14 @@ class FindPipe {
3535
3483
  return values.find((value, index) => filterFunc(value, index, params));
3536
3484
  }
3537
3485
  }
3538
- FindPipe.ɵfac = function FindPipe_Factory(t) { return new (t || FindPipe)(); };
3539
- FindPipe.ɵpipe = /*@__PURE__*/ i0.ɵɵdefinePipe({ name: "find", type: FindPipe, pure: true });
3540
- (function () {
3541
- (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(FindPipe, [{
3486
+ FindPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: FindPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
3487
+ FindPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: FindPipe, name: "find" });
3488
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: FindPipe, decorators: [{
3542
3489
  type: Pipe,
3543
3490
  args: [{
3544
3491
  name: "find"
3545
3492
  }]
3546
- }], null, null);
3547
- })();
3493
+ }] });
3548
3494
 
3549
3495
  class FormatNumberPipe {
3550
3496
  constructor(formatter) {
@@ -3554,48 +3500,42 @@ class FormatNumberPipe {
3554
3500
  return this.formatter.formatNumber(value, format, precision, divider);
3555
3501
  }
3556
3502
  }
3557
- FormatNumberPipe.ɵfac = function FormatNumberPipe_Factory(t) { return new (t || FormatNumberPipe)(i0.ɵɵdirectiveInject(FormatterService, 16)); };
3558
- FormatNumberPipe.ɵpipe = /*@__PURE__*/ i0.ɵɵdefinePipe({ name: "formatNumber", type: FormatNumberPipe, pure: true });
3559
- (function () {
3560
- (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(FormatNumberPipe, [{
3503
+ FormatNumberPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: FormatNumberPipe, deps: [{ token: FormatterService }], target: i0.ɵɵFactoryTarget.Pipe });
3504
+ FormatNumberPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: FormatNumberPipe, name: "formatNumber" });
3505
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: FormatNumberPipe, decorators: [{
3561
3506
  type: Pipe,
3562
3507
  args: [{
3563
3508
  name: "formatNumber"
3564
3509
  }]
3565
- }], function () { return [{ type: FormatterService }]; }, null);
3566
- })();
3510
+ }], ctorParameters: function () { return [{ type: FormatterService }]; } });
3567
3511
 
3568
3512
  class GetOffsetPipe {
3569
3513
  transform(value, offset) {
3570
3514
  return value ? (ObjectUtils.isNullOrUndefined(offset) ? value : value[offset]) : null;
3571
3515
  }
3572
3516
  }
3573
- GetOffsetPipe.ɵfac = function GetOffsetPipe_Factory(t) { return new (t || GetOffsetPipe)(); };
3574
- GetOffsetPipe.ɵpipe = /*@__PURE__*/ i0.ɵɵdefinePipe({ name: "getOffset", type: GetOffsetPipe, pure: true });
3575
- (function () {
3576
- (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(GetOffsetPipe, [{
3517
+ GetOffsetPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: GetOffsetPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
3518
+ GetOffsetPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: GetOffsetPipe, name: "getOffset" });
3519
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: GetOffsetPipe, decorators: [{
3577
3520
  type: Pipe,
3578
3521
  args: [{
3579
3522
  name: "getOffset"
3580
3523
  }]
3581
- }], null, null);
3582
- })();
3524
+ }] });
3583
3525
 
3584
3526
  class GetTypePipe {
3585
3527
  transform(value) {
3586
3528
  return typeof value;
3587
3529
  }
3588
3530
  }
3589
- GetTypePipe.ɵfac = function GetTypePipe_Factory(t) { return new (t || GetTypePipe)(); };
3590
- GetTypePipe.ɵpipe = /*@__PURE__*/ i0.ɵɵdefinePipe({ name: "getType", type: GetTypePipe, pure: true });
3591
- (function () {
3592
- (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(GetTypePipe, [{
3531
+ GetTypePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: GetTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
3532
+ GetTypePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: GetTypePipe, name: "getType" });
3533
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: GetTypePipe, decorators: [{
3593
3534
  type: Pipe,
3594
3535
  args: [{
3595
3536
  name: "getType"
3596
3537
  }]
3597
- }], null, null);
3598
- })();
3538
+ }] });
3599
3539
 
3600
3540
  class GlobalTemplatePipe {
3601
3541
  constructor(globalTemplates) {
@@ -3622,22 +3562,20 @@ class GlobalTemplatePipe {
3622
3562
  return this.cachedTemplate;
3623
3563
  }
3624
3564
  }
3625
- GlobalTemplatePipe.ɵfac = function GlobalTemplatePipe_Factory(t) { return new (t || GlobalTemplatePipe)(i0.ɵɵdirectiveInject(GLOBAL_TEMPLATES, 16)); };
3626
- GlobalTemplatePipe.ɵpipe = /*@__PURE__*/ i0.ɵɵdefinePipe({ name: "globalTemplate", type: GlobalTemplatePipe, pure: false });
3627
- (function () {
3628
- (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(GlobalTemplatePipe, [{
3565
+ GlobalTemplatePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: GlobalTemplatePipe, deps: [{ token: GLOBAL_TEMPLATES }], target: i0.ɵɵFactoryTarget.Pipe });
3566
+ GlobalTemplatePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: GlobalTemplatePipe, name: "globalTemplate", pure: false });
3567
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: GlobalTemplatePipe, decorators: [{
3629
3568
  type: Pipe,
3630
3569
  args: [{
3631
3570
  pure: false,
3632
3571
  name: "globalTemplate"
3633
3572
  }]
3634
- }], function () {
3573
+ }], ctorParameters: function () {
3635
3574
  return [{ type: undefined, decorators: [{
3636
3575
  type: Inject,
3637
3576
  args: [GLOBAL_TEMPLATES]
3638
3577
  }] }];
3639
- }, null);
3640
- })();
3578
+ } });
3641
3579
 
3642
3580
  class GroupByPipe {
3643
3581
  transform(records, column, map = null) {
@@ -3654,32 +3592,28 @@ class GroupByPipe {
3654
3592
  });
3655
3593
  }
3656
3594
  }
3657
- GroupByPipe.ɵfac = function GroupByPipe_Factory(t) { return new (t || GroupByPipe)(); };
3658
- GroupByPipe.ɵpipe = /*@__PURE__*/ i0.ɵɵdefinePipe({ name: "groupBy", type: GroupByPipe, pure: true });
3659
- (function () {
3660
- (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(GroupByPipe, [{
3595
+ GroupByPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: GroupByPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
3596
+ GroupByPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: GroupByPipe, name: "groupBy" });
3597
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: GroupByPipe, decorators: [{
3661
3598
  type: Pipe,
3662
3599
  args: [{
3663
3600
  name: "groupBy"
3664
3601
  }]
3665
- }], null, null);
3666
- })();
3602
+ }] });
3667
3603
 
3668
3604
  class IsTypePipe {
3669
3605
  transform(value, type) {
3670
3606
  return (typeof value) === type;
3671
3607
  }
3672
3608
  }
3673
- IsTypePipe.ɵfac = function IsTypePipe_Factory(t) { return new (t || IsTypePipe)(); };
3674
- IsTypePipe.ɵpipe = /*@__PURE__*/ i0.ɵɵdefinePipe({ name: "isType", type: IsTypePipe, pure: true });
3675
- (function () {
3676
- (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(IsTypePipe, [{
3609
+ IsTypePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: IsTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
3610
+ IsTypePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: IsTypePipe, name: "isType" });
3611
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: IsTypePipe, decorators: [{
3677
3612
  type: Pipe,
3678
3613
  args: [{
3679
3614
  name: "isType"
3680
3615
  }]
3681
- }], null, null);
3682
- })();
3616
+ }] });
3683
3617
 
3684
3618
  class JoinPipe {
3685
3619
  transform(value, separator = ", ") {
@@ -3688,16 +3622,14 @@ class JoinPipe {
3688
3622
  : "";
3689
3623
  }
3690
3624
  }
3691
- JoinPipe.ɵfac = function JoinPipe_Factory(t) { return new (t || JoinPipe)(); };
3692
- JoinPipe.ɵpipe = /*@__PURE__*/ i0.ɵɵdefinePipe({ name: "join", type: JoinPipe, pure: true });
3693
- (function () {
3694
- (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(JoinPipe, [{
3625
+ JoinPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: JoinPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
3626
+ JoinPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: JoinPipe, name: "join" });
3627
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: JoinPipe, decorators: [{
3695
3628
  type: Pipe,
3696
3629
  args: [{
3697
3630
  name: "join"
3698
3631
  }]
3699
- }], null, null);
3700
- })();
3632
+ }] });
3701
3633
 
3702
3634
  const emptyKeys = [];
3703
3635
  class KeysPipe {
@@ -3709,16 +3641,14 @@ class KeysPipe {
3709
3641
  : Object.keys(value);
3710
3642
  }
3711
3643
  }
3712
- KeysPipe.ɵfac = function KeysPipe_Factory(t) { return new (t || KeysPipe)(); };
3713
- KeysPipe.ɵpipe = /*@__PURE__*/ i0.ɵɵdefinePipe({ name: "keys", type: KeysPipe, pure: true });
3714
- (function () {
3715
- (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(KeysPipe, [{
3644
+ KeysPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: KeysPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
3645
+ KeysPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: KeysPipe, name: "keys" });
3646
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: KeysPipe, decorators: [{
3716
3647
  type: Pipe,
3717
3648
  args: [{
3718
3649
  name: "keys"
3719
3650
  }]
3720
- }], null, null);
3721
- })();
3651
+ }] });
3722
3652
 
3723
3653
  function defaultMapper(item) {
3724
3654
  return item;
@@ -3737,16 +3667,14 @@ class MapPipe {
3737
3667
  return values.map((value, index) => mapperFunc(value, index, params));
3738
3668
  }
3739
3669
  }
3740
- MapPipe.ɵfac = function MapPipe_Factory(t) { return new (t || MapPipe)(); };
3741
- MapPipe.ɵpipe = /*@__PURE__*/ i0.ɵɵdefinePipe({ name: "map", type: MapPipe, pure: true });
3742
- (function () {
3743
- (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(MapPipe, [{
3670
+ MapPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: MapPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
3671
+ MapPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: MapPipe, name: "map" });
3672
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: MapPipe, decorators: [{
3744
3673
  type: Pipe,
3745
3674
  args: [{
3746
3675
  name: "map"
3747
3676
  }]
3748
- }], null, null);
3749
- })();
3677
+ }] });
3750
3678
 
3751
3679
  class MaxPipe {
3752
3680
  transform(value, selector = null, params = {}) {
@@ -3761,16 +3689,14 @@ class MaxPipe {
3761
3689
  return ArrayUtils.max(value, (item, index) => maxSelector(item, index, params));
3762
3690
  }
3763
3691
  }
3764
- MaxPipe.ɵfac = function MaxPipe_Factory(t) { return new (t || MaxPipe)(); };
3765
- MaxPipe.ɵpipe = /*@__PURE__*/ i0.ɵɵdefinePipe({ name: "max", type: MaxPipe, pure: true });
3766
- (function () {
3767
- (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(MaxPipe, [{
3692
+ MaxPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: MaxPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
3693
+ MaxPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: MaxPipe, name: "max" });
3694
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: MaxPipe, decorators: [{
3768
3695
  type: Pipe,
3769
3696
  args: [{
3770
3697
  name: "max"
3771
3698
  }]
3772
- }], null, null);
3773
- })();
3699
+ }] });
3774
3700
 
3775
3701
  class MinPipe {
3776
3702
  transform(value, selector = null, params = {}) {
@@ -3785,16 +3711,14 @@ class MinPipe {
3785
3711
  return ArrayUtils.min(value, (item, index) => minSelector(item, index, params));
3786
3712
  }
3787
3713
  }
3788
- MinPipe.ɵfac = function MinPipe_Factory(t) { return new (t || MinPipe)(); };
3789
- MinPipe.ɵpipe = /*@__PURE__*/ i0.ɵɵdefinePipe({ name: "min", type: MinPipe, pure: true });
3790
- (function () {
3791
- (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(MinPipe, [{
3714
+ MinPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: MinPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
3715
+ MinPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: MinPipe, name: "min" });
3716
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: MinPipe, decorators: [{
3792
3717
  type: Pipe,
3793
3718
  args: [{
3794
3719
  name: "min"
3795
3720
  }]
3796
- }], null, null);
3797
- })();
3721
+ }] });
3798
3722
 
3799
3723
  function defaultReducer(result) {
3800
3724
  return result;
@@ -3814,16 +3738,14 @@ class ReducePipe {
3814
3738
  return values.reduce((result, value, index) => mapperFunc(result, value, index, params), source);
3815
3739
  }
3816
3740
  }
3817
- ReducePipe.ɵfac = function ReducePipe_Factory(t) { return new (t || ReducePipe)(); };
3818
- ReducePipe.ɵpipe = /*@__PURE__*/ i0.ɵɵdefinePipe({ name: "reduce", type: ReducePipe, pure: true });
3819
- (function () {
3820
- (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ReducePipe, [{
3741
+ ReducePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ReducePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
3742
+ ReducePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ReducePipe, name: "reduce" });
3743
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ReducePipe, decorators: [{
3821
3744
  type: Pipe,
3822
3745
  args: [{
3823
3746
  name: "reduce"
3824
3747
  }]
3825
- }], null, null);
3826
- })();
3748
+ }] });
3827
3749
 
3828
3750
  const empty = {};
3829
3751
  class RemapPipe {
@@ -3845,32 +3767,28 @@ class RemapPipe {
3845
3767
  return remapped.map;
3846
3768
  }
3847
3769
  }
3848
- RemapPipe.ɵfac = function RemapPipe_Factory(t) { return new (t || RemapPipe)(); };
3849
- RemapPipe.ɵpipe = /*@__PURE__*/ i0.ɵɵdefinePipe({ name: "remap", type: RemapPipe, pure: true });
3850
- (function () {
3851
- (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(RemapPipe, [{
3770
+ RemapPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: RemapPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
3771
+ RemapPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: RemapPipe, name: "remap" });
3772
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: RemapPipe, decorators: [{
3852
3773
  type: Pipe,
3853
3774
  args: [{
3854
3775
  name: "remap"
3855
3776
  }]
3856
- }], null, null);
3857
- })();
3777
+ }] });
3858
3778
 
3859
3779
  class ReplacePipe {
3860
3780
  transform(value, from, to) {
3861
3781
  return value ? value.replace(from, to) : value;
3862
3782
  }
3863
3783
  }
3864
- ReplacePipe.ɵfac = function ReplacePipe_Factory(t) { return new (t || ReplacePipe)(); };
3865
- ReplacePipe.ɵpipe = /*@__PURE__*/ i0.ɵɵdefinePipe({ name: "replace", type: ReplacePipe, pure: true });
3866
- (function () {
3867
- (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ReplacePipe, [{
3784
+ ReplacePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ReplacePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
3785
+ ReplacePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ReplacePipe, name: "replace" });
3786
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ReplacePipe, decorators: [{
3868
3787
  type: Pipe,
3869
3788
  args: [{
3870
3789
  name: "replace"
3871
3790
  }]
3872
- }], null, null);
3873
- })();
3791
+ }] });
3874
3792
 
3875
3793
  const emptyArray = [];
3876
3794
  class ReversePipe {
@@ -3884,16 +3802,14 @@ class ReversePipe {
3884
3802
  return result;
3885
3803
  }
3886
3804
  }
3887
- ReversePipe.ɵfac = function ReversePipe_Factory(t) { return new (t || ReversePipe)(); };
3888
- ReversePipe.ɵpipe = /*@__PURE__*/ i0.ɵɵdefinePipe({ name: "reverse", type: ReversePipe, pure: true });
3889
- (function () {
3890
- (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ReversePipe, [{
3805
+ ReversePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ReversePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
3806
+ ReversePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ReversePipe, name: "reverse" });
3807
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ReversePipe, decorators: [{
3891
3808
  type: Pipe,
3892
3809
  args: [{
3893
3810
  name: "reverse"
3894
3811
  }]
3895
- }], null, null);
3896
- })();
3812
+ }] });
3897
3813
 
3898
3814
  class RoundPipe {
3899
3815
  constructor(formatter) {
@@ -3903,16 +3819,14 @@ class RoundPipe {
3903
3819
  return this.formatter.roundNumber(value, precision, divider);
3904
3820
  }
3905
3821
  }
3906
- RoundPipe.ɵfac = function RoundPipe_Factory(t) { return new (t || RoundPipe)(i0.ɵɵdirectiveInject(FormatterService, 16)); };
3907
- RoundPipe.ɵpipe = /*@__PURE__*/ i0.ɵɵdefinePipe({ name: "round", type: RoundPipe, pure: true });
3908
- (function () {
3909
- (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(RoundPipe, [{
3822
+ RoundPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: RoundPipe, deps: [{ token: FormatterService }], target: i0.ɵɵFactoryTarget.Pipe });
3823
+ RoundPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: RoundPipe, name: "round" });
3824
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: RoundPipe, decorators: [{
3910
3825
  type: Pipe,
3911
3826
  args: [{
3912
3827
  name: "round"
3913
3828
  }]
3914
- }], function () { return [{ type: FormatterService }]; }, null);
3915
- })();
3829
+ }], ctorParameters: function () { return [{ type: FormatterService }]; } });
3916
3830
 
3917
3831
  class SafeHtmlPipe {
3918
3832
  constructor(sanitizer) {
@@ -3935,16 +3849,14 @@ class SafeHtmlPipe {
3935
3849
  }
3936
3850
  }
3937
3851
  }
3938
- SafeHtmlPipe.ɵfac = function SafeHtmlPipe_Factory(t) { return new (t || SafeHtmlPipe)(i0.ɵɵdirectiveInject(i1$2.DomSanitizer, 16)); };
3939
- SafeHtmlPipe.ɵpipe = /*@__PURE__*/ i0.ɵɵdefinePipe({ name: "safe", type: SafeHtmlPipe, pure: true });
3940
- (function () {
3941
- (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(SafeHtmlPipe, [{
3852
+ 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 });
3853
+ SafeHtmlPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: SafeHtmlPipe, name: "safe" });
3854
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: SafeHtmlPipe, decorators: [{
3942
3855
  type: Pipe,
3943
3856
  args: [{
3944
3857
  name: "safe"
3945
3858
  }]
3946
- }], function () { return [{ type: i1$2.DomSanitizer }]; }, null);
3947
- })();
3859
+ }], ctorParameters: function () { return [{ type: i1$2.DomSanitizer }]; } });
3948
3860
 
3949
3861
  class TranslatePipe {
3950
3862
  constructor(cdr, language) {
@@ -4012,11 +3924,10 @@ class TranslatePipe {
4012
3924
  return this.lastValue;
4013
3925
  }
4014
3926
  }
4015
- TranslatePipe.ɵfac = function TranslatePipe_Factory(t) { return new (t || TranslatePipe)(i0.ɵɵdirectiveInject(i0.ChangeDetectorRef, 16), i0.ɵɵdirectiveInject(LANGUAGE_SERVICE, 16)); };
4016
- TranslatePipe.ɵpipe = /*@__PURE__*/ i0.ɵɵdefinePipe({ name: "translate", type: TranslatePipe, pure: false });
4017
- TranslatePipe.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: TranslatePipe, factory: TranslatePipe.ɵfac });
4018
- (function () {
4019
- (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(TranslatePipe, [{
3927
+ 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 });
3928
+ TranslatePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: TranslatePipe, name: "translate", pure: false });
3929
+ TranslatePipe.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: TranslatePipe });
3930
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: TranslatePipe, decorators: [{
4020
3931
  type: Injectable
4021
3932
  }, {
4022
3933
  type: Pipe,
@@ -4024,13 +3935,12 @@ TranslatePipe.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: TranslateP
4024
3935
  name: "translate",
4025
3936
  pure: false
4026
3937
  }]
4027
- }], function () {
3938
+ }], ctorParameters: function () {
4028
3939
  return [{ type: i0.ChangeDetectorRef }, { type: undefined, decorators: [{
4029
3940
  type: Inject,
4030
3941
  args: [LANGUAGE_SERVICE]
4031
3942
  }] }];
4032
- }, null);
4033
- })();
3943
+ } });
4034
3944
 
4035
3945
  const emptyValues = [];
4036
3946
  class ValuesPipe {
@@ -4042,16 +3952,14 @@ class ValuesPipe {
4042
3952
  : Object.keys(value).map(key => value[key]);
4043
3953
  }
4044
3954
  }
4045
- ValuesPipe.ɵfac = function ValuesPipe_Factory(t) { return new (t || ValuesPipe)(); };
4046
- ValuesPipe.ɵpipe = /*@__PURE__*/ i0.ɵɵdefinePipe({ name: "values", type: ValuesPipe, pure: true });
4047
- (function () {
4048
- (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ValuesPipe, [{
3955
+ ValuesPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ValuesPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
3956
+ ValuesPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ValuesPipe, name: "values" });
3957
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ValuesPipe, decorators: [{
4049
3958
  type: Pipe,
4050
3959
  args: [{
4051
3960
  name: "values"
4052
3961
  }]
4053
- }], null, null);
4054
- })();
3962
+ }] });
4055
3963
 
4056
3964
  class AsyncMethodBase {
4057
3965
  constructor(toaster) {
@@ -4096,12 +4004,11 @@ class AsyncMethodBase {
4096
4004
  return true;
4097
4005
  }
4098
4006
  }
4099
- AsyncMethodBase.ɵfac = function AsyncMethodBase_Factory(t) { i0.ɵɵinvalidFactory(); };
4100
- AsyncMethodBase.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: AsyncMethodBase, factory: AsyncMethodBase.ɵfac });
4101
- (function () {
4102
- (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AsyncMethodBase, [{
4007
+ AsyncMethodBase.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: AsyncMethodBase, deps: "invalid", target: i0.ɵɵFactoryTarget.Injectable });
4008
+ AsyncMethodBase.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: AsyncMethodBase });
4009
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: AsyncMethodBase, decorators: [{
4103
4010
  type: Injectable
4104
- }], function () { return [{ type: undefined }]; }, { disabled: [{
4011
+ }], ctorParameters: function () { return [{ type: undefined }]; }, propDecorators: { disabled: [{
4105
4012
  type: Input
4106
4013
  }], context: [{
4107
4014
  type: Input
@@ -4118,8 +4025,7 @@ AsyncMethodBase.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: AsyncMet
4118
4025
  }], click: [{
4119
4026
  type: HostListener,
4120
4027
  args: ["click"]
4121
- }] });
4122
- })();
4028
+ }] } });
4123
4029
 
4124
4030
  class AsyncMethodDirective extends AsyncMethodBase {
4125
4031
  constructor(toaster) {
@@ -4129,25 +4035,23 @@ class AsyncMethodDirective extends AsyncMethodBase {
4129
4035
  return this.method;
4130
4036
  }
4131
4037
  }
4132
- AsyncMethodDirective.ɵfac = function AsyncMethodDirective_Factory(t) { return new (t || AsyncMethodDirective)(i0.ɵɵdirectiveInject(TOASTER_SERVICE)); };
4133
- AsyncMethodDirective.ɵdir = /*@__PURE__*/ i0.ɵɵdefineDirective({ type: AsyncMethodDirective, selectors: [["", "async-method", ""]], inputs: { method: ["async-method", "method"] }, exportAs: ["async-method"], features: [i0.ɵɵInheritDefinitionFeature] });
4134
- (function () {
4135
- (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AsyncMethodDirective, [{
4038
+ AsyncMethodDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: AsyncMethodDirective, deps: [{ token: TOASTER_SERVICE }], target: i0.ɵɵFactoryTarget.Directive });
4039
+ 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 });
4040
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: AsyncMethodDirective, decorators: [{
4136
4041
  type: Directive,
4137
4042
  args: [{
4138
4043
  selector: "[async-method]",
4139
4044
  exportAs: "async-method"
4140
4045
  }]
4141
- }], function () {
4046
+ }], ctorParameters: function () {
4142
4047
  return [{ type: undefined, decorators: [{
4143
4048
  type: Inject,
4144
4049
  args: [TOASTER_SERVICE]
4145
4050
  }] }];
4146
- }, { method: [{
4051
+ }, propDecorators: { method: [{
4147
4052
  type: Input,
4148
4053
  args: ["async-method"]
4149
- }] });
4150
- })();
4054
+ }] } });
4151
4055
 
4152
4056
  const defaultClass = "default-image";
4153
4057
  const loadingClass = "loading-image";
@@ -4180,40 +4084,36 @@ class BackgroundDirective {
4180
4084
  this.renderer.setStyle(this.element.nativeElement, "background-size", this.backgroundSize);
4181
4085
  }
4182
4086
  }
4183
- 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)); };
4184
- BackgroundDirective.ɵdir = /*@__PURE__*/ i0.ɵɵdefineDirective({ type: BackgroundDirective, selectors: [["", "background", ""]], inputs: { background: "background", backgroundSize: "backgroundSize" }, features: [i0.ɵɵNgOnChangesFeature] });
4185
- (function () {
4186
- (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(BackgroundDirective, [{
4087
+ 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 });
4088
+ 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 });
4089
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: BackgroundDirective, decorators: [{
4187
4090
  type: Directive,
4188
4091
  args: [{
4189
4092
  selector: "[background]"
4190
4093
  }]
4191
- }], function () { return [{ type: i1$1.HttpClient }, { type: i0.ElementRef }, { type: i0.Renderer2 }, { type: UniversalService }]; }, { background: [{
4094
+ }], ctorParameters: function () { return [{ type: i1$1.HttpClient }, { type: i0.ElementRef }, { type: i0.Renderer2 }, { type: UniversalService }]; }, propDecorators: { background: [{
4192
4095
  type: Input
4193
4096
  }], backgroundSize: [{
4194
4097
  type: Input
4195
- }] });
4196
- })();
4098
+ }] } });
4197
4099
 
4198
4100
  class DynamicTableTemplateDirective {
4199
4101
  constructor(ref) {
4200
4102
  this.ref = ref;
4201
4103
  }
4202
4104
  }
4203
- DynamicTableTemplateDirective.ɵfac = function DynamicTableTemplateDirective_Factory(t) { return new (t || DynamicTableTemplateDirective)(i0.ɵɵdirectiveInject(i0.TemplateRef)); };
4204
- DynamicTableTemplateDirective.ɵdir = /*@__PURE__*/ i0.ɵɵdefineDirective({ type: DynamicTableTemplateDirective, selectors: [["ng-template", "column", ""]], inputs: { column: "column", pure: "pure" } });
4205
- (function () {
4206
- (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(DynamicTableTemplateDirective, [{
4105
+ DynamicTableTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: DynamicTableTemplateDirective, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
4106
+ 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 });
4107
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: DynamicTableTemplateDirective, decorators: [{
4207
4108
  type: Directive,
4208
4109
  args: [{
4209
4110
  selector: "ng-template[column]"
4210
4111
  }]
4211
- }], function () { return [{ type: i0.TemplateRef }]; }, { column: [{
4112
+ }], ctorParameters: function () { return [{ type: i0.TemplateRef }]; }, propDecorators: { column: [{
4212
4113
  type: Input
4213
4114
  }], pure: [{
4214
4115
  type: Input
4215
- }] });
4216
- })();
4116
+ }] } });
4217
4117
 
4218
4118
  class GlobalTemplateDirective {
4219
4119
  constructor(globalTemplates, template) {
@@ -4227,24 +4127,22 @@ class GlobalTemplateDirective {
4227
4127
  this.globalTemplates.remove(this.id);
4228
4128
  }
4229
4129
  }
4230
- GlobalTemplateDirective.ɵfac = function GlobalTemplateDirective_Factory(t) { return new (t || GlobalTemplateDirective)(i0.ɵɵdirectiveInject(GLOBAL_TEMPLATES), i0.ɵɵdirectiveInject(i0.TemplateRef)); };
4231
- GlobalTemplateDirective.ɵdir = /*@__PURE__*/ i0.ɵɵdefineDirective({ type: GlobalTemplateDirective, selectors: [["", "globalTemplate", ""]], inputs: { id: ["globalTemplate", "id"] } });
4232
- (function () {
4233
- (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(GlobalTemplateDirective, [{
4130
+ 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 });
4131
+ GlobalTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.8", type: GlobalTemplateDirective, selector: "[globalTemplate]", inputs: { id: ["globalTemplate", "id"] }, ngImport: i0 });
4132
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: GlobalTemplateDirective, decorators: [{
4234
4133
  type: Directive,
4235
4134
  args: [{
4236
4135
  selector: "[globalTemplate]"
4237
4136
  }]
4238
- }], function () {
4137
+ }], ctorParameters: function () {
4239
4138
  return [{ type: undefined, decorators: [{
4240
4139
  type: Inject,
4241
4140
  args: [GLOBAL_TEMPLATES]
4242
4141
  }] }, { type: i0.TemplateRef }];
4243
- }, { id: [{
4142
+ }, propDecorators: { id: [{
4244
4143
  type: Input,
4245
4144
  args: ["globalTemplate"]
4246
- }] });
4247
- })();
4145
+ }] } });
4248
4146
 
4249
4147
  class IconDirective {
4250
4148
  constructor(element, renderer, icons) {
@@ -4284,27 +4182,19 @@ class IconDirective {
4284
4182
  });
4285
4183
  }
4286
4184
  }
4287
- IconDirective.ɵfac = function IconDirective_Factory(t) { return new (t || IconDirective)(i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.Renderer2), i0.ɵɵdirectiveInject(ICON_SERVICE)); };
4288
- IconDirective.ɵdir = /*@__PURE__*/ i0.ɵɵdefineDirective({ type: IconDirective, selectors: [["", "icon", ""]], hostVars: 2, hostBindings: function IconDirective_HostBindings(rf, ctx) {
4289
- if (rf & 1) {
4290
- i0.ɵɵlistener("click", function IconDirective_click_HostBindingHandler() { return ctx.click(); });
4291
- }
4292
- if (rf & 2) {
4293
- i0.ɵɵclassProp("active", ctx.isActive);
4294
- }
4295
- }, inputs: { icon: "icon", activeIcon: "activeIcon", active: "active" }, outputs: { activeChange: "activeChange" }, features: [i0.ɵɵNgOnChangesFeature] });
4296
- (function () {
4297
- (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(IconDirective, [{
4185
+ 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 });
4186
+ 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 });
4187
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: IconDirective, decorators: [{
4298
4188
  type: Directive,
4299
4189
  args: [{
4300
4190
  selector: "[icon]"
4301
4191
  }]
4302
- }], function () {
4192
+ }], ctorParameters: function () {
4303
4193
  return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: undefined, decorators: [{
4304
4194
  type: Inject,
4305
4195
  args: [ICON_SERVICE]
4306
4196
  }] }];
4307
- }, { icon: [{
4197
+ }, propDecorators: { icon: [{
4308
4198
  type: Input
4309
4199
  }], activeIcon: [{
4310
4200
  type: Input
@@ -4318,8 +4208,7 @@ IconDirective.ɵdir = /*@__PURE__*/ i0.ɵɵdefineDirective({ type: IconDirective
4318
4208
  }], click: [{
4319
4209
  type: HostListener,
4320
4210
  args: ["click"]
4321
- }] });
4322
- })();
4211
+ }] } });
4323
4212
 
4324
4213
  class NgxTemplateOutletDirective {
4325
4214
  constructor(_viewContainerRef) {
@@ -4393,22 +4282,20 @@ class NgxTemplateOutletDirective {
4393
4282
  }
4394
4283
  }
4395
4284
  }
4396
- NgxTemplateOutletDirective.ɵfac = function NgxTemplateOutletDirective_Factory(t) { return new (t || NgxTemplateOutletDirective)(i0.ɵɵdirectiveInject(i0.ViewContainerRef)); };
4397
- NgxTemplateOutletDirective.ɵdir = /*@__PURE__*/ i0.ɵɵdefineDirective({ type: NgxTemplateOutletDirective, selectors: [["", "ngxTemplateOutlet", ""]], inputs: { context: "context", additionalContext: "additionalContext", ngxTemplateOutlet: "ngxTemplateOutlet" }, features: [i0.ɵɵNgOnChangesFeature] });
4398
- (function () {
4399
- (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(NgxTemplateOutletDirective, [{
4285
+ NgxTemplateOutletDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: NgxTemplateOutletDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
4286
+ 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 });
4287
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: NgxTemplateOutletDirective, decorators: [{
4400
4288
  type: Directive,
4401
4289
  args: [{
4402
4290
  selector: "[ngxTemplateOutlet]"
4403
4291
  }]
4404
- }], function () { return [{ type: i0.ViewContainerRef }]; }, { context: [{
4292
+ }], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; }, propDecorators: { context: [{
4405
4293
  type: Input
4406
4294
  }], additionalContext: [{
4407
4295
  type: Input
4408
4296
  }], ngxTemplateOutlet: [{
4409
4297
  type: Input
4410
- }] });
4411
- })();
4298
+ }] } });
4412
4299
 
4413
4300
  class PaginationDirective {
4414
4301
  constructor(zone) {
@@ -4464,16 +4351,15 @@ class PaginationDirective {
4464
4351
  });
4465
4352
  }
4466
4353
  }
4467
- PaginationDirective.ɵfac = function PaginationDirective_Factory(t) { return new (t || PaginationDirective)(i0.ɵɵdirectiveInject(i0.NgZone)); };
4468
- 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] });
4469
- (function () {
4470
- (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(PaginationDirective, [{
4354
+ PaginationDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: PaginationDirective, deps: [{ token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive });
4355
+ 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 });
4356
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: PaginationDirective, decorators: [{
4471
4357
  type: Directive,
4472
4358
  args: [{
4473
4359
  selector: "[pagination]",
4474
4360
  exportAs: "pagination"
4475
4361
  }]
4476
- }], function () { return [{ type: i0.NgZone }]; }, { loader: [{
4362
+ }], ctorParameters: function () { return [{ type: i0.NgZone }]; }, propDecorators: { loader: [{
4477
4363
  type: Input,
4478
4364
  args: ["pagination"]
4479
4365
  }], page: [{
@@ -4488,8 +4374,7 @@ PaginationDirective.ɵdir = /*@__PURE__*/ i0.ɵɵdefineDirective({ type: Paginat
4488
4374
  type: Output
4489
4375
  }], onRefresh: [{
4490
4376
  type: Output
4491
- }] });
4492
- })();
4377
+ }] } });
4493
4378
 
4494
4379
  class PaginationItemDirective {
4495
4380
  constructor(pagination, viewContainer, templateRef) {
@@ -4511,16 +4396,14 @@ class PaginationItemDirective {
4511
4396
  });
4512
4397
  }
4513
4398
  }
4514
- PaginationItemDirective.ɵfac = function PaginationItemDirective_Factory(t) { return new (t || PaginationItemDirective)(i0.ɵɵdirectiveInject(PaginationDirective), i0.ɵɵdirectiveInject(i0.ViewContainerRef), i0.ɵɵdirectiveInject(i0.TemplateRef)); };
4515
- PaginationItemDirective.ɵdir = /*@__PURE__*/ i0.ɵɵdefineDirective({ type: PaginationItemDirective, selectors: [["", "paginationItem", ""]] });
4516
- (function () {
4517
- (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(PaginationItemDirective, [{
4399
+ 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 });
4400
+ PaginationItemDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.8", type: PaginationItemDirective, selector: "[paginationItem]", ngImport: i0 });
4401
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: PaginationItemDirective, decorators: [{
4518
4402
  type: Directive,
4519
4403
  args: [{
4520
4404
  selector: "[paginationItem]"
4521
4405
  }]
4522
- }], function () { return [{ type: PaginationDirective }, { type: i0.ViewContainerRef }, { type: i0.TemplateRef }]; }, null);
4523
- })();
4406
+ }], ctorParameters: function () { return [{ type: PaginationDirective }, { type: i0.ViewContainerRef }, { type: i0.TemplateRef }]; } });
4524
4407
 
4525
4408
  class ResourceIfDirective {
4526
4409
  constructor(http, viewContainer, templateRef, universal) {
@@ -4552,19 +4435,17 @@ class ResourceIfDirective {
4552
4435
  }
4553
4436
  }
4554
4437
  }
4555
- 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)); };
4556
- ResourceIfDirective.ɵdir = /*@__PURE__*/ i0.ɵɵdefineDirective({ type: ResourceIfDirective, selectors: [["", "resourceIf", ""]], inputs: { resourceIf: "resourceIf" }, exportAs: ["resourceIf"] });
4557
- (function () {
4558
- (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ResourceIfDirective, [{
4438
+ 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 });
4439
+ ResourceIfDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.8", type: ResourceIfDirective, selector: "[resourceIf]", inputs: { resourceIf: "resourceIf" }, exportAs: ["resourceIf"], ngImport: i0 });
4440
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ResourceIfDirective, decorators: [{
4559
4441
  type: Directive,
4560
4442
  args: [{
4561
4443
  selector: "[resourceIf]",
4562
4444
  exportAs: "resourceIf"
4563
4445
  }]
4564
- }], function () { return [{ type: i1$1.HttpClient }, { type: i0.ViewContainerRef }, { type: i0.TemplateRef }, { type: UniversalService }]; }, { resourceIf: [{
4446
+ }], ctorParameters: function () { return [{ type: i1$1.HttpClient }, { type: i0.ViewContainerRef }, { type: i0.TemplateRef }, { type: UniversalService }]; }, propDecorators: { resourceIf: [{
4565
4447
  type: Input
4566
- }] });
4567
- })();
4448
+ }] } });
4568
4449
 
4569
4450
  class StickyDirective {
4570
4451
  constructor(cdr, events, element) {
@@ -4595,22 +4476,14 @@ class StickyDirective {
4595
4476
  this.updateTimer.run();
4596
4477
  }
4597
4478
  }
4598
- StickyDirective.ɵfac = function StickyDirective_Factory(t) { return new (t || StickyDirective)(i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(EventsService), i0.ɵɵdirectiveInject(i0.ElementRef)); };
4599
- StickyDirective.ɵdir = /*@__PURE__*/ i0.ɵɵdefineDirective({ type: StickyDirective, selectors: [["", "sticky", ""]], hostVars: 4, hostBindings: function StickyDirective_HostBindings(rf, ctx) {
4600
- if (rf & 1) {
4601
- i0.ɵɵlistener("resize", function StickyDirective_resize_HostBindingHandler() { return ctx.updateSticky(); }, false, i0.ɵɵresolveWindow)("scroll", function StickyDirective_scroll_HostBindingHandler() { return ctx.updateSticky(); }, false, i0.ɵɵresolveWindow);
4602
- }
4603
- if (rf & 2) {
4604
- i0.ɵɵclassProp("sticky", ctx.isSticky)("sticky-update", ctx.isUpdating);
4605
- }
4606
- } });
4607
- (function () {
4608
- (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(StickyDirective, [{
4479
+ 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 });
4480
+ 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 });
4481
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: StickyDirective, decorators: [{
4609
4482
  type: Directive,
4610
4483
  args: [{
4611
4484
  selector: "[sticky]"
4612
4485
  }]
4613
- }], function () { return [{ type: i0.ChangeDetectorRef }, { type: EventsService }, { type: i0.ElementRef }]; }, { isSticky: [{
4486
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: EventsService }, { type: i0.ElementRef }]; }, propDecorators: { isSticky: [{
4614
4487
  type: HostBinding,
4615
4488
  args: ["class.sticky"]
4616
4489
  }], isUpdating: [{
@@ -4622,8 +4495,7 @@ StickyDirective.ɵdir = /*@__PURE__*/ i0.ɵɵdefineDirective({ type: StickyDirec
4622
4495
  }, {
4623
4496
  type: HostListener,
4624
4497
  args: ["window:scroll"]
4625
- }] });
4626
- })();
4498
+ }] } });
4627
4499
 
4628
4500
  class StickyClassDirective {
4629
4501
  constructor(events, element, renderer) {
@@ -4644,18 +4516,16 @@ class StickyClassDirective {
4644
4516
  this.stickyUpdated.unsubscribe();
4645
4517
  }
4646
4518
  }
4647
- StickyClassDirective.ɵfac = function StickyClassDirective_Factory(t) { return new (t || StickyClassDirective)(i0.ɵɵdirectiveInject(EventsService), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.Renderer2)); };
4648
- StickyClassDirective.ɵdir = /*@__PURE__*/ i0.ɵɵdefineDirective({ type: StickyClassDirective, selectors: [["", "stickyClass", ""]], inputs: { stickyClass: "stickyClass" } });
4649
- (function () {
4650
- (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(StickyClassDirective, [{
4519
+ 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 });
4520
+ StickyClassDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.8", type: StickyClassDirective, selector: "[stickyClass]", inputs: { stickyClass: "stickyClass" }, ngImport: i0 });
4521
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: StickyClassDirective, decorators: [{
4651
4522
  type: Directive,
4652
4523
  args: [{
4653
4524
  selector: "[stickyClass]"
4654
4525
  }]
4655
- }], function () { return [{ type: EventsService }, { type: i0.ElementRef }, { type: i0.Renderer2 }]; }, { stickyClass: [{
4526
+ }], ctorParameters: function () { return [{ type: EventsService }, { type: i0.ElementRef }, { type: i0.Renderer2 }]; }, propDecorators: { stickyClass: [{
4656
4527
  type: Input
4657
- }] });
4658
- })();
4528
+ }] } });
4659
4529
 
4660
4530
  class UnorderedListItemDirective {
4661
4531
  constructor(elementRef, renderer, viewContainer) {
@@ -4703,15 +4573,14 @@ class UnorderedListItemDirective {
4703
4573
  this.item.classList.push(className);
4704
4574
  }
4705
4575
  }
4706
- UnorderedListItemDirective.ɵfac = function UnorderedListItemDirective_Factory(t) { return new (t || UnorderedListItemDirective)(i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.Renderer2), i0.ɵɵdirectiveInject(i0.ViewContainerRef)); };
4707
- 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] });
4708
- (function () {
4709
- (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(UnorderedListItemDirective, [{
4576
+ 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 });
4577
+ 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 });
4578
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: UnorderedListItemDirective, decorators: [{
4710
4579
  type: Directive,
4711
4580
  args: [{
4712
4581
  selector: "[unorderedListItem]"
4713
4582
  }]
4714
- }], function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }]; }, { item: [{
4583
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }]; }, propDecorators: { item: [{
4715
4584
  type: Input,
4716
4585
  args: ["unorderedListItem"]
4717
4586
  }], type: [{
@@ -4730,8 +4599,7 @@ UnorderedListItemDirective.ɵdir = /*@__PURE__*/ i0.ɵɵdefineDirective({ type:
4730
4599
  type: Input
4731
4600
  }], defaultTemplates: [{
4732
4601
  type: Input
4733
- }] });
4734
- })();
4602
+ }] } });
4735
4603
 
4736
4604
  class UnorderedListTemplateDirective extends UnorederedListTemplate {
4737
4605
  constructor(elementRef, templateRef) {
@@ -4743,241 +4611,19 @@ class UnorderedListTemplateDirective extends UnorederedListTemplate {
4743
4611
  return this.templateRef.createEmbeddedView(context);
4744
4612
  }
4745
4613
  }
4746
- UnorderedListTemplateDirective.ɵfac = function UnorderedListTemplateDirective_Factory(t) { return new (t || UnorderedListTemplateDirective)(i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.TemplateRef)); };
4747
- UnorderedListTemplateDirective.ɵdir = /*@__PURE__*/ i0.ɵɵdefineDirective({ type: UnorderedListTemplateDirective, selectors: [["ng-template", "type", "", "selector", ""]], inputs: { type: "type", selector: "selector" }, features: [i0.ɵɵInheritDefinitionFeature] });
4748
- (function () {
4749
- (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(UnorderedListTemplateDirective, [{
4614
+ 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 });
4615
+ 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 });
4616
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: UnorderedListTemplateDirective, decorators: [{
4750
4617
  type: Directive,
4751
4618
  args: [{
4752
4619
  selector: "ng-template[type][selector]"
4753
4620
  }]
4754
- }], function () { return [{ type: i0.ElementRef }, { type: i0.TemplateRef }]; }, { type: [{
4621
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.TemplateRef }]; }, propDecorators: { type: [{
4755
4622
  type: Input
4756
4623
  }], selector: [{
4757
4624
  type: Input
4758
- }] });
4759
- })();
4625
+ }] } });
4760
4626
 
4761
- const _c0$2 = ["defaultKeyTemplate"];
4762
- const _c1$2 = ["defaultValueTemplate"];
4763
- const _c2$1 = ["defaultItemTemplate"];
4764
- function UnorderedListComponent_ng_template_0_Template(rf, ctx) {
4765
- if (rf & 1) {
4766
- i0.ɵɵtext(0);
4767
- i0.ɵɵpipe(1, "translate");
4768
- }
4769
- if (rf & 2) {
4770
- const keyPrefix_r9 = ctx.keyPrefix;
4771
- const key_r10 = ctx.item.key;
4772
- i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(1, 1, keyPrefix_r9 ? keyPrefix_r9 + key_r10 : key_r10), ":\n");
4773
- }
4774
- }
4775
- function UnorderedListComponent_ng_template_2_ng_template_0_Template(rf, ctx) {
4776
- if (rf & 1) {
4777
- i0.ɵɵtext(0);
4778
- }
4779
- if (rf & 2) {
4780
- const val_r14 = i0.ɵɵnextContext().item.value;
4781
- i0.ɵɵtextInterpolate(val_r14);
4782
- }
4783
- }
4784
- function UnorderedListComponent_ng_template_2_unordered_list_2_Template(rf, ctx) {
4785
- if (rf & 1) {
4786
- i0.ɵɵelement(0, "unordered-list", 6);
4787
- }
4788
- if (rf & 2) {
4789
- const ctx_r23 = i0.ɵɵnextContext();
4790
- const val_r14 = ctx_r23.item.value;
4791
- const keyPrefix_r12 = ctx_r23.keyPrefix;
4792
- const listStyle_r13 = ctx_r23.listStyle;
4793
- const path_r15 = ctx_r23.path;
4794
- const templates_r16 = ctx_r23.templates;
4795
- const ctx_r21 = i0.ɵɵnextContext();
4796
- i0.ɵɵproperty("data", val_r14)("keyPrefix", keyPrefix_r12)("listStyle", listStyle_r13)("path", path_r15)("level", ctx_r21.level + 1)("templates", templates_r16);
4797
- }
4798
- }
4799
- function UnorderedListComponent_ng_template_2_Template(rf, ctx) {
4800
- if (rf & 1) {
4801
- i0.ɵɵtemplate(0, UnorderedListComponent_ng_template_2_ng_template_0_Template, 1, 1, "ng-template", null, 3, i0.ɵɵtemplateRefExtractor);
4802
- i0.ɵɵtemplate(2, UnorderedListComponent_ng_template_2_unordered_list_2_Template, 1, 6, "unordered-list", 5);
4803
- }
4804
- if (rf & 2) {
4805
- const isObject_r17 = ctx.valueIsObject;
4806
- const isArray_r18 = ctx.valueIsArray;
4807
- const _r19 = i0.ɵɵreference(1);
4808
- i0.ɵɵadvance(2);
4809
- i0.ɵɵproperty("ngIf", isObject_r17 || isArray_r18)("ngIfElse", _r19);
4810
- }
4811
- }
4812
- function UnorderedListComponent_ng_template_4_ng_template_0_Template(rf, ctx) {
4813
- if (rf & 1) {
4814
- i0.ɵɵelementContainer(0, 11);
4815
- }
4816
- if (rf & 2) {
4817
- const ctx_r37 = i0.ɵɵnextContext();
4818
- const item_r24 = ctx_r37.item;
4819
- const data_r25 = ctx_r37.data;
4820
- const keyPrefix_r26 = ctx_r37.keyPrefix;
4821
- const listStyle_r27 = ctx_r37.listStyle;
4822
- const path_r28 = ctx_r37.path;
4823
- const level_r29 = ctx_r37.level;
4824
- const templates_r30 = ctx_r37.templates;
4825
- const ctx_r32 = i0.ɵɵnextContext();
4826
- 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);
4827
- }
4828
- }
4829
- function UnorderedListComponent_ng_template_4_ng_template_2_Template(rf, ctx) {
4830
- if (rf & 1) {
4831
- i0.ɵɵelementContainer(0, 12);
4832
- }
4833
- if (rf & 2) {
4834
- const ctx_r38 = i0.ɵɵnextContext();
4835
- const item_r24 = ctx_r38.item;
4836
- const data_r25 = ctx_r38.data;
4837
- const keyPrefix_r26 = ctx_r38.keyPrefix;
4838
- const listStyle_r27 = ctx_r38.listStyle;
4839
- const path_r28 = ctx_r38.path;
4840
- const level_r29 = ctx_r38.level;
4841
- const templates_r30 = ctx_r38.templates;
4842
- const ctx_r34 = i0.ɵɵnextContext();
4843
- 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);
4844
- }
4845
- }
4846
- function UnorderedListComponent_ng_template_4_ng_container_4_th_1_Template(rf, ctx) {
4847
- if (rf & 1) {
4848
- i0.ɵɵelementStart(0, "th");
4849
- i0.ɵɵelementContainer(1, 13);
4850
- i0.ɵɵelementEnd();
4851
- }
4852
- if (rf & 2) {
4853
- i0.ɵɵnextContext(2);
4854
- const _r31 = i0.ɵɵreference(1);
4855
- i0.ɵɵadvance(1);
4856
- i0.ɵɵproperty("ngTemplateOutlet", _r31);
4857
- }
4858
- }
4859
- function UnorderedListComponent_ng_template_4_ng_container_4_Template(rf, ctx) {
4860
- if (rf & 1) {
4861
- i0.ɵɵelementContainerStart(0);
4862
- i0.ɵɵtemplate(1, UnorderedListComponent_ng_template_4_ng_container_4_th_1_Template, 2, 1, "th", 10);
4863
- i0.ɵɵelementContainerEnd();
4864
- }
4865
- if (rf & 2) {
4866
- const listStyle_r27 = i0.ɵɵnextContext().listStyle;
4867
- const _r31 = i0.ɵɵreference(1);
4868
- i0.ɵɵadvance(1);
4869
- i0.ɵɵproperty("ngIf", listStyle_r27 == "table")("ngIfElse", _r31);
4870
- }
4871
- }
4872
- function UnorderedListComponent_ng_template_4_td_5_Template(rf, ctx) {
4873
- if (rf & 1) {
4874
- i0.ɵɵelementStart(0, "td");
4875
- i0.ɵɵelementContainer(1, 13);
4876
- i0.ɵɵelementEnd();
4877
- }
4878
- if (rf & 2) {
4879
- i0.ɵɵnextContext();
4880
- const _r33 = i0.ɵɵreference(3);
4881
- i0.ɵɵadvance(1);
4882
- i0.ɵɵproperty("ngTemplateOutlet", _r33);
4883
- }
4884
- }
4885
- function UnorderedListComponent_ng_template_4_Template(rf, ctx) {
4886
- if (rf & 1) {
4887
- i0.ɵɵtemplate(0, UnorderedListComponent_ng_template_4_ng_template_0_Template, 1, 8, "ng-template", null, 7, i0.ɵɵtemplateRefExtractor);
4888
- i0.ɵɵtemplate(2, UnorderedListComponent_ng_template_4_ng_template_2_Template, 1, 8, "ng-template", null, 8, i0.ɵɵtemplateRefExtractor);
4889
- i0.ɵɵtemplate(4, UnorderedListComponent_ng_template_4_ng_container_4_Template, 2, 2, "ng-container", 9);
4890
- i0.ɵɵtemplate(5, UnorderedListComponent_ng_template_4_td_5_Template, 2, 1, "td", 10);
4891
- }
4892
- if (rf & 2) {
4893
- const listStyle_r27 = ctx.listStyle;
4894
- const _r33 = i0.ɵɵreference(3);
4895
- const ctx_r5 = i0.ɵɵnextContext();
4896
- i0.ɵɵadvance(4);
4897
- i0.ɵɵproperty("ngIf", !ctx_r5.isArray);
4898
- i0.ɵɵadvance(1);
4899
- i0.ɵɵproperty("ngIf", listStyle_r27 == "table")("ngIfElse", _r33);
4900
- }
4901
- }
4902
- function UnorderedListComponent_ng_template_6_Template(rf, ctx) {
4903
- if (rf & 1) {
4904
- i0.ɵɵtext(0);
4905
- }
4906
- if (rf & 2) {
4907
- const ctx_r7 = i0.ɵɵnextContext();
4908
- i0.ɵɵtextInterpolate1(" ", ctx_r7.data, "\n");
4909
- }
4910
- }
4911
- function UnorderedListComponent_ng_container_8_ul_1_li_1_Template(rf, ctx) {
4912
- if (rf & 1) {
4913
- i0.ɵɵelementStart(0, "li", 17);
4914
- i0.ɵɵelementContainer(1, 19);
4915
- i0.ɵɵelementEnd();
4916
- }
4917
- if (rf & 2) {
4918
- const item_r44 = ctx.$implicit;
4919
- const ctx_r43 = i0.ɵɵnextContext(3);
4920
- i0.ɵɵproperty("ngClass", item_r44.classList);
4921
- i0.ɵɵadvance(1);
4922
- 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);
4923
- }
4924
- }
4925
- function UnorderedListComponent_ng_container_8_ul_1_Template(rf, ctx) {
4926
- if (rf & 1) {
4927
- i0.ɵɵelementStart(0, "ul", 17);
4928
- i0.ɵɵtemplate(1, UnorderedListComponent_ng_container_8_ul_1_li_1_Template, 2, 9, "li", 18);
4929
- i0.ɵɵpipe(2, "entries");
4930
- i0.ɵɵelementEnd();
4931
- }
4932
- if (rf & 2) {
4933
- const ctx_r41 = i0.ɵɵnextContext(2);
4934
- i0.ɵɵproperty("ngClass", "level-" + ctx_r41.level);
4935
- i0.ɵɵadvance(1);
4936
- i0.ɵɵproperty("ngForOf", i0.ɵɵpipeBind1(2, 2, ctx_r41.data));
4937
- }
4938
- }
4939
- function UnorderedListComponent_ng_container_8_table_2_tr_1_Template(rf, ctx) {
4940
- if (rf & 1) {
4941
- i0.ɵɵelementStart(0, "tr", 17);
4942
- i0.ɵɵelementContainer(1, 19);
4943
- i0.ɵɵelementEnd();
4944
- }
4945
- if (rf & 2) {
4946
- const item_r46 = ctx.$implicit;
4947
- const ctx_r45 = i0.ɵɵnextContext(3);
4948
- i0.ɵɵproperty("ngClass", item_r46.classList);
4949
- i0.ɵɵadvance(1);
4950
- 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);
4951
- }
4952
- }
4953
- function UnorderedListComponent_ng_container_8_table_2_Template(rf, ctx) {
4954
- if (rf & 1) {
4955
- i0.ɵɵelementStart(0, "table", 17);
4956
- i0.ɵɵtemplate(1, UnorderedListComponent_ng_container_8_table_2_tr_1_Template, 2, 9, "tr", 18);
4957
- i0.ɵɵpipe(2, "entries");
4958
- i0.ɵɵelementEnd();
4959
- }
4960
- if (rf & 2) {
4961
- const ctx_r42 = i0.ɵɵnextContext(2);
4962
- i0.ɵɵproperty("ngClass", "level-" + ctx_r42.level);
4963
- i0.ɵɵadvance(1);
4964
- i0.ɵɵproperty("ngForOf", i0.ɵɵpipeBind1(2, 2, ctx_r42.data));
4965
- }
4966
- }
4967
- function UnorderedListComponent_ng_container_8_Template(rf, ctx) {
4968
- if (rf & 1) {
4969
- i0.ɵɵelementContainerStart(0, 14);
4970
- i0.ɵɵtemplate(1, UnorderedListComponent_ng_container_8_ul_1_Template, 3, 4, "ul", 15);
4971
- i0.ɵɵtemplate(2, UnorderedListComponent_ng_container_8_table_2_Template, 3, 4, "table", 16);
4972
- i0.ɵɵelementContainerEnd();
4973
- }
4974
- if (rf & 2) {
4975
- const ctx_r8 = i0.ɵɵnextContext();
4976
- i0.ɵɵproperty("ngSwitch", ctx_r8.listStyle);
4977
- i0.ɵɵadvance(1);
4978
- i0.ɵɵproperty("ngSwitchCase", "list");
4979
- }
4980
- }
4981
4627
  class UnorderedListComponent {
4982
4628
  constructor(cdr) {
4983
4629
  this.cdr = cdr;
@@ -5004,46 +4650,12 @@ class UnorderedListComponent {
5004
4650
  this.cdr.detectChanges();
5005
4651
  }
5006
4652
  }
5007
- UnorderedListComponent.ɵfac = function UnorderedListComponent_Factory(t) { return new (t || UnorderedListComponent)(i0.ɵɵdirectiveInject(i0.ChangeDetectorRef)); };
5008
- UnorderedListComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: UnorderedListComponent, selectors: [["unordered-list"]], contentQueries: function UnorderedListComponent_ContentQueries(rf, ctx, dirIndex) {
5009
- if (rf & 1) {
5010
- i0.ɵɵcontentQuery(dirIndex, UnorderedListTemplateDirective, 4);
5011
- }
5012
- if (rf & 2) {
5013
- let _t;
5014
- i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.templateDirectives = _t);
5015
- }
5016
- }, viewQuery: function UnorderedListComponent_Query(rf, ctx) {
5017
- if (rf & 1) {
5018
- i0.ɵɵviewQuery(_c0$2, 5);
5019
- i0.ɵɵviewQuery(_c1$2, 5);
5020
- i0.ɵɵviewQuery(_c2$1, 5);
5021
- }
5022
- if (rf & 2) {
5023
- let _t;
5024
- i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.defaultKeyTemplate = _t.first);
5025
- i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.defaultValueTemplate = _t.first);
5026
- i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.defaultItemTemplate = _t.first);
5027
- }
5028
- }, 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) {
5029
- if (rf & 1) {
5030
- i0.ɵɵtemplate(0, UnorderedListComponent_ng_template_0_Template, 2, 3, "ng-template", null, 0, i0.ɵɵtemplateRefExtractor);
5031
- i0.ɵɵtemplate(2, UnorderedListComponent_ng_template_2_Template, 3, 2, "ng-template", null, 1, i0.ɵɵtemplateRefExtractor);
5032
- i0.ɵɵtemplate(4, UnorderedListComponent_ng_template_4_Template, 6, 3, "ng-template", null, 2, i0.ɵɵtemplateRefExtractor);
5033
- i0.ɵɵtemplate(6, UnorderedListComponent_ng_template_6_Template, 1, 1, "ng-template", null, 3, i0.ɵɵtemplateRefExtractor);
5034
- i0.ɵɵtemplate(8, UnorderedListComponent_ng_container_8_Template, 3, 2, "ng-container", 4);
5035
- }
5036
- if (rf & 2) {
5037
- const _r6 = i0.ɵɵreference(7);
5038
- i0.ɵɵadvance(8);
5039
- i0.ɵɵproperty("ngIf", ctx.isObject || ctx.isArray)("ngIfElse", _r6);
5040
- }
5041
- }, 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 });
5042
- (function () {
5043
- (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(UnorderedListComponent, [{
4653
+ UnorderedListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: UnorderedListComponent, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
4654
+ 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 } });
4655
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: UnorderedListComponent, decorators: [{
5044
4656
  type: Component,
5045
4657
  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" }]
5046
- }], function () { return [{ type: i0.ChangeDetectorRef }]; }, { data: [{
4658
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }]; }, propDecorators: { data: [{
5047
4659
  type: Input
5048
4660
  }], keyPrefix: [{
5049
4661
  type: Input
@@ -5067,113 +4679,8 @@ UnorderedListComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: Unor
5067
4679
  }], defaultItemTemplate: [{
5068
4680
  type: ViewChild,
5069
4681
  args: ["defaultItemTemplate"]
5070
- }] });
5071
- })();
4682
+ }] } });
5072
4683
 
5073
- const _c0$1 = function (a0) { return { disabled: a0 }; };
5074
- function PaginationMenuComponent_div_0_li_2_Template(rf, ctx) {
5075
- if (rf & 1) {
5076
- const _r7 = i0.ɵɵgetCurrentView();
5077
- i0.ɵɵelementStart(0, "li", 5)(1, "a", 6);
5078
- 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); });
5079
- i0.ɵɵpipe(2, "safe");
5080
- i0.ɵɵelementEnd()();
5081
- }
5082
- if (rf & 2) {
5083
- const ctx_r1 = i0.ɵɵnextContext(2);
5084
- i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(4, _c0$1, !ctx_r1.hasPrev));
5085
- i0.ɵɵadvance(1);
5086
- i0.ɵɵproperty("innerHTML", i0.ɵɵpipeBind1(2, 2, ctx_r1.firstLabel), i0.ɵɵsanitizeHtml);
5087
- }
5088
- }
5089
- function PaginationMenuComponent_div_0_li_3_Template(rf, ctx) {
5090
- if (rf & 1) {
5091
- const _r9 = i0.ɵɵgetCurrentView();
5092
- i0.ɵɵelementStart(0, "li", 5)(1, "a", 6);
5093
- 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); });
5094
- i0.ɵɵpipe(2, "safe");
5095
- i0.ɵɵelementEnd()();
5096
- }
5097
- if (rf & 2) {
5098
- const ctx_r2 = i0.ɵɵnextContext(2);
5099
- i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(4, _c0$1, !ctx_r2.hasPrev));
5100
- i0.ɵɵadvance(1);
5101
- i0.ɵɵproperty("innerHTML", i0.ɵɵpipeBind1(2, 2, ctx_r2.prevLabel), i0.ɵɵsanitizeHtml);
5102
- }
5103
- }
5104
- const _c1$1 = function (a0) { return { active: a0 }; };
5105
- function PaginationMenuComponent_div_0_li_4_Template(rf, ctx) {
5106
- if (rf & 1) {
5107
- const _r12 = i0.ɵɵgetCurrentView();
5108
- i0.ɵɵelementStart(0, "li", 5)(1, "a", 7);
5109
- 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); });
5110
- i0.ɵɵtext(2);
5111
- i0.ɵɵelementEnd()();
5112
- }
5113
- if (rf & 2) {
5114
- const page_r10 = ctx.$implicit;
5115
- const ctx_r3 = i0.ɵɵnextContext(2);
5116
- i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(3, _c1$1, ctx_r3.pagination.page == page_r10));
5117
- i0.ɵɵadvance(1);
5118
- i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(5, _c1$1, ctx_r3.pagination.page == page_r10));
5119
- i0.ɵɵadvance(1);
5120
- i0.ɵɵtextInterpolate(page_r10);
5121
- }
5122
- }
5123
- function PaginationMenuComponent_div_0_li_5_Template(rf, ctx) {
5124
- if (rf & 1) {
5125
- const _r14 = i0.ɵɵgetCurrentView();
5126
- i0.ɵɵelementStart(0, "li", 5)(1, "a", 6);
5127
- 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); });
5128
- i0.ɵɵpipe(2, "safe");
5129
- i0.ɵɵelementEnd()();
5130
- }
5131
- if (rf & 2) {
5132
- const ctx_r4 = i0.ɵɵnextContext(2);
5133
- i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(4, _c0$1, !ctx_r4.hasNext));
5134
- i0.ɵɵadvance(1);
5135
- i0.ɵɵproperty("innerHTML", i0.ɵɵpipeBind1(2, 2, ctx_r4.nextLabel), i0.ɵɵsanitizeHtml);
5136
- }
5137
- }
5138
- function PaginationMenuComponent_div_0_li_6_Template(rf, ctx) {
5139
- if (rf & 1) {
5140
- const _r16 = i0.ɵɵgetCurrentView();
5141
- i0.ɵɵelementStart(0, "li", 5)(1, "a", 6);
5142
- 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); });
5143
- i0.ɵɵpipe(2, "safe");
5144
- i0.ɵɵelementEnd()();
5145
- }
5146
- if (rf & 2) {
5147
- const ctx_r5 = i0.ɵɵnextContext(2);
5148
- i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(4, _c0$1, !ctx_r5.hasNext));
5149
- i0.ɵɵadvance(1);
5150
- i0.ɵɵproperty("innerHTML", i0.ɵɵpipeBind1(2, 2, ctx_r5.lastLabel), i0.ɵɵsanitizeHtml);
5151
- }
5152
- }
5153
- function PaginationMenuComponent_div_0_Template(rf, ctx) {
5154
- if (rf & 1) {
5155
- i0.ɵɵelementStart(0, "div", 1)(1, "ul", 2);
5156
- i0.ɵɵtemplate(2, PaginationMenuComponent_div_0_li_2_Template, 3, 6, "li", 3);
5157
- i0.ɵɵtemplate(3, PaginationMenuComponent_div_0_li_3_Template, 3, 6, "li", 3);
5158
- i0.ɵɵtemplate(4, PaginationMenuComponent_div_0_li_4_Template, 3, 7, "li", 4);
5159
- i0.ɵɵtemplate(5, PaginationMenuComponent_div_0_li_5_Template, 3, 6, "li", 3);
5160
- i0.ɵɵtemplate(6, PaginationMenuComponent_div_0_li_6_Template, 3, 6, "li", 3);
5161
- i0.ɵɵelementEnd()();
5162
- }
5163
- if (rf & 2) {
5164
- const ctx_r0 = i0.ɵɵnextContext();
5165
- i0.ɵɵadvance(2);
5166
- i0.ɵɵproperty("ngIf", ctx_r0.boundaryLinks);
5167
- i0.ɵɵadvance(1);
5168
- i0.ɵɵproperty("ngIf", ctx_r0.directionLinks);
5169
- i0.ɵɵadvance(1);
5170
- i0.ɵɵproperty("ngForOf", ctx_r0.pages);
5171
- i0.ɵɵadvance(1);
5172
- i0.ɵɵproperty("ngIf", ctx_r0.directionLinks);
5173
- i0.ɵɵadvance(1);
5174
- i0.ɵɵproperty("ngIf", ctx_r0.boundaryLinks);
5175
- }
5176
- }
5177
4684
  class PaginationMenuComponent {
5178
4685
  constructor(state, pagination, icons) {
5179
4686
  this.state = state;
@@ -5247,25 +4754,17 @@ class PaginationMenuComponent {
5247
4754
  this.pages = pages;
5248
4755
  }
5249
4756
  }
5250
- PaginationMenuComponent.ɵfac = function PaginationMenuComponent_Factory(t) { return new (t || PaginationMenuComponent)(i0.ɵɵdirectiveInject(StateService), i0.ɵɵdirectiveInject(PaginationDirective), i0.ɵɵdirectiveInject(ICON_SERVICE)); };
5251
- 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) {
5252
- if (rf & 1) {
5253
- i0.ɵɵtemplate(0, PaginationMenuComponent_div_0_Template, 7, 5, "div", 0);
5254
- }
5255
- if (rf & 2) {
5256
- i0.ɵɵproperty("ngIf", ctx.pagination.total > ctx.pagination.itemsPerPage);
5257
- }
5258
- }, directives: [i1$3.NgIf, i1$3.NgClass, i1$3.NgForOf], pipes: [SafeHtmlPipe], encapsulation: 2 });
5259
- (function () {
5260
- (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(PaginationMenuComponent, [{
4757
+ 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 });
4758
+ 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 } });
4759
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: PaginationMenuComponent, decorators: [{
5261
4760
  type: Component,
5262
4761
  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" }]
5263
- }], function () {
4762
+ }], ctorParameters: function () {
5264
4763
  return [{ type: StateService }, { type: PaginationDirective }, { type: undefined, decorators: [{
5265
4764
  type: Inject,
5266
4765
  args: [ICON_SERVICE]
5267
4766
  }] }];
5268
- }, { maxSize: [{
4767
+ }, propDecorators: { maxSize: [{
5269
4768
  type: Input
5270
4769
  }], urlParam: [{
5271
4770
  type: Input
@@ -5273,236 +4772,8 @@ PaginationMenuComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: Pag
5273
4772
  type: Input
5274
4773
  }], boundaryLinks: [{
5275
4774
  type: Input
5276
- }] });
5277
- })();
4775
+ }] } });
5278
4776
 
5279
- const _c0 = ["rowTemplate"];
5280
- const _c1 = ["wrapperTemplate"];
5281
- const _c2 = ["filterTemplate"];
5282
- const _c3 = ["columnsTemplate"];
5283
- const _c4 = ["defaultRowTemplate"];
5284
- const _c5 = ["defaultWrapperTemplate"];
5285
- const _c6 = ["defaultFilterTemplate"];
5286
- const _c7 = ["pagination"];
5287
- function DynamicTableComponent_ng_template_2_div_0_label_1_Template(rf, ctx) {
5288
- if (rf & 1) {
5289
- i0.ɵɵelementStart(0, "label");
5290
- i0.ɵɵtext(1);
5291
- i0.ɵɵpipe(2, "translate");
5292
- i0.ɵɵelementEnd();
5293
- }
5294
- if (rf & 2) {
5295
- const ctx_r13 = i0.ɵɵnextContext(3);
5296
- i0.ɵɵattribute("for", ctx_r13.tableId);
5297
- i0.ɵɵadvance(1);
5298
- i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(2, 2, ctx_r13.label));
5299
- }
5300
- }
5301
- function DynamicTableComponent_ng_template_2_div_0_Template(rf, ctx) {
5302
- if (rf & 1) {
5303
- const _r16 = i0.ɵɵgetCurrentView();
5304
- i0.ɵɵelementStart(0, "div", 11);
5305
- i0.ɵɵtemplate(1, DynamicTableComponent_ng_template_2_div_0_label_1_Template, 3, 4, "label", 12);
5306
- i0.ɵɵelementStart(2, "input", 13);
5307
- 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); });
5308
- i0.ɵɵpipe(3, "translate");
5309
- i0.ɵɵelementEnd()();
5310
- }
5311
- if (rf & 2) {
5312
- const table_r11 = i0.ɵɵnextContext().$implicit;
5313
- const ctx_r12 = i0.ɵɵnextContext();
5314
- i0.ɵɵadvance(1);
5315
- i0.ɵɵproperty("ngIf", ctx_r12.label);
5316
- i0.ɵɵadvance(1);
5317
- i0.ɵɵproperty("placeholder", i0.ɵɵpipeBind1(3, 4, ctx_r12.placeholder))("ngModel", table_r11.filter);
5318
- i0.ɵɵattribute("id", ctx_r12.tableId);
5319
- }
5320
- }
5321
- function DynamicTableComponent_ng_template_2_Template(rf, ctx) {
5322
- if (rf & 1) {
5323
- i0.ɵɵtemplate(0, DynamicTableComponent_ng_template_2_div_0_Template, 4, 6, "div", 10);
5324
- }
5325
- if (rf & 2) {
5326
- const table_r11 = ctx.$implicit;
5327
- i0.ɵɵproperty("ngIf", table_r11.showFilter);
5328
- }
5329
- }
5330
- function DynamicTableComponent_ng_template_7_ng_template_0_Template(rf, ctx) {
5331
- if (rf & 1) {
5332
- i0.ɵɵelementStart(0, "span");
5333
- i0.ɵɵtext(1);
5334
- i0.ɵɵelementEnd();
5335
- }
5336
- if (rf & 2) {
5337
- const column_r26 = ctx.column;
5338
- const item_r27 = ctx.item;
5339
- i0.ɵɵadvance(1);
5340
- i0.ɵɵtextInterpolate(item_r27[column_r26] == undefined || item_r27[column_r26] == null ? "-" : item_r27[column_r26]);
5341
- }
5342
- }
5343
- function DynamicTableComponent_ng_template_7_ng_template_2_Template(rf, ctx) {
5344
- if (rf & 1) {
5345
- i0.ɵɵelementContainer(0, 3);
5346
- }
5347
- if (rf & 2) {
5348
- const ctx_r28 = i0.ɵɵnextContext();
5349
- const template_r20 = ctx_r28.template;
5350
- const context_r18 = ctx_r28.$implicit;
5351
- i0.ɵɵproperty("ngxTemplateOutlet", template_r20.ref)("context", context_r18);
5352
- }
5353
- }
5354
- function DynamicTableComponent_ng_template_7_td_4_Template(rf, ctx) {
5355
- if (rf & 1) {
5356
- i0.ɵɵelementStart(0, "td", 17);
5357
- i0.ɵɵelementContainer(1, 3);
5358
- i0.ɵɵelementEnd();
5359
- }
5360
- if (rf & 2) {
5361
- const ctx_r29 = i0.ɵɵnextContext();
5362
- const column_r19 = ctx_r29.column;
5363
- const template_r20 = ctx_r29.template;
5364
- const context_r18 = ctx_r29.$implicit;
5365
- const _r21 = i0.ɵɵreference(1);
5366
- i0.ɵɵproperty("ngClass", "column-" + column_r19);
5367
- i0.ɵɵadvance(1);
5368
- i0.ɵɵproperty("ngxTemplateOutlet", !template_r20 ? _r21 : template_r20.ref)("context", context_r18);
5369
- }
5370
- }
5371
- function DynamicTableComponent_ng_template_7_Template(rf, ctx) {
5372
- if (rf & 1) {
5373
- i0.ɵɵtemplate(0, DynamicTableComponent_ng_template_7_ng_template_0_Template, 2, 1, "ng-template", null, 14, i0.ɵɵtemplateRefExtractor);
5374
- i0.ɵɵtemplate(2, DynamicTableComponent_ng_template_7_ng_template_2_Template, 1, 2, "ng-template", null, 15, i0.ɵɵtemplateRefExtractor);
5375
- i0.ɵɵtemplate(4, DynamicTableComponent_ng_template_7_td_4_Template, 2, 3, "td", 16);
5376
- }
5377
- if (rf & 2) {
5378
- const template_r20 = ctx.template;
5379
- const _r23 = i0.ɵɵreference(3);
5380
- i0.ɵɵadvance(4);
5381
- i0.ɵɵproperty("ngIf", !template_r20 || !template_r20.pure)("ngIfElse", _r23);
5382
- }
5383
- }
5384
- const _c8 = function (a0, a1) { return { template: a0, column: a1 }; };
5385
- function DynamicTableComponent_ng_template_9_ng_container_0_Template(rf, ctx) {
5386
- if (rf & 1) {
5387
- i0.ɵɵelementContainer(0, 19);
5388
- }
5389
- if (rf & 2) {
5390
- const column_r32 = ctx.$implicit;
5391
- const context_r30 = i0.ɵɵnextContext().$implicit;
5392
- const ctx_r31 = i0.ɵɵnextContext();
5393
- const _r3 = i0.ɵɵreference(8);
5394
- i0.ɵɵproperty("ngxTemplateOutlet", _r3)("context", context_r30)("additionalContext", i0.ɵɵpureFunction2(3, _c8, ctx_r31.templates[column_r32], column_r32));
5395
- }
5396
- }
5397
- function DynamicTableComponent_ng_template_9_Template(rf, ctx) {
5398
- if (rf & 1) {
5399
- i0.ɵɵtemplate(0, DynamicTableComponent_ng_template_9_ng_container_0_Template, 1, 6, "ng-container", 18);
5400
- }
5401
- if (rf & 2) {
5402
- const ctx_r6 = i0.ɵɵnextContext();
5403
- i0.ɵɵproperty("ngForOf", ctx_r6.cols);
5404
- }
5405
- }
5406
- function DynamicTableComponent_ng_template_11_Template(rf, ctx) {
5407
- if (rf & 1) {
5408
- i0.ɵɵelementStart(0, "tr");
5409
- i0.ɵɵelementContainer(1, 3);
5410
- i0.ɵɵelementEnd();
5411
- }
5412
- if (rf & 2) {
5413
- const context_r34 = ctx.$implicit;
5414
- i0.ɵɵnextContext();
5415
- const _r5 = i0.ɵɵreference(10);
5416
- i0.ɵɵadvance(1);
5417
- i0.ɵɵproperty("ngxTemplateOutlet", _r5)("context", context_r34);
5418
- }
5419
- }
5420
- function DynamicTableComponent_ng_template_13_th_3_a_1_i_4_Template(rf, ctx) {
5421
- if (rf & 1) {
5422
- i0.ɵɵelement(0, "i", 26);
5423
- }
5424
- if (rf & 2) {
5425
- const column_r37 = i0.ɵɵnextContext(2).$implicit;
5426
- const ctx_r40 = i0.ɵɵnextContext(2);
5427
- i0.ɵɵproperty("icon", ctx_r40.orderDescending ? "sort-desc" : "sort-asc")("ngClass", ctx_r40.orderBy == column_r37 ? ctx_r40.orderDescending ? "sort-desc" : "sort-asc" : "");
5428
- }
5429
- }
5430
- function DynamicTableComponent_ng_template_13_th_3_a_1_Template(rf, ctx) {
5431
- if (rf & 1) {
5432
- const _r44 = i0.ɵɵgetCurrentView();
5433
- i0.ɵɵelementStart(0, "a", 24);
5434
- 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); });
5435
- i0.ɵɵelementStart(1, "span");
5436
- i0.ɵɵtext(2);
5437
- i0.ɵɵpipe(3, "translate");
5438
- i0.ɵɵelementEnd();
5439
- i0.ɵɵtemplate(4, DynamicTableComponent_ng_template_13_th_3_a_1_i_4_Template, 1, 2, "i", 25);
5440
- i0.ɵɵelementEnd();
5441
- }
5442
- if (rf & 2) {
5443
- const column_r37 = i0.ɵɵnextContext().$implicit;
5444
- const ctx_r38 = i0.ɵɵnextContext(2);
5445
- i0.ɵɵadvance(2);
5446
- i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(3, 2, "label." + column_r37));
5447
- i0.ɵɵadvance(2);
5448
- i0.ɵɵproperty("ngIf", ctx_r38.orderBy == column_r37);
5449
- }
5450
- }
5451
- function DynamicTableComponent_ng_template_13_th_3_span_2_Template(rf, ctx) {
5452
- if (rf & 1) {
5453
- i0.ɵɵelementStart(0, "span");
5454
- i0.ɵɵtext(1);
5455
- i0.ɵɵpipe(2, "translate");
5456
- i0.ɵɵelementEnd();
5457
- }
5458
- if (rf & 2) {
5459
- const column_r37 = i0.ɵɵnextContext().$implicit;
5460
- i0.ɵɵadvance(1);
5461
- i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(2, 1, "label." + column_r37));
5462
- }
5463
- }
5464
- function DynamicTableComponent_ng_template_13_th_3_Template(rf, ctx) {
5465
- if (rf & 1) {
5466
- i0.ɵɵelementStart(0, "th", 17);
5467
- i0.ɵɵtemplate(1, DynamicTableComponent_ng_template_13_th_3_a_1_Template, 5, 4, "a", 23);
5468
- i0.ɵɵtemplate(2, DynamicTableComponent_ng_template_13_th_3_span_2_Template, 3, 3, "span", 12);
5469
- i0.ɵɵelementEnd();
5470
- }
5471
- if (rf & 2) {
5472
- const column_r37 = ctx.$implicit;
5473
- const ctx_r35 = i0.ɵɵnextContext(2);
5474
- i0.ɵɵproperty("ngClass", "column-" + column_r37);
5475
- i0.ɵɵadvance(1);
5476
- i0.ɵɵproperty("ngIf", ctx_r35.orders[column_r37]);
5477
- i0.ɵɵadvance(1);
5478
- i0.ɵɵproperty("ngIf", !ctx_r35.orders[column_r37]);
5479
- }
5480
- }
5481
- function DynamicTableComponent_ng_template_13_ng_container_5_Template(rf, ctx) {
5482
- if (rf & 1) {
5483
- i0.ɵɵelementContainer(0, 19);
5484
- }
5485
- if (rf & 2) {
5486
- const context_r47 = ctx.$implicit;
5487
- const ctx_r36 = i0.ɵɵnextContext(2);
5488
- i0.ɵɵproperty("ngxTemplateOutlet", ctx_r36.rowTemplate)("context", context_r47)("additionalContext", ctx_r36);
5489
- }
5490
- }
5491
- function DynamicTableComponent_ng_template_13_Template(rf, ctx) {
5492
- if (rf & 1) {
5493
- i0.ɵɵelementStart(0, "table", 20)(1, "thead")(2, "tr");
5494
- i0.ɵɵtemplate(3, DynamicTableComponent_ng_template_13_th_3_Template, 3, 3, "th", 21);
5495
- i0.ɵɵelementEnd()();
5496
- i0.ɵɵelementStart(4, "tbody");
5497
- i0.ɵɵtemplate(5, DynamicTableComponent_ng_template_13_ng_container_5_Template, 1, 3, "ng-container", 22);
5498
- i0.ɵɵelementEnd()();
5499
- }
5500
- if (rf & 2) {
5501
- const ctx_r10 = i0.ɵɵnextContext();
5502
- i0.ɵɵadvance(3);
5503
- i0.ɵɵproperty("ngForOf", ctx_r10.cols);
5504
- }
5505
- }
5506
4777
  class DynamicTableComponent {
5507
4778
  constructor() {
5508
4779
  this.loadData = (page, itemsPerPage) => {
@@ -5604,72 +4875,12 @@ class DynamicTableComponent {
5604
4875
  });
5605
4876
  }
5606
4877
  }
5607
- DynamicTableComponent.ɵfac = function DynamicTableComponent_Factory(t) { return new (t || DynamicTableComponent)(); };
5608
- DynamicTableComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: DynamicTableComponent, selectors: [["dynamic-table"]], contentQueries: function DynamicTableComponent_ContentQueries(rf, ctx, dirIndex) {
5609
- if (rf & 1) {
5610
- i0.ɵɵcontentQuery(dirIndex, _c0, 7);
5611
- i0.ɵɵcontentQuery(dirIndex, _c1, 7);
5612
- i0.ɵɵcontentQuery(dirIndex, _c2, 7);
5613
- i0.ɵɵcontentQuery(dirIndex, DynamicTableTemplateDirective, 4);
5614
- }
5615
- if (rf & 2) {
5616
- let _t;
5617
- i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.rowTemplate = _t.first);
5618
- i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.wrapperTemplate = _t.first);
5619
- i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.filterTemplate = _t.first);
5620
- i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.templateDirectives = _t);
5621
- }
5622
- }, viewQuery: function DynamicTableComponent_Query(rf, ctx) {
5623
- if (rf & 1) {
5624
- i0.ɵɵviewQuery(_c3, 7);
5625
- i0.ɵɵviewQuery(_c4, 7);
5626
- i0.ɵɵviewQuery(_c5, 7);
5627
- i0.ɵɵviewQuery(_c6, 7);
5628
- i0.ɵɵviewQuery(_c7, 5);
5629
- }
5630
- if (rf & 2) {
5631
- let _t;
5632
- i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.columnsTemplate = _t.first);
5633
- i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.defaultRowTemplate = _t.first);
5634
- i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.defaultWrapperTemplate = _t.first);
5635
- i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.defaultFilterTemplate = _t.first);
5636
- i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.pagination = _t.first);
5637
- }
5638
- }, 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) {
5639
- if (rf & 1) {
5640
- i0.ɵɵelementStart(0, "div", 0, 1);
5641
- i0.ɵɵtemplate(2, DynamicTableComponent_ng_template_2_Template, 1, 1, "ng-template", null, 2, i0.ɵɵtemplateRefExtractor);
5642
- i0.ɵɵelementContainer(4, 3);
5643
- i0.ɵɵelement(5, "pagination-menu", 4);
5644
- i0.ɵɵelementStart(6, "div", 5);
5645
- i0.ɵɵtemplate(7, DynamicTableComponent_ng_template_7_Template, 5, 2, "ng-template", null, 6, i0.ɵɵtemplateRefExtractor);
5646
- i0.ɵɵtemplate(9, DynamicTableComponent_ng_template_9_Template, 1, 1, "ng-template", null, 7, i0.ɵɵtemplateRefExtractor);
5647
- i0.ɵɵtemplate(11, DynamicTableComponent_ng_template_11_Template, 2, 2, "ng-template", null, 8, i0.ɵɵtemplateRefExtractor);
5648
- i0.ɵɵtemplate(13, DynamicTableComponent_ng_template_13_Template, 6, 1, "ng-template", null, 9, i0.ɵɵtemplateRefExtractor);
5649
- i0.ɵɵelementContainer(15, 3);
5650
- i0.ɵɵelementEnd();
5651
- i0.ɵɵelement(16, "pagination-menu", 4);
5652
- i0.ɵɵelementEnd();
5653
- }
5654
- if (rf & 2) {
5655
- const _r1 = i0.ɵɵreference(3);
5656
- const _r9 = i0.ɵɵreference(14);
5657
- i0.ɵɵproperty("pagination", ctx.loadData)("itemsPerPage", ctx.itemsPerPage)("updateTime", ctx.updateTime);
5658
- i0.ɵɵadvance(4);
5659
- i0.ɵɵproperty("ngxTemplateOutlet", ctx.filterTemplate || _r1)("context", ctx);
5660
- i0.ɵɵadvance(1);
5661
- i0.ɵɵproperty("maxSize", ctx.maxPages)("directionLinks", ctx.directionLinks)("boundaryLinks", ctx.boundaryLinks);
5662
- i0.ɵɵadvance(10);
5663
- i0.ɵɵproperty("ngxTemplateOutlet", ctx.wrapperTemplate || _r9)("context", ctx);
5664
- i0.ɵɵadvance(1);
5665
- i0.ɵɵproperty("maxSize", ctx.maxPages)("directionLinks", ctx.directionLinks)("boundaryLinks", ctx.boundaryLinks);
5666
- }
5667
- }, 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 });
5668
- (function () {
5669
- (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(DynamicTableComponent, [{
4878
+ DynamicTableComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: DynamicTableComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
4879
+ 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 } });
4880
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: DynamicTableComponent, decorators: [{
5670
4881
  type: Component,
5671
4882
  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" }]
5672
- }], function () { return []; }, { label: [{
4883
+ }], ctorParameters: function () { return []; }, propDecorators: { label: [{
5673
4884
  type: Input
5674
4885
  }], placeholder: [{
5675
4886
  type: Input
@@ -5724,8 +4935,7 @@ DynamicTableComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: Dynam
5724
4935
  }], templateDirectives: [{
5725
4936
  type: ContentChildren,
5726
4937
  args: [DynamicTableTemplateDirective]
5727
- }] });
5728
- })();
4938
+ }] } });
5729
4939
 
5730
4940
  // --- Pipes ---
5731
4941
  const pipes = [
@@ -5821,8 +5031,11 @@ const providers = [
5821
5031
  ];
5822
5032
  function loadConfig(config) {
5823
5033
  return config.load;
5824
- }
5034
+ }
5035
+
5825
5036
  class NgxUtilsModule {
5037
+ constructor() {
5038
+ }
5826
5039
  static forRoot(config) {
5827
5040
  return {
5828
5041
  ngModule: NgxUtilsModule,
@@ -5874,14 +5087,14 @@ class NgxUtilsModule {
5874
5087
  };
5875
5088
  }
5876
5089
  }
5877
- NgxUtilsModule.ɵfac = function NgxUtilsModule_Factory(t) { return new (t || NgxUtilsModule)(); };
5878
- NgxUtilsModule.ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: NgxUtilsModule });
5879
- NgxUtilsModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ providers: pipes, imports: [[
5090
+ NgxUtilsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: NgxUtilsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
5091
+ 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, AsyncMethodDirective, BackgroundDirective, DynamicTableTemplateDirective, GlobalTemplateDirective, IconDirective, NgxTemplateOutletDirective, PaginationDirective, PaginationItemDirective, ResourceIfDirective, StickyDirective, StickyClassDirective, UnorderedListItemDirective, UnorderedListTemplateDirective, DynamicTableComponent, PaginationMenuComponent, UnorderedListComponent], imports: [CommonModule,
5092
+ 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, AsyncMethodDirective, BackgroundDirective, DynamicTableTemplateDirective, GlobalTemplateDirective, IconDirective, NgxTemplateOutletDirective, PaginationDirective, PaginationItemDirective, ResourceIfDirective, StickyDirective, StickyClassDirective, UnorderedListItemDirective, UnorderedListTemplateDirective, DynamicTableComponent, PaginationMenuComponent, UnorderedListComponent, FormsModule] });
5093
+ NgxUtilsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: NgxUtilsModule, providers: pipes, imports: [[
5880
5094
  CommonModule,
5881
5095
  FormsModule
5882
5096
  ], FormsModule] });
5883
- (function () {
5884
- (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(NgxUtilsModule, [{
5097
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: NgxUtilsModule, decorators: [{
5885
5098
  type: NgModule,
5886
5099
  args: [{
5887
5100
  declarations: [
@@ -5901,86 +5114,7 @@ NgxUtilsModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ providers: pipes, i
5901
5114
  ],
5902
5115
  providers: pipes
5903
5116
  }]
5904
- }], null, null);
5905
- })();
5906
- (function () {
5907
- (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(NgxUtilsModule, { declarations: [ChunkPipe,
5908
- EntriesPipe,
5909
- ExtraItemPropertiesPipe,
5910
- FilterPipe,
5911
- FindPipe,
5912
- FormatNumberPipe,
5913
- GetOffsetPipe,
5914
- GetTypePipe,
5915
- GlobalTemplatePipe,
5916
- GroupByPipe,
5917
- IsTypePipe,
5918
- JoinPipe,
5919
- KeysPipe,
5920
- MapPipe,
5921
- MaxPipe,
5922
- MinPipe,
5923
- ReducePipe,
5924
- RemapPipe,
5925
- ReplacePipe,
5926
- ReversePipe,
5927
- RoundPipe,
5928
- SafeHtmlPipe,
5929
- TranslatePipe,
5930
- ValuesPipe, AsyncMethodDirective,
5931
- BackgroundDirective,
5932
- DynamicTableTemplateDirective,
5933
- GlobalTemplateDirective,
5934
- IconDirective,
5935
- NgxTemplateOutletDirective,
5936
- PaginationDirective,
5937
- PaginationItemDirective,
5938
- ResourceIfDirective,
5939
- StickyDirective,
5940
- StickyClassDirective,
5941
- UnorderedListItemDirective,
5942
- UnorderedListTemplateDirective, DynamicTableComponent,
5943
- PaginationMenuComponent,
5944
- UnorderedListComponent], imports: [CommonModule,
5945
- FormsModule], exports: [ChunkPipe,
5946
- EntriesPipe,
5947
- ExtraItemPropertiesPipe,
5948
- FilterPipe,
5949
- FindPipe,
5950
- FormatNumberPipe,
5951
- GetOffsetPipe,
5952
- GetTypePipe,
5953
- GlobalTemplatePipe,
5954
- GroupByPipe,
5955
- IsTypePipe,
5956
- JoinPipe,
5957
- KeysPipe,
5958
- MapPipe,
5959
- MaxPipe,
5960
- MinPipe,
5961
- ReducePipe,
5962
- RemapPipe,
5963
- ReplacePipe,
5964
- ReversePipe,
5965
- RoundPipe,
5966
- SafeHtmlPipe,
5967
- TranslatePipe,
5968
- ValuesPipe, AsyncMethodDirective,
5969
- BackgroundDirective,
5970
- DynamicTableTemplateDirective,
5971
- GlobalTemplateDirective,
5972
- IconDirective,
5973
- NgxTemplateOutletDirective,
5974
- PaginationDirective,
5975
- PaginationItemDirective,
5976
- ResourceIfDirective,
5977
- StickyDirective,
5978
- StickyClassDirective,
5979
- UnorderedListItemDirective,
5980
- UnorderedListTemplateDirective, DynamicTableComponent,
5981
- PaginationMenuComponent,
5982
- UnorderedListComponent, FormsModule] });
5983
- })();
5117
+ }], ctorParameters: function () { return []; } });
5984
5118
 
5985
5119
  /**
5986
5120
  * Generated bundle index. Do not edit.