@stemy/ngx-utils 13.0.2 → 13.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (169) hide show
  1. package/esm2020/ngx-utils/common-types.mjs +1 -1
  2. package/esm2020/ngx-utils/components/dynamic-table/dynamic-table.component.mjs +67 -296
  3. package/esm2020/ngx-utils/components/pagination-menu/pagination-menu.component.mjs +18 -108
  4. package/esm2020/ngx-utils/components/unordered-list/unordered-list.component.mjs +31 -227
  5. package/esm2020/ngx-utils/directives/async-method.base.mjs +34 -24
  6. package/esm2020/ngx-utils/directives/async-method.directive.mjs +14 -21
  7. package/esm2020/ngx-utils/directives/background.directive.mjs +13 -13
  8. package/esm2020/ngx-utils/directives/dynamic-table-template.directive.mjs +13 -13
  9. package/esm2020/ngx-utils/directives/global-template.directive.mjs +15 -15
  10. package/esm2020/ngx-utils/directives/icon.directive.mjs +26 -30
  11. package/esm2020/ngx-utils/directives/ngx-template-outlet.directive.mjs +15 -15
  12. package/esm2020/ngx-utils/directives/pagination-item.directive.mjs +9 -9
  13. package/esm2020/ngx-utils/directives/pagination.directive.mjs +25 -25
  14. package/esm2020/ngx-utils/directives/resource-if.directive.mjs +12 -12
  15. package/esm2020/ngx-utils/directives/sticky-class.directive.mjs +11 -11
  16. package/esm2020/ngx-utils/directives/sticky.directive.mjs +21 -25
  17. package/esm2020/ngx-utils/directives/unordered-list-item.directive.mjs +28 -28
  18. package/esm2020/ngx-utils/directives/unordered-list-template.directive.mjs +13 -13
  19. package/esm2020/ngx-utils/ngx-utils.imports.mjs +165 -0
  20. package/esm2020/ngx-utils/ngx-utils.module.mjs +98 -257
  21. package/esm2020/ngx-utils/pipes/chunk.pipe.mjs +9 -9
  22. package/esm2020/ngx-utils/pipes/entries.pipe.mjs +9 -9
  23. package/esm2020/ngx-utils/pipes/extra-item-properties.pipe.mjs +9 -9
  24. package/esm2020/ngx-utils/pipes/filter.pipe.mjs +9 -9
  25. package/esm2020/ngx-utils/pipes/find.pipe.mjs +9 -9
  26. package/esm2020/ngx-utils/pipes/format-number.pipe.mjs +9 -9
  27. package/esm2020/ngx-utils/pipes/get-offset.pipe.mjs +9 -9
  28. package/esm2020/ngx-utils/pipes/get-type.pipe.mjs +9 -9
  29. package/esm2020/ngx-utils/pipes/global-template.pipe.mjs +13 -13
  30. package/esm2020/ngx-utils/pipes/group-by.pipe.mjs +9 -9
  31. package/esm2020/ngx-utils/pipes/is-type.pipe.mjs +9 -9
  32. package/esm2020/ngx-utils/pipes/join.pipe.mjs +9 -9
  33. package/esm2020/ngx-utils/pipes/keys.pipe.mjs +9 -9
  34. package/esm2020/ngx-utils/pipes/map.pipe.mjs +9 -9
  35. package/esm2020/ngx-utils/pipes/max.pipe.mjs +9 -9
  36. package/esm2020/ngx-utils/pipes/min.pipe.mjs +9 -9
  37. package/esm2020/ngx-utils/pipes/reduce.pipe.mjs +9 -9
  38. package/esm2020/ngx-utils/pipes/remap.pipe.mjs +9 -9
  39. package/esm2020/ngx-utils/pipes/replace.pipe.mjs +9 -9
  40. package/esm2020/ngx-utils/pipes/reverse.pipe.mjs +9 -9
  41. package/esm2020/ngx-utils/pipes/round.pipe.mjs +9 -9
  42. package/esm2020/ngx-utils/pipes/safe-html.pipe.mjs +9 -9
  43. package/esm2020/ngx-utils/pipes/translate.pipe.mjs +16 -16
  44. package/esm2020/ngx-utils/pipes/values.pipe.mjs +9 -9
  45. package/esm2020/ngx-utils/plugins/resize-event.plugin.mjs +9 -9
  46. package/esm2020/ngx-utils/plugins/scroll-event.plugin.mjs +9 -9
  47. package/esm2020/ngx-utils/services/acl.service.mjs +9 -9
  48. package/esm2020/ngx-utils/services/api.service.mjs +6 -6
  49. package/esm2020/ngx-utils/services/base-http.client.mjs +6 -6
  50. package/esm2020/ngx-utils/services/base-http.service.mjs +26 -26
  51. package/esm2020/ngx-utils/services/config.service.mjs +27 -31
  52. package/esm2020/ngx-utils/services/error-handler.service.mjs +6 -6
  53. package/esm2020/ngx-utils/services/events.service.mjs +6 -6
  54. package/esm2020/ngx-utils/services/formatter.service.mjs +9 -9
  55. package/esm2020/ngx-utils/services/global-template.service.mjs +6 -6
  56. package/esm2020/ngx-utils/services/icon.service.mjs +6 -6
  57. package/esm2020/ngx-utils/services/language.service.mjs +6 -6
  58. package/esm2020/ngx-utils/services/open-api.service.mjs +9 -9
  59. package/esm2020/ngx-utils/services/promise.service.mjs +9 -9
  60. package/esm2020/ngx-utils/services/state.service.mjs +8 -8
  61. package/esm2020/ngx-utils/services/static-language.service.mjs +21 -21
  62. package/esm2020/ngx-utils/services/storage.service.mjs +6 -6
  63. package/esm2020/ngx-utils/services/toaster.service.mjs +9 -9
  64. package/esm2020/ngx-utils/services/translated-url.serializer.mjs +9 -9
  65. package/esm2020/ngx-utils/services/universal.service.mjs +9 -9
  66. package/esm2020/ngx-utils/utils/auth.guard.mjs +15 -15
  67. package/fesm2015/stemy-ngx-utils.mjs +344 -1186
  68. package/fesm2015/stemy-ngx-utils.mjs.map +1 -1
  69. package/fesm2020/stemy-ngx-utils.mjs +802 -1373
  70. package/fesm2020/stemy-ngx-utils.mjs.map +1 -1
  71. package/ngx-utils/common-types.d.ts +1 -0
  72. package/ngx-utils/directives/async-method.base.d.ts +4 -4
  73. package/ngx-utils/directives/async-method.directive.d.ts +1 -2
  74. package/ngx-utils/ngx-utils.module.d.ts +51 -73
  75. package/ngx-utils/services/config.service.d.ts +3 -2
  76. package/package.json +1 -4
  77. package/bundles/stemy-ngx-utils.umd.js +0 -6121
  78. package/bundles/stemy-ngx-utils.umd.js.map +0 -1
  79. package/bundles/stemy-ngx-utils.umd.min.js +0 -16
  80. package/bundles/stemy-ngx-utils.umd.min.js.map +0 -1
  81. package/esm2015/ngx-utils/common-types.js +0 -116
  82. package/esm2015/ngx-utils/components/dynamic-table/dynamic-table.component.js +0 -139
  83. package/esm2015/ngx-utils/components/pagination-menu/pagination-menu.component.js +0 -96
  84. package/esm2015/ngx-utils/components/unordered-list/unordered-list.component.js +0 -51
  85. package/esm2015/ngx-utils/directives/async-method.base.js +0 -54
  86. package/esm2015/ngx-utils/directives/async-method.directive.js +0 -24
  87. package/esm2015/ngx-utils/directives/background.directive.js +0 -51
  88. package/esm2015/ngx-utils/directives/dynamic-table-template.directive.js +0 -19
  89. package/esm2015/ngx-utils/directives/global-template.directive.js +0 -27
  90. package/esm2015/ngx-utils/directives/icon.directive.js +0 -59
  91. package/esm2015/ngx-utils/directives/ngx-template-outlet.directive.js +0 -88
  92. package/esm2015/ngx-utils/directives/pagination-item.directive.js +0 -33
  93. package/esm2015/ngx-utils/directives/pagination.directive.js +0 -76
  94. package/esm2015/ngx-utils/directives/resource-if.directive.js +0 -51
  95. package/esm2015/ngx-utils/directives/sticky-class.directive.js +0 -35
  96. package/esm2015/ngx-utils/directives/sticky.directive.js +0 -48
  97. package/esm2015/ngx-utils/directives/unordered-list-item.directive.js +0 -70
  98. package/esm2015/ngx-utils/directives/unordered-list-template.directive.js +0 -26
  99. package/esm2015/ngx-utils/ngx-utils.module.js +0 -238
  100. package/esm2015/ngx-utils/pipes/chunk.pipe.js +0 -21
  101. package/esm2015/ngx-utils/pipes/entries.pipe.js +0 -24
  102. package/esm2015/ngx-utils/pipes/extra-item-properties.pipe.js +0 -27
  103. package/esm2015/ngx-utils/pipes/filter.pipe.js +0 -38
  104. package/esm2015/ngx-utils/pipes/find.pipe.js +0 -25
  105. package/esm2015/ngx-utils/pipes/format-number.pipe.js +0 -19
  106. package/esm2015/ngx-utils/pipes/get-offset.pipe.js +0 -13
  107. package/esm2015/ngx-utils/pipes/get-type.pipe.js +0 -12
  108. package/esm2015/ngx-utils/pipes/global-template.pipe.js +0 -37
  109. package/esm2015/ngx-utils/pipes/group-by.pipe.js +0 -23
  110. package/esm2015/ngx-utils/pipes/is-type.pipe.js +0 -12
  111. package/esm2015/ngx-utils/pipes/join.pipe.js +0 -15
  112. package/esm2015/ngx-utils/pipes/keys.pipe.js +0 -18
  113. package/esm2015/ngx-utils/pipes/map.pipe.js +0 -25
  114. package/esm2015/ngx-utils/pipes/max.pipe.js +0 -22
  115. package/esm2015/ngx-utils/pipes/min.pipe.js +0 -22
  116. package/esm2015/ngx-utils/pipes/reduce.pipe.js +0 -26
  117. package/esm2015/ngx-utils/pipes/remap.pipe.js +0 -28
  118. package/esm2015/ngx-utils/pipes/replace.pipe.js +0 -12
  119. package/esm2015/ngx-utils/pipes/reverse.pipe.js +0 -20
  120. package/esm2015/ngx-utils/pipes/round.pipe.js +0 -19
  121. package/esm2015/ngx-utils/pipes/safe-html.pipe.js +0 -32
  122. package/esm2015/ngx-utils/pipes/translate.pipe.js +0 -81
  123. package/esm2015/ngx-utils/pipes/values.pipe.js +0 -18
  124. package/esm2015/ngx-utils/plugins/resize-event.plugin.js +0 -56
  125. package/esm2015/ngx-utils/plugins/scroll-event.plugin.js +0 -36
  126. package/esm2015/ngx-utils/services/acl.service.js +0 -79
  127. package/esm2015/ngx-utils/services/api.service.js +0 -35
  128. package/esm2015/ngx-utils/services/auth.service.js +0 -14
  129. package/esm2015/ngx-utils/services/base-http.client.js +0 -46
  130. package/esm2015/ngx-utils/services/base-http.service.js +0 -285
  131. package/esm2015/ngx-utils/services/config.service.js +0 -122
  132. package/esm2015/ngx-utils/services/error-handler.service.js +0 -49
  133. package/esm2015/ngx-utils/services/events.service.js +0 -24
  134. package/esm2015/ngx-utils/services/formatter.service.js +0 -44
  135. package/esm2015/ngx-utils/services/global-template.service.js +0 -35
  136. package/esm2015/ngx-utils/services/icon.service.js +0 -24
  137. package/esm2015/ngx-utils/services/language.service.js +0 -117
  138. package/esm2015/ngx-utils/services/open-api.service.js +0 -41
  139. package/esm2015/ngx-utils/services/promise.service.js +0 -52
  140. package/esm2015/ngx-utils/services/state.service.js +0 -181
  141. package/esm2015/ngx-utils/services/static-language.service.js +0 -152
  142. package/esm2015/ngx-utils/services/storage.service.js +0 -48
  143. package/esm2015/ngx-utils/services/toaster.service.js +0 -29
  144. package/esm2015/ngx-utils/services/translated-url.serializer.js +0 -70
  145. package/esm2015/ngx-utils/services/universal.service.js +0 -75
  146. package/esm2015/ngx-utils/utils/ajax-request-handler.js +0 -40
  147. package/esm2015/ngx-utils/utils/array.utils.js +0 -100
  148. package/esm2015/ngx-utils/utils/auth.guard.js +0 -156
  149. package/esm2015/ngx-utils/utils/canvas.utils.js +0 -388
  150. package/esm2015/ngx-utils/utils/date.utils.js +0 -28
  151. package/esm2015/ngx-utils/utils/file.utils.js +0 -90
  152. package/esm2015/ngx-utils/utils/generic-value.js +0 -20
  153. package/esm2015/ngx-utils/utils/geometry.js +0 -132
  154. package/esm2015/ngx-utils/utils/initializer.js +0 -20
  155. package/esm2015/ngx-utils/utils/loader.utils.js +0 -55
  156. package/esm2015/ngx-utils/utils/math.utils.js +0 -15
  157. package/esm2015/ngx-utils/utils/object.utils.js +0 -263
  158. package/esm2015/ngx-utils/utils/observable.utils.js +0 -63
  159. package/esm2015/ngx-utils/utils/reflect.utils.js +0 -33
  160. package/esm2015/ngx-utils/utils/set.utils.js +0 -20
  161. package/esm2015/ngx-utils/utils/string.utils.js +0 -28
  162. package/esm2015/ngx-utils/utils/timer.utils.js +0 -52
  163. package/esm2015/ngx-utils/utils/unique.utils.js +0 -24
  164. package/esm2015/ngx-utils/utils/vector.js +0 -77
  165. package/esm2015/public_api.js +0 -84
  166. package/esm2015/stemy-ngx-utils.js +0 -7
  167. package/fesm2015/stemy-ngx-utils.js +0 -4860
  168. package/fesm2015/stemy-ngx-utils.js.map +0 -1
  169. package/stemy-ngx-utils.metadata.json +0 -1
@@ -1,5 +1,5 @@
1
1
  import * as i0 from '@angular/core';
2
- import { InjectionToken, TemplateRef, PLATFORM_ID, Injectable, Inject, Optional, Injector, EventEmitter, isDevMode, ErrorHandler, NgZone, Pipe, Input, Output, HostBinding, HostListener, Directive, Component, ContentChildren, ViewChild, ContentChild, APP_INITIALIZER, NgModule } from '@angular/core';
2
+ import { InjectionToken, TemplateRef, PLATFORM_ID, Injectable, Inject, Optional, Injector, EventEmitter, isDevMode, ErrorHandler, NgZone, Pipe, Directive, Input, Output, HostBinding, HostListener, Component, ContentChildren, ViewChild, ContentChild, APP_INITIALIZER, NgModule } from '@angular/core';
3
3
  import 'reflect-metadata';
4
4
  import { utc } from 'moment';
5
5
  import { first, skipWhile, mergeMap, timeout, map } from 'rxjs/operators';
@@ -9,7 +9,7 @@ import { __awaiter } from 'tslib';
9
9
  import * as i2 from '@angular/router';
10
10
  import { ActivatedRouteSnapshot, NavigationEnd, DefaultUrlSerializer, UrlTree, UrlSegmentGroup, UrlSegment, UrlSerializer } from '@angular/router';
11
11
  import * as i1$3 from '@angular/common';
12
- import { isPlatformBrowser, isPlatformServer, DOCUMENT, CommonModule } from '@angular/common';
12
+ import { isPlatformBrowser, isPlatformServer, APP_BASE_HREF, DOCUMENT, CommonModule } from '@angular/common';
13
13
  import * as i1 from 'ngx-device-detector';
14
14
  import { DeviceDetectorService } from 'ngx-device-detector';
15
15
  import * as i1$1 from '@angular/common/http';
@@ -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() {
@@ -2511,26 +2495,18 @@ class StaticAuthService {
2511
2495
  }
2512
2496
 
2513
2497
  class ConfigService {
2514
- constructor(http, universal, rootElement, baseConfig = null, scriptParams = null) {
2498
+ constructor(http, universal, rootElement, baseHref, baseConfig = null, scriptParams = null) {
2515
2499
  this.http = http;
2516
2500
  this.universal = universal;
2517
2501
  this.rootElement = rootElement;
2502
+ this.baseHref = baseHref;
2518
2503
  for (const key in []) {
2519
2504
  Object.defineProperty(Array.prototype, key, {
2520
2505
  enumerable: false
2521
2506
  });
2522
2507
  }
2523
- let baseUrl = "";
2524
- if (this.universal.isBrowser) {
2525
- const currentScript = document.currentScript;
2526
- if (!!currentScript) {
2527
- const scriptSrc = currentScript.src;
2528
- const srcParts = scriptSrc.split(".js");
2529
- baseUrl = scriptSrc.substr(0, srcParts[0].lastIndexOf("/") + 1);
2530
- }
2531
- }
2532
2508
  this.baseConfig = baseConfig || {};
2533
- this.loadedConfig = Object.assign(!baseUrl ? {} : { baseUrl, baseDomain: this.parseDomain(baseUrl) }, this.baseConfig);
2509
+ this.loadedConfig = Object.assign(!this.baseHref ? {} : { baseUrl: this.baseHref, baseDomain: this.parseDomain(this.baseHref) }, this.baseConfig);
2534
2510
  this.scriptParameters = scriptParams || {};
2535
2511
  this.loaderFunc = () => {
2536
2512
  this.loader = this.loader || new Promise((resolve, reject) => {
@@ -2615,15 +2591,17 @@ class ConfigService {
2615
2591
  return decodeURIComponent(results[2].replace(/\+/g, " "));
2616
2592
  }
2617
2593
  }
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, [{
2594
+ ConfigService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ConfigService, deps: [{ token: i1$1.HttpClient }, { token: UniversalService }, { token: ROOT_ELEMENT }, { token: APP_BASE_HREF }, { token: BASE_CONFIG, optional: true }, { token: SCRIPT_PARAMS, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
2595
+ ConfigService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ConfigService });
2596
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ConfigService, decorators: [{
2622
2597
  type: Injectable
2623
- }], function () {
2598
+ }], ctorParameters: function () {
2624
2599
  return [{ type: i1$1.HttpClient }, { type: UniversalService }, { type: undefined, decorators: [{
2625
2600
  type: Inject,
2626
2601
  args: [ROOT_ELEMENT]
2602
+ }] }, { type: undefined, decorators: [{
2603
+ type: Inject,
2604
+ args: [APP_BASE_HREF]
2627
2605
  }] }, { type: IConfiguration, decorators: [{
2628
2606
  type: Optional
2629
2607
  }, {
@@ -2635,8 +2613,7 @@ ConfigService.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: ConfigServ
2635
2613
  type: Inject,
2636
2614
  args: [SCRIPT_PARAMS]
2637
2615
  }] }];
2638
- }, null);
2639
- })();
2616
+ } });
2640
2617
 
2641
2618
  class ErrorHandlerService extends ErrorHandler {
2642
2619
  constructor(injector) {
@@ -2677,13 +2654,11 @@ class ErrorHandlerService extends ErrorHandler {
2677
2654
  console.error(`[${date}]: ${error.message}\n${error.stack}`);
2678
2655
  }
2679
2656
  }
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, [{
2657
+ ErrorHandlerService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ErrorHandlerService, deps: [{ token: i0.Injector }], target: i0.ɵɵFactoryTarget.Injectable });
2658
+ ErrorHandlerService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ErrorHandlerService });
2659
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ErrorHandlerService, decorators: [{
2684
2660
  type: Injectable
2685
- }], function () { return [{ type: i0.Injector }]; }, null);
2686
- })();
2661
+ }], ctorParameters: function () { return [{ type: i0.Injector }]; } });
2687
2662
 
2688
2663
  class EventsService {
2689
2664
  constructor() {
@@ -2703,13 +2678,11 @@ class EventsService {
2703
2678
  this.stickyUpdated.emit(sticky);
2704
2679
  }
2705
2680
  }
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, [{
2681
+ EventsService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: EventsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2682
+ EventsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: EventsService });
2683
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: EventsService, decorators: [{
2710
2684
  type: Injectable
2711
- }], function () { return []; }, null);
2712
- })();
2685
+ }], ctorParameters: function () { return []; } });
2713
2686
 
2714
2687
  class FormatterService {
2715
2688
  constructor(language) {
@@ -2744,18 +2717,16 @@ class FormatterService {
2744
2717
  return ObjectUtils.isNumber(precision) ? precision : this.defaultPrecision;
2745
2718
  }
2746
2719
  }
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, [{
2720
+ FormatterService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: FormatterService, deps: [{ token: LANGUAGE_SERVICE }], target: i0.ɵɵFactoryTarget.Injectable });
2721
+ FormatterService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: FormatterService });
2722
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: FormatterService, decorators: [{
2751
2723
  type: Injectable
2752
- }], function () {
2724
+ }], ctorParameters: function () {
2753
2725
  return [{ type: undefined, decorators: [{
2754
2726
  type: Inject,
2755
2727
  args: [LANGUAGE_SERVICE]
2756
2728
  }] }];
2757
- }, null);
2758
- })();
2729
+ } });
2759
2730
 
2760
2731
  class GlobalTemplateService {
2761
2732
  constructor() {
@@ -2785,13 +2756,11 @@ class GlobalTemplateService {
2785
2756
  this.componentModifiers[id] = modifier;
2786
2757
  }
2787
2758
  }
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, [{
2759
+ GlobalTemplateService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: GlobalTemplateService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2760
+ GlobalTemplateService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: GlobalTemplateService });
2761
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: GlobalTemplateService, decorators: [{
2792
2762
  type: Injectable
2793
- }], function () { return []; }, null);
2794
- })();
2763
+ }], ctorParameters: function () { return []; } });
2795
2764
 
2796
2765
  class IconService {
2797
2766
  constructor() {
@@ -2811,13 +2780,11 @@ class IconService {
2811
2780
  return Promise.resolve(active ? activeIcon : icon);
2812
2781
  }
2813
2782
  }
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, [{
2783
+ IconService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: IconService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2784
+ IconService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: IconService });
2785
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: IconService, decorators: [{
2818
2786
  type: Injectable
2819
- }], function () { return []; }, null);
2820
- })();
2787
+ }], ctorParameters: function () { return []; } });
2821
2788
 
2822
2789
  class StaticLanguageService {
2823
2790
  constructor(events, storage, configs, promises, client) {
@@ -2954,12 +2921,11 @@ class StaticLanguageService {
2954
2921
  return browserLang;
2955
2922
  }
2956
2923
  }
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, [{
2924
+ 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 });
2925
+ StaticLanguageService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: StaticLanguageService });
2926
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: StaticLanguageService, decorators: [{
2961
2927
  type: Injectable
2962
- }], function () {
2928
+ }], ctorParameters: function () {
2963
2929
  return [{ type: EventsService, decorators: [{
2964
2930
  type: Inject,
2965
2931
  args: [EventsService]
@@ -2976,8 +2942,7 @@ StaticLanguageService.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: St
2976
2942
  type: Inject,
2977
2943
  args: [BaseHttpClient]
2978
2944
  }] }];
2979
- }, null);
2980
- })();
2945
+ } });
2981
2946
 
2982
2947
  class LanguageService extends StaticLanguageService {
2983
2948
  get currentLanguage() {
@@ -3087,13 +3052,11 @@ class LanguageService extends StaticLanguageService {
3087
3052
  return this.settingsPromise;
3088
3053
  }
3089
3054
  }
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, [{
3055
+ LanguageService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: LanguageService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
3056
+ LanguageService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: LanguageService });
3057
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: LanguageService, decorators: [{
3094
3058
  type: Injectable
3095
- }], null, null);
3096
- })();
3059
+ }] });
3097
3060
 
3098
3061
  class OpenApiService {
3099
3062
  constructor(api) {
@@ -3126,18 +3089,16 @@ class OpenApiService {
3126
3089
  });
3127
3090
  }
3128
3091
  }
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, [{
3092
+ OpenApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: OpenApiService, deps: [{ token: API_SERVICE }], target: i0.ɵɵFactoryTarget.Injectable });
3093
+ OpenApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: OpenApiService });
3094
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: OpenApiService, decorators: [{
3133
3095
  type: Injectable
3134
- }], function () {
3096
+ }], ctorParameters: function () {
3135
3097
  return [{ type: undefined, decorators: [{
3136
3098
  type: Inject,
3137
3099
  args: [API_SERVICE]
3138
3100
  }] }];
3139
- }, null);
3140
- })();
3101
+ } });
3141
3102
 
3142
3103
  class ConsoleToasterService {
3143
3104
  constructor(language) {
@@ -3159,18 +3120,16 @@ class ConsoleToasterService {
3159
3120
  this.language.getTranslation(message, params).then(callback);
3160
3121
  }
3161
3122
  }
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, [{
3123
+ ConsoleToasterService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ConsoleToasterService, deps: [{ token: LANGUAGE_SERVICE }], target: i0.ɵɵFactoryTarget.Injectable });
3124
+ ConsoleToasterService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ConsoleToasterService });
3125
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ConsoleToasterService, decorators: [{
3166
3126
  type: Injectable
3167
- }], function () {
3127
+ }], ctorParameters: function () {
3168
3128
  return [{ type: undefined, decorators: [{
3169
3129
  type: Inject,
3170
3130
  args: [LANGUAGE_SERVICE]
3171
3131
  }] }];
3172
- }, null);
3173
- })();
3132
+ } });
3174
3133
 
3175
3134
  class TranslatedUrlSerializer extends DefaultUrlSerializer {
3176
3135
  constructor(language) {
@@ -3232,18 +3191,16 @@ class TranslatedUrlSerializer extends DefaultUrlSerializer {
3232
3191
  return newGroup;
3233
3192
  }
3234
3193
  }
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, [{
3194
+ TranslatedUrlSerializer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: TranslatedUrlSerializer, deps: [{ token: LANGUAGE_SERVICE }], target: i0.ɵɵFactoryTarget.Injectable });
3195
+ TranslatedUrlSerializer.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: TranslatedUrlSerializer });
3196
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: TranslatedUrlSerializer, decorators: [{
3239
3197
  type: Injectable
3240
- }], function () {
3198
+ }], ctorParameters: function () {
3241
3199
  return [{ type: undefined, decorators: [{
3242
3200
  type: Inject,
3243
3201
  args: [LANGUAGE_SERVICE]
3244
3202
  }] }];
3245
- }, null);
3246
- })();
3203
+ } });
3247
3204
 
3248
3205
  class PromiseService {
3249
3206
  constructor(zone) {
@@ -3289,18 +3246,16 @@ class PromiseService {
3289
3246
  });
3290
3247
  }
3291
3248
  }
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, [{
3249
+ PromiseService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: PromiseService, deps: [{ token: NgZone }], target: i0.ɵɵFactoryTarget.Injectable });
3250
+ PromiseService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: PromiseService });
3251
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: PromiseService, decorators: [{
3296
3252
  type: Injectable
3297
- }], function () {
3253
+ }], ctorParameters: function () {
3298
3254
  return [{ type: i0.NgZone, decorators: [{
3299
3255
  type: Inject,
3300
3256
  args: [NgZone]
3301
3257
  }] }];
3302
- }, null);
3303
- })();
3258
+ } });
3304
3259
 
3305
3260
  function emptyRemove$1() {
3306
3261
  }
@@ -3345,18 +3300,16 @@ class ResizeEventPlugin extends ɵDomEventsPlugin {
3345
3300
  }
3346
3301
  }
3347
3302
  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, [{
3303
+ 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 });
3304
+ ResizeEventPlugin.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ResizeEventPlugin });
3305
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ResizeEventPlugin, decorators: [{
3352
3306
  type: Injectable
3353
- }], function () {
3307
+ }], ctorParameters: function () {
3354
3308
  return [{ type: undefined, decorators: [{
3355
3309
  type: Inject,
3356
3310
  args: [DOCUMENT]
3357
3311
  }] }, { type: UniversalService }];
3358
- }, null);
3359
- })();
3312
+ } });
3360
3313
 
3361
3314
  function emptyRemove() {
3362
3315
  }
@@ -3382,18 +3335,16 @@ class ScrollEventPlugin extends ɵDomEventsPlugin {
3382
3335
  }
3383
3336
  }
3384
3337
  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, [{
3338
+ 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 });
3339
+ ScrollEventPlugin.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ScrollEventPlugin });
3340
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ScrollEventPlugin, decorators: [{
3389
3341
  type: Injectable
3390
- }], function () {
3342
+ }], ctorParameters: function () {
3391
3343
  return [{ type: undefined, decorators: [{
3392
3344
  type: Inject,
3393
3345
  args: [DOCUMENT]
3394
3346
  }] }, { type: UniversalService }];
3395
- }, null);
3396
- })();
3347
+ } });
3397
3348
 
3398
3349
  class ChunkPipe {
3399
3350
  transform(items, count) {
@@ -3409,16 +3360,14 @@ class ChunkPipe {
3409
3360
  return result;
3410
3361
  }
3411
3362
  }
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, [{
3363
+ ChunkPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ChunkPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
3364
+ ChunkPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ChunkPipe, name: "chunk" });
3365
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ChunkPipe, decorators: [{
3416
3366
  type: Pipe,
3417
3367
  args: [{
3418
3368
  name: "chunk"
3419
3369
  }]
3420
- }], null, null);
3421
- })();
3370
+ }] });
3422
3371
 
3423
3372
  const emptyEntries = [];
3424
3373
  class EntriesPipe {
@@ -3436,16 +3385,14 @@ class EntriesPipe {
3436
3385
  return entries;
3437
3386
  }
3438
3387
  }
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, [{
3388
+ EntriesPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: EntriesPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
3389
+ EntriesPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: EntriesPipe, name: "entries" });
3390
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: EntriesPipe, decorators: [{
3443
3391
  type: Pipe,
3444
3392
  args: [{
3445
3393
  name: "entries"
3446
3394
  }]
3447
- }], null, null);
3448
- })();
3395
+ }] });
3449
3396
 
3450
3397
  class ExtraItemPropertiesPipe {
3451
3398
  transform(items, properties, params = {}) {
@@ -3466,16 +3413,14 @@ class ExtraItemPropertiesPipe {
3466
3413
  }, Object.assign({}, item)));
3467
3414
  }
3468
3415
  }
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, [{
3416
+ ExtraItemPropertiesPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ExtraItemPropertiesPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
3417
+ ExtraItemPropertiesPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ExtraItemPropertiesPipe, name: "extraItemProperties" });
3418
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ExtraItemPropertiesPipe, decorators: [{
3473
3419
  type: Pipe,
3474
3420
  args: [{
3475
3421
  name: "extraItemProperties"
3476
3422
  }]
3477
- }], null, null);
3478
- })();
3423
+ }] });
3479
3424
 
3480
3425
  function defaultFilter$1() {
3481
3426
  return true;
@@ -3507,16 +3452,14 @@ class FilterPipe {
3507
3452
  });
3508
3453
  }
3509
3454
  }
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, [{
3455
+ FilterPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: FilterPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
3456
+ FilterPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: FilterPipe, name: "filter" });
3457
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: FilterPipe, decorators: [{
3514
3458
  type: Pipe,
3515
3459
  args: [{
3516
3460
  name: "filter"
3517
3461
  }]
3518
- }], null, null);
3519
- })();
3462
+ }] });
3520
3463
 
3521
3464
  function defaultFilter() {
3522
3465
  return true;
@@ -3535,16 +3478,14 @@ class FindPipe {
3535
3478
  return values.find((value, index) => filterFunc(value, index, params));
3536
3479
  }
3537
3480
  }
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, [{
3481
+ FindPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: FindPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
3482
+ FindPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: FindPipe, name: "find" });
3483
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: FindPipe, decorators: [{
3542
3484
  type: Pipe,
3543
3485
  args: [{
3544
3486
  name: "find"
3545
3487
  }]
3546
- }], null, null);
3547
- })();
3488
+ }] });
3548
3489
 
3549
3490
  class FormatNumberPipe {
3550
3491
  constructor(formatter) {
@@ -3554,48 +3495,42 @@ class FormatNumberPipe {
3554
3495
  return this.formatter.formatNumber(value, format, precision, divider);
3555
3496
  }
3556
3497
  }
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, [{
3498
+ FormatNumberPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: FormatNumberPipe, deps: [{ token: FormatterService }], target: i0.ɵɵFactoryTarget.Pipe });
3499
+ FormatNumberPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: FormatNumberPipe, name: "formatNumber" });
3500
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: FormatNumberPipe, decorators: [{
3561
3501
  type: Pipe,
3562
3502
  args: [{
3563
3503
  name: "formatNumber"
3564
3504
  }]
3565
- }], function () { return [{ type: FormatterService }]; }, null);
3566
- })();
3505
+ }], ctorParameters: function () { return [{ type: FormatterService }]; } });
3567
3506
 
3568
3507
  class GetOffsetPipe {
3569
3508
  transform(value, offset) {
3570
3509
  return value ? (ObjectUtils.isNullOrUndefined(offset) ? value : value[offset]) : null;
3571
3510
  }
3572
3511
  }
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, [{
3512
+ GetOffsetPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: GetOffsetPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
3513
+ GetOffsetPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: GetOffsetPipe, name: "getOffset" });
3514
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: GetOffsetPipe, decorators: [{
3577
3515
  type: Pipe,
3578
3516
  args: [{
3579
3517
  name: "getOffset"
3580
3518
  }]
3581
- }], null, null);
3582
- })();
3519
+ }] });
3583
3520
 
3584
3521
  class GetTypePipe {
3585
3522
  transform(value) {
3586
3523
  return typeof value;
3587
3524
  }
3588
3525
  }
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, [{
3526
+ GetTypePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: GetTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
3527
+ GetTypePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: GetTypePipe, name: "getType" });
3528
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: GetTypePipe, decorators: [{
3593
3529
  type: Pipe,
3594
3530
  args: [{
3595
3531
  name: "getType"
3596
3532
  }]
3597
- }], null, null);
3598
- })();
3533
+ }] });
3599
3534
 
3600
3535
  class GlobalTemplatePipe {
3601
3536
  constructor(globalTemplates) {
@@ -3622,22 +3557,20 @@ class GlobalTemplatePipe {
3622
3557
  return this.cachedTemplate;
3623
3558
  }
3624
3559
  }
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, [{
3560
+ GlobalTemplatePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: GlobalTemplatePipe, deps: [{ token: GLOBAL_TEMPLATES }], target: i0.ɵɵFactoryTarget.Pipe });
3561
+ GlobalTemplatePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: GlobalTemplatePipe, name: "globalTemplate", pure: false });
3562
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: GlobalTemplatePipe, decorators: [{
3629
3563
  type: Pipe,
3630
3564
  args: [{
3631
3565
  pure: false,
3632
3566
  name: "globalTemplate"
3633
3567
  }]
3634
- }], function () {
3568
+ }], ctorParameters: function () {
3635
3569
  return [{ type: undefined, decorators: [{
3636
3570
  type: Inject,
3637
3571
  args: [GLOBAL_TEMPLATES]
3638
3572
  }] }];
3639
- }, null);
3640
- })();
3573
+ } });
3641
3574
 
3642
3575
  class GroupByPipe {
3643
3576
  transform(records, column, map = null) {
@@ -3654,32 +3587,28 @@ class GroupByPipe {
3654
3587
  });
3655
3588
  }
3656
3589
  }
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, [{
3590
+ GroupByPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: GroupByPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
3591
+ GroupByPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: GroupByPipe, name: "groupBy" });
3592
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: GroupByPipe, decorators: [{
3661
3593
  type: Pipe,
3662
3594
  args: [{
3663
3595
  name: "groupBy"
3664
3596
  }]
3665
- }], null, null);
3666
- })();
3597
+ }] });
3667
3598
 
3668
3599
  class IsTypePipe {
3669
3600
  transform(value, type) {
3670
3601
  return (typeof value) === type;
3671
3602
  }
3672
3603
  }
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, [{
3604
+ IsTypePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: IsTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
3605
+ IsTypePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: IsTypePipe, name: "isType" });
3606
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: IsTypePipe, decorators: [{
3677
3607
  type: Pipe,
3678
3608
  args: [{
3679
3609
  name: "isType"
3680
3610
  }]
3681
- }], null, null);
3682
- })();
3611
+ }] });
3683
3612
 
3684
3613
  class JoinPipe {
3685
3614
  transform(value, separator = ", ") {
@@ -3688,16 +3617,14 @@ class JoinPipe {
3688
3617
  : "";
3689
3618
  }
3690
3619
  }
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, [{
3620
+ JoinPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: JoinPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
3621
+ JoinPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: JoinPipe, name: "join" });
3622
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: JoinPipe, decorators: [{
3695
3623
  type: Pipe,
3696
3624
  args: [{
3697
3625
  name: "join"
3698
3626
  }]
3699
- }], null, null);
3700
- })();
3627
+ }] });
3701
3628
 
3702
3629
  const emptyKeys = [];
3703
3630
  class KeysPipe {
@@ -3709,16 +3636,14 @@ class KeysPipe {
3709
3636
  : Object.keys(value);
3710
3637
  }
3711
3638
  }
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, [{
3639
+ KeysPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: KeysPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
3640
+ KeysPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: KeysPipe, name: "keys" });
3641
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: KeysPipe, decorators: [{
3716
3642
  type: Pipe,
3717
3643
  args: [{
3718
3644
  name: "keys"
3719
3645
  }]
3720
- }], null, null);
3721
- })();
3646
+ }] });
3722
3647
 
3723
3648
  function defaultMapper(item) {
3724
3649
  return item;
@@ -3737,16 +3662,14 @@ class MapPipe {
3737
3662
  return values.map((value, index) => mapperFunc(value, index, params));
3738
3663
  }
3739
3664
  }
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, [{
3665
+ MapPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: MapPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
3666
+ MapPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: MapPipe, name: "map" });
3667
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: MapPipe, decorators: [{
3744
3668
  type: Pipe,
3745
3669
  args: [{
3746
3670
  name: "map"
3747
3671
  }]
3748
- }], null, null);
3749
- })();
3672
+ }] });
3750
3673
 
3751
3674
  class MaxPipe {
3752
3675
  transform(value, selector = null, params = {}) {
@@ -3761,16 +3684,14 @@ class MaxPipe {
3761
3684
  return ArrayUtils.max(value, (item, index) => maxSelector(item, index, params));
3762
3685
  }
3763
3686
  }
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, [{
3687
+ MaxPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: MaxPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
3688
+ MaxPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: MaxPipe, name: "max" });
3689
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: MaxPipe, decorators: [{
3768
3690
  type: Pipe,
3769
3691
  args: [{
3770
3692
  name: "max"
3771
3693
  }]
3772
- }], null, null);
3773
- })();
3694
+ }] });
3774
3695
 
3775
3696
  class MinPipe {
3776
3697
  transform(value, selector = null, params = {}) {
@@ -3785,16 +3706,14 @@ class MinPipe {
3785
3706
  return ArrayUtils.min(value, (item, index) => minSelector(item, index, params));
3786
3707
  }
3787
3708
  }
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, [{
3709
+ MinPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: MinPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
3710
+ MinPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: MinPipe, name: "min" });
3711
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: MinPipe, decorators: [{
3792
3712
  type: Pipe,
3793
3713
  args: [{
3794
3714
  name: "min"
3795
3715
  }]
3796
- }], null, null);
3797
- })();
3716
+ }] });
3798
3717
 
3799
3718
  function defaultReducer(result) {
3800
3719
  return result;
@@ -3814,16 +3733,14 @@ class ReducePipe {
3814
3733
  return values.reduce((result, value, index) => mapperFunc(result, value, index, params), source);
3815
3734
  }
3816
3735
  }
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, [{
3736
+ ReducePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ReducePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
3737
+ ReducePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ReducePipe, name: "reduce" });
3738
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ReducePipe, decorators: [{
3821
3739
  type: Pipe,
3822
3740
  args: [{
3823
3741
  name: "reduce"
3824
3742
  }]
3825
- }], null, null);
3826
- })();
3743
+ }] });
3827
3744
 
3828
3745
  const empty = {};
3829
3746
  class RemapPipe {
@@ -3845,32 +3762,28 @@ class RemapPipe {
3845
3762
  return remapped.map;
3846
3763
  }
3847
3764
  }
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, [{
3765
+ RemapPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: RemapPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
3766
+ RemapPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: RemapPipe, name: "remap" });
3767
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: RemapPipe, decorators: [{
3852
3768
  type: Pipe,
3853
3769
  args: [{
3854
3770
  name: "remap"
3855
3771
  }]
3856
- }], null, null);
3857
- })();
3772
+ }] });
3858
3773
 
3859
3774
  class ReplacePipe {
3860
3775
  transform(value, from, to) {
3861
3776
  return value ? value.replace(from, to) : value;
3862
3777
  }
3863
3778
  }
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, [{
3779
+ ReplacePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ReplacePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
3780
+ ReplacePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ReplacePipe, name: "replace" });
3781
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ReplacePipe, decorators: [{
3868
3782
  type: Pipe,
3869
3783
  args: [{
3870
3784
  name: "replace"
3871
3785
  }]
3872
- }], null, null);
3873
- })();
3786
+ }] });
3874
3787
 
3875
3788
  const emptyArray = [];
3876
3789
  class ReversePipe {
@@ -3884,16 +3797,14 @@ class ReversePipe {
3884
3797
  return result;
3885
3798
  }
3886
3799
  }
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, [{
3800
+ ReversePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ReversePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
3801
+ ReversePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ReversePipe, name: "reverse" });
3802
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ReversePipe, decorators: [{
3891
3803
  type: Pipe,
3892
3804
  args: [{
3893
3805
  name: "reverse"
3894
3806
  }]
3895
- }], null, null);
3896
- })();
3807
+ }] });
3897
3808
 
3898
3809
  class RoundPipe {
3899
3810
  constructor(formatter) {
@@ -3903,16 +3814,14 @@ class RoundPipe {
3903
3814
  return this.formatter.roundNumber(value, precision, divider);
3904
3815
  }
3905
3816
  }
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, [{
3817
+ RoundPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: RoundPipe, deps: [{ token: FormatterService }], target: i0.ɵɵFactoryTarget.Pipe });
3818
+ RoundPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: RoundPipe, name: "round" });
3819
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: RoundPipe, decorators: [{
3910
3820
  type: Pipe,
3911
3821
  args: [{
3912
3822
  name: "round"
3913
3823
  }]
3914
- }], function () { return [{ type: FormatterService }]; }, null);
3915
- })();
3824
+ }], ctorParameters: function () { return [{ type: FormatterService }]; } });
3916
3825
 
3917
3826
  class SafeHtmlPipe {
3918
3827
  constructor(sanitizer) {
@@ -3935,16 +3844,14 @@ class SafeHtmlPipe {
3935
3844
  }
3936
3845
  }
3937
3846
  }
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, [{
3847
+ 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 });
3848
+ SafeHtmlPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: SafeHtmlPipe, name: "safe" });
3849
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: SafeHtmlPipe, decorators: [{
3942
3850
  type: Pipe,
3943
3851
  args: [{
3944
3852
  name: "safe"
3945
3853
  }]
3946
- }], function () { return [{ type: i1$2.DomSanitizer }]; }, null);
3947
- })();
3854
+ }], ctorParameters: function () { return [{ type: i1$2.DomSanitizer }]; } });
3948
3855
 
3949
3856
  class TranslatePipe {
3950
3857
  constructor(cdr, language) {
@@ -4012,11 +3919,10 @@ class TranslatePipe {
4012
3919
  return this.lastValue;
4013
3920
  }
4014
3921
  }
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, [{
3922
+ 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 });
3923
+ TranslatePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: TranslatePipe, name: "translate", pure: false });
3924
+ TranslatePipe.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: TranslatePipe });
3925
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: TranslatePipe, decorators: [{
4020
3926
  type: Injectable
4021
3927
  }, {
4022
3928
  type: Pipe,
@@ -4024,13 +3930,12 @@ TranslatePipe.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: TranslateP
4024
3930
  name: "translate",
4025
3931
  pure: false
4026
3932
  }]
4027
- }], function () {
3933
+ }], ctorParameters: function () {
4028
3934
  return [{ type: i0.ChangeDetectorRef }, { type: undefined, decorators: [{
4029
3935
  type: Inject,
4030
3936
  args: [LANGUAGE_SERVICE]
4031
3937
  }] }];
4032
- }, null);
4033
- })();
3938
+ } });
4034
3939
 
4035
3940
  const emptyValues = [];
4036
3941
  class ValuesPipe {
@@ -4042,16 +3947,14 @@ class ValuesPipe {
4042
3947
  : Object.keys(value).map(key => value[key]);
4043
3948
  }
4044
3949
  }
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, [{
3950
+ ValuesPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ValuesPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
3951
+ ValuesPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ValuesPipe, name: "values" });
3952
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ValuesPipe, decorators: [{
4049
3953
  type: Pipe,
4050
3954
  args: [{
4051
3955
  name: "values"
4052
3956
  }]
4053
- }], null, null);
4054
- })();
3957
+ }] });
4055
3958
 
4056
3959
  class AsyncMethodBase {
4057
3960
  constructor(toaster) {
@@ -4065,6 +3968,9 @@ class AsyncMethodBase {
4065
3968
  get isLoading() {
4066
3969
  return this.loading;
4067
3970
  }
3971
+ getMethod() {
3972
+ return () => __awaiter(this, void 0, void 0, function* () { return null; });
3973
+ }
4068
3974
  click() {
4069
3975
  if (this.disabled)
4070
3976
  return;
@@ -4096,12 +4002,19 @@ class AsyncMethodBase {
4096
4002
  return true;
4097
4003
  }
4098
4004
  }
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, [{
4103
- type: Injectable
4104
- }], function () { return [{ type: undefined }]; }, { disabled: [{
4005
+ AsyncMethodBase.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: AsyncMethodBase, deps: [{ token: TOASTER_SERVICE }], target: i0.ɵɵFactoryTarget.Directive });
4006
+ AsyncMethodBase.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.8", type: AsyncMethodBase, selector: "[__asmb__]", inputs: { disabled: "disabled", context: "context" }, outputs: { onSuccess: "onSuccess", onError: "onError" }, host: { listeners: { "click": "click()" }, properties: { "class.disabled": "this.isDisabled", "class.loading": "this.isLoading" } }, ngImport: i0 });
4007
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: AsyncMethodBase, decorators: [{
4008
+ type: Directive,
4009
+ args: [{
4010
+ selector: "[__asmb__]"
4011
+ }]
4012
+ }], ctorParameters: function () {
4013
+ return [{ type: undefined, decorators: [{
4014
+ type: Inject,
4015
+ args: [TOASTER_SERVICE]
4016
+ }] }];
4017
+ }, propDecorators: { disabled: [{
4105
4018
  type: Input
4106
4019
  }], context: [{
4107
4020
  type: Input
@@ -4118,36 +4031,25 @@ AsyncMethodBase.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: AsyncMet
4118
4031
  }], click: [{
4119
4032
  type: HostListener,
4120
4033
  args: ["click"]
4121
- }] });
4122
- })();
4034
+ }] } });
4123
4035
 
4124
4036
  class AsyncMethodDirective extends AsyncMethodBase {
4125
- constructor(toaster) {
4126
- super(toaster);
4127
- }
4128
4037
  getMethod() {
4129
4038
  return this.method;
4130
4039
  }
4131
4040
  }
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, [{
4041
+ AsyncMethodDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: AsyncMethodDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
4042
+ 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 });
4043
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: AsyncMethodDirective, decorators: [{
4136
4044
  type: Directive,
4137
4045
  args: [{
4138
4046
  selector: "[async-method]",
4139
4047
  exportAs: "async-method"
4140
4048
  }]
4141
- }], function () {
4142
- return [{ type: undefined, decorators: [{
4143
- type: Inject,
4144
- args: [TOASTER_SERVICE]
4145
- }] }];
4146
- }, { method: [{
4049
+ }], propDecorators: { method: [{
4147
4050
  type: Input,
4148
4051
  args: ["async-method"]
4149
- }] });
4150
- })();
4052
+ }] } });
4151
4053
 
4152
4054
  const defaultClass = "default-image";
4153
4055
  const loadingClass = "loading-image";
@@ -4180,40 +4082,36 @@ class BackgroundDirective {
4180
4082
  this.renderer.setStyle(this.element.nativeElement, "background-size", this.backgroundSize);
4181
4083
  }
4182
4084
  }
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, [{
4085
+ 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 });
4086
+ 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 });
4087
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: BackgroundDirective, decorators: [{
4187
4088
  type: Directive,
4188
4089
  args: [{
4189
4090
  selector: "[background]"
4190
4091
  }]
4191
- }], function () { return [{ type: i1$1.HttpClient }, { type: i0.ElementRef }, { type: i0.Renderer2 }, { type: UniversalService }]; }, { background: [{
4092
+ }], ctorParameters: function () { return [{ type: i1$1.HttpClient }, { type: i0.ElementRef }, { type: i0.Renderer2 }, { type: UniversalService }]; }, propDecorators: { background: [{
4192
4093
  type: Input
4193
4094
  }], backgroundSize: [{
4194
4095
  type: Input
4195
- }] });
4196
- })();
4096
+ }] } });
4197
4097
 
4198
4098
  class DynamicTableTemplateDirective {
4199
4099
  constructor(ref) {
4200
4100
  this.ref = ref;
4201
4101
  }
4202
4102
  }
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, [{
4103
+ DynamicTableTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: DynamicTableTemplateDirective, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
4104
+ 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 });
4105
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: DynamicTableTemplateDirective, decorators: [{
4207
4106
  type: Directive,
4208
4107
  args: [{
4209
4108
  selector: "ng-template[column]"
4210
4109
  }]
4211
- }], function () { return [{ type: i0.TemplateRef }]; }, { column: [{
4110
+ }], ctorParameters: function () { return [{ type: i0.TemplateRef }]; }, propDecorators: { column: [{
4212
4111
  type: Input
4213
4112
  }], pure: [{
4214
4113
  type: Input
4215
- }] });
4216
- })();
4114
+ }] } });
4217
4115
 
4218
4116
  class GlobalTemplateDirective {
4219
4117
  constructor(globalTemplates, template) {
@@ -4227,24 +4125,22 @@ class GlobalTemplateDirective {
4227
4125
  this.globalTemplates.remove(this.id);
4228
4126
  }
4229
4127
  }
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, [{
4128
+ 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 });
4129
+ GlobalTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.8", type: GlobalTemplateDirective, selector: "[globalTemplate]", inputs: { id: ["globalTemplate", "id"] }, ngImport: i0 });
4130
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: GlobalTemplateDirective, decorators: [{
4234
4131
  type: Directive,
4235
4132
  args: [{
4236
4133
  selector: "[globalTemplate]"
4237
4134
  }]
4238
- }], function () {
4135
+ }], ctorParameters: function () {
4239
4136
  return [{ type: undefined, decorators: [{
4240
4137
  type: Inject,
4241
4138
  args: [GLOBAL_TEMPLATES]
4242
4139
  }] }, { type: i0.TemplateRef }];
4243
- }, { id: [{
4140
+ }, propDecorators: { id: [{
4244
4141
  type: Input,
4245
4142
  args: ["globalTemplate"]
4246
- }] });
4247
- })();
4143
+ }] } });
4248
4144
 
4249
4145
  class IconDirective {
4250
4146
  constructor(element, renderer, icons) {
@@ -4284,27 +4180,19 @@ class IconDirective {
4284
4180
  });
4285
4181
  }
4286
4182
  }
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, [{
4183
+ 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 });
4184
+ 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 });
4185
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: IconDirective, decorators: [{
4298
4186
  type: Directive,
4299
4187
  args: [{
4300
4188
  selector: "[icon]"
4301
4189
  }]
4302
- }], function () {
4190
+ }], ctorParameters: function () {
4303
4191
  return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: undefined, decorators: [{
4304
4192
  type: Inject,
4305
4193
  args: [ICON_SERVICE]
4306
4194
  }] }];
4307
- }, { icon: [{
4195
+ }, propDecorators: { icon: [{
4308
4196
  type: Input
4309
4197
  }], activeIcon: [{
4310
4198
  type: Input
@@ -4318,8 +4206,7 @@ IconDirective.ɵdir = /*@__PURE__*/ i0.ɵɵdefineDirective({ type: IconDirective
4318
4206
  }], click: [{
4319
4207
  type: HostListener,
4320
4208
  args: ["click"]
4321
- }] });
4322
- })();
4209
+ }] } });
4323
4210
 
4324
4211
  class NgxTemplateOutletDirective {
4325
4212
  constructor(_viewContainerRef) {
@@ -4393,22 +4280,20 @@ class NgxTemplateOutletDirective {
4393
4280
  }
4394
4281
  }
4395
4282
  }
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, [{
4283
+ NgxTemplateOutletDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: NgxTemplateOutletDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
4284
+ 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 });
4285
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: NgxTemplateOutletDirective, decorators: [{
4400
4286
  type: Directive,
4401
4287
  args: [{
4402
4288
  selector: "[ngxTemplateOutlet]"
4403
4289
  }]
4404
- }], function () { return [{ type: i0.ViewContainerRef }]; }, { context: [{
4290
+ }], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; }, propDecorators: { context: [{
4405
4291
  type: Input
4406
4292
  }], additionalContext: [{
4407
4293
  type: Input
4408
4294
  }], ngxTemplateOutlet: [{
4409
4295
  type: Input
4410
- }] });
4411
- })();
4296
+ }] } });
4412
4297
 
4413
4298
  class PaginationDirective {
4414
4299
  constructor(zone) {
@@ -4464,16 +4349,15 @@ class PaginationDirective {
4464
4349
  });
4465
4350
  }
4466
4351
  }
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, [{
4352
+ PaginationDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: PaginationDirective, deps: [{ token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive });
4353
+ 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 });
4354
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: PaginationDirective, decorators: [{
4471
4355
  type: Directive,
4472
4356
  args: [{
4473
4357
  selector: "[pagination]",
4474
4358
  exportAs: "pagination"
4475
4359
  }]
4476
- }], function () { return [{ type: i0.NgZone }]; }, { loader: [{
4360
+ }], ctorParameters: function () { return [{ type: i0.NgZone }]; }, propDecorators: { loader: [{
4477
4361
  type: Input,
4478
4362
  args: ["pagination"]
4479
4363
  }], page: [{
@@ -4488,8 +4372,7 @@ PaginationDirective.ɵdir = /*@__PURE__*/ i0.ɵɵdefineDirective({ type: Paginat
4488
4372
  type: Output
4489
4373
  }], onRefresh: [{
4490
4374
  type: Output
4491
- }] });
4492
- })();
4375
+ }] } });
4493
4376
 
4494
4377
  class PaginationItemDirective {
4495
4378
  constructor(pagination, viewContainer, templateRef) {
@@ -4511,16 +4394,14 @@ class PaginationItemDirective {
4511
4394
  });
4512
4395
  }
4513
4396
  }
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, [{
4397
+ 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 });
4398
+ PaginationItemDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.8", type: PaginationItemDirective, selector: "[paginationItem]", ngImport: i0 });
4399
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: PaginationItemDirective, decorators: [{
4518
4400
  type: Directive,
4519
4401
  args: [{
4520
4402
  selector: "[paginationItem]"
4521
4403
  }]
4522
- }], function () { return [{ type: PaginationDirective }, { type: i0.ViewContainerRef }, { type: i0.TemplateRef }]; }, null);
4523
- })();
4404
+ }], ctorParameters: function () { return [{ type: PaginationDirective }, { type: i0.ViewContainerRef }, { type: i0.TemplateRef }]; } });
4524
4405
 
4525
4406
  class ResourceIfDirective {
4526
4407
  constructor(http, viewContainer, templateRef, universal) {
@@ -4552,19 +4433,17 @@ class ResourceIfDirective {
4552
4433
  }
4553
4434
  }
4554
4435
  }
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, [{
4436
+ 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 });
4437
+ ResourceIfDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.8", type: ResourceIfDirective, selector: "[resourceIf]", inputs: { resourceIf: "resourceIf" }, exportAs: ["resourceIf"], ngImport: i0 });
4438
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ResourceIfDirective, decorators: [{
4559
4439
  type: Directive,
4560
4440
  args: [{
4561
4441
  selector: "[resourceIf]",
4562
4442
  exportAs: "resourceIf"
4563
4443
  }]
4564
- }], function () { return [{ type: i1$1.HttpClient }, { type: i0.ViewContainerRef }, { type: i0.TemplateRef }, { type: UniversalService }]; }, { resourceIf: [{
4444
+ }], ctorParameters: function () { return [{ type: i1$1.HttpClient }, { type: i0.ViewContainerRef }, { type: i0.TemplateRef }, { type: UniversalService }]; }, propDecorators: { resourceIf: [{
4565
4445
  type: Input
4566
- }] });
4567
- })();
4446
+ }] } });
4568
4447
 
4569
4448
  class StickyDirective {
4570
4449
  constructor(cdr, events, element) {
@@ -4595,22 +4474,14 @@ class StickyDirective {
4595
4474
  this.updateTimer.run();
4596
4475
  }
4597
4476
  }
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, [{
4477
+ 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 });
4478
+ 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 });
4479
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: StickyDirective, decorators: [{
4609
4480
  type: Directive,
4610
4481
  args: [{
4611
4482
  selector: "[sticky]"
4612
4483
  }]
4613
- }], function () { return [{ type: i0.ChangeDetectorRef }, { type: EventsService }, { type: i0.ElementRef }]; }, { isSticky: [{
4484
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: EventsService }, { type: i0.ElementRef }]; }, propDecorators: { isSticky: [{
4614
4485
  type: HostBinding,
4615
4486
  args: ["class.sticky"]
4616
4487
  }], isUpdating: [{
@@ -4622,8 +4493,7 @@ StickyDirective.ɵdir = /*@__PURE__*/ i0.ɵɵdefineDirective({ type: StickyDirec
4622
4493
  }, {
4623
4494
  type: HostListener,
4624
4495
  args: ["window:scroll"]
4625
- }] });
4626
- })();
4496
+ }] } });
4627
4497
 
4628
4498
  class StickyClassDirective {
4629
4499
  constructor(events, element, renderer) {
@@ -4644,18 +4514,16 @@ class StickyClassDirective {
4644
4514
  this.stickyUpdated.unsubscribe();
4645
4515
  }
4646
4516
  }
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, [{
4517
+ 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 });
4518
+ StickyClassDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.8", type: StickyClassDirective, selector: "[stickyClass]", inputs: { stickyClass: "stickyClass" }, ngImport: i0 });
4519
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: StickyClassDirective, decorators: [{
4651
4520
  type: Directive,
4652
4521
  args: [{
4653
4522
  selector: "[stickyClass]"
4654
4523
  }]
4655
- }], function () { return [{ type: EventsService }, { type: i0.ElementRef }, { type: i0.Renderer2 }]; }, { stickyClass: [{
4524
+ }], ctorParameters: function () { return [{ type: EventsService }, { type: i0.ElementRef }, { type: i0.Renderer2 }]; }, propDecorators: { stickyClass: [{
4656
4525
  type: Input
4657
- }] });
4658
- })();
4526
+ }] } });
4659
4527
 
4660
4528
  class UnorderedListItemDirective {
4661
4529
  constructor(elementRef, renderer, viewContainer) {
@@ -4703,15 +4571,14 @@ class UnorderedListItemDirective {
4703
4571
  this.item.classList.push(className);
4704
4572
  }
4705
4573
  }
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, [{
4574
+ 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 });
4575
+ 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 });
4576
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: UnorderedListItemDirective, decorators: [{
4710
4577
  type: Directive,
4711
4578
  args: [{
4712
4579
  selector: "[unorderedListItem]"
4713
4580
  }]
4714
- }], function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }]; }, { item: [{
4581
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }]; }, propDecorators: { item: [{
4715
4582
  type: Input,
4716
4583
  args: ["unorderedListItem"]
4717
4584
  }], type: [{
@@ -4730,8 +4597,7 @@ UnorderedListItemDirective.ɵdir = /*@__PURE__*/ i0.ɵɵdefineDirective({ type:
4730
4597
  type: Input
4731
4598
  }], defaultTemplates: [{
4732
4599
  type: Input
4733
- }] });
4734
- })();
4600
+ }] } });
4735
4601
 
4736
4602
  class UnorderedListTemplateDirective extends UnorederedListTemplate {
4737
4603
  constructor(elementRef, templateRef) {
@@ -4743,241 +4609,19 @@ class UnorderedListTemplateDirective extends UnorederedListTemplate {
4743
4609
  return this.templateRef.createEmbeddedView(context);
4744
4610
  }
4745
4611
  }
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, [{
4612
+ 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 });
4613
+ 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 });
4614
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: UnorderedListTemplateDirective, decorators: [{
4750
4615
  type: Directive,
4751
4616
  args: [{
4752
4617
  selector: "ng-template[type][selector]"
4753
4618
  }]
4754
- }], function () { return [{ type: i0.ElementRef }, { type: i0.TemplateRef }]; }, { type: [{
4619
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.TemplateRef }]; }, propDecorators: { type: [{
4755
4620
  type: Input
4756
4621
  }], selector: [{
4757
4622
  type: Input
4758
- }] });
4759
- })();
4623
+ }] } });
4760
4624
 
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
4625
  class UnorderedListComponent {
4982
4626
  constructor(cdr) {
4983
4627
  this.cdr = cdr;
@@ -5004,46 +4648,12 @@ class UnorderedListComponent {
5004
4648
  this.cdr.detectChanges();
5005
4649
  }
5006
4650
  }
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, [{
4651
+ UnorderedListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: UnorderedListComponent, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
4652
+ 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 } });
4653
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: UnorderedListComponent, decorators: [{
5044
4654
  type: Component,
5045
4655
  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: [{
4656
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }]; }, propDecorators: { data: [{
5047
4657
  type: Input
5048
4658
  }], keyPrefix: [{
5049
4659
  type: Input
@@ -5067,113 +4677,8 @@ UnorderedListComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: Unor
5067
4677
  }], defaultItemTemplate: [{
5068
4678
  type: ViewChild,
5069
4679
  args: ["defaultItemTemplate"]
5070
- }] });
5071
- })();
4680
+ }] } });
5072
4681
 
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
4682
  class PaginationMenuComponent {
5178
4683
  constructor(state, pagination, icons) {
5179
4684
  this.state = state;
@@ -5247,25 +4752,17 @@ class PaginationMenuComponent {
5247
4752
  this.pages = pages;
5248
4753
  }
5249
4754
  }
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, [{
4755
+ 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 });
4756
+ 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 } });
4757
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: PaginationMenuComponent, decorators: [{
5261
4758
  type: Component,
5262
4759
  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 () {
4760
+ }], ctorParameters: function () {
5264
4761
  return [{ type: StateService }, { type: PaginationDirective }, { type: undefined, decorators: [{
5265
4762
  type: Inject,
5266
4763
  args: [ICON_SERVICE]
5267
4764
  }] }];
5268
- }, { maxSize: [{
4765
+ }, propDecorators: { maxSize: [{
5269
4766
  type: Input
5270
4767
  }], urlParam: [{
5271
4768
  type: Input
@@ -5273,236 +4770,8 @@ PaginationMenuComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: Pag
5273
4770
  type: Input
5274
4771
  }], boundaryLinks: [{
5275
4772
  type: Input
5276
- }] });
5277
- })();
4773
+ }] } });
5278
4774
 
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
4775
  class DynamicTableComponent {
5507
4776
  constructor() {
5508
4777
  this.loadData = (page, itemsPerPage) => {
@@ -5604,72 +4873,12 @@ class DynamicTableComponent {
5604
4873
  });
5605
4874
  }
5606
4875
  }
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, [{
4876
+ DynamicTableComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: DynamicTableComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
4877
+ 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 } });
4878
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: DynamicTableComponent, decorators: [{
5670
4879
  type: Component,
5671
4880
  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: [{
4881
+ }], ctorParameters: function () { return []; }, propDecorators: { label: [{
5673
4882
  type: Input
5674
4883
  }], placeholder: [{
5675
4884
  type: Input
@@ -5724,8 +4933,7 @@ DynamicTableComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: Dynam
5724
4933
  }], templateDirectives: [{
5725
4934
  type: ContentChildren,
5726
4935
  args: [DynamicTableTemplateDirective]
5727
- }] });
5728
- })();
4936
+ }] } });
5729
4937
 
5730
4938
  // --- Pipes ---
5731
4939
  const pipes = [
@@ -5756,6 +4964,7 @@ const pipes = [
5756
4964
  ];
5757
4965
  // --- Directives ---
5758
4966
  const directives = [
4967
+ AsyncMethodBase,
5759
4968
  AsyncMethodDirective,
5760
4969
  BackgroundDirective,
5761
4970
  DynamicTableTemplateDirective,
@@ -5821,8 +5030,31 @@ const providers = [
5821
5030
  ];
5822
5031
  function loadConfig(config) {
5823
5032
  return config.load;
5033
+ }
5034
+
5035
+ function loadBaseHref() {
5036
+ if (typeof (document) === "undefined" || typeof (location) === "undefined")
5037
+ return "/";
5038
+ const currentScript = document.currentScript;
5039
+ if (!currentScript) {
5040
+ try {
5041
+ // noinspection ExceptionCaughtLocallyJS
5042
+ throw new Error();
5043
+ }
5044
+ catch (e) {
5045
+ const qualifiedUrl = location.protocol + "//" + location.host;
5046
+ const srcUrl = (e.stack || "").match(new RegExp(qualifiedUrl + ".*?\\.js", "g")) || e.stack.match(/http([A-Z:\/\-\.]+)\.js/gi).shift();
5047
+ const lastIndex = srcUrl.lastIndexOf("/");
5048
+ return lastIndex < 0 ? "/" : srcUrl.substring(0, lastIndex + 1);
5049
+ }
5050
+ }
5051
+ const scriptSrc = currentScript.src;
5052
+ const lastIndex = scriptSrc.lastIndexOf("/");
5053
+ return lastIndex < 0 ? "/" : scriptSrc.substring(0, lastIndex + 1);
5824
5054
  }
5825
5055
  class NgxUtilsModule {
5056
+ constructor() {
5057
+ }
5826
5058
  static forRoot(config) {
5827
5059
  return {
5828
5060
  ngModule: NgxUtilsModule,
@@ -5869,19 +5101,24 @@ class NgxUtilsModule {
5869
5101
  useFactory: (!config ? null : config.initializeApp) || loadConfig,
5870
5102
  multi: true,
5871
5103
  deps: [(!config ? null : config.initializeApp) ? Injector : CONFIG_SERVICE]
5104
+ },
5105
+ {
5106
+ provide: APP_BASE_HREF,
5107
+ useFactory: (!config ? null : config.baseHref) || loadBaseHref,
5108
+ deps: [Injector]
5872
5109
  }
5873
5110
  ]
5874
5111
  };
5875
5112
  }
5876
5113
  }
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: [[
5114
+ NgxUtilsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: NgxUtilsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
5115
+ NgxUtilsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: NgxUtilsModule, declarations: [ChunkPipe, EntriesPipe, ExtraItemPropertiesPipe, FilterPipe, FindPipe, FormatNumberPipe, GetOffsetPipe, GetTypePipe, GlobalTemplatePipe, GroupByPipe, IsTypePipe, JoinPipe, KeysPipe, MapPipe, MaxPipe, MinPipe, ReducePipe, RemapPipe, ReplacePipe, ReversePipe, RoundPipe, SafeHtmlPipe, TranslatePipe, ValuesPipe, AsyncMethodBase, AsyncMethodDirective, BackgroundDirective, DynamicTableTemplateDirective, GlobalTemplateDirective, IconDirective, NgxTemplateOutletDirective, PaginationDirective, PaginationItemDirective, ResourceIfDirective, StickyDirective, StickyClassDirective, UnorderedListItemDirective, UnorderedListTemplateDirective, DynamicTableComponent, PaginationMenuComponent, UnorderedListComponent], imports: [CommonModule,
5116
+ FormsModule], exports: [ChunkPipe, EntriesPipe, ExtraItemPropertiesPipe, FilterPipe, FindPipe, FormatNumberPipe, GetOffsetPipe, GetTypePipe, GlobalTemplatePipe, GroupByPipe, IsTypePipe, JoinPipe, KeysPipe, MapPipe, MaxPipe, MinPipe, ReducePipe, RemapPipe, ReplacePipe, ReversePipe, RoundPipe, SafeHtmlPipe, TranslatePipe, ValuesPipe, AsyncMethodBase, AsyncMethodDirective, BackgroundDirective, DynamicTableTemplateDirective, GlobalTemplateDirective, IconDirective, NgxTemplateOutletDirective, PaginationDirective, PaginationItemDirective, ResourceIfDirective, StickyDirective, StickyClassDirective, UnorderedListItemDirective, UnorderedListTemplateDirective, DynamicTableComponent, PaginationMenuComponent, UnorderedListComponent, FormsModule] });
5117
+ NgxUtilsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: NgxUtilsModule, providers: pipes, imports: [[
5880
5118
  CommonModule,
5881
5119
  FormsModule
5882
5120
  ], FormsModule] });
5883
- (function () {
5884
- (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(NgxUtilsModule, [{
5121
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: NgxUtilsModule, decorators: [{
5885
5122
  type: NgModule,
5886
5123
  args: [{
5887
5124
  declarations: [
@@ -5901,86 +5138,7 @@ NgxUtilsModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ providers: pipes, i
5901
5138
  ],
5902
5139
  providers: pipes
5903
5140
  }]
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
- })();
5141
+ }], ctorParameters: function () { return []; } });
5984
5142
 
5985
5143
  /**
5986
5144
  * Generated bundle index. Do not edit.