@resolveio/client-lib-core 15.5.3 → 16.0.0

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 (153) hide show
  1. package/esm2022/lib/account-manager.service.mjs +229 -0
  2. package/esm2022/lib/auth/auth-guard.service.mjs +174 -0
  3. package/esm2022/lib/auth/auth-permissions.service.mjs +23 -0
  4. package/esm2022/lib/auth/auth.service.mjs +251 -0
  5. package/esm2022/lib/auth/auth365.component.mjs +51 -0
  6. package/esm2022/lib/auth/can-deactivate-guard.service.mjs +13 -0
  7. package/esm2022/lib/auth/enroll.component.mjs +88 -0
  8. package/esm2022/lib/auth/forgot-password.component.mjs +89 -0
  9. package/esm2022/lib/core.component.mjs +404 -0
  10. package/esm2022/lib/core.module.mjs +176 -0
  11. package/esm2022/lib/core.service.mjs +88 -0
  12. package/esm2022/lib/directive/focus.mjs +24 -0
  13. package/esm2022/lib/directive/scroll.mjs +54 -0
  14. package/esm2022/lib/home/home.component.mjs +84 -0
  15. package/esm2022/lib/logger/logger.component.mjs +229 -0
  16. package/esm2022/lib/models/app-status.model.mjs +2 -0
  17. package/esm2022/lib/models/collection-document.model.mjs +2 -0
  18. package/esm2022/lib/models/cron-job.model.mjs +2 -0
  19. package/esm2022/lib/models/dialog.model.mjs +2 -0
  20. package/esm2022/lib/models/file.model.mjs +2 -0
  21. package/esm2022/lib/models/log-method-latency.model.mjs +2 -0
  22. package/esm2022/lib/models/navbar-main-tab.model.mjs +2 -0
  23. package/esm2022/lib/models/pagination.model.mjs +2 -0
  24. package/esm2022/lib/models/permission.model.mjs +2 -0
  25. package/esm2022/lib/models/select-data-label.model.mjs +2 -0
  26. package/esm2022/lib/models/subscription.model.mjs +2 -0
  27. package/esm2022/lib/models/support-ticket.model.mjs +2 -0
  28. package/esm2022/lib/models/user-group.model.mjs +2 -0
  29. package/esm2022/lib/models/user.model.mjs +2 -0
  30. package/esm2022/lib/offline-db.mjs +519 -0
  31. package/esm2022/lib/offline-manager.service.mjs +109 -0
  32. package/esm2022/lib/pipes/domsanitizor.pipe.mjs +29 -0
  33. package/esm2022/lib/pipes/filter.pipe.mjs +36 -0
  34. package/esm2022/lib/pipes/json-parse.pipe.mjs +29 -0
  35. package/esm2022/lib/pipes/minus-currency.pipe.mjs +16 -0
  36. package/esm2022/lib/pipes/phone.pipe.mjs +47 -0
  37. package/esm2022/lib/pipes/pipe.module.mjs +54 -0
  38. package/esm2022/lib/pipes/reverse-list.pipe.mjs +17 -0
  39. package/esm2022/lib/pipes/titlecase.pipe.mjs +22 -0
  40. package/esm2022/lib/report-builder.permission.mjs +13 -0
  41. package/esm2022/lib/resolveio-class.mjs +50 -0
  42. package/esm2022/lib/shared/shared.module.mjs +96 -0
  43. package/esm2022/lib/socket-manager.service.mjs +340 -0
  44. package/esm2022/lib/socket.service.mjs +200 -0
  45. package/esm2022/lib/super-admin.permission.mjs +9 -0
  46. package/esm2022/lib/support-ticket/detail/support-ticket-detail.component.mjs +211 -0
  47. package/esm2022/lib/support-ticket/edit/support-ticket-edit.component.mjs +131 -0
  48. package/esm2022/lib/support-ticket/list/support-ticket-list.component.mjs +142 -0
  49. package/esm2022/lib/support-ticket/new/support-ticket-new.component.mjs +121 -0
  50. package/esm2022/lib/support-ticket/support-ticket.component.mjs +67 -0
  51. package/esm2022/lib/support-ticket/support-ticket.module.mjs +50 -0
  52. package/esm2022/lib/support-ticket/support-ticket.routing.mjs +20 -0
  53. package/esm2022/lib/support-ticket/support-ticket.service.mjs +16 -0
  54. package/esm2022/lib/token-manager.service.mjs +25 -0
  55. package/esm2022/lib/user-settings/settings/users-settings.component.mjs +302 -0
  56. package/esm2022/lib/user-settings/user-settings.component.mjs +61 -0
  57. package/esm2022/lib/user-settings/user-settings.module.mjs +41 -0
  58. package/esm2022/lib/user-settings/user-settings.permission.mjs +10 -0
  59. package/esm2022/lib/user-settings/user-settings.routing.mjs +14 -0
  60. package/esm2022/lib/user-settings/user-settings.service.mjs +16 -0
  61. package/esm2022/lib/util/action-name.helper.mjs +9 -0
  62. package/esm2022/lib/util/aws.service.mjs +80 -0
  63. package/esm2022/lib/util/common.helper.mjs +133 -0
  64. package/esm2022/lib/util/validation.service.mjs +185 -0
  65. package/esm2022/lib/util/window-resize.service.mjs +38 -0
  66. package/esm2022/lib/util/window.service.mjs +16 -0
  67. package/esm2022/lib/widgets/alert/alert.model.mjs +2 -0
  68. package/esm2022/lib/widgets/alert/alert.service.mjs +79 -0
  69. package/esm2022/lib/widgets/collapse-table/collapse-table.component.mjs +83 -0
  70. package/esm2022/lib/widgets/collapse-table/collapse-table.module.mjs +34 -0
  71. package/esm2022/lib/widgets/data-table/data-table.component.mjs +84 -0
  72. package/esm2022/lib/widgets/data-table/data-table.model.mjs +2 -0
  73. package/esm2022/lib/widgets/data-table/data-table.module.mjs +41 -0
  74. package/esm2022/lib/widgets/date-shortcut/date-shortcut.component.mjs +198 -0
  75. package/esm2022/lib/widgets/date-shortcut/date-shortcut.module.mjs +32 -0
  76. package/esm2022/lib/widgets/dialog/dialog.confirm.content.mjs +67 -0
  77. package/esm2022/lib/widgets/dialog/dialog.error.content.mjs +60 -0
  78. package/esm2022/lib/widgets/dialog/dialog.input.content.mjs +200 -0
  79. package/esm2022/lib/widgets/dialog/dialog.login.content.mjs +354 -0
  80. package/esm2022/lib/widgets/dialog/dialog.notify.content.mjs +60 -0
  81. package/esm2022/lib/widgets/dialog/dialog.register.content.mjs +333 -0
  82. package/esm2022/lib/widgets/dialog/dialog.select-array-objs.content.mjs +203 -0
  83. package/esm2022/lib/widgets/dialog/dialog.select-array.content.mjs +310 -0
  84. package/esm2022/lib/widgets/dialog/dialog.select-data-labels.content.mjs +196 -0
  85. package/esm2022/lib/widgets/dialog/dialog.select-datetime.content.mjs +191 -0
  86. package/esm2022/lib/widgets/dialog/dialog.select-with-buttons-url.content.mjs +166 -0
  87. package/esm2022/lib/widgets/dialog/dialog.service.mjs +98 -0
  88. package/esm2022/lib/widgets/file/file-upload.component.mjs +433 -0
  89. package/esm2022/lib/widgets/file/file-upload.module.mjs +48 -0
  90. package/esm2022/lib/widgets/form-button/form-button.component.mjs +97 -0
  91. package/esm2022/lib/widgets/form-button/form-button.module.mjs +28 -0
  92. package/esm2022/lib/widgets/navbar-main/navbar-main.component.mjs +222 -0
  93. package/esm2022/lib/widgets/navbar-module/navbar-module.component.mjs +108 -0
  94. package/esm2022/lib/widgets/navbar-module/navbar-module.model.mjs +2 -0
  95. package/esm2022/lib/widgets/responsive-button-group/responsive-button-group.component.mjs +41 -0
  96. package/esm2022/lib/widgets/responsive-button-group/responsive-button-group.module.mjs +24 -0
  97. package/esm2022/lib/widgets/scheduler/scheduler.component.mjs +186 -0
  98. package/esm2022/lib/widgets/scheduler/scheduler.module.mjs +37 -0
  99. package/esm2022/lib/widgets/sort-table/sort-table-header.component.mjs +72 -0
  100. package/esm2022/lib/widgets/sort-table/sort-table-ngfor.component.mjs +49 -0
  101. package/esm2022/lib/widgets/sort-table/sort-table.directive.mjs +177 -0
  102. package/esm2022/lib/widgets/sort-table/sort-table.module.mjs +38 -0
  103. package/esm2022/lib/widgets/user-role/user-role.component.mjs +29 -0
  104. package/esm2022/lib/widgets/user-role/user-role.module.mjs +24 -0
  105. package/esm2022/public_api.mjs +91 -0
  106. package/esm2022/resolveio-client-lib-core.mjs +5 -0
  107. package/fesm2022/resolveio-client-lib-core.mjs +9019 -0
  108. package/fesm2022/resolveio-client-lib-core.mjs.map +1 -0
  109. package/index.d.ts +3 -0
  110. package/lib/auth/auth-guard.service.d.ts +2 -2
  111. package/lib/auth/can-deactivate-guard.service.d.ts +1 -2
  112. package/lib/core.component.d.ts +1 -2
  113. package/lib/core.module.d.ts +26 -29
  114. package/lib/directive/focus.d.ts +1 -1
  115. package/lib/directive/scroll.d.ts +1 -1
  116. package/lib/logger/logger.component.d.ts +0 -2
  117. package/lib/models/dialog.model.d.ts +1 -1
  118. package/lib/models/pagination.model.d.ts +1 -0
  119. package/lib/models/user-group.model.d.ts +0 -1
  120. package/lib/offline-db.d.ts +1 -5
  121. package/lib/offline-manager.service.d.ts +1 -4
  122. package/lib/socket-manager.service.d.ts +5 -34
  123. package/lib/socket.service.d.ts +3 -20
  124. package/lib/token-manager.service.d.ts +2 -4
  125. package/lib/util/aws.service.d.ts +1 -2
  126. package/lib/util/common.helper.d.ts +1 -3
  127. package/lib/util/window-resize.service.d.ts +6 -5
  128. package/lib/widgets/collapse-table/collapse-table.component.d.ts +1 -1
  129. package/lib/widgets/data-table/data-table.component.d.ts +1 -1
  130. package/lib/widgets/date-shortcut/date-shortcut.component.d.ts +1 -5
  131. package/lib/widgets/dialog/dialog.confirm.content.d.ts +1 -1
  132. package/lib/widgets/dialog/dialog.error.content.d.ts +1 -1
  133. package/lib/widgets/dialog/dialog.input.content.d.ts +1 -1
  134. package/lib/widgets/dialog/dialog.login.content.d.ts +1 -1
  135. package/lib/widgets/dialog/dialog.notify.content.d.ts +1 -1
  136. package/lib/widgets/dialog/dialog.select-array-objs.content.d.ts +1 -1
  137. package/lib/widgets/dialog/dialog.select-array.content.d.ts +1 -1
  138. package/lib/widgets/dialog/dialog.select-data-labels.content.d.ts +1 -1
  139. package/lib/widgets/dialog/dialog.select-datetime.content.d.ts +1 -1
  140. package/lib/widgets/dialog/dialog.select-with-buttons-url.content.d.ts +1 -1
  141. package/lib/widgets/file/file-upload.component.d.ts +1 -1
  142. package/lib/widgets/file/file-upload.module.d.ts +2 -2
  143. package/lib/widgets/form-button/form-button.component.d.ts +1 -1
  144. package/lib/widgets/navbar-main/navbar-main.component.d.ts +1 -2
  145. package/lib/widgets/navbar-module/navbar-module.component.d.ts +1 -1
  146. package/lib/widgets/responsive-button-group/responsive-button-group.component.d.ts +1 -1
  147. package/lib/widgets/sort-table/sort-table-header.component.d.ts +1 -1
  148. package/lib/widgets/sort-table/sort-table-ngfor.component.d.ts +1 -1
  149. package/lib/widgets/sort-table/sort-table.directive.d.ts +8 -1
  150. package/lib/widgets/user-role/user-role.component.d.ts +1 -1
  151. package/package.json +5 -6
  152. package/fesm2020/resolveio-client-lib-core.min.mjs +0 -1
  153. package/lib/logger/diff-viewer.component.d.ts +0 -35
package/index.d.ts CHANGED
@@ -1,2 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
1
4
  /// <amd-module name="@resolveio/client-lib-core" />
2
5
  export * from './public_api';
@@ -1,5 +1,5 @@
1
1
  import { AccountManagerService } from '../account-manager.service';
2
- import { CanActivate, Router, ActivatedRouteSnapshot, RouterStateSnapshot } from '@angular/router';
2
+ import { Router, ActivatedRouteSnapshot, RouterStateSnapshot } from '@angular/router';
3
3
  import { AuthService } from './auth.service';
4
4
  import { DialogService } from '../widgets/dialog/dialog.service';
5
5
  import { OfflineManagerService } from '../offline-manager.service';
@@ -7,7 +7,7 @@ import { CoreService } from '../core.service';
7
7
  import { AuthPermissionService } from './auth-permissions.service';
8
8
  import { AlertService } from '../widgets/alert/alert.service';
9
9
  import * as i0 from "@angular/core";
10
- export declare class AuthGuard implements CanActivate {
10
+ export declare class AuthGuard {
11
11
  private _router;
12
12
  private _auth;
13
13
  private _ds;
@@ -1,10 +1,9 @@
1
- import { CanDeactivate } from '@angular/router';
2
1
  import { Observable } from 'rxjs';
3
2
  import * as i0 from "@angular/core";
4
3
  export interface CanComponentDeactivate {
5
4
  canDeactivate: () => Observable<boolean> | Promise<boolean> | boolean;
6
5
  }
7
- export declare class CanDeactivateGuard implements CanDeactivate<CanComponentDeactivate> {
6
+ export declare class CanDeactivateGuard {
8
7
  canDeactivate(component: CanComponentDeactivate): boolean | Observable<boolean> | Promise<boolean>;
9
8
  static ɵfac: i0.ɵɵFactoryDeclaration<CanDeactivateGuard, never>;
10
9
  static ɵprov: i0.ɵɵInjectableDeclaration<CanDeactivateGuard>;
@@ -50,7 +50,6 @@ export declare class CoreComponent extends BaseComponent implements OnInit {
50
50
  isOffline: boolean;
51
51
  foundUpdate: boolean;
52
52
  orientation: string;
53
- digitalSign: boolean;
54
53
  constructor(_deviceDet: DeviceDetectorService, _ds: DialogService, _resizeService: ResizeService, _services: ProviderService, _offline: OfflineManagerService, _storage: LocalStorageService, _auth: AuthService, _aps: AuthPermissionService);
55
54
  ngOnInit(): void;
56
55
  getNavbarModuleHeight(): any;
@@ -60,5 +59,5 @@ export declare class CoreComponent extends BaseComponent implements OnInit {
60
59
  openNav(): void;
61
60
  closeNav(): void;
62
61
  static ɵfac: i0.ɵɵFactoryDeclaration<CoreComponent, never>;
63
- static ɵcmp: i0.ɵɵComponentDeclaration<CoreComponent, "resolveio-client-lib-core", never, { "environment": "environment"; "logo": "logo"; "navTabs": "navTabs"; "userHasPhoneNumber": "userHasPhoneNumber"; "client": "client"; "showNavbarModule": "showNavbarModule"; "publicProgram": "publicProgram"; }, {}, never, never, false, never>;
62
+ static ɵcmp: i0.ɵɵComponentDeclaration<CoreComponent, "resolveio-client-lib-core", never, { "environment": { "alias": "environment"; "required": false; }; "logo": { "alias": "logo"; "required": false; }; "navTabs": { "alias": "navTabs"; "required": false; }; "userHasPhoneNumber": { "alias": "userHasPhoneNumber"; "required": false; }; "client": { "alias": "client"; "required": false; }; "showNavbarModule": { "alias": "showNavbarModule"; "required": false; }; "publicProgram": { "alias": "publicProgram"; "required": false; }; }, {}, never, never, false, never>;
64
63
  }
@@ -2,36 +2,33 @@ import * as i0 from "@angular/core";
2
2
  import * as i1 from "./core.component";
3
3
  import * as i2 from "./home/home.component";
4
4
  import * as i3 from "./logger/logger.component";
5
- import * as i4 from "./logger/diff-viewer.component";
6
- import * as i5 from "./widgets/navbar-main/navbar-main.component";
7
- import * as i6 from "./widgets/navbar-module/navbar-module.component";
8
- import * as i7 from "./auth/forgot-password.component";
9
- import * as i8 from "./auth/enroll.component";
10
- import * as i9 from "./auth/auth365.component";
11
- import * as i10 from "./directive/focus";
12
- import * as i11 from "./directive/scroll";
13
- import * as i12 from "./widgets/dialog/dialog.confirm.content";
14
- import * as i13 from "./widgets/dialog/dialog.error.content";
15
- import * as i14 from "./widgets/dialog/dialog.input.content";
16
- import * as i15 from "./widgets/dialog/dialog.notify.content";
17
- import * as i16 from "./widgets/dialog/dialog.select-datetime.content";
18
- import * as i17 from "./widgets/dialog/dialog.select-data-labels.content";
19
- import * as i18 from "./widgets/dialog/dialog.login.content";
20
- import * as i19 from "./widgets/dialog/dialog.register.content";
21
- import * as i20 from "./widgets/dialog/dialog.select-with-buttons-url.content";
22
- import * as i21 from "./widgets/dialog/dialog.select-array-objs.content";
23
- import * as i22 from "./widgets/dialog/dialog.select-array.content";
24
- import * as i23 from "./shared/shared.module";
25
- import * as i24 from "@angular/common/http";
26
- import * as i25 from "@ng-bootstrap/ng-bootstrap";
27
- import * as i26 from "ngx-toastr";
28
- import * as i27 from "ngx-localstorage";
29
- import * as i28 from "./user-settings/user-settings.module";
30
- import * as i29 from "@angular/platform-browser/animations";
31
- import * as i30 from "./widgets/collapse-table/collapse-table.module";
32
- import * as i31 from "ngx-diff2html";
5
+ import * as i4 from "./widgets/navbar-main/navbar-main.component";
6
+ import * as i5 from "./widgets/navbar-module/navbar-module.component";
7
+ import * as i6 from "./auth/forgot-password.component";
8
+ import * as i7 from "./auth/enroll.component";
9
+ import * as i8 from "./auth/auth365.component";
10
+ import * as i9 from "./directive/focus";
11
+ import * as i10 from "./directive/scroll";
12
+ import * as i11 from "./widgets/dialog/dialog.confirm.content";
13
+ import * as i12 from "./widgets/dialog/dialog.error.content";
14
+ import * as i13 from "./widgets/dialog/dialog.input.content";
15
+ import * as i14 from "./widgets/dialog/dialog.notify.content";
16
+ import * as i15 from "./widgets/dialog/dialog.select-datetime.content";
17
+ import * as i16 from "./widgets/dialog/dialog.select-data-labels.content";
18
+ import * as i17 from "./widgets/dialog/dialog.login.content";
19
+ import * as i18 from "./widgets/dialog/dialog.register.content";
20
+ import * as i19 from "./widgets/dialog/dialog.select-with-buttons-url.content";
21
+ import * as i20 from "./widgets/dialog/dialog.select-array-objs.content";
22
+ import * as i21 from "./widgets/dialog/dialog.select-array.content";
23
+ import * as i22 from "./shared/shared.module";
24
+ import * as i23 from "@angular/common/http";
25
+ import * as i24 from "@ng-bootstrap/ng-bootstrap";
26
+ import * as i25 from "ngx-toastr";
27
+ import * as i26 from "./user-settings/user-settings.module";
28
+ import * as i27 from "@angular/platform-browser/animations";
29
+ import * as i28 from "./widgets/collapse-table/collapse-table.module";
33
30
  export declare class CoreModule {
34
31
  static ɵfac: i0.ɵɵFactoryDeclaration<CoreModule, never>;
35
- static ɵmod: i0.ɵɵNgModuleDeclaration<CoreModule, [typeof i1.CoreComponent, typeof i2.HomeComponent, typeof i3.LoggerComponent, typeof i4.HtmlDiffViewerComponent, typeof i5.NavbarMainComponent, typeof i6.NavbarModuleComponent, typeof i7.ForgotPasswordComponent, typeof i8.EnrollComponent, typeof i9.Auth365Component, typeof i10.FocusDirective, typeof i11.ScrollDirective, typeof i12.DialogConfirmContent, typeof i13.DialogErrorContent, typeof i14.DialogInputContent, typeof i15.DialogNotifyContent, typeof i16.DialogSelectDateTimeContent, typeof i17.DialogSelectDataLabelsContent, typeof i18.DialogLoginContent, typeof i19.DialogRegisterContent, typeof i20.DialogSelectWithButtonsURLContent, typeof i21.DialogSelectArrayObjsContent, typeof i22.DialogSelectArrayContent], [typeof i23.SharedModule, typeof i24.HttpClientModule, typeof i25.NgbModule, typeof i26.ToastrModule, typeof i27.NgxLocalStorageModule, typeof i28.UserSettingsModule, typeof i29.BrowserAnimationsModule, typeof i30.CollapseTableModule, typeof i31.NgxDiff2htmlModule], [typeof i1.CoreComponent, typeof i2.HomeComponent, typeof i3.LoggerComponent, typeof i5.NavbarMainComponent, typeof i6.NavbarModuleComponent, typeof i7.ForgotPasswordComponent, typeof i8.EnrollComponent, typeof i9.Auth365Component, typeof i10.FocusDirective, typeof i11.ScrollDirective]>;
32
+ static ɵmod: i0.ɵɵNgModuleDeclaration<CoreModule, [typeof i1.CoreComponent, typeof i2.HomeComponent, typeof i3.LoggerComponent, typeof i4.NavbarMainComponent, typeof i5.NavbarModuleComponent, typeof i6.ForgotPasswordComponent, typeof i7.EnrollComponent, typeof i8.Auth365Component, typeof i9.FocusDirective, typeof i10.ScrollDirective, typeof i11.DialogConfirmContent, typeof i12.DialogErrorContent, typeof i13.DialogInputContent, typeof i14.DialogNotifyContent, typeof i15.DialogSelectDateTimeContent, typeof i16.DialogSelectDataLabelsContent, typeof i17.DialogLoginContent, typeof i18.DialogRegisterContent, typeof i19.DialogSelectWithButtonsURLContent, typeof i20.DialogSelectArrayObjsContent, typeof i21.DialogSelectArrayContent], [typeof i22.SharedModule, typeof i23.HttpClientModule, typeof i24.NgbModule, typeof i25.ToastrModule, typeof i26.UserSettingsModule, typeof i27.BrowserAnimationsModule, typeof i28.CollapseTableModule], [typeof i1.CoreComponent, typeof i2.HomeComponent, typeof i3.LoggerComponent, typeof i4.NavbarMainComponent, typeof i5.NavbarModuleComponent, typeof i6.ForgotPasswordComponent, typeof i7.EnrollComponent, typeof i8.Auth365Component, typeof i9.FocusDirective, typeof i10.ScrollDirective]>;
36
33
  static ɵinj: i0.ɵɵInjectorDeclaration<CoreModule>;
37
34
  }
@@ -6,5 +6,5 @@ export declare class FocusDirective {
6
6
  constructor(element: ElementRef);
7
7
  protected ngOnChanges(): void;
8
8
  static ɵfac: i0.ɵɵFactoryDeclaration<FocusDirective, never>;
9
- static ɵdir: i0.ɵɵDirectiveDeclaration<FocusDirective, "[focus]", never, { "focus": "focus"; }, {}, never, never, false, never>;
9
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FocusDirective, "[focus]", never, { "focus": { "alias": "focus"; "required": false; }; }, {}, never, never, false, never>;
10
10
  }
@@ -16,5 +16,5 @@ export declare class ScrollDirective {
16
16
  protected windowScrollEvent($event: Event): void;
17
17
  protected elementScrollEvent($event: Event): void;
18
18
  static ɵfac: i0.ɵɵFactoryDeclaration<ScrollDirective, never>;
19
- static ɵdir: i0.ɵɵDirectiveDeclaration<ScrollDirective, "[detect-scroll]", never, { "bottomOffset": "bottomOffset"; "topOffset": "topOffset"; }, { "onScroll": "onScroll"; }, never, never, false, never>;
19
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ScrollDirective, "[detect-scroll]", never, { "bottomOffset": { "alias": "bottomOffset"; "required": false; }; "topOffset": { "alias": "topOffset"; "required": false; }; }, { "onScroll": "onScroll"; }, never, never, false, never>;
20
20
  }
@@ -21,8 +21,6 @@ export declare class LoggerComponent extends BaseComponent implements OnInit, On
21
21
  dateStart: Date;
22
22
  dateEnd: Date;
23
23
  selectedTypes: any[];
24
- client: any;
25
- clients: any[];
26
24
  collection: string;
27
25
  method: string;
28
26
  route: string;
@@ -14,7 +14,7 @@ export interface DialogInputFieldSelectOptions {
14
14
  value: string | number;
15
15
  text: string;
16
16
  }
17
- type DialogInputFieldTypes = 'text' | 'number' | 'select' | 'ng-select' | 'state' | 'email' | 'password' | 'textarea' | 'boolean' | 'date' | 'datetime';
17
+ type DialogInputFieldTypes = 'text' | 'number' | 'select' | 'ng-select' | 'state' | 'email' | 'password' | 'textarea' | 'boolean';
18
18
  export interface DialogSelectWithButtonsOptionModel {
19
19
  value: string | number;
20
20
  text: string;
@@ -3,6 +3,7 @@ export declare type SortMongo = string | Exclude<SortDirection, {
3
3
  }> | string[] | {
4
4
  [key: string]: SortDirection;
5
5
  } | Map<string, SortDirection> | [string, SortDirection][] | [string, SortDirection];
6
+ /** @public */
6
7
  export declare type SortDirection = 1 | -1 | 'asc' | 'desc' | 'ascending' | 'descending' | {
7
8
  $meta: string;
8
9
  };
@@ -1,7 +1,6 @@
1
1
  import { CollectionDocument } from './collection-document.model';
2
2
  export interface UserGroupModel extends CollectionDocument {
3
3
  name: string;
4
- landing_page?: string;
5
4
  permissions: UserGroupPermissionModel[];
6
5
  notifications: UserGroupNotificationModel[];
7
6
  }
@@ -2,11 +2,8 @@ export declare class StorageDB {
2
2
  storage: any;
3
3
  database: any;
4
4
  primaryKey: any;
5
- secretKey: any;
6
5
  sep: string;
7
6
  constructor(opts: any);
8
- encryptData(data: any): string;
9
- decryptData(encryptedData: string): any;
10
7
  get(name: any, opts: any): Collection;
11
8
  getCollections(): any[];
12
9
  collection(name: any, opts: any): Collection;
@@ -18,8 +15,7 @@ declare class Collection {
18
15
  primaryKey: string;
19
16
  cache: {};
20
17
  cacheable: boolean;
21
- db: StorageDB;
22
- constructor(db: StorageDB, name: any, opts: any);
18
+ constructor(db: any, name: any, opts: any);
23
19
  _initCache(): void;
24
20
  _filter(filter: any, opts: any): any;
25
21
  insert(data: any, expiresDate?: any, opts?: any): any;
@@ -4,15 +4,12 @@ import { BehaviorSubject } from 'rxjs';
4
4
  import * as i0 from "@angular/core";
5
5
  export declare class OfflineManagerService {
6
6
  private _storage;
7
- storageInitialized: BehaviorSubject<boolean>;
8
7
  offlineMode: BehaviorSubject<boolean>;
9
8
  private _offlineDB;
10
9
  constructor(_storage: LocalStorageService);
11
- initStorage(secretKey: string): void;
12
- getStorage(): any;
13
10
  setOffline(value: boolean): void;
14
11
  saveUser(user: UserModel): void;
15
- getUser(): any;
12
+ getUser(): string;
16
13
  removeUser(): void;
17
14
  find(collectionName: string, query: Object, options?: {}, total?: boolean): any;
18
15
  findOne(collectionName: string, query: Object): any;
@@ -3,54 +3,26 @@ import { ActiveClientSubscriptionModel } from './models/subscription.model';
3
3
  import { OfflineManagerService } from './offline-manager.service';
4
4
  import { AlertService } from './widgets/alert/alert.service';
5
5
  import { Router } from '@angular/router';
6
- import { TokenManagerService } from './token-manager.service';
7
6
  import * as i0 from "@angular/core";
8
7
  export declare class SocketManagerService {
9
8
  private _socket;
10
9
  private _offline;
11
10
  private _alert;
12
11
  private _router;
13
- private _token;
14
12
  private socketStatus;
15
13
  private messageId;
16
14
  private _cbArray;
17
15
  private _subArray;
16
+ private _sendQueue;
18
17
  private _offlineUpdates;
19
- private _pendingMessages;
20
- private _sendTimeout;
21
- private _currentLockId;
22
- private _chunkAssemblies;
23
- private readonly _chunkProgressThresholdBytes;
24
- private readonly _chunkTextDecoder;
18
+ private _runningQueue;
19
+ private initConnection;
25
20
  private _connectionDelayTimeout;
26
21
  onerror: () => void;
27
- constructor(_socket: SocketService, _offline: OfflineManagerService, _alert: AlertService, _router: Router, _token: TokenManagerService);
22
+ constructor(_socket: SocketService, _offline: OfflineManagerService, _alert: AlertService, _router: Router);
28
23
  getSubArray(): ActiveClientSubscriptionModel[];
29
24
  initSocketManager(): void;
30
- private handleMessage;
31
- private acquireLock;
32
- private sleep;
33
- private releaseLock;
34
- private generateUniqueId;
35
- private processReceivedMessage;
36
- private handleChunkedPayload;
37
- private createChunkAssembly;
38
- private initializeChunkProgress;
39
- private shouldShowChunkProgress;
40
- private appendChunkPayload;
41
- private updateChunkProgress;
42
- private emitChunkProgress;
43
- private handleChunkFailure;
44
- private tryDecodeChunkBuffer;
45
- private extractChunkBytes;
46
- private ensureUint8Array;
47
- private base64ToUint8Array;
48
- private dismissChunkAlert;
49
- private getChunkProgressPercent;
50
- private buildChunkProgressMessage;
51
- private formatBytes;
52
- private configureChunkAlert;
53
- private updateChunkAlertMessage;
25
+ handleMessage(resData: any): void;
54
26
  openSocket(environment: any, protocols: any): void;
55
27
  closeSocket(): void;
56
28
  call(method: string, ...parameters: any[]): Promise<unknown>;
@@ -58,7 +30,6 @@ export declare class SocketManagerService {
58
30
  subscribeBypassRoute(subscription: string, ...parameters: any[]): import("rxjs").Observable<any>;
59
31
  unsubscribe(messageId: any, subscription: string, ...parameters: any[]): void;
60
32
  private send;
61
- private handleOfflineMethod;
62
33
  getStatus(): import("rxjs").BehaviorSubject<number>;
63
34
  static ɵfac: i0.ɵɵFactoryDeclaration<SocketManagerService, never>;
64
35
  static ɵprov: i0.ɵɵInjectableDeclaration<SocketManagerService>;
@@ -10,35 +10,21 @@ export declare class SocketService {
10
10
  readyState: number;
11
11
  readyState$: BehaviorSubject<number>;
12
12
  private protocols;
13
- ws: WebSocket | null;
13
+ ws: WebSocket;
14
14
  private url;
15
- private timezone;
16
15
  private pingInterval;
17
16
  private pongTimeout;
18
17
  private pingIntervalTime;
19
18
  private pongTimeoutTime;
20
- private lastActivity;
21
- private missedPongs;
22
- private maxMissedPongs;
23
- private wakeReconnectThreshold;
24
- private focusReconnectDebounce;
25
19
  onopen: (ev: Event) => void;
26
20
  onclose: (ev: CloseEvent) => void;
27
21
  onconnecting: () => void;
28
- onmessage: (data: any) => void;
22
+ onmessage: (ev: MessageEvent) => void;
29
23
  onerror: (ev: ErrorEvent) => void;
30
24
  constructor(_storage: LocalStorageService);
31
- openSocket(environment: any, protocols: string[]): void;
32
- private onOpenHandler;
33
- private onCloseHandler;
34
- private onMessageHandler;
35
- private onErrorHandler;
25
+ openSocket(environment: any, protocols: any): void;
36
26
  private connect;
37
27
  private convertUTCDateToLocalDate;
38
- private clearPongTimeout;
39
- private recordActivity;
40
- private schedulePongTimeout;
41
- private handleMissedPong;
42
28
  private startPinging;
43
29
  private stopPinging;
44
30
  private convertDatesToUTC;
@@ -47,9 +33,6 @@ export declare class SocketService {
47
33
  reconnect(): void;
48
34
  getBufferAmount(): number;
49
35
  private log;
50
- private handleVisibilityChange;
51
- private handleWindowFocus;
52
- private isWebSocketActive;
53
36
  static ɵfac: i0.ɵɵFactoryDeclaration<SocketService, never>;
54
37
  static ɵprov: i0.ɵɵInjectableDeclaration<SocketService>;
55
38
  }
@@ -1,11 +1,9 @@
1
1
  import { LocalStorageService } from 'ngx-localstorage';
2
- import { OfflineManagerService } from './offline-manager.service';
3
2
  import * as i0 from "@angular/core";
4
3
  export declare class TokenManagerService {
5
4
  private _storage;
6
- private _offline;
7
- constructor(_storage: LocalStorageService, _offline: OfflineManagerService);
8
- getToken(tokenKey: string): any;
5
+ constructor(_storage: LocalStorageService);
6
+ getToken(tokenKey: string): string;
9
7
  setToken(tokenKey: string, tokenValue: string): void;
10
8
  removeToken(tokenKey: string): void;
11
9
  static ɵfac: i0.ɵɵFactoryDeclaration<TokenManagerService, never>;
@@ -1,11 +1,10 @@
1
1
  import { SocketManagerService } from '../socket-manager.service';
2
- import { FileModel } from '../models/file.model';
3
2
  import * as i0 from "@angular/core";
4
3
  export declare class AwsService {
5
4
  private _socket;
6
5
  constructor(_socket: SocketManagerService);
7
6
  dataURItoFile(dataURI: string, filename: string): File;
8
- uploadFile(file: File, type: string, order?: number, filename?: string): Promise<FileModel>;
7
+ uploadFile(file: File, type: string, order?: number, filename?: string): Promise<unknown>;
9
8
  getFileWithKey(key: string, callback: Function): void;
10
9
  getFileWithId(id: string, callback: Function): void;
11
10
  deleteFile(key: string, callback: Function): void;
@@ -1,4 +1,3 @@
1
- export declare function round(value: any, precision?: number): number;
2
1
  export declare function toTitleCase(str: any): any;
3
2
  export declare function isUpperCase(str: any): boolean;
4
3
  export declare function pad(num: any, size: any): string;
@@ -7,8 +6,7 @@ export declare function dateReviver(key: any, value: any): any;
7
6
  export declare function b64toBlobURL(b64Data: any, contentType: any, sliceSize?: any): string;
8
7
  export declare function blobToFile(theBlob: any, fileName: any): File;
9
8
  export declare function toDataURL(url: any, callback: any): void;
10
- export declare function deepDiffDetails(object1: any, object2: any): string;
9
+ export declare function getDeepDiffDetails(obj1: any, obj2: any): string;
11
10
  export declare function generateCronStringFromDate(date: Date): string;
12
11
  export declare function s2ab(s: any): ArrayBuffer;
13
12
  export declare function mergeDeep(target: any, ...sources: any[]): any;
14
- export declare function applyMongoUpdate(uDoc: any, delta: any): any;
@@ -1,12 +1,13 @@
1
- import { EventManager } from '@angular/platform-browser';
1
+ import { NgZone, OnDestroy } from '@angular/core';
2
2
  import { Observable } from 'rxjs';
3
3
  import * as i0 from "@angular/core";
4
- export declare class ResizeService {
5
- private eventManager;
4
+ export declare class ResizeService implements OnDestroy {
5
+ private ngZone;
6
6
  get onResize$(): Observable<Window>;
7
7
  private resizeSubject;
8
- constructor(eventManager: EventManager);
9
- private onResize;
8
+ private onResizeHandler;
9
+ constructor(ngZone: NgZone);
10
+ ngOnDestroy(): void;
10
11
  static ɵfac: i0.ɵɵFactoryDeclaration<ResizeService, never>;
11
12
  static ɵprov: i0.ɵɵInjectableDeclaration<ResizeService>;
12
13
  }
@@ -19,5 +19,5 @@ export declare class CollapseTableComponent implements OnInit, OnDestroy {
19
19
  getCollapseClass(): string[];
20
20
  getPrimaryColor(): string;
21
21
  static ɵfac: i0.ɵɵFactoryDeclaration<CollapseTableComponent, never>;
22
- static ɵcmp: i0.ɵɵComponentDeclaration<CollapseTableComponent, "collapse-table", never, { "collapseSize": "collapseSize"; "tableFixed": "tableFixed"; "headerFixed": "headerFixed"; "secondaryColor": "secondaryColor"; "tertiaryColor": "tertiaryColor"; }, {}, never, ["*"], false, never>;
22
+ static ɵcmp: i0.ɵɵComponentDeclaration<CollapseTableComponent, "collapse-table", never, { "collapseSize": { "alias": "collapseSize"; "required": false; }; "tableFixed": { "alias": "tableFixed"; "required": false; }; "headerFixed": { "alias": "headerFixed"; "required": false; }; "secondaryColor": { "alias": "secondaryColor"; "required": false; }; "tertiaryColor": { "alias": "tertiaryColor"; "required": false; }; }, {}, never, ["*"], false, never>;
23
23
  }
@@ -19,5 +19,5 @@ export declare class DatatableComponent extends BaseComponent {
19
19
  openFile(file_key: string): void;
20
20
  typeOf(data: any): "string" | "number" | "bigint" | "boolean" | "symbol" | "undefined" | "object" | "function";
21
21
  static ɵfac: i0.ɵɵFactoryDeclaration<DatatableComponent, never>;
22
- static ɵcmp: i0.ɵɵComponentDeclaration<DatatableComponent, "data-table", never, { "urlClick": "urlClick"; "columns": "columns"; "data": "data"; "collapseSize": "collapseSize"; "searchTitle": "searchTitle"; "totalItems": "totalItems"; "tableData": "tableData"; }, { "onChangeTableData": "onChangeTableData"; }, never, never, false, never>;
22
+ static ɵcmp: i0.ɵɵComponentDeclaration<DatatableComponent, "data-table", never, { "urlClick": { "alias": "urlClick"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "data": { "alias": "data"; "required": false; }; "collapseSize": { "alias": "collapseSize"; "required": false; }; "searchTitle": { "alias": "searchTitle"; "required": false; }; "totalItems": { "alias": "totalItems"; "required": false; }; "tableData": { "alias": "tableData"; "required": false; }; }, { "onChangeTableData": "onChangeTableData"; }, never, never, false, never>;
23
23
  }
@@ -6,12 +6,8 @@ export declare class DateShortcutComponent extends BaseComponent implements OnIn
6
6
  private _cd;
7
7
  startDateObj: any;
8
8
  endDateObj: any;
9
- startDateObjForm: any;
10
- endDateObjForm: any;
11
9
  startDateObjChange: EventEmitter<Object>;
12
10
  endDateObjChange: EventEmitter<Object>;
13
- startDateObjFormChange: EventEmitter<Object>;
14
- endDateObjFormChange: EventEmitter<Object>;
15
11
  datesChanged: EventEmitter<any>;
16
12
  shortcutValue: any;
17
13
  shortcutValueChange: EventEmitter<String>;
@@ -20,5 +16,5 @@ export declare class DateShortcutComponent extends BaseComponent implements OnIn
20
16
  reset(): void;
21
17
  onSelectShortcut(): void;
22
18
  static ɵfac: i0.ɵɵFactoryDeclaration<DateShortcutComponent, never>;
23
- static ɵcmp: i0.ɵɵComponentDeclaration<DateShortcutComponent, "date-shortcut", never, { "startDateObj": "startDateObj"; "endDateObj": "endDateObj"; "startDateObjForm": "startDateObjForm"; "endDateObjForm": "endDateObjForm"; "shortcutValue": "shortcutValue"; }, { "startDateObjChange": "startDateObjChange"; "endDateObjChange": "endDateObjChange"; "startDateObjFormChange": "startDateObjFormChange"; "endDateObjFormChange": "endDateObjFormChange"; "datesChanged": "datesChanged"; "shortcutValueChange": "shortcutValueChange"; }, never, never, false, never>;
19
+ static ɵcmp: i0.ɵɵComponentDeclaration<DateShortcutComponent, "date-shortcut", never, { "startDateObj": { "alias": "startDateObj"; "required": false; }; "endDateObj": { "alias": "endDateObj"; "required": false; }; "shortcutValue": { "alias": "shortcutValue"; "required": false; }; }, { "startDateObjChange": "startDateObjChange"; "endDateObjChange": "endDateObjChange"; "datesChanged": "datesChanged"; "shortcutValueChange": "shortcutValueChange"; }, never, never, false, never>;
24
20
  }
@@ -8,5 +8,5 @@ export declare class DialogConfirmContent {
8
8
  handleKeyboardEvent(event: KeyboardEvent): void;
9
9
  constructor(activeModal: NgbActiveModal);
10
10
  static ɵfac: i0.ɵɵFactoryDeclaration<DialogConfirmContent, never>;
11
- static ɵcmp: i0.ɵɵComponentDeclaration<DialogConfirmContent, "ng-component", never, { "title": "title"; "body": "body"; "html": "html"; }, {}, never, never, false, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<DialogConfirmContent, "ng-component", never, { "title": { "alias": "title"; "required": false; }; "body": { "alias": "body"; "required": false; }; "html": { "alias": "html"; "required": false; }; }, {}, never, never, false, never>;
12
12
  }
@@ -7,5 +7,5 @@ export declare class DialogErrorContent {
7
7
  handleKeyboardEvent(event: KeyboardEvent): void;
8
8
  constructor(activeModal: NgbActiveModal);
9
9
  static ɵfac: i0.ɵɵFactoryDeclaration<DialogErrorContent, never>;
10
- static ɵcmp: i0.ɵɵComponentDeclaration<DialogErrorContent, "ng-component", never, { "title": "title"; "body": "body"; }, {}, never, never, false, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<DialogErrorContent, "ng-component", never, { "title": { "alias": "title"; "required": false; }; "body": { "alias": "body"; "required": false; }; }, {}, never, never, false, never>;
11
11
  }
@@ -14,5 +14,5 @@ export declare class DialogInputContent implements OnInit {
14
14
  validateInput(inputField: any, formInput: any): "" | "is-valid" | "is-invalid";
15
15
  getErrorMessages(inputField: any, formInput: any): any[];
16
16
  static ɵfac: i0.ɵɵFactoryDeclaration<DialogInputContent, never>;
17
- static ɵcmp: i0.ɵɵComponentDeclaration<DialogInputContent, "ng-component", never, { "title": "title"; "inputFields": "inputFields"; }, {}, never, never, false, never>;
17
+ static ɵcmp: i0.ɵɵComponentDeclaration<DialogInputContent, "ng-component", never, { "title": { "alias": "title"; "required": false; }; "inputFields": { "alias": "inputFields"; "required": false; }; }, {}, never, never, false, never>;
18
18
  }
@@ -13,5 +13,5 @@ export declare class DialogLoginContent implements OnInit {
13
13
  toggleForgotPassword(): void;
14
14
  close(type: string): void;
15
15
  static ɵfac: i0.ɵɵFactoryDeclaration<DialogLoginContent, never>;
16
- static ɵcmp: i0.ɵɵComponentDeclaration<DialogLoginContent, "ng-component", never, { "msAllowed": "msAllowed"; "showLoginText": "showLoginText"; }, {}, never, never, false, never>;
16
+ static ɵcmp: i0.ɵɵComponentDeclaration<DialogLoginContent, "ng-component", never, { "msAllowed": { "alias": "msAllowed"; "required": false; }; "showLoginText": { "alias": "showLoginText"; "required": false; }; }, {}, never, never, false, never>;
17
17
  }
@@ -7,5 +7,5 @@ export declare class DialogNotifyContent {
7
7
  handleKeyboardEvent(event: KeyboardEvent): void;
8
8
  constructor(activeModal: NgbActiveModal);
9
9
  static ɵfac: i0.ɵɵFactoryDeclaration<DialogNotifyContent, never>;
10
- static ɵcmp: i0.ɵɵComponentDeclaration<DialogNotifyContent, "ng-component", never, { "title": "title"; "body": "body"; }, {}, never, never, false, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<DialogNotifyContent, "ng-component", never, { "title": { "alias": "title"; "required": false; }; "body": { "alias": "body"; "required": false; }; }, {}, never, never, false, never>;
11
11
  }
@@ -19,5 +19,5 @@ export declare class DialogSelectArrayObjsContent implements AfterViewInit {
19
19
  recursiveFindFirstElement(element: any): any;
20
20
  onSelectItem(index: number): void;
21
21
  static ɵfac: i0.ɵɵFactoryDeclaration<DialogSelectArrayObjsContent, never>;
22
- static ɵcmp: i0.ɵɵComponentDeclaration<DialogSelectArrayObjsContent, "ng-component", never, { "title": "title"; "objects": "objects"; "multiple": "multiple"; "allowNone": "allowNone"; }, {}, never, never, false, never>;
22
+ static ɵcmp: i0.ɵɵComponentDeclaration<DialogSelectArrayObjsContent, "ng-component", never, { "title": { "alias": "title"; "required": false; }; "objects": { "alias": "objects"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "allowNone": { "alias": "allowNone"; "required": false; }; }, {}, never, never, false, never>;
23
23
  }
@@ -27,5 +27,5 @@ export declare class DialogSelectArrayContent implements OnInit, AfterViewInit {
27
27
  selectAll(): void;
28
28
  removeAll(): void;
29
29
  static ɵfac: i0.ɵɵFactoryDeclaration<DialogSelectArrayContent, never>;
30
- static ɵcmp: i0.ɵɵComponentDeclaration<DialogSelectArrayContent, "ng-component", never, { "title": "title"; "array": "array"; "multiple": "multiple"; "selectedIndexes": "selectedIndexes"; }, {}, never, never, false, never>;
30
+ static ɵcmp: i0.ɵɵComponentDeclaration<DialogSelectArrayContent, "ng-component", never, { "title": { "alias": "title"; "required": false; }; "array": { "alias": "array"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "selectedIndexes": { "alias": "selectedIndexes"; "required": false; }; }, {}, never, never, false, never>;
31
31
  }
@@ -18,5 +18,5 @@ export declare class DialogSelectDataLabelsContent implements OnInit {
18
18
  changeSelected(label: SelectDataLabelModel): void;
19
19
  submit(): SelectDataLabelModel[];
20
20
  static ɵfac: i0.ɵɵFactoryDeclaration<DialogSelectDataLabelsContent, never>;
21
- static ɵcmp: i0.ɵɵComponentDeclaration<DialogSelectDataLabelsContent, "ng-component", never, { "title": "title"; "subtitle": "subtitle"; "data": "data"; "showArraySubData": "showArraySubData"; }, {}, never, never, false, never>;
21
+ static ɵcmp: i0.ɵɵComponentDeclaration<DialogSelectDataLabelsContent, "ng-component", never, { "title": { "alias": "title"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "data": { "alias": "data"; "required": false; }; "showArraySubData": { "alias": "showArraySubData"; "required": false; }; }, {}, never, never, false, never>;
22
22
  }
@@ -17,5 +17,5 @@ export declare class DialogSelectDateTimeContent implements OnInit, AfterViewIni
17
17
  recursiveFindFirstElement(element: any): any;
18
18
  submitForm(): void;
19
19
  static ɵfac: i0.ɵɵFactoryDeclaration<DialogSelectDateTimeContent, never>;
20
- static ɵcmp: i0.ɵɵComponentDeclaration<DialogSelectDateTimeContent, "ng-component", never, { "title": "title"; "date": "date"; "showTime": "showTime"; }, {}, never, never, false, never>;
20
+ static ɵcmp: i0.ɵɵComponentDeclaration<DialogSelectDateTimeContent, "ng-component", never, { "title": { "alias": "title"; "required": false; }; "date": { "alias": "date"; "required": false; }; "showTime": { "alias": "showTime"; "required": false; }; }, {}, never, never, false, never>;
21
21
  }
@@ -21,5 +21,5 @@ export declare class DialogSelectWithButtonsURLContent implements AfterViewInit,
21
21
  onSelectType(type: any): void;
22
22
  submit(): void;
23
23
  static ɵfac: i0.ɵɵFactoryDeclaration<DialogSelectWithButtonsURLContent, never>;
24
- static ɵcmp: i0.ɵɵComponentDeclaration<DialogSelectWithButtonsURLContent, "ng-component", never, { "url": "url"; }, {}, never, never, false, never>;
24
+ static ɵcmp: i0.ɵɵComponentDeclaration<DialogSelectWithButtonsURLContent, "ng-component", never, { "url": { "alias": "url"; "required": false; }; }, {}, never, never, false, never>;
25
25
  }
@@ -45,5 +45,5 @@ export declare class FileUploadComponent extends BaseComponent implements OnInit
45
45
  download(file: FileModel): void;
46
46
  email(file: FileModel): void;
47
47
  static ɵfac: i0.ɵɵFactoryDeclaration<FileUploadComponent, never>;
48
- static ɵcmp: i0.ɵɵComponentDeclaration<FileUploadComponent, "file-upload", never, { "files": "files"; "allowDelete": "allowDelete"; "allowReplace": "allowReplace"; "showFileUpload": "showFileUpload"; "fileType": "fileType"; }, { "filesChanged": "filesChanged"; "fileAdded": "fileAdded"; "fileRemoved": "fileRemoved"; }, never, never, false, never>;
48
+ static ɵcmp: i0.ɵɵComponentDeclaration<FileUploadComponent, "file-upload", never, { "files": { "alias": "files"; "required": false; }; "allowDelete": { "alias": "allowDelete"; "required": false; }; "allowReplace": { "alias": "allowReplace"; "required": false; }; "showFileUpload": { "alias": "showFileUpload"; "required": false; }; "fileType": { "alias": "fileType"; "required": false; }; }, { "filesChanged": "filesChanged"; "fileAdded": "fileAdded"; "fileRemoved": "fileRemoved"; }, never, never, false, never>;
49
49
  }
@@ -6,9 +6,9 @@ import * as i4 from "../collapse-table/collapse-table.module";
6
6
  import * as i5 from "@ng-bootstrap/ng-bootstrap";
7
7
  import * as i6 from "../responsive-button-group/responsive-button-group.module";
8
8
  import * as i7 from "ngx-file-drop";
9
- import * as i8 from "@resolveio/client-lib-pdf-viewer";
9
+ import * as i8 from "ngx-doc-viewer";
10
10
  export declare class FileModule {
11
11
  static ɵfac: i0.ɵɵFactoryDeclaration<FileModule, never>;
12
- static ɵmod: i0.ɵɵNgModuleDeclaration<FileModule, [typeof i1.FileUploadComponent], [typeof i2.CommonModule, typeof i3.FormsModule, typeof i4.CollapseTableModule, typeof i5.NgbModule, typeof i6.ResponsiveButtonGroupModule, typeof i7.NgxFileDropModule, typeof i8.PdfViewerModule], [typeof i1.FileUploadComponent]>;
12
+ static ɵmod: i0.ɵɵNgModuleDeclaration<FileModule, [typeof i1.FileUploadComponent], [typeof i2.CommonModule, typeof i3.FormsModule, typeof i4.CollapseTableModule, typeof i5.NgbModule, typeof i6.ResponsiveButtonGroupModule, typeof i7.NgxFileDropModule, typeof i8.NgxDocViewerModule], [typeof i1.FileUploadComponent]>;
13
13
  static ɵinj: i0.ɵɵInjectorDeclaration<FileModule>;
14
14
  }
@@ -11,5 +11,5 @@ export declare class FormButtonComponent extends BaseComponent {
11
11
  getTipErrors(): any[];
12
12
  isSuperAdmin(): boolean;
13
13
  static ɵfac: i0.ɵɵFactoryDeclaration<FormButtonComponent, never>;
14
- static ɵcmp: i0.ɵɵComponentDeclaration<FormButtonComponent, "form-button", never, { "form": "form"; "disabled": "disabled"; "type": "type"; }, {}, never, never, false, never>;
14
+ static ɵcmp: i0.ɵɵComponentDeclaration<FormButtonComponent, "form-button", never, { "form": { "alias": "form"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, {}, never, never, false, never>;
15
15
  }
@@ -17,7 +17,6 @@ export declare class NavbarMainComponent extends BaseComponent implements OnInit
17
17
  navTabs: NavbarMainTabModel[];
18
18
  fontSize: number;
19
19
  publicProgram: boolean;
20
- digitalSign: boolean;
21
20
  user: UserModel;
22
21
  collapseShowing: boolean;
23
22
  client: string;
@@ -49,5 +48,5 @@ export declare class NavbarMainComponent extends BaseComponent implements OnInit
49
48
  isCustomer(): boolean;
50
49
  getWindowWidth(): number;
51
50
  static ɵfac: i0.ɵɵFactoryDeclaration<NavbarMainComponent, never>;
52
- static ɵcmp: i0.ɵɵComponentDeclaration<NavbarMainComponent, "navbar-main", never, { "logo": "logo"; "navTabs": "navTabs"; "fontSize": "fontSize"; "publicProgram": "publicProgram"; "digitalSign": "digitalSign"; }, {}, never, never, false, never>;
51
+ static ɵcmp: i0.ɵɵComponentDeclaration<NavbarMainComponent, "navbar-main", never, { "logo": { "alias": "logo"; "required": false; }; "navTabs": { "alias": "navTabs"; "required": false; }; "fontSize": { "alias": "fontSize"; "required": false; }; "publicProgram": { "alias": "publicProgram"; "required": false; }; }, {}, never, never, false, never>;
53
52
  }
@@ -20,5 +20,5 @@ export declare class NavbarModuleComponent extends BaseComponent implements OnIn
20
20
  tabClass(tab: NavbarTabModel): "" | "active";
21
21
  navigateTo(tab: NavbarTabModel): void;
22
22
  static ɵfac: i0.ɵɵFactoryDeclaration<NavbarModuleComponent, never>;
23
- static ɵcmp: i0.ɵɵComponentDeclaration<NavbarModuleComponent, "navbar-module", never, { "sideNavHeight": "sideNavHeight"; "sideNavWidth": "sideNavWidth"; }, {}, never, never, false, never>;
23
+ static ɵcmp: i0.ɵɵComponentDeclaration<NavbarModuleComponent, "navbar-module", never, { "sideNavHeight": { "alias": "sideNavHeight"; "required": false; }; "sideNavWidth": { "alias": "sideNavWidth"; "required": false; }; }, {}, never, never, false, never>;
24
24
  }
@@ -13,5 +13,5 @@ export declare class ResponsiveButtonGroupComponent extends BaseComponent implem
13
13
  ngOnInit(): void;
14
14
  ngOnDestroy(): void;
15
15
  static ɵfac: i0.ɵɵFactoryDeclaration<ResponsiveButtonGroupComponent, never>;
16
- static ɵcmp: i0.ɵɵComponentDeclaration<ResponsiveButtonGroupComponent, "responsive-button-group", never, { "collapseSize": "collapseSize"; }, {}, never, ["*"], false, never>;
16
+ static ɵcmp: i0.ɵɵComponentDeclaration<ResponsiveButtonGroupComponent, "responsive-button-group", never, { "collapseSize": { "alias": "collapseSize"; "required": false; }; }, {}, never, ["*"], false, never>;
17
17
  }