@abp/ng.theme.shared 5.0.0-rc.1 → 5.1.1

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 (173) hide show
  1. package/README.md +3 -3
  2. package/{esm2015/abp-ng.theme.shared.js → esm2020/abp-ng.theme.shared.mjs} +0 -0
  3. package/{esm2015/extensions/abp-ng.theme.shared-extensions.js → esm2020/extensions/abp-ng.theme.shared-extensions.mjs} +0 -0
  4. package/esm2020/extensions/lib/adapters/date-time.adapter.mjs +44 -0
  5. package/{esm2015/extensions/lib/adapters/date.adapter.js → esm2020/extensions/lib/adapters/date.adapter.mjs} +4 -4
  6. package/{esm2015/extensions/lib/adapters/time.adapter.js → esm2020/extensions/lib/adapters/time.adapter.mjs} +4 -4
  7. package/{esm2015/extensions/lib/components/abstract-actions/abstract-actions.component.js → esm2020/extensions/lib/components/abstract-actions/abstract-actions.component.mjs} +4 -4
  8. package/{esm2015/extensions/lib/components/date-time-picker/date-time-picker.component.js → esm2020/extensions/lib/components/date-time-picker/date-time-picker.component.mjs} +40 -40
  9. package/esm2020/extensions/lib/components/extensible-form/extensible-form-prop.component.mjs +159 -0
  10. package/esm2020/extensions/lib/components/extensible-form/extensible-form.component.mjs +64 -0
  11. package/esm2020/extensions/lib/components/extensible-table/extensible-table.component.mjs +128 -0
  12. package/esm2020/extensions/lib/components/grid-actions/grid-actions.component.mjs +39 -0
  13. package/esm2020/extensions/lib/components/page-toolbar/page-toolbar.component.mjs +40 -0
  14. package/{esm2015/extensions/lib/constants/extra-properties.js → esm2020/extensions/lib/constants/extra-properties.mjs} +1 -1
  15. package/{esm2015/extensions/lib/directives/disabled.directive.js → esm2020/extensions/lib/directives/disabled.directive.mjs} +4 -4
  16. package/{esm2015/extensions/lib/directives/prop-data.directive.js → esm2020/extensions/lib/directives/prop-data.directive.mjs} +4 -4
  17. package/esm2020/extensions/lib/enums/props.enum.mjs +2 -0
  18. package/esm2020/extensions/lib/models/actions.mjs +46 -0
  19. package/esm2020/extensions/lib/models/entity-actions.mjs +29 -0
  20. package/esm2020/extensions/lib/models/entity-props.mjs +36 -0
  21. package/esm2020/extensions/lib/models/form-props.mjs +52 -0
  22. package/esm2020/extensions/lib/models/internal/object-extensions.mjs +2 -0
  23. package/{esm2015/extensions/lib/models/object-extensions.js → esm2020/extensions/lib/models/object-extensions.mjs} +1 -1
  24. package/{esm2015/extensions/lib/models/props.js → esm2020/extensions/lib/models/props.mjs} +1 -1
  25. package/esm2020/extensions/lib/models/toolbar-actions.mjs +41 -0
  26. package/{esm2015/extensions/lib/services/extensions.service.js → esm2020/extensions/lib/services/extensions.service.mjs} +4 -4
  27. package/{esm2015/extensions/lib/tokens/extensions.token.js → esm2020/extensions/lib/tokens/extensions.token.mjs} +1 -1
  28. package/{esm2015/extensions/lib/ui-extensions.module.js → esm2020/extensions/lib/ui-extensions.module.mjs} +9 -9
  29. package/esm2020/extensions/lib/utils/actions.util.mjs +9 -0
  30. package/{esm2015/extensions/lib/utils/enum.util.js → esm2020/extensions/lib/utils/enum.util.mjs} +1 -1
  31. package/{esm2015/extensions/lib/utils/factory.util.js → esm2020/extensions/lib/utils/factory.util.mjs} +1 -1
  32. package/{esm2015/extensions/lib/utils/form-props.util.js → esm2020/extensions/lib/utils/form-props.util.mjs} +1 -1
  33. package/{esm2015/extensions/lib/utils/localization.util.js → esm2020/extensions/lib/utils/localization.util.mjs} +1 -1
  34. package/esm2020/extensions/lib/utils/props.util.mjs +14 -0
  35. package/{esm2015/extensions/lib/utils/state.util.js → esm2020/extensions/lib/utils/state.util.mjs} +2 -3
  36. package/{esm2015/extensions/lib/utils/typeahead.util.js → esm2020/extensions/lib/utils/typeahead.util.mjs} +1 -1
  37. package/{esm2015/extensions/lib/utils/validation.util.js → esm2020/extensions/lib/utils/validation.util.mjs} +1 -1
  38. package/{esm2015/extensions/public-api.js → esm2020/extensions/public-api.mjs} +1 -1
  39. package/{esm2015/lib/animations/bounce.animations.js → esm2020/lib/animations/bounce.animations.mjs} +1 -1
  40. package/{esm2015/lib/animations/collapse.animations.js → esm2020/lib/animations/collapse.animations.mjs} +1 -1
  41. package/{esm2015/lib/animations/fade.animations.js → esm2020/lib/animations/fade.animations.mjs} +1 -1
  42. package/{esm2015/lib/animations/index.js → esm2020/lib/animations/index.mjs} +1 -1
  43. package/{esm2015/lib/animations/modal.animations.js → esm2020/lib/animations/modal.animations.mjs} +1 -1
  44. package/{esm2015/lib/animations/slide.animations.js → esm2020/lib/animations/slide.animations.mjs} +1 -1
  45. package/{esm2015/lib/animations/toast.animations.js → esm2020/lib/animations/toast.animations.mjs} +1 -1
  46. package/esm2020/lib/components/breadcrumb/breadcrumb.component.mjs +43 -0
  47. package/esm2020/lib/components/breadcrumb-items/breadcrumb-items.component.mjs +19 -0
  48. package/esm2020/lib/components/button/button.component.mjs +97 -0
  49. package/esm2020/lib/components/confirmation/confirmation.component.mjs +36 -0
  50. package/esm2020/lib/components/http-error-wrapper/http-error-wrapper.component.mjs +59 -0
  51. package/{esm2015/lib/components/index.js → esm2020/lib/components/index.mjs} +1 -1
  52. package/{esm2015/lib/components/loader-bar/loader-bar.component.js → esm2020/lib/components/loader-bar/loader-bar.component.mjs} +28 -33
  53. package/esm2020/lib/components/loading/loading.component.mjs +47 -0
  54. package/{esm2015/lib/components/modal/modal-close.directive.js → esm2020/lib/components/modal/modal-close.directive.mjs} +5 -6
  55. package/{esm2015/lib/components/modal/modal-ref.service.js → esm2020/lib/components/modal/modal-ref.service.mjs} +4 -4
  56. package/esm2020/lib/components/modal/modal.component.mjs +189 -0
  57. package/esm2020/lib/components/toast/toast.component.mjs +55 -0
  58. package/esm2020/lib/components/toast-container/toast-container.component.mjs +43 -0
  59. package/esm2020/lib/constants/styles.mjs +182 -0
  60. package/{esm2015/lib/constants/validation.js → esm2020/lib/constants/validation.mjs} +1 -1
  61. package/{esm2015/lib/directives/ellipsis.directive.js → esm2020/lib/directives/ellipsis.directive.mjs} +8 -8
  62. package/{esm2015/lib/directives/index.js → esm2020/lib/directives/index.mjs} +1 -1
  63. package/esm2020/lib/directives/loading.directive.mjs +89 -0
  64. package/{esm2015/lib/directives/ngx-datatable-default.directive.js → esm2020/lib/directives/ngx-datatable-default.directive.mjs} +4 -4
  65. package/{esm2015/lib/directives/ngx-datatable-list.directive.js → esm2020/lib/directives/ngx-datatable-list.directive.mjs} +4 -4
  66. package/{esm2015/lib/enums/index.js → esm2020/lib/enums/index.mjs} +1 -1
  67. package/{esm2015/lib/enums/route-names.js → esm2020/lib/enums/route-names.mjs} +1 -1
  68. package/{esm2015/lib/handlers/document-dir.handler.js → esm2020/lib/handlers/document-dir.handler.mjs} +4 -4
  69. package/esm2020/lib/handlers/error.handler.mjs +286 -0
  70. package/{esm2015/lib/handlers/index.js → esm2020/lib/handlers/index.mjs} +1 -1
  71. package/esm2020/lib/models/common.mjs +2 -0
  72. package/esm2020/lib/models/confirmation.mjs +10 -0
  73. package/esm2020/lib/models/index.mjs +7 -0
  74. package/esm2020/lib/models/nav-item.mjs +7 -0
  75. package/esm2020/lib/models/statistics.mjs +2 -0
  76. package/esm2020/lib/models/toaster.mjs +2 -0
  77. package/esm2020/lib/models/user-menu.mjs +4 -0
  78. package/{esm2015/lib/providers/index.js → esm2020/lib/providers/index.mjs} +1 -1
  79. package/{esm2015/lib/providers/ng-bootstrap-config.provider.js → esm2020/lib/providers/ng-bootstrap-config.provider.mjs} +1 -1
  80. package/{esm2015/lib/providers/route.provider.js → esm2020/lib/providers/route.provider.mjs} +1 -1
  81. package/esm2020/lib/services/abstract-menu.service.mjs +50 -0
  82. package/{esm2015/lib/services/confirmation.service.js → esm2020/lib/services/confirmation.service.mjs} +4 -4
  83. package/{esm2015/lib/services/index.js → esm2020/lib/services/index.mjs} +2 -1
  84. package/esm2020/lib/services/nav-items.service.mjs +17 -0
  85. package/esm2020/lib/services/page-alert.service.mjs +28 -0
  86. package/esm2020/lib/services/toaster.service.mjs +103 -0
  87. package/esm2020/lib/services/user-menu.service.mjs +17 -0
  88. package/esm2020/lib/theme-shared.module.mjs +162 -0
  89. package/{esm2015/lib/tokens/append-content.token.js → esm2020/lib/tokens/append-content.token.mjs} +1 -1
  90. package/esm2020/lib/tokens/http-error.token.mjs +14 -0
  91. package/{esm2015/lib/tokens/index.js → esm2020/lib/tokens/index.mjs} +1 -1
  92. package/{esm2015/lib/tokens/ngx-datatable-messages.token.js → esm2020/lib/tokens/ngx-datatable-messages.token.mjs} +1 -1
  93. package/{esm2015/lib/tokens/suppress-unsaved-changes-warning.token.js → esm2020/lib/tokens/suppress-unsaved-changes-warning.token.mjs} +1 -1
  94. package/{esm2015/lib/utils/date-parser-formatter.js → esm2020/lib/utils/date-parser-formatter.mjs} +5 -6
  95. package/{esm2015/lib/utils/index.js → esm2020/lib/utils/index.mjs} +1 -1
  96. package/{esm2015/lib/utils/validation-utils.js → esm2020/lib/utils/validation-utils.mjs} +1 -1
  97. package/{esm2015/public-api.js → esm2020/public-api.mjs} +1 -1
  98. package/{esm2015/testing/abp-ng.theme.shared-testing.js → esm2020/testing/abp-ng.theme.shared-testing.mjs} +0 -0
  99. package/{esm2015/testing/lib/models/config.js → esm2020/testing/lib/models/config.mjs} +1 -1
  100. package/{esm2015/testing/lib/models/index.js → esm2020/testing/lib/models/index.mjs} +1 -1
  101. package/esm2020/testing/lib/theme-shared-testing.module.mjs +46 -0
  102. package/{esm2015/testing/public-api.js → esm2020/testing/public-api.mjs} +1 -1
  103. package/extensions/lib/models/entity-props.d.ts +1 -1
  104. package/extensions/lib/tokens/extensions.token.d.ts +1 -1
  105. package/extensions/package.json +5 -5
  106. package/fesm2015/abp-ng.theme.shared-extensions.mjs +1329 -0
  107. package/fesm2015/abp-ng.theme.shared-extensions.mjs.map +1 -0
  108. package/fesm2015/{abp-ng.theme.shared-testing.js → abp-ng.theme.shared-testing.mjs} +5 -5
  109. package/fesm2015/abp-ng.theme.shared-testing.mjs.map +1 -0
  110. package/fesm2015/{abp-ng.theme.shared.js → abp-ng.theme.shared.mjs} +429 -430
  111. package/fesm2015/abp-ng.theme.shared.mjs.map +1 -0
  112. package/{fesm2015/abp-ng.theme.shared-extensions.js → fesm2020/abp-ng.theme.shared-extensions.mjs} +116 -135
  113. package/fesm2020/abp-ng.theme.shared-extensions.mjs.map +1 -0
  114. package/fesm2020/abp-ng.theme.shared-testing.mjs +57 -0
  115. package/fesm2020/abp-ng.theme.shared-testing.mjs.map +1 -0
  116. package/fesm2020/abp-ng.theme.shared.mjs +2202 -0
  117. package/fesm2020/abp-ng.theme.shared.mjs.map +1 -0
  118. package/lib/models/index.d.ts +2 -1
  119. package/lib/models/user-menu.d.ts +8 -0
  120. package/lib/services/abstract-menu.service.d.ts +12 -0
  121. package/lib/services/index.d.ts +1 -0
  122. package/lib/services/nav-items.service.d.ts +3 -8
  123. package/lib/services/user-menu.service.d.ts +8 -0
  124. package/package.json +39 -9
  125. package/testing/package.json +5 -5
  126. package/bundles/abp-ng.theme.shared-extensions.umd.js +0 -1904
  127. package/bundles/abp-ng.theme.shared-extensions.umd.js.map +0 -1
  128. package/bundles/abp-ng.theme.shared-testing.umd.js +0 -82
  129. package/bundles/abp-ng.theme.shared-testing.umd.js.map +0 -1
  130. package/bundles/abp-ng.theme.shared.umd.js +0 -2506
  131. package/bundles/abp-ng.theme.shared.umd.js.map +0 -1
  132. package/esm2015/extensions/lib/adapters/date-time.adapter.js +0 -34
  133. package/esm2015/extensions/lib/components/extensible-form/extensible-form-prop.component.js +0 -164
  134. package/esm2015/extensions/lib/components/extensible-form/extensible-form.component.js +0 -70
  135. package/esm2015/extensions/lib/components/extensible-table/extensible-table.component.js +0 -134
  136. package/esm2015/extensions/lib/components/grid-actions/grid-actions.component.js +0 -45
  137. package/esm2015/extensions/lib/components/page-toolbar/page-toolbar.component.js +0 -46
  138. package/esm2015/extensions/lib/enums/props.enum.js +0 -2
  139. package/esm2015/extensions/lib/models/actions.js +0 -46
  140. package/esm2015/extensions/lib/models/entity-actions.js +0 -29
  141. package/esm2015/extensions/lib/models/entity-props.js +0 -34
  142. package/esm2015/extensions/lib/models/form-props.js +0 -52
  143. package/esm2015/extensions/lib/models/internal/object-extensions.js +0 -2
  144. package/esm2015/extensions/lib/models/toolbar-actions.js +0 -41
  145. package/esm2015/extensions/lib/utils/actions.util.js +0 -9
  146. package/esm2015/extensions/lib/utils/props.util.js +0 -14
  147. package/esm2015/lib/components/breadcrumb/breadcrumb.component.js +0 -49
  148. package/esm2015/lib/components/breadcrumb-items/breadcrumb-items.component.js +0 -22
  149. package/esm2015/lib/components/button/button.component.js +0 -98
  150. package/esm2015/lib/components/confirmation/confirmation.component.js +0 -40
  151. package/esm2015/lib/components/http-error-wrapper/http-error-wrapper.component.js +0 -65
  152. package/esm2015/lib/components/loading/loading.component.js +0 -47
  153. package/esm2015/lib/components/modal/modal.component.js +0 -188
  154. package/esm2015/lib/components/toast/toast.component.js +0 -61
  155. package/esm2015/lib/components/toast-container/toast-container.component.js +0 -49
  156. package/esm2015/lib/constants/styles.js +0 -182
  157. package/esm2015/lib/directives/loading.directive.js +0 -90
  158. package/esm2015/lib/handlers/error.handler.js +0 -292
  159. package/esm2015/lib/models/common.js +0 -2
  160. package/esm2015/lib/models/confirmation.js +0 -10
  161. package/esm2015/lib/models/index.js +0 -6
  162. package/esm2015/lib/models/nav-item.js +0 -7
  163. package/esm2015/lib/models/statistics.js +0 -2
  164. package/esm2015/lib/models/toaster.js +0 -2
  165. package/esm2015/lib/services/nav-items.service.js +0 -51
  166. package/esm2015/lib/services/page-alert.service.js +0 -26
  167. package/esm2015/lib/services/toaster.service.js +0 -103
  168. package/esm2015/lib/theme-shared.module.js +0 -165
  169. package/esm2015/lib/tokens/http-error.token.js +0 -10
  170. package/esm2015/testing/lib/theme-shared-testing.module.js +0 -43
  171. package/fesm2015/abp-ng.theme.shared-extensions.js.map +0 -1
  172. package/fesm2015/abp-ng.theme.shared-testing.js.map +0 -1
  173. package/fesm2015/abp-ng.theme.shared.js.map +0 -1
@@ -1,6 +1,6 @@
1
1
  import { animation, style, animate, keyframes, trigger, state, transition, useAnimation, query } from '@angular/animations';
2
2
  import * as i0 from '@angular/core';
3
- import { Component, Input, ChangeDetectionStrategy, EventEmitter, Output, ViewChild, ViewEncapsulation, Injectable, InjectionToken, Optional, Inject, ContentChild, Directive, HostListener, HostBinding, NgModule, ComponentFactoryResolver, RendererFactory2, ApplicationRef, APP_INITIALIZER, inject, LOCALE_ID } from '@angular/core';
3
+ import { Component, Input, ChangeDetectionStrategy, EventEmitter, Output, ViewChild, ViewEncapsulation, InjectionToken, Injectable, Optional, Inject, ContentChild, Directive, HostListener, HostBinding, NgModule, ComponentFactoryResolver, RendererFactory2, ApplicationRef, APP_INITIALIZER, inject, LOCALE_ID } from '@angular/core';
4
4
  import * as i1 from '@angular/common';
5
5
  import { DOCUMENT, formatDate, DatePipe } from '@angular/common';
6
6
  import * as i1$1 from '@angular/router';
@@ -153,14 +153,11 @@ class BreadcrumbItemsComponent {
153
153
  this.items = [];
154
154
  }
155
155
  }
156
- BreadcrumbItemsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: BreadcrumbItemsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
157
- BreadcrumbItemsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.13", type: BreadcrumbItemsComponent, selector: "abp-breadcrumb-items", inputs: { items: "items" }, ngImport: i0, template: "<ol class=\"breadcrumb\" *ngIf=\"items.length\">\n <li class=\"breadcrumb-item\">\n <a routerLink=\"/\"><i class=\"fa fa-home\"></i> </a>\n </li>\n <li\n *ngFor=\"let item of items; let last = last\"\n class=\"breadcrumb-item\"\n [class.active]=\"last\"\n aria-current=\"page\"\n >\n <ng-container\n *ngTemplateOutlet=\"item.path ? linkTemplate : textTemplate; context: { $implicit: item }\"\n ></ng-container>\n </li>\n</ol>\n\n<ng-template #linkTemplate let-item>\n <a [routerLink]=\"item.path\"> {{ item.name | abpLocalization }}</a>\n</ng-template>\n\n<ng-template #textTemplate let-item>\n {{ item.name | abpLocalization }}\n</ng-template>\n", directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i1$1.RouterLinkWithHref, selector: "a[routerLink],area[routerLink]", inputs: ["routerLink", "target", "queryParams", "fragment", "queryParamsHandling", "preserveFragment", "skipLocationChange", "replaceUrl", "state", "relativeTo"] }, { type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }], pipes: { "abpLocalization": i2.LocalizationPipe } });
158
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: BreadcrumbItemsComponent, decorators: [{
156
+ BreadcrumbItemsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: BreadcrumbItemsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
157
+ BreadcrumbItemsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.1", type: BreadcrumbItemsComponent, selector: "abp-breadcrumb-items", inputs: { items: "items" }, ngImport: i0, template: "<ol class=\"breadcrumb\" *ngIf=\"items.length\">\r\n <li class=\"breadcrumb-item\">\r\n <a routerLink=\"/\"><i class=\"fa fa-home\"></i> </a>\r\n </li>\r\n <li\r\n *ngFor=\"let item of items; let last = last\"\r\n class=\"breadcrumb-item\"\r\n [class.active]=\"last\"\r\n aria-current=\"page\"\r\n >\r\n <ng-container\r\n *ngTemplateOutlet=\"item.path ? linkTemplate : textTemplate; context: { $implicit: item }\"\r\n ></ng-container>\r\n </li>\r\n</ol>\r\n\r\n<ng-template #linkTemplate let-item>\r\n <a [routerLink]=\"item.path\"> {{ item.name | abpLocalization }}</a>\r\n</ng-template>\r\n\r\n<ng-template #textTemplate let-item>\r\n {{ item.name | abpLocalization }}\r\n</ng-template>\r\n", directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i1$1.RouterLinkWithHref, selector: "a[routerLink],area[routerLink]", inputs: ["target", "queryParams", "fragment", "queryParamsHandling", "preserveFragment", "skipLocationChange", "replaceUrl", "state", "relativeTo", "routerLink"] }, { type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }], pipes: { "abpLocalization": i2.LocalizationPipe } });
158
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: BreadcrumbItemsComponent, decorators: [{
159
159
  type: Component,
160
- args: [{
161
- selector: 'abp-breadcrumb-items',
162
- templateUrl: './breadcrumb-items.component.html',
163
- }]
160
+ args: [{ selector: 'abp-breadcrumb-items', template: "<ol class=\"breadcrumb\" *ngIf=\"items.length\">\r\n <li class=\"breadcrumb-item\">\r\n <a routerLink=\"/\"><i class=\"fa fa-home\"></i> </a>\r\n </li>\r\n <li\r\n *ngFor=\"let item of items; let last = last\"\r\n class=\"breadcrumb-item\"\r\n [class.active]=\"last\"\r\n aria-current=\"page\"\r\n >\r\n <ng-container\r\n *ngTemplateOutlet=\"item.path ? linkTemplate : textTemplate; context: { $implicit: item }\"\r\n ></ng-container>\r\n </li>\r\n</ol>\r\n\r\n<ng-template #linkTemplate let-item>\r\n <a [routerLink]=\"item.path\"> {{ item.name | abpLocalization }}</a>\r\n</ng-template>\r\n\r\n<ng-template #textTemplate let-item>\r\n {{ item.name | abpLocalization }}\r\n</ng-template>\r\n" }]
164
161
  }], propDecorators: { items: [{
165
162
  type: Input
166
163
  }] } });
@@ -190,16 +187,11 @@ class BreadcrumbComponent {
190
187
  });
191
188
  }
192
189
  }
193
- BreadcrumbComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: BreadcrumbComponent, deps: [{ token: i0.ChangeDetectorRef }, { token: i1$1.Router }, { token: i2.RoutesService }, { token: i2.SubscriptionService }, { token: i2.RouterEvents }], target: i0.ɵɵFactoryTarget.Component });
194
- BreadcrumbComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.13", type: BreadcrumbComponent, selector: "abp-breadcrumb", providers: [SubscriptionService], ngImport: i0, template: "<abp-breadcrumb-items [items]=\"segments\"></abp-breadcrumb-items>\n", components: [{ type: BreadcrumbItemsComponent, selector: "abp-breadcrumb-items", inputs: ["items"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
195
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: BreadcrumbComponent, decorators: [{
190
+ BreadcrumbComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: BreadcrumbComponent, deps: [{ token: i0.ChangeDetectorRef }, { token: i1$1.Router }, { token: i2.RoutesService }, { token: i2.SubscriptionService }, { token: i2.RouterEvents }], target: i0.ɵɵFactoryTarget.Component });
191
+ BreadcrumbComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.1", type: BreadcrumbComponent, selector: "abp-breadcrumb", providers: [SubscriptionService], ngImport: i0, template: "<abp-breadcrumb-items [items]=\"segments\"></abp-breadcrumb-items>\r\n", components: [{ type: BreadcrumbItemsComponent, selector: "abp-breadcrumb-items", inputs: ["items"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
192
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: BreadcrumbComponent, decorators: [{
196
193
  type: Component,
197
- args: [{
198
- selector: 'abp-breadcrumb',
199
- templateUrl: './breadcrumb.component.html',
200
- changeDetection: ChangeDetectionStrategy.OnPush,
201
- providers: [SubscriptionService],
202
- }]
194
+ args: [{ selector: 'abp-breadcrumb', changeDetection: ChangeDetectionStrategy.OnPush, providers: [SubscriptionService], template: "<abp-breadcrumb-items [items]=\"segments\"></abp-breadcrumb-items>\r\n" }]
203
195
  }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i1$1.Router }, { type: i2.RoutesService }, { type: i2.SubscriptionService }, { type: i2.RouterEvents }]; } });
204
196
  function isAdministration(route) {
205
197
  return route.name === "AbpUiNavigation::Menu:Administration" /* Administration */;
@@ -234,38 +226,38 @@ class ButtonComponent {
234
226
  }
235
227
  }
236
228
  }
237
- ButtonComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: ButtonComponent, deps: [{ token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component });
238
- ButtonComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.13", type: ButtonComponent, selector: "abp-button", inputs: { buttonId: "buttonId", buttonClass: "buttonClass", buttonType: "buttonType", iconClass: "iconClass", loading: "loading", disabled: "disabled", attributes: "attributes" }, outputs: { click: "click", focus: "focus", blur: "blur", abpClick: "abpClick", abpFocus: "abpFocus", abpBlur: "abpBlur" }, viewQueries: [{ propertyName: "buttonRef", first: true, predicate: ["button"], descendants: true, static: true }], ngImport: i0, template: `
239
- <button
240
- #button
241
- [id]="buttonId"
242
- [attr.type]="buttonType"
243
- [ngClass]="buttonClass"
244
- [disabled]="loading || disabled"
245
- (click.stop)="click.next($event); abpClick.next($event)"
246
- (focus)="focus.next($event); abpFocus.next($event)"
247
- (blur)="blur.next($event); abpBlur.next($event)"
248
- >
249
- <i [ngClass]="icon" class="me-1"></i><ng-content></ng-content>
250
- </button>
229
+ ButtonComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: ButtonComponent, deps: [{ token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component });
230
+ ButtonComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.1", type: ButtonComponent, selector: "abp-button", inputs: { buttonId: "buttonId", buttonClass: "buttonClass", buttonType: "buttonType", iconClass: "iconClass", loading: "loading", disabled: "disabled", attributes: "attributes" }, outputs: { click: "click", focus: "focus", blur: "blur", abpClick: "abpClick", abpFocus: "abpFocus", abpBlur: "abpBlur" }, viewQueries: [{ propertyName: "buttonRef", first: true, predicate: ["button"], descendants: true, static: true }], ngImport: i0, template: `
231
+ <button
232
+ #button
233
+ [id]="buttonId"
234
+ [attr.type]="buttonType"
235
+ [ngClass]="buttonClass"
236
+ [disabled]="loading || disabled"
237
+ (click.stop)="click.next($event); abpClick.next($event)"
238
+ (focus)="focus.next($event); abpFocus.next($event)"
239
+ (blur)="blur.next($event); abpBlur.next($event)"
240
+ >
241
+ <i [ngClass]="icon" class="me-1"></i><ng-content></ng-content>
242
+ </button>
251
243
  `, isInline: true, directives: [{ type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i2.StopPropagationDirective, selector: "[click.stop]", outputs: ["click.stop"] }] });
252
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: ButtonComponent, decorators: [{
244
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: ButtonComponent, decorators: [{
253
245
  type: Component,
254
246
  args: [{
255
247
  selector: 'abp-button',
256
- template: `
257
- <button
258
- #button
259
- [id]="buttonId"
260
- [attr.type]="buttonType"
261
- [ngClass]="buttonClass"
262
- [disabled]="loading || disabled"
263
- (click.stop)="click.next($event); abpClick.next($event)"
264
- (focus)="focus.next($event); abpFocus.next($event)"
265
- (blur)="blur.next($event); abpBlur.next($event)"
266
- >
267
- <i [ngClass]="icon" class="me-1"></i><ng-content></ng-content>
268
- </button>
248
+ template: `
249
+ <button
250
+ #button
251
+ [id]="buttonId"
252
+ [attr.type]="buttonType"
253
+ [ngClass]="buttonClass"
254
+ [disabled]="loading || disabled"
255
+ (click.stop)="click.next($event); abpClick.next($event)"
256
+ (focus)="focus.next($event); abpFocus.next($event)"
257
+ (blur)="blur.next($event); abpBlur.next($event)"
258
+ >
259
+ <i [ngClass]="icon" class="me-1"></i><ng-content></ng-content>
260
+ </button>
269
261
  `,
270
262
  }]
271
263
  }], ctorParameters: function () { return [{ type: i0.Renderer2 }]; }, propDecorators: { buttonId: [{
@@ -333,15 +325,11 @@ class ConfirmationComponent {
333
325
  }
334
326
  }
335
327
  }
336
- ConfirmationComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: ConfirmationComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
337
- ConfirmationComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.13", type: ConfirmationComponent, selector: "abp-confirmation", ngImport: i0, template: "<div class=\"confirmation\" *ngIf=\"confirmation$ | async as data\">\n <div\n class=\"confirmation-backdrop\"\n (click)=\"data.options?.dismissible ? close(dismiss) : null\"\n ></div>\n <div class=\"confirmation-dialog\">\n <div class=\"icon-container\" [ngClass]=\"data.severity\" *ngIf=\"data.severity\">\n <i class=\"fa icon\" [ngClass]=\"getIconClass(data)\"></i>\n </div>\n <div class=\"content\">\n <h1\n class=\"title\"\n *ngIf=\"data.title\"\n [innerHTML]=\"data.title | abpLocalization: data.options?.titleLocalizationParams\"\n ></h1>\n <p\n class=\"message\"\n *ngIf=\"data.message\"\n [innerHTML]=\"data.message | abpLocalization: data.options?.messageLocalizationParams\"\n ></p>\n </div>\n <div class=\"footer\">\n <button\n id=\"cancel\"\n class=\"confirmation-button confirmation-button--reject\"\n [innerHTML]=\"data.options?.cancelText || 'AbpUi::Cancel' | abpLocalization\"\n *ngIf=\"!data?.options?.hideCancelBtn\"\n (click)=\"close(reject)\"\n ></button>\n <button\n id=\"confirm\"\n class=\"confirmation-button confirmation-button--approve\"\n [innerHTML]=\"data.options?.yesText || 'AbpUi::Yes' | abpLocalization\"\n *ngIf=\"!data?.options?.hideYesBtn\"\n (click)=\"close(confirm)\"\n ></button>\n </div>\n </div>\n</div>\n", styles: [".confirmation{position:fixed;top:0;right:0;bottom:0;left:0;display:flex;align-items:center;justify-content:center;z-index:1060}.confirmation .confirmation-backdrop{position:fixed;top:0;left:0;width:100vw;height:100vh;z-index:1061!important}.confirmation .confirmation-dialog{display:flex;flex-direction:column;margin:20px auto;padding:0;width:450px;min-height:300px;z-index:1062!important}@media screen and (max-width: 500px){.confirmation .confirmation-dialog{width:90vw}}.confirmation .confirmation-dialog .icon-container{display:flex;align-items:center;justify-content:center;margin:0 0 10px;padding:20px}.confirmation .confirmation-dialog .icon-container .icon{width:100px;height:100px;stroke-width:1;font-size:80px;text-align:center}.confirmation .confirmation-dialog .content{flex-grow:1;display:block}.confirmation .confirmation-dialog .content .title{display:block;margin:0;padding:0;font-size:27px;font-weight:600;text-align:center}.confirmation .confirmation-dialog .content .message{display:block;margin:10px auto;padding:20px;font-size:16px;font-weight:400;text-align:center}.confirmation .confirmation-dialog .footer{display:flex;align-items:center;justify-content:flex-end;margin:10px 0 0;padding:20px;width:100%}.confirmation .confirmation-dialog .footer .confirmation-button{display:inline-block;margin:0 5px;padding:10px 20px;border:none;border-radius:6px;font-size:14px;font-weight:600}\n"], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }], pipes: { "async": i1.AsyncPipe, "abpLocalization": i2.LocalizationPipe } });
338
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: ConfirmationComponent, decorators: [{
328
+ ConfirmationComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: ConfirmationComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
329
+ ConfirmationComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.1", type: ConfirmationComponent, selector: "abp-confirmation", ngImport: i0, template: "<div class=\"confirmation\" *ngIf=\"confirmation$ | async as data\">\r\n <div\r\n class=\"confirmation-backdrop\"\r\n (click)=\"data.options?.dismissible ? close(dismiss) : null\"\r\n ></div>\r\n <div class=\"confirmation-dialog\">\r\n <div class=\"icon-container\" [ngClass]=\"data.severity\" *ngIf=\"data.severity\">\r\n <i class=\"fa icon\" [ngClass]=\"getIconClass(data)\"></i>\r\n </div>\r\n <div class=\"content\">\r\n <h1\r\n class=\"title\"\r\n *ngIf=\"data.title\"\r\n [innerHTML]=\"data.title | abpLocalization: data.options?.titleLocalizationParams\"\r\n ></h1>\r\n <p\r\n class=\"message\"\r\n *ngIf=\"data.message\"\r\n [innerHTML]=\"data.message | abpLocalization: data.options?.messageLocalizationParams\"\r\n ></p>\r\n </div>\r\n <div class=\"footer\">\r\n <button\r\n id=\"cancel\"\r\n class=\"confirmation-button confirmation-button--reject\"\r\n [innerHTML]=\"data.options?.cancelText || 'AbpUi::Cancel' | abpLocalization\"\r\n *ngIf=\"!data?.options?.hideCancelBtn\"\r\n (click)=\"close(reject)\"\r\n ></button>\r\n <button\r\n id=\"confirm\"\r\n class=\"confirmation-button confirmation-button--approve\"\r\n [innerHTML]=\"data.options?.yesText || 'AbpUi::Yes' | abpLocalization\"\r\n *ngIf=\"!data?.options?.hideYesBtn\"\r\n (click)=\"close(confirm)\"\r\n ></button>\r\n </div>\r\n </div>\r\n</div>\r\n", styles: [".confirmation{position:fixed;top:0;right:0;bottom:0;left:0;display:flex;align-items:center;justify-content:center;z-index:1060}.confirmation .confirmation-backdrop{position:fixed;top:0;left:0;width:100vw;height:100vh;z-index:1061!important}.confirmation .confirmation-dialog{display:flex;flex-direction:column;margin:20px auto;padding:0;width:450px;min-height:300px;z-index:1062!important}@media screen and (max-width: 500px){.confirmation .confirmation-dialog{width:90vw}}.confirmation .confirmation-dialog .icon-container{display:flex;align-items:center;justify-content:center;margin:0 0 10px;padding:20px}.confirmation .confirmation-dialog .icon-container .icon{width:100px;height:100px;stroke-width:1;font-size:80px;text-align:center}.confirmation .confirmation-dialog .content{flex-grow:1;display:block}.confirmation .confirmation-dialog .content .title{display:block;margin:0;padding:0;font-size:27px;font-weight:600;text-align:center}.confirmation .confirmation-dialog .content .message{display:block;margin:10px auto;padding:20px;font-size:16px;font-weight:400;text-align:center}.confirmation .confirmation-dialog .footer{display:flex;align-items:center;justify-content:flex-end;margin:10px 0 0;padding:20px;width:100%}.confirmation .confirmation-dialog .footer .confirmation-button{display:inline-block;margin:0 5px;padding:10px 20px;border:none;border-radius:6px;font-size:14px;font-weight:600}\n"], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }], pipes: { "async": i1.AsyncPipe, "abpLocalization": i2.LocalizationPipe } });
330
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: ConfirmationComponent, decorators: [{
339
331
  type: Component,
340
- args: [{
341
- selector: 'abp-confirmation',
342
- templateUrl: './confirmation.component.html',
343
- styleUrls: ['./confirmation.component.scss'],
344
- }]
332
+ args: [{ selector: 'abp-confirmation', template: "<div class=\"confirmation\" *ngIf=\"confirmation$ | async as data\">\r\n <div\r\n class=\"confirmation-backdrop\"\r\n (click)=\"data.options?.dismissible ? close(dismiss) : null\"\r\n ></div>\r\n <div class=\"confirmation-dialog\">\r\n <div class=\"icon-container\" [ngClass]=\"data.severity\" *ngIf=\"data.severity\">\r\n <i class=\"fa icon\" [ngClass]=\"getIconClass(data)\"></i>\r\n </div>\r\n <div class=\"content\">\r\n <h1\r\n class=\"title\"\r\n *ngIf=\"data.title\"\r\n [innerHTML]=\"data.title | abpLocalization: data.options?.titleLocalizationParams\"\r\n ></h1>\r\n <p\r\n class=\"message\"\r\n *ngIf=\"data.message\"\r\n [innerHTML]=\"data.message | abpLocalization: data.options?.messageLocalizationParams\"\r\n ></p>\r\n </div>\r\n <div class=\"footer\">\r\n <button\r\n id=\"cancel\"\r\n class=\"confirmation-button confirmation-button--reject\"\r\n [innerHTML]=\"data.options?.cancelText || 'AbpUi::Cancel' | abpLocalization\"\r\n *ngIf=\"!data?.options?.hideCancelBtn\"\r\n (click)=\"close(reject)\"\r\n ></button>\r\n <button\r\n id=\"confirm\"\r\n class=\"confirmation-button confirmation-button--approve\"\r\n [innerHTML]=\"data.options?.yesText || 'AbpUi::Yes' | abpLocalization\"\r\n *ngIf=\"!data?.options?.hideYesBtn\"\r\n (click)=\"close(confirm)\"\r\n ></button>\r\n </div>\r\n </div>\r\n</div>\r\n", styles: [".confirmation{position:fixed;top:0;right:0;bottom:0;left:0;display:flex;align-items:center;justify-content:center;z-index:1060}.confirmation .confirmation-backdrop{position:fixed;top:0;left:0;width:100vw;height:100vh;z-index:1061!important}.confirmation .confirmation-dialog{display:flex;flex-direction:column;margin:20px auto;padding:0;width:450px;min-height:300px;z-index:1062!important}@media screen and (max-width: 500px){.confirmation .confirmation-dialog{width:90vw}}.confirmation .confirmation-dialog .icon-container{display:flex;align-items:center;justify-content:center;margin:0 0 10px;padding:20px}.confirmation .confirmation-dialog .icon-container .icon{width:100px;height:100px;stroke-width:1;font-size:80px;text-align:center}.confirmation .confirmation-dialog .content{flex-grow:1;display:block}.confirmation .confirmation-dialog .content .title{display:block;margin:0;padding:0;font-size:27px;font-weight:600;text-align:center}.confirmation .confirmation-dialog .content .message{display:block;margin:10px auto;padding:20px;font-size:16px;font-weight:400;text-align:center}.confirmation .confirmation-dialog .footer{display:flex;align-items:center;justify-content:flex-end;margin:10px 0 0;padding:20px;width:100%}.confirmation .confirmation-dialog .footer .confirmation-button{display:inline-block;margin:0 5px;padding:10px 20px;border:none;border-radius:6px;font-size:14px;font-weight:600}\n"] }]
345
333
  }] });
346
334
 
347
335
  class HttpErrorWrapperComponent {
@@ -386,16 +374,11 @@ class HttpErrorWrapperComponent {
386
374
  this.destroy$.complete();
387
375
  }
388
376
  }
389
- HttpErrorWrapperComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: HttpErrorWrapperComponent, deps: [{ token: i2.SubscriptionService }], target: i0.ɵɵFactoryTarget.Component });
390
- HttpErrorWrapperComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.13", type: HttpErrorWrapperComponent, selector: "abp-http-error-wrapper", providers: [SubscriptionService], viewQueries: [{ propertyName: "containerRef", first: true, predicate: ["container"], descendants: true }], ngImport: i0, template: "<div\n #container\n id=\"abp-http-error-container\"\n class=\"error\"\n [style.backgroundColor]=\"backgroundColor\"\n>\n <button\n *ngIf=\"!hideCloseIcon\"\n id=\"abp-close-button\"\n type=\"button\"\n class=\"close me-2\"\n (click)=\"destroy()\"\n >\n <span aria-hidden=\"true\">&times;</span>\n </button>\n\n <div *ngIf=\"!customComponent\" class=\"row centered\">\n <div class=\"col-md-12\">\n <div class=\"error-template\">\n <h1>{{ statusText }} {{ title | abpLocalization }}</h1>\n <div class=\"error-details\">\n {{ details | abpLocalization }}\n </div>\n <div class=\"error-actions\">\n <a\n *ngIf=\"isHomeShow\"\n (click)=\"destroy()\"\n routerLink=\"/\"\n class=\"btn btn-primary btn-md mt-2\"\n ><span class=\"glyphicon glyphicon-home\"></span>\n {{ { key: '::Menu:Home', defaultValue: 'Home' } | abpLocalization }}\n </a>\n </div>\n </div>\n </div>\n </div>\n</div>\n", styles: [".error{position:fixed;top:0;width:100vw;height:100vh;z-index:999999}.centered{position:fixed;top:50%;left:50%;transform:translate(-50%,-50%)}\n"], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i1$1.RouterLinkWithHref, selector: "a[routerLink],area[routerLink]", inputs: ["routerLink", "target", "queryParams", "fragment", "queryParamsHandling", "preserveFragment", "skipLocationChange", "replaceUrl", "state", "relativeTo"] }], pipes: { "abpLocalization": i2.LocalizationPipe } });
391
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: HttpErrorWrapperComponent, decorators: [{
377
+ HttpErrorWrapperComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: HttpErrorWrapperComponent, deps: [{ token: i2.SubscriptionService }], target: i0.ɵɵFactoryTarget.Component });
378
+ HttpErrorWrapperComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.1", type: HttpErrorWrapperComponent, selector: "abp-http-error-wrapper", providers: [SubscriptionService], viewQueries: [{ propertyName: "containerRef", first: true, predicate: ["container"], descendants: true }], ngImport: i0, template: "<div\r\n #container\r\n id=\"abp-http-error-container\"\r\n class=\"error\"\r\n [style.backgroundColor]=\"backgroundColor\"\r\n>\r\n <button\r\n *ngIf=\"!hideCloseIcon\"\r\n id=\"abp-close-button\"\r\n type=\"button\"\r\n class=\"btn-close me-2\"\r\n (click)=\"destroy()\"\r\n ></button>\r\n\r\n <div *ngIf=\"!customComponent\" class=\"row centered\">\r\n <div class=\"col-md-12\">\r\n <div class=\"error-template\">\r\n <h1>{{ statusText }} {{ title | abpLocalization }}</h1>\r\n <div class=\"error-details\">\r\n {{ details | abpLocalization }}\r\n </div>\r\n <div class=\"error-actions\">\r\n <a\r\n *ngIf=\"isHomeShow\"\r\n (click)=\"destroy()\"\r\n routerLink=\"/\"\r\n class=\"btn btn-primary btn-md mt-2\"\r\n ><span class=\"glyphicon glyphicon-home\"></span>\r\n {{ { key: '::Menu:Home', defaultValue: 'Home' } | abpLocalization }}\r\n </a>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n</div>\r\n", styles: [".error{position:fixed;top:0;width:100vw;height:100vh;z-index:999999}.centered{position:fixed;top:50%;left:50%;transform:translate(-50%,-50%)}\n"], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i1$1.RouterLinkWithHref, selector: "a[routerLink],area[routerLink]", inputs: ["target", "queryParams", "fragment", "queryParamsHandling", "preserveFragment", "skipLocationChange", "replaceUrl", "state", "relativeTo", "routerLink"] }], pipes: { "abpLocalization": i2.LocalizationPipe } });
379
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: HttpErrorWrapperComponent, decorators: [{
392
380
  type: Component,
393
- args: [{
394
- selector: 'abp-http-error-wrapper',
395
- templateUrl: './http-error-wrapper.component.html',
396
- styleUrls: ['http-error-wrapper.component.scss'],
397
- providers: [SubscriptionService],
398
- }]
381
+ args: [{ selector: 'abp-http-error-wrapper', providers: [SubscriptionService], template: "<div\r\n #container\r\n id=\"abp-http-error-container\"\r\n class=\"error\"\r\n [style.backgroundColor]=\"backgroundColor\"\r\n>\r\n <button\r\n *ngIf=\"!hideCloseIcon\"\r\n id=\"abp-close-button\"\r\n type=\"button\"\r\n class=\"btn-close me-2\"\r\n (click)=\"destroy()\"\r\n ></button>\r\n\r\n <div *ngIf=\"!customComponent\" class=\"row centered\">\r\n <div class=\"col-md-12\">\r\n <div class=\"error-template\">\r\n <h1>{{ statusText }} {{ title | abpLocalization }}</h1>\r\n <div class=\"error-details\">\r\n {{ details | abpLocalization }}\r\n </div>\r\n <div class=\"error-actions\">\r\n <a\r\n *ngIf=\"isHomeShow\"\r\n (click)=\"destroy()\"\r\n routerLink=\"/\"\r\n class=\"btn btn-primary btn-md mt-2\"\r\n ><span class=\"glyphicon glyphicon-home\"></span>\r\n {{ { key: '::Menu:Home', defaultValue: 'Home' } | abpLocalization }}\r\n </a>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n</div>\r\n", styles: [".error{position:fixed;top:0;width:100vw;height:100vh;z-index:999999}.centered{position:fixed;top:50%;left:50%;transform:translate(-50%,-50%)}\n"] }]
399
382
  }], ctorParameters: function () { return [{ type: i2.SubscriptionService }]; }, propDecorators: { containerRef: [{
400
383
  type: ViewChild,
401
384
  args: ['container', { static: false }]
@@ -477,40 +460,35 @@ class LoaderBarComponent {
477
460
  this.timer = timer(this.stopDelay).subscribe(this.clearProgress);
478
461
  }
479
462
  }
480
- LoaderBarComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: LoaderBarComponent, deps: [{ token: i1$1.Router }, { token: i0.ChangeDetectorRef }, { token: i2.SubscriptionService }, { token: i2.HttpWaitService }, { token: i2.RouterWaitService }], target: i0.ɵɵFactoryTarget.Component });
481
- LoaderBarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.13", type: LoaderBarComponent, selector: "abp-loader-bar", inputs: { isLoading: "isLoading", containerClass: "containerClass", color: "color" }, providers: [SubscriptionService], ngImport: i0, template: `
482
- <div id="abp-loader-bar" [ngClass]="containerClass" [class.is-loading]="isLoading">
483
- <div
484
- class="abp-progress"
485
- [class.progressing]="progressLevel"
486
- [style.width.vw]="progressLevel"
487
- [ngStyle]="{
488
- 'background-color': color,
489
- 'box-shadow': boxShadow
490
- }"
491
- ></div>
492
- </div>
463
+ LoaderBarComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: LoaderBarComponent, deps: [{ token: i1$1.Router }, { token: i0.ChangeDetectorRef }, { token: i2.SubscriptionService }, { token: i2.HttpWaitService }, { token: i2.RouterWaitService }], target: i0.ɵɵFactoryTarget.Component });
464
+ LoaderBarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.1", type: LoaderBarComponent, selector: "abp-loader-bar", inputs: { isLoading: "isLoading", containerClass: "containerClass", color: "color" }, providers: [SubscriptionService], ngImport: i0, template: `
465
+ <div id="abp-loader-bar" [ngClass]="containerClass" [class.is-loading]="isLoading">
466
+ <div
467
+ class="abp-progress"
468
+ [class.progressing]="progressLevel"
469
+ [style.width.vw]="progressLevel"
470
+ [ngStyle]="{
471
+ 'background-color': color,
472
+ 'box-shadow': boxShadow
473
+ }"
474
+ ></div>
475
+ </div>
493
476
  `, isInline: true, styles: [".abp-loader-bar{left:0;opacity:0;position:fixed;top:0;transition:opacity .4s linear .4s;z-index:99999}.abp-loader-bar.is-loading{opacity:1;transition:none}.abp-loader-bar .abp-progress{height:3px;left:0;position:fixed;top:0}.abp-loader-bar .abp-progress.progressing{transition:width .4s ease}\n"], directives: [{ type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }] });
494
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: LoaderBarComponent, decorators: [{
477
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: LoaderBarComponent, decorators: [{
495
478
  type: Component,
496
- args: [{
497
- selector: 'abp-loader-bar',
498
- template: `
499
- <div id="abp-loader-bar" [ngClass]="containerClass" [class.is-loading]="isLoading">
500
- <div
501
- class="abp-progress"
502
- [class.progressing]="progressLevel"
503
- [style.width.vw]="progressLevel"
504
- [ngStyle]="{
505
- 'background-color': color,
506
- 'box-shadow': boxShadow
507
- }"
508
- ></div>
509
- </div>
510
- `,
511
- styleUrls: ['./loader-bar.component.scss'],
512
- providers: [SubscriptionService],
513
- }]
479
+ args: [{ selector: 'abp-loader-bar', template: `
480
+ <div id="abp-loader-bar" [ngClass]="containerClass" [class.is-loading]="isLoading">
481
+ <div
482
+ class="abp-progress"
483
+ [class.progressing]="progressLevel"
484
+ [style.width.vw]="progressLevel"
485
+ [ngStyle]="{
486
+ 'background-color': color,
487
+ 'box-shadow': boxShadow
488
+ }"
489
+ ></div>
490
+ </div>
491
+ `, providers: [SubscriptionService], styles: [".abp-loader-bar{left:0;opacity:0;position:fixed;top:0;transition:opacity .4s linear .4s;z-index:99999}.abp-loader-bar.is-loading{opacity:1;transition:none}.abp-loader-bar .abp-progress{height:3px;left:0;position:fixed;top:0}.abp-loader-bar .abp-progress.progressing{transition:width .4s ease}\n"] }]
514
492
  }], ctorParameters: function () { return [{ type: i1$1.Router }, { type: i0.ChangeDetectorRef }, { type: i2.SubscriptionService }, { type: i2.HttpWaitService }, { type: i2.RouterWaitService }]; }, propDecorators: { isLoading: [{
515
493
  type: Input
516
494
  }], containerClass: [{
@@ -521,49 +499,51 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.13", ngImpo
521
499
 
522
500
  class LoadingComponent {
523
501
  }
524
- LoadingComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: LoadingComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
525
- LoadingComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.13", type: LoadingComponent, selector: "abp-loading", ngImport: i0, template: `
526
- <div class="abp-loading">
527
- <i class="fa fa-spinner fa-pulse abp-spinner"></i>
528
- </div>
529
- `, isInline: true, styles: ["\n .abp-loading {\n position: absolute;\n width: 100%;\n height: 100%;\n top: 0;\n left: 0;\n z-index: 1040;\n }\n\n .abp-loading .abp-spinner {\n position: absolute;\n top: 50%;\n left: 50%;\n font-size: 14px;\n -moz-transform: translateX(-50%) translateY(-50%);\n -o-transform: translateX(-50%) translateY(-50%);\n -ms-transform: translateX(-50%) translateY(-50%);\n -webkit-transform: translateX(-50%) translateY(-50%);\n transform: translateX(-50%) translateY(-50%);\n }\n "], encapsulation: i0.ViewEncapsulation.None });
530
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: LoadingComponent, decorators: [{
502
+ LoadingComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: LoadingComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
503
+ LoadingComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.1", type: LoadingComponent, selector: "abp-loading", ngImport: i0, template: `
504
+ <div class="abp-loading">
505
+ <i class="fa fa-spinner fa-pulse abp-spinner"></i>
506
+ </div>
507
+ `, isInline: true, styles: [".abp-loading{position:absolute;width:100%;height:100%;top:0;left:0;z-index:1040}.abp-loading .abp-spinner{position:absolute;top:50%;left:50%;font-size:14px;transform:translate(-50%) translateY(-50%)}\n"], encapsulation: i0.ViewEncapsulation.None });
508
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: LoadingComponent, decorators: [{
531
509
  type: Component,
532
510
  args: [{
533
511
  selector: 'abp-loading',
534
- template: `
535
- <div class="abp-loading">
536
- <i class="fa fa-spinner fa-pulse abp-spinner"></i>
537
- </div>
512
+ template: `
513
+ <div class="abp-loading">
514
+ <i class="fa fa-spinner fa-pulse abp-spinner"></i>
515
+ </div>
538
516
  `,
539
517
  encapsulation: ViewEncapsulation.None,
540
518
  styles: [
541
- `
542
- .abp-loading {
543
- position: absolute;
544
- width: 100%;
545
- height: 100%;
546
- top: 0;
547
- left: 0;
548
- z-index: 1040;
549
- }
550
-
551
- .abp-loading .abp-spinner {
552
- position: absolute;
553
- top: 50%;
554
- left: 50%;
555
- font-size: 14px;
556
- -moz-transform: translateX(-50%) translateY(-50%);
557
- -o-transform: translateX(-50%) translateY(-50%);
558
- -ms-transform: translateX(-50%) translateY(-50%);
559
- -webkit-transform: translateX(-50%) translateY(-50%);
560
- transform: translateX(-50%) translateY(-50%);
561
- }
519
+ `
520
+ .abp-loading {
521
+ position: absolute;
522
+ width: 100%;
523
+ height: 100%;
524
+ top: 0;
525
+ left: 0;
526
+ z-index: 1040;
527
+ }
528
+
529
+ .abp-loading .abp-spinner {
530
+ position: absolute;
531
+ top: 50%;
532
+ left: 50%;
533
+ font-size: 14px;
534
+ -moz-transform: translateX(-50%) translateY(-50%);
535
+ -o-transform: translateX(-50%) translateY(-50%);
536
+ -ms-transform: translateX(-50%) translateY(-50%);
537
+ -webkit-transform: translateX(-50%) translateY(-50%);
538
+ transform: translateX(-50%) translateY(-50%);
539
+ }
562
540
  `,
563
541
  ],
564
542
  }]
565
543
  }] });
566
544
 
545
+ const SUPPRESS_UNSAVED_CHANGES_WARNING = new InjectionToken('SUPPRESS_UNSAVED_CHANGES_WARNING');
546
+
567
547
  class ConfirmationService {
568
548
  constructor(contentProjectionService) {
569
549
  this.contentProjectionService = contentProjectionService;
@@ -617,15 +597,13 @@ class ConfirmationService {
617
597
  });
618
598
  }
619
599
  }
620
- ConfirmationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: ConfirmationService, deps: [{ token: i2.ContentProjectionService }], target: i0.ɵɵFactoryTarget.Injectable });
621
- ConfirmationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: ConfirmationService, providedIn: 'root' });
622
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: ConfirmationService, decorators: [{
600
+ ConfirmationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: ConfirmationService, deps: [{ token: i2.ContentProjectionService }], target: i0.ɵɵFactoryTarget.Injectable });
601
+ ConfirmationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: ConfirmationService, providedIn: 'root' });
602
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: ConfirmationService, decorators: [{
623
603
  type: Injectable,
624
604
  args: [{ providedIn: 'root' }]
625
605
  }], ctorParameters: function () { return [{ type: i2.ContentProjectionService }]; } });
626
606
 
627
- const SUPPRESS_UNSAVED_CHANGES_WARNING = new InjectionToken('SUPPRESS_UNSAVED_CHANGES_WARNING');
628
-
629
607
  class ModalRefService {
630
608
  constructor() {
631
609
  this.modalRefs = [];
@@ -643,9 +621,9 @@ class ModalRefService {
643
621
  this.modalRefs.forEach(modal => modal.dismiss(mode));
644
622
  }
645
623
  }
646
- ModalRefService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: ModalRefService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
647
- ModalRefService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: ModalRefService, providedIn: 'root' });
648
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: ModalRefService, decorators: [{
624
+ ModalRefService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: ModalRefService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
625
+ ModalRefService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: ModalRefService, providedIn: 'root' });
626
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: ModalRefService, decorators: [{
649
627
  type: Injectable,
650
628
  args: [{ providedIn: 'root' }]
651
629
  }] });
@@ -745,7 +723,7 @@ class ModalComponent {
745
723
  return;
746
724
  this.isConfirmationOpen = true;
747
725
  this.confirmationService
748
- .warn('AbpAccount::AreYouSureYouWantToCancelEditingWarningMessage', 'AbpAccount::AreYouSure', { dismissible: false })
726
+ .warn('AbpUi::AreYouSureYouWantToCancelEditingWarningMessage', 'AbpUi::AreYouSure', { dismissible: false })
749
727
  .subscribe((status) => {
750
728
  this.isConfirmationOpen = false;
751
729
  if (status === Confirmation.Status.confirm) {
@@ -774,22 +752,19 @@ class ModalComponent {
774
752
  this.init.emit();
775
753
  }
776
754
  }
777
- ModalComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: ModalComponent, deps: [{ token: ConfirmationService }, { token: i2.SubscriptionService }, { token: SUPPRESS_UNSAVED_CHANGES_WARNING, optional: true }, { token: i3.NgbModal }, { token: ModalRefService }], target: i0.ɵɵFactoryTarget.Component });
778
- ModalComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.13", type: ModalComponent, selector: "abp-modal", inputs: { visible: "visible", busy: "busy", options: "options", suppressUnsavedChangesWarning: "suppressUnsavedChangesWarning" }, outputs: { visibleChange: "visibleChange", init: "init", appear: "appear", disappear: "disappear" }, providers: [SubscriptionService], queries: [{ propertyName: "abpHeader", first: true, predicate: ["abpHeader"], descendants: true }, { propertyName: "abpBody", first: true, predicate: ["abpBody"], descendants: true }, { propertyName: "abpFooter", first: true, predicate: ["abpFooter"], descendants: true }, { propertyName: "abpSubmit", first: true, predicate: ButtonComponent, descendants: true, read: ButtonComponent }], viewQueries: [{ propertyName: "modalContent", first: true, predicate: ["modalContent"], descendants: true }], ngImport: i0, template: "<ng-content></ng-content>\n\n<ng-template #modalContent let-modal>\n <div *ngIf=\"abpHeader\" id=\"abp-modal-header\" class=\"modal-header\">\n <ng-container *ngTemplateOutlet=\"abpHeader\"></ng-container>\n \u200B\n <button\n id=\"abp-modal-close-button\"\n type=\"button\"\n class=\"btn-sm btn-close\"\n aria-label=\"Close\"\n (click)=\"modal.dismiss()\"\n ></button>\n </div>\n <div *ngIf=\"abpBody\" id=\"abp-modal-body\" class=\"modal-body\">\n <ng-container *ngTemplateOutlet=\"abpBody\"></ng-container>\n </div>\n <div *ngIf=\"abpFooter\" id=\"abp-modal-footer\" class=\"modal-footer\">\n <ng-container *ngTemplateOutlet=\"abpFooter\"></ng-container>\n </div>\n</ng-template>\n", styles: [".modal.show{display:block!important}.modal-backdrop{opacity:.8}.modal::-webkit-scrollbar{width:7px}.modal::-webkit-scrollbar-track{background:#ddd}.modal::-webkit-scrollbar-thumb{background:#8a8686}.modal-dialog{z-index:1050}\n"], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }] });
779
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: ModalComponent, decorators: [{
755
+ ModalComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: ModalComponent, deps: [{ token: ConfirmationService }, { token: i2.SubscriptionService }, { token: SUPPRESS_UNSAVED_CHANGES_WARNING, optional: true }, { token: i3.NgbModal }, { token: ModalRefService }], target: i0.ɵɵFactoryTarget.Component });
756
+ ModalComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.1", type: ModalComponent, selector: "abp-modal", inputs: { visible: "visible", busy: "busy", options: "options", suppressUnsavedChangesWarning: "suppressUnsavedChangesWarning" }, outputs: { visibleChange: "visibleChange", init: "init", appear: "appear", disappear: "disappear" }, providers: [SubscriptionService], queries: [{ propertyName: "abpHeader", first: true, predicate: ["abpHeader"], descendants: true }, { propertyName: "abpBody", first: true, predicate: ["abpBody"], descendants: true }, { propertyName: "abpFooter", first: true, predicate: ["abpFooter"], descendants: true }, { propertyName: "abpSubmit", first: true, predicate: ButtonComponent, descendants: true, read: ButtonComponent }], viewQueries: [{ propertyName: "modalContent", first: true, predicate: ["modalContent"], descendants: true }], ngImport: i0, template: "<ng-content></ng-content>\r\n\r\n<ng-template #modalContent let-modal>\r\n <div *ngIf=\"abpHeader\" id=\"abp-modal-header\" class=\"modal-header\">\r\n <ng-container *ngTemplateOutlet=\"abpHeader\"></ng-container>\r\n \u200B\r\n <button\r\n id=\"abp-modal-close-button\"\r\n type=\"button\"\r\n class=\"btn-sm btn-close\"\r\n aria-label=\"Close\"\r\n (click)=\"modal.dismiss()\"\r\n ></button>\r\n </div>\r\n <div *ngIf=\"abpBody\" id=\"abp-modal-body\" class=\"modal-body\">\r\n <ng-container *ngTemplateOutlet=\"abpBody\"></ng-container>\r\n </div>\r\n <div *ngIf=\"abpFooter\" id=\"abp-modal-footer\" class=\"modal-footer\">\r\n <ng-container *ngTemplateOutlet=\"abpFooter\"></ng-container>\r\n </div>\r\n</ng-template>\r\n", styles: [".modal.show{display:block!important}.modal-backdrop{opacity:.8}.modal::-webkit-scrollbar{width:7px}.modal::-webkit-scrollbar-track{background:#ddd}.modal::-webkit-scrollbar-thumb{background:#8a8686}.modal-dialog{z-index:1050}\n"], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }] });
757
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: ModalComponent, decorators: [{
780
758
  type: Component,
781
- args: [{
782
- selector: 'abp-modal',
783
- templateUrl: './modal.component.html',
784
- styleUrls: ['./modal.component.scss'],
785
- providers: [SubscriptionService],
786
- }]
787
- }], ctorParameters: function () { return [{ type: ConfirmationService }, { type: i2.SubscriptionService }, { type: undefined, decorators: [{
788
- type: Optional
789
- }, {
790
- type: Inject,
791
- args: [SUPPRESS_UNSAVED_CHANGES_WARNING]
792
- }] }, { type: i3.NgbModal }, { type: ModalRefService }]; }, propDecorators: { visible: [{
759
+ args: [{ selector: 'abp-modal', providers: [SubscriptionService], template: "<ng-content></ng-content>\r\n\r\n<ng-template #modalContent let-modal>\r\n <div *ngIf=\"abpHeader\" id=\"abp-modal-header\" class=\"modal-header\">\r\n <ng-container *ngTemplateOutlet=\"abpHeader\"></ng-container>\r\n \u200B\r\n <button\r\n id=\"abp-modal-close-button\"\r\n type=\"button\"\r\n class=\"btn-sm btn-close\"\r\n aria-label=\"Close\"\r\n (click)=\"modal.dismiss()\"\r\n ></button>\r\n </div>\r\n <div *ngIf=\"abpBody\" id=\"abp-modal-body\" class=\"modal-body\">\r\n <ng-container *ngTemplateOutlet=\"abpBody\"></ng-container>\r\n </div>\r\n <div *ngIf=\"abpFooter\" id=\"abp-modal-footer\" class=\"modal-footer\">\r\n <ng-container *ngTemplateOutlet=\"abpFooter\"></ng-container>\r\n </div>\r\n</ng-template>\r\n", styles: [".modal.show{display:block!important}.modal-backdrop{opacity:.8}.modal::-webkit-scrollbar{width:7px}.modal::-webkit-scrollbar-track{background:#ddd}.modal::-webkit-scrollbar-thumb{background:#8a8686}.modal-dialog{z-index:1050}\n"] }]
760
+ }], ctorParameters: function () {
761
+ return [{ type: ConfirmationService }, { type: i2.SubscriptionService }, { type: undefined, decorators: [{
762
+ type: Optional
763
+ }, {
764
+ type: Inject,
765
+ args: [SUPPRESS_UNSAVED_CHANGES_WARNING]
766
+ }] }, { type: i3.NgbModal }, { type: ModalRefService }];
767
+ }, propDecorators: { visible: [{
793
768
  type: Input
794
769
  }], busy: [{
795
770
  type: Input
@@ -834,14 +809,16 @@ class ModalCloseDirective {
834
809
  (_a = this.modal) === null || _a === void 0 ? void 0 : _a.close();
835
810
  }
836
811
  }
837
- ModalCloseDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: ModalCloseDirective, deps: [{ token: ModalComponent, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
838
- ModalCloseDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.13", type: ModalCloseDirective, selector: "[abpClose]", host: { listeners: { "click": "onClick()" } }, ngImport: i0 });
839
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: ModalCloseDirective, decorators: [{
812
+ ModalCloseDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: ModalCloseDirective, deps: [{ token: ModalComponent, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
813
+ ModalCloseDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.1.1", type: ModalCloseDirective, selector: "[abpClose]", host: { listeners: { "click": "onClick()" } }, ngImport: i0 });
814
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: ModalCloseDirective, decorators: [{
840
815
  type: Directive,
841
816
  args: [{ selector: '[abpClose]' }]
842
- }], ctorParameters: function () { return [{ type: ModalComponent, decorators: [{
843
- type: Optional
844
- }] }]; }, propDecorators: { onClick: [{
817
+ }], ctorParameters: function () {
818
+ return [{ type: ModalComponent, decorators: [{
819
+ type: Optional
820
+ }] }];
821
+ }, propDecorators: { onClick: [{
845
822
  type: HostListener,
846
823
  args: ['click']
847
824
  }] } });
@@ -888,15 +865,11 @@ class ToastComponent {
888
865
  this.close();
889
866
  }
890
867
  }
891
- ToastComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: ToastComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
892
- ToastComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.13", type: ToastComponent, selector: "abp-toast", inputs: { toast: "toast" }, outputs: { remove: "remove" }, ngImport: i0, template: "<div class=\"abp-toast\" [ngClass]=\"severityClass\" (click)=\"tap()\">\n <div class=\"abp-toast-icon\">\n <i class=\"fa icon\" [ngClass]=\"iconClass\"></i>\n </div>\n <div class=\"abp-toast-content\">\n <button class=\"abp-toast-close-button\" (click)=\"close()\" *ngIf=\"toast.options?.closable\">\n <i class=\"fa fa-times\"></i>\n </button>\n <div class=\"abp-toast-title\">\n {{ toast.title | abpLocalization: toast.options?.titleLocalizationParams }}\n </div>\n <p\n class=\"abp-toast-message\"\n [innerHTML]=\"toast.message | abpLocalization: toast.options?.messageLocalizationParams\"\n ></p>\n </div>\n</div>\n", styles: [".abp-toast{display:grid;grid-template-columns:50px 1fr;grid-gap:10px;gap:10px;margin:5px 0;padding:10px;border-radius:0;width:350px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;z-index:9999;border:2px solid #f0f0f0;background-color:#f0f0f0;color:#000;box-shadow:0 0 10px -5px #0006;opacity:1}.abp-toast:hover{border:2px solid #e3e3e3;background-color:#e3e3e3;box-shadow:0 0 15px -5px #0006}.abp-toast.abp-toast-success{border:2px solid #51a351;background-color:#51a351;color:#fff;box-shadow:0 0 10px -5px #0006}.abp-toast.abp-toast-success:hover{border:2px solid #499249;background-color:#499249;box-shadow:0 0 15px -5px #0006}.abp-toast.abp-toast-info{border:2px solid #2f96b4;background-color:#2f96b4;color:#fff;box-shadow:0 0 10px -5px #0006}.abp-toast.abp-toast-info:hover{border:2px solid #2a85a0;background-color:#2a85a0;box-shadow:0 0 15px -5px #0006}.abp-toast.abp-toast-warning{border:2px solid #f89406;background-color:#f89406;color:#fff;box-shadow:0 0 10px -5px #0006}.abp-toast.abp-toast-warning:hover{border:2px solid #df8505;background-color:#df8505;box-shadow:0 0 15px -5px #0006}.abp-toast.abp-toast-error{border:2px solid #bd362f;background-color:#bd362f;color:#fff;box-shadow:0 0 10px -5px #0006}.abp-toast.abp-toast-error:hover{border:2px solid #a9302a;background-color:#a9302a;box-shadow:0 0 15px -5px #0006}.abp-toast .abp-toast-icon{display:flex;align-items:center;justify-content:center}.abp-toast .abp-toast-icon .icon{font-size:36px}.abp-toast .abp-toast-content{position:relative}.abp-toast .abp-toast-content .abp-toast-close-button{position:absolute;top:0;right:0;display:flex;align-items:center;justify-content:center;margin:0;padding:0 5px 0 0;width:25px;height:25px;border:none;border-radius:50%;background:transparent;color:inherit}.abp-toast .abp-toast-content .abp-toast-close-button:focus{outline:none}.abp-toast .abp-toast-content .abp-toast-title{margin:0;padding:0;font-size:1rem;font-weight:600}.abp-toast .abp-toast-content .abp-toast-message{margin:0;padding:0;max-width:240px}\n"], directives: [{ type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], pipes: { "abpLocalization": i2.LocalizationPipe } });
893
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: ToastComponent, decorators: [{
868
+ ToastComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: ToastComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
869
+ ToastComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.1", type: ToastComponent, selector: "abp-toast", inputs: { toast: "toast" }, outputs: { remove: "remove" }, ngImport: i0, template: "<div class=\"abp-toast\" [ngClass]=\"severityClass\" (click)=\"tap()\">\r\n <div class=\"abp-toast-icon\">\r\n <i class=\"fa icon\" [ngClass]=\"iconClass\"></i>\r\n </div>\r\n <div class=\"abp-toast-content\">\r\n <button class=\"abp-toast-close-button\" (click)=\"close()\" *ngIf=\"toast.options?.closable\">\r\n <i class=\"fa fa-times\"></i>\r\n </button>\r\n <div class=\"abp-toast-title\">\r\n {{ toast.title | abpLocalization: toast.options?.titleLocalizationParams }}\r\n </div>\r\n <p\r\n class=\"abp-toast-message\"\r\n [innerHTML]=\"toast.message | abpLocalization: toast.options?.messageLocalizationParams\"\r\n ></p>\r\n </div>\r\n</div>\r\n", styles: [".abp-toast{display:grid;grid-template-columns:50px 1fr;grid-gap:10px;gap:10px;margin:5px 0;padding:10px;border-radius:0;width:350px;-webkit-user-select:none;user-select:none;z-index:9999;border:2px solid #f0f0f0;background-color:#f0f0f0;color:#000;box-shadow:0 0 10px -5px #0006;opacity:1}.abp-toast:hover{border:2px solid #e3e3e3;background-color:#e3e3e3;box-shadow:0 0 15px -5px #0006}.abp-toast.abp-toast-success{border:2px solid #51a351;background-color:#51a351;color:#fff;box-shadow:0 0 10px -5px #0006}.abp-toast.abp-toast-success:hover{border:2px solid #499249;background-color:#499249;box-shadow:0 0 15px -5px #0006}.abp-toast.abp-toast-info{border:2px solid #2f96b4;background-color:#2f96b4;color:#fff;box-shadow:0 0 10px -5px #0006}.abp-toast.abp-toast-info:hover{border:2px solid #2a85a0;background-color:#2a85a0;box-shadow:0 0 15px -5px #0006}.abp-toast.abp-toast-warning{border:2px solid #f89406;background-color:#f89406;color:#fff;box-shadow:0 0 10px -5px #0006}.abp-toast.abp-toast-warning:hover{border:2px solid #df8505;background-color:#df8505;box-shadow:0 0 15px -5px #0006}.abp-toast.abp-toast-error{border:2px solid #bd362f;background-color:#bd362f;color:#fff;box-shadow:0 0 10px -5px #0006}.abp-toast.abp-toast-error:hover{border:2px solid #a9302a;background-color:#a9302a;box-shadow:0 0 15px -5px #0006}.abp-toast .abp-toast-icon{display:flex;align-items:center;justify-content:center}.abp-toast .abp-toast-icon .icon{font-size:36px}.abp-toast .abp-toast-content{position:relative}.abp-toast .abp-toast-content .abp-toast-close-button{position:absolute;top:0;right:0;display:flex;align-items:center;justify-content:center;margin:0;padding:0 5px 0 0;width:25px;height:25px;border:none;border-radius:50%;background:transparent;color:inherit}.abp-toast .abp-toast-content .abp-toast-close-button:focus{outline:none}.abp-toast .abp-toast-content .abp-toast-title{margin:0;padding:0;font-size:1rem;font-weight:600}.abp-toast .abp-toast-content .abp-toast-message{margin:0;padding:0;max-width:240px}\n"], directives: [{ type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], pipes: { "abpLocalization": i2.LocalizationPipe } });
870
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: ToastComponent, decorators: [{
894
871
  type: Component,
895
- args: [{
896
- selector: 'abp-toast',
897
- templateUrl: './toast.component.html',
898
- styleUrls: ['./toast.component.scss'],
899
- }]
872
+ args: [{ selector: 'abp-toast', template: "<div class=\"abp-toast\" [ngClass]=\"severityClass\" (click)=\"tap()\">\r\n <div class=\"abp-toast-icon\">\r\n <i class=\"fa icon\" [ngClass]=\"iconClass\"></i>\r\n </div>\r\n <div class=\"abp-toast-content\">\r\n <button class=\"abp-toast-close-button\" (click)=\"close()\" *ngIf=\"toast.options?.closable\">\r\n <i class=\"fa fa-times\"></i>\r\n </button>\r\n <div class=\"abp-toast-title\">\r\n {{ toast.title | abpLocalization: toast.options?.titleLocalizationParams }}\r\n </div>\r\n <p\r\n class=\"abp-toast-message\"\r\n [innerHTML]=\"toast.message | abpLocalization: toast.options?.messageLocalizationParams\"\r\n ></p>\r\n </div>\r\n</div>\r\n", styles: [".abp-toast{display:grid;grid-template-columns:50px 1fr;grid-gap:10px;gap:10px;margin:5px 0;padding:10px;border-radius:0;width:350px;-webkit-user-select:none;user-select:none;z-index:9999;border:2px solid #f0f0f0;background-color:#f0f0f0;color:#000;box-shadow:0 0 10px -5px #0006;opacity:1}.abp-toast:hover{border:2px solid #e3e3e3;background-color:#e3e3e3;box-shadow:0 0 15px -5px #0006}.abp-toast.abp-toast-success{border:2px solid #51a351;background-color:#51a351;color:#fff;box-shadow:0 0 10px -5px #0006}.abp-toast.abp-toast-success:hover{border:2px solid #499249;background-color:#499249;box-shadow:0 0 15px -5px #0006}.abp-toast.abp-toast-info{border:2px solid #2f96b4;background-color:#2f96b4;color:#fff;box-shadow:0 0 10px -5px #0006}.abp-toast.abp-toast-info:hover{border:2px solid #2a85a0;background-color:#2a85a0;box-shadow:0 0 15px -5px #0006}.abp-toast.abp-toast-warning{border:2px solid #f89406;background-color:#f89406;color:#fff;box-shadow:0 0 10px -5px #0006}.abp-toast.abp-toast-warning:hover{border:2px solid #df8505;background-color:#df8505;box-shadow:0 0 15px -5px #0006}.abp-toast.abp-toast-error{border:2px solid #bd362f;background-color:#bd362f;color:#fff;box-shadow:0 0 10px -5px #0006}.abp-toast.abp-toast-error:hover{border:2px solid #a9302a;background-color:#a9302a;box-shadow:0 0 15px -5px #0006}.abp-toast .abp-toast-icon{display:flex;align-items:center;justify-content:center}.abp-toast .abp-toast-icon .icon{font-size:36px}.abp-toast .abp-toast-content{position:relative}.abp-toast .abp-toast-content .abp-toast-close-button{position:absolute;top:0;right:0;display:flex;align-items:center;justify-content:center;margin:0;padding:0 5px 0 0;width:25px;height:25px;border:none;border-radius:50%;background:transparent;color:inherit}.abp-toast .abp-toast-content .abp-toast-close-button:focus{outline:none}.abp-toast .abp-toast-content .abp-toast-title{margin:0;padding:0;font-size:1rem;font-weight:600}.abp-toast .abp-toast-content .abp-toast-message{margin:0;padding:0;max-width:240px}\n"] }]
900
873
  }], propDecorators: { toast: [{
901
874
  type: Input
902
875
  }], remove: [{
@@ -925,16 +898,11 @@ class ToastContainerComponent {
925
898
  return (_a = toast.options) === null || _a === void 0 ? void 0 : _a.id;
926
899
  }
927
900
  }
928
- ToastContainerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: ToastContainerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
929
- ToastContainerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.13", type: ToastContainerComponent, selector: "abp-toast-container", inputs: { top: "top", right: "right", bottom: "bottom", left: "left", toastKey: "toastKey" }, ngImport: i0, template: "<div\n class=\"abp-toast-container\"\n [style.top]=\"top || 'auto'\"\n [style.right]=\"right || 'auto'\"\n [style.bottom]=\"bottom || 'auto'\"\n [style.left]=\"left || 'auto'\"\n [style.display]=\"toasts.length ? 'flex' : 'none'\"\n [@toastInOut]=\"toasts.length\"\n>\n <abp-toast\n [toast]=\"toast\"\n *ngFor=\"let toast of toasts; trackBy: trackByFunc\"\n (remove)=\"remove($event)\"\n ></abp-toast>\n</div>\n", styles: [".abp-toast-container{position:fixed;display:flex;flex-direction:column;align-items:center;justify-content:flex-end;min-width:350px;min-height:80px;z-index:1900}.abp-toast-container.new-on-top{flex-direction:column-reverse}\n"], components: [{ type: ToastComponent, selector: "abp-toast", inputs: ["toast"], outputs: ["remove"] }], directives: [{ type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }], animations: [toastInOut] });
930
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: ToastContainerComponent, decorators: [{
901
+ ToastContainerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: ToastContainerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
902
+ ToastContainerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.1", type: ToastContainerComponent, selector: "abp-toast-container", inputs: { top: "top", right: "right", bottom: "bottom", left: "left", toastKey: "toastKey" }, ngImport: i0, template: "<div\r\n class=\"abp-toast-container\"\r\n [style.top]=\"top || 'auto'\"\r\n [style.right]=\"right || 'auto'\"\r\n [style.bottom]=\"bottom || 'auto'\"\r\n [style.left]=\"left || 'auto'\"\r\n [style.display]=\"toasts.length ? 'flex' : 'none'\"\r\n [@toastInOut]=\"toasts.length\"\r\n>\r\n <abp-toast\r\n [toast]=\"toast\"\r\n *ngFor=\"let toast of toasts; trackBy: trackByFunc\"\r\n (remove)=\"remove($event)\"\r\n ></abp-toast>\r\n</div>\r\n", styles: [".abp-toast-container{position:fixed;display:flex;flex-direction:column;align-items:center;justify-content:flex-end;min-width:350px;min-height:80px;z-index:1900}.abp-toast-container.new-on-top{flex-direction:column-reverse}\n"], components: [{ type: ToastComponent, selector: "abp-toast", inputs: ["toast"], outputs: ["remove"] }], directives: [{ type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }], animations: [toastInOut] });
903
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: ToastContainerComponent, decorators: [{
931
904
  type: Component,
932
- args: [{
933
- selector: 'abp-toast-container',
934
- templateUrl: './toast-container.component.html',
935
- styleUrls: ['./toast-container.component.scss'],
936
- animations: [toastInOut],
937
- }]
905
+ args: [{ selector: 'abp-toast-container', animations: [toastInOut], template: "<div\r\n class=\"abp-toast-container\"\r\n [style.top]=\"top || 'auto'\"\r\n [style.right]=\"right || 'auto'\"\r\n [style.bottom]=\"bottom || 'auto'\"\r\n [style.left]=\"left || 'auto'\"\r\n [style.display]=\"toasts.length ? 'flex' : 'none'\"\r\n [@toastInOut]=\"toasts.length\"\r\n>\r\n <abp-toast\r\n [toast]=\"toast\"\r\n *ngFor=\"let toast of toasts; trackBy: trackByFunc\"\r\n (remove)=\"remove($event)\"\r\n ></abp-toast>\r\n</div>\r\n", styles: [".abp-toast-container{position:fixed;display:flex;flex-direction:column;align-items:center;justify-content:flex-end;min-width:350px;min-height:80px;z-index:1900}.abp-toast-container.new-on-top{flex-direction:column-reverse}\n"] }]
938
906
  }], propDecorators: { top: [{
939
907
  type: Input
940
908
  }], right: [{
@@ -982,9 +950,9 @@ class EllipsisDirective {
982
950
  this.cdRef.detectChanges();
983
951
  }
984
952
  }
985
- EllipsisDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: EllipsisDirective, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
986
- EllipsisDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.13", type: EllipsisDirective, selector: "[abpEllipsis]", inputs: { width: ["abpEllipsis", "width"], title: "title", enabled: ["abpEllipsisEnabled", "enabled"] }, host: { properties: { "title": "this.title", "class.abp-ellipsis-inline": "this.inlineClass", "class.abp-ellipsis": "this.class", "style.max-width": "this.maxWidth" } }, ngImport: i0 });
987
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: EllipsisDirective, decorators: [{
953
+ EllipsisDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: EllipsisDirective, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
954
+ EllipsisDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.1.1", type: EllipsisDirective, selector: "[abpEllipsis]", inputs: { width: ["abpEllipsis", "width"], title: "title", enabled: ["abpEllipsisEnabled", "enabled"] }, host: { properties: { "title": "this.title", "class.abp-ellipsis-inline": "this.inlineClass", "class.abp-ellipsis": "this.class", "style.max-width": "this.maxWidth" } }, ngImport: i0 });
955
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: EllipsisDirective, decorators: [{
988
956
  type: Directive,
989
957
  args: [{
990
958
  selector: '[abpEllipsis]',
@@ -1012,10 +980,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.13", ngImpo
1012
980
  }] } });
1013
981
  class EllipsisModule {
1014
982
  }
1015
- EllipsisModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: EllipsisModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1016
- EllipsisModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: EllipsisModule, declarations: [EllipsisDirective], exports: [EllipsisDirective] });
1017
- EllipsisModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: EllipsisModule });
1018
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: EllipsisModule, decorators: [{
983
+ EllipsisModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: EllipsisModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
984
+ EllipsisModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: EllipsisModule, declarations: [EllipsisDirective], exports: [EllipsisDirective] });
985
+ EllipsisModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: EllipsisModule });
986
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: EllipsisModule, decorators: [{
1019
987
  type: NgModule,
1020
988
  args: [{
1021
989
  exports: [EllipsisDirective],
@@ -1089,9 +1057,9 @@ class LoadingDirective {
1089
1057
  }
1090
1058
  }
1091
1059
  }
1092
- LoadingDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: LoadingDirective, deps: [{ token: i0.ElementRef }, { token: i0.ViewContainerRef }, { token: i0.ComponentFactoryResolver }, { token: i0.Injector }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive });
1093
- LoadingDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.13", type: LoadingDirective, selector: "[abpLoading]", inputs: { loading: ["abpLoading", "loading"], targetElement: ["abpLoadingTargetElement", "targetElement"], delay: ["abpLoadingDelay", "delay"] }, host: { properties: { "style.position": "this.position" } }, ngImport: i0 });
1094
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: LoadingDirective, decorators: [{
1060
+ LoadingDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: LoadingDirective, deps: [{ token: i0.ElementRef }, { token: i0.ViewContainerRef }, { token: i0.ComponentFactoryResolver }, { token: i0.Injector }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive });
1061
+ LoadingDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.1.1", type: LoadingDirective, selector: "[abpLoading]", inputs: { loading: ["abpLoading", "loading"], targetElement: ["abpLoadingTargetElement", "targetElement"], delay: ["abpLoadingDelay", "delay"] }, host: { properties: { "style.position": "this.position" } }, ngImport: i0 });
1062
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: LoadingDirective, decorators: [{
1095
1063
  type: Directive,
1096
1064
  args: [{ selector: '[abpLoading]' }]
1097
1065
  }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.ViewContainerRef }, { type: i0.ComponentFactoryResolver }, { type: i0.Injector }, { type: i0.Renderer2 }]; }, propDecorators: { position: [{
@@ -1157,19 +1125,21 @@ class NgxDatatableDefaultDirective {
1157
1125
  this.subscription.unsubscribe();
1158
1126
  }
1159
1127
  }
1160
- NgxDatatableDefaultDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: NgxDatatableDefaultDirective, deps: [{ token: i1$2.DatatableComponent }, { token: DOCUMENT }], target: i0.ɵɵFactoryTarget.Directive });
1161
- NgxDatatableDefaultDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.13", type: NgxDatatableDefaultDirective, selector: "ngx-datatable[default]", inputs: { class: "class" }, host: { properties: { "class": "this.classes" } }, exportAs: ["ngxDatatableDefault"], ngImport: i0 });
1162
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: NgxDatatableDefaultDirective, decorators: [{
1128
+ NgxDatatableDefaultDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: NgxDatatableDefaultDirective, deps: [{ token: i1$2.DatatableComponent }, { token: DOCUMENT }], target: i0.ɵɵFactoryTarget.Directive });
1129
+ NgxDatatableDefaultDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.1.1", type: NgxDatatableDefaultDirective, selector: "ngx-datatable[default]", inputs: { class: "class" }, host: { properties: { "class": "this.classes" } }, exportAs: ["ngxDatatableDefault"], ngImport: i0 });
1130
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: NgxDatatableDefaultDirective, decorators: [{
1163
1131
  type: Directive,
1164
1132
  args: [{
1165
1133
  // eslint-disable-next-line @angular-eslint/directive-selector
1166
1134
  selector: 'ngx-datatable[default]',
1167
1135
  exportAs: 'ngxDatatableDefault',
1168
1136
  }]
1169
- }], ctorParameters: function () { return [{ type: i1$2.DatatableComponent }, { type: undefined, decorators: [{
1170
- type: Inject,
1171
- args: [DOCUMENT]
1172
- }] }]; }, propDecorators: { class: [{
1137
+ }], ctorParameters: function () {
1138
+ return [{ type: i1$2.DatatableComponent }, { type: undefined, decorators: [{
1139
+ type: Inject,
1140
+ args: [DOCUMENT]
1141
+ }] }];
1142
+ }, propDecorators: { class: [{
1173
1143
  type: Input
1174
1144
  }], classes: [{
1175
1145
  type: HostBinding,
@@ -1251,21 +1221,23 @@ class NgxDatatableListDirective {
1251
1221
  this.subscribeToSort();
1252
1222
  }
1253
1223
  }
1254
- NgxDatatableListDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: NgxDatatableListDirective, deps: [{ token: i1$2.DatatableComponent }, { token: i0.ChangeDetectorRef }, { token: i2.LocalizationService }, { token: NGX_DATATABLE_MESSAGES, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
1255
- NgxDatatableListDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.13", type: NgxDatatableListDirective, selector: "ngx-datatable[list]", inputs: { list: "list" }, exportAs: ["ngxDatatableList"], usesOnChanges: true, ngImport: i0 });
1256
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: NgxDatatableListDirective, decorators: [{
1224
+ NgxDatatableListDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: NgxDatatableListDirective, deps: [{ token: i1$2.DatatableComponent }, { token: i0.ChangeDetectorRef }, { token: i2.LocalizationService }, { token: NGX_DATATABLE_MESSAGES, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
1225
+ NgxDatatableListDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.1.1", type: NgxDatatableListDirective, selector: "ngx-datatable[list]", inputs: { list: "list" }, exportAs: ["ngxDatatableList"], usesOnChanges: true, ngImport: i0 });
1226
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: NgxDatatableListDirective, decorators: [{
1257
1227
  type: Directive,
1258
1228
  args: [{
1259
1229
  // eslint-disable-next-line @angular-eslint/directive-selector
1260
1230
  selector: 'ngx-datatable[list]',
1261
1231
  exportAs: 'ngxDatatableList',
1262
1232
  }]
1263
- }], ctorParameters: function () { return [{ type: i1$2.DatatableComponent }, { type: i0.ChangeDetectorRef }, { type: i2.LocalizationService }, { type: undefined, decorators: [{
1264
- type: Optional
1265
- }, {
1266
- type: Inject,
1267
- args: [NGX_DATATABLE_MESSAGES]
1268
- }] }]; }, propDecorators: { list: [{
1233
+ }], ctorParameters: function () {
1234
+ return [{ type: i1$2.DatatableComponent }, { type: i0.ChangeDetectorRef }, { type: i2.LocalizationService }, { type: undefined, decorators: [{
1235
+ type: Optional
1236
+ }, {
1237
+ type: Inject,
1238
+ args: [NGX_DATATABLE_MESSAGES]
1239
+ }] }];
1240
+ }, propDecorators: { list: [{
1269
1241
  type: Input
1270
1242
  }] } });
1271
1243
 
@@ -1291,9 +1263,9 @@ class DocumentDirHandlerService {
1291
1263
  document.dir = dir;
1292
1264
  }
1293
1265
  }
1294
- DocumentDirHandlerService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: DocumentDirHandlerService, deps: [{ token: i0.Injector }], target: i0.ɵɵFactoryTarget.Injectable });
1295
- DocumentDirHandlerService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: DocumentDirHandlerService });
1296
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: DocumentDirHandlerService, decorators: [{
1266
+ DocumentDirHandlerService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: DocumentDirHandlerService, deps: [{ token: i0.Injector }], target: i0.ɵɵFactoryTarget.Injectable });
1267
+ DocumentDirHandlerService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: DocumentDirHandlerService });
1268
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: DocumentDirHandlerService, decorators: [{
1297
1269
  type: Injectable
1298
1270
  }], ctorParameters: function () { return [{ type: i0.Injector }]; } });
1299
1271
 
@@ -1581,9 +1553,9 @@ class ErrorHandler {
1581
1553
  ((_f = (_e = this.httpErrorConfig) === null || _e === void 0 ? void 0 : _e.errorScreen) === null || _f === void 0 ? void 0 : _f.forWhichErrors.indexOf(status)) > -1);
1582
1554
  }
1583
1555
  }
1584
- ErrorHandler.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: ErrorHandler, deps: [{ token: i0.Injector }], target: i0.ɵɵFactoryTarget.Injectable });
1585
- ErrorHandler.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: ErrorHandler, providedIn: 'root' });
1586
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: ErrorHandler, decorators: [{
1556
+ ErrorHandler.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: ErrorHandler, deps: [{ token: i0.Injector }], target: i0.ɵɵFactoryTarget.Injectable });
1557
+ ErrorHandler.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: ErrorHandler, providedIn: 'root' });
1558
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: ErrorHandler, decorators: [{
1587
1559
  type: Injectable,
1588
1560
  args: [{ providedIn: 'root' }]
1589
1561
  }], ctorParameters: function () { return [{ type: i0.Injector }]; } });
@@ -1595,6 +1567,9 @@ class NavItem {
1595
1567
  }
1596
1568
  }
1597
1569
 
1570
+ class UserMenu extends NavItem {
1571
+ }
1572
+
1598
1573
  const NG_BOOTSTRAP_CONFIG_PROVIDERS = [
1599
1574
  {
1600
1575
  provide: APP_INITIALIZER,
@@ -1626,7 +1601,7 @@ function configureRoutes(routesService) {
1626
1601
  };
1627
1602
  }
1628
1603
 
1629
- class NavItemsService {
1604
+ class AbstractMenuService {
1630
1605
  constructor() {
1631
1606
  this._items$ = new BehaviorSubject([]);
1632
1607
  }
@@ -1638,8 +1613,16 @@ class NavItemsService {
1638
1613
  }
1639
1614
  addItems(newItems) {
1640
1615
  const items = [...this.items];
1641
- newItems.forEach(item => items.push(new NavItem(item)));
1642
- items.sort(sortItems);
1616
+ newItems.forEach(item => {
1617
+ const index = items.findIndex(i => i.id === item.id);
1618
+ const data = new this.baseClass(item);
1619
+ if (index > -1) {
1620
+ items[index] = data;
1621
+ return;
1622
+ }
1623
+ items.push(data);
1624
+ });
1625
+ items.sort(this.sortItems);
1643
1626
  this._items$.next(items);
1644
1627
  }
1645
1628
  removeItem(id) {
@@ -1654,24 +1637,31 @@ class NavItemsService {
1654
1637
  if (index < 0)
1655
1638
  return;
1656
1639
  const items = [...this.items];
1657
- items[index] = new NavItem(Object.assign(Object.assign({}, items[index]), item));
1658
- items.sort(sortItems);
1640
+ items[index] = new this.baseClass(Object.assign(Object.assign({}, items[index]), item));
1641
+ items.sort(this.sortItems);
1659
1642
  this._items$.next(items);
1660
1643
  }
1644
+ sortItems(a, b) {
1645
+ if (!a.order)
1646
+ return 1;
1647
+ if (!b.order)
1648
+ return -1;
1649
+ return a.order - b.order;
1650
+ }
1651
+ }
1652
+
1653
+ class NavItemsService extends AbstractMenuService {
1654
+ constructor() {
1655
+ super(...arguments);
1656
+ this.baseClass = NavItem;
1657
+ }
1661
1658
  }
1662
- NavItemsService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: NavItemsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
1663
- NavItemsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: NavItemsService, providedIn: 'root' });
1664
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: NavItemsService, decorators: [{
1659
+ NavItemsService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: NavItemsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
1660
+ NavItemsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: NavItemsService, providedIn: 'root' });
1661
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: NavItemsService, decorators: [{
1665
1662
  type: Injectable,
1666
1663
  args: [{ providedIn: 'root' }]
1667
- }] });
1668
- function sortItems(a, b) {
1669
- if (!a.order)
1670
- return 1;
1671
- if (!b.order)
1672
- return -1;
1673
- return a.order - b.order;
1674
- }
1664
+ }] });
1675
1665
 
1676
1666
  class PageAlertService {
1677
1667
  constructor() {
@@ -1689,9 +1679,9 @@ class PageAlertService {
1689
1679
  this.alerts.set(alerts);
1690
1680
  }
1691
1681
  }
1692
- PageAlertService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: PageAlertService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
1693
- PageAlertService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: PageAlertService, providedIn: 'root' });
1694
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: PageAlertService, decorators: [{
1682
+ PageAlertService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: PageAlertService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
1683
+ PageAlertService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: PageAlertService, providedIn: 'root' });
1684
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: PageAlertService, decorators: [{
1695
1685
  type: Injectable,
1696
1686
  args: [{ providedIn: 'root' }]
1697
1687
  }], ctorParameters: function () { return []; } });
@@ -1784,195 +1774,208 @@ class ToasterService {
1784
1774
  this.toasts$.next(this.toasts);
1785
1775
  }
1786
1776
  }
1787
- ToasterService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: ToasterService, deps: [{ token: i2.ContentProjectionService }], target: i0.ɵɵFactoryTarget.Injectable });
1788
- ToasterService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: ToasterService, providedIn: 'root' });
1789
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: ToasterService, decorators: [{
1777
+ ToasterService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: ToasterService, deps: [{ token: i2.ContentProjectionService }], target: i0.ɵɵFactoryTarget.Injectable });
1778
+ ToasterService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: ToasterService, providedIn: 'root' });
1779
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: ToasterService, decorators: [{
1790
1780
  type: Injectable,
1791
1781
  args: [{
1792
1782
  providedIn: 'root',
1793
1783
  }]
1794
1784
  }], ctorParameters: function () { return [{ type: i2.ContentProjectionService }]; } });
1795
1785
 
1796
- var styles = `
1797
- .is-invalid .form-control {
1798
- border-color: #dc3545;
1799
- border-style: solid !important;
1800
- padding-right: calc(1.5em + .75rem);
1801
- background-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e);
1802
- background-repeat: no-repeat;
1803
- background-position: right calc(.375em + .1875rem) center;
1804
- background-size: calc(.75em + .375rem) calc(.75em + .375rem);
1805
- }
1806
-
1807
- .is-invalid .invalid-feedback,
1808
- .is-invalid + * .invalid-feedback {
1809
- display: block;
1810
- }
1811
-
1812
- .data-tables-filter {
1813
- text-align: right;
1814
- }
1815
-
1816
- [dir=rtl] .data-tables-filter {
1817
- text-align: left;
1818
- }
1819
-
1820
- .pointer {
1821
- cursor: pointer;
1822
- }
1823
-
1824
- .navbar .dropdown-submenu a::after {
1825
- transform: rotate(-90deg);
1826
- position: absolute;
1827
- right: 16px;
1828
- top: 18px;
1829
- }
1830
-
1831
- .navbar .dropdown-menu {
1832
- min-width: 215px;
1833
- }
1834
-
1835
- .datatable-scroll {
1836
- margin-bottom: 5px !important;
1837
- width: unset !important;
1838
- }
1839
-
1840
- .ui-table-scrollable-body::-webkit-scrollbar {
1841
- height: 5px !important;
1842
- width: 5px !important;
1843
- }
1844
-
1845
- .ui-table-scrollable-body::-webkit-scrollbar-track {
1846
- background: #ddd;
1847
- }
1848
-
1849
- .ui-table-scrollable-body::-webkit-scrollbar-thumb {
1850
- background: #8a8686;
1851
- }
1852
-
1853
- .abp-ellipsis-inline {
1854
- display: inline-block;
1855
- overflow: hidden;
1856
- text-overflow: ellipsis;
1857
- white-space: nowrap;
1858
- }
1859
-
1860
- .abp-ellipsis {
1861
- overflow: hidden !important;
1862
- text-overflow: ellipsis;
1863
- white-space: nowrap;
1864
- }
1865
-
1866
- .ui-widget-overlay {
1867
- z-index: 1000;
1868
- }
1869
-
1870
- .color-white {
1871
- color: #FFF !important;
1872
- }
1873
-
1874
- .custom-checkbox > label {
1875
- cursor: pointer;
1876
- }
1877
-
1878
- /* <animations */
1879
-
1880
- .fade-in-top {
1881
- animation: fadeInTop 0.2s ease-in-out;
1882
- }
1883
-
1884
- .fade-out-top {
1885
- animation: fadeOutTop 0.2s ease-in-out;
1886
- }
1887
-
1888
- .abp-collapsed-height {
1889
- -moz-transition: max-height linear 0.35s;
1890
- -ms-transition: max-height linear 0.35s;
1891
- -o-transition: max-height linear 0.35s;
1892
- -webkit-transition: max-height linear 0.35s;
1893
- overflow:hidden;
1894
- transition:max-height 0.35s linear;
1895
- height:auto;
1896
- max-height: 0;
1897
- }
1898
-
1899
- .abp-mh-25 {
1900
- max-height: 25vh;
1901
- }
1902
-
1903
- .abp-mh-50 {
1904
- transition:max-height 0.65s linear;
1905
- max-height: 50vh;
1906
- }
1907
-
1908
- .abp-mh-75 {
1909
- transition:max-height 0.85s linear;
1910
- max-height: 75vh;
1911
- }
1912
-
1913
- .abp-mh-100 {
1914
- transition:max-height 1s linear;
1915
- max-height: 100vh;
1916
- }
1917
-
1918
- [class^="sorting"] {
1919
- opacity: .3;
1920
- cursor: pointer;
1921
- }
1922
- [class^="sorting"]:before {
1923
- right: 0.5rem;
1924
- content: "↑";
1925
- }
1926
- [class^="sorting"]:after {
1927
- right: 0.5rem;
1928
- content: "↓";
1929
- }
1930
-
1931
- .sorting_desc {
1932
- opacity: 1;
1933
- }
1934
- .sorting_desc:before {
1935
- opacity: .3;
1936
- }
1937
-
1938
- .sorting_asc {
1939
- opacity: 1;
1940
- }
1941
- .sorting_asc:after {
1942
- opacity: .3;
1943
- }
1944
- .ngx-datatable.material {
1945
- box-shadow: none;
1946
- }
1947
- ngb-typeahead-window, ngb-typeahead-window.dropdown-menu {
1948
- max-height: 25em;
1949
- overflow-y: scroll !important;
1950
- z-index: 1050;
1951
- }
1952
-
1953
- @keyframes fadeInTop {
1954
- from {
1955
- transform: translateY(-5px);
1956
- opacity: 0;
1957
- }
1958
-
1959
- to {
1960
- transform: translateY(0px);
1961
- opacity: 1;
1962
- }
1963
- }
1964
-
1965
- @keyframes fadeOutTop {
1966
- to {
1967
- transform: translateY(-5px);
1968
- opacity: 0;
1969
- }
1970
- }
1786
+ class UserMenuService extends AbstractMenuService {
1787
+ constructor() {
1788
+ super(...arguments);
1789
+ this.baseClass = UserMenu;
1790
+ }
1791
+ }
1792
+ UserMenuService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: UserMenuService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
1793
+ UserMenuService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: UserMenuService, providedIn: 'root' });
1794
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: UserMenuService, decorators: [{
1795
+ type: Injectable,
1796
+ args: [{ providedIn: 'root' }]
1797
+ }] });
1971
1798
 
1972
- /* </animations */
1973
- .ngb-dp-body {
1974
- z-index: 1055 !important;
1975
- }
1799
+ var styles = `
1800
+ .is-invalid .form-control {
1801
+ border-color: #dc3545;
1802
+ border-style: solid !important;
1803
+ padding-right: calc(1.5em + .75rem);
1804
+ background-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e);
1805
+ background-repeat: no-repeat;
1806
+ background-position: right calc(.375em + .1875rem) center;
1807
+ background-size: calc(.75em + .375rem) calc(.75em + .375rem);
1808
+ }
1809
+
1810
+ .is-invalid .invalid-feedback,
1811
+ .is-invalid + * .invalid-feedback {
1812
+ display: block;
1813
+ }
1814
+
1815
+ .data-tables-filter {
1816
+ text-align: right;
1817
+ }
1818
+
1819
+ [dir=rtl] .data-tables-filter {
1820
+ text-align: left;
1821
+ }
1822
+
1823
+ .pointer {
1824
+ cursor: pointer;
1825
+ }
1826
+
1827
+ .navbar .dropdown-submenu a::after {
1828
+ transform: rotate(-90deg);
1829
+ position: absolute;
1830
+ right: 16px;
1831
+ top: 18px;
1832
+ }
1833
+
1834
+ .navbar .dropdown-menu {
1835
+ min-width: 215px;
1836
+ }
1837
+
1838
+ .datatable-scroll {
1839
+ margin-bottom: 5px !important;
1840
+ width: unset !important;
1841
+ }
1842
+
1843
+ .ui-table-scrollable-body::-webkit-scrollbar {
1844
+ height: 5px !important;
1845
+ width: 5px !important;
1846
+ }
1847
+
1848
+ .ui-table-scrollable-body::-webkit-scrollbar-track {
1849
+ background: #ddd;
1850
+ }
1851
+
1852
+ .ui-table-scrollable-body::-webkit-scrollbar-thumb {
1853
+ background: #8a8686;
1854
+ }
1855
+
1856
+ .abp-ellipsis-inline {
1857
+ display: inline-block;
1858
+ overflow: hidden;
1859
+ text-overflow: ellipsis;
1860
+ white-space: nowrap;
1861
+ }
1862
+
1863
+ .abp-ellipsis {
1864
+ overflow: hidden !important;
1865
+ text-overflow: ellipsis;
1866
+ white-space: nowrap;
1867
+ }
1868
+
1869
+ .ui-widget-overlay {
1870
+ z-index: 1000;
1871
+ }
1872
+
1873
+ .color-white {
1874
+ color: #FFF !important;
1875
+ }
1876
+
1877
+ .custom-checkbox > label {
1878
+ cursor: pointer;
1879
+ }
1880
+
1881
+ /* <animations */
1882
+
1883
+ .fade-in-top {
1884
+ animation: fadeInTop 0.2s ease-in-out;
1885
+ }
1886
+
1887
+ .fade-out-top {
1888
+ animation: fadeOutTop 0.2s ease-in-out;
1889
+ }
1890
+
1891
+ .abp-collapsed-height {
1892
+ -moz-transition: max-height linear 0.35s;
1893
+ -ms-transition: max-height linear 0.35s;
1894
+ -o-transition: max-height linear 0.35s;
1895
+ -webkit-transition: max-height linear 0.35s;
1896
+ overflow:hidden;
1897
+ transition:max-height 0.35s linear;
1898
+ height:auto;
1899
+ max-height: 0;
1900
+ }
1901
+
1902
+ .abp-mh-25 {
1903
+ max-height: 25vh;
1904
+ }
1905
+
1906
+ .abp-mh-50 {
1907
+ transition:max-height 0.65s linear;
1908
+ max-height: 50vh;
1909
+ }
1910
+
1911
+ .abp-mh-75 {
1912
+ transition:max-height 0.85s linear;
1913
+ max-height: 75vh;
1914
+ }
1915
+
1916
+ .abp-mh-100 {
1917
+ transition:max-height 1s linear;
1918
+ max-height: 100vh;
1919
+ }
1920
+
1921
+ [class^="sorting"] {
1922
+ opacity: .3;
1923
+ cursor: pointer;
1924
+ }
1925
+ [class^="sorting"]:before {
1926
+ right: 0.5rem;
1927
+ content: "↑";
1928
+ }
1929
+ [class^="sorting"]:after {
1930
+ right: 0.5rem;
1931
+ content: "↓";
1932
+ }
1933
+
1934
+ .sorting_desc {
1935
+ opacity: 1;
1936
+ }
1937
+ .sorting_desc:before {
1938
+ opacity: .3;
1939
+ }
1940
+
1941
+ .sorting_asc {
1942
+ opacity: 1;
1943
+ }
1944
+ .sorting_asc:after {
1945
+ opacity: .3;
1946
+ }
1947
+ .ngx-datatable.material {
1948
+ box-shadow: none;
1949
+ }
1950
+ ngb-typeahead-window, ngb-typeahead-window.dropdown-menu {
1951
+ max-height: 25em;
1952
+ overflow-y: scroll !important;
1953
+ z-index: 1050;
1954
+ }
1955
+
1956
+ @keyframes fadeInTop {
1957
+ from {
1958
+ transform: translateY(-5px);
1959
+ opacity: 0;
1960
+ }
1961
+
1962
+ to {
1963
+ transform: translateY(0px);
1964
+ opacity: 1;
1965
+ }
1966
+ }
1967
+
1968
+ @keyframes fadeOutTop {
1969
+ to {
1970
+ transform: translateY(-5px);
1971
+ opacity: 0;
1972
+ }
1973
+ }
1974
+
1975
+ /* </animations */
1976
+ .ngb-dp-body {
1977
+ z-index: 1055 !important;
1978
+ }
1976
1979
  `;
1977
1980
 
1978
1981
  const THEME_SHARED_APPEND_CONTENT = new InjectionToken('THEME_SHARED_APPEND_CONTENT', {
@@ -2027,14 +2030,16 @@ class DateParserFormatter extends NgbDateParserFormatter {
2027
2030
  return formatDate(new Date(date.year, date.month - 1, date.day), dateFormat, this.locale);
2028
2031
  }
2029
2032
  }
2030
- DateParserFormatter.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: DateParserFormatter, deps: [{ token: i2.ConfigStateService }, { token: LOCALE_ID }], target: i0.ɵɵFactoryTarget.Injectable });
2031
- DateParserFormatter.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: DateParserFormatter });
2032
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: DateParserFormatter, decorators: [{
2033
+ DateParserFormatter.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: DateParserFormatter, deps: [{ token: i2.ConfigStateService }, { token: LOCALE_ID }], target: i0.ɵɵFactoryTarget.Injectable });
2034
+ DateParserFormatter.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: DateParserFormatter });
2035
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: DateParserFormatter, decorators: [{
2033
2036
  type: Injectable
2034
- }], ctorParameters: function () { return [{ type: i2.ConfigStateService }, { type: undefined, decorators: [{
2035
- type: Inject,
2036
- args: [LOCALE_ID]
2037
- }] }]; } });
2037
+ }], ctorParameters: function () {
2038
+ return [{ type: i2.ConfigStateService }, { type: undefined, decorators: [{
2039
+ type: Inject,
2040
+ args: [LOCALE_ID]
2041
+ }] }];
2042
+ } });
2038
2043
 
2039
2044
  const declarationsWithExports = [
2040
2045
  BreadcrumbComponent,
@@ -2053,8 +2058,8 @@ const declarationsWithExports = [
2053
2058
  ];
2054
2059
  class BaseThemeSharedModule {
2055
2060
  }
2056
- BaseThemeSharedModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: BaseThemeSharedModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
2057
- BaseThemeSharedModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: BaseThemeSharedModule, declarations: [BreadcrumbComponent,
2061
+ BaseThemeSharedModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: BaseThemeSharedModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
2062
+ BaseThemeSharedModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: BaseThemeSharedModule, declarations: [BreadcrumbComponent,
2058
2063
  BreadcrumbItemsComponent,
2059
2064
  ButtonComponent,
2060
2065
  ConfirmationComponent,
@@ -2083,14 +2088,14 @@ BaseThemeSharedModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", v
2083
2088
  NgxDatatableListDirective,
2084
2089
  LoadingDirective,
2085
2090
  ModalCloseDirective] });
2086
- BaseThemeSharedModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: BaseThemeSharedModule, providers: [DatePipe], imports: [[
2091
+ BaseThemeSharedModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: BaseThemeSharedModule, providers: [DatePipe], imports: [[
2087
2092
  CoreModule,
2088
2093
  NgxDatatableModule,
2089
2094
  NgxValidateCoreModule,
2090
2095
  NgbPaginationModule,
2091
2096
  EllipsisModule,
2092
2097
  ], NgxDatatableModule, EllipsisModule] });
2093
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: BaseThemeSharedModule, decorators: [{
2098
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: BaseThemeSharedModule, decorators: [{
2094
2099
  type: NgModule,
2095
2100
  args: [{
2096
2101
  imports: [
@@ -2102,13 +2107,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.13", ngImpo
2102
2107
  ],
2103
2108
  declarations: [...declarationsWithExports, HttpErrorWrapperComponent],
2104
2109
  exports: [NgxDatatableModule, EllipsisModule, ...declarationsWithExports],
2105
- providers: [DatePipe],
2106
- entryComponents: [
2107
- HttpErrorWrapperComponent,
2108
- LoadingComponent,
2109
- ToastContainerComponent,
2110
- ConfirmationComponent,
2111
- ],
2110
+ providers: [DatePipe]
2112
2111
  }]
2113
2112
  }] });
2114
2113
  class ThemeSharedModule {
@@ -2160,10 +2159,10 @@ class ThemeSharedModule {
2160
2159
  };
2161
2160
  }
2162
2161
  }
2163
- ThemeSharedModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: ThemeSharedModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
2164
- ThemeSharedModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: ThemeSharedModule, imports: [BaseThemeSharedModule], exports: [BaseThemeSharedModule] });
2165
- ThemeSharedModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: ThemeSharedModule, imports: [[BaseThemeSharedModule], BaseThemeSharedModule] });
2166
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: ThemeSharedModule, decorators: [{
2162
+ ThemeSharedModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: ThemeSharedModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
2163
+ ThemeSharedModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: ThemeSharedModule, imports: [BaseThemeSharedModule], exports: [BaseThemeSharedModule] });
2164
+ ThemeSharedModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: ThemeSharedModule, imports: [[BaseThemeSharedModule], BaseThemeSharedModule] });
2165
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: ThemeSharedModule, decorators: [{
2167
2166
  type: NgModule,
2168
2167
  args: [{
2169
2168
  imports: [BaseThemeSharedModule],
@@ -2209,5 +2208,5 @@ function getRuleFn(injector) {
2209
2208
  * Generated bundle index. Do not edit.
2210
2209
  */
2211
2210
 
2212
- export { BaseThemeSharedModule, BreadcrumbComponent, BreadcrumbItemsComponent, ButtonComponent, Confirmation, ConfirmationComponent, ConfirmationService, DEFAULT_ERROR_LOCALIZATIONS, DEFAULT_ERROR_MESSAGES, DEFAULT_VALIDATION_BLUEPRINTS, DateParserFormatter, DocumentDirHandlerService, EllipsisDirective, EllipsisModule, ErrorHandler, HTTP_ERROR_CONFIG, HTTP_ERROR_HANDLER, HttpErrorWrapperComponent, LoaderBarComponent, LoadingComponent, LoadingDirective, ModalCloseDirective, ModalComponent, ModalRefService, NGX_DATATABLE_MESSAGES, NG_BOOTSTRAP_CONFIG_PROVIDERS, NavItem, NavItemsService, NgxDatatableDefaultDirective, NgxDatatableListDirective, PageAlertService, SUPPRESS_UNSAVED_CHANGES_WARNING, THEME_SHARED_APPEND_CONTENT, THEME_SHARED_ROUTE_PROVIDERS, ThemeSharedModule, ToastComponent, ToastContainerComponent, ToasterService, bounceIn, collapse, collapseLinearWithMargin, collapseWithMargin, collapseX, collapseY, collapseYWithMargin, configureNgBootstrap, configureRoutes, defaultNgxDatatableMessages, dialogAnimation, expandX, expandY, expandYWithMargin, fadeAnimation, fadeIn, fadeInDown, fadeInLeft, fadeInRight, fadeInUp, fadeOut, fadeOutDown, fadeOutLeft, fadeOutRight, fadeOutUp, getPasswordValidators, httpErrorConfigFactory, slideFromBottom, toastInOut };
2213
- //# sourceMappingURL=abp-ng.theme.shared.js.map
2211
+ export { BaseThemeSharedModule, BreadcrumbComponent, BreadcrumbItemsComponent, ButtonComponent, Confirmation, ConfirmationComponent, ConfirmationService, DEFAULT_ERROR_LOCALIZATIONS, DEFAULT_ERROR_MESSAGES, DEFAULT_VALIDATION_BLUEPRINTS, DateParserFormatter, DocumentDirHandlerService, EllipsisDirective, EllipsisModule, ErrorHandler, HTTP_ERROR_CONFIG, HTTP_ERROR_HANDLER, HttpErrorWrapperComponent, LoaderBarComponent, LoadingComponent, LoadingDirective, ModalCloseDirective, ModalComponent, ModalRefService, NGX_DATATABLE_MESSAGES, NG_BOOTSTRAP_CONFIG_PROVIDERS, NavItem, NavItemsService, NgxDatatableDefaultDirective, NgxDatatableListDirective, PageAlertService, SUPPRESS_UNSAVED_CHANGES_WARNING, THEME_SHARED_APPEND_CONTENT, THEME_SHARED_ROUTE_PROVIDERS, ThemeSharedModule, ToastComponent, ToastContainerComponent, ToasterService, UserMenu, UserMenuService, bounceIn, collapse, collapseLinearWithMargin, collapseWithMargin, collapseX, collapseY, collapseYWithMargin, configureNgBootstrap, configureRoutes, defaultNgxDatatableMessages, dialogAnimation, expandX, expandY, expandYWithMargin, fadeAnimation, fadeIn, fadeInDown, fadeInLeft, fadeInRight, fadeInUp, fadeOut, fadeOutDown, fadeOutLeft, fadeOutRight, fadeOutUp, getPasswordValidators, httpErrorConfigFactory, slideFromBottom, toastInOut };
2212
+ //# sourceMappingURL=abp-ng.theme.shared.mjs.map